| Date | Tue, 13 Jul 2021 09:33:18 -0700 | Subject | [PATCH v2 40/46] KVM: VMX: Remove unnecessary initialization of msr_bitmap_mode | From | Sean Christopherson <> |
| |
Don't bother initializing msr_bitmap_mode to 0, all of struct vcpu_vmx is zero initialized.
No functional change intended.
Signed-off-by: Sean Christopherson <seanjc@google.com> --- arch/x86/kvm/vmx/vmx.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c index d5a174ff20f9..bc09a2f7cb5f 100644 --- a/arch/x86/kvm/vmx/vmx.c +++ b/arch/x86/kvm/vmx/vmx.c @@ -6835,7 +6835,6 @@ static int vmx_create_vcpu(struct kvm_vcpu *vcpu) vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R); vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R); } - vmx->msr_bitmap_mode = 0; vmx->loaded_vmcs = &vmx->vmcs01; -- 2.32.0.93.g670b81a890-goog
|