summaryrefslogtreecommitdiffstats
path: root/include/linux/syscalls.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-07-22 11:11:45 +0200
committerChristoph Hellwig <hch@lst.de>2020-07-31 08:17:52 +0200
commit20cce026c3e0972017b9cb4a7cccfb8cacf187d5 (patch)
treed3e48d9708b1864d9c4dc8addefd3340699120e8 /include/linux/syscalls.h
parent8fb9f73e5a539ab3aa4785f30fb52c65fa98600c (diff)
downloadlinux-stable-20cce026c3e0972017b9cb4a7cccfb8cacf187d5.tar.gz
linux-stable-20cce026c3e0972017b9cb4a7cccfb8cacf187d5.tar.bz2
linux-stable-20cce026c3e0972017b9cb4a7cccfb8cacf187d5.zip
init: add an init_rmdir helper
Add a simple helper to rmdir with a kernel space file name and switch the early init code over to it. Remove the now unused ksys_rmdir. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/linux/syscalls.h')
-rw-r--r--include/linux/syscalls.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 26f9738e5ab8..a7b14258d245 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -1273,13 +1273,6 @@ int compat_ksys_ipc(u32 call, int first, int second,
* The following kernel syscall equivalents are just wrappers to fs-internal
* functions. Therefore, provide stubs to be inlined at the callsites.
*/
-long do_rmdir(int dfd, struct filename *name);
-
-static inline long ksys_rmdir(const char __user *pathname)
-{
- return do_rmdir(AT_FDCWD, getname(pathname));
-}
-
extern long do_mkdirat(int dfd, const char __user *pathname, umode_t mode);
static inline long ksys_mkdir(const char __user *pathname, umode_t mode)