diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2007-07-26 13:46:48 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-27 09:12:05 -0400 |
commit | e07264071f7f2b02a2973cb28d9fdf5eb8866cc1 (patch) | |
tree | 25ca60eeb25dbb519428d3e4bbea77d978e5a4a1 /include/scsi | |
parent | 7974392c0b0d4e7a2a17ca3597d51a29b9841aa5 (diff) |
[SCSI] libiscsi: fix cmd seqeunce number checking
We should not be checking the cmd windown for just handling r2t responses.
And if the window closes in on us, always have scsi-ml requeue the command
from our queuecommand function.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/libiscsi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/scsi/libiscsi.h b/include/scsi/libiscsi.h index 3f631b08a1ab..007d442412e2 100644 --- a/include/scsi/libiscsi.h +++ b/include/scsi/libiscsi.h | |||
@@ -210,6 +210,9 @@ struct iscsi_session { | |||
210 | uint32_t exp_cmdsn; | 210 | uint32_t exp_cmdsn; |
211 | uint32_t max_cmdsn; | 211 | uint32_t max_cmdsn; |
212 | 212 | ||
213 | /* This tracks the reqs queued into the initiator */ | ||
214 | uint32_t queued_cmdsn; | ||
215 | |||
213 | /* configuration */ | 216 | /* configuration */ |
214 | int initial_r2t_en; | 217 | int initial_r2t_en; |
215 | unsigned max_r2t; | 218 | unsigned max_r2t; |