[tip: x86/fpu] xor: Remove redundant X86_FEATURE_OSXSAVE check
From: tip-bot2 for Eric Biggers
Date: Thu Sep 10 2026 - 12:07:08 EST
The following commit has been merged into the x86/fpu branch of tip:
Commit-ID: 2405d15e5ae469bd9ae88ab0381f03e07787742f
Gitweb: https://git.kernel.org/tip/2405d15e5ae469bd9ae88ab0381f03e07787742f
Author: Eric Biggers <ebiggers@xxxxxxxxxx>
AuthorDate: Tue, 01 Sep 2026 07:57:39 -07:00
Committer: Borislav Petkov (AMD) <bp@xxxxxxxxx>
CommitterDate: Thu, 10 Sep 2026 07:26:19 -07:00
xor: Remove redundant X86_FEATURE_OSXSAVE check
X86_FEATURE_AVX implies X86_FEATURE_OSXSAVE already.
Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx>
Signed-off-by: Borislav Petkov (AMD) <bp@xxxxxxxxx>
Reviewed-by: Christoph Hellwig <hch@xxxxxx>
Acked-by: Christoph Hellwig <hch@xxxxxx>
Link: https://patch.msgid.link/20260901145740.42337-8-ebiggers@xxxxxxxxxx
---
lib/raid/xor/x86/xor_arch.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/raid/xor/x86/xor_arch.h b/lib/raid/xor/x86/xor_arch.h
index 99fe85a..991abe3 100644
--- a/lib/raid/xor/x86/xor_arch.h
+++ b/lib/raid/xor/x86/xor_arch.h
@@ -18,8 +18,7 @@ extern struct xor_block_template xor_block_avx;
*/
static __always_inline void __init arch_xor_init(void)
{
- if (boot_cpu_has(X86_FEATURE_AVX) &&
- boot_cpu_has(X86_FEATURE_OSXSAVE)) {
+ if (boot_cpu_has(X86_FEATURE_AVX)) {
xor_force(&xor_block_avx);
} else if (IS_ENABLED(CONFIG_X86_64) || boot_cpu_has(X86_FEATURE_XMM)) {
xor_register(&xor_block_sse);