flagday: kill pt_regs argument of do_fork()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2012-10-22 23:10:08 -04:00
parent 18c26c27ae
commit e80d6661c3
9 changed files with 19 additions and 26 deletions

View File

@@ -312,7 +312,7 @@ _sys32_clone(nabi_no_regargs struct pt_regs regs)
/* Use __dummy4 instead of getting it off the stack, so that
syscall() works. */
child_tidptr = (int __user *) __dummy4;
return do_fork(clone_flags, newsp, &regs, 0,
return do_fork(clone_flags, newsp, 0,
parent_tidptr, child_tidptr);
}