diff options
author | 2021-06-22 10:56:59 -0700 | |
---|---|---|
committer | 2021-06-24 18:00:38 -0400 | |
commit | dbc4739b6b3ed478531155c832573a3fb1ab32d9 (patch) | |
tree | 5fb59fad4f40856668b2b69f14d3e1ef3db18dc4 /arch/x86/kvm/svm/nested.c | |
parent | KVM: x86/mmu: Rename unsync helper and update related comments (diff) | |
download | linux-dev-dbc4739b6b3ed478531155c832573a3fb1ab32d9.tar.xz linux-dev-dbc4739b6b3ed478531155c832573a3fb1ab32d9.zip |
KVM: x86: Fix sizes used to pass around CR0, CR4, and EFER
When configuring KVM's MMU, pass CR0 and CR4 as unsigned longs, and EFER
as a u64 in various flows (mostly MMU). Passing the params as u32s is
functionally ok since all of the affected registers reserve bits 63:32 to
zero (enforced by KVM), but it's technically wrong.
No functional change intended.
Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-Id: <20210622175739.3610207-15-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm/nested.c')
-rw-r--r-- | arch/x86/kvm/svm/nested.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm/nested.c b/arch/x86/kvm/svm/nested.c index dca20f949b63..9f0e7ed672b2 100644 --- a/arch/x86/kvm/svm/nested.c +++ b/arch/x86/kvm/svm/nested.c @@ -1244,8 +1244,8 @@ static int svm_set_nested_state(struct kvm_vcpu *vcpu, &user_kvm_nested_state->data.svm[0]; struct vmcb_control_area *ctl; struct vmcb_save_area *save; + unsigned long cr0; int ret; - u32 cr0; BUILD_BUG_ON(sizeof(struct vmcb_control_area) + sizeof(struct vmcb_save_area) > KVM_STATE_NESTED_SVM_VMCB_SIZE); |