Home
last modified time | relevance | path

Searched refs:new_thread (Results 1 – 8 of 8) sorted by relevance

/Linux-v4.19/arch/powerpc/mm/
Dpkeys.c280 void thread_pkey_regs_restore(struct thread_struct *new_thread, in thread_pkey_regs_restore() argument
286 if (old_thread->amr != new_thread->amr) in thread_pkey_regs_restore()
287 write_amr(new_thread->amr); in thread_pkey_regs_restore()
288 if (old_thread->iamr != new_thread->iamr) in thread_pkey_regs_restore()
289 write_iamr(new_thread->iamr); in thread_pkey_regs_restore()
290 if (old_thread->uamor != new_thread->uamor) in thread_pkey_regs_restore()
291 write_uamor(new_thread->uamor); in thread_pkey_regs_restore()
/Linux-v4.19/arch/powerpc/kernel/
Dprocess.c1123 struct thread_struct *new_thread) in restore_sprs() argument
1127 old_thread->vrsave != new_thread->vrsave) in restore_sprs()
1128 mtspr(SPRN_VRSAVE, new_thread->vrsave); in restore_sprs()
1133 if (new_thread->dscr_inherit) in restore_sprs()
1134 dscr = new_thread->dscr; in restore_sprs()
1141 if (old_thread->bescr != new_thread->bescr) in restore_sprs()
1142 mtspr(SPRN_BESCR, new_thread->bescr); in restore_sprs()
1143 if (old_thread->ebbhr != new_thread->ebbhr) in restore_sprs()
1144 mtspr(SPRN_EBBHR, new_thread->ebbhr); in restore_sprs()
1145 if (old_thread->ebbrr != new_thread->ebbrr) in restore_sprs()
[all …]
/Linux-v4.19/arch/powerpc/include/asm/
Dpkeys.h206 extern void thread_pkey_regs_restore(struct thread_struct *new_thread,
Dmmu_context.h260 #define thread_pkey_regs_restore(new_thread, old_thread) argument
/Linux-v4.19/arch/um/kernel/
Dprocess.c182 new_thread(task_stack_page(p), &p->thread.switch_buf, handler); in copy_thread()
/Linux-v4.19/arch/um/include/shared/
Dos.h284 extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
/Linux-v4.19/drivers/android/
Dbinder.c4247 struct binder_proc *proc, struct binder_thread *new_thread) in binder_get_thread_ilocked() argument
4264 if (!new_thread) in binder_get_thread_ilocked()
4266 thread = new_thread; in binder_get_thread_ilocked()
4280 INIT_LIST_HEAD(&new_thread->waiting_thread_node); in binder_get_thread_ilocked()
4287 struct binder_thread *new_thread; in binder_get_thread() local
4293 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); in binder_get_thread()
4294 if (new_thread == NULL) in binder_get_thread()
4297 thread = binder_get_thread_ilocked(proc, new_thread); in binder_get_thread()
4299 if (thread != new_thread) in binder_get_thread()
4300 kfree(new_thread); in binder_get_thread()
/Linux-v4.19/arch/um/os-Linux/skas/
Dprocess.c551 void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) in new_thread() function