From: Herbert Xu Date: Wed, 16 Mar 2022 22:55:13 +0000 (+1200) Subject: crypto: arm/aes-neonbs-cbc - Select generic cbc and aes X-Git-Tag: v5.10.110~43 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e64dc94990fddc326cd59a5f5bb19af1fbe6f7d3;p=users%2Fdwmw2%2Flinux.git crypto: arm/aes-neonbs-cbc - Select generic cbc and aes commit c8bd296cca3434b13b28b074eaeb78a23284de77 upstream. The algorithm __cbc-aes-neonbs requires a fallback so we need to select the config options for them or otherwise it will fail to register on boot-up. Fixes: 00b99ad2bac2 ("crypto: arm/aes-neonbs - Use generic cbc...") Signed-off-by: Herbert Xu Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/arm/crypto/Kconfig b/arch/arm/crypto/Kconfig index c9bf2df85cb90..c46c05548080a 100644 --- a/arch/arm/crypto/Kconfig +++ b/arch/arm/crypto/Kconfig @@ -83,6 +83,8 @@ config CRYPTO_AES_ARM_BS depends on KERNEL_MODE_NEON select CRYPTO_SKCIPHER select CRYPTO_LIB_AES + select CRYPTO_AES + select CRYPTO_CBC select CRYPTO_SIMD help Use a faster and more secure NEON based implementation of AES in CBC,