On Tue, Aug 05, 2008 at 02:02:57PM +1000, Stephen Rothwell wrote: > Hi Herbert, > > Today's linux-next build (powerpc ppc64_defconfig) failed like this: > > crypto/built-in.o: In function `.test_aead': > testmgr.c:(.text+0x8378): undefined reference to `.crypto_aead_setauthsize' > testmgr.c:(.text+0x874c): undefined reference to `.crypto_aead_setauthsize' > crypto/built-in.o: In function `.alg_test_aead': > testmgr.c:(.text+0x8bb4): undefined reference to `.crypto_alloc_aead' > > I added the following patch. Thanks Stephen. I've fixed it with the following patch. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <herbert@xxxxxxxxxxxxxxxxxxx> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- diff --git a/crypto/Kconfig b/crypto/Kconfig index 4f72b30..a3f4b4f 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -40,7 +40,9 @@ config CRYPTO_HASH config CRYPTO_MANAGER tristate "Cryptographic algorithm manager" - select CRYPTO_ALGAPI + select CRYPTO_AEAD + select CRYPTO_HASH + select CRYPTO_BLKCIPHER help Create default cryptographic template instantiations such as cbc(aes). @@ -85,9 +87,7 @@ config CRYPTO_AUTHENC config CRYPTO_TEST tristate "Testing module" depends on m - select CRYPTO_ALGAPI - select CRYPTO_AEAD - select CRYPTO_BLKCIPHER + select CRYPTO_MANAGER help Quick & dirty crypto test module. -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html