diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-05-21 16:54:00 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 09:22:16 -0400 |
commit | a4804cd6eb19318ae8d08ea967cfeaaf5c5b68a6 (patch) | |
tree | a69acbfdf4e3646ebb7583f0627b7b7952d13b10 /include/scsi/libiscsi.h | |
parent | 756135215ec743be6fdce2bdebe8cdb9f8a231f6 (diff) |
[SCSI] iscsi: add iscsi host helpers
This finishes the host/session unbinding, by adding some helpers
to add and remove hosts and the session they manage.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'include/scsi/libiscsi.h')
-rw-r--r-- | include/scsi/libiscsi.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/scsi/libiscsi.h b/include/scsi/libiscsi.h index 8a6271c20935..9a26d715a953 100644 --- a/include/scsi/libiscsi.h +++ b/include/scsi/libiscsi.h | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <scsi/iscsi_if.h> | 32 | #include <scsi/iscsi_if.h> |
33 | 33 | ||
34 | struct scsi_transport_template; | 34 | struct scsi_transport_template; |
35 | struct scsi_host_template; | ||
35 | struct scsi_device; | 36 | struct scsi_device; |
36 | struct Scsi_Host; | 37 | struct Scsi_Host; |
37 | struct scsi_cmnd; | 38 | struct scsi_cmnd; |
@@ -41,6 +42,7 @@ struct iscsi_cls_session; | |||
41 | struct iscsi_cls_conn; | 42 | struct iscsi_cls_conn; |
42 | struct iscsi_session; | 43 | struct iscsi_session; |
43 | struct iscsi_nopin; | 44 | struct iscsi_nopin; |
45 | struct device; | ||
44 | 46 | ||
45 | /* #define DEBUG_SCSI */ | 47 | /* #define DEBUG_SCSI */ |
46 | #ifdef DEBUG_SCSI | 48 | #ifdef DEBUG_SCSI |
@@ -311,6 +313,8 @@ struct iscsi_host { | |||
311 | char local_address[ISCSI_ADDRESS_BUF_LEN]; | 313 | char local_address[ISCSI_ADDRESS_BUF_LEN]; |
312 | }; | 314 | }; |
313 | 315 | ||
316 | #define iscsi_host_priv(_shost) \ | ||
317 | (shost_priv(_shost) + sizeof(struct iscsi_host)) | ||
314 | /* | 318 | /* |
315 | * scsi host template | 319 | * scsi host template |
316 | */ | 320 | */ |
@@ -330,8 +334,11 @@ extern int iscsi_host_set_param(struct Scsi_Host *shost, | |||
330 | int buflen); | 334 | int buflen); |
331 | extern int iscsi_host_get_param(struct Scsi_Host *shost, | 335 | extern int iscsi_host_get_param(struct Scsi_Host *shost, |
332 | enum iscsi_host_param param, char *buf); | 336 | enum iscsi_host_param param, char *buf); |
333 | extern void iscsi_host_setup(struct Scsi_Host *shost, uint16_t qdepth); | 337 | extern int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev); |
334 | extern void iscsi_host_teardown(struct Scsi_Host *shost); | 338 | extern struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht, |
339 | int dd_data_size, uint16_t qdepth); | ||
340 | extern void iscsi_host_remove(struct Scsi_Host *shost); | ||
341 | extern void iscsi_host_free(struct Scsi_Host *shost); | ||
335 | 342 | ||
336 | /* | 343 | /* |
337 | * session management | 344 | * session management |