Lines Matching refs:lowest_rq
1783 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
1793 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
1795 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
1801 lowest_rq = NULL; in find_lock_lowest_rq()
1806 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
1814 !cpumask_test_cpu(lowest_rq->cpu, task->cpus_ptr) || in find_lock_lowest_rq()
1819 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1820 lowest_rq = NULL; in find_lock_lowest_rq()
1826 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
1830 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1831 lowest_rq = NULL; in find_lock_lowest_rq()
1834 return lowest_rq; in find_lock_lowest_rq()
1865 struct rq *lowest_rq; in push_rt_task() local
1893 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
1894 if (!lowest_rq) { in push_rt_task()
1928 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
1929 activate_task(lowest_rq, next_task, 0); in push_rt_task()
1932 resched_curr(lowest_rq); in push_rt_task()
1934 double_unlock_balance(rq, lowest_rq); in push_rt_task()