diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-08 14:03:27 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-08 20:20:21 -0400 |
commit | 197df04c749a07616621b762e699b1fff4102fac (patch) | |
tree | 14139723c88d6c706f66f620f174e2880d64ed86 /fs/namespace.c | |
parent | 35759521eedf60ce7d3127c5d33953cd2d1bd35f (diff) |
rename user_path_umountat() to user_path_mountpoint_at()
... and move the extern from linux/namei.h to fs/internal.h,
along with that of vfs_path_lookup().
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index fc2b5226278d..25845d1b300b 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1321,7 +1321,7 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags) | |||
1321 | if (!(flags & UMOUNT_NOFOLLOW)) | 1321 | if (!(flags & UMOUNT_NOFOLLOW)) |
1322 | lookup_flags |= LOOKUP_FOLLOW; | 1322 | lookup_flags |= LOOKUP_FOLLOW; |
1323 | 1323 | ||
1324 | retval = user_path_umountat(AT_FDCWD, name, lookup_flags, &path); | 1324 | retval = user_path_mountpoint_at(AT_FDCWD, name, lookup_flags, &path); |
1325 | if (retval) | 1325 | if (retval) |
1326 | goto out; | 1326 | goto out; |
1327 | mnt = real_mount(path.mnt); | 1327 | mnt = real_mount(path.mnt); |