Symbol: new_thread
arch/powerpc/kernel/process.c
1227
struct thread_struct *new_thread)
arch/powerpc/kernel/process.c
1231
old_thread->vrsave != new_thread->vrsave)
arch/powerpc/kernel/process.c
1232
mtspr(SPRN_VRSAVE, new_thread->vrsave);
arch/powerpc/kernel/process.c
1236
old_thread->spefscr != new_thread->spefscr)
arch/powerpc/kernel/process.c
1237
mtspr(SPRN_SPEFSCR, new_thread->spefscr);
arch/powerpc/kernel/process.c
1242
if (new_thread->dscr_inherit)
arch/powerpc/kernel/process.c
1243
dscr = new_thread->dscr;
arch/powerpc/kernel/process.c
1250
if (old_thread->bescr != new_thread->bescr)
arch/powerpc/kernel/process.c
1251
mtspr(SPRN_BESCR, new_thread->bescr);
arch/powerpc/kernel/process.c
1252
if (old_thread->ebbhr != new_thread->ebbhr)
arch/powerpc/kernel/process.c
1253
mtspr(SPRN_EBBHR, new_thread->ebbhr);
arch/powerpc/kernel/process.c
1254
if (old_thread->ebbrr != new_thread->ebbrr)
arch/powerpc/kernel/process.c
1255
mtspr(SPRN_EBBRR, new_thread->ebbrr);
arch/powerpc/kernel/process.c
1257
if (old_thread->fscr != new_thread->fscr)
arch/powerpc/kernel/process.c
1258
mtspr(SPRN_FSCR, new_thread->fscr);
arch/powerpc/kernel/process.c
1260
if (old_thread->tar != new_thread->tar)
arch/powerpc/kernel/process.c
1261
mtspr(SPRN_TAR, new_thread->tar);
arch/powerpc/kernel/process.c
1265
old_thread->tidr != new_thread->tidr)
arch/powerpc/kernel/process.c
1266
mtspr(SPRN_TIDR, new_thread->tidr);
arch/powerpc/kernel/process.c
1269
old_thread->hashkeyr != new_thread->hashkeyr)
arch/powerpc/kernel/process.c
1270
mtspr(SPRN_HASHKEYR, new_thread->hashkeyr);
arch/powerpc/kernel/process.c
1273
old_thread->dexcr != new_thread->dexcr)
arch/powerpc/kernel/process.c
1274
mtspr(SPRN_DEXCR, new_thread->dexcr);
arch/powerpc/kernel/process.c
1282
struct thread_struct *new_thread, *old_thread;
arch/powerpc/kernel/process.c
1285
new_thread = &new->thread;
arch/powerpc/kernel/process.c
1344
restore_sprs(old_thread, new_thread);
arch/powerpc/kernel/process.c
1351
last = _switch(old_thread, new_thread);
arch/um/include/shared/os.h
296
extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
arch/um/kernel/process.c
173
new_thread(task_stack_page(p), &p->thread.switch_buf, handler);
arch/um/kernel/smp.c
160
new_thread(task_stack_page(idle), &idle->thread.switch_buf,
drivers/android/binder.c
5249
struct binder_proc *proc, struct binder_thread *new_thread)
drivers/android/binder.c
5266
if (!new_thread)
drivers/android/binder.c
5268
thread = new_thread;
drivers/android/binder.c
5283
INIT_LIST_HEAD(&new_thread->waiting_thread_node);
drivers/android/binder.c
5290
struct binder_thread *new_thread;
drivers/android/binder.c
5296
new_thread = kzalloc_obj(*thread);
drivers/android/binder.c
5297
if (new_thread == NULL)
drivers/android/binder.c
5300
thread = binder_get_thread_ilocked(proc, new_thread);
drivers/android/binder.c
5302
if (thread != new_thread)
drivers/android/binder.c
5303
kfree(new_thread);
drivers/md/dm-vdo/memory-alloc.c
40
void vdo_register_allocating_thread(struct registered_thread *new_thread,
drivers/md/dm-vdo/memory-alloc.c
49
vdo_register_thread(&allocating_threads, new_thread, flag_ptr);
drivers/md/dm-vdo/memory-alloc.h
153
void vdo_register_allocating_thread(struct registered_thread *new_thread,
drivers/md/dm-vdo/thread-device.c
12
void vdo_register_thread_device_id(struct registered_thread *new_thread,
drivers/md/dm-vdo/thread-device.c
15
vdo_register_thread(&device_id_thread_registry, new_thread, id_ptr);
drivers/md/dm-vdo/thread-device.h
11
void vdo_register_thread_device_id(struct registered_thread *new_thread,
drivers/md/dm-vdo/thread-registry.c
26
struct registered_thread *new_thread, const void *pointer)
drivers/md/dm-vdo/thread-registry.c
31
INIT_LIST_HEAD(&new_thread->links);
drivers/md/dm-vdo/thread-registry.c
32
new_thread->pointer = pointer;
drivers/md/dm-vdo/thread-registry.c
33
new_thread->task = current;
drivers/md/dm-vdo/thread-registry.c
44
list_add_tail_rcu(&new_thread->links, &registry->links);
drivers/md/dm-vdo/thread-registry.h
26
struct registered_thread *new_thread, const void *pointer);
drivers/md/dm-vdo/thread-utils.c
51
const char *name, struct thread **new_thread)
drivers/md/dm-vdo/thread-utils.c
95
*new_thread = thread;
drivers/md/dm-vdo/thread-utils.h
17
const char *name, struct thread **new_thread);