diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2010-10-15 14:27:48 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-10-25 17:03:57 -0400 |
commit | 9dac0d9a93095ff5a27b975af30c25186bdcfeab (patch) | |
tree | d8233fa036cc28ce0e31d6cb9cf9b2e9b7e0eb79 /drivers/scsi | |
parent | 170babc3721997b7808193221f94926df44f3d1e (diff) |
[SCSI] qla2xxx: Correct PRLI failure response code handling.
This patch fixes an issue which causes the firmware to fail with a
'PRLI failed' status code (iop1 = 405). This status triggers the
driver to fall into an incorrect code-path which does not attempt
a login retry.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: Madhuranath Iyengar <Madhu.Iyengar@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_isr.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index a47a38fa0e32..1f06ddd9bdd1 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -1240,12 +1240,6 @@ qla24xx_logio_entry(scsi_qla_host_t *vha, struct req_que *req, | |||
1240 | case LSC_SCODE_NPORT_USED: | 1240 | case LSC_SCODE_NPORT_USED: |
1241 | data[0] = MBS_LOOP_ID_USED; | 1241 | data[0] = MBS_LOOP_ID_USED; |
1242 | break; | 1242 | break; |
1243 | case LSC_SCODE_CMD_FAILED: | ||
1244 | if ((iop[1] & 0xff) == 0x05) { | ||
1245 | data[0] = MBS_NOT_LOGGED_IN; | ||
1246 | break; | ||
1247 | } | ||
1248 | /* Fall through. */ | ||
1249 | default: | 1243 | default: |
1250 | data[0] = MBS_COMMAND_ERROR; | 1244 | data[0] = MBS_COMMAND_ERROR; |
1251 | break; | 1245 | break; |