]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
microblaze_mmu_v2: Enable fork syscall for MMU and add fork as vfork for noMMU
authorMichal Simek <monstr@monstr.eu>
Tue, 26 May 2009 14:30:26 +0000 (16:30 +0200)
committerMichal Simek <monstr@monstr.eu>
Tue, 26 May 2009 14:45:21 +0000 (16:45 +0200)
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/kernel/entry-nommu.S
arch/microblaze/kernel/syscall_table.S

index f24b1268baaf5c08b834f9c5c5052db5e063694b..1fce6b803f54905b69ffadca0162a4db0593ed66 100644 (file)
@@ -10,7 +10,7 @@
 
 #include <linux/linkage.h>
 #include <asm/thread_info.h>
-#include <asm/errno.h>
+#include <linux/errno.h>
 #include <asm/entry.h>
 #include <asm/asm-offsets.h>
 #include <asm/registers.h>
index 3bb42ec924c2ccc299004ab7b525724ab5cd8c9c..376d1789f7c065e436fdf39d7b3e2f8f2318494f 100644 (file)
@@ -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 */