diff options
author | Nathan Lynch <nathanl@linux.ibm.com> | 2020-06-12 00:12:31 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-07-16 13:12:38 +1000 |
commit | 1835303e5690cbeef2c07a9a5416045475ddaa13 (patch) | |
tree | 4e0bcb4b3ca404e0ea51c6afc117ce0f1693e0e5 /arch/powerpc/platforms/pseries/mobility.c | |
parent | b1815aeac7fde2dc3412daf2efaededd21cd58e0 (diff) | |
download | lwn-1835303e5690cbeef2c07a9a5416045475ddaa13.tar.gz lwn-1835303e5690cbeef2c07a9a5416045475ddaa13.zip |
powerpc/numa: remove start/stop_topology_update()
These APIs have become no-ops, so remove them and all call sites.
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-12-nathanl@linux.ibm.com
Diffstat (limited to 'arch/powerpc/platforms/pseries/mobility.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/mobility.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c index 10d982997736..c0b09f6f0ae3 100644 --- a/arch/powerpc/platforms/pseries/mobility.c +++ b/arch/powerpc/platforms/pseries/mobility.c @@ -388,8 +388,6 @@ static ssize_t migration_store(struct class *class, if (rc) return rc; - stop_topology_update(); - do { rc = rtas_ibm_suspend_me(streamid); if (rc == -EAGAIN) @@ -401,8 +399,6 @@ static ssize_t migration_store(struct class *class, post_mobility_fixup(); - start_topology_update(); - return count; } |