diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-02-15 04:01:11 -0500 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-02-16 06:54:44 -0500 |
commit | 1a6f1436d5fdecd4b395815c130df3c834892ab6 (patch) | |
tree | 5ea91e796bb1ee2598ecb377b6165df59e23832c /arch/avr32 | |
parent | 2201ec2b10910c869befb012ae75696a02091e7d (diff) |
[AVR32] Wire up the SysV IPC calls properly
Wire up the individual sysvipc system calls and remove sys_ipc.
Strictly speaking, this breaks the ABI, but since sys_ipc never
worked anyway due to a silly bug, it isn't actually a regression.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/kernel/syscall_table.S | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/arch/avr32/kernel/syscall_table.S b/arch/avr32/kernel/syscall_table.S index db8f8b55ffdf..52919c0eaa56 100644 --- a/arch/avr32/kernel/syscall_table.S +++ b/arch/avr32/kernel/syscall_table.S | |||
@@ -12,10 +12,6 @@ | |||
12 | #define sys_nfsservctl sys_ni_syscall | 12 | #define sys_nfsservctl sys_ni_syscall |
13 | #endif | 13 | #endif |
14 | 14 | ||
15 | #if !defined(CONFIG_SYSV_IPC) | ||
16 | # define sys_ipc sys_ni_syscall | ||
17 | #endif | ||
18 | |||
19 | .section .rodata,"a",@progbits | 15 | .section .rodata,"a",@progbits |
20 | .type sys_call_table,@object | 16 | .type sys_call_table,@object |
21 | .global sys_call_table | 17 | .global sys_call_table |
@@ -129,7 +125,7 @@ sys_call_table: | |||
129 | .long sys_getitimer /* 105 */ | 125 | .long sys_getitimer /* 105 */ |
130 | .long sys_swapoff | 126 | .long sys_swapoff |
131 | .long sys_sysinfo | 127 | .long sys_sysinfo |
132 | .long sys_ipc | 128 | .long sys_ni_syscall /* was sys_ipc briefly */ |
133 | .long sys_sendfile | 129 | .long sys_sendfile |
134 | .long sys_setdomainname /* 110 */ | 130 | .long sys_setdomainname /* 110 */ |
135 | .long sys_newuname | 131 | .long sys_newuname |
@@ -287,4 +283,16 @@ sys_call_table: | |||
287 | .long sys_tee | 283 | .long sys_tee |
288 | .long sys_vmsplice | 284 | .long sys_vmsplice |
289 | .long __sys_epoll_pwait /* 265 */ | 285 | .long __sys_epoll_pwait /* 265 */ |
286 | .long sys_msgget | ||
287 | .long sys_msgsnd | ||
288 | .long sys_msgrcv | ||
289 | .long sys_msgctl | ||
290 | .long sys_semget /* 270 */ | ||
291 | .long sys_semop | ||
292 | .long sys_semctl | ||
293 | .long sys_semtimedop | ||
294 | .long sys_shmat | ||
295 | .long sys_shmget /* 275 */ | ||
296 | .long sys_shmdt | ||
297 | .long sys_shmctl | ||
290 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ | 298 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ |