]> Git Repo - linux.git/commitdiff
kvm: x86: SRSO_USER_KERNEL_NO is not synthesized
authorPaolo Bonzini <[email protected]>
Tue, 4 Feb 2025 16:13:24 +0000 (11:13 -0500)
committerPaolo Bonzini <[email protected]>
Tue, 4 Feb 2025 16:13:24 +0000 (11:13 -0500)
SYNTHESIZED_F() generally is used together with setup_force_cpu_cap(),
i.e. when it makes sense to present the feature even if cpuid does not
have it *and* the VM is not able to see the difference.  For example,
it can be used when mitigations on the host automatically protect
the guest as well.

The "SYNTHESIZED_F(SRSO_USER_KERNEL_NO)" line came in as a conflict
resolution between the CPUID overhaul from the KVM tree and support
for the feature in the x86 tree.  Using it right now does not hurt,
or make a difference for that matter, because there is no
setup_force_cpu_cap(X86_FEATURE_SRSO_USER_KERNEL_NO).  However, it
is a little less future proof in case such a setup_force_cpu_cap()
appears later, for a case where the kernel somehow is not vulnerable
but the guest would have to apply the mitigation.

Signed-off-by: Paolo Bonzini <[email protected]>
arch/x86/kvm/cpuid.c

index 2cbb3874ad3984d53c92b06eb1983f62c7d8aef6..8eb3a88707f213b139e529999337d8163c3b4941 100644 (file)
@@ -1180,7 +1180,7 @@ void kvm_set_cpu_caps(void)
                SYNTHESIZED_F(SBPB),
                SYNTHESIZED_F(IBPB_BRTYPE),
                SYNTHESIZED_F(SRSO_NO),
-               SYNTHESIZED_F(SRSO_USER_KERNEL_NO),
+               F(SRSO_USER_KERNEL_NO),
        );
 
        kvm_cpu_cap_init(CPUID_8000_0022_EAX,
This page took 0.068836 seconds and 4 git commands to generate.