Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243314
b: refs/heads/master
c: 91ce72e
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 3efc8da commit 8c78513
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 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: 459960d831d14924eb4bcccadeb03ec81a1f524c
refs/heads/master: 91ce72e08047190291777ec56598118225910203
10 changes: 4 additions & 6 deletions trunk/arch/ia64/kernel/iosapic.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ iosapic_unmask_level_irq (struct irq_data *data)
int do_unmask_irq = 0;

irq_complete_move(irq);
if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
if (unlikely(irqd_is_setaffinity_pending(data))) {
do_unmask_irq = 1;
mask_irq(data);
} else
Expand All @@ -408,7 +408,7 @@ iosapic_unmask_level_irq (struct irq_data *data)
iosapic_eoi(rte->iosapic->addr, vec);

if (unlikely(do_unmask_irq)) {
move_masked_irq(irq);
irq_move_masked_irq(data);
unmask_irq(data);
}
}
Expand Down Expand Up @@ -449,10 +449,8 @@ iosapic_startup_edge_irq (struct irq_data *data)
static void
iosapic_ack_edge_irq (struct irq_data *data)
{
unsigned int irq = data->irq;

irq_complete_move(irq);
move_native_irq(irq);
irq_complete_move(data->irq);
irq_move_irq(data);
}

#define iosapic_enable_edge_irq unmask_irq
Expand Down

0 comments on commit 8c78513

Please sign in to comment.