search for: pirq_from_irq

Displaying 1 result from an estimated 1 matches for "pirq_from_irq".

Did you mean: virq_from_irq
2012 Apr 25
2
[PATCH] xen: use the pirq number to check the pirq_eoi_map
...events.c b/drivers/xen/events.c index 4b33acd..0a8a17c 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -274,7 +274,7 @@ static unsigned int cpu_from_evtchn(unsigned int evtchn) static bool pirq_check_eoi_map(unsigned irq) { - return test_bit(irq, pirq_eoi_map); + return test_bit(pirq_from_irq(irq), pirq_eoi_map); } static bool pirq_needs_eoi_flag(unsigned irq) -- 1.7.2.5