Home
last modified time | relevance | path

Searched refs:pcb (Results 1 – 10 of 10) sorted by relevance

/arch/alpha/kernel/
Dprocess.c225 current_thread_info()->pcb.unique = 0; in flush_thread()
249 childti->pcb.ksp = (unsigned long) childstack; in copy_thread()
250 childti->pcb.flags = 1; /* set FEN, clear everything else */ in copy_thread()
260 childti->pcb.usp = 0; in copy_thread()
269 childti->pcb.unique = tls; in copy_thread()
272 childti->pcb.usp = usp ?: rdusp(); in copy_thread()
322 dest[30] = ti == current_thread_info() ? rdusp() : ti->pcb.usp; in dump_elf_thread()
328 dest[32] = ti->pcb.unique; in dump_elf_thread()
367 unsigned long fp, sp = task_thread_info(t)->pcb.ksp; in thread_saved_pc()
397 schedule_frame = ((unsigned long *)task_thread_info(p)->pcb.ksp)[6]; in get_wchan()
Dptrace.c113 addr = &task_thread_info(task)->pcb.usp; in get_reg_addr()
115 addr = &task_thread_info(task)->pcb.unique; in get_reg_addr()
Dtraps.c248 current_thread_info()->pcb.flags |= 1; in do_entIF()
249 __reload_thread(&current_thread_info()->pcb); in do_entIF()
Dsmp.c300 ipcb = &task_thread_info(idle)->pcb; in secondary_cpu_start()
/arch/alpha/mm/
Dfault.c45 struct pcb_struct *pcb; in __load_new_mm_context() local
50 pcb = &current_thread_info()->pcb; in __load_new_mm_context()
51 pcb->asn = mmc & HARDWARE_ASN_MASK; in __load_new_mm_context()
52 pcb->ptbr = ((unsigned long) next_mm->pgd - IDENT_ADDR) >> PAGE_SHIFT; in __load_new_mm_context()
54 __reload_thread(pcb); in __load_new_mm_context()
Dinit.c91 load_PCB(struct pcb_struct *pcb) in load_PCB() argument
94 pcb->ksp = sp; in load_PCB()
95 return __reload_thread(pcb); in load_PCB()
122 init_thread_info.pcb.ptbr = newptbr; in switch_to_system_map()
123 init_thread_info.pcb.flags = 1; /* set FEN, clear everything else */ in switch_to_system_map()
124 original_pcb_ptr = load_PCB(&init_thread_info.pcb); in switch_to_system_map()
/arch/alpha/include/asm/
Dmmu_context.h30 __reload_thread(struct pcb_struct *pcb) in __reload_thread() argument
35 a0 = virt_to_phys(pcb); in __reload_thread()
162 task_thread_info(next)->pcb.asn = mmc & HARDWARE_ASN_MASK; in ev5_switch_mm()
240 task_thread_info(tsk)->pcb.ptbr in init_new_context()
254 task_thread_info(tsk)->pcb.ptbr in enter_lazy_tlb()
Dswitch_to.h11 (L) = alpha_switch_to(virt_to_phys(&task_thread_info(N)->pcb), (P)); \
Dprocessor.h50 ((tsk) == current ? rdusp() : task_thread_info(tsk)->pcb.usp)
Dthread_info.h16 struct pcb_struct pcb; /* palcode state */ member