mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
KVM: Fix jump label out_free_* in kvm_init()
The jump label out_free_1 and out_free_2 deal with the same stuff, so git rid of one and rename the label out_free_0a to retain the label name order. Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
24885d1d79
commit
faf0be2216
@@ -4354,12 +4354,12 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
|
|||||||
|
|
||||||
r = kvm_arch_hardware_setup();
|
r = kvm_arch_hardware_setup();
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
goto out_free_0a;
|
goto out_free_1;
|
||||||
|
|
||||||
for_each_online_cpu(cpu) {
|
for_each_online_cpu(cpu) {
|
||||||
smp_call_function_single(cpu, check_processor_compat, &r, 1);
|
smp_call_function_single(cpu, check_processor_compat, &r, 1);
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
goto out_free_1;
|
goto out_free_2;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
|
r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
|
||||||
@@ -4416,9 +4416,8 @@ out_free_3:
|
|||||||
unregister_reboot_notifier(&kvm_reboot_notifier);
|
unregister_reboot_notifier(&kvm_reboot_notifier);
|
||||||
cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
|
cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
|
||||||
out_free_2:
|
out_free_2:
|
||||||
out_free_1:
|
|
||||||
kvm_arch_hardware_unsetup();
|
kvm_arch_hardware_unsetup();
|
||||||
out_free_0a:
|
out_free_1:
|
||||||
free_cpumask_var(cpus_hardware_enabled);
|
free_cpumask_var(cpus_hardware_enabled);
|
||||||
out_free_0:
|
out_free_0:
|
||||||
kvm_irqfd_exit();
|
kvm_irqfd_exit();
|
||||||
|
Reference in New Issue
Block a user