Home
last modified time | relevance | path

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

/linux-6.15/drivers/md/dm-vdo/
H A Dthread-registry.c26 struct registered_thread *new_thread, const void *pointer) in vdo_register_thread() argument
31 INIT_LIST_HEAD(&new_thread->links); in vdo_register_thread()
32 new_thread->pointer = pointer; in vdo_register_thread()
33 new_thread->task = current; in vdo_register_thread()
44 list_add_tail_rcu(&new_thread->links, &registry->links); in vdo_register_thread()
H A Dthread-device.c12 void vdo_register_thread_device_id(struct registered_thread *new_thread, in vdo_register_thread_device_id() argument
15 vdo_register_thread(&device_id_thread_registry, new_thread, id_ptr); in vdo_register_thread_device_id()
H A Dthread-utils.c51 const char *name, struct thread **new_thread) in vdo_create_thread() argument
95 *new_thread = thread; in vdo_create_thread()
H A Dthread-device.h11 void vdo_register_thread_device_id(struct registered_thread *new_thread,
H A Dthread-utils.h17 const char *name, struct thread **new_thread);
H A Dthread-registry.h26 struct registered_thread *new_thread, const void *pointer);
H A Dmemory-alloc.c40 void vdo_register_allocating_thread(struct registered_thread *new_thread, in vdo_register_allocating_thread() argument
49 vdo_register_thread(&allocating_threads, new_thread, flag_ptr); in vdo_register_allocating_thread()
H A Dmemory-alloc.h153 void vdo_register_allocating_thread(struct registered_thread *new_thread,
/linux-6.15/arch/powerpc/kernel/
H A Dprocess.c1227 struct thread_struct *new_thread) in restore_sprs() argument
1242 if (new_thread->dscr_inherit) in restore_sprs()
1243 dscr = new_thread->dscr; in restore_sprs()
1251 mtspr(SPRN_BESCR, new_thread->bescr); in restore_sprs()
1253 mtspr(SPRN_EBBHR, new_thread->ebbhr); in restore_sprs()
1258 mtspr(SPRN_FSCR, new_thread->fscr); in restore_sprs()
1261 mtspr(SPRN_TAR, new_thread->tar); in restore_sprs()
1266 mtspr(SPRN_TIDR, new_thread->tidr); in restore_sprs()
1274 mtspr(SPRN_DEXCR, new_thread->dexcr); in restore_sprs()
1288 new_thread = &new->thread; in __switch_to()
[all …]
/linux-6.15/arch/um/kernel/
H A Dprocess.c167 new_thread(task_stack_page(p), &p->thread.switch_buf, handler); in copy_thread()
/linux-6.15/arch/um/include/shared/
H A Dos.h291 extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
/linux-6.15/arch/um/os-Linux/skas/
H A Dprocess.c564 void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) in new_thread() function
/linux-6.15/drivers/android/
H A Dbinder.c5177 struct binder_proc *proc, struct binder_thread *new_thread) in binder_get_thread_ilocked() argument
5194 if (!new_thread) in binder_get_thread_ilocked()
5196 thread = new_thread; in binder_get_thread_ilocked()
5211 INIT_LIST_HEAD(&new_thread->waiting_thread_node); in binder_get_thread_ilocked()
5218 struct binder_thread *new_thread; in binder_get_thread() local
5224 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); in binder_get_thread()
5225 if (new_thread == NULL) in binder_get_thread()
5228 thread = binder_get_thread_ilocked(proc, new_thread); in binder_get_thread()
5230 if (thread != new_thread) in binder_get_thread()
5231 kfree(new_thread); in binder_get_thread()