From: Frederic Weisbecker Date: Fri, 24 Oct 2025 13:25:35 +0000 (+0200) Subject: timers/migration: Remove unused "cpu" parameter from tmigr_get_group() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93643b90d6c141cb90dca7c24eabee800f51f908;p=thirdparty%2Flinux.git timers/migration: Remove unused "cpu" parameter from tmigr_get_group() Signed-off-by: Frederic Weisbecker Signed-off-by: Thomas Gleixner Link: https://patch.msgid.link/20251024132536.39841-6-frederic@kernel.org --- diff --git a/kernel/time/timer_migration.c b/kernel/time/timer_migration.c index bddd816faaebd..73d9b06481165 100644 --- a/kernel/time/timer_migration.c +++ b/kernel/time/timer_migration.c @@ -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--;