maple_tree: skip other tests when BENCH is enabled
authorPeng Zhang <zhangpeng.00@bytedance.com>
Fri, 27 Oct 2023 03:38:42 +0000 (11:38 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 00:51:33 +0000 (16:51 -0800)
Skip other tests when BENCH is enabled so that performance can be measured
in user space.

Link: https://lkml.kernel.org/r/20231027033845.90608-8-zhangpeng.00@bytedance.com
Signed-off-by: Peng Zhang <zhangpeng.00@bytedance.com>
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Mateusz Guzik <mjguzik@gmail.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Mike Christie <michael.christie@oracle.com>
Cc: Nicholas Piggin <npiggin@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Suren Baghdasaryan <surenb@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/test_maple_tree.c
tools/testing/radix-tree/maple.c

index 464eeb90d5ad02392dd6fed2ac8a3b8ac5a75b91..de470950714fb2eeccecddf6314b9d323635f3ec 100644 (file)
@@ -3585,10 +3585,6 @@ static int __init maple_tree_seed(void)
 
        pr_info("\nTEST STARTING\n\n");
 
-       mt_init_flags(&tree, MT_FLAGS_ALLOC_RANGE);
-       check_root_expand(&tree);
-       mtree_destroy(&tree);
-
 #if defined(BENCH_SLOT_STORE)
 #define BENCH
        mt_init_flags(&tree, MT_FLAGS_ALLOC_RANGE);
@@ -3646,6 +3642,10 @@ static int __init maple_tree_seed(void)
        goto skip;
 #endif
 
+       mt_init_flags(&tree, MT_FLAGS_ALLOC_RANGE);
+       check_root_expand(&tree);
+       mtree_destroy(&tree);
+
        mt_init_flags(&tree, MT_FLAGS_ALLOC_RANGE);
        check_iteration(&tree);
        mtree_destroy(&tree);
index 12b3390e959114fae669b04086644cf94d1cdb46..cb53586745213a6cbe8a5fc4cd7d8574c8ee8e96 100644 (file)
@@ -36299,7 +36299,9 @@ void farmer_tests(void)
 
 void maple_tree_tests(void)
 {
+#if !defined(BENCH)
        farmer_tests();
+#endif
        maple_tree_seed();
        maple_tree_harvest();
 }