tty: Replace smp_rmb/smp_wmb with smp_load_acquire/smp_store_release
[linux-2.6/btrfs-unstable.git] / lib / test_rhashtable.c
blobc90777eae1f837f84b1b53fd8704b567b9d90835
1 /*
2 * Resizable, Scalable, Concurrent Hash Table
4 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
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.
12 /**************************************************************************
13 * Self Test
14 **************************************************************************/
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>
24 #define MAX_ENTRIES 1000000
25 #define TEST_INSERT_FAIL INT_MAX
27 static int entries = 50000;
28 module_param(entries, int, 0);
29 MODULE_PARM_DESC(entries, "Number of entries to add (default: 50000)");
31 static int runs = 4;
32 module_param(runs, int, 0);
33 MODULE_PARM_DESC(runs, "Number of test runs per variant (default: 4)");
35 static int max_size = 65536;
36 module_param(max_size, int, 0);
37 MODULE_PARM_DESC(runs, "Maximum table size (default: 65536)");
39 static bool shrinking = false;
40 module_param(shrinking, bool, 0);
41 MODULE_PARM_DESC(shrinking, "Enable automatic shrinking (default: off)");
43 static int size = 8;
44 module_param(size, int, 0);
45 MODULE_PARM_DESC(size, "Initial size hint of table (default: 8)");
47 struct test_obj {
48 int value;
49 struct rhash_head node;
52 static struct test_obj array[MAX_ENTRIES];
54 static struct rhashtable_params test_rht_params = {
55 .head_offset = offsetof(struct test_obj, node),
56 .key_offset = offsetof(struct test_obj, value),
57 .key_len = sizeof(int),
58 .hashfn = jhash,
59 .nulls_base = (3U << RHT_BASE_SHIFT),
62 static int __init test_rht_lookup(struct rhashtable *ht)
64 unsigned int i;
66 for (i = 0; i < entries * 2; i++) {
67 struct test_obj *obj;
68 bool expected = !(i % 2);
69 u32 key = i;
71 if (array[i / 2].value == TEST_INSERT_FAIL)
72 expected = false;
74 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
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) {
84 if (obj->value != i) {
85 pr_warn("Test failed: Lookup value mismatch %u!=%u\n",
86 obj->value, i);
87 return -EINVAL;
92 return 0;
95 static void test_bucket_stats(struct rhashtable *ht)
97 unsigned int err, total = 0, chain_len = 0;
98 struct rhashtable_iter hti;
99 struct rhash_head *pos;
101 err = rhashtable_walk_init(ht, &hti);
102 if (err) {
103 pr_warn("Test failed: allocation error");
104 return;
107 err = rhashtable_walk_start(&hti);
108 if (err && err != -EAGAIN) {
109 pr_warn("Test failed: iterator failed: %d\n", err);
110 return;
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;
124 total++;
127 rhashtable_walk_stop(&hti);
128 rhashtable_walk_exit(&hti);
130 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d, table-jumps=%u\n",
131 total, atomic_read(&ht->nelems), entries, chain_len);
133 if (total != atomic_read(&ht->nelems) || total != entries)
134 pr_warn("Test failed: Total count mismatch ^^^");
137 static s64 __init test_rhashtable(struct rhashtable *ht)
139 struct test_obj *obj;
140 int err;
141 unsigned int i, insert_fails = 0;
142 s64 start, end;
145 * Insertion Test:
146 * Insert entries into table with all keys even numbers
148 pr_info(" Adding %d keys\n", entries);
149 start = ktime_get_ns();
150 for (i = 0; i < entries; i++) {
151 struct test_obj *obj = &array[i];
153 obj->value = i * 2;
155 err = rhashtable_insert_fast(ht, &obj->node, test_rht_params);
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) {
161 return err;
165 if (insert_fails)
166 pr_info(" %u insertions failed due to memory pressure\n",
167 insert_fails);
169 test_bucket_stats(ht);
170 rcu_read_lock();
171 test_rht_lookup(ht);
172 rcu_read_unlock();
174 test_bucket_stats(ht);
176 pr_info(" Deleting %d keys\n", entries);
177 for (i = 0; i < entries; i++) {
178 u32 key = i * 2;
180 if (array[i].value != TEST_INSERT_FAIL) {
181 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
182 BUG_ON(!obj);
184 rhashtable_remove_fast(ht, &obj->node, test_rht_params);
188 end = ktime_get_ns();
189 pr_info(" Duration of test: %lld ns\n", end - start);
191 return end - start;
194 static struct rhashtable ht;
196 static int __init test_rht_init(void)
198 int i, err;
199 u64 total_time = 0;
201 entries = min(entries, MAX_ENTRIES);
203 test_rht_params.automatic_shrinking = shrinking;
204 test_rht_params.max_size = max_size;
205 test_rht_params.nelem_hint = size;
207 pr_info("Running rhashtable test nelem=%d, max_size=%d, shrinking=%d\n",
208 size, max_size, shrinking);
210 for (i = 0; i < runs; i++) {
211 s64 time;
213 pr_info("Test %02d:\n", i);
214 memset(&array, 0, sizeof(array));
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;
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;
229 total_time += time;
232 do_div(total_time, runs);
233 pr_info("Average test time: %llu\n", total_time);
235 return 0;
238 static void __exit test_rht_exit(void)
242 module_init(test_rht_init);
243 module_exit(test_rht_exit);
245 MODULE_LICENSE("GPL v2");