rhashtable: Fix rhlist duplicates insertion
[linux-block.git] / lib / test_rhashtable.c
CommitLineData
9d6dbe1b
GU
1/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
1aa661f5 4 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
9d6dbe1b
GU
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
6 *
9d6dbe1b
GU
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12/**************************************************************************
13 * Self Test
14 **************************************************************************/
15
16#include <linux/init.h>
17#include <linux/jhash.h>
18#include <linux/kernel.h>
f4a3e90b 19#include <linux/kthread.h>
9d6dbe1b
GU
20#include <linux/module.h>
21#include <linux/rcupdate.h>
22#include <linux/rhashtable.h>
f4a3e90b 23#include <linux/semaphore.h>
9d6dbe1b 24#include <linux/slab.h>
685a015e 25#include <linux/sched.h>
cdd4de37 26#include <linux/random.h>
f4a3e90b 27#include <linux/vmalloc.h>
9d6dbe1b 28
1aa661f5 29#define MAX_ENTRIES 1000000
67b7cbf4 30#define TEST_INSERT_FAIL INT_MAX
1aa661f5 31
f651616e
FW
32static int parm_entries = 50000;
33module_param(parm_entries, int, 0);
34MODULE_PARM_DESC(parm_entries, "Number of entries to add (default: 50000)");
1aa661f5
TG
35
36static int runs = 4;
37module_param(runs, int, 0);
38MODULE_PARM_DESC(runs, "Number of test runs per variant (default: 4)");
39
95e435af 40static int max_size = 0;
1aa661f5 41module_param(max_size, int, 0);
3b3bf80b 42MODULE_PARM_DESC(max_size, "Maximum table size (default: calculated)");
1aa661f5
TG
43
44static bool shrinking = false;
45module_param(shrinking, bool, 0);
46MODULE_PARM_DESC(shrinking, "Enable automatic shrinking (default: off)");
47
48static int size = 8;
49module_param(size, int, 0);
50MODULE_PARM_DESC(size, "Initial size hint of table (default: 8)");
9d6dbe1b 51
f4a3e90b
PS
52static int tcount = 10;
53module_param(tcount, int, 0);
54MODULE_PARM_DESC(tcount, "Number of threads to spawn (default: 10)");
55
d662e037
PS
56static bool enomem_retry = false;
57module_param(enomem_retry, bool, 0);
58MODULE_PARM_DESC(enomem_retry, "Retry insert even if -ENOMEM was returned (default: off)");
59
e859afe1
PS
60struct test_obj_val {
61 int id;
62 int tid;
63};
64
9d6dbe1b 65struct test_obj {
e859afe1 66 struct test_obj_val value;
9d6dbe1b
GU
67 struct rhash_head node;
68};
69
cdd4de37
FW
70struct test_obj_rhl {
71 struct test_obj_val value;
72 struct rhlist_head list_node;
73};
74
f4a3e90b 75struct thread_data {
f651616e 76 unsigned int entries;
f4a3e90b
PS
77 int id;
78 struct task_struct *task;
79 struct test_obj *objs;
80};
81
1aa661f5 82static struct rhashtable_params test_rht_params = {
b182aa6e
HX
83 .head_offset = offsetof(struct test_obj, node),
84 .key_offset = offsetof(struct test_obj, value),
e859afe1 85 .key_len = sizeof(struct test_obj_val),
b182aa6e 86 .hashfn = jhash,
b182aa6e
HX
87 .nulls_base = (3U << RHT_BASE_SHIFT),
88};
89
f4a3e90b
PS
90static struct semaphore prestart_sem;
91static struct semaphore startup_sem = __SEMAPHORE_INITIALIZER(startup_sem, 0);
92
7e936bd7 93static int insert_retry(struct rhashtable *ht, struct test_obj *obj,
9e9089e5
PS
94 const struct rhashtable_params params)
95{
d662e037 96 int err, retries = -1, enomem_retries = 0;
9e9089e5
PS
97
98 do {
99 retries++;
100 cond_resched();
7e936bd7 101 err = rhashtable_insert_fast(ht, &obj->node, params);
d662e037
PS
102 if (err == -ENOMEM && enomem_retry) {
103 enomem_retries++;
104 err = -EBUSY;
105 }
9e9089e5
PS
106 } while (err == -EBUSY);
107
d662e037
PS
108 if (enomem_retries)
109 pr_info(" %u insertions retried after -ENOMEM\n",
110 enomem_retries);
111
9e9089e5
PS
112 return err ? : retries;
113}
114
f651616e
FW
115static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array,
116 unsigned int entries)
9d6dbe1b
GU
117{
118 unsigned int i;
119
f651616e 120 for (i = 0; i < entries; i++) {
9d6dbe1b
GU
121 struct test_obj *obj;
122 bool expected = !(i % 2);
e859afe1
PS
123 struct test_obj_val key = {
124 .id = i,
125 };
9d6dbe1b 126
e859afe1 127 if (array[i / 2].value.id == TEST_INSERT_FAIL)
67b7cbf4
TG
128 expected = false;
129
b182aa6e 130 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
9d6dbe1b
GU
131
132 if (expected && !obj) {
e859afe1 133 pr_warn("Test failed: Could not find key %u\n", key.id);
9d6dbe1b
GU
134 return -ENOENT;
135 } else if (!expected && obj) {
136 pr_warn("Test failed: Unexpected entry found for key %u\n",
e859afe1 137 key.id);
9d6dbe1b
GU
138 return -EEXIST;
139 } else if (expected && obj) {
e859afe1 140 if (obj->value.id != i) {
c2c8a901 141 pr_warn("Test failed: Lookup value mismatch %u!=%u\n",
e859afe1 142 obj->value.id, i);
9d6dbe1b
GU
143 return -EINVAL;
144 }
145 }
685a015e
TG
146
147 cond_resched_rcu();
9d6dbe1b
GU
148 }
149
150 return 0;
151}
152
f651616e 153static void test_bucket_stats(struct rhashtable *ht, unsigned int entries)
9d6dbe1b 154{
246b23a7
TG
155 unsigned int err, total = 0, chain_len = 0;
156 struct rhashtable_iter hti;
9d6dbe1b 157 struct rhash_head *pos;
9d6dbe1b 158
8f6fd83c 159 err = rhashtable_walk_init(ht, &hti, GFP_KERNEL);
246b23a7
TG
160 if (err) {
161 pr_warn("Test failed: allocation error");
162 return;
163 }
9d6dbe1b 164
97a6ec4a 165 rhashtable_walk_start(&hti);
9d6dbe1b 166
246b23a7
TG
167 while ((pos = rhashtable_walk_next(&hti))) {
168 if (PTR_ERR(pos) == -EAGAIN) {
169 pr_info("Info: encountered resize\n");
170 chain_len++;
171 continue;
172 } else if (IS_ERR(pos)) {
173 pr_warn("Test failed: rhashtable_walk_next() error: %ld\n",
174 PTR_ERR(pos));
175 break;
9d6dbe1b
GU
176 }
177
246b23a7 178 total++;
9d6dbe1b
GU
179 }
180
246b23a7
TG
181 rhashtable_walk_stop(&hti);
182 rhashtable_walk_exit(&hti);
183
184 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d, table-jumps=%u\n",
185 total, atomic_read(&ht->nelems), entries, chain_len);
9d6dbe1b 186
1aa661f5 187 if (total != atomic_read(&ht->nelems) || total != entries)
9d6dbe1b
GU
188 pr_warn("Test failed: Total count mismatch ^^^");
189}
190
f651616e
FW
191static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array,
192 unsigned int entries)
9d6dbe1b 193{
9d6dbe1b 194 struct test_obj *obj;
9d6dbe1b 195 int err;
9e9089e5 196 unsigned int i, insert_retries = 0;
1aa661f5 197 s64 start, end;
9d6dbe1b
GU
198
199 /*
200 * Insertion Test:
1aa661f5 201 * Insert entries into table with all keys even numbers
9d6dbe1b 202 */
1aa661f5
TG
203 pr_info(" Adding %d keys\n", entries);
204 start = ktime_get_ns();
205 for (i = 0; i < entries; i++) {
fcc57020 206 struct test_obj *obj = &array[i];
9d6dbe1b 207
e859afe1 208 obj->value.id = i * 2;
7e936bd7 209 err = insert_retry(ht, obj, test_rht_params);
9e9089e5
PS
210 if (err > 0)
211 insert_retries += err;
212 else if (err)
fcc57020 213 return err;
9d6dbe1b
GU
214 }
215
9e9089e5
PS
216 if (insert_retries)
217 pr_info(" %u insertions retried due to memory pressure\n",
218 insert_retries);
67b7cbf4 219
f651616e 220 test_bucket_stats(ht, entries);
9d6dbe1b 221 rcu_read_lock();
f651616e 222 test_rht_lookup(ht, array, entries);
9d6dbe1b
GU
223 rcu_read_unlock();
224
f651616e 225 test_bucket_stats(ht, entries);
9d6dbe1b 226
1aa661f5
TG
227 pr_info(" Deleting %d keys\n", entries);
228 for (i = 0; i < entries; i++) {
78369255
PS
229 struct test_obj_val key = {
230 .id = i * 2,
231 };
9d6dbe1b 232
e859afe1 233 if (array[i].value.id != TEST_INSERT_FAIL) {
67b7cbf4
TG
234 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
235 BUG_ON(!obj);
9d6dbe1b 236
67b7cbf4
TG
237 rhashtable_remove_fast(ht, &obj->node, test_rht_params);
238 }
685a015e
TG
239
240 cond_resched();
9d6dbe1b
GU
241 }
242
1aa661f5
TG
243 end = ktime_get_ns();
244 pr_info(" Duration of test: %lld ns\n", end - start);
245
246 return end - start;
9d6dbe1b
GU
247}
248
b7f5e5c7 249static struct rhashtable ht;
411d788a 250static struct rhltable rhlt;
cdd4de37
FW
251
252static int __init test_rhltable(unsigned int entries)
253{
254 struct test_obj_rhl *rhl_test_objects;
255 unsigned long *obj_in_table;
256 unsigned int i, j, k;
257 int ret, err;
258
259 if (entries == 0)
260 entries = 1;
261
262 rhl_test_objects = vzalloc(sizeof(*rhl_test_objects) * entries);
263 if (!rhl_test_objects)
264 return -ENOMEM;
265
266 ret = -ENOMEM;
267 obj_in_table = vzalloc(BITS_TO_LONGS(entries) * sizeof(unsigned long));
268 if (!obj_in_table)
269 goto out_free;
270
271 /* nulls_base not supported in rhlist interface */
272 test_rht_params.nulls_base = 0;
273 err = rhltable_init(&rhlt, &test_rht_params);
274 if (WARN_ON(err))
275 goto out_free;
276
277 k = prandom_u32();
278 ret = 0;
279 for (i = 0; i < entries; i++) {
280 rhl_test_objects[i].value.id = k;
281 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
282 test_rht_params);
283 if (WARN(err, "error %d on element %d\n", err, i))
284 break;
285 if (err == 0)
286 set_bit(i, obj_in_table);
287 }
288
289 if (err)
290 ret = err;
291
292 pr_info("test %d add/delete pairs into rhlist\n", entries);
293 for (i = 0; i < entries; i++) {
294 struct rhlist_head *h, *pos;
295 struct test_obj_rhl *obj;
296 struct test_obj_val key = {
297 .id = k,
298 };
299 bool found;
300
301 rcu_read_lock();
302 h = rhltable_lookup(&rhlt, &key, test_rht_params);
303 if (WARN(!h, "key not found during iteration %d of %d", i, entries)) {
304 rcu_read_unlock();
305 break;
306 }
307
308 if (i) {
309 j = i - 1;
310 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
311 if (WARN(pos == &rhl_test_objects[j].list_node, "old element found, should be gone"))
312 break;
313 }
314 }
315
316 cond_resched_rcu();
317
318 found = false;
319
320 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
321 if (pos == &rhl_test_objects[i].list_node) {
322 found = true;
323 break;
324 }
325 }
326
327 rcu_read_unlock();
328
329 if (WARN(!found, "element %d not found", i))
330 break;
331
332 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
333 WARN(err, "rhltable_remove: err %d for iteration %d\n", err, i);
334 if (err == 0)
335 clear_bit(i, obj_in_table);
336 }
337
338 if (ret == 0 && err)
339 ret = err;
340
341 for (i = 0; i < entries; i++) {
342 WARN(test_bit(i, obj_in_table), "elem %d allegedly still present", i);
343
344 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
345 test_rht_params);
346 if (WARN(err, "error %d on element %d\n", err, i))
347 break;
348 if (err == 0)
349 set_bit(i, obj_in_table);
350 }
351
352 pr_info("test %d random rhlist add/delete operations\n", entries);
353 for (j = 0; j < entries; j++) {
354 u32 i = prandom_u32_max(entries);
355 u32 prand = prandom_u32();
356
357 cond_resched();
358
359 if (prand == 0)
360 prand = prandom_u32();
361
362 if (prand & 1) {
363 prand >>= 1;
364 continue;
365 }
366
367 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
368 if (test_bit(i, obj_in_table)) {
369 clear_bit(i, obj_in_table);
370 if (WARN(err, "cannot remove element at slot %d", i))
371 continue;
372 } else {
373 if (WARN(err != -ENOENT, "removed non-existant element %d, error %d not %d",
374 i, err, -ENOENT))
375 continue;
376 }
377
378 if (prand & 1) {
379 prand >>= 1;
380 continue;
381 }
382
383 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
384 if (err == 0) {
385 if (WARN(test_and_set_bit(i, obj_in_table), "succeeded to insert same object %d", i))
386 continue;
387 } else {
388 if (WARN(!test_bit(i, obj_in_table), "failed to insert object %d", i))
389 continue;
390 }
391
392 if (prand & 1) {
393 prand >>= 1;
394 continue;
395 }
396
397 i = prandom_u32_max(entries);
398 if (test_bit(i, obj_in_table)) {
399 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
400 WARN(err, "cannot remove element at slot %d", i);
401 if (err == 0)
402 clear_bit(i, obj_in_table);
403 } else {
404 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
405 WARN(err, "failed to insert object %d", i);
406 if (err == 0)
407 set_bit(i, obj_in_table);
408 }
409 }
410
411 for (i = 0; i < entries; i++) {
412 cond_resched();
413 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
414 if (test_bit(i, obj_in_table)) {
415 if (WARN(err, "cannot remove element at slot %d", i))
416 continue;
417 } else {
418 if (WARN(err != -ENOENT, "removed non-existant element, error %d not %d",
419 err, -ENOENT))
420 continue;
421 }
422 }
423
424 rhltable_destroy(&rhlt);
425out_free:
426 vfree(rhl_test_objects);
427 vfree(obj_in_table);
428 return ret;
429}
b7f5e5c7 430
a6359bd8
FW
431static int __init test_rhashtable_max(struct test_obj *array,
432 unsigned int entries)
433{
434 unsigned int i, insert_retries = 0;
435 int err;
436
437 test_rht_params.max_size = roundup_pow_of_two(entries / 8);
438 err = rhashtable_init(&ht, &test_rht_params);
439 if (err)
440 return err;
441
442 for (i = 0; i < ht.max_elems; i++) {
443 struct test_obj *obj = &array[i];
444
445 obj->value.id = i * 2;
446 err = insert_retry(&ht, obj, test_rht_params);
447 if (err > 0)
448 insert_retries += err;
449 else if (err)
450 return err;
451 }
452
453 err = insert_retry(&ht, &array[ht.max_elems], test_rht_params);
454 if (err == -E2BIG) {
455 err = 0;
456 } else {
457 pr_info("insert element %u should have failed with %d, got %d\n",
458 ht.max_elems, -E2BIG, err);
459 if (err == 0)
460 err = -1;
461 }
462
463 rhashtable_destroy(&ht);
464
465 return err;
466}
467
f4a3e90b
PS
468static int thread_lookup_test(struct thread_data *tdata)
469{
f651616e 470 unsigned int entries = tdata->entries;
f4a3e90b
PS
471 int i, err = 0;
472
473 for (i = 0; i < entries; i++) {
474 struct test_obj *obj;
e859afe1
PS
475 struct test_obj_val key = {
476 .id = i,
477 .tid = tdata->id,
478 };
f4a3e90b
PS
479
480 obj = rhashtable_lookup_fast(&ht, &key, test_rht_params);
e859afe1
PS
481 if (obj && (tdata->objs[i].value.id == TEST_INSERT_FAIL)) {
482 pr_err(" found unexpected object %d-%d\n", key.tid, key.id);
f4a3e90b 483 err++;
e859afe1
PS
484 } else if (!obj && (tdata->objs[i].value.id != TEST_INSERT_FAIL)) {
485 pr_err(" object %d-%d not found!\n", key.tid, key.id);
f4a3e90b 486 err++;
e859afe1
PS
487 } else if (obj && memcmp(&obj->value, &key, sizeof(key))) {
488 pr_err(" wrong object returned (got %d-%d, expected %d-%d)\n",
489 obj->value.tid, obj->value.id, key.tid, key.id);
f4a3e90b
PS
490 err++;
491 }
cd5b318d
PS
492
493 cond_resched();
f4a3e90b
PS
494 }
495 return err;
496}
497
498static int threadfunc(void *data)
499{
9e9089e5 500 int i, step, err = 0, insert_retries = 0;
f4a3e90b
PS
501 struct thread_data *tdata = data;
502
503 up(&prestart_sem);
504 if (down_interruptible(&startup_sem))
505 pr_err(" thread[%d]: down_interruptible failed\n", tdata->id);
506
f651616e 507 for (i = 0; i < tdata->entries; i++) {
e859afe1
PS
508 tdata->objs[i].value.id = i;
509 tdata->objs[i].value.tid = tdata->id;
7e936bd7 510 err = insert_retry(&ht, &tdata->objs[i], test_rht_params);
9e9089e5
PS
511 if (err > 0) {
512 insert_retries += err;
f4a3e90b
PS
513 } else if (err) {
514 pr_err(" thread[%d]: rhashtable_insert_fast failed\n",
515 tdata->id);
516 goto out;
517 }
518 }
9e9089e5
PS
519 if (insert_retries)
520 pr_info(" thread[%d]: %u insertions retried due to memory pressure\n",
521 tdata->id, insert_retries);
f4a3e90b
PS
522
523 err = thread_lookup_test(tdata);
524 if (err) {
525 pr_err(" thread[%d]: rhashtable_lookup_test failed\n",
526 tdata->id);
527 goto out;
528 }
529
530 for (step = 10; step > 0; step--) {
f651616e 531 for (i = 0; i < tdata->entries; i += step) {
e859afe1 532 if (tdata->objs[i].value.id == TEST_INSERT_FAIL)
f4a3e90b
PS
533 continue;
534 err = rhashtable_remove_fast(&ht, &tdata->objs[i].node,
535 test_rht_params);
536 if (err) {
537 pr_err(" thread[%d]: rhashtable_remove_fast failed\n",
538 tdata->id);
539 goto out;
540 }
e859afe1 541 tdata->objs[i].value.id = TEST_INSERT_FAIL;
cd5b318d
PS
542
543 cond_resched();
f4a3e90b
PS
544 }
545 err = thread_lookup_test(tdata);
546 if (err) {
547 pr_err(" thread[%d]: rhashtable_lookup_test (2) failed\n",
548 tdata->id);
549 goto out;
550 }
551 }
552out:
553 while (!kthread_should_stop()) {
554 set_current_state(TASK_INTERRUPTIBLE);
555 schedule();
556 }
557 return err;
558}
559
9d6dbe1b
GU
560static int __init test_rht_init(void)
561{
f651616e 562 unsigned int entries;
f4a3e90b 563 int i, err, started_threads = 0, failed_threads = 0;
1aa661f5 564 u64 total_time = 0;
f4a3e90b
PS
565 struct thread_data *tdata;
566 struct test_obj *objs;
9d6dbe1b 567
f651616e
FW
568 if (parm_entries < 0)
569 parm_entries = 1;
570
571 entries = min(parm_entries, MAX_ENTRIES);
9d6dbe1b 572
1aa661f5 573 test_rht_params.automatic_shrinking = shrinking;
95e435af 574 test_rht_params.max_size = max_size ? : roundup_pow_of_two(entries);
1aa661f5 575 test_rht_params.nelem_hint = size;
9d6dbe1b 576
7e936bd7
FW
577 objs = vzalloc((test_rht_params.max_size + 1) * sizeof(struct test_obj));
578 if (!objs)
579 return -ENOMEM;
580
1aa661f5
TG
581 pr_info("Running rhashtable test nelem=%d, max_size=%d, shrinking=%d\n",
582 size, max_size, shrinking);
9d6dbe1b 583
1aa661f5
TG
584 for (i = 0; i < runs; i++) {
585 s64 time;
9d6dbe1b 586
1aa661f5 587 pr_info("Test %02d:\n", i);
7e936bd7
FW
588 memset(objs, 0, test_rht_params.max_size * sizeof(struct test_obj));
589
1aa661f5
TG
590 err = rhashtable_init(&ht, &test_rht_params);
591 if (err < 0) {
592 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
593 err);
594 continue;
595 }
596
f651616e 597 time = test_rhashtable(&ht, objs, entries);
1aa661f5
TG
598 rhashtable_destroy(&ht);
599 if (time < 0) {
7e936bd7 600 vfree(objs);
1aa661f5
TG
601 pr_warn("Test failed: return code %lld\n", time);
602 return -EINVAL;
603 }
604
605 total_time += time;
606 }
607
a6359bd8
FW
608 pr_info("test if its possible to exceed max_size %d: %s\n",
609 test_rht_params.max_size, test_rhashtable_max(objs, entries) == 0 ?
610 "no, ok" : "YES, failed");
7e936bd7 611 vfree(objs);
a6359bd8 612
6decd63a
TG
613 do_div(total_time, runs);
614 pr_info("Average test time: %llu\n", total_time);
1aa661f5 615
f4a3e90b
PS
616 if (!tcount)
617 return 0;
618
619 pr_info("Testing concurrent rhashtable access from %d threads\n",
620 tcount);
621 sema_init(&prestart_sem, 1 - tcount);
622 tdata = vzalloc(tcount * sizeof(struct thread_data));
623 if (!tdata)
624 return -ENOMEM;
625 objs = vzalloc(tcount * entries * sizeof(struct test_obj));
626 if (!objs) {
627 vfree(tdata);
628 return -ENOMEM;
629 }
630
95e435af
PS
631 test_rht_params.max_size = max_size ? :
632 roundup_pow_of_two(tcount * entries);
f4a3e90b
PS
633 err = rhashtable_init(&ht, &test_rht_params);
634 if (err < 0) {
635 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
636 err);
637 vfree(tdata);
638 vfree(objs);
639 return -EINVAL;
640 }
641 for (i = 0; i < tcount; i++) {
642 tdata[i].id = i;
f651616e 643 tdata[i].entries = entries;
f4a3e90b
PS
644 tdata[i].objs = objs + i * entries;
645 tdata[i].task = kthread_run(threadfunc, &tdata[i],
646 "rhashtable_thrad[%d]", i);
647 if (IS_ERR(tdata[i].task))
648 pr_err(" kthread_run failed for thread %d\n", i);
649 else
650 started_threads++;
651 }
652 if (down_interruptible(&prestart_sem))
653 pr_err(" down interruptible failed\n");
654 for (i = 0; i < tcount; i++)
655 up(&startup_sem);
656 for (i = 0; i < tcount; i++) {
657 if (IS_ERR(tdata[i].task))
658 continue;
659 if ((err = kthread_stop(tdata[i].task))) {
660 pr_warn("Test failed: thread %d returned: %d\n",
661 i, err);
662 failed_threads++;
663 }
664 }
f4a3e90b
PS
665 rhashtable_destroy(&ht);
666 vfree(tdata);
667 vfree(objs);
cdd4de37
FW
668
669 /*
670 * rhltable_remove is very expensive, default values can cause test
671 * to run for 2 minutes or more, use a smaller number instead.
672 */
673 err = test_rhltable(entries / 16);
674 pr_info("Started %d threads, %d failed, rhltable test returns %d\n",
675 started_threads, failed_threads, err);
1aa661f5 676 return 0;
9d6dbe1b
GU
677}
678
6dd0c165
DB
679static void __exit test_rht_exit(void)
680{
681}
682
9d6dbe1b 683module_init(test_rht_init);
6dd0c165 684module_exit(test_rht_exit);
9d6dbe1b
GU
685
686MODULE_LICENSE("GPL v2");