diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2007-12-13 13:43:30 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-01-11 19:28:35 -0500 |
commit | f6d5180c78780d63b0577edeb3ce41eeb3e93eea (patch) | |
tree | 95eb44fb84dd7659f816c5f1166c1ae7e2301f5f /drivers/scsi/iscsi_tcp.c | |
parent | 2697478903d0ad8bdbf868b1346ae4b891662bb1 (diff) |
[SCSI] libiscsi: fix nop handling
During root boot and shutdown the target could send us nops.
At this time iscsid cannot be running, so the target will drop
the session and the boot or shutdown will hang.
To handle this and allow us to better control when to check the network
this patch moves the nop handling to the kernel.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/iscsi_tcp.c')
-rw-r--r-- | drivers/scsi/iscsi_tcp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c index 90eae8e0d978..9b418522c9bf 100644 --- a/drivers/scsi/iscsi_tcp.c +++ b/drivers/scsi/iscsi_tcp.c | |||
@@ -2246,7 +2246,9 @@ static struct iscsi_transport iscsi_tcp_transport = { | |||
2246 | ISCSI_TARGET_NAME | ISCSI_TPGT | | 2246 | ISCSI_TARGET_NAME | ISCSI_TPGT | |
2247 | ISCSI_USERNAME | ISCSI_PASSWORD | | 2247 | ISCSI_USERNAME | ISCSI_PASSWORD | |
2248 | ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN | | 2248 | ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN | |
2249 | ISCSI_FAST_ABORT, | 2249 | ISCSI_FAST_ABORT | ISCSI_ABORT_TMO | |
2250 | ISCSI_LU_RESET_TMO | | ||
2251 | ISCSI_PING_TMO | ISCSI_RECV_TMO, | ||
2250 | .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS | | 2252 | .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS | |
2251 | ISCSI_HOST_INITIATOR_NAME | | 2253 | ISCSI_HOST_INITIATOR_NAME | |
2252 | ISCSI_HOST_NETDEV_NAME, | 2254 | ISCSI_HOST_NETDEV_NAME, |