Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Frederic Weisbecker and committed by
Thomas Gleixner
93643b90 3c8eb36e

+2 -3
+2 -3
kernel/time/timer_migration.c
··· 1511 1511 group->groupevt.ignore = true; 1512 1512 } 1513 1513 1514 - static struct tmigr_group *tmigr_get_group(unsigned int cpu, int node, 1515 - unsigned int lvl) 1514 + static struct tmigr_group *tmigr_get_group(int node, unsigned int lvl) 1516 1515 { 1517 1516 struct tmigr_group *tmp, *group = NULL; 1518 1517 ··· 1635 1636 root_mismatch = tmigr_root->numa_node != node; 1636 1637 1637 1638 for (i = start_lvl; i < tmigr_hierarchy_levels; i++) { 1638 - group = tmigr_get_group(cpu, node, i); 1639 + group = tmigr_get_group(node, i); 1639 1640 if (IS_ERR(group)) { 1640 1641 err = PTR_ERR(group); 1641 1642 i--;