From: Mathieu Desnoyers Date: Wed, 28 Sep 2011 03:27:17 +0000 (-0400) Subject: rculfhash test: Use get first/get next to delete all entries X-Git-Tag: v0.7.0~43^2~113 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=175ec0eb63121c55ccddea8755dd401dc06c14a8 rculfhash test: Use get first/get next to delete all entries Signed-off-by: Mathieu Desnoyers --- diff --git a/tests/test_urcu_hash.c b/tests/test_urcu_hash.c index d6464b4..98227c2 100644 --- a/tests/test_urcu_hash.c +++ b/tests/test_urcu_hash.c @@ -633,6 +633,26 @@ static int populate_hash(void) return 0; } +static +void test_delete_all_nodes(struct cds_lfht *ht) +{ + struct cds_lfht_iter iter; + struct cds_lfht_node *node; + unsigned long count = 0; + + cds_lfht_first(ht, &iter); + while ((node = cds_lfht_iter_get_node(&iter)) != NULL) { + int ret; + + ret = cds_lfht_del(test_ht, &iter); + assert(!ret); + call_rcu(&node->head, free_node_cb); + cds_lfht_next(ht, &iter); + count++; + } + printf("deleted %lu nodes.\n", count); +} + void show_usage(int argc, char **argv) { printf("Usage : %s nr_readers nr_writers duration (s)\n", argv[0]); @@ -930,19 +950,20 @@ int main(int argc, char **argv) if (err != 0) exit(1); - printf("Counting nodes... "); fflush(stdout); rcu_thread_online(); rcu_read_lock(); + printf("Counting nodes... "); cds_lfht_count_nodes(test_ht, &approx_before, &count, &removed, &approx_after); + printf("done.\n"); + test_delete_all_nodes(test_ht); rcu_read_unlock(); rcu_thread_offline(); - printf("done.\n"); if (count || removed) { printf("Approximation before node accounting: %ld nodes.\n", approx_before); - printf("WARNING: nodes left in the hash table upon destroy: " + printf("Nodes deleted from hash table before destroy: " "%lu nodes + %lu logically removed.\n", count, removed); printf("Approximation after node accounting: %ld nodes.\n",