Lines Matching refs:thread
59 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN); in thread_saved_pc()
89 kfree(tsk->thread.fpu.regs); in arch_release_task_struct()
104 dst->thread.fpu.regs = kzalloc(fpu_regs_size, GFP_KERNEL|__GFP_REPEAT); in arch_dup_task_struct()
105 if (!dst->thread.fpu.regs) in arch_dup_task_struct()
114 dst->thread.fpu.fpc = current->thread.fpu.fpc; in arch_dup_task_struct()
115 memcpy(dst->thread.fpu.regs, current->thread.fpu.regs, fpu_regs_size); in arch_dup_task_struct()
131 p->thread.ksp = (unsigned long) frame; in copy_thread()
133 save_access_regs(&p->thread.acrs[0]); in copy_thread()
135 p->thread.mm_segment = get_fs(); in copy_thread()
137 memset(&p->thread.per_user, 0, sizeof(p->thread.per_user)); in copy_thread()
138 memset(&p->thread.per_event, 0, sizeof(p->thread.per_event)); in copy_thread()
173 p->thread.ri_cb = NULL; in copy_thread()
180 p->thread.acrs[0] = (unsigned int)tls; in copy_thread()
182 p->thread.acrs[0] = (unsigned int)(tls >> 32); in copy_thread()
183 p->thread.acrs[1] = (unsigned int)tls; in copy_thread()
191 current->thread.fpu.fpc = 0; in execve_tail()
201 fpregs->fpc = current->thread.fpu.fpc; in dump_fpu()
205 current->thread.fpu.vxrs); in dump_fpu()
207 memcpy(&fpregs->fprs, current->thread.fpu.fprs, in dump_fpu()
223 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN); in get_wchan()