Home
last modified time | relevance | path

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

/Linux-v5.4/arch/m68k/kernel/
Dprocess.c125 struct fork_frame { in copy_thread() struct
130 frame = (struct fork_frame *) (task_stack_page(p) + THREAD_SIZE) - 1; in copy_thread()
143 memset(frame, 0, sizeof(struct fork_frame)); in copy_thread()
151 memcpy(frame, container_of(current_pt_regs(), struct fork_frame, regs), in copy_thread()
152 sizeof(struct fork_frame)); in copy_thread()
/Linux-v5.4/arch/x86/kernel/
Dprocess_32.c119 struct fork_frame *fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread_tls() local
120 struct inactive_task_frame *frame = &fork_frame->frame; in copy_thread_tls()
133 p->thread.sp = (unsigned long) fork_frame; in copy_thread_tls()
Dprocess_64.c379 struct fork_frame *fork_frame; in copy_thread_tls() local
384 fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread_tls()
385 frame = &fork_frame->frame; in copy_thread_tls()
389 p->thread.sp = (unsigned long) fork_frame; in copy_thread_tls()
/Linux-v5.4/arch/x86/include/asm/
Dswitch_to.h63 struct fork_frame { struct