From patchwork Fri Jun 3 08:49:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Suresh Jayaraman X-Patchwork-Id: 845772 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p538meQq004696 for ; Fri, 3 Jun 2011 08:48:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752212Ab1FCIsk (ORCPT ); Fri, 3 Jun 2011 04:48:40 -0400 Received: from cantor.suse.de ([195.135.220.2]:60759 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751896Ab1FCIsj (ORCPT ); Fri, 3 Jun 2011 04:48:39 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id A533693F46; Fri, 3 Jun 2011 10:48:38 +0200 (CEST) Message-ID: <4DE89FFD.6040006@suse.de> Date: Fri, 03 Jun 2011 14:19:01 +0530 From: Suresh Jayaraman User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110414 SUSE/3.1.10 Thunderbird/3.1.10 MIME-Version: 1.0 To: Steve French Cc: linux-cifs Subject: [PATCH] cifs: make CIFS depend on CRYPTO_ECB Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Fri, 03 Jun 2011 08:48:41 +0000 (UTC) When CONFIG_CRYPTO_ECB is not set, trying to mount a CIFS share with NTLM security resulted in mount failure with the following error: "CIFS VFS: could not allocate des crypto API" Seems like a leftover from commit 43988d7. Signed-off-by: Suresh Jayaraman Reviewed-by: Jeff Layton --- fs/cifs/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/cifs/Kconfig b/fs/cifs/Kconfig index 1cd4c3a..66c68ab 100644 --- a/fs/cifs/Kconfig +++ b/fs/cifs/Kconfig @@ -7,6 +7,7 @@ config CIFS select CRYPTO_MD5 select CRYPTO_HMAC select CRYPTO_ARC4 + select CRYPTO_ECB select CRYPTO_DES help This is the client VFS module for the Common Internet File System