From c57a5e12895b6125ffeee25fcd32775f7ca65395 Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Wed, 25 Nov 2020 14:00:45 -0500 Subject: [PATCH] test_maple_tree: tweak bench_walk() Signed-off-by: Liam R. Howlett --- lib/test_maple_tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/test_maple_tree.c b/lib/test_maple_tree.c index 0e8e995ac048..a892b512c30f 100644 --- a/lib/test_maple_tree.c +++ b/lib/test_maple_tree.c @@ -35321,8 +35321,8 @@ static noinline void bench_node_store(struct maple_tree *mt) #if defined(BENCH_WALK) static noinline void bench_walk(struct maple_tree *mt) { - int i, max = 2500, count = 100000000; - MA_STATE(mas, mt, 22, 22); + int i, max = 2500, count = 250000000; + MA_STATE(mas, mt, 1470, 1470); for (i = 0; i < max; i += 10) mtree_store_range(mt, i, i + 5, xa_mk_value(i), GFP_KERNEL); -- 2.50.1