Searched refs:fork_frame (Results 1 – 3 of 3) sorted by relevance
144 struct fork_frame { in copy_thread() struct149 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()
129 struct fork_frame *fork_frame; in copy_thread() local134 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()
42 struct fork_frame { struct