]> www.infradead.org Git - users/hch/configfs.git/commitdiff
KVM: selftests: use X86_MEMTYPE_WB instead of VMX_BASIC_MEM_TYPE_WB
authorJohn Sperbeck <jsperbeck@google.com>
Wed, 6 Nov 2024 03:40:31 +0000 (19:40 -0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 8 Nov 2024 10:57:12 +0000 (05:57 -0500)
In 08a7d2525511 ("tools arch x86: Sync the msr-index.h copy with the
kernel sources"), VMX_BASIC_MEM_TYPE_WB was removed.  Use X86_MEMTYPE_WB
instead.

Fixes: 08a7d2525511 ("tools arch x86: Sync the msr-index.h copy with the
kernel sources")
Signed-off-by: John Sperbeck <jsperbeck@google.com>
Message-ID: <20241106034031.503291-1-jsperbeck@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/lib/x86_64/vmx.c

index 089b8925b6b22d9929bee551435ebdca0fa24764..d7ac122820bfe829582f5ee7c8263d1ae8e03217 100644 (file)
@@ -200,7 +200,7 @@ static inline void init_vmcs_control_fields(struct vmx_pages *vmx)
        if (vmx->eptp_gpa) {
                uint64_t ept_paddr;
                struct eptPageTablePointer eptp = {
-                       .memory_type = VMX_BASIC_MEM_TYPE_WB,
+                       .memory_type = X86_MEMTYPE_WB,
                        .page_walk_length = 3, /* + 1 */
                        .ad_enabled = ept_vpid_cap_supported(VMX_EPT_VPID_CAP_AD_BITS),
                        .address = vmx->eptp_gpa >> PAGE_SHIFT_4K,