Lines Matching refs:childregs
1785 struct pt_regs *childregs; in copy_thread() local
1791 childregs = (struct pt_regs *)(sp + STACK_INT_FRAME_REGS); in copy_thread()
1801 memset(childregs, 0, sizeof(struct pt_regs)); in copy_thread()
1803 childregs->softe = IRQS_ENABLED; in copy_thread()
1812 *childregs = *regs; in copy_thread()
1814 childregs->gpr[1] = usp; in copy_thread()
1815 ((unsigned long *)sp)[0] = childregs->gpr[1]; in copy_thread()
1817 WARN_ON_ONCE(childregs->softe != IRQS_ENABLED); in copy_thread()
1823 childregs->gpr[13] = tls; in copy_thread()
1825 childregs->gpr[2] = tls; in copy_thread()
1834 childregs->msr &= ~(MSR_FP|MSR_VEC|MSR_VSX); in copy_thread()
1835 p->thread.regs = childregs; in copy_thread()