From: Vaishali Thakkar Date: Tue, 16 Apr 2024 09:08:12 +0000 (+0000) Subject: x86/svm: Add flushbyasid in the supported features X-Git-Tag: 4.19.0-rc1~330 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=09cb855f33fb619c87d8d4250d3a980f568f151b;p=xen.git x86/svm: Add flushbyasid in the supported features TLB Flush by ASID is missing in the list of supported features here. So, add it. Signed-off-by: Vaishali Thakkar Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/hvm/svm/svm.c b/xen/arch/x86/hvm/svm/svm.c index a745acd903..4719fffae5 100644 --- a/xen/arch/x86/hvm/svm/svm.c +++ b/xen/arch/x86/hvm/svm/svm.c @@ -2510,6 +2510,7 @@ const struct hvm_function_table * __init start_svm(void) P(cpu_has_svm_lbrv, "Last Branch Record (LBR) Virtualisation"); P(cpu_has_svm_nrips, "Next-RIP Saved on #VMEXIT"); P(cpu_has_svm_cleanbits, "VMCB Clean Bits"); + P(cpu_has_svm_flushbyasid, "TLB flush by ASID"); P(cpu_has_svm_decode, "DecodeAssists"); P(cpu_has_svm_vloadsave, "Virtual VMLOAD/VMSAVE"); P(cpu_has_svm_vgif, "Virtual GIF");