From patchwork Sun Oct 12 11:41:03 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guo-Fu Tseng X-Patchwork-Id: 4074 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 17184DDDEE for ; Sun, 12 Oct 2008 22:41:44 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752241AbYJLLlj (ORCPT ); Sun, 12 Oct 2008 07:41:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752142AbYJLLlj (ORCPT ); Sun, 12 Oct 2008 07:41:39 -0400 Received: from 220-133-139-86.HINET-IP.hinet.net ([220.133.139.86]:50967 "EHLO cooldavid.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752112AbYJLLli (ORCPT ); Sun, 12 Oct 2008 07:41:38 -0400 Received: from cooldavid.org (localhost [127.0.0.1]) by cooldavid.org (Postfix) with ESMTP id 8049567923; Sun, 12 Oct 2008 19:41:03 +0800 (CST) From: "Guo-Fu Tseng" To: Steve French Cc: David Miller , netdev@vger.kernel.org, samba-technical@lists.samba.org Reply-To: cooldavid@cooldavid.org Subject: [PATCH net-2.6] cifs: Fix compile error without CONFIG_KEYS selected. Date: Sun, 12 Oct 2008 19:41:03 +0800 Message-Id: <20081012113349.M10023@cooldavid.org> In-Reply-To: <20081011.151153.223811080.davem@davemloft.net> References: <20081011.151153.223811080.davem@davemloft.net> X-Mailer: Open WebMail 2.51 20050228 X-OriginatingIP: 140.117.194.21 (cooldavid) MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi Steve, David: I'm not sure where should this patch goes, since I see the error in David's net-2.6 git, I submit it to netdev. cifs: Fix compile error without CONFIG_KEYS selected. fs/cifs/sess.c: In function "CIFS_SessSetup": fs/cifs/sess.c:628: error: implicit declaration of function "key_revoke" Signed-off-by: Guo-Fu Tseng --- 1 files changed, 1 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/fs/Kconfig b/fs/Kconfig index abccb5d..717245f 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -1863,6 +1863,7 @@ config CIFS tristate "CIFS support (advanced network filesystem, SMBFS successor)" depends on INET select NLS + select KEYS help This is the client VFS module for the Common Internet File System (CIFS) protocol which is the successor to the Server Message Block