On Wed, 15 May 2013, Randy Dunlap wrote: > On 05/14/13 20:26, Stephen Rothwell wrote: > > Hi all, > > > > Changes since 20130514: > > > > on x86_64: > > crypto/built-in.o: In function `chksum_digest': > crct10dif.c:(.text+0x2789f): undefined reference to `crc_t10dif_generic' > crypto/built-in.o: In function `chksum_finup': > crct10dif.c:(.text+0x278c7): undefined reference to `crc_t10dif_generic' > crypto/built-in.o: In function `chksum_update': > crct10dif.c:(.text+0x278ef): undefined reference to `crc_t10dif_generic' > > > CONFIG_CRYPTO_CRCT10DIF=y > CONFIG_CRC_T10DIF=m > > > > Full randconfig file is attached. > > > -- > ~Randy > just try. From: Xiong Zhou <jencce.kernel@xxxxxxxxx> Try to fix randconfig build error reported by Randy Dunlap: on x86_64: crypto/built-in.o: In function `chksum_digest': crct10dif.c:(.text+0x2789f): undefined reference to `crc_t10dif_generic' crypto/built-in.o: In function `chksum_finup': crct10dif.c:(.text+0x278c7): undefined reference to `crc_t10dif_generic' crypto/built-in.o: In function `chksum_update': crct10dif.c:(.text+0x278ef): undefined reference to `crc_t10dif_generic' CONFIG_CRYPTO_CRCT10DIF=y CONFIG_CRC_T10DIF=m Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Signed-off-by: Xiong Zhou <jencce.kernel@xxxxxxxxx> --- crypto/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/Kconfig b/crypto/Kconfig index 25b5209..28655bc 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -378,6 +378,7 @@ config CRYPTO_CRC32_PCLMUL config CRYPTO_CRCT10DIF tristate "CRCT10DIF algorithm" + depends on CRC_T10DIF select CRYPTO_HASH help CRC T10 Data Integrity Field computation is being cast as -- 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