diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-12 23:07:05 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:39 -0500 |
commit | 79e801a906db46cb8efad66c400b01df874b3f12 (patch) | |
tree | 2b5c2e414181dd0101d3506166948aac1b34ef7c | |
parent | a5166169f9b920cae3c503910cb66a3ac5dd846d (diff) |
vfs: make do_kern_mount() static
the only user outside of fs/namespace.c has died
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/namespace.c | 3 | ||||
-rw-r--r-- | include/linux/mount.h | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index ed21ac4f7c69..7a8f949cec1b 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1929,7 +1929,7 @@ static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype) | |||
1929 | return ERR_PTR(err); | 1929 | return ERR_PTR(err); |
1930 | } | 1930 | } |
1931 | 1931 | ||
1932 | struct vfsmount * | 1932 | static struct vfsmount * |
1933 | do_kern_mount(const char *fstype, int flags, const char *name, void *data) | 1933 | do_kern_mount(const char *fstype, int flags, const char *name, void *data) |
1934 | { | 1934 | { |
1935 | struct file_system_type *type = get_fs_type(fstype); | 1935 | struct file_system_type *type = get_fs_type(fstype); |
@@ -1943,7 +1943,6 @@ do_kern_mount(const char *fstype, int flags, const char *name, void *data) | |||
1943 | put_filesystem(type); | 1943 | put_filesystem(type); |
1944 | return mnt; | 1944 | return mnt; |
1945 | } | 1945 | } |
1946 | EXPORT_SYMBOL_GPL(do_kern_mount); | ||
1947 | 1946 | ||
1948 | /* | 1947 | /* |
1949 | * add a mount into a namespace's mount tree | 1948 | * add a mount into a namespace's mount tree |
diff --git a/include/linux/mount.h b/include/linux/mount.h index 33fe53d78110..65c1bb013836 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h | |||
@@ -100,9 +100,6 @@ extern void mnt_pin(struct vfsmount *mnt); | |||
100 | extern void mnt_unpin(struct vfsmount *mnt); | 100 | extern void mnt_unpin(struct vfsmount *mnt); |
101 | extern int __mnt_is_readonly(struct vfsmount *mnt); | 101 | extern int __mnt_is_readonly(struct vfsmount *mnt); |
102 | 102 | ||
103 | extern struct vfsmount *do_kern_mount(const char *fstype, int flags, | ||
104 | const char *name, void *data); | ||
105 | |||
106 | struct file_system_type; | 103 | struct file_system_type; |
107 | extern struct vfsmount *vfs_kern_mount(struct file_system_type *type, | 104 | extern struct vfsmount *vfs_kern_mount(struct file_system_type *type, |
108 | int flags, const char *name, | 105 | int flags, const char *name, |