diff options
author | Patrick Mansfield <patmans@us.ibm.com> | 2007-11-04 04:42:03 +1100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-08 12:01:18 -0800 |
commit | 75ad12ba7b1897e7b8a5fa88e007244a279a1713 (patch) | |
tree | cec1ce2086b40c7abf1cb73517f7ea1f4278e9c9 | |
parent | d4692a58d84fd6aa826f36ce91fc42c889772fe0 (diff) |
POWERPC: Change fallocate to match unistd.h on powerpc
patch f2205fbb5a8933514fd343cc329df631802b4543 in mainline.
Fix the fallocate system call on powerpc to match its unistd.h.
This implies none of these system calls are currently working with the
unistd.h sys call values:
fallocate
signalfd
timerfd
eventfd
sync_file_range2
Signed-off-by: Patrick Mansfield <patmans@us.ibm.com>
Acked-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | include/asm-powerpc/systbl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/systbl.h b/include/asm-powerpc/systbl.h index cc6d87228258..11d5383b2f09 100644 --- a/include/asm-powerpc/systbl.h +++ b/include/asm-powerpc/systbl.h @@ -308,8 +308,8 @@ COMPAT_SYS_SPU(move_pages) SYSCALL_SPU(getcpu) COMPAT_SYS(epoll_pwait) COMPAT_SYS_SPU(utimensat) -COMPAT_SYS(fallocate) COMPAT_SYS_SPU(signalfd) COMPAT_SYS_SPU(timerfd) SYSCALL_SPU(eventfd) COMPAT_SYS_SPU(sync_file_range2) +COMPAT_SYS(fallocate) |