Searched refs:prev_p (Results 1 – 6 of 6) sorted by relevance
/linux/arch/x86/kernel/ |
H A D | process_32.c | 155 __switch_to(struct task_struct *prev_p, struct task_struct *next_p) in __switch_to() argument 157 struct thread_struct *prev = &prev_p->thread, in __switch_to() 163 if (!test_tsk_thread_flag(prev_p, TIF_NEED_FPU_LOAD)) in __switch_to() 164 switch_fpu_prepare(prev_p, cpu); in __switch_to() 183 switch_to_extra(prev_p, next_p); in __switch_to() 216 return prev_p; in __switch_to()
|
H A D | process_64.c | 235 static __always_inline void save_base_legacy(struct task_struct *prev_p, in save_base_legacy() argument 268 prev_p->thread.fsbase = 0; in save_base_legacy() 270 prev_p->thread.gsbase = 0; in save_base_legacy() 610 __switch_to(struct task_struct *prev_p, struct task_struct *next_p) in __switch_to() argument 612 struct thread_struct *prev = &prev_p->thread; in __switch_to() 619 if (!test_tsk_thread_flag(prev_p, TIF_NEED_FPU_LOAD)) in __switch_to() 620 switch_fpu_prepare(prev_p, cpu); in __switch_to() 627 save_fsgs(prev_p); in __switch_to() 679 switch_to_extra(prev_p, next_p); in __switch_to() 712 return prev_p; in __switch_to()
|
H A D | process.h | 7 void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p);
|
/linux/drivers/usb/host/ |
H A D | ohci-q.c | 153 __hc32 *prev_p = &ohci->hcca->int_table [i]; in periodic_link() local 164 prev_p = &here->hwNextED; in periodic_link() 170 ed->hwNextED = *prev_p; in periodic_link() 173 *prev_p = cpu_to_hc32(ohci, ed->dma); in periodic_link() 277 __hc32 *prev_p = &ohci->hcca->int_table [i]; in periodic_unlink() local 280 prev_p = &temp->hwNextED; in periodic_unlink() 284 *prev_p = ed->hwNextED; in periodic_unlink()
|
H A D | ehci-sched.c | 65 union ehci_shadow *prev_p = &ehci->pshadow[frame]; in periodic_unlink() local 67 union ehci_shadow here = *prev_p; in periodic_unlink() 71 prev_p = periodic_next_shadow(ehci, prev_p, in periodic_unlink() 75 here = *prev_p; in periodic_unlink() 84 *prev_p = *periodic_next_shadow(ehci, &here, in periodic_unlink()
|
/linux/drivers/usb/fotg210/ |
H A D | fotg210-hcd.c | 3300 union fotg210_shadow *prev_p = &fotg210->pshadow[frame]; in periodic_unlink() local 3302 union fotg210_shadow here = *prev_p; in periodic_unlink() 3306 prev_p = periodic_next_shadow(fotg210, prev_p, in periodic_unlink() 3310 here = *prev_p; in periodic_unlink() 3319 *prev_p = *periodic_next_shadow(fotg210, &here, in periodic_unlink()
|