diff options
-rw-r--r-- | arch/x86/kvm/x86.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 50e2e10b8041..cbe16b4cad5c 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -6752,8 +6752,10 @@ int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) | |||
6752 | } | 6752 | } |
6753 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; | 6753 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; |
6754 | 6754 | ||
6755 | if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) | 6755 | if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) { |
6756 | r = -ENOMEM; | ||
6756 | goto fail_free_mce_banks; | 6757 | goto fail_free_mce_banks; |
6758 | } | ||
6757 | 6759 | ||
6758 | r = fx_init(vcpu); | 6760 | r = fx_init(vcpu); |
6759 | if (r) | 6761 | if (r) |