The patch titled Subject: memblock: fix parameter order in memblock_phys_alloc_try_nid() has been removed from the -mm tree. Its filename was memblock-refactor-internal-allocation-functions-fix.patch This patch was dropped because it was folded into memblock-refactor-internal-allocation-functions.patch ------------------------------------------------------ From: Mike Rapoport <rppt@xxxxxxxxxxxxx> Subject: memblock: fix parameter order in memblock_phys_alloc_try_nid() The refactoring of internal memblock allocation functions used wrong order of parameters in memblock_alloc_range_nid() call from memblock_phys_alloc_try_nid(). Fix it. Link: http://lkml.kernel.org/r/20190203113915.GC8620@rapoport-lnx Signed-off-by: Mike Rapoport <rppt@xxxxxxxxxxxxx> Reported-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Tested-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/memblock.c~memblock-refactor-internal-allocation-functions-fix +++ a/mm/memblock.c @@ -1409,8 +1409,8 @@ phys_addr_t __init memblock_phys_alloc_r phys_addr_t __init memblock_phys_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid) { - return memblock_alloc_range_nid(size, align, 0, nid, - MEMBLOCK_ALLOC_ACCESSIBLE); + return memblock_alloc_range_nid(size, align, 0, + MEMBLOCK_ALLOC_ACCESSIBLE, nid); } /** _ Patches currently in -mm which might be from rppt@xxxxxxxxxxxxx are openrisc-prefer-memblock-apis-returning-virtual-address.patch memblock-replace-memblock_alloc_baseanywhere-with-memblock_phys_alloc.patch memblock-drop-memblock_alloc_base_nid.patch memblock-emphasize-that-memblock_alloc_range-returns-a-physical-address.patch memblock-memblock_phys_alloc_try_nid-dont-panic.patch memblock-memblock_phys_alloc-dont-panic.patch memblock-drop-__memblock_alloc_base.patch memblock-drop-memblock_alloc_base.patch memblock-refactor-internal-allocation-functions.patch memblock-make-memblock_find_in_range_node-and-choose_memblock_flags-static.patch arch-use-memblock_alloc-instead-of-memblock_alloc_fromsize-align-0.patch arch-dont-memset0-memory-returned-by-memblock_alloc.patch ia64-add-checks-for-the-return-value-of-memblock_alloc.patch sparc-add-checks-for-the-return-value-of-memblock_alloc.patch mm-percpu-add-checks-for-the-return-value-of-memblock_alloc.patch init-main-add-checks-for-the-return-value-of-memblock_alloc.patch swiotlb-add-checks-for-the-return-value-of-memblock_alloc.patch treewide-add-checks-for-the-return-value-of-memblock_alloc.patch treewide-add-checks-for-the-return-value-of-memblock_alloc-fix-2.patch treewide-add-checks-for-the-return-value-of-memblock_alloc-fix-3.patch memblock-memblock_alloc_try_nid-dont-panic.patch memblock-drop-memblock_alloc__nopanic-variants.patch memblock-remove-memblock_setclear_region_flags.patch memblock-split-checks-whether-a-region-should-be-skipped-to-a-helper-function.patch memblock-update-comments-and-kernel-doc.patch of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation.patch of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation-fix.patch