diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-05-21 05:25:20 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-05-21 05:25:28 -0400 |
commit | fd5d8bf03a9843ec3cdb10c820f409aa04048b52 (patch) | |
tree | 6a8913b4daaba3ab3b3dca6ad2a91cf63f035db0 /include/asm-s390 | |
parent | 85ee32d02901bfd2e287ac669709758e04d73c4d (diff) |
[S390] Wire up sys_utimensat.
Wire up sys_utimensat, reserve syscall number for sys_fallocate and
add a couple of syscalls to the ignore list to get rid of warings.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/unistd.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/include/asm-s390/unistd.h b/include/asm-s390/unistd.h index 5c6f00d62df8..4ed078e47448 100644 --- a/include/asm-s390/unistd.h +++ b/include/asm-s390/unistd.h | |||
@@ -251,8 +251,9 @@ | |||
251 | #define __NR_getcpu 311 | 251 | #define __NR_getcpu 311 |
252 | #define __NR_epoll_pwait 312 | 252 | #define __NR_epoll_pwait 312 |
253 | #define __NR_utimes 313 | 253 | #define __NR_utimes 313 |
254 | 254 | /* Number 314 is reserved for new sys_fallocate */ | |
255 | #define NR_syscalls 314 | 255 | #define __NR_utimensat 315 |
256 | #define NR_syscalls 316 | ||
256 | 257 | ||
257 | /* | 258 | /* |
258 | * There are some system calls that are not present on 64 bit, some | 259 | * There are some system calls that are not present on 64 bit, some |
@@ -346,6 +347,19 @@ | |||
346 | 347 | ||
347 | #ifdef __KERNEL__ | 348 | #ifdef __KERNEL__ |
348 | 349 | ||
350 | #ifndef CONFIG_64BIT | ||
351 | #define __IGNORE_select | ||
352 | #else | ||
353 | #define __IGNORE_time | ||
354 | #endif | ||
355 | |||
356 | /* Ignore NUMA system calls. Not wired up on s390. */ | ||
357 | #define __IGNORE_mbind | ||
358 | #define __IGNORE_get_mempolicy | ||
359 | #define __IGNORE_set_mempolicy | ||
360 | #define __IGNORE_migrate_pages | ||
361 | #define __IGNORE_move_pages | ||
362 | |||
349 | #define __ARCH_WANT_IPC_PARSE_VERSION | 363 | #define __ARCH_WANT_IPC_PARSE_VERSION |
350 | #define __ARCH_WANT_OLD_READDIR | 364 | #define __ARCH_WANT_OLD_READDIR |
351 | #define __ARCH_WANT_SYS_ALARM | 365 | #define __ARCH_WANT_SYS_ALARM |