The patch titled Subject: of: fix parameters order for call to memblock_find_in_range() has been added to the -mm tree. Its filename is of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation-fix.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mike Rapoport <rppt@xxxxxxxxxxxxx> Subject: of: fix parameters order for call to memblock_find_in_range() The fix for kmemleak crash in early_init_dt_alloc_reserved_memory_arch() put parameters for memblock_find_in_range() in a wrong order. Fix it. Link: http://lkml.kernel.org/r/20190221112619.GC32004@rapoport-lnx Signed-off-by: Mike Rapoport <rppt@xxxxxxxxxxxxx> Reported-by: Marek Szyprowski <m.szyprowski@xxxxxxxxxxx> Cc: Prateek Patel <prpatel@xxxxxxxxxx> Cc: Marc Gonzalez <marc.w.gonzalez@xxxxxxx> Cc: Rob Herring <robh+dt@xxxxxxxxxx> Cc: Frank Rowand <frowand.list@xxxxxxxxx> Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/drivers/of/of_reserved_mem.c~of-fix-kmemleak-crash-caused-by-imbalance-in-early-memory-reservation-fix +++ a/drivers/of/of_reserved_mem.c @@ -34,7 +34,7 @@ static int __init early_init_dt_alloc_re end = !end ? MEMBLOCK_ALLOC_ANYWHERE : end; align = !align ? SMP_CACHE_BYTES : align; - base = memblock_find_in_range(size, align, start, end); + base = memblock_find_in_range(start, end, size, align); if (!base) return -ENOMEM; _ Patches currently in -mm which might be from rppt@xxxxxxxxxxxxx are powerpc-prefer-memblock-apis-returning-virtual-address.patch microblaze-prefer-memblock-api-returning-virtual-address.patch sh-prefer-memblock-apis-returning-virtual-address.patch openrisc-simplify-pte_alloc_one_kernel.patch arch-simplify-several-early-memory-allocations.patch arm-s390-unicore32-remove-oneliner-wrappers-for-memblock_alloc.patch mm-page_alloc-check-return-value-of-memblock_alloc_node_nopanic.patch docs-mm-vmalloc-re-indent-kernel-doc-comemnts.patch docs-core-api-mm-fix-user-memory-accessors-formatting.patch docs-core-api-mm-fix-return-value-descriptions-in-mm.patch maintainers-add-entry-for-memblock.patch 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-refactor-internal-allocation-functions-fix.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