Lines Matching refs:lowest_rq
1971 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
1981 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
1983 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
1989 lowest_rq = NULL; in find_lock_lowest_rq()
1994 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
2002 !cpumask_test_cpu(lowest_rq->cpu, &task->cpus_mask) || in find_lock_lowest_rq()
2007 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2008 lowest_rq = NULL; in find_lock_lowest_rq()
2014 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
2018 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2019 lowest_rq = NULL; in find_lock_lowest_rq()
2022 return lowest_rq; in find_lock_lowest_rq()
2053 struct rq *lowest_rq; in push_rt_task() local
2121 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
2122 if (!lowest_rq) { in push_rt_task()
2156 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
2157 activate_task(lowest_rq, next_task, 0); in push_rt_task()
2158 resched_curr(lowest_rq); in push_rt_task()
2161 double_unlock_balance(rq, lowest_rq); in push_rt_task()