The patch titled Subject: maple_tree: make mas_prealloc() error checking more generic has been added to the -mm mm-unstable branch. Its filename is maple-tree-add-new-data-structure-fix-9.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/maple-tree-add-new-data-structure-fix-9.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Liam Howlett <liam.howlett@xxxxxxxxxx> Subject: maple_tree: make mas_prealloc() error checking more generic Date: Wed, 15 Jun 2022 17:42:20 +0000 Return the error regardless of what it is. This is a safer option. Link: https://lkml.kernel.org/r/20220615174213.738849-1-Liam.Howlett@xxxxxxxxxx Signed-off-by: Liam R. Howlett <Liam.Howlett@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/maple_tree.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/lib/maple_tree.c~maple-tree-add-new-data-structure-fix-9 +++ a/lib/maple_tree.c @@ -5670,16 +5670,15 @@ void mas_store_prealloc(struct ma_state */ int mas_preallocate(struct ma_state *mas, void *entry, gfp_t gfp) { - mas_set_alloc_req(mas, 1 + mas_mt_height(mas) * 3); mas_alloc_nodes(mas, gfp); - if (likely(mas->node != MA_ERROR(-ENOMEM))) + if (likely(!mas_is_err(mas))) return 0; mas_set_alloc_req(mas, 0); mas_destroy(mas); mas->node = MAS_START; - return -ENOMEM; + return xa_err(mas->node); } /* _ Patches currently in -mm which might be from liam.howlett@xxxxxxxxxx are maple-tree-add-new-data-structure-fix.patch maple-tree-add-new-data-structure-fix-2.patch maple-tree-add-new-data-structure-fix-3.patch maple-tree-add-new-data-structure-fix-4.patch maple-tree-add-new-data-structure-fix-7.patch maple-tree-add-new-data-structure-fix-8.patch maple-tree-add-new-data-structure-fix-9.patch lib-test_maple_tree-add-testing-for-maple-tree-fix.patch lib-test_maple_tree-add-testing-for-maple-tree-fix-2.patch mm-start-tracking-vmas-with-maple-tree-fix-2.patch mm-start-tracking-vmas-with-maple-tree-fix-3.patch mm-mmap-use-advanced-maple-tree-api-for-mmap_region-fix-2.patch mm-mmap-change-do_brk_munmap-to-use-do_mas_align_munmap-fix.patch mm-remove-the-vma-linked-list-fix.patch mm-mlock-drop-dead-code-in-count_mm_mlocked_page_nr.patch