* [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users
@ 2026-09-26 9:24 Tarun Sahu
2026-09-26 9:24 ` [PATCH v3 2/2] memblock: use binary search to locate candidate regions Tarun Sahu
2026-09-26 9:29 ` [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users sashiko-bot
0 siblings, 2 replies; 4+ messages in thread
From: Tarun Sahu @ 2026-09-26 9:24 UTC (permalink / raw)
To: Andrew Morton, Pasha Tatashin, dmatlack, Mike Rapoport, kexec
Cc: linux-kernel, dev.jain, Pratyush Yadav, linux-mm, Tarun Sahu
for_each_memblock_type() always starts the iteration at index 0 and its
body is a trivial 'for' loop, so it hides very little. It also gets in
the way of iterating from an arbitrary index, which the next patch
needs.
Remove the macro and open code its three users: memblock_add_range(),
memblock_isolate_range() and memblock_dump(). While at it, move the
region pointer into the loop body scope.
No functional change.
Reviewed-by: Pratyush Yadav <pratyush@kernel.org>
Signed-off-by: Tarun Sahu <tarunsahu@google.com>
---
v2 -> v3:
- Move declaration of 'rgn' into loop body scope in memblock_add_range(),
memblock_isolate_range(), and memblock_dump()
- Add Reviewed-by: Pratyush Yadav <pratyush@kernel.org>.
mm/memblock.c | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)
diff --git a/mm/memblock.c b/mm/memblock.c
index f5aaa38cfa31..59dda7d085f3 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -155,11 +155,6 @@ struct memblock_type physmem = {
*/
static __refdata struct memblock_type *memblock_memory = &memblock.memory;
-#define for_each_memblock_type(i, memblock_type, rgn) \
- for (i = 0, rgn = &memblock_type->regions[0]; \
- i < memblock_type->cnt; \
- i++, rgn = &memblock_type->regions[i])
-
#define memblock_dbg(fmt, ...) \
do { \
if (memblock_debug) \
@@ -615,7 +610,6 @@ static int __init_memblock memblock_add_range(struct memblock_type *type,
phys_addr_t obase = base;
phys_addr_t end = base + memblock_cap_size(base, &size);
int idx, nr_new, start_rgn = -1, end_rgn;
- struct memblock_region *rgn;
if (!size)
return 0;
@@ -651,7 +645,8 @@ static int __init_memblock memblock_add_range(struct memblock_type *type,
base = obase;
nr_new = 0;
- for_each_memblock_type(idx, type, rgn) {
+ for (idx = 0; idx < type->cnt; idx++) {
+ struct memblock_region *rgn = &type->regions[idx];
phys_addr_t rbase = rgn->base;
phys_addr_t rend = rbase + rgn->size;
@@ -815,7 +810,6 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type,
{
phys_addr_t end = base + memblock_cap_size(base, &size);
int idx;
- struct memblock_region *rgn;
*start_rgn = *end_rgn = 0;
@@ -827,7 +821,8 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type,
if (memblock_double_array(type, base, size) < 0)
return -ENOMEM;
- for_each_memblock_type(idx, type, rgn) {
+ for (idx = 0; idx < type->cnt; idx++) {
+ struct memblock_region *rgn = &type->regions[idx];
phys_addr_t rbase = rgn->base;
phys_addr_t rend = rbase + rgn->size;
@@ -2194,11 +2189,11 @@ static void __init_memblock memblock_dump(struct memblock_type *type)
phys_addr_t base, end, size;
enum memblock_flags flags;
int idx;
- struct memblock_region *rgn;
pr_info(" %s.cnt = 0x%lx\n", type->name, type->cnt);
- for_each_memblock_type(idx, type, rgn) {
+ for (idx = 0; idx < type->cnt; idx++) {
+ struct memblock_region *rgn = &type->regions[idx];
char nid_buf[32] = "";
base = rgn->base;
base-commit: 1f18d740165163910df64d3063e1ad31648bc5e0
--
2.56.0.rc1.315.gc6ed9934b7-goog
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3 2/2] memblock: use binary search to locate candidate regions
2026-09-26 9:24 [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users Tarun Sahu
@ 2026-09-26 9:24 ` Tarun Sahu
2026-09-26 9:31 ` sashiko-bot
2026-09-26 9:29 ` [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users sashiko-bot
1 sibling, 1 reply; 4+ messages in thread
From: Tarun Sahu @ 2026-09-26 9:24 UTC (permalink / raw)
To: Andrew Morton, Pasha Tatashin, dmatlack, Mike Rapoport, kexec
Cc: linux-kernel, dev.jain, Pratyush Yadav, linux-mm, Tarun Sahu
Use binary search (memblock_bsearch_start) in memblock_add_range() and
memblock_isolate_range() to locate candidate regions instead of linearly
scanning from index 0.
Under heavy memory fragmentation (such as KHO page preservation registering
hundreds of thousands of disjoint folios), scanning from index 0 on every
insertion and isolation results in O(N^2) complexity, causing boot-time
memory retrieval to take several minutes (~268s for 393k pages).
Using binary search reduces the worst-case complexity to O(N log N)
(and O(N) for sequential appends), cutting KHO memory retrieval time
from ~268s to ~50ms.
memblock_search() open codes the same binary search, so reimplement it on
top of the new helper.
Signed-off-by: Tarun Sahu <tarunsahu@google.com>
mm/memblock.c | 53 +++++++++++++++++++++++++++++++++++----------------
1 file changed, 37 insertions(+), 16 deletions(-)
diff --git a/mm/memblock.c b/mm/memblock.c
index 59dda7d085f3..87c71435c80c 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -586,6 +586,33 @@ static void __init_memblock memblock_insert_region(struct memblock_type *type,
type->total_size += size;
}
+/**
+ * memblock_bsearch_start - Find the first region index where rend > base
+ * @type: memblock type to search
+ * @base: base physical address of the candidate range
+ *
+ * Returns the first region index that could potentially overlap @base.
+ */
+static int __init_memblock memblock_bsearch_start(struct memblock_type *type,
+ phys_addr_t base)
+{
+ int mid, low = 0;
+ int high = type->cnt;
+
+ if (type->cnt && base >= type->regions[type->cnt - 1].base +
+ type->regions[type->cnt - 1].size)
+ return type->cnt;
+
+ while (low < high) {
+ mid = (low + high) / 2;
+ if (type->regions[mid].base + type->regions[mid].size <= base)
+ low = mid + 1;
+ else
+ high = mid;
+ }
+ return low;
+}
+
/**
* memblock_add_range - add new memblock region
* @type: memblock type to add new region into
@@ -609,7 +636,7 @@ static int __init_memblock memblock_add_range(struct memblock_type *type,
bool insert = false;
phys_addr_t obase = base;
phys_addr_t end = base + memblock_cap_size(base, &size);
- int idx, nr_new, start_rgn = -1, end_rgn;
+ int idx, start_idx, nr_new, start_rgn = -1, end_rgn;
if (!size)
return 0;
@@ -644,8 +671,9 @@ static int __init_memblock memblock_add_range(struct memblock_type *type,
*/
base = obase;
nr_new = 0;
+ start_idx = memblock_bsearch_start(type, base);
- for (idx = 0; idx < type->cnt; idx++) {
+ for (idx = start_idx; idx < type->cnt; idx++) {
struct memblock_region *rgn = &type->regions[idx];
phys_addr_t rbase = rgn->base;
phys_addr_t rend = rbase + rgn->size;
@@ -809,7 +837,7 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type,
int *start_rgn, int *end_rgn)
{
phys_addr_t end = base + memblock_cap_size(base, &size);
- int idx;
+ int idx, start_idx;
*start_rgn = *end_rgn = 0;
@@ -821,7 +849,9 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type,
if (memblock_double_array(type, base, size) < 0)
return -ENOMEM;
- for (idx = 0; idx < type->cnt; idx++) {
+ start_idx = memblock_bsearch_start(type, base);
+
+ for (idx = start_idx; idx < type->cnt; idx++) {
struct memblock_region *rgn = &type->regions[idx];
phys_addr_t rbase = rgn->base;
phys_addr_t rend = rbase + rgn->size;
@@ -2062,19 +2092,10 @@ void __init memblock_mem_limit_remove_map(phys_addr_t limit)
static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
{
- unsigned int left = 0, right = type->cnt;
+ int idx = memblock_bsearch_start(type, addr);
- do {
- unsigned int mid = (right + left) / 2;
-
- if (addr < type->regions[mid].base)
- right = mid;
- else if (addr >= (type->regions[mid].base +
- type->regions[mid].size))
- left = mid + 1;
- else
- return mid;
- } while (left < right);
+ if (idx < type->cnt && addr >= type->regions[idx].base)
+ return idx;
return -1;
}
base-commit: 1f18d740165163910df64d3063e1ad31648bc5e0
--
2.56.0.rc1.315.gc6ed9934b7-goog
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users
2026-09-26 9:24 [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users Tarun Sahu
2026-09-26 9:24 ` [PATCH v3 2/2] memblock: use binary search to locate candidate regions Tarun Sahu
@ 2026-09-26 9:29 ` sashiko-bot
1 sibling, 0 replies; 4+ messages in thread
From: sashiko-bot @ 2026-09-26 9:29 UTC (permalink / raw)
To: Tarun Sahu, Andrew Morton, dmatlack, Mike Rapoport, Pasha Tatashin
Cc: kexec, dev.jain, Pratyush Yadav, linux-mm, linux-kernel
> for_each_memblock_type() always starts the iteration at index 0 and its
> body is a trivial 'for' loop, so it hides very little. It also gets in
> the way of iterating from an arbitrary index, which the next patch
> needs.
>
> Remove the macro and open code its three users: memblock_add_range(),
> memblock_isolate_range() and memblock_dump(). While at it, move the
> region pointer into the loop body scope.
>
> No functional change.
>
> Reviewed-by: Pratyush Yadav <pratyush@kernel.org>
> Signed-off-by: Tarun Sahu <tarunsahu@google.com>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260926092448.4090401-1-tarunsahu@google.com?part=1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3 2/2] memblock: use binary search to locate candidate regions
2026-09-26 9:24 ` [PATCH v3 2/2] memblock: use binary search to locate candidate regions Tarun Sahu
@ 2026-09-26 9:31 ` sashiko-bot
0 siblings, 0 replies; 4+ messages in thread
From: sashiko-bot @ 2026-09-26 9:31 UTC (permalink / raw)
To: Tarun Sahu, dmatlack, Pasha Tatashin, Andrew Morton, Mike Rapoport
Cc: kexec, linux-mm, Pratyush Yadav, linux-kernel, dev.jain
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] mm: commit message falsely claims O(N log N) worst-case complexity
--
commit ffd047af563941b5aabcd86a52d569f9b40c01ec
Author: Tarun Sahu <tarunsahu@google.com>
memblock: use binary search to locate candidate regions
This commit introduces a binary search helper, memblock_bsearch_start(),
to optimize finding candidate regions in memblock_add_range() and
memblock_isolate_range(), aiming to reduce boot-time overhead during heavy
memory fragmentation.
> Under heavy memory fragmentation (such as KHO page preservation registering
> hundreds of thousands of disjoint folios), scanning from index 0 on every
> insertion and isolation results in O(N^2) complexity, causing boot-time
> memory retrieval to take several minutes (~268s for 393k pages).
>
> Using binary search reduces the worst-case complexity to O(N log N)
> (and O(N) for sequential appends), cutting KHO memory retrieval time
> from ~268s to ~50ms.
[Severity: Medium]
Is the claim of O(N log N) worst-case complexity mathematically accurate here?
While the binary search reduces the time to locate the insertion index to
O(log N), the regions are still stored in a contiguous array. If disjoint
memory regions are inserted in an order that requires inserting into the
middle of the array, the subsequent elements still need to be shifted.
Looking at memblock_insert_region() which is called during insertion:
static void __init_memblock memblock_insert_region(...)
{
...
memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
...
}
Because this memory move operation guarantees the worst-case complexity of a
single insertion remains O(N), wouldn't inserting N disjoint regions in
descending or scattered order still result in an O(N^2) worst-case time
complexity overall?
The described KHO workload sequentially appends regions, which avoids the
shifting overhead and achieves O(N) overall. Could the commit message be
updated to clarify that this patch improves sequential insertion to O(N),
but the worst-case for fragmented insertions remains O(N^2) due to the array
shifting?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260926092448.4090401-1-tarunsahu@google.com?part=2
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-09-26 9:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-26 9:24 [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users Tarun Sahu
2026-09-26 9:24 ` [PATCH v3 2/2] memblock: use binary search to locate candidate regions Tarun Sahu
2026-09-26 9:31 ` sashiko-bot
2026-09-26 9:29 ` [PATCH v3 1/2] memblock: drop for_each_memblock_type() and open code its users sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®