sched: Rename task_running() to task_on_cpu()
authorPeter Zijlstra <peterz@infradead.org>
Tue, 6 Sep 2022 10:33:04 +0000 (12:33 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Wed, 7 Sep 2022 19:53:47 +0000 (21:53 +0200)
There is some ambiguity about task_running() in that it is unrelated
to TASK_RUNNING but instead tests ->on_cpu. As such, rename the thing
task_on_cpu().

Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/Yxhkhn55uHZx+NGl@hirez.programming.kicks-ass.net
kernel/sched/core.c
kernel/sched/core_sched.c
kernel/sched/deadline.c
kernel/sched/fair.c
kernel/sched/rt.c
kernel/sched/sched.h

index 7d289d87acf7dfb7901a2f85a08674b2b20d08e1..163018105bf8d47cc63e1932700877fae0d45837 100644 (file)
@@ -2777,7 +2777,7 @@ static int affine_move_task(struct rq *rq, struct task_struct *p, struct rq_flag
                return -EINVAL;
        }
 
-       if (task_running(rq, p) || READ_ONCE(p->__state) == TASK_WAKING) {
+       if (task_on_cpu(rq, p) || READ_ONCE(p->__state) == TASK_WAKING) {
                /*
                 * MIGRATE_ENABLE gets here because 'p == current', but for
                 * anything else we cannot do is_migration_disabled(), punt
@@ -3289,11 +3289,11 @@ unsigned long wait_task_inactive(struct task_struct *p, unsigned int match_state
                 *
                 * NOTE! Since we don't hold any locks, it's not
                 * even sure that "rq" stays as the right runqueue!
-                * But we don't care, since "task_running()" will
+                * But we don't care, since "task_on_cpu()" will
                 * return false if the runqueue has changed and p
                 * is actually now running somewhere else!
                 */
-               while (task_running(rq, p)) {
+               while (task_on_cpu(rq, p)) {
                        if (match_state && unlikely(READ_ONCE(p->__state) != match_state))
                                return 0;
                        cpu_relax();
@@ -3306,7 +3306,7 @@ unsigned long wait_task_inactive(struct task_struct *p, unsigned int match_state
                 */
                rq = task_rq_lock(p, &rf);
                trace_sched_wait_task(p);
-               running = task_running(rq, p);
+               running = task_on_cpu(rq, p);
                queued = task_on_rq_queued(p);
                ncsw = 0;
                if (!match_state || READ_ONCE(p->__state) == match_state)
@@ -8648,7 +8648,7 @@ again:
        if (curr->sched_class != p->sched_class)
                goto out_unlock;
 
-       if (task_running(p_rq, p) || !task_is_running(p))
+       if (task_on_cpu(p_rq, p) || !task_is_running(p))
                goto out_unlock;
 
        yielded = curr->sched_class->yield_to_task(rq, p);
index 1ec807fbde5611ed5260841026278a07ce61e4ba..a57fd8f27498f60eefc9b617a57712e1eaae9c4c 100644 (file)
@@ -88,7 +88,7 @@ static unsigned long sched_core_update_cookie(struct task_struct *p,
         * core has now entered/left forced idle state. Defer accounting to the
         * next scheduling edge, rather than always forcing a reschedule here.
         */
-       if (task_running(rq, p))
+       if (task_on_cpu(rq, p))
                resched_curr(rq);
 
        task_rq_unlock(rq, p, &rf);
index d0fe6a20a9c9d0fb1e19ac4ea8de8be32f41704a..86dea6a05267d408e2f46ab189989b6a26c8bafb 100644 (file)
@@ -2092,7 +2092,7 @@ static void task_fork_dl(struct task_struct *p)
 
 static int pick_dl_task(struct rq *rq, struct task_struct *p, int cpu)
 {
-       if (!task_running(rq, p) &&
+       if (!task_on_cpu(rq, p) &&
            cpumask_test_cpu(cpu, &p->cpus_mask))
                return 1;
        return 0;
@@ -2244,7 +2244,7 @@ static struct rq *find_lock_later_rq(struct task_struct *task, struct rq *rq)
                if (double_lock_balance(rq, later_rq)) {
                        if (unlikely(task_rq(task) != rq ||
                                     !cpumask_test_cpu(later_rq->cpu, &task->cpus_mask) ||
-                                    task_running(rq, task) ||
+                                    task_on_cpu(rq, task) ||
                                     !dl_task(task) ||
                                     !task_on_rq_queued(task))) {
                                double_unlock_balance(rq, later_rq);
@@ -2474,7 +2474,7 @@ skip:
  */
 static void task_woken_dl(struct rq *rq, struct task_struct *p)
 {
-       if (!task_running(rq, p) &&
+       if (!task_on_cpu(rq, p) &&
            !test_tsk_need_resched(rq->curr) &&
            p->nr_cpus_allowed > 1 &&
            dl_task(rq->curr) &&
index 7bad641faef9e7985f62db2644bda7f599884c7e..4e5b171b11718cfd69500801cba6c8b56ebe4a9b 100644 (file)
@@ -7935,7 +7935,7 @@ int can_migrate_task(struct task_struct *p, struct lb_env *env)
        /* Record that we found at least one task that could run on dst_cpu */
        env->flags &= ~LBF_ALL_PINNED;
 
-       if (task_running(env->src_rq, p)) {
+       if (task_on_cpu(env->src_rq, p)) {
                schedstat_inc(p->stats.nr_failed_migrations_running);
                return 0;
        }
index 27e694cf3e373a49d737af16a50d0f95868c021b..d869bcf898ccb768eaec98f36fed5990fbd984e9 100644 (file)
@@ -1845,7 +1845,7 @@ static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
 
 static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
 {
-       if (!task_running(rq, p) &&
+       if (!task_on_cpu(rq, p) &&
            cpumask_test_cpu(cpu, &p->cpus_mask))
                return 1;
 
@@ -2000,7 +2000,7 @@ static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
                         */
                        if (unlikely(task_rq(task) != rq ||
                                     !cpumask_test_cpu(lowest_rq->cpu, &task->cpus_mask) ||
-                                    task_running(rq, task) ||
+                                    task_on_cpu(rq, task) ||
                                     !rt_task(task) ||
                                     !task_on_rq_queued(task))) {
 
@@ -2458,7 +2458,7 @@ skip:
  */
 static void task_woken_rt(struct rq *rq, struct task_struct *p)
 {
-       bool need_to_push = !task_running(rq, p) &&
+       bool need_to_push = !task_on_cpu(rq, p) &&
                            !test_tsk_need_resched(rq->curr) &&
                            p->nr_cpus_allowed > 1 &&
                            (dl_task(rq->curr) || rt_task(rq->curr)) &&
index b75ac74986fb4b9b290bbd82dd44a9d8bb944b7e..91b2c7ec53bdc5c8771eb3f35c4ee071050e72f5 100644 (file)
@@ -2051,7 +2051,7 @@ static inline int task_current(struct rq *rq, struct task_struct *p)
        return rq->curr == p;
 }
 
-static inline int task_running(struct rq *rq, struct task_struct *p)
+static inline int task_on_cpu(struct rq *rq, struct task_struct *p)
 {
 #ifdef CONFIG_SMP
        return p->on_cpu;