x86/xen: resume timer irqs early
commit82908a4acc2143da630162c5bebf381c6c166d45
authorDavid Vrabel <david.vrabel@citrix.com>
Thu, 7 Aug 2014 16:06:06 +0000 (7 17:06 +0100)
committerJiri Slaby <jslaby@suse.cz>
Wed, 3 Sep 2014 19:31:32 +0000 (3 21:31 +0200)
tree7455c698dc1b33b73ac94a75985b3760a9d4b30d
parent465502e733e8b8f5cf09caf5427ce75d73f59276
x86/xen: resume timer irqs early

commit 8d5999df35314607c38fbd6bdd709e25c3a4eeab upstream.

If the timer irqs are resumed during device resume it is possible in
certain circumstances for the resume to hang early on, before device
interrupts are resumed.  For an Ubuntu 14.04 PVHVM guest this would
occur in ~0.5% of resume attempts.

It is not entirely clear what is occuring the point of the hang but I
think a task necessary for the resume calls schedule_timeout(),
waiting for a timer interrupt (which never arrives).  This failure may
require specific tasks to be running on the other VCPUs to trigger
(processes are not frozen during a suspend/resume if PREEMPT is
disabled).

Add IRQF_EARLY_RESUME to the timer interrupts so they are resumed in
syscore_resume().

Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/x86/xen/time.c