diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2009-06-24 02:22:06 +0200 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-07-03 05:34:11 +0200 |
commit | 538e23615fe78b6da151ef136e3f7c6ad1fda2c1 (patch) | |
tree | afa3a38be8d93bd20ab542f6579c43b303791c50 /arch/parisc/include | |
parent | parisc: inventory.c, fix bloated stack frame (diff) | |
download | linux-538e23615fe78b6da151ef136e3f7c6ad1fda2c1.tar.xz linux-538e23615fe78b6da151ef136e3f7c6ad1fda2c1.zip |
parisc: wire sys_perf_counter_open to sys_ni_syscall
Reserve a syscall slot for sys_perf_counter_open.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/include')
-rw-r--r-- | arch/parisc/include/asm/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/include/asm/unistd.h b/arch/parisc/include/asm/unistd.h index 4e2aa0d14965..f3d3b8b012c4 100644 --- a/arch/parisc/include/asm/unistd.h +++ b/arch/parisc/include/asm/unistd.h @@ -810,8 +810,9 @@ #define __NR_preadv (__NR_Linux + 315) #define __NR_pwritev (__NR_Linux + 316) #define __NR_rt_tgsigqueueinfo (__NR_Linux + 317) +#define __NR_perf_counter_open (__NR_Linux + 318) -#define __NR_Linux_syscalls (__NR_rt_tgsigqueueinfo + 1) +#define __NR_Linux_syscalls (__NR_perf_counter_open + 1) #define __IGNORE_select /* newselect */ |