From: Andre Przywara Date: Tue, 21 Dec 2010 10:12:03 +0000 (+0100) Subject: KVM: SVM: add new SVM feature bit names X-Git-Tag: Ubuntu-5.10.0-12.13~25922^2~15 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=ddce97aac5405e0b2b8b2191cb65b5a48eb14145;p=mirror_ubuntu-hirsute-kernel.git KVM: SVM: add new SVM feature bit names the recent APM Vol.2 and the recent AMD CPUID specification describe new CPUID features bits for SVM. Name them here for later usage. Signed-off-by: Andre Przywara Signed-off-by: Marcelo Tosatti --- diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 90d06582aac0..2830a73ea736 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -51,6 +51,10 @@ MODULE_LICENSE("GPL"); #define SVM_FEATURE_LBRV (1 << 1) #define SVM_FEATURE_SVML (1 << 2) #define SVM_FEATURE_NRIP (1 << 3) +#define SVM_FEATURE_TSC_RATE (1 << 4) +#define SVM_FEATURE_VMCB_CLEAN (1 << 5) +#define SVM_FEATURE_FLUSH_ASID (1 << 6) +#define SVM_FEATURE_DECODE_ASSIST (1 << 7) #define SVM_FEATURE_PAUSE_FILTER (1 << 10) #define NESTED_EXIT_HOST 0 /* Exit handled on host level */