Home
last modified time | relevance | path

Searched refs:fork_frame (Results 1 – 3 of 3) sorted by relevance

/kernel/linux/linux-5.10/arch/m68k/kernel/
Dprocess.c144 struct fork_frame { in copy_thread() struct
149 frame = (struct fork_frame *) (task_stack_page(p) + THREAD_SIZE) - 1; in copy_thread()
162 memset(frame, 0, sizeof(struct fork_frame)); in copy_thread()
170 memcpy(frame, container_of(current_pt_regs(), struct fork_frame, regs), in copy_thread()
171 sizeof(struct fork_frame)); in copy_thread()
/kernel/linux/linux-5.10/arch/x86/kernel/
Dprocess.c129 struct fork_frame *fork_frame; in copy_thread() local
134 fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread()
135 frame = &fork_frame->frame; in copy_thread()
139 p->thread.sp = (unsigned long) fork_frame; in copy_thread()
/kernel/linux/linux-5.10/arch/x86/include/asm/
Dswitch_to.h42 struct fork_frame { struct