diff options
author | Christoph Hellwig <hch@lst.de> | 2020-07-14 09:02:07 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-07-31 08:16:00 +0200 |
commit | fb2da16cd70a5140acdd7a102e5cd3b697c3404f (patch) | |
tree | 9632a190aee03c01a491e9910a4b41f80aa31308 /fs/readdir.c | |
parent | 8f740636d9049a3f9665a0ec87a00822ec1120b4 (diff) | |
download | linux-stable-fb2da16cd70a5140acdd7a102e5cd3b697c3404f.tar.gz linux-stable-fb2da16cd70a5140acdd7a102e5cd3b697c3404f.tar.bz2 linux-stable-fb2da16cd70a5140acdd7a102e5cd3b697c3404f.zip |
fs: remove ksys_getdents64
Just open code it in the only caller.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/readdir.c')
-rw-r--r-- | fs/readdir.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/fs/readdir.c b/fs/readdir.c index a49f07c11cfb..19434b3c982c 100644 --- a/fs/readdir.c +++ b/fs/readdir.c @@ -348,8 +348,8 @@ efault: return -EFAULT; } -int ksys_getdents64(unsigned int fd, struct linux_dirent64 __user *dirent, - unsigned int count) +SYSCALL_DEFINE3(getdents64, unsigned int, fd, + struct linux_dirent64 __user *, dirent, unsigned int, count) { struct fd f; struct getdents_callback64 buf = { @@ -380,13 +380,6 @@ int ksys_getdents64(unsigned int fd, struct linux_dirent64 __user *dirent, return error; } - -SYSCALL_DEFINE3(getdents64, unsigned int, fd, - struct linux_dirent64 __user *, dirent, unsigned int, count) -{ - return ksys_getdents64(fd, dirent, count); -} - #ifdef CONFIG_COMPAT struct compat_old_linux_dirent { compat_ulong_t d_ino; |