linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* next-20080515 crypto build failure
@ 2008-05-15 19:12 Randy Dunlap
  2008-05-15 21:28 ` [PATCH] crypto: fix cryptd build fix due to missing ahash Sebastian Siewior
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2008-05-15 19:12 UTC (permalink / raw)
  To: herbert, linux-next; +Cc: linux-kernel

on x86_64:

crypto/built-in.o: In function `cryptd_alloc':
cryptd.c:(.text+0x9b5a): undefined reference to `crypto_ahash_type'
make[1]: *** [.tmp_vmlinux1] Error 1


CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_MANAGER=y
# CONFIG_CRYPTO_GF128MUL is not set
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_CRYPTD=y
# CONFIG_CRYPTO_AUTHENC is not set

#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set

#
# Hash modes
#
# CONFIG_CRYPTO_HMAC is not set
# CONFIG_CRYPTO_XCBC is not set

#
# Digest
#
# CONFIG_CRYPTO_CRC32C is not set
CONFIG_CRYPTO_MD4=y
# CONFIG_CRYPTO_MD5 is not set
CONFIG_CRYPTO_MICHAEL_MIC=y
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
CONFIG_CRYPTO_RMD320=y
# CONFIG_CRYPTO_SHA1 is not set
# CONFIG_CRYPTO_SHA256 is not set
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_TGR192 is not set
CONFIG_CRYPTO_WP512=y

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=y
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_CAMELLIA is not set
CONFIG_CRYPTO_CAST5=y
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
CONFIG_CRYPTO_SEED=y
# CONFIG_CRYPTO_SERPENT is not set
CONFIG_CRYPTO_TEA=y
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
CONFIG_CRYPTO_TWOFISH_X86_64=y

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
# CONFIG_CRYPTO_LZO is not set
# CONFIG_CRYPTO_HW is not set


---
~Randy


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] crypto: fix cryptd build fix due to missing ahash
  2008-05-15 19:12 next-20080515 crypto build failure Randy Dunlap
@ 2008-05-15 21:28 ` Sebastian Siewior
  2008-05-15 22:33   ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Siewior @ 2008-05-15 21:28 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: herbert, linux-next, linux-kernel, Loc Ho

This was reported by Randy Dunlap:
|crypto/built-in.o: In function `cryptd_alloc':
|cryptd.c:(.text+0x9b5a): undefined reference to `crypto_ahash_type'

Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
---
 crypto/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/crypto/Kconfig b/crypto/Kconfig
index 5963a95..ffcd467 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -66,6 +66,7 @@ config CRYPTO_CRYPTD
 	tristate "Software async crypto daemon"
 	select CRYPTO_BLKCIPHER
 	select CRYPTO_MANAGER
+	select CRYPTO_HASH
 	help
 	  This is a generic software asynchronous crypto daemon that
 	  converts an arbitrary synchronous software crypto algorithm
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] crypto: fix cryptd build fix due to missing ahash
  2008-05-15 21:28 ` [PATCH] crypto: fix cryptd build fix due to missing ahash Sebastian Siewior
@ 2008-05-15 22:33   ` Randy Dunlap
  2008-05-16  1:39     ` Herbert Xu
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2008-05-15 22:33 UTC (permalink / raw)
  To: Sebastian Siewior; +Cc: linux-kernel, Loc Ho, herbert, linux-next


> This was reported by Randy Dunlap:
> |crypto/built-in.o: In function `cryptd_alloc':
> |cryptd.c:(.text+0x9b5a): undefined reference to `crypto_ahash_type'
> 
> Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>

Acked-by: Randy Dunlap <randy.dunlap@oracle.com>

Thanks.

> ---
>  crypto/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/crypto/Kconfig b/crypto/Kconfig
> index 5963a95..ffcd467 100644
> --- a/crypto/Kconfig
> +++ b/crypto/Kconfig
> @@ -66,6 +66,7 @@ config CRYPTO_CRYPTD
>  	tristate "Software async crypto daemon"
>  	select CRYPTO_BLKCIPHER
>  	select CRYPTO_MANAGER
> +	select CRYPTO_HASH
>  	help
>  	  This is a generic software asynchronous crypto daemon that
>  	  converts an arbitrary synchronous software crypto algorithm
> -- 
> 1.5.4.3
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] crypto: fix cryptd build fix due to missing ahash
  2008-05-15 22:33   ` Randy Dunlap
@ 2008-05-16  1:39     ` Herbert Xu
  0 siblings, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2008-05-16  1:39 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Sebastian Siewior, linux-kernel, Loc Ho, linux-next

On Thu, May 15, 2008 at 05:33:54PM -0500, Randy Dunlap wrote:
> 
> > This was reported by Randy Dunlap:
> > |crypto/built-in.o: In function `cryptd_alloc':
> > |cryptd.c:(.text+0x9b5a): undefined reference to `crypto_ahash_type'
> > 
> > Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
> 
> Acked-by: Randy Dunlap <randy.dunlap@oracle.com>

Thanks, I've merged this into the original change.
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-16  1:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-15 19:12 next-20080515 crypto build failure Randy Dunlap
2008-05-15 21:28 ` [PATCH] crypto: fix cryptd build fix due to missing ahash Sebastian Siewior
2008-05-15 22:33   ` Randy Dunlap
2008-05-16  1:39     ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).