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>
This commit is contained in:
parent
a5166169f9
commit
79e801a906
2 changed files with 1 additions and 5 deletions
|
@ -1929,7 +1929,7 @@ static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct vfsmount *
|
static struct vfsmount *
|
||||||
do_kern_mount(const char *fstype, int flags, const char *name, void *data)
|
do_kern_mount(const char *fstype, int flags, const char *name, void *data)
|
||||||
{
|
{
|
||||||
struct file_system_type *type = get_fs_type(fstype);
|
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)
|
||||||
put_filesystem(type);
|
put_filesystem(type);
|
||||||
return mnt;
|
return mnt;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(do_kern_mount);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* add a mount into a namespace's mount tree
|
* add a mount into a namespace's mount tree
|
||||||
|
|
|
@ -100,9 +100,6 @@ extern void mnt_pin(struct vfsmount *mnt);
|
||||||
extern void mnt_unpin(struct vfsmount *mnt);
|
extern void mnt_unpin(struct vfsmount *mnt);
|
||||||
extern int __mnt_is_readonly(struct vfsmount *mnt);
|
extern int __mnt_is_readonly(struct vfsmount *mnt);
|
||||||
|
|
||||||
extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
|
|
||||||
const char *name, void *data);
|
|
||||||
|
|
||||||
struct file_system_type;
|
struct file_system_type;
|
||||||
extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
|
extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
|
||||||
int flags, const char *name,
|
int flags, const char *name,
|
||||||
|
|
Loading…
Add table
Reference in a new issue