aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2025-10-24 15:51:24 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2025-10-24 15:51:24 -0700
commit7083bb6060a99a4c7e60e710b70a2ea8fb2d524c (patch)
tree9fc08a9c1e909ce33a53dc111a280bb301e169a3 /lib
parentMerge tag '6.18-rc2-smb-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 (diff)
parentlib/crypto: poly1305: Restore dependency of arch code on !KMSAN (diff)
downloadlinux-7083bb6060a99a4c7e60e710b70a2ea8fb2d524c.tar.gz
linux-7083bb6060a99a4c7e60e710b70a2ea8fb2d524c.zip
Merge tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux
Pull crypto library fix from Eric Biggers: "Avoid some false-positive KMSAN warnings by restoring the dependency of the architecture-optimized Poly1305 code on !KMSAN" * tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux: lib/crypto: poly1305: Restore dependency of arch code on !KMSAN
Diffstat (limited to 'lib')
-rw-r--r--lib/crypto/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig
index eea17e36a22b..8886055e938f 100644
--- a/lib/crypto/Kconfig
+++ b/lib/crypto/Kconfig
@@ -97,7 +97,7 @@ config CRYPTO_LIB_POLY1305
config CRYPTO_LIB_POLY1305_ARCH
bool
- depends on CRYPTO_LIB_POLY1305 && !UML
+ depends on CRYPTO_LIB_POLY1305 && !UML && !KMSAN
default y if ARM
default y if ARM64 && KERNEL_MODE_NEON
default y if MIPS