summaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel/syscall_table.S
diff options
context:
space:
mode:
authorMichal Simek2009-05-26 16:30:26 +0200
committerMichal Simek2009-05-26 16:45:21 +0200
commit65504a47e02e4e6e58884376f4a700f83cc8234f (patch)
tree964444589af72a0263ad3f1ea43b57068ac817c8 /arch/microblaze/kernel/syscall_table.S
parentmicroblaze_mmu_v2: Update linker script for MMU (diff)
downloadkernel-qcow2-linux-65504a47e02e4e6e58884376f4a700f83cc8234f.tar.gz
kernel-qcow2-linux-65504a47e02e4e6e58884376f4a700f83cc8234f.tar.xz
kernel-qcow2-linux-65504a47e02e4e6e58884376f4a700f83cc8234f.zip
microblaze_mmu_v2: Enable fork syscall for MMU and add fork as vfork for noMMU
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/syscall_table.S')
-rw-r--r--arch/microblaze/kernel/syscall_table.S6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S
index 3bb42ec924c2..376d1789f7c0 100644
--- a/arch/microblaze/kernel/syscall_table.S
+++ b/arch/microblaze/kernel/syscall_table.S
@@ -2,7 +2,11 @@ ENTRY(sys_call_table)
.long sys_restart_syscall /* 0 - old "setup()" system call,
* used for restarting */
.long sys_exit
- .long sys_ni_syscall /* was fork */
+#ifdef CONFIG_MMU
+ .long sys_fork_wrapper
+#else
+ .long sys_ni_syscall
+#endif
.long sys_read
.long sys_write
.long sys_open /* 5 */