diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-04-26 09:42:48 -0400 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2017-05-02 11:18:13 +0200 |
commit | f31b969217b42df605b2e0e64aa6b3e03e781a4f (patch) | |
tree | f84289b39dde08e3eab1b272838cc4bc5fb45c34 /arch/x86/xen | |
parent | 84d582d236dc1f9085e741affc72e9ba061a67c2 (diff) | |
download | linux-stable-f31b969217b42df605b2e0e64aa6b3e03e781a4f.tar.gz linux-stable-f31b969217b42df605b2e0e64aa6b3e03e781a4f.tar.bz2 linux-stable-f31b969217b42df605b2e0e64aa6b3e03e781a4f.zip |
xen/x86: Call xen_smp_intr_init_pv() on BSP
Recent code rework that split handling ov PV, HVM and PVH guests into
separate files missed calling xen_smp_intr_init_pv() on CPU0.
Add this call.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reported-by: Sander Eikelenboom <linux@eikelenboom.it>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/smp_pv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/smp_pv.c b/arch/x86/xen/smp_pv.c index c0e3b9624295..aae32535f4ec 100644 --- a/arch/x86/xen/smp_pv.c +++ b/arch/x86/xen/smp_pv.c @@ -249,7 +249,7 @@ static void __init xen_pv_smp_prepare_cpus(unsigned int max_cpus) xen_pmu_init(0); - if (xen_smp_intr_init(0)) + if (xen_smp_intr_init(0) || xen_smp_intr_init_pv(0)) BUG(); if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL)) |