diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2009-01-25 16:56:47 +0200 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-12 12:58:06 -0500 |
commit | 95b05a7db5865855c32e0bb8b244c3a7aac1cfeb (patch) | |
tree | 48f1af3fb003ff537f6288a169e863ba194dba70 /include | |
parent | 02941a530ef736210b4cf8b24dd34c238d5d5a40 (diff) | |
download | linux-3.10-95b05a7db5865855c32e0bb8b244c3a7aac1cfeb.tar.gz linux-3.10-95b05a7db5865855c32e0bb8b244c3a7aac1cfeb.tar.bz2 linux-3.10-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')
-rw-r--r-- | include/scsi/osd_initiator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/scsi/osd_initiator.h b/include/scsi/osd_initiator.h index 1d92247f820..a5dbbddcf73 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); |