diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-01-31 20:36:51 +0100 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-02-08 01:02:37 +0100 |
commit | c238c3bba9b422a9b453c75e157b416204f22a71 (patch) | |
tree | edd29077372ca2a9a5186043b740cb2ea2b30e4b | |
parent | [SCSI] libiscsi: fix setting of nop timer (diff) | |
download | linux-c238c3bba9b422a9b453c75e157b416204f22a71.tar.xz linux-c238c3bba9b422a9b453c75e157b416204f22a71.zip |
[SCSI] iscsi class: fix iscsi conn attr counter
There are 13 iscsi conn attrs, but since the IF/OF markers were not being
used we did not notice that we forgot to increment the ISCSI_CONN_ATTRS
counter.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
-rw-r--r-- | drivers/scsi/scsi_transport_iscsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c index af1799723e7b..35834bf4ba86 100644 --- a/drivers/scsi/scsi_transport_iscsi.c +++ b/drivers/scsi/scsi_transport_iscsi.c @@ -31,7 +31,7 @@ #include <scsi/iscsi_if.h> #define ISCSI_SESSION_ATTRS 19 -#define ISCSI_CONN_ATTRS 11 +#define ISCSI_CONN_ATTRS 13 #define ISCSI_HOST_ATTRS 4 #define ISCSI_TRANSPORT_VERSION "2.0-867" |