From: Liam R. Howlett Date: Wed, 25 Nov 2020 19:00:45 +0000 (-0500) Subject: test_maple_tree: tweak bench_walk() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c57a5e12895b6125ffeee25fcd32775f7ca65395;p=users%2Fjedix%2Flinux-maple.git test_maple_tree: tweak bench_walk() Signed-off-by: Liam R. Howlett --- 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);