diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-01-21 15:16:58 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-03 22:46:22 -0500 |
commit | 4a0fd5bf0fd0795af8f1be3b261f5cf146a4cb9b (patch) | |
tree | 8f8efa46a8e4e3fc1c3163f5021aff4f94aaa7fd /arch/s390/kernel | |
parent | 07fe6e00f6cca6fef85a14a1dc3ed4f2e35d3f0b (diff) |
teach SYSCALL_DEFINE<n> how to deal with long long/unsigned long long
... and convert a bunch of SYSCALL_DEFINE ones to SYSCALL_DEFINE<n>,
killing the boilerplate crap around them.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/sys_s390.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/arch/s390/kernel/sys_s390.c b/arch/s390/kernel/sys_s390.c index d0964d22adb5..23eb222c1658 100644 --- a/arch/s390/kernel/sys_s390.c +++ b/arch/s390/kernel/sys_s390.c | |||
@@ -132,19 +132,9 @@ SYSCALL_DEFINE1(s390_fadvise64_64, struct fadvise64_64_args __user *, args) | |||
132 | * to | 132 | * to |
133 | * %r2: fd, %r3: mode, %r4/%r5: offset, 96(%r15)-103(%r15): len | 133 | * %r2: fd, %r3: mode, %r4/%r5: offset, 96(%r15)-103(%r15): len |
134 | */ | 134 | */ |
135 | SYSCALL_DEFINE(s390_fallocate)(int fd, int mode, loff_t offset, | 135 | SYSCALL_DEFINE5(s390_fallocate, int, fd, int, mode, loff_t, offset, |
136 | u32 len_high, u32 len_low) | 136 | u32, len_high, u32, len_low) |
137 | { | 137 | { |
138 | return sys_fallocate(fd, mode, offset, ((u64)len_high << 32) | len_low); | 138 | return sys_fallocate(fd, mode, offset, ((u64)len_high << 32) | len_low); |
139 | } | 139 | } |
140 | #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS | ||
141 | asmlinkage long SyS_s390_fallocate(long fd, long mode, loff_t offset, | ||
142 | long len_high, long len_low) | ||
143 | { | ||
144 | return SYSC_s390_fallocate((int) fd, (int) mode, offset, | ||
145 | (u32) len_high, (u32) len_low); | ||
146 | } | ||
147 | SYSCALL_ALIAS(sys_s390_fallocate, SyS_s390_fallocate); | ||
148 | #endif | ||
149 | |||
150 | #endif | 140 | #endif |