diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 13:01:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 13:01:36 -0400 |
commit | 4b85df0419d1fb135d9d845876e8c7ee1393f83c (patch) | |
tree | 9630646aa3bca16e9266d79121b479f747d3677c /include | |
parent | 6044ab324ce4c180bce17aa9be00157c611d7d48 (diff) | |
parent | be2864b5ee46e0d5ed626de6cbfeb9abbd9c2e6f (diff) |
Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
[S390] More verbose show_mem() like other architectures.
[S390] Make use of kretprobe_assert.
[S390] Wire up signald, timerfd and eventfd syscalls.
[S390] Wire up sys_utimensat.
[S390] cio: Update documentation.
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-s390/unistd.h | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/include/asm-s390/unistd.h b/include/asm-s390/unistd.h index 5c6f00d62df8..790c1c557417 100644 --- a/include/asm-s390/unistd.h +++ b/include/asm-s390/unistd.h | |||
@@ -251,8 +251,12 @@ | |||
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_signalfd 316 | ||
257 | #define __NR_timerfd 317 | ||
258 | #define __NR_eventfd 318 | ||
259 | #define NR_syscalls 319 | ||
256 | 260 | ||
257 | /* | 261 | /* |
258 | * There are some system calls that are not present on 64 bit, some | 262 | * There are some system calls that are not present on 64 bit, some |
@@ -346,6 +350,19 @@ | |||
346 | 350 | ||
347 | #ifdef __KERNEL__ | 351 | #ifdef __KERNEL__ |
348 | 352 | ||
353 | #ifndef CONFIG_64BIT | ||
354 | #define __IGNORE_select | ||
355 | #else | ||
356 | #define __IGNORE_time | ||
357 | #endif | ||
358 | |||
359 | /* Ignore NUMA system calls. Not wired up on s390. */ | ||
360 | #define __IGNORE_mbind | ||
361 | #define __IGNORE_get_mempolicy | ||
362 | #define __IGNORE_set_mempolicy | ||
363 | #define __IGNORE_migrate_pages | ||
364 | #define __IGNORE_move_pages | ||
365 | |||
349 | #define __ARCH_WANT_IPC_PARSE_VERSION | 366 | #define __ARCH_WANT_IPC_PARSE_VERSION |
350 | #define __ARCH_WANT_OLD_READDIR | 367 | #define __ARCH_WANT_OLD_READDIR |
351 | #define __ARCH_WANT_SYS_ALARM | 368 | #define __ARCH_WANT_SYS_ALARM |