diff options
author | Al Viro | 2017-04-08 18:16:56 -0400 |
---|---|---|
committer | Al Viro | 2017-04-17 12:52:26 -0400 |
commit | 2b8910264a7fec4599b620e5206eb877a207f40a (patch) | |
tree | 230d48f64871946894cf4a10b5e3be1493a26aaf /fs/compat.c | |
parent | e35d49f637d5ce3d7bb6c735a8d18727e3101f9d (diff) |
fhandle: move compat syscalls from compat.c
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/fs/compat.c b/fs/compat.c index e1822ec8a87c..3e94559c452e 100644 --- a/fs/compat.c +++ b/fs/compat.c @@ -310,15 +310,3 @@ COMPAT_SYSCALL_DEFINE5(mount, const char __user *, dev_name, out: return retval; } - -#ifdef CONFIG_FHANDLE -/* - * Exactly like fs/open.c:sys_open_by_handle_at(), except that it - * doesn't set the O_LARGEFILE flag. - */ -COMPAT_SYSCALL_DEFINE3(open_by_handle_at, int, mountdirfd, - struct file_handle __user *, handle, int, flags) -{ - return do_handle_open(mountdirfd, handle, flags); -} -#endif |