diff options
author | Andreas Schwab <schwab@suse.de> | 2006-04-27 15:46:42 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-04-28 21:04:59 +1000 |
commit | 2833c28aa0d0326780acfa61149a2a02dcb2c9b4 (patch) | |
tree | d72d4efadf63dea4bdcbc100e8bfad9192f415a7 /include | |
parent | 30aacebed0f0619f23ce84df7c59ad033ca08d77 (diff) | |
download | linux-3.10-2833c28aa0d0326780acfa61149a2a02dcb2c9b4.tar.gz linux-3.10-2833c28aa0d0326780acfa61149a2a02dcb2c9b4.tar.bz2 linux-3.10-2833c28aa0d0326780acfa61149a2a02dcb2c9b4.zip |
[PATCH] powerpc: Wire up *at syscalls
Wire up *at syscalls.
This patch has been tested on ppc64 (using glibc's testsuite, both 32bit
and 64bit), and compile-tested for ppc32 (I have currently no ppc32 system
available, but I expect no problems).
Signed-off-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-powerpc/unistd.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/asm-powerpc/unistd.h b/include/asm-powerpc/unistd.h index 34325e29259..908acb44cb8 100644 --- a/include/asm-powerpc/unistd.h +++ b/include/asm-powerpc/unistd.h @@ -304,8 +304,25 @@ #define __NR_splice 283 #define __NR_tee 284 #define __NR_vmsplice 285 +#define __NR_openat 286 +#define __NR_mkdirat 287 +#define __NR_mknodat 288 +#define __NR_fchownat 289 +#define __NR_futimesat 290 +#ifdef __powerpc64__ +#define __NR_newfstatat 291 +#else +#define __NR_fstatat64 291 +#endif +#define __NR_unlinkat 292 +#define __NR_renameat 293 +#define __NR_linkat 294 +#define __NR_symlinkat 295 +#define __NR_readlinkat 296 +#define __NR_fchmodat 297 +#define __NR_faccessat 298 -#define __NR_syscalls 286 +#define __NR_syscalls 299 #ifdef __KERNEL__ #define __NR__exit __NR_exit @@ -458,6 +475,7 @@ type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6 #ifdef CONFIG_PPC64 #define __ARCH_WANT_COMPAT_SYS_TIME #define __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND +#define __ARCH_WANT_SYS_NEWFSTATAT #endif /* |