Lines Matching refs:lowest_rq
1795 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
1805 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
1807 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
1813 lowest_rq = NULL; in find_lock_lowest_rq()
1818 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
1826 !cpumask_test_cpu(lowest_rq->cpu, &task->cpus_mask) || in find_lock_lowest_rq()
1831 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1832 lowest_rq = NULL; in find_lock_lowest_rq()
1838 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
1842 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1843 lowest_rq = NULL; in find_lock_lowest_rq()
1846 return lowest_rq; in find_lock_lowest_rq()
1877 struct rq *lowest_rq; in push_rt_task() local
1933 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
1934 if (!lowest_rq) { in push_rt_task()
1968 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
1969 activate_task(lowest_rq, next_task, 0); in push_rt_task()
1970 resched_curr(lowest_rq); in push_rt_task()
1973 double_unlock_balance(rq, lowest_rq); in push_rt_task()