projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b78ce4
)
KVM/VMX: Expose SSBD properly to guests
author
Konrad Rzeszutek Wilk
<
[email protected]
>
Mon, 21 May 2018 21:54:49 +0000
(17:54 -0400)
committer
Thomas Gleixner
<
[email protected]
>
Wed, 23 May 2018 08:55:52 +0000
(10:55 +0200)
The X86_FEATURE_SSBD is an synthetic CPU feature - that is
it bit location has no relevance to the real CPUID 0x7.EBX[31]
bit position. For that we need the new CPU feature name.
Fixes: 52817587e706 ("x86/cpufeatures: Disentangle SSBD enumeration")
Signed-off-by: Konrad Rzeszutek Wilk <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc:
[email protected]
Cc: "Radim Krčmář" <
[email protected]
>
Cc:
[email protected]
Cc: "H. Peter Anvin" <
[email protected]
>
Cc: Paolo Bonzini <
[email protected]
>
Link:
https://lkml.kernel.org/r/
[email protected]
arch/x86/kvm/cpuid.c
patch
|
blob
|
history
diff --git
a/arch/x86/kvm/cpuid.c
b/arch/x86/kvm/cpuid.c
index ced851169730a0cd3910d05baae61293d1f56a4f..598461e24be3b02ee1bb687ccc1dd98d720da0b3 100644
(file)
--- a/
arch/x86/kvm/cpuid.c
+++ b/
arch/x86/kvm/cpuid.c
@@
-407,8
+407,8
@@
static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
/* cpuid 7.0.edx*/
const u32 kvm_cpuid_7_0_edx_x86_features =
- F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
F(SSBD) |
- F(ARCH_CAPABILITIES);
+ F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
+ F(
SPEC_CTRL_SSBD) | F(
ARCH_CAPABILITIES);
/* all calls to cpuid_count() should be made on the same cpu */
get_cpu();