]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
timers/migration: Remove unused "cpu" parameter from tmigr_get_group()
authorFrederic Weisbecker <frederic@kernel.org>
Fri, 24 Oct 2025 13:25:35 +0000 (15:25 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sat, 1 Nov 2025 19:38:25 +0000 (20:38 +0100)
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
kernel/time/timer_migration.c

index bddd816faaebd408fde1e3404c15124c8c53be0c..73d9b064811657dfeb3299e3d5c0cc8b23430986 100644 (file)
@@ -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--;