diff options
author | Sean Christopherson <[email protected]> | 2022-06-14 20:07:07 +0000 |
---|---|---|
committer | Sean Christopherson <[email protected]> | 2022-07-13 18:14:25 -0700 |
commit | 3d5f8d03786fee6aa7a4c59446c5356775aeb4d9 (patch) | |
tree | 08fee0ca05e77d2651b01d11349638ff2624e625 | |
parent | 12a985aeb40691a27befb0ae99707d0322b4bd8e (diff) |
KVM: selftests: Drop unused SVM_CPUID_FUNC macro
Drop SVM_CPUID_FUNC to reduce the probability of tests open coding CPUID
checks instead of using kvm_cpu_has() or this_cpu_has().
Signed-off-by: Sean Christopherson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | tools/testing/selftests/kvm/include/x86_64/svm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/testing/selftests/kvm/include/x86_64/svm.h b/tools/testing/selftests/kvm/include/x86_64/svm.h index 2225e5077350..c8343ff84f7f 100644 --- a/tools/testing/selftests/kvm/include/x86_64/svm.h +++ b/tools/testing/selftests/kvm/include/x86_64/svm.h @@ -218,8 +218,6 @@ struct __attribute__ ((__packed__)) vmcb { struct vmcb_save_area save; }; -#define SVM_CPUID_FUNC 0x8000000a - #define SVM_VM_CR_SVM_DISABLE 4 #define SVM_SELECTOR_S_SHIFT 4 |