diff options
| author | Andi Kleen <ak@suse.de> | 2006-04-18 06:35:19 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-18 13:39:20 -0400 |
| commit | f1233ab2cebb22a98df55de206a33a6693e3a78b (patch) | |
| tree | 0f5a5dd65e8e91273f1118d3d54d3517964768a3 | |
| parent | 6fa679fdea22cd96287d4aa11ee771bcd46c6dfb (diff) | |
[PATCH] x86_64: Add tee and sync_file_range
tee was already there for some reason for native 64bit, but
sys_sync_file_range was missing. Also add it to the compat layer.
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/x86_64/ia32/ia32entry.S | 1 | ||||
| -rw-r--r-- | include/asm-x86_64/unistd.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86_64/ia32/ia32entry.S b/arch/x86_64/ia32/ia32entry.S index 5a9802676689..57fc37e0fb9c 100644 --- a/arch/x86_64/ia32/ia32entry.S +++ b/arch/x86_64/ia32/ia32entry.S | |||
| @@ -694,4 +694,5 @@ ia32_sys_call_table: | |||
| 694 | .quad compat_sys_get_robust_list | 694 | .quad compat_sys_get_robust_list |
| 695 | .quad sys_splice | 695 | .quad sys_splice |
| 696 | .quad sys_sync_file_range | 696 | .quad sys_sync_file_range |
| 697 | .quad sys_tee | ||
| 697 | ia32_syscall_end: | 698 | ia32_syscall_end: |
diff --git a/include/asm-x86_64/unistd.h b/include/asm-x86_64/unistd.h index d86494e23b63..98c36eae567c 100644 --- a/include/asm-x86_64/unistd.h +++ b/include/asm-x86_64/unistd.h | |||
| @@ -613,8 +613,10 @@ __SYSCALL(__NR_get_robust_list, sys_get_robust_list) | |||
| 613 | __SYSCALL(__NR_splice, sys_splice) | 613 | __SYSCALL(__NR_splice, sys_splice) |
| 614 | #define __NR_tee 276 | 614 | #define __NR_tee 276 |
| 615 | __SYSCALL(__NR_tee, sys_tee) | 615 | __SYSCALL(__NR_tee, sys_tee) |
| 616 | #define __NR_sync_file_range 277 | ||
| 617 | __SYSCALL(__NR_sync_file_range, sys_sync_file_range) | ||
| 616 | 618 | ||
| 617 | #define __NR_syscall_max __NR_tee | 619 | #define __NR_syscall_max __NR_sync_file_range |
| 618 | 620 | ||
| 619 | #ifndef __NO_STUBS | 621 | #ifndef __NO_STUBS |
| 620 | 622 | ||
