xen: count resched interrupts properly
Make sure resched interrupts appear in /proc/interrupts in the proper place. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
bfdab126cf
commit
38bb5ab417
@ -65,6 +65,12 @@ static struct call_data_struct *call_data;
|
|||||||
*/
|
*/
|
||||||
static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
|
static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_X86_32
|
||||||
|
__get_cpu_var(irq_stat).irq_resched_count++;
|
||||||
|
#else
|
||||||
|
add_pda(irq_resched_count, 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user