Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[SCSI] aacraid: change srb status busy return

This patch is more like a spelling correction than a fix. It was
discovered that if we had a busy status return from the Adapter for the
SCSI srb command to a physical component, that we returned
DID_NO_CONNECT rather than what one would expect DID_BUS_BUSY.

Signed-off-by: Mark Salyzyn <aacraid@adaptec.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

authored by

Salyzyn, Mark and committed by
James Bottomley
760af100 96249cf9

+1 -1
+1 -1
drivers/scsi/aacraid/aachba.c
··· 2266 2266 break; 2267 2267 2268 2268 case SRB_STATUS_BUSY: 2269 - scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8; 2269 + scsicmd->result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8; 2270 2270 break; 2271 2271 2272 2272 case SRB_STATUS_BUS_RESET: