From: Frederic Weisbecker <frederic@kernel.org>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Frederic Weisbecker <frederic@kernel.org>,
Anna-Maria Behnsen <anna-maria@linutronix.de>,
Sehee Jeong <sehee1.jeong@samsung.com>,
Thomas Gleixner <tglx@linutronix.de>
Subject: [PATCH 3/6] timers/migration: Track CPUs in a hierarchy
Date: Thu, 23 Apr 2026 18:53:51 +0200 [thread overview]
Message-ID: <20260423165354.95152-4-frederic@kernel.org> (raw)
In-Reply-To: <20260423165354.95152-1-frederic@kernel.org>
When a new root is created, the old root is connected to it and
propagates up its own assumed to be active state, since the hotplug
control CPU is itself active and part of the old root.
However with per-capacity hierarchies, this assumption won't be true
anymore because the hotplug control CPU calling the timer migration
prepare callback may not belong to the same hierarchy as the booting
CPU.
To solve this, track the available CPUs per hierarchies so that the
root connection can be offlined to safe CPUs.
Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
---
kernel/time/timer_migration.c | 25 +++++++++++++++++++------
kernel/time/timer_migration.h | 2 ++
2 files changed, 21 insertions(+), 6 deletions(-)
diff --git a/kernel/time/timer_migration.c b/kernel/time/timer_migration.c
index 52e97b880b1c..d0de9f64528e 100644
--- a/kernel/time/timer_migration.c
+++ b/kernel/time/timer_migration.c
@@ -1921,18 +1921,25 @@ static struct tmigr_hierarchy *tmigr_get_hierarchy(void)
if (!hierarchy)
return ERR_PTR(-ENOMEM);
+ hierarchy->cpumask = kzalloc(cpumask_size(), GFP_KERNEL);
+ if (!hierarchy->cpumask)
+ goto err;
+
hierarchy->level_list = kzalloc_objs(struct list_head,
tmigr_hierarchy_levels);
- if (!hierarchy->level_list) {
- kfree(hierarchy);
- hierarchy = NULL;
- return ERR_PTR(-ENOMEM);
- }
+ if (!hierarchy->level_list)
+ goto err;
for (int i = 0; i < tmigr_hierarchy_levels; i++)
INIT_LIST_HEAD(&hierarchy->level_list[i]);
return hierarchy;
+err:
+ kfree(hierarchy->cpumask);
+ kfree(hierarchy);
+ hierarchy = NULL;
+
+ return ERR_PTR(-ENOMEM);
}
static int tmigr_add_cpu(unsigned int cpu)
@@ -1952,8 +1959,11 @@ static int tmigr_add_cpu(unsigned int cpu)
ret = tmigr_setup_groups(hier, cpu, node, NULL, false);
+ if (ret < 0)
+ return ret;
+
/* Root has changed? Connect the old one to the new */
- if (ret >= 0 && old_root && old_root != hier->root) {
+ if (old_root && old_root != hier->root) {
/*
* The target CPU must never do the prepare work, except
* on early boot when the boot CPU is the target. Otherwise
@@ -1970,6 +1980,9 @@ static int tmigr_add_cpu(unsigned int cpu)
ret = tmigr_setup_groups(hier, -1, old_root->numa_node, old_root, true);
}
+ if (ret >= 0)
+ cpumask_set_cpu(cpu, hier->cpumask);
+
return ret;
}
diff --git a/kernel/time/timer_migration.h b/kernel/time/timer_migration.h
index 77df422e5f9a..0cfbb8d799a6 100644
--- a/kernel/time/timer_migration.h
+++ b/kernel/time/timer_migration.h
@@ -8,10 +8,12 @@
/**
* struct tmigr_hierarchy - a hierarchy associated to a given CPU capacity.
* @level_list: Per level lists of tmigr groups
+ * @cpumask: CPUs belonging to this hierarchy
* @root: The current root of the hierarchy
*/
struct tmigr_hierarchy {
struct list_head *level_list;
+ struct cpumask *cpumask;
struct tmigr_group *root;
};
--
2.53.0
next prev parent reply other threads:[~2026-04-23 16:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-23 16:53 [PATCH 0/6] timers/migration: Handle heterogenous CPU capacities Frederic Weisbecker
2026-04-23 16:53 ` [PATCH 1/6] timers/migration: Fix another hotplug activation race Frederic Weisbecker
2026-04-23 16:53 ` [PATCH 2/6] timers/migration: Abstract out hierarchy to prepare for CPU capacity awareness Frederic Weisbecker
2026-04-23 16:53 ` Frederic Weisbecker [this message]
2026-04-23 16:53 ` [PATCH 4/6] timers/migration: Split per-capacity hierarchies Frederic Weisbecker
2026-04-23 16:53 ` [PATCH 5/6] timers/migration: Handle capacity in connect tracepoints Frederic Weisbecker
2026-04-23 16:53 ` [PATCH 6/6] scripts/timers: Add timer_migration_tree.py Frederic Weisbecker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260423165354.95152-4-frederic@kernel.org \
--to=frederic@kernel.org \
--cc=anna-maria@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=sehee1.jeong@samsung.com \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox