Skip to content

Commit

Permalink
[IA64] Wire up new syscalls {set,get}_robust_list
Browse files Browse the repository at this point in the history
Join the dots to enable Ingo's robut futex syscalls.

Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Tony Luck committed Apr 6, 2006
1 parent 27f4aa3 commit b8cd2af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch/ia64/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -1606,8 +1606,8 @@ sys_call_table:
data8 sys_ni_syscall // 1295 reserved for ppoll
data8 sys_unshare
data8 sys_splice
data8 sys_ni_syscall // reserved for set_robust_futex
data8 sys_ni_syscall // reserved for get_robust_futex
data8 sys_set_robust_list
data8 sys_get_robust_list
data8 sys_sync_file_range // 1300

.org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls
3 changes: 2 additions & 1 deletion include/asm-ia64/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@
/* 1294, 1295 reserved for pselect/ppoll */
#define __NR_unshare 1296
#define __NR_splice 1297
/* 1298, 1299 reserved for {set,get}_robust_list */
#define __NR_set_robust_list 1298
#define __NR_get_robust_list 1299
#define __NR_sync_file_range 1300

#ifdef __KERNEL__
Expand Down

0 comments on commit b8cd2af

Please sign in to comment.