Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 180007
b: refs/heads/master
c: b8f0864
h: refs/heads/master
i:
  180005: 6002ada
  180003: 08b0b28
  179999: 0f20d0d
v: v3
  • Loading branch information
Swen Schillig authored and James Bottomley committed Jan 17, 2010
1 parent f85183a commit 31da12e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 9e2ab1fabdbd88669fdebd368fb5cda32ad5438d
refs/heads/master: b8f08645f80a0c93246f3539ce53d3cae6a91fa0
5 changes: 4 additions & 1 deletion trunk/drivers/scsi/scsi_transport_fc.c
Original file line number Diff line number Diff line change
Expand Up @@ -3527,7 +3527,10 @@ fc_bsg_job_timeout(struct request *req)
if (!done && i->f->bsg_timeout) {
/* call LLDD to abort the i/o as it has timed out */
err = i->f->bsg_timeout(job);
if (err)
if (err == -EAGAIN) {
job->ref_cnt--;
return BLK_EH_RESET_TIMER;
} else if (err)
printk(KERN_ERR "ERROR: FC BSG request timeout - LLD "
"abort failed with status %d\n", err);
}
Expand Down

0 comments on commit 31da12e

Please sign in to comment.