Lines Matching refs:lowest_rq
1974 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
1984 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
1986 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
1992 lowest_rq = NULL; in find_lock_lowest_rq()
1997 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
2008 !cpumask_test_cpu(lowest_rq->cpu, &task->cpus_mask) || in find_lock_lowest_rq()
2014 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2015 lowest_rq = NULL; in find_lock_lowest_rq()
2021 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
2025 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
2026 lowest_rq = NULL; in find_lock_lowest_rq()
2029 return lowest_rq; in find_lock_lowest_rq()
2060 struct rq *lowest_rq; in push_rt_task() local
2128 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
2129 if (!lowest_rq) { in push_rt_task()
2163 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
2164 activate_task(lowest_rq, next_task, 0); in push_rt_task()
2165 resched_curr(lowest_rq); in push_rt_task()
2168 double_unlock_balance(rq, lowest_rq); in push_rt_task()