diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-01-31 14:36:53 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-02-07 19:02:37 -0500 |
commit | 8b1d03434ee44b08c57f50403eaeab099facebf5 (patch) | |
tree | 48d7c5aeb3b765284dcc3d8685ed6ea6aed350cb /include/scsi/libiscsi.h | |
parent | 322d739da83bbff0309c202181f79c08d9534880 (diff) |
[SCSI] libiscsi: fix session age rollover and remove cid encoding
The session age mask is only 4 bits, but session->age is 32. When
it gets larger then 15 and we try to or the bits some bits get
dropped and the check for session age in iscsi_verify_itt is useless.
The ISCSI_CID_MASK related bits are also useless since cid is always
one.
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 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/scsi/libiscsi.h b/include/scsi/libiscsi.h index 5784e4ff8edc..7b90b63fb5c7 100644 --- a/include/scsi/libiscsi.h +++ b/include/scsi/libiscsi.h | |||
@@ -70,8 +70,6 @@ enum { | |||
70 | #define ISCSI_SUSPEND_BIT 1 | 70 | #define ISCSI_SUSPEND_BIT 1 |
71 | 71 | ||
72 | #define ISCSI_ITT_MASK (0xfff) | 72 | #define ISCSI_ITT_MASK (0xfff) |
73 | #define ISCSI_CID_SHIFT 12 | ||
74 | #define ISCSI_CID_MASK (0xffff << ISCSI_CID_SHIFT) | ||
75 | #define ISCSI_AGE_SHIFT 28 | 73 | #define ISCSI_AGE_SHIFT 28 |
76 | #define ISCSI_AGE_MASK (0xf << ISCSI_AGE_SHIFT) | 74 | #define ISCSI_AGE_MASK (0xf << ISCSI_AGE_SHIFT) |
77 | 75 | ||