Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2044
b: refs/heads/master
c: 7d0e11f
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Higdon authored and James Bottomley committed May 20, 2005
1 parent aa3c1ae commit 83a14cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d335cc38c75e28407455463444b912b09c92daec
refs/heads/master: 7d0e11fb20b08790c71f5336b493662f952641c9
9 changes: 4 additions & 5 deletions trunk/drivers/scsi/qla1280.c
Original file line number Diff line number Diff line change
Expand Up @@ -4038,11 +4038,10 @@ qla1280_status_entry(struct scsi_qla_host *ha, struct response *pkt,
scsi_status, handle);
}

/* Target busy */
if (scsi_status & SS_BUSY_CONDITION &&
scsi_status != SS_RESERVE_CONFLICT) {
CMD_RESULT(cmd) =
DID_BUS_BUSY << 16 | (scsi_status & 0xff);
/* Target busy or queue full */
if ((scsi_status & 0xFF) == SAM_STAT_TASK_SET_FULL ||
(scsi_status & 0xFF) == SAM_STAT_BUSY) {
CMD_RESULT(cmd) = scsi_status & 0xff;
} else {

/* Save ISP completion status */
Expand Down

0 comments on commit 83a14cc

Please sign in to comment.