Searched refs:fork_frame (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/arch/m68k/kernel/ |
D | process.c | 125 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/ |
D | process_32.c | 126 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()
|
D | process_64.c | 294 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/ |
D | switch_to.h | 65 struct fork_frame { struct
|