mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
KVM: Explicity initialize cpus_hardware_enabled
Under CONFIG_MAXSMP, cpus_hardware_enabled is allocated from the heap and not statically initialized. This causes a crash on reboot when kvm thinks vmx is enabled on random nonexistent cpus and accesses nonexistent percpu lists. Fix by explicitly clearing the variable. Cc: stable@kernel.org Reported-and-tested-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
ccc0d38ec1
commit
a4c0364be3
1 changed files with 1 additions and 0 deletions
|
@ -2305,6 +2305,7 @@ int kvm_init(void *opaque, unsigned int vcpu_size,
|
||||||
r = -ENOMEM;
|
r = -ENOMEM;
|
||||||
goto out_free_0;
|
goto out_free_0;
|
||||||
}
|
}
|
||||||
|
cpumask_clear(cpus_hardware_enabled);
|
||||||
|
|
||||||
r = kvm_arch_hardware_setup();
|
r = kvm_arch_hardware_setup();
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
|
|
Loading…
Reference in a new issue