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>
This commit is contained in:
parent
84d582d236
commit
f31b969217
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ static void __init xen_pv_smp_prepare_cpus(unsigned int max_cpus)
|
||||||
|
|
||||||
xen_pmu_init(0);
|
xen_pmu_init(0);
|
||||||
|
|
||||||
if (xen_smp_intr_init(0))
|
if (xen_smp_intr_init(0) || xen_smp_intr_init_pv(0))
|
||||||
BUG();
|
BUG();
|
||||||
|
|
||||||
if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
|
if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
|
||||||
|
|
Loading…
Reference in a new issue