Return-Path: Received: from rcsinet10.oracle.com ([148.87.113.121]:36770 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755932Ab1FFSXT (ORCPT ); Mon, 6 Jun 2011 14:23:19 -0400 Date: Mon, 6 Jun 2011 11:22:17 -0700 From: Randy Dunlap To: Wakko Warner , linux-nfs@vger.kernel.org Cc: linux-kernel@vger.kernel.org, "J. Bruce Fields" , Neil Brown Subject: [PATCH] nfsd: v4 support requires CRYPTO Message-Id: <20110606112217.9648b8ff.randy.dunlap@oracle.com> In-Reply-To: <20110603174528.GA1368@animx.eu.org> References: <20110603174528.GA1368@animx.eu.org> Content-Type: text/plain; charset=US-ASCII Sender: linux-nfs-owner@vger.kernel.org List-ID: MIME-Version: 1.0 From: Randy Dunlap nfsd V4 support uses crypto interfaces, so select CRYPTO to fix build errors in 2.6.39: ERROR: "crypto_destroy_tfm" [fs/nfsd/nfsd.ko] undefined! ERROR: "crypto_alloc_base" [fs/nfsd/nfsd.ko] undefined! Reported-by: Wakko Warner Signed-off-by: Randy Dunlap Cc: stable@kernel.org --- fs/nfsd/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-2.6.39.orig/fs/nfsd/Kconfig +++ linux-2.6.39/fs/nfsd/Kconfig @@ -82,6 +82,7 @@ config NFSD_V4 select NFSD_V3 select FS_POSIX_ACL select SUNRPC_GSS + select CRYPTO help This option enables support in your system's NFS server for version 4 of the NFS protocol (RFC 3530).