Lines Matching refs:lowest_rq
2077 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
2087 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
2089 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
2095 lowest_rq = NULL; in find_lock_lowest_rq()
2100 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
2111 !cpumask_test_cpu(lowest_rq->cpu, &task->cpus_mask) || in find_lock_lowest_rq()
2117 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2118 lowest_rq = NULL; in find_lock_lowest_rq()
2124 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
2128 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2129 lowest_rq = NULL; in find_lock_lowest_rq()
2132 return lowest_rq; in find_lock_lowest_rq()
2163 struct rq *lowest_rq; in push_rt_task() local
2233 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
2234 if (!lowest_rq) { in push_rt_task()
2268 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
2269 activate_task(lowest_rq, next_task, 0); in push_rt_task()
2270 resched_curr(lowest_rq); in push_rt_task()
2273 double_unlock_balance(rq, lowest_rq); in push_rt_task()