diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-05-21 15:53:56 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 08:22:15 -0500 |
commit | 40753caa364bfba60ebd5e2a8bdf366ef175d03c (patch) | |
tree | ed43045b841521eb9c9fedc08d603df89a77cf6f /include/scsi/libiscsi.h | |
parent | d54d48b80fb523ce1b1a644e4876b08835ad757f (diff) | |
download | blackbird-obmc-linux-40753caa364bfba60ebd5e2a8bdf366ef175d03c.tar.gz blackbird-obmc-linux-40753caa364bfba60ebd5e2a8bdf366ef175d03c.zip |
[SCSI] iscsi class, iscsi_tcp/iser: add host arg to session creation
iscsi offload (bnx2i and qla4xx) allocate a scsi host per hba,
so the session creation path needs a shost/host_no argument.
Software iscsi/iser will follow the same behabior as before
where it allcoates a host per session, but in the future iser
will probably look more like bnx2i where the host's parent is
the hardware (rnic for iser and for bnx2i it is the nic), because
it does not use a socket layer like how iscsi_tcp does.
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/libiscsi.h b/include/scsi/libiscsi.h index cd3ca63d4fb1..f24cf0246739 100644 --- a/include/scsi/libiscsi.h +++ b/include/scsi/libiscsi.h @@ -24,6 +24,7 @@ #define LIBISCSI_H #include <linux/types.h> +#include <linux/wait.h> #include <linux/mutex.h> #include <linux/timer.h> #include <linux/workqueue.h> |