All other nohz_full funcs named like xxx_nohz_full_xxx. So renaming wake_up_full_nohz_cpu to wake_up_nohz_full_cpu to unify funs.
Signed-off-by: Alex Shi <[email protected]> --- kernel/sched/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/sched/core.c b/kernel/sched/core.c index c180860..6c9f9b0 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -616,7 +616,7 @@ static void wake_up_idle_cpu(int cpu) smp_send_reschedule(cpu); } -static bool wake_up_full_nohz_cpu(int cpu) +static bool wake_up_nohz_full_cpu(int cpu) { if (tick_nohz_full_cpu(cpu)) { if (cpu != smp_processor_id() || @@ -630,7 +630,7 @@ static bool wake_up_full_nohz_cpu(int cpu) void wake_up_nohz_cpu(int cpu) { - if (!wake_up_full_nohz_cpu(cpu)) + if (!wake_up_nohz_full_cpu(cpu)) wake_up_idle_cpu(cpu); } -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

