do_fork           785 arch/x86/ia32/sys_ia32.c 	return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
do_fork           224 arch/x86/kernel/process_32.c 	return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
do_fork           637 arch/x86/kernel/process_32.c 	return do_fork(SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
do_fork           652 arch/x86/kernel/process_32.c 	return do_fork(clone_flags, newsp, &regs, 0, parent_tidptr, child_tidptr);
do_fork           667 arch/x86/kernel/process_32.c 	return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
do_fork           705 arch/x86/kernel/process_64.c 	return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
do_fork           714 arch/x86/kernel/process_64.c 	return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
do_fork           729 arch/x86/kernel/process_64.c 	return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
do_fork          1856 include/linux/sched.h extern long do_fork(unsigned long, unsigned long, struct pt_regs *, unsigned long, int __user *, int __user *);