2 * Resizable, Scalable, Concurrent Hash Table
4 * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch>
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
7 * Based on the following paper:
8 * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf
10 * Code partially derived from nft_hash
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 /**************************************************************************
19 **************************************************************************/
21 #include <linux/init.h>
22 #include <linux/jhash.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/rcupdate.h>
26 #include <linux/rhashtable.h>
27 #include <linux/slab.h>
30 #define TEST_HT_SIZE 8
31 #define TEST_ENTRIES 2048
32 #define TEST_PTR ((void *) 0xdeadbeef)
33 #define TEST_NEXPANDS 4
38 struct rhash_head node
;
41 static const struct rhashtable_params test_rht_params
= {
42 .nelem_hint
= TEST_HT_SIZE
,
43 .head_offset
= offsetof(struct test_obj
, node
),
44 .key_offset
= offsetof(struct test_obj
, value
),
45 .key_len
= sizeof(int),
47 .nulls_base
= (3U << RHT_BASE_SHIFT
),
50 static int __init
test_rht_lookup(struct rhashtable
*ht
)
54 for (i
= 0; i
< TEST_ENTRIES
* 2; i
++) {
56 bool expected
= !(i
% 2);
59 obj
= rhashtable_lookup_fast(ht
, &key
, test_rht_params
);
61 if (expected
&& !obj
) {
62 pr_warn("Test failed: Could not find key %u\n", key
);
64 } else if (!expected
&& obj
) {
65 pr_warn("Test failed: Unexpected entry found for key %u\n",
68 } else if (expected
&& obj
) {
69 if (obj
->ptr
!= TEST_PTR
|| obj
->value
!= i
) {
70 pr_warn("Test failed: Lookup value mismatch %p!=%p, %u!=%u\n",
71 obj
->ptr
, TEST_PTR
, obj
->value
, i
);
80 static void test_bucket_stats(struct rhashtable
*ht
, bool quiet
)
82 unsigned int cnt
, rcu_cnt
, i
, total
= 0;
83 struct rhash_head
*pos
;
85 struct bucket_table
*tbl
;
87 tbl
= rht_dereference_rcu(ht
->tbl
, ht
);
88 for (i
= 0; i
< tbl
->size
; i
++) {
92 pr_info(" [%#4x/%u]", i
, tbl
->size
);
94 rht_for_each_entry_rcu(obj
, pos
, tbl
, i
, node
) {
98 pr_cont(" [%p],", obj
);
101 rht_for_each_entry_rcu(obj
, pos
, tbl
, i
, node
)
105 pr_warn("Test failed: Chain count mismach %d != %d",
109 pr_cont("\n [%#x] first element: %p, chain length: %u\n",
110 i
, tbl
->buckets
[i
], cnt
);
113 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d\n",
114 total
, atomic_read(&ht
->nelems
), TEST_ENTRIES
);
116 if (total
!= atomic_read(&ht
->nelems
) || total
!= TEST_ENTRIES
)
117 pr_warn("Test failed: Total count mismatch ^^^");
120 static int __init
test_rhashtable(struct rhashtable
*ht
)
122 struct bucket_table
*tbl
;
123 struct test_obj
*obj
;
124 struct rhash_head
*pos
, *next
;
130 * Insert TEST_ENTRIES into table with all keys even numbers
132 pr_info(" Adding %d keys\n", TEST_ENTRIES
);
133 for (i
= 0; i
< TEST_ENTRIES
; i
++) {
134 struct test_obj
*obj
;
136 obj
= kzalloc(sizeof(*obj
), GFP_KERNEL
);
145 err
= rhashtable_insert_fast(ht
, &obj
->node
, test_rht_params
);
153 test_bucket_stats(ht
, true);
158 test_bucket_stats(ht
, true);
161 pr_info(" Deleting %d keys\n", TEST_ENTRIES
);
162 for (i
= 0; i
< TEST_ENTRIES
; i
++) {
165 obj
= rhashtable_lookup_fast(ht
, &key
, test_rht_params
);
168 rhashtable_remove_fast(ht
, &obj
->node
, test_rht_params
);
175 tbl
= rht_dereference_rcu(ht
->tbl
, ht
);
176 for (i
= 0; i
< tbl
->size
; i
++)
177 rht_for_each_entry_safe(obj
, pos
, next
, tbl
, i
, node
)
183 static struct rhashtable ht
;
185 static int __init
test_rht_init(void)
189 pr_info("Running resizable hashtable tests...\n");
191 err
= rhashtable_init(&ht
, &test_rht_params
);
193 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
198 err
= test_rhashtable(&ht
);
200 rhashtable_destroy(&ht
);
205 static void __exit
test_rht_exit(void)
209 module_init(test_rht_init
);
210 module_exit(test_rht_exit
);
212 MODULE_LICENSE("GPL v2");