Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208209
b: refs/heads/master
c: 2cf3af1
h: refs/heads/master
i:
  208207: 0dcedbf
v: v3
  • Loading branch information
Mike Miller authored and Jens Axboe committed Aug 7, 2010
1 parent 619bc40 commit ce19739
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: 0c2b39087c900bdb240b50ac95ee9da00d844565
refs/heads/master: 2cf3af1c9ec26f8db3f386e48f9d979ad8bb3eff
5 changes: 3 additions & 2 deletions trunk/drivers/block/cciss.c
Original file line number Diff line number Diff line change
Expand Up @@ -3333,8 +3333,9 @@ static inline int interrupt_pending(ctlr_info_t *h)

static inline long interrupt_not_for_us(ctlr_info_t *h)
{
return (((h->access.intr_pending(h) == 0) ||
(h->interrupts_enabled == 0)));
return !(h->msi_vector || h->msix_vector) &&
((h->access.intr_pending(h) == 0) ||
(h->interrupts_enabled == 0));
}

static inline int bad_tag(ctlr_info_t *h, u32 tag_index,
Expand Down

0 comments on commit ce19739

Please sign in to comment.