Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19925
b: refs/heads/master
c: d43da75
h: refs/heads/master
i:
  19923: 913fd37
v: v3
  • Loading branch information
Jens Axboe authored and Linus Torvalds committed Feb 7, 2006
1 parent 1206350 commit a9979b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: e8a82fd030c2e0ba4d4169cc4257ef174ff6f6b4
refs/heads/master: d43da75fd6be4197c280903e1553eafcc39218e2
5 changes: 3 additions & 2 deletions trunk/drivers/block/cciss.c
Original file line number Diff line number Diff line change
Expand Up @@ -2183,6 +2183,7 @@ static void cciss_softirq_done(struct request *rq)
{
CommandList_struct *cmd = rq->completion_data;
ctlr_info_t *h = hba[cmd->ctlr];
unsigned long flags;
u64bit temp64;
int i, ddir;

Expand All @@ -2205,10 +2206,10 @@ static void cciss_softirq_done(struct request *rq)
printk("Done with %p\n", rq);
#endif /* CCISS_DEBUG */

spin_lock_irq(&h->lock);
spin_lock_irqsave(&h->lock, flags);
end_that_request_last(rq, rq->errors);
cmd_free(h, cmd,1);
spin_unlock_irq(&h->lock);
spin_unlock_irqrestore(&h->lock, flags);
}

/* checks the status of the job and calls complete buffers to mark all
Expand Down

0 comments on commit a9979b7

Please sign in to comment.