]> Pileus Git - ~andy/linux/commit
x86/xen: disable premption when enabling local irqs
authorDavid Vrabel <david.vrabel@citrix.com>
Thu, 15 Aug 2013 12:21:04 +0000 (13:21 +0100)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 20 Aug 2013 14:02:03 +0000 (10:02 -0400)
commitfb58e30091c74967f6b8e98b3c1f292782f92b41
tree089af5ce298915f3825545319ec58a185ca2ab90
parent781575cd8127c30a0444953bcd0b6d1e882df13e
x86/xen: disable premption when enabling local irqs

If CONFIG_PREEMPT is enabled then xen_enable_irq() (and
xen_restore_fl()) could be preempted and rescheduled on a different
VCPU in between the clear of the mask and the check for pending
events.  This may result in events being lost as the upcall will check
for pending events on the wrong VCPU.

Fix this by disabling preemption around the unmask and check for
events.

Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
arch/x86/xen/irq.c