The patch titled Subject: mm/memblock: remove rgnbase and rgnsize variables has been removed from the -mm tree. Its filename was mm-memblock-remove-rgnbase-and-rgnsize-variables.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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-page_alloc-remove-unused-struct-zone-z-variable.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