diff options
author | Matthew Wilcox <willy@infradead.org> | 2018-06-18 23:59:29 +0300 |
---|---|---|
committer | Matthew Wilcox <willy@infradead.org> | 2018-08-22 06:54:20 +0300 |
commit | 8ab8ba38d48867aac01812e18f48fc9173ccd400 (patch) | |
tree | 4d149499e92ea666779d91caa2a487dfc322ffba /tools/testing/radix-tree/main.c | |
parent | 31ff0ceeb266a4ac96f3fc8cebb85df862a22f92 (diff) | |
download | linux-8ab8ba38d48867aac01812e18f48fc9173ccd400.tar.xz |
ida: Start new test_ida module
Start transitioning the IDA tests into kernel space. Framework heavily
cribbed from test_xarray.c.
Signed-off-by: Matthew Wilcox <willy@infradead.org>
Diffstat (limited to 'tools/testing/radix-tree/main.c')
-rw-r--r-- | tools/testing/radix-tree/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/radix-tree/main.c b/tools/testing/radix-tree/main.c index 584a8732f5ce..b741686e53d6 100644 --- a/tools/testing/radix-tree/main.c +++ b/tools/testing/radix-tree/main.c @@ -324,7 +324,7 @@ static void single_thread_tests(bool long_run) printv(2, "after dynamic_height_check: %d allocated, preempt %d\n", nr_allocated, preempt_count); idr_checks(); - ida_checks(); + ida_tests(); rcu_barrier(); printv(2, "after idr_checks: %d allocated, preempt %d\n", nr_allocated, preempt_count); @@ -371,7 +371,6 @@ int main(int argc, char **argv) iteration_test(0, 10 + 90 * long_run); iteration_test(7, 10 + 90 * long_run); single_thread_tests(long_run); - ida_thread_tests(); /* Free any remaining preallocated nodes */ radix_tree_cpu_dead(0); |