summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLiam R. Howlett <Liam.Howlett@oracle.com>2023-07-12 13:39:16 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-07-27 08:50:24 +0200
commit4984a10a21c6a38521e2c90e28f70cfe7a9583ba (patch)
tree88b5ef809b868a8da37c70f68b1932715534ee79 /tools
parent85718972b0046eec54552dd00981628208414f4c (diff)
downloadlinux-stable-4984a10a21c6a38521e2c90e28f70cfe7a9583ba.tar.gz
linux-stable-4984a10a21c6a38521e2c90e28f70cfe7a9583ba.tar.bz2
linux-stable-4984a10a21c6a38521e2c90e28f70cfe7a9583ba.zip
maple_tree: fix node allocation testing on 32 bit
commit ef5c3de5211b5a3a8102b25aa83eb4cde65ac2fd upstream. Internal node counting was altered and the 64 bit test was updated, however the 32bit test was missed. Restore the 32bit test to a functional state. Link: https://lore.kernel.org/linux-mm/CAMuHMdV4T53fOw7VPoBgPR7fP6RYqf=CBhD_y_vOg53zZX_DnA@mail.gmail.com/ Link: https://lkml.kernel.org/r/20230712173916.168805-2-Liam.Howlett@oracle.com Fixes: 541e06b772c1 ("maple_tree: remove GFP_ZERO from kmem_cache_alloc() and kmem_cache_alloc_bulk()") Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/radix-tree/maple.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testing/radix-tree/maple.c b/tools/testing/radix-tree/maple.c
index 18e319e6ce33..d1ab5f23f4e4 100644
--- a/tools/testing/radix-tree/maple.c
+++ b/tools/testing/radix-tree/maple.c
@@ -181,9 +181,9 @@ static noinline void check_new_node(struct maple_tree *mt)
e = i - 1;
} else {
if (i >= 4)
- e = i - 4;
- else if (i == 3)
- e = i - 2;
+ e = i - 3;
+ else if (i >= 1)
+ e = i - 1;
else
e = 0;
}