]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - lib/test_rhashtable.c
lib/string.c: implement a basic bcmp
[mirror_ubuntu-bionic-kernel.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
2deac28c
PB
82static u32 my_hashfn(const void *data, u32 len, u32 seed)
83{
84 const struct test_obj_rhl *obj = data;
85
86 return (obj->value.id % 10) << RHT_HASH_RESERVED_SPACE;
87}
88
89static int my_cmpfn(struct rhashtable_compare_arg *arg, const void *obj)
90{
91 const struct test_obj_rhl *test_obj = obj;
92 const struct test_obj_val *val = arg->key;
93
94 return test_obj->value.id - val->id;
95}
96
1aa661f5 97static struct rhashtable_params test_rht_params = {
b182aa6e
HX
98 .head_offset = offsetof(struct test_obj, node),
99 .key_offset = offsetof(struct test_obj, value),
e859afe1 100 .key_len = sizeof(struct test_obj_val),
b182aa6e 101 .hashfn = jhash,
b182aa6e
HX
102 .nulls_base = (3U << RHT_BASE_SHIFT),
103};
104
2deac28c
PB
105static struct rhashtable_params test_rht_params_dup = {
106 .head_offset = offsetof(struct test_obj_rhl, list_node),
107 .key_offset = offsetof(struct test_obj_rhl, value),
108 .key_len = sizeof(struct test_obj_val),
109 .hashfn = jhash,
110 .obj_hashfn = my_hashfn,
111 .obj_cmpfn = my_cmpfn,
112 .nelem_hint = 128,
113 .automatic_shrinking = false,
114};
115
f4a3e90b
PS
116static struct semaphore prestart_sem;
117static struct semaphore startup_sem = __SEMAPHORE_INITIALIZER(startup_sem, 0);
118
7e936bd7 119static int insert_retry(struct rhashtable *ht, struct test_obj *obj,
9e9089e5
PS
120 const struct rhashtable_params params)
121{
d662e037 122 int err, retries = -1, enomem_retries = 0;
9e9089e5
PS
123
124 do {
125 retries++;
126 cond_resched();
7e936bd7 127 err = rhashtable_insert_fast(ht, &obj->node, params);
d662e037
PS
128 if (err == -ENOMEM && enomem_retry) {
129 enomem_retries++;
130 err = -EBUSY;
131 }
9e9089e5
PS
132 } while (err == -EBUSY);
133
d662e037
PS
134 if (enomem_retries)
135 pr_info(" %u insertions retried after -ENOMEM\n",
136 enomem_retries);
137
9e9089e5
PS
138 return err ? : retries;
139}
140
f651616e
FW
141static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array,
142 unsigned int entries)
9d6dbe1b
GU
143{
144 unsigned int i;
145
f651616e 146 for (i = 0; i < entries; i++) {
9d6dbe1b
GU
147 struct test_obj *obj;
148 bool expected = !(i % 2);
e859afe1
PS
149 struct test_obj_val key = {
150 .id = i,
151 };
9d6dbe1b 152
e859afe1 153 if (array[i / 2].value.id == TEST_INSERT_FAIL)
67b7cbf4
TG
154 expected = false;
155
b182aa6e 156 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
9d6dbe1b
GU
157
158 if (expected && !obj) {
e859afe1 159 pr_warn("Test failed: Could not find key %u\n", key.id);
9d6dbe1b
GU
160 return -ENOENT;
161 } else if (!expected && obj) {
162 pr_warn("Test failed: Unexpected entry found for key %u\n",
e859afe1 163 key.id);
9d6dbe1b
GU
164 return -EEXIST;
165 } else if (expected && obj) {
e859afe1 166 if (obj->value.id != i) {
c2c8a901 167 pr_warn("Test failed: Lookup value mismatch %u!=%u\n",
e859afe1 168 obj->value.id, i);
9d6dbe1b
GU
169 return -EINVAL;
170 }
171 }
685a015e
TG
172
173 cond_resched_rcu();
9d6dbe1b
GU
174 }
175
176 return 0;
177}
178
f651616e 179static void test_bucket_stats(struct rhashtable *ht, unsigned int entries)
9d6dbe1b 180{
246b23a7
TG
181 unsigned int err, total = 0, chain_len = 0;
182 struct rhashtable_iter hti;
9d6dbe1b 183 struct rhash_head *pos;
9d6dbe1b 184
8f6fd83c 185 err = rhashtable_walk_init(ht, &hti, GFP_KERNEL);
246b23a7
TG
186 if (err) {
187 pr_warn("Test failed: allocation error");
188 return;
189 }
9d6dbe1b 190
246b23a7
TG
191 err = rhashtable_walk_start(&hti);
192 if (err && err != -EAGAIN) {
193 pr_warn("Test failed: iterator failed: %d\n", err);
194 return;
195 }
9d6dbe1b 196
246b23a7
TG
197 while ((pos = rhashtable_walk_next(&hti))) {
198 if (PTR_ERR(pos) == -EAGAIN) {
199 pr_info("Info: encountered resize\n");
200 chain_len++;
201 continue;
202 } else if (IS_ERR(pos)) {
203 pr_warn("Test failed: rhashtable_walk_next() error: %ld\n",
204 PTR_ERR(pos));
205 break;
9d6dbe1b
GU
206 }
207
246b23a7 208 total++;
9d6dbe1b
GU
209 }
210
246b23a7
TG
211 rhashtable_walk_stop(&hti);
212 rhashtable_walk_exit(&hti);
213
214 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d, table-jumps=%u\n",
215 total, atomic_read(&ht->nelems), entries, chain_len);
9d6dbe1b 216
1aa661f5 217 if (total != atomic_read(&ht->nelems) || total != entries)
9d6dbe1b
GU
218 pr_warn("Test failed: Total count mismatch ^^^");
219}
220
f651616e
FW
221static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array,
222 unsigned int entries)
9d6dbe1b 223{
9d6dbe1b 224 struct test_obj *obj;
9d6dbe1b 225 int err;
9e9089e5 226 unsigned int i, insert_retries = 0;
1aa661f5 227 s64 start, end;
9d6dbe1b
GU
228
229 /*
230 * Insertion Test:
1aa661f5 231 * Insert entries into table with all keys even numbers
9d6dbe1b 232 */
1aa661f5
TG
233 pr_info(" Adding %d keys\n", entries);
234 start = ktime_get_ns();
235 for (i = 0; i < entries; i++) {
fcc57020 236 struct test_obj *obj = &array[i];
9d6dbe1b 237
e859afe1 238 obj->value.id = i * 2;
7e936bd7 239 err = insert_retry(ht, obj, test_rht_params);
9e9089e5
PS
240 if (err > 0)
241 insert_retries += err;
242 else if (err)
fcc57020 243 return err;
9d6dbe1b
GU
244 }
245
9e9089e5
PS
246 if (insert_retries)
247 pr_info(" %u insertions retried due to memory pressure\n",
248 insert_retries);
67b7cbf4 249
f651616e 250 test_bucket_stats(ht, entries);
9d6dbe1b 251 rcu_read_lock();
f651616e 252 test_rht_lookup(ht, array, entries);
9d6dbe1b
GU
253 rcu_read_unlock();
254
f651616e 255 test_bucket_stats(ht, entries);
9d6dbe1b 256
1aa661f5
TG
257 pr_info(" Deleting %d keys\n", entries);
258 for (i = 0; i < entries; i++) {
78369255
PS
259 struct test_obj_val key = {
260 .id = i * 2,
261 };
9d6dbe1b 262
e859afe1 263 if (array[i].value.id != TEST_INSERT_FAIL) {
67b7cbf4
TG
264 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
265 BUG_ON(!obj);
9d6dbe1b 266
67b7cbf4
TG
267 rhashtable_remove_fast(ht, &obj->node, test_rht_params);
268 }
685a015e
TG
269
270 cond_resched();
9d6dbe1b
GU
271 }
272
1aa661f5
TG
273 end = ktime_get_ns();
274 pr_info(" Duration of test: %lld ns\n", end - start);
275
276 return end - start;
9d6dbe1b
GU
277}
278
b7f5e5c7 279static struct rhashtable ht;
411d788a 280static struct rhltable rhlt;
cdd4de37
FW
281
282static int __init test_rhltable(unsigned int entries)
283{
284 struct test_obj_rhl *rhl_test_objects;
285 unsigned long *obj_in_table;
286 unsigned int i, j, k;
287 int ret, err;
288
289 if (entries == 0)
290 entries = 1;
291
292 rhl_test_objects = vzalloc(sizeof(*rhl_test_objects) * entries);
293 if (!rhl_test_objects)
294 return -ENOMEM;
295
296 ret = -ENOMEM;
297 obj_in_table = vzalloc(BITS_TO_LONGS(entries) * sizeof(unsigned long));
298 if (!obj_in_table)
299 goto out_free;
300
301 /* nulls_base not supported in rhlist interface */
302 test_rht_params.nulls_base = 0;
303 err = rhltable_init(&rhlt, &test_rht_params);
304 if (WARN_ON(err))
305 goto out_free;
306
307 k = prandom_u32();
308 ret = 0;
309 for (i = 0; i < entries; i++) {
310 rhl_test_objects[i].value.id = k;
311 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
312 test_rht_params);
313 if (WARN(err, "error %d on element %d\n", err, i))
314 break;
315 if (err == 0)
316 set_bit(i, obj_in_table);
317 }
318
319 if (err)
320 ret = err;
321
322 pr_info("test %d add/delete pairs into rhlist\n", entries);
323 for (i = 0; i < entries; i++) {
324 struct rhlist_head *h, *pos;
325 struct test_obj_rhl *obj;
326 struct test_obj_val key = {
327 .id = k,
328 };
329 bool found;
330
331 rcu_read_lock();
332 h = rhltable_lookup(&rhlt, &key, test_rht_params);
333 if (WARN(!h, "key not found during iteration %d of %d", i, entries)) {
334 rcu_read_unlock();
335 break;
336 }
337
338 if (i) {
339 j = i - 1;
340 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
341 if (WARN(pos == &rhl_test_objects[j].list_node, "old element found, should be gone"))
342 break;
343 }
344 }
345
346 cond_resched_rcu();
347
348 found = false;
349
350 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
351 if (pos == &rhl_test_objects[i].list_node) {
352 found = true;
353 break;
354 }
355 }
356
357 rcu_read_unlock();
358
359 if (WARN(!found, "element %d not found", i))
360 break;
361
362 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
363 WARN(err, "rhltable_remove: err %d for iteration %d\n", err, i);
364 if (err == 0)
365 clear_bit(i, obj_in_table);
366 }
367
368 if (ret == 0 && err)
369 ret = err;
370
371 for (i = 0; i < entries; i++) {
372 WARN(test_bit(i, obj_in_table), "elem %d allegedly still present", i);
373
374 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
375 test_rht_params);
376 if (WARN(err, "error %d on element %d\n", err, i))
377 break;
378 if (err == 0)
379 set_bit(i, obj_in_table);
380 }
381
382 pr_info("test %d random rhlist add/delete operations\n", entries);
383 for (j = 0; j < entries; j++) {
384 u32 i = prandom_u32_max(entries);
385 u32 prand = prandom_u32();
386
387 cond_resched();
388
389 if (prand == 0)
390 prand = prandom_u32();
391
392 if (prand & 1) {
393 prand >>= 1;
394 continue;
395 }
396
397 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
398 if (test_bit(i, obj_in_table)) {
399 clear_bit(i, obj_in_table);
400 if (WARN(err, "cannot remove element at slot %d", i))
401 continue;
402 } else {
403 if (WARN(err != -ENOENT, "removed non-existant element %d, error %d not %d",
404 i, err, -ENOENT))
405 continue;
406 }
407
408 if (prand & 1) {
409 prand >>= 1;
410 continue;
411 }
412
413 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
414 if (err == 0) {
415 if (WARN(test_and_set_bit(i, obj_in_table), "succeeded to insert same object %d", i))
416 continue;
417 } else {
418 if (WARN(!test_bit(i, obj_in_table), "failed to insert object %d", i))
419 continue;
420 }
421
422 if (prand & 1) {
423 prand >>= 1;
424 continue;
425 }
426
427 i = prandom_u32_max(entries);
428 if (test_bit(i, obj_in_table)) {
429 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
430 WARN(err, "cannot remove element at slot %d", i);
431 if (err == 0)
432 clear_bit(i, obj_in_table);
433 } else {
434 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
435 WARN(err, "failed to insert object %d", i);
436 if (err == 0)
437 set_bit(i, obj_in_table);
438 }
439 }
440
441 for (i = 0; i < entries; i++) {
442 cond_resched();
443 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
444 if (test_bit(i, obj_in_table)) {
445 if (WARN(err, "cannot remove element at slot %d", i))
446 continue;
447 } else {
448 if (WARN(err != -ENOENT, "removed non-existant element, error %d not %d",
449 err, -ENOENT))
450 continue;
451 }
452 }
453
454 rhltable_destroy(&rhlt);
455out_free:
456 vfree(rhl_test_objects);
457 vfree(obj_in_table);
458 return ret;
459}
b7f5e5c7 460
a6359bd8
FW
461static int __init test_rhashtable_max(struct test_obj *array,
462 unsigned int entries)
463{
464 unsigned int i, insert_retries = 0;
465 int err;
466
467 test_rht_params.max_size = roundup_pow_of_two(entries / 8);
468 err = rhashtable_init(&ht, &test_rht_params);
469 if (err)
470 return err;
471
472 for (i = 0; i < ht.max_elems; i++) {
473 struct test_obj *obj = &array[i];
474
475 obj->value.id = i * 2;
476 err = insert_retry(&ht, obj, test_rht_params);
477 if (err > 0)
478 insert_retries += err;
479 else if (err)
480 return err;
481 }
482
483 err = insert_retry(&ht, &array[ht.max_elems], test_rht_params);
484 if (err == -E2BIG) {
485 err = 0;
486 } else {
487 pr_info("insert element %u should have failed with %d, got %d\n",
488 ht.max_elems, -E2BIG, err);
489 if (err == 0)
490 err = -1;
491 }
492
493 rhashtable_destroy(&ht);
494
495 return err;
496}
497
2deac28c
PB
498static unsigned int __init print_ht(struct rhltable *rhlt)
499{
500 struct rhashtable *ht;
501 const struct bucket_table *tbl;
502 char buff[512] = "";
503 unsigned int i, cnt = 0;
504
505 ht = &rhlt->ht;
506 tbl = rht_dereference(ht->tbl, ht);
507 for (i = 0; i < tbl->size; i++) {
508 struct rhash_head *pos, *next;
509 struct test_obj_rhl *p;
510
511 pos = rht_dereference(tbl->buckets[i], ht);
512 next = !rht_is_a_nulls(pos) ? rht_dereference(pos->next, ht) : NULL;
513
514 if (!rht_is_a_nulls(pos)) {
515 sprintf(buff, "%s\nbucket[%d] -> ", buff, i);
516 }
517
518 while (!rht_is_a_nulls(pos)) {
519 struct rhlist_head *list = container_of(pos, struct rhlist_head, rhead);
520 sprintf(buff, "%s[[", buff);
521 do {
522 pos = &list->rhead;
523 list = rht_dereference(list->next, ht);
524 p = rht_obj(ht, pos);
525
526 sprintf(buff, "%s val %d (tid=%d)%s", buff, p->value.id, p->value.tid,
527 list? ", " : " ");
528 cnt++;
529 } while (list);
530
531 pos = next,
532 next = !rht_is_a_nulls(pos) ?
533 rht_dereference(pos->next, ht) : NULL;
534
535 sprintf(buff, "%s]]%s", buff, !rht_is_a_nulls(pos) ? " -> " : "");
536 }
537 }
538 printk(KERN_ERR "\n---- ht: ----%s\n-------------\n", buff);
539
540 return cnt;
541}
542
543static int __init test_insert_dup(struct test_obj_rhl *rhl_test_objects,
544 int cnt, bool slow)
545{
3f35cd2c 546 struct rhltable *rhlt;
2deac28c
PB
547 unsigned int i, ret;
548 const char *key;
549 int err = 0;
550
3f35cd2c
BVA
551 rhlt = kmalloc(sizeof(*rhlt), GFP_KERNEL);
552 if (WARN_ON(!rhlt))
553 return -EINVAL;
554
555 err = rhltable_init(rhlt, &test_rht_params_dup);
556 if (WARN_ON(err)) {
557 kfree(rhlt);
2deac28c 558 return err;
3f35cd2c 559 }
2deac28c
PB
560
561 for (i = 0; i < cnt; i++) {
562 rhl_test_objects[i].value.tid = i;
3f35cd2c 563 key = rht_obj(&rhlt->ht, &rhl_test_objects[i].list_node.rhead);
2deac28c
PB
564 key += test_rht_params_dup.key_offset;
565
566 if (slow) {
3f35cd2c 567 err = PTR_ERR(rhashtable_insert_slow(&rhlt->ht, key,
2deac28c
PB
568 &rhl_test_objects[i].list_node.rhead));
569 if (err == -EAGAIN)
570 err = 0;
571 } else
3f35cd2c 572 err = rhltable_insert(rhlt,
2deac28c
PB
573 &rhl_test_objects[i].list_node,
574 test_rht_params_dup);
575 if (WARN(err, "error %d on element %d/%d (%s)\n", err, i, cnt, slow? "slow" : "fast"))
576 goto skip_print;
577 }
578
3f35cd2c 579 ret = print_ht(rhlt);
2deac28c
PB
580 WARN(ret != cnt, "missing rhltable elements (%d != %d, %s)\n", ret, cnt, slow? "slow" : "fast");
581
582skip_print:
3f35cd2c
BVA
583 rhltable_destroy(rhlt);
584 kfree(rhlt);
2deac28c
PB
585
586 return 0;
587}
588
589static int __init test_insert_duplicates_run(void)
590{
591 struct test_obj_rhl rhl_test_objects[3] = {};
592
593 pr_info("test inserting duplicates\n");
594
595 /* two different values that map to same bucket */
596 rhl_test_objects[0].value.id = 1;
597 rhl_test_objects[1].value.id = 21;
598
599 /* and another duplicate with same as [0] value
600 * which will be second on the bucket list */
601 rhl_test_objects[2].value.id = rhl_test_objects[0].value.id;
602
603 test_insert_dup(rhl_test_objects, 2, false);
604 test_insert_dup(rhl_test_objects, 3, false);
605 test_insert_dup(rhl_test_objects, 2, true);
606 test_insert_dup(rhl_test_objects, 3, true);
607
608 return 0;
609}
610
f4a3e90b
PS
611static int thread_lookup_test(struct thread_data *tdata)
612{
f651616e 613 unsigned int entries = tdata->entries;
f4a3e90b
PS
614 int i, err = 0;
615
616 for (i = 0; i < entries; i++) {
617 struct test_obj *obj;
e859afe1
PS
618 struct test_obj_val key = {
619 .id = i,
620 .tid = tdata->id,
621 };
f4a3e90b
PS
622
623 obj = rhashtable_lookup_fast(&ht, &key, test_rht_params);
e859afe1
PS
624 if (obj && (tdata->objs[i].value.id == TEST_INSERT_FAIL)) {
625 pr_err(" found unexpected object %d-%d\n", key.tid, key.id);
f4a3e90b 626 err++;
e859afe1
PS
627 } else if (!obj && (tdata->objs[i].value.id != TEST_INSERT_FAIL)) {
628 pr_err(" object %d-%d not found!\n", key.tid, key.id);
f4a3e90b 629 err++;
e859afe1
PS
630 } else if (obj && memcmp(&obj->value, &key, sizeof(key))) {
631 pr_err(" wrong object returned (got %d-%d, expected %d-%d)\n",
632 obj->value.tid, obj->value.id, key.tid, key.id);
f4a3e90b
PS
633 err++;
634 }
cd5b318d
PS
635
636 cond_resched();
f4a3e90b
PS
637 }
638 return err;
639}
640
641static int threadfunc(void *data)
642{
9e9089e5 643 int i, step, err = 0, insert_retries = 0;
f4a3e90b
PS
644 struct thread_data *tdata = data;
645
646 up(&prestart_sem);
647 if (down_interruptible(&startup_sem))
648 pr_err(" thread[%d]: down_interruptible failed\n", tdata->id);
649
f651616e 650 for (i = 0; i < tdata->entries; i++) {
e859afe1
PS
651 tdata->objs[i].value.id = i;
652 tdata->objs[i].value.tid = tdata->id;
7e936bd7 653 err = insert_retry(&ht, &tdata->objs[i], test_rht_params);
9e9089e5
PS
654 if (err > 0) {
655 insert_retries += err;
f4a3e90b
PS
656 } else if (err) {
657 pr_err(" thread[%d]: rhashtable_insert_fast failed\n",
658 tdata->id);
659 goto out;
660 }
661 }
9e9089e5
PS
662 if (insert_retries)
663 pr_info(" thread[%d]: %u insertions retried due to memory pressure\n",
664 tdata->id, insert_retries);
f4a3e90b
PS
665
666 err = thread_lookup_test(tdata);
667 if (err) {
668 pr_err(" thread[%d]: rhashtable_lookup_test failed\n",
669 tdata->id);
670 goto out;
671 }
672
673 for (step = 10; step > 0; step--) {
f651616e 674 for (i = 0; i < tdata->entries; i += step) {
e859afe1 675 if (tdata->objs[i].value.id == TEST_INSERT_FAIL)
f4a3e90b
PS
676 continue;
677 err = rhashtable_remove_fast(&ht, &tdata->objs[i].node,
678 test_rht_params);
679 if (err) {
680 pr_err(" thread[%d]: rhashtable_remove_fast failed\n",
681 tdata->id);
682 goto out;
683 }
e859afe1 684 tdata->objs[i].value.id = TEST_INSERT_FAIL;
cd5b318d
PS
685
686 cond_resched();
f4a3e90b
PS
687 }
688 err = thread_lookup_test(tdata);
689 if (err) {
690 pr_err(" thread[%d]: rhashtable_lookup_test (2) failed\n",
691 tdata->id);
692 goto out;
693 }
694 }
695out:
696 while (!kthread_should_stop()) {
697 set_current_state(TASK_INTERRUPTIBLE);
698 schedule();
699 }
700 return err;
701}
702
9d6dbe1b
GU
703static int __init test_rht_init(void)
704{
f651616e 705 unsigned int entries;
f4a3e90b 706 int i, err, started_threads = 0, failed_threads = 0;
1aa661f5 707 u64 total_time = 0;
f4a3e90b
PS
708 struct thread_data *tdata;
709 struct test_obj *objs;
9d6dbe1b 710
f651616e
FW
711 if (parm_entries < 0)
712 parm_entries = 1;
713
714 entries = min(parm_entries, MAX_ENTRIES);
9d6dbe1b 715
1aa661f5 716 test_rht_params.automatic_shrinking = shrinking;
95e435af 717 test_rht_params.max_size = max_size ? : roundup_pow_of_two(entries);
1aa661f5 718 test_rht_params.nelem_hint = size;
9d6dbe1b 719
7e936bd7
FW
720 objs = vzalloc((test_rht_params.max_size + 1) * sizeof(struct test_obj));
721 if (!objs)
722 return -ENOMEM;
723
1aa661f5
TG
724 pr_info("Running rhashtable test nelem=%d, max_size=%d, shrinking=%d\n",
725 size, max_size, shrinking);
9d6dbe1b 726
1aa661f5
TG
727 for (i = 0; i < runs; i++) {
728 s64 time;
9d6dbe1b 729
1aa661f5 730 pr_info("Test %02d:\n", i);
7e936bd7
FW
731 memset(objs, 0, test_rht_params.max_size * sizeof(struct test_obj));
732
1aa661f5
TG
733 err = rhashtable_init(&ht, &test_rht_params);
734 if (err < 0) {
735 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
736 err);
737 continue;
738 }
739
f651616e 740 time = test_rhashtable(&ht, objs, entries);
1aa661f5
TG
741 rhashtable_destroy(&ht);
742 if (time < 0) {
7e936bd7 743 vfree(objs);
1aa661f5
TG
744 pr_warn("Test failed: return code %lld\n", time);
745 return -EINVAL;
746 }
747
748 total_time += time;
749 }
750
a6359bd8
FW
751 pr_info("test if its possible to exceed max_size %d: %s\n",
752 test_rht_params.max_size, test_rhashtable_max(objs, entries) == 0 ?
753 "no, ok" : "YES, failed");
7e936bd7 754 vfree(objs);
a6359bd8 755
6decd63a
TG
756 do_div(total_time, runs);
757 pr_info("Average test time: %llu\n", total_time);
1aa661f5 758
2deac28c
PB
759 test_insert_duplicates_run();
760
f4a3e90b
PS
761 if (!tcount)
762 return 0;
763
764 pr_info("Testing concurrent rhashtable access from %d threads\n",
765 tcount);
766 sema_init(&prestart_sem, 1 - tcount);
767 tdata = vzalloc(tcount * sizeof(struct thread_data));
768 if (!tdata)
769 return -ENOMEM;
770 objs = vzalloc(tcount * entries * sizeof(struct test_obj));
771 if (!objs) {
772 vfree(tdata);
773 return -ENOMEM;
774 }
775
95e435af
PS
776 test_rht_params.max_size = max_size ? :
777 roundup_pow_of_two(tcount * entries);
f4a3e90b
PS
778 err = rhashtable_init(&ht, &test_rht_params);
779 if (err < 0) {
780 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
781 err);
782 vfree(tdata);
783 vfree(objs);
784 return -EINVAL;
785 }
786 for (i = 0; i < tcount; i++) {
787 tdata[i].id = i;
f651616e 788 tdata[i].entries = entries;
f4a3e90b
PS
789 tdata[i].objs = objs + i * entries;
790 tdata[i].task = kthread_run(threadfunc, &tdata[i],
791 "rhashtable_thrad[%d]", i);
792 if (IS_ERR(tdata[i].task))
793 pr_err(" kthread_run failed for thread %d\n", i);
794 else
795 started_threads++;
796 }
797 if (down_interruptible(&prestart_sem))
798 pr_err(" down interruptible failed\n");
799 for (i = 0; i < tcount; i++)
800 up(&startup_sem);
801 for (i = 0; i < tcount; i++) {
802 if (IS_ERR(tdata[i].task))
803 continue;
804 if ((err = kthread_stop(tdata[i].task))) {
805 pr_warn("Test failed: thread %d returned: %d\n",
806 i, err);
807 failed_threads++;
808 }
809 }
f4a3e90b
PS
810 rhashtable_destroy(&ht);
811 vfree(tdata);
812 vfree(objs);
cdd4de37
FW
813
814 /*
815 * rhltable_remove is very expensive, default values can cause test
816 * to run for 2 minutes or more, use a smaller number instead.
817 */
818 err = test_rhltable(entries / 16);
819 pr_info("Started %d threads, %d failed, rhltable test returns %d\n",
820 started_threads, failed_threads, err);
1aa661f5 821 return 0;
9d6dbe1b
GU
822}
823
6dd0c165
DB
824static void __exit test_rht_exit(void)
825{
826}
827
9d6dbe1b 828module_init(test_rht_init);
6dd0c165 829module_exit(test_rht_exit);
9d6dbe1b
GU
830
831MODULE_LICENSE("GPL v2");