Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63973
b: refs/heads/master
c: 2464286
h: refs/heads/master
i:
  63971: 0418a36
v: v3
  • Loading branch information
Thomas Gleixner authored and Linus Torvalds committed Aug 12, 2007
1 parent 1ba41a3 commit eeeaafd
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: 496634217e5671ed876a0348e9f5b7165e830b20
refs/heads/master: 2464286ace55b3abddfb9cc30ab95e2dac1de9a6
7 changes: 6 additions & 1 deletion trunk/kernel/irq/resend.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq)
*/
desc->chip->enable(irq);

if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
/*
* We do not resend level type interrupts. Level type
* interrupts are resent by hardware when they are still
* active.
*/
if ((status & (IRQ_LEVEL | IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
desc->status = (status & ~IRQ_PENDING) | IRQ_REPLAY;

if (!desc->chip || !desc->chip->retrigger ||
Expand Down

0 comments on commit eeeaafd

Please sign in to comment.