* [PATCH] x86/cpufeatures: Make AVX-VNNI depend on AVX
@ 2025-02-20 6:01 Eric Biggers
2025-02-21 13:27 ` [tip: x86/urgent] " tip-bot2 for Eric Biggers
0 siblings, 1 reply; 2+ messages in thread
From: Eric Biggers @ 2025-02-20 6:01 UTC (permalink / raw)
To: x86; +Cc: linux-kernel
From: Eric Biggers <ebiggers@google.com>
The noxsave option disables support for AVX, but support for the
AVX-VNNI feature was still declared on CPUs that support it. Fix this.
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
arch/x86/kernel/cpu/cpuid-deps.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/kernel/cpu/cpuid-deps.c b/arch/x86/kernel/cpu/cpuid-deps.c
index 8bd84114c2d96..df838e3bdbe02 100644
--- a/arch/x86/kernel/cpu/cpuid-deps.c
+++ b/arch/x86/kernel/cpu/cpuid-deps.c
@@ -43,10 +43,11 @@ static const struct cpuid_dep cpuid_deps[] = {
{ X86_FEATURE_SSSE3, X86_FEATURE_XMM2, },
{ X86_FEATURE_F16C, X86_FEATURE_XMM2, },
{ X86_FEATURE_AES, X86_FEATURE_XMM2 },
{ X86_FEATURE_SHA_NI, X86_FEATURE_XMM2 },
{ X86_FEATURE_GFNI, X86_FEATURE_XMM2 },
+ { X86_FEATURE_AVX_VNNI, X86_FEATURE_AVX },
{ X86_FEATURE_FMA, X86_FEATURE_AVX },
{ X86_FEATURE_VAES, X86_FEATURE_AVX },
{ X86_FEATURE_VPCLMULQDQ, X86_FEATURE_AVX },
{ X86_FEATURE_AVX2, X86_FEATURE_AVX, },
{ X86_FEATURE_AVX512F, X86_FEATURE_AVX, },
base-commit: 87a132e73910e8689902aed7f2fc229d6908383b
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [tip: x86/urgent] x86/cpufeatures: Make AVX-VNNI depend on AVX
2025-02-20 6:01 [PATCH] x86/cpufeatures: Make AVX-VNNI depend on AVX Eric Biggers
@ 2025-02-21 13:27 ` tip-bot2 for Eric Biggers
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Eric Biggers @ 2025-02-21 13:27 UTC (permalink / raw)
To: linux-tip-commits
Cc: Eric Biggers, Ingo Molnar, Dave Hansen, x86, linux-kernel
The following commit has been merged into the x86/urgent branch of tip:
Commit-ID: 517120728484df1ab8b71cba8d2cad19f52f18a1
Gitweb: https://git.kernel.org/tip/517120728484df1ab8b71cba8d2cad19f52f18a1
Author: Eric Biggers <ebiggers@google.com>
AuthorDate: Wed, 19 Feb 2025 22:01:24 -08:00
Committer: Ingo Molnar <mingo@kernel.org>
CommitterDate: Fri, 21 Feb 2025 14:19:16 +01:00
x86/cpufeatures: Make AVX-VNNI depend on AVX
The 'noxsave' boot option disables support for AVX, but support for the
AVX-VNNI feature was still declared on CPUs that support it. Fix this.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Link: https://lore.kernel.org/r/20250220060124.89622-1-ebiggers@kernel.org
---
arch/x86/kernel/cpu/cpuid-deps.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/kernel/cpu/cpuid-deps.c b/arch/x86/kernel/cpu/cpuid-deps.c
index 8bd8411..df838e3 100644
--- a/arch/x86/kernel/cpu/cpuid-deps.c
+++ b/arch/x86/kernel/cpu/cpuid-deps.c
@@ -45,6 +45,7 @@ static const struct cpuid_dep cpuid_deps[] = {
{ X86_FEATURE_AES, X86_FEATURE_XMM2 },
{ X86_FEATURE_SHA_NI, X86_FEATURE_XMM2 },
{ X86_FEATURE_GFNI, X86_FEATURE_XMM2 },
+ { X86_FEATURE_AVX_VNNI, X86_FEATURE_AVX },
{ X86_FEATURE_FMA, X86_FEATURE_AVX },
{ X86_FEATURE_VAES, X86_FEATURE_AVX },
{ X86_FEATURE_VPCLMULQDQ, X86_FEATURE_AVX },
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-02-21 13:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-20 6:01 [PATCH] x86/cpufeatures: Make AVX-VNNI depend on AVX Eric Biggers
2025-02-21 13:27 ` [tip: x86/urgent] " tip-bot2 for Eric Biggers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox