From: Arnd Bergmann Date: Tue, 18 Jun 2019 11:22:13 +0000 (+0200) Subject: ipsec: select crypto ciphers for xfrm_algo X-Git-Tag: v5.2.3~276 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=813c009e9b2920f57fcfaa42d8c76f1152bebdd0;p=users%2Fdwmw2%2Flinux.git ipsec: select crypto ciphers for xfrm_algo [ Upstream commit 597179b0ba550bd83fab1a9d57c42a9343c58514 ] kernelci.org reports failed builds on arc because of what looks like an old missed 'select' statement: net/xfrm/xfrm_algo.o: In function `xfrm_probe_algs': xfrm_algo.c:(.text+0x1e8): undefined reference to `crypto_has_ahash' I don't see this in randconfig builds on other architectures, but it's fairly clear we want to select the hash code for it, like we do for all its other users. As Herbert points out, CRYPTO_BLKCIPHER is also required even though it has not popped up in build tests. Fixes: 17bc19702221 ("ipsec: Use skcipher and ahash when probing algorithms") Signed-off-by: Arnd Bergmann Acked-by: Herbert Xu Signed-off-by: Steffen Klassert Signed-off-by: Sasha Levin --- diff --git a/net/xfrm/Kconfig b/net/xfrm/Kconfig index c967fc3c38c87..51bb6018f3bf3 100644 --- a/net/xfrm/Kconfig +++ b/net/xfrm/Kconfig @@ -15,6 +15,8 @@ config XFRM_ALGO tristate select XFRM select CRYPTO + select CRYPTO_HASH + select CRYPTO_BLKCIPHER if INET config XFRM_USER