Skip to content

Commit 7083bb6

Browse files
committed
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
2 parents f2b2465 + 1af424b commit 7083bb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/crypto/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ config CRYPTO_LIB_POLY1305
9797

9898
config CRYPTO_LIB_POLY1305_ARCH
9999
bool
100-
depends on CRYPTO_LIB_POLY1305 && !UML
100+
depends on CRYPTO_LIB_POLY1305 && !UML && !KMSAN
101101
default y if ARM
102102
default y if ARM64 && KERNEL_MODE_NEON
103103
default y if MIPS

0 commit comments

Comments
 (0)