mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
powerpc/numa: remove unreachable topology workqueue code
Since vphn_enabled is always 0, we can remove the call to topology_schedule_update() and remove the code which becomes unreachable as a result. Signed-off-by: Nathan Lynch <nathanl@linux.ibm.com> Reviewed-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20200612051238.1007764-8-nathanl@linux.ibm.com
This commit is contained in:
parent
50e0cf3742
commit
6325cb4a4e
@ -1414,17 +1414,6 @@ int arch_update_cpu_topology(void)
|
|||||||
return numa_update_cpu_topology(true);
|
return numa_update_cpu_topology(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void topology_work_fn(struct work_struct *work)
|
|
||||||
{
|
|
||||||
rebuild_sched_domains();
|
|
||||||
}
|
|
||||||
static DECLARE_WORK(topology_work, topology_work_fn);
|
|
||||||
|
|
||||||
static void topology_schedule_update(void)
|
|
||||||
{
|
|
||||||
schedule_work(&topology_work);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Start polling for associativity changes.
|
* Start polling for associativity changes.
|
||||||
*/
|
*/
|
||||||
@ -1450,9 +1439,6 @@ static int topology_update_init(void)
|
|||||||
{
|
{
|
||||||
start_topology_update();
|
start_topology_update();
|
||||||
|
|
||||||
if (vphn_enabled)
|
|
||||||
topology_schedule_update();
|
|
||||||
|
|
||||||
topology_inited = 1;
|
topology_inited = 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user