diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-07 09:53:30 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-08 21:16:50 -0500 |
commit | 66cf191f3eae4582a83cb4251b75b43bee95a999 (patch) | |
tree | 65447e6f7c6fd824f8735f13ffbd85dc54f0eb66 /fs/ioctl.c | |
parent | b43417216e9ce55e1f1ab7c834c7ab43db0b53e1 (diff) | |
download | linux-66cf191f3eae4582a83cb4251b75b43bee95a999.tar.gz linux-66cf191f3eae4582a83cb4251b75b43bee95a999.tar.bz2 linux-66cf191f3eae4582a83cb4251b75b43bee95a999.zip |
compat_ioctl: don't pass fd around when not needed
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ioctl.c')
-rw-r--r-- | fs/ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ioctl.c b/fs/ioctl.c index 5d01d2638ca5..41c352e81193 100644 --- a/fs/ioctl.c +++ b/fs/ioctl.c @@ -15,6 +15,7 @@ #include <linux/writeback.h> #include <linux/buffer_head.h> #include <linux/falloc.h> +#include "internal.h" #include <asm/ioctls.h> @@ -32,8 +33,7 @@ * * Returns 0 on success, -errno on error. */ -static long vfs_ioctl(struct file *filp, unsigned int cmd, - unsigned long arg) +long vfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) { int error = -ENOTTY; |