]> xenbits.xensource.com Git - xen.git/commitdiff
x86/svm: Add flushbyasid in the supported features
authorVaishali Thakkar <vaishali.thakkar@vates.tech>
Tue, 16 Apr 2024 09:08:12 +0000 (09:08 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 19 Apr 2024 12:55:23 +0000 (13:55 +0100)
TLB Flush by ASID is missing in the list of supported features
here. So, add it.

Signed-off-by: Vaishali Thakkar <vaishali.thakkar@vates.tech>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/hvm/svm/svm.c

index a745acd903484b6fc3f9f8dd0bcbf476a94f69f0..4719fffae589617177c3bd3db7953a79d276ffc2 100644 (file)
@@ -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");