Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux-2.6-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>
19#include <linux/module.h>
20#include <linux/rcupdate.h>
21#include <linux/rhashtable.h>
22#include <linux/slab.h>
23
1aa661f5 24#define MAX_ENTRIES 1000000
67b7cbf4 25#define TEST_INSERT_FAIL INT_MAX
1aa661f5
TG
26
27static int entries = 50000;
28module_param(entries, int, 0);
29MODULE_PARM_DESC(entries, "Number of entries to add (default: 50000)");
30
31static int runs = 4;
32module_param(runs, int, 0);
33MODULE_PARM_DESC(runs, "Number of test runs per variant (default: 4)");
34
35static int max_size = 65536;
36module_param(max_size, int, 0);
37MODULE_PARM_DESC(runs, "Maximum table size (default: 65536)");
38
39static bool shrinking = false;
40module_param(shrinking, bool, 0);
41MODULE_PARM_DESC(shrinking, "Enable automatic shrinking (default: off)");
42
43static int size = 8;
44module_param(size, int, 0);
45MODULE_PARM_DESC(size, "Initial size hint of table (default: 8)");
9d6dbe1b
GU
46
47struct test_obj {
9d6dbe1b
GU
48 int value;
49 struct rhash_head node;
50};
51
fcc57020
TG
52static struct test_obj array[MAX_ENTRIES];
53
1aa661f5 54static struct rhashtable_params test_rht_params = {
b182aa6e
HX
55 .head_offset = offsetof(struct test_obj, node),
56 .key_offset = offsetof(struct test_obj, value),
57 .key_len = sizeof(int),
58 .hashfn = jhash,
b182aa6e
HX
59 .nulls_base = (3U << RHT_BASE_SHIFT),
60};
61
9d6dbe1b
GU
62static int __init test_rht_lookup(struct rhashtable *ht)
63{
64 unsigned int i;
65
1aa661f5 66 for (i = 0; i < entries * 2; i++) {
9d6dbe1b
GU
67 struct test_obj *obj;
68 bool expected = !(i % 2);
69 u32 key = i;
70
67b7cbf4
TG
71 if (array[i / 2].value == TEST_INSERT_FAIL)
72 expected = false;
73
b182aa6e 74 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
9d6dbe1b
GU
75
76 if (expected && !obj) {
77 pr_warn("Test failed: Could not find key %u\n", key);
78 return -ENOENT;
79 } else if (!expected && obj) {
80 pr_warn("Test failed: Unexpected entry found for key %u\n",
81 key);
82 return -EEXIST;
83 } else if (expected && obj) {
c2c8a901
TG
84 if (obj->value != i) {
85 pr_warn("Test failed: Lookup value mismatch %u!=%u\n",
86 obj->value, i);
9d6dbe1b
GU
87 return -EINVAL;
88 }
89 }
90 }
91
92 return 0;
93}
94
246b23a7 95static void test_bucket_stats(struct rhashtable *ht)
9d6dbe1b 96{
246b23a7
TG
97 unsigned int err, total = 0, chain_len = 0;
98 struct rhashtable_iter hti;
9d6dbe1b 99 struct rhash_head *pos;
9d6dbe1b 100
246b23a7
TG
101 err = rhashtable_walk_init(ht, &hti);
102 if (err) {
103 pr_warn("Test failed: allocation error");
104 return;
105 }
9d6dbe1b 106
246b23a7
TG
107 err = rhashtable_walk_start(&hti);
108 if (err && err != -EAGAIN) {
109 pr_warn("Test failed: iterator failed: %d\n", err);
110 return;
111 }
9d6dbe1b 112
246b23a7
TG
113 while ((pos = rhashtable_walk_next(&hti))) {
114 if (PTR_ERR(pos) == -EAGAIN) {
115 pr_info("Info: encountered resize\n");
116 chain_len++;
117 continue;
118 } else if (IS_ERR(pos)) {
119 pr_warn("Test failed: rhashtable_walk_next() error: %ld\n",
120 PTR_ERR(pos));
121 break;
9d6dbe1b
GU
122 }
123
246b23a7 124 total++;
9d6dbe1b
GU
125 }
126
246b23a7
TG
127 rhashtable_walk_stop(&hti);
128 rhashtable_walk_exit(&hti);
129
130 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d, table-jumps=%u\n",
131 total, atomic_read(&ht->nelems), entries, chain_len);
9d6dbe1b 132
1aa661f5 133 if (total != atomic_read(&ht->nelems) || total != entries)
9d6dbe1b
GU
134 pr_warn("Test failed: Total count mismatch ^^^");
135}
136
1aa661f5 137static s64 __init test_rhashtable(struct rhashtable *ht)
9d6dbe1b 138{
9d6dbe1b 139 struct test_obj *obj;
9d6dbe1b 140 int err;
67b7cbf4 141 unsigned int i, insert_fails = 0;
1aa661f5 142 s64 start, end;
9d6dbe1b
GU
143
144 /*
145 * Insertion Test:
1aa661f5 146 * Insert entries into table with all keys even numbers
9d6dbe1b 147 */
1aa661f5
TG
148 pr_info(" Adding %d keys\n", entries);
149 start = ktime_get_ns();
150 for (i = 0; i < entries; i++) {
fcc57020 151 struct test_obj *obj = &array[i];
9d6dbe1b 152
9d6dbe1b
GU
153 obj->value = i * 2;
154
b182aa6e 155 err = rhashtable_insert_fast(ht, &obj->node, test_rht_params);
67b7cbf4
TG
156 if (err == -ENOMEM || err == -EBUSY) {
157 /* Mark failed inserts but continue */
158 obj->value = TEST_INSERT_FAIL;
159 insert_fails++;
160 } else if (err) {
fcc57020 161 return err;
67b7cbf4 162 }
9d6dbe1b
GU
163 }
164
67b7cbf4
TG
165 if (insert_fails)
166 pr_info(" %u insertions failed due to memory pressure\n",
167 insert_fails);
168
246b23a7 169 test_bucket_stats(ht);
9d6dbe1b 170 rcu_read_lock();
9d6dbe1b
GU
171 test_rht_lookup(ht);
172 rcu_read_unlock();
173
246b23a7 174 test_bucket_stats(ht);
9d6dbe1b 175
1aa661f5
TG
176 pr_info(" Deleting %d keys\n", entries);
177 for (i = 0; i < entries; i++) {
9d6dbe1b
GU
178 u32 key = i * 2;
179
67b7cbf4
TG
180 if (array[i].value != TEST_INSERT_FAIL) {
181 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
182 BUG_ON(!obj);
9d6dbe1b 183
67b7cbf4
TG
184 rhashtable_remove_fast(ht, &obj->node, test_rht_params);
185 }
9d6dbe1b
GU
186 }
187
1aa661f5
TG
188 end = ktime_get_ns();
189 pr_info(" Duration of test: %lld ns\n", end - start);
190
191 return end - start;
9d6dbe1b
GU
192}
193
b7f5e5c7
DB
194static struct rhashtable ht;
195
9d6dbe1b
GU
196static int __init test_rht_init(void)
197{
1aa661f5
TG
198 int i, err;
199 u64 total_time = 0;
9d6dbe1b 200
1aa661f5 201 entries = min(entries, MAX_ENTRIES);
9d6dbe1b 202
1aa661f5
TG
203 test_rht_params.automatic_shrinking = shrinking;
204 test_rht_params.max_size = max_size;
205 test_rht_params.nelem_hint = size;
9d6dbe1b 206
1aa661f5
TG
207 pr_info("Running rhashtable test nelem=%d, max_size=%d, shrinking=%d\n",
208 size, max_size, shrinking);
9d6dbe1b 209
1aa661f5
TG
210 for (i = 0; i < runs; i++) {
211 s64 time;
9d6dbe1b 212
1aa661f5 213 pr_info("Test %02d:\n", i);
fcc57020 214 memset(&array, 0, sizeof(array));
1aa661f5
TG
215 err = rhashtable_init(&ht, &test_rht_params);
216 if (err < 0) {
217 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
218 err);
219 continue;
220 }
221
222 time = test_rhashtable(&ht);
223 rhashtable_destroy(&ht);
224 if (time < 0) {
225 pr_warn("Test failed: return code %lld\n", time);
226 return -EINVAL;
227 }
228
229 total_time += time;
230 }
231
6decd63a
TG
232 do_div(total_time, runs);
233 pr_info("Average test time: %llu\n", total_time);
1aa661f5
TG
234
235 return 0;
9d6dbe1b
GU
236}
237
6dd0c165
DB
238static void __exit test_rht_exit(void)
239{
240}
241
9d6dbe1b 242module_init(test_rht_init);
6dd0c165 243module_exit(test_rht_exit);
9d6dbe1b
GU
244
245MODULE_LICENSE("GPL v2");