The patch titled Subject: mm/memblock.c: remove unnecessary memblock_type variable has been added to the -mm tree. Its filename is mm-memblock-remove-unnecessary-memblock_type-variable.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-memblock-remove-unnecessary-memblock_type-variable.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-memblock-remove-unnecessary-memblock_type-variable.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.c: remove unnecessary memblock_type variable We define struct memblock_type *type in the memblock_add_region() and memblock_reserve_region() functions only for passing it to the memlock_add_range() and memblock_reserve_range() functions. Let's remove these variables and will pass a type directly. Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff -puN mm/memblock.c~mm-memblock-remove-unnecessary-memblock_type-variable mm/memblock.c --- a/mm/memblock.c~mm-memblock-remove-unnecessary-memblock_type-variable +++ a/mm/memblock.c @@ -612,14 +612,12 @@ static int __init_memblock memblock_add_ int nid, unsigned long flags) { - struct memblock_type *type = &memblock.memory; - memblock_dbg("memblock_add: [%#016llx-%#016llx] flags %#02lx %pF\n", (unsigned long long)base, (unsigned long long)base + size - 1, flags, (void *)_RET_IP_); - return memblock_add_range(type, base, size, nid, flags); + return memblock_add_range(&memblock.memory, base, size, nid, flags); } int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size) @@ -740,14 +738,12 @@ static int __init_memblock memblock_rese int nid, unsigned long flags) { - struct memblock_type *type = &memblock.reserved; - memblock_dbg("memblock_reserve: [%#016llx-%#016llx] flags %#02lx %pF\n", (unsigned long long)base, (unsigned long long)base + size - 1, flags, (void *)_RET_IP_); - return memblock_add_range(type, base, size, nid, flags); + return memblock_add_range(&memblock.reserved, base, size, nid, flags); } int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size) _ Patches currently in -mm which might be from kuleshovmail@xxxxxxxxx are mm-memblock-remove-unnecessary-memblock_type-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