aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi
diff options
context:
space:
mode:
Diffstat (limited to 'include/scsi')
-rw-r--r--include/scsi/osd_initiator.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/scsi/osd_initiator.h b/include/scsi/osd_initiator.h
index 8c1e3b804afd..b44dc53bd881 100644
--- a/include/scsi/osd_initiator.h
+++ b/include/scsi/osd_initiator.h
@@ -18,6 +18,7 @@
18#include "osd_types.h" 18#include "osd_types.h"
19 19
20#include <linux/blkdev.h> 20#include <linux/blkdev.h>
21#include <scsi/scsi_device.h>
21 22
22/* Note: "NI" in comments below means "Not Implemented yet" */ 23/* Note: "NI" in comments below means "Not Implemented yet" */
23 24
@@ -69,6 +70,10 @@ void osd_dev_fini(struct osd_dev *od);
69 70
70/* some hi level device operations */ 71/* some hi level device operations */
71int osd_auto_detect_ver(struct osd_dev *od, void *caps); /* GFP_KERNEL */ 72int osd_auto_detect_ver(struct osd_dev *od, void *caps); /* GFP_KERNEL */
73static inline struct request_queue *osd_request_queue(struct osd_dev *od)
74{
75 return od->scsi_device->request_queue;
76}
72 77
73/* we might want to use function vector in the future */ 78/* we might want to use function vector in the future */
74static inline void osd_dev_set_ver(struct osd_dev *od, enum osd_std_version v) 79static inline void osd_dev_set_ver(struct osd_dev *od, enum osd_std_version v)