Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=760af100d7cdf62d0929b11929465e4cfc694c5c
Commit:     760af100d7cdf62d0929b11929465e4cfc694c5c
Parent:     96249cf9847da57a147b30dfed88fe585d578970
Author:     Salyzyn, Mark <[EMAIL PROTECTED]>
AuthorDate: Tue Jun 19 11:41:21 2007 -0400
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Tue Jun 19 19:54:29 2007 -0700

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/aacraid/aachba.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c
index b3081b1..6345dbe 100644
--- a/drivers/scsi/aacraid/aachba.c
+++ b/drivers/scsi/aacraid/aachba.c
@@ -2266,7 +2266,7 @@ static void aac_srb_callback(void *context, struct fib * 
fibptr)
                break;
 
        case SRB_STATUS_BUSY:
-               scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
+               scsicmd->result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
                break;
 
        case SRB_STATUS_BUS_RESET:
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to