Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754508Ab3EPD6C (ORCPT ); Wed, 15 May 2013 23:58:02 -0400 Received: from mail-pb0-f51.google.com ([209.85.160.51]:34264 "EHLO mail-pb0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754140Ab3EPD6A (ORCPT ); Wed, 15 May 2013 23:58:00 -0400 Date: Thu, 16 May 2013 11:57:48 +0800 (CST) From: Xiong Zhou X-X-Sender: zx@M2420 To: tim.c.chen@linux.intel.com, herbert@gondor.hengli.com.au cc: Stephen Rothwell , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org, Randy Dunlap , jencce.kernel@gmail.com Subject: Re: linux-next: Tree for May 15 (crypto /crct10dif) In-Reply-To: <5193CCEC.7070909@infradead.org> Message-ID: References: <20130515132627.817585a3d9fb3a3e502eb586@canb.auug.org.au> <5193CCEC.7070909@infradead.org> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1934 Lines: 73 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 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 Signed-off-by: Xiong Zhou --- 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-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/