[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250730131158.101668-2-gmonaco@redhat.com>
Date: Wed, 30 Jul 2025 15:11:51 +0200
From: Gabriele Monaco <gmonaco@...hat.com>
To: linux-kernel@...r.kernel.org,
Anna-Maria Behnsen <anna-maria@...utronix.de>,
Frederic Weisbecker <frederic@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>,
Waiman Long <longman@...hat.com>
Cc: Gabriele Monaco <gmonaco@...hat.com>
Subject: [PATCH v9 1/8] timers/migration: Postpone online/offline callbacks registration to late initcall
From: Frederic Weisbecker <frederic@...nel.org>
During the early boot process, the default clocksource used for
timekeeping is the jiffies. Better clocksources can only be selected
once clocksource_done_booting() is called as an fs initcall.
NOHZ can only be enabled after that stage, making global timer migration
irrelevant up to that point.
Therefore, don't bother with trashing the cache within that tree from
the SMP bootup until NOHZ even matters.
Make the CPUs available to the tree on late initcall, after the right
clocksource had a chance to be selected. This will also simplify the
handling of domain isolated CPUs on further patches.
Signed-off-by: Frederic Weisbecker <frederic@...nel.org>
Signed-off-by: Gabriele Monaco <gmonaco@...hat.com>
---
kernel/time/timer_migration.c | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/kernel/time/timer_migration.c b/kernel/time/timer_migration.c
index 2f6330831f08..72987f0d101b 100644
--- a/kernel/time/timer_migration.c
+++ b/kernel/time/timer_migration.c
@@ -1484,6 +1484,16 @@ static int tmigr_cpu_online(unsigned int cpu)
return 0;
}
+/*
+ * NOHZ can only be enabled after clocksource_done_booting(). Don't
+ * bother trashing the cache in the tree before.
+ */
+static int __init tmigr_late_init(void)
+{
+ return cpuhp_setup_state(CPUHP_AP_TMIGR_ONLINE, "tmigr:online",
+ tmigr_cpu_online, tmigr_cpu_offline);
+}
+
static void tmigr_init_group(struct tmigr_group *group, unsigned int lvl,
int node)
{
@@ -1846,18 +1856,10 @@ static int __init tmigr_init(void)
ret = cpuhp_setup_state(CPUHP_TMIGR_PREPARE, "tmigr:prepare",
tmigr_cpu_prepare, NULL);
- if (ret)
- goto err;
-
- ret = cpuhp_setup_state(CPUHP_AP_TMIGR_ONLINE, "tmigr:online",
- tmigr_cpu_online, tmigr_cpu_offline);
- if (ret)
- goto err;
-
- return 0;
-
err:
- pr_err("Timer migration setup failed\n");
+ if (ret)
+ pr_err("Timer migration setup failed\n");
return ret;
}
early_initcall(tmigr_init);
+late_initcall(tmigr_late_init);
--
2.50.1
Powered by blists - more mailing lists