diff options
author | Kyle McMartin <kyle@dreadnought.i.jkkm.org> | 2010-10-13 20:35:56 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@dreadnought.i.jkkm.org> | 2010-10-13 20:35:56 -0400 |
commit | caf96194c05cd97ce96546fbcb1f35ec06aaaac7 (patch) | |
tree | c9349e243e046bc0fe38a4f300a808bc5ddcac41 /arch/parisc | |
parent | c442ef96bfe1a981d44dd09d49a1eed93b94e82a (diff) |
parisc: add prlimit64 syscall
Signed-off-by: Kyle McMartin <kyle@redhat.com>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/include/asm/unistd.h | 3 | ||||
-rw-r--r-- | arch/parisc/kernel/syscall_table.S | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/parisc/include/asm/unistd.h b/arch/parisc/include/asm/unistd.h index 1ce7d2851d90..3eb82c2a5ec3 100644 --- a/arch/parisc/include/asm/unistd.h +++ b/arch/parisc/include/asm/unistd.h | |||
@@ -813,8 +813,9 @@ | |||
813 | #define __NR_perf_event_open (__NR_Linux + 318) | 813 | #define __NR_perf_event_open (__NR_Linux + 318) |
814 | #define __NR_recvmmsg (__NR_Linux + 319) | 814 | #define __NR_recvmmsg (__NR_Linux + 319) |
815 | #define __NR_accept4 (__NR_Linux + 320) | 815 | #define __NR_accept4 (__NR_Linux + 320) |
816 | #define __NR_prlimit64 (__NR_Linux + 321) | ||
816 | 817 | ||
817 | #define __NR_Linux_syscalls (__NR_accept4 + 1) | 818 | #define __NR_Linux_syscalls (__NR_prlimit64 + 1) |
818 | 819 | ||
819 | 820 | ||
820 | #define __IGNORE_select /* newselect */ | 821 | #define __IGNORE_select /* newselect */ |
diff --git a/arch/parisc/kernel/syscall_table.S b/arch/parisc/kernel/syscall_table.S index 3d52c978738f..74867dfdabe5 100644 --- a/arch/parisc/kernel/syscall_table.S +++ b/arch/parisc/kernel/syscall_table.S | |||
@@ -419,6 +419,7 @@ | |||
419 | ENTRY_SAME(perf_event_open) | 419 | ENTRY_SAME(perf_event_open) |
420 | ENTRY_COMP(recvmmsg) | 420 | ENTRY_COMP(recvmmsg) |
421 | ENTRY_SAME(accept4) /* 320 */ | 421 | ENTRY_SAME(accept4) /* 320 */ |
422 | ENTRY_SAME(prlimit64) | ||
422 | 423 | ||
423 | /* Nothing yet */ | 424 | /* Nothing yet */ |
424 | 425 | ||