VFS: Add VFS helper functions for setting up private namespaces
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Mon, 22 Jun 2009 19:09:13 +0000 (15:09 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 23 Jun 2009 04:28:25 +0000 (21:28 -0700)
commitcf8d2c11cb77f129675478792122f50827e5b0ae
tree85bebdff4cffbca238952e839b0cb801e6a9bfe7
parent616511d039af402670de8500d0e24495113a9cab
VFS: Add VFS helper functions for setting up private namespaces

The purpose of this patch is to improve the remote mount path lookup
support for distributed filesystems such as the NFSv4 client.

When given a mount command of the form "mount server:/foo/bar /mnt", the
NFSv4 client is required to look up the filehandle for "server:/", and
then look up each component of the remote mount path "foo/bar" in order
to find the directory that is actually going to be mounted on /mnt.
Following that remote mount path may involve following symlinks,
crossing server-side mount points and even following referrals to
filesystem volumes on other servers.

Since the standard VFS path lookup code already supports walking paths
that contain all these features (using in-kernel automounts for
following referrals) we would like to be able to reuse that rather than
duplicate the full path traversal functionality in the NFSv4 client code.

This patch therefore defines a VFS helper function create_mnt_ns(), that
sets up a temporary filesystem namespace and attaches a root filesystem to
it. It exports the create_mnt_ns() and put_mnt_ns() function for use by
filesystem modules.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/namespace.c
include/linux/mnt_namespace.h