From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Waychison Subject: [PATCH 22/28] VFS: Export put_namespace Date: Mon, 25 Oct 2004 10:49:40 -0400 Sender: linux-kernel-owner@vger.kernel.org Message-ID: <10987157802675@sun.com> References: <1098715750856@sun.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Cc: raven@themaw.net Return-path: In-Reply-To: <1098715750856@sun.com> To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org This patch exports the __put_namespace symbol so that autofsng can call it as a module (used as part of the call-out mechanism). Signed-off-by: Mike Waychison --- namespace.c | 1 + 1 files changed, 1 insertion(+) Index: linux-2.6.9-quilt/fs/namespace.c =================================================================== --- linux-2.6.9-quilt.orig/fs/namespace.c 2004-10-22 17:17:41.368175224 -0400 +++ linux-2.6.9-quilt/fs/namespace.c 2004-10-22 17:17:45.491548376 -0400 @@ -1733,3 +1733,4 @@ void __put_namespace(struct namespace *n mntput(namespace->root); kfree(namespace); } +EXPORT_SYMBOL(__put_namespace);