aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/pseries/hotplug-memory.c
diff options
context:
space:
mode:
authorPingfan Liu <kernelfans@gmail.com>2020-01-10 12:54:02 +0800
committerMichael Ellerman <mpe@ellerman.id.au>2020-01-14 11:41:56 +1000
commitfbee6ba2dca30d302efe6bddb3a886f5e964a257 (patch)
tree4b29955501b913b177f5c7bc4ff3aeb9b7713b22 /arch/powerpc/platforms/pseries/hotplug-memory.c
parentpowerpc/xmon: don't access ASDR in VMs (diff)
downloadlinux-dev-fbee6ba2dca30d302efe6bddb3a886f5e964a257.tar.xz
linux-dev-fbee6ba2dca30d302efe6bddb3a886f5e964a257.zip
powerpc/pseries: Advance pfn if section is not present in lmb_is_removable()
In lmb_is_removable(), if a section is not present, it should continue to test the rest of the sections in the block. But the current code fails to do so. Fixes: 51925fb3c5c9 ("powerpc/pseries: Implement memory hotplug remove in the kernel") Cc: stable@vger.kernel.org # v4.1+ Signed-off-by: Pingfan Liu <kernelfans@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/1578632042-12415-1-git-send-email-kernelfans@gmail.com
Diffstat (limited to '')
-rw-r--r--arch/powerpc/platforms/pseries/hotplug-memory.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/hotplug-memory.c b/arch/powerpc/platforms/pseries/hotplug-memory.c
index c126b94d1943..a4d40a3ceea3 100644
--- a/arch/powerpc/platforms/pseries/hotplug-memory.c
+++ b/arch/powerpc/platforms/pseries/hotplug-memory.c
@@ -360,8 +360,10 @@ static bool lmb_is_removable(struct drmem_lmb *lmb)
for (i = 0; i < scns_per_block; i++) {
pfn = PFN_DOWN(phys_addr);
- if (!pfn_present(pfn))
+ if (!pfn_present(pfn)) {
+ phys_addr += MIN_MEMORY_BLOCK_SIZE;
continue;
+ }
rc = rc && is_mem_section_removable(pfn, PAGES_PER_SECTION);
phys_addr += MIN_MEMORY_BLOCK_SIZE;