Lines Matching refs:lowest_rq
1893 struct rq *lowest_rq = NULL; in find_lock_lowest_rq() local
1903 lowest_rq = cpu_rq(cpu); in find_lock_lowest_rq()
1905 if (lowest_rq->rt.highest_prio.curr <= task->prio) { in find_lock_lowest_rq()
1911 lowest_rq = NULL; in find_lock_lowest_rq()
1916 if (double_lock_balance(rq, lowest_rq)) { in find_lock_lowest_rq()
1924 !cpumask_test_cpu(lowest_rq->cpu, task->cpus_ptr) || in find_lock_lowest_rq()
1929 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1930 lowest_rq = NULL; in find_lock_lowest_rq()
1936 if (lowest_rq->rt.highest_prio.curr > task->prio) in find_lock_lowest_rq()
1940 double_unlock_balance(rq, lowest_rq); in find_lock_lowest_rq()
1941 lowest_rq = NULL; in find_lock_lowest_rq()
1944 return lowest_rq; in find_lock_lowest_rq()
1975 struct rq *lowest_rq; in push_rt_task() local
2003 lowest_rq = find_lock_lowest_rq(next_task, rq); in push_rt_task()
2004 if (!lowest_rq) { in push_rt_task()
2038 set_task_cpu(next_task, lowest_rq->cpu); in push_rt_task()
2039 activate_task(lowest_rq, next_task, 0); in push_rt_task()
2042 resched_curr(lowest_rq); in push_rt_task()
2044 double_unlock_balance(rq, lowest_rq); in push_rt_task()