FS: lookup_mnt() is only used in the core fs routines now
authorDavid Howells <dhowells@redhat.com>
Mon, 21 Mar 2011 14:28:58 +0000 (14:28 +0000)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 21 Mar 2011 16:13:10 +0000 (12:13 -0400)
lookup_mnt() is only used in the core fs routines now, so it doesn't need to
be globally declared anymore.  It isn't exported to modules at the moment, so
nothing that can be modularised seems to be using it.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/internal.h
include/linux/dcache.h

index 17191546d52768691e405da4cc53735d9589e275..8318059b42c6b950b9b3e338ff8c15654ca1798a 100644 (file)
@@ -64,6 +64,7 @@ extern int copy_mount_string(const void __user *, char **);
 
 extern unsigned int mnt_get_count(struct vfsmount *mnt);
 extern struct vfsmount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
+extern struct vfsmount *lookup_mnt(struct path *);
 extern void mnt_set_mountpoint(struct vfsmount *, struct dentry *,
                                struct vfsmount *);
 extern void release_mounts(struct list_head *);
index 1a87760d65322b2d0528886b3232d2707f725532..f2afed4fa9454776c79611d52755121dff749342 100644 (file)
@@ -416,7 +416,6 @@ static inline bool d_mountpoint(struct dentry *dentry)
        return dentry->d_flags & DCACHE_MOUNTED;
 }
 
-extern struct vfsmount *lookup_mnt(struct path *);
 extern struct dentry *lookup_create(struct nameidata *nd, int is_dir);
 
 extern int sysctl_vfs_cache_pressure;