X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Ftest_urcu_ja.c;h=bad6784a446db3ecb1857de5c459dc93ffd66d13;hb=48cbe00177cd135553ee34d2f443c351b53b6d25;hp=03af485d4d1bdbea4ec0a109ef08cd3836436a96;hpb=b31cb285aa0eeb13a6cde835d91d7cbfb77dbcf8;p=userspace-rcu.git diff --git a/tests/test_urcu_ja.c b/tests/test_urcu_ja.c index 03af485..bad6784 100644 --- a/tests/test_urcu_ja.c +++ b/tests/test_urcu_ja.c @@ -167,7 +167,7 @@ void show_usage(int argc, char **argv) printf(" [-a cpu#] [-a cpu#]... (affinity)\n"); printf(" [not -u nor -s] Add entries (supports redundant keys).\n"); printf(" [-r ratio] Add ratio (in %% of add+removal).\n"); - printf(" [-k nr_nodes] Number of nodes to insert initially.\n"); + printf(" [-k] Populate init nodes.\n"); printf(" [-R offset] Lookup pool offset.\n"); printf(" [-S offset] Write pool offset.\n"); printf(" [-T offset] Init pool offset.\n"); @@ -836,13 +836,13 @@ int do_mt_test(void) tot_add_exist += count_writer[i].add_exist; tot_remove += count_writer[i].remove; } + rcu_thread_online_qsbr(); ret = cds_ja_destroy(test_ja, free_node_cb); if (ret) { fprintf(stderr, "Error destroying judy array\n"); goto end; } - rcu_thread_online_qsbr(); free(tid_reader); free(tid_writer); @@ -925,7 +925,7 @@ int main(int argc, char **argv) add_ratio = atoi(argv[++i]); break; case 'k': - init_populate = atol(argv[++i]); + init_populate = 1; break; case 'R': lookup_pool_offset = atol(argv[++i]);