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/internal.h | |
parent | b43417216e9ce55e1f1ab7c834c7ab43db0b53e1 (diff) |
compat_ioctl: don't pass fd around when not needed
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/internal.h b/fs/internal.h index 71859c4d0b41..e38c08ca437d 100644 --- a/fs/internal.h +++ b/fs/internal.h | |||
@@ -151,3 +151,10 @@ extern void mnt_pin_kill(struct mount *m); | |||
151 | * fs/nsfs.c | 151 | * fs/nsfs.c |
152 | */ | 152 | */ |
153 | extern struct dentry_operations ns_dentry_operations; | 153 | extern struct dentry_operations ns_dentry_operations; |
154 | |||
155 | /* | ||
156 | * fs/ioctl.c | ||
157 | */ | ||
158 | extern int do_vfs_ioctl(struct file *file, unsigned int fd, unsigned int cmd, | ||
159 | unsigned long arg); | ||
160 | extern long vfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg); | ||