aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi
diff options
context:
space:
mode:
authorBoaz Harrosh <bharrosh@panasas.com>2009-01-25 16:56:47 +0200
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2009-03-12 12:58:06 -0500
commit95b05a7db5865855c32e0bb8b244c3a7aac1cfeb (patch)
tree48f1af3fb003ff537f6288a169e863ba194dba70 /include/scsi
parent[SCSI] libosd: OSDv1 preliminary implementation (diff)
downloadlinux-dev-95b05a7db5865855c32e0bb8b244c3a7aac1cfeb.tar.xz
linux-dev-95b05a7db5865855c32e0bb8b244c3a7aac1cfeb.zip
[SCSI] osd_uld: OSD scsi ULD
Add a Linux driver module that registers as a SCSI ULD and probes for OSD type SCSI devices. When an OSD-type SCSI device is found a character device is created in the form of /dev/osdX - where X goes from 0 up to hard coded 64. The Major character device number used is 260. Signed-off-by: Boaz Harrosh <bharrosh@panasas.com> Reviewed-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'include/scsi')
-rw-r--r--include/scsi/osd_initiator.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/scsi/osd_initiator.h b/include/scsi/osd_initiator.h
index 1d92247f820b..a5dbbddcf73b 100644
--- a/include/scsi/osd_initiator.h
+++ b/include/scsi/osd_initiator.h
@@ -33,6 +33,12 @@ struct osd_dev {
unsigned def_timeout;
};
+/* Add/remove test ioctls from external modules */
+typedef int (do_test_fn)(struct osd_dev *od, unsigned cmd, unsigned long arg);
+int osduld_register_test(unsigned ioctl, do_test_fn *do_test);
+void osduld_unregister_test(unsigned ioctl);
+
+/* These are called by uld at probe time */
void osd_dev_init(struct osd_dev *od, struct scsi_device *scsi_device);
void osd_dev_fini(struct osd_dev *od);