]> git.hungrycats.org Git - linux/commitdiff
[PATCH] Update v850 usage of do_fork to supply new args
authorMiles Bader <miles@lsi.nec.co.jp>
Tue, 26 Nov 2002 13:20:15 +0000 (05:20 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Tue, 26 Nov 2002 13:20:15 +0000 (05:20 -0800)
Update v850 usage of do_fork to supply new args

arch/v850/kernel/process.c

index 7aa282274460ef1703934c204639a6a389dfa487..ea9f30d3f35de7f0e3b47eeee4c1f45097765cc2 100644 (file)
@@ -188,7 +188,7 @@ int sys_execve (char *name, char **argv, char **envp, struct pt_regs *regs)
    are in entry.S).  */
 int fork_common (int flags, unsigned long new_sp, struct pt_regs *regs)
 {
-       struct task_struct *p = do_fork (flags, new_sp, regs, 0, 0);
+       struct task_struct *p = do_fork (flags, new_sp, regs, 0, 0, 0);
        return IS_ERR (p) ? PTR_ERR (p) : p->pid;
 }