Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15136
b: refs/heads/master
c: 8563167
h: refs/heads/master
v: v3
  • Loading branch information
Michael Reed authored and James Bottomley committed Dec 8, 2005
1 parent 7e372e9 commit 95db26f
Show file tree
Hide file tree
Showing 2 changed files with 7 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: f0353301e6752399ceb874ede7f44e3571c5e4f3
refs/heads/master: 85631672e6a8032267058b4ccbe53f1924a5d0be
7 changes: 6 additions & 1 deletion trunk/drivers/scsi/scsi_error.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,10 +422,15 @@ static int scsi_eh_completed_normally(struct scsi_cmnd *scmd)
**/
static void scsi_eh_done(struct scsi_cmnd *scmd)
{
struct completion *eh_action;

SCSI_LOG_ERROR_RECOVERY(3,
printk("%s scmd: %p result: %x\n",
__FUNCTION__, scmd, scmd->result));
complete(scmd->device->host->eh_action);

eh_action = scmd->device->host->eh_action;
if (eh_action)
complete(eh_action);
}

/**
Expand Down

0 comments on commit 95db26f

Please sign in to comment.