The patch titled Subject: mm/memblock: remove rgnbase and rgnsize variables has been added to the -mm tree. Its filename is mm-memblock-remove-rgnbase-and-rgnsize-variables.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-memblock-remove-rgnbase-and-rgnsize-variables.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-memblock-remove-rgnbase-and-rgnsize-variables.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> Subject: mm/memblock: remove rgnbase and rgnsize variables Remove rgnbase and rgnsize variables from memblock_overlaps_region(). We use these variables only for passing to the memblock_addrs_overlap() function and that's all. Let's remove them. Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff -puN mm/memblock.c~mm-memblock-remove-rgnbase-and-rgnsize-variables mm/memblock.c --- a/mm/memblock.c~mm-memblock-remove-rgnbase-and-rgnsize-variables +++ a/mm/memblock.c @@ -96,13 +96,10 @@ bool __init_memblock memblock_overlaps_r { unsigned long i; - for (i = 0; i < type->cnt; i++) { - phys_addr_t rgnbase = type->regions[i].base; - phys_addr_t rgnsize = type->regions[i].size; - if (memblock_addrs_overlap(base, size, rgnbase, rgnsize)) + for (i = 0; i < type->cnt; i++) + if (memblock_addrs_overlap(base, size, type->regions[i].base, + type->regions[i].size)) break; - } - return i < type->cnt; } _ Patches currently in -mm which might be from kuleshovmail@xxxxxxxxx are mm-memblock-remove-rgnbase-and-rgnsize-variables.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html