aboutsummaryrefslogtreecommitdiffstats
path: root/fs/internal.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-07-21 10:48:15 +0200
committerChristoph Hellwig <hch@lst.de>2020-07-31 08:17:50 +0200
commite24ab0ef689de43649327f54cd1088f3dad25bb3 (patch)
treea881b2211673900bad6cede1129f7840ff628df3 /fs/internal.h
parentfs: refactor ksys_umount (diff)
downloadlinux-dev-e24ab0ef689de43649327f54cd1088f3dad25bb3.tar.xz
linux-dev-e24ab0ef689de43649327f54cd1088f3dad25bb3.zip
fs: push the getname from do_rmdir into the callers
This mirrors do_unlinkat and will make life a little easier for the init code to reuse the whole function with a kernel filename. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/internal.h')
-rw-r--r--fs/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/internal.h b/fs/internal.h
index 9b863a7bd708..e903d5aae139 100644
--- a/fs/internal.h
+++ b/fs/internal.h
@@ -65,7 +65,7 @@ extern int vfs_path_lookup(struct dentry *, struct vfsmount *,
long do_mknodat(int dfd, const char __user *filename, umode_t mode,
unsigned int dev);
long do_mkdirat(int dfd, const char __user *pathname, umode_t mode);
-long do_rmdir(int dfd, const char __user *pathname);
+long do_rmdir(int dfd, struct filename *name);
long do_unlinkat(int dfd, struct filename *name);
long do_symlinkat(const char __user *oldname, int newdfd,
const char __user *newname);