]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/pseries: break early in dlpar_memory_add_by_count() loops
authorDaniel Henrique Barboza <danielhb413@gmail.com>
Tue, 22 Jun 2021 13:39:22 +0000 (10:39 -0300)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 24 Jun 2021 14:07:09 +0000 (00:07 +1000)
commitdfe21b11fb615b8e89b4a51b73a68c21f36527eb
tree3f405e6e28b72d69af83b2d36f7ae054479788e0
parenta527df3c5c488fa32fc753b5387897072a26ffdb
powerpc/pseries: break early in dlpar_memory_add_by_count() loops

After a successful dlpar_add_lmb() call the LMB is marked as reserved.
Later on, depending whether we added enough LMBs or not, we rely on
the marked LMBs to see which ones might need to be removed, and we
remove the reservation of all of them.

These are done in for_each_drmem_lmb() loops without any break
condition. This means that we're going to check all LMBs of the partition
even after going through all the reserved ones.

This patch adds break conditions in both loops to avoid this. The
'lmbs_added' variable was renamed to 'lmbs_reserved', and it's now
being decremented each time a lmb reservation is removed, indicating
if there are still marked LMBs to be processed.

Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210622133923.295373-3-danielhb413@gmail.com
arch/powerpc/platforms/pseries/hotplug-memory.c