You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
VFS: Unexport do_kern_mount() and clean up simple_pin_fs()
Replace all module uses with the new vfs_kern_mount() interface, and fix up simple_pin_fs(). Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
+1
-3
@@ -864,11 +864,9 @@ do_kern_mount(const char *fstype, int flags, const char *name, void *data)
|
||||
return mnt;
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL_GPL(do_kern_mount);
|
||||
|
||||
struct vfsmount *kern_mount(struct file_system_type *type)
|
||||
{
|
||||
return do_kern_mount(type->name, 0, type->name, NULL);
|
||||
return vfs_kern_mount(type, 0, type->name, NULL);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(kern_mount);
|
||||
|
||||
Reference in New Issue
Block a user