mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 20:14:06 +02:00
timers/migration: Remove unused "cpu" parameter from tmigr_get_group()
Signed-off-by: Frederic Weisbecker <frederic@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://patch.msgid.link/20251024132536.39841-6-frederic@kernel.org
This commit is contained in:
parent
3c8eb36e2a
commit
93643b90d6
|
|
@ -1511,8 +1511,7 @@ static void tmigr_init_group(struct tmigr_group *group, unsigned int lvl,
|
|||
group->groupevt.ignore = true;
|
||||
}
|
||||
|
||||
static struct tmigr_group *tmigr_get_group(unsigned int cpu, int node,
|
||||
unsigned int lvl)
|
||||
static struct tmigr_group *tmigr_get_group(int node, unsigned int lvl)
|
||||
{
|
||||
struct tmigr_group *tmp, *group = NULL;
|
||||
|
||||
|
|
@ -1636,7 +1635,7 @@ static int tmigr_setup_groups(unsigned int cpu, unsigned int node,
|
|||
root_mismatch = tmigr_root->numa_node != node;
|
||||
|
||||
for (i = start_lvl; i < tmigr_hierarchy_levels; i++) {
|
||||
group = tmigr_get_group(cpu, node, i);
|
||||
group = tmigr_get_group(node, i);
|
||||
if (IS_ERR(group)) {
|
||||
err = PTR_ERR(group);
|
||||
i--;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user