Commit 38f33b37 authored by Miles Bader's avatar Miles Bader Committed by Linus Torvalds

[PATCH] Update v850 usage of do_fork to supply new args

Update v850 usage of do_fork to supply new args
parent 5a50d02c
...@@ -188,7 +188,7 @@ int sys_execve (char *name, char **argv, char **envp, struct pt_regs *regs) ...@@ -188,7 +188,7 @@ int sys_execve (char *name, char **argv, char **envp, struct pt_regs *regs)
are in entry.S). */ are in entry.S). */
int fork_common (int flags, unsigned long new_sp, struct pt_regs *regs) 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; return IS_ERR (p) ? PTR_ERR (p) : p->pid;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment