Home
last modified time | relevance | path

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

/Linux-v4.19/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-v4.19/arch/x86/kernel/
Dprocess_32.c126 struct fork_frame *fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread_tls() local
127 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.c294 struct fork_frame *fork_frame; in copy_thread_tls() local
299 fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread_tls()
300 frame = &fork_frame->frame; in copy_thread_tls()
303 p->thread.sp = (unsigned long) fork_frame; in copy_thread_tls()
/Linux-v4.19/arch/x86/include/asm/
Dswitch_to.h65 struct fork_frame { struct