diff options
author | Eric Biggers <ebiggers@google.com> | 2025-05-05 23:33:41 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-05-12 08:33:14 +0300 |
commit | 40b9969796bfa49ed1b0f7ddc254f48cb2ac6d2c (patch) | |
tree | 3348bf44e9e622851051c1b1d26f7cd8ea12114a /lib/crypto/aesgcm.c | |
parent | d469eaed223fa485eabebd3bcd05ddd3c891f54e (diff) | |
download | linux-40b9969796bfa49ed1b0f7ddc254f48cb2ac6d2c.tar.xz |
crypto: testmgr - replace CRYPTO_MANAGER_DISABLE_TESTS with CRYPTO_SELFTESTS
The negative-sense of CRYPTO_MANAGER_DISABLE_TESTS is a longstanding
mistake that regularly causes confusion. Especially bad is that you can
have CRYPTO=n && CRYPTO_MANAGER_DISABLE_TESTS=n, which is ambiguous.
Replace CRYPTO_MANAGER_DISABLE_TESTS with CRYPTO_SELFTESTS which has the
expected behavior.
The tests continue to be disabled by default.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/crypto/aesgcm.c')
-rw-r--r-- | lib/crypto/aesgcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/aesgcm.c b/lib/crypto/aesgcm.c index 902e49410aaf..277824d6b4af 100644 --- a/lib/crypto/aesgcm.c +++ b/lib/crypto/aesgcm.c @@ -199,7 +199,7 @@ MODULE_DESCRIPTION("Generic AES-GCM library"); MODULE_AUTHOR("Ard Biesheuvel <ardb@kernel.org>"); MODULE_LICENSE("GPL"); -#ifndef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS +#ifdef CONFIG_CRYPTO_SELFTESTS /* * Test code below. Vectors taken from crypto/testmgr.h |