diff options
author | Christoph Hellwig | 2020-07-14 09:00:51 +0200 |
---|---|---|
committer | Christoph Hellwig | 2020-07-31 08:16:01 +0200 |
commit | 863b67e15177a7cd0c27b3e36e42fe7907dec9bd (patch) | |
tree | f55b79b23ea416839031f8cc595644c7697d2de9 /fs/ioctl.c | |
parent | b25ba7c3c9acdc4cf69f5bd69989819cabfc4e3b (diff) |
fs: remove ksys_ioctl
Fold it into the only remaining caller.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ioctl.c')
-rw-r--r-- | fs/ioctl.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ioctl.c b/fs/ioctl.c index d69786d1dd91..4e6cc0a7d69c 100644 --- a/fs/ioctl.c +++ b/fs/ioctl.c @@ -736,7 +736,7 @@ static int do_vfs_ioctl(struct file *filp, unsigned int fd, return -ENOIOCTLCMD; } -int ksys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg) +SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) { struct fd f = fdget(fd); int error; @@ -757,11 +757,6 @@ out: return error; } -SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) -{ - return ksys_ioctl(fd, cmd, arg); -} - #ifdef CONFIG_COMPAT /** * compat_ptr_ioctl - generic implementation of .compat_ioctl file operation |