Lines Matching refs:next
29 static inline void contextidr_thread_switch(struct task_struct *next)
34 write_sysreg(task_pid_nr(next), contextidr_el1);
218 static inline void __switch_mm(struct mm_struct *next)
224 if (next == &init_mm) {
229 check_and_switch_context(next);
233 switch_mm(struct mm_struct *prev, struct mm_struct *next,
236 if (prev != next)
237 __switch_mm(next);
245 update_saved_ttbr0(tsk, next);
249 #define activate_mm(prev,next) switch_mm(prev, next, current)