diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-25 18:42:04 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-03 23:00:23 -0500 |
commit | d5dc77bfeeab0b03a32e3db5e31e2f64605634ab (patch) | |
tree | 7cdf557d1310db607d164d576d8cc5799d4aaf36 /arch/tile | |
parent | 76b021d053ed0b8de9689eefca5e8f53dade7fd7 (diff) |
consolidate compat lookup_dcookie()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/kernel/compat.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/tile/kernel/compat.c b/arch/tile/kernel/compat.c index 7f72401b4f45..c262a02d8efa 100644 --- a/arch/tile/kernel/compat.c +++ b/arch/tile/kernel/compat.c | |||
@@ -54,11 +54,6 @@ long compat_sys_pwrite64(unsigned int fd, char __user *ubuf, size_t count, | |||
54 | return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low); | 54 | return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low); |
55 | } | 55 | } |
56 | 56 | ||
57 | long compat_sys_lookup_dcookie(u32 low, u32 high, char __user *buf, size_t len) | ||
58 | { | ||
59 | return sys_lookup_dcookie(((loff_t)high << 32) | low, buf, len); | ||
60 | } | ||
61 | |||
62 | long compat_sys_sync_file_range2(int fd, unsigned int flags, | 57 | long compat_sys_sync_file_range2(int fd, unsigned int flags, |
63 | u32 offset_lo, u32 offset_hi, | 58 | u32 offset_lo, u32 offset_hi, |
64 | u32 nbytes_lo, u32 nbytes_hi) | 59 | u32 nbytes_lo, u32 nbytes_hi) |