aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi
diff options
context:
space:
mode:
authorBoaz Harrosh <bharrosh@panasas.com>2009-11-16 13:39:25 -0500
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:01:44 -0500
commitd531b37929f412de09e9ad711fdd5b04fa39aca1 (patch)
tree058897292c2647e33b1959a88b847e7004f72810 /include/scsi
parent0d48fcca1ff5d106b0ac6770a31b13e3630b244a (diff)
[SCSI] libosd: osd_dev_is_ver1 - Minor API cleanup
define a new osd_dev_is_ver1 that operates on devices and the old osd_req_is_ver1 uses that new API. Signed-off-by: Boaz Harrosh <bharrosh@panasas.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'include/scsi')
-rw-r--r--include/scsi/osd_initiator.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/include/scsi/osd_initiator.h b/include/scsi/osd_initiator.h
index 02bd9f716357..f787d24d3bab 100644
--- a/include/scsi/osd_initiator.h
+++ b/include/scsi/osd_initiator.h
@@ -84,6 +84,15 @@ static inline void osd_dev_set_ver(struct osd_dev *od, enum osd_std_version v)
84#endif 84#endif
85} 85}
86 86
87static inline bool osd_dev_is_ver1(struct osd_dev *od)
88{
89#ifdef OSD_VER1_SUPPORT
90 return od->version == OSD_VER1;
91#else
92 return false;
93#endif
94}
95
87struct osd_request; 96struct osd_request;
88typedef void (osd_req_done_fn)(struct osd_request *or, void *private); 97typedef void (osd_req_done_fn)(struct osd_request *or, void *private);
89 98
@@ -120,14 +129,9 @@ struct osd_request {
120 int async_error; 129 int async_error;
121}; 130};
122 131
123/* OSD Version control */
124static inline bool osd_req_is_ver1(struct osd_request *or) 132static inline bool osd_req_is_ver1(struct osd_request *or)
125{ 133{
126#ifdef OSD_VER1_SUPPORT 134 return osd_dev_is_ver1(or->osd_dev);
127 return or->osd_dev->version == OSD_VER1;
128#else
129 return false;
130#endif
131} 135}
132 136
133/* 137/*