sched/isolation: Rename is_housekeeping_cpu() to housekeeping_cpu()
authorFrederic Weisbecker <frederic@kernel.org>
Fri, 27 Oct 2017 02:42:33 +0000 (04:42 +0200)
committerLukasz Luba <l.luba@partner.samsung.com>
Mon, 10 Sep 2018 08:19:00 +0000 (10:19 +0200)
Fit it into the housekeeping_*() namespace.

Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Luiz Capitulino <lcapitulino@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Wanpeng Li <kernellwp@gmail.com>
Link: http://lkml.kernel.org/r/1509072159-31808-7-git-send-email-frederic@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Lukasz Luba <l.luba@partner.samsung.com>
include/linux/sched/isolation.h
kernel/sched/core.c
kernel/sched/fair.c

index 194c586fbb120610e1438f6e6a2c526258e4dfb3..ad0f5d986a2e3d7610d5636aa4dedcaf5b1baede 100644 (file)
@@ -29,7 +29,7 @@ static inline void housekeeping_affine(struct task_struct *t) { }
 static inline void housekeeping_init(void) { }
 #endif /* CONFIG_NO_HZ_FULL */
 
-static inline bool is_housekeeping_cpu(int cpu)
+static inline bool housekeeping_cpu(int cpu)
 {
 #ifdef CONFIG_NO_HZ_FULL
        if (static_branch_unlikely(&housekeeping_overriden))
index ec2aea4048fcfdb8c996fbd166fc42da5554e627..3c34af009216c722a3dee724e5d43564d7f0e663 100644 (file)
@@ -526,7 +526,7 @@ int get_nohz_timer_target(void)
        int i, cpu = smp_processor_id();
        struct sched_domain *sd;
 
-       if (!idle_cpu(cpu) && is_housekeeping_cpu(cpu))
+       if (!idle_cpu(cpu) && housekeeping_cpu(cpu))
                return cpu;
 
        rcu_read_lock();
@@ -535,14 +535,14 @@ int get_nohz_timer_target(void)
                        if (cpu == i)
                                continue;
 
-                       if (!idle_cpu(i) && is_housekeeping_cpu(i)) {
+                       if (!idle_cpu(i) && housekeeping_cpu(i)) {
                                cpu = i;
                                goto unlock;
                        }
                }
        }
 
-       if (!is_housekeeping_cpu(cpu))
+       if (!housekeeping_cpu(cpu))
                cpu = housekeeping_any_cpu();
 unlock:
        rcu_read_unlock();
index ac55c8182fca0f996f42bd0ab745c4c2ccecb673..dddb0197faedfae9501b3ff1c56b5489593ceeee 100644 (file)
@@ -9028,7 +9028,7 @@ void nohz_balance_enter_idle(int cpu)
                return;
 
        /* Spare idle load balancing on CPUs that don't want to be disturbed: */
-       if (!is_housekeeping_cpu(cpu))
+       if (!housekeeping_cpu(cpu))
                return;
 
        if (test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))