blob: 170175ca4105ff053cdb9c39440e7cb244d4d1c6 [file] [log] [blame]
Matthew Wilcox1366c372016-03-17 14:21:45 -07001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <time.h>
5#include <assert.h>
6
7#include <linux/slab.h>
8#include <linux/radix-tree.h>
9
10#include "test.h"
11#include "regression.h"
12
13void __gang_check(unsigned long middle, long down, long up, int chunk, int hop)
14{
15 long idx;
16 RADIX_TREE(tree, GFP_KERNEL);
17
18 middle = 1 << 30;
19
20 for (idx = -down; idx < up; idx++)
21 item_insert(&tree, middle + idx);
22
23 item_check_absent(&tree, middle - down - 1);
24 for (idx = -down; idx < up; idx++)
25 item_check_present(&tree, middle + idx);
26 item_check_absent(&tree, middle + up);
27
28 item_gang_check_present(&tree, middle - down,
29 up + down, chunk, hop);
30 item_full_scan(&tree, middle - down, down + up, chunk);
31 item_kill_tree(&tree);
32}
33
34void gang_check(void)
35{
36 __gang_check(1 << 30, 128, 128, 35, 2);
37 __gang_check(1 << 31, 128, 128, 32, 32);
38 __gang_check(1 << 31, 128, 128, 32, 100);
39 __gang_check(1 << 31, 128, 128, 17, 7);
40 __gang_check(0xffff0000, 0, 65536, 17, 7);
41 __gang_check(0xfffffffe, 1, 1, 17, 7);
42}
43
44void __big_gang_check(void)
45{
46 unsigned long start;
47 int wrapped = 0;
48
49 start = 0;
50 do {
51 unsigned long old_start;
52
53// printf("0x%08lx\n", start);
54 __gang_check(start, rand() % 113 + 1, rand() % 71,
55 rand() % 157, rand() % 91 + 1);
56 old_start = start;
57 start += rand() % 1000000;
58 start %= 1ULL << 33;
59 if (start < old_start)
60 wrapped = 1;
61 } while (!wrapped);
62}
63
Ross Zwisleraa1d62d2016-05-20 17:01:45 -070064void big_gang_check(bool long_run)
Matthew Wilcox1366c372016-03-17 14:21:45 -070065{
66 int i;
67
Ross Zwisleraa1d62d2016-05-20 17:01:45 -070068 for (i = 0; i < (long_run ? 1000 : 3); i++) {
Matthew Wilcox1366c372016-03-17 14:21:45 -070069 __big_gang_check();
Matthew Wilcox1366c372016-03-17 14:21:45 -070070 printf("%d ", i);
71 fflush(stdout);
72 }
73}
74
75void add_and_check(void)
76{
77 RADIX_TREE(tree, GFP_KERNEL);
78
79 item_insert(&tree, 44);
80 item_check_present(&tree, 44);
81 item_check_absent(&tree, 43);
82 item_kill_tree(&tree);
83}
84
85void dynamic_height_check(void)
86{
87 int i;
88 RADIX_TREE(tree, GFP_KERNEL);
89 tree_verify_min_height(&tree, 0);
90
91 item_insert(&tree, 42);
92 tree_verify_min_height(&tree, 42);
93
94 item_insert(&tree, 1000000);
95 tree_verify_min_height(&tree, 1000000);
96
97 assert(item_delete(&tree, 1000000));
98 tree_verify_min_height(&tree, 42);
99
100 assert(item_delete(&tree, 42));
101 tree_verify_min_height(&tree, 0);
102
103 for (i = 0; i < 1000; i++) {
104 item_insert(&tree, i);
105 tree_verify_min_height(&tree, i);
106 }
107
108 i--;
109 for (;;) {
110 assert(item_delete(&tree, i));
111 if (i == 0) {
112 tree_verify_min_height(&tree, 0);
113 break;
114 }
115 i--;
116 tree_verify_min_height(&tree, i);
117 }
118
119 item_kill_tree(&tree);
120}
121
122void check_copied_tags(struct radix_tree_root *tree, unsigned long start, unsigned long end, unsigned long *idx, int count, int fromtag, int totag)
123{
124 int i;
125
126 for (i = 0; i < count; i++) {
127/* if (i % 1000 == 0)
128 putchar('.'); */
129 if (idx[i] < start || idx[i] > end) {
130 if (item_tag_get(tree, idx[i], totag)) {
131 printf("%lu-%lu: %lu, tags %d-%d\n", start, end, idx[i], item_tag_get(tree, idx[i], fromtag), item_tag_get(tree, idx[i], totag));
132 }
133 assert(!item_tag_get(tree, idx[i], totag));
134 continue;
135 }
136 if (item_tag_get(tree, idx[i], fromtag) ^
137 item_tag_get(tree, idx[i], totag)) {
138 printf("%lu-%lu: %lu, tags %d-%d\n", start, end, idx[i], item_tag_get(tree, idx[i], fromtag), item_tag_get(tree, idx[i], totag));
139 }
140 assert(!(item_tag_get(tree, idx[i], fromtag) ^
141 item_tag_get(tree, idx[i], totag)));
142 }
143}
144
145#define ITEMS 50000
146
147void copy_tag_check(void)
148{
149 RADIX_TREE(tree, GFP_KERNEL);
150 unsigned long idx[ITEMS];
151 unsigned long start, end, count = 0, tagged, cur, tmp;
152 int i;
153
154// printf("generating radix tree indices...\n");
155 start = rand();
156 end = rand();
157 if (start > end && (rand() % 10)) {
158 cur = start;
159 start = end;
160 end = cur;
161 }
162 /* Specifically create items around the start and the end of the range
163 * with high probability to check for off by one errors */
164 cur = rand();
165 if (cur & 1) {
166 item_insert(&tree, start);
167 if (cur & 2) {
168 if (start <= end)
169 count++;
170 item_tag_set(&tree, start, 0);
171 }
172 }
173 if (cur & 4) {
174 item_insert(&tree, start-1);
175 if (cur & 8)
176 item_tag_set(&tree, start-1, 0);
177 }
178 if (cur & 16) {
179 item_insert(&tree, end);
180 if (cur & 32) {
181 if (start <= end)
182 count++;
183 item_tag_set(&tree, end, 0);
184 }
185 }
186 if (cur & 64) {
187 item_insert(&tree, end+1);
188 if (cur & 128)
189 item_tag_set(&tree, end+1, 0);
190 }
191
192 for (i = 0; i < ITEMS; i++) {
193 do {
194 idx[i] = rand();
195 } while (item_lookup(&tree, idx[i]));
196
197 item_insert(&tree, idx[i]);
198 if (rand() & 1) {
199 item_tag_set(&tree, idx[i], 0);
200 if (idx[i] >= start && idx[i] <= end)
201 count++;
202 }
203/* if (i % 1000 == 0)
204 putchar('.'); */
205 }
206
207// printf("\ncopying tags...\n");
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800208 tagged = tag_tagged_items(&tree, NULL, start, end, ITEMS, 0, 1);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700209
210// printf("checking copied tags\n");
211 assert(tagged == count);
212 check_copied_tags(&tree, start, end, idx, ITEMS, 0, 1);
213
214 /* Copy tags in several rounds */
215// printf("\ncopying tags...\n");
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800216 tmp = rand() % (count / 10 + 2);
217 tagged = tag_tagged_items(&tree, NULL, start, end, tmp, 0, 2);
218 assert(tagged == count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700219
220// printf("%lu %lu %lu\n", tagged, tmp, count);
221// printf("checking copied tags\n");
222 check_copied_tags(&tree, start, end, idx, ITEMS, 0, 2);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700223 verify_tag_consistency(&tree, 0);
224 verify_tag_consistency(&tree, 1);
225 verify_tag_consistency(&tree, 2);
226// printf("\n");
227 item_kill_tree(&tree);
228}
229
Ross Zwislereb73f7f2016-05-20 17:02:49 -0700230static void __locate_check(struct radix_tree_root *tree, unsigned long index,
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700231 unsigned order)
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700232{
233 struct item *item;
234 unsigned long index2;
235
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700236 item_insert_order(tree, index, order);
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700237 item = item_lookup(tree, index);
Matthew Wilcox478922e2016-12-14 15:08:52 -0800238 index2 = find_item(tree, item);
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700239 if (index != index2) {
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700240 printf("index %ld order %d inserted; found %ld\n",
241 index, order, index2);
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700242 abort();
243 }
244}
245
Ross Zwislereb73f7f2016-05-20 17:02:49 -0700246static void __order_0_locate_check(void)
247{
248 RADIX_TREE(tree, GFP_KERNEL);
249 int i;
250
251 for (i = 0; i < 50; i++)
252 __locate_check(&tree, rand() % INT_MAX, 0);
253
254 item_kill_tree(&tree);
255}
256
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700257static void locate_check(void)
258{
259 RADIX_TREE(tree, GFP_KERNEL);
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700260 unsigned order;
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700261 unsigned long offset, index;
262
Ross Zwislereb73f7f2016-05-20 17:02:49 -0700263 __order_0_locate_check();
264
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700265 for (order = 0; order < 20; order++) {
266 for (offset = 0; offset < (1 << (order + 3));
267 offset += (1UL << order)) {
268 for (index = 0; index < (1UL << (order + 5));
269 index += (1UL << order)) {
270 __locate_check(&tree, index + offset, order);
271 }
Matthew Wilcox478922e2016-12-14 15:08:52 -0800272 if (find_item(&tree, &tree) != -1)
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700273 abort();
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700274
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700275 item_kill_tree(&tree);
276 }
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700277 }
278
Matthew Wilcox478922e2016-12-14 15:08:52 -0800279 if (find_item(&tree, &tree) != -1)
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700280 abort();
Matthew Wilcox0a2efc62016-05-20 17:02:46 -0700281 __locate_check(&tree, -1, 0);
Matthew Wilcox478922e2016-12-14 15:08:52 -0800282 if (find_item(&tree, &tree) != -1)
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700283 abort();
284 item_kill_tree(&tree);
285}
286
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700287static void single_thread_tests(bool long_run)
Matthew Wilcox1366c372016-03-17 14:21:45 -0700288{
289 int i;
290
Matthew Wilcox847d3572016-12-14 15:08:02 -0800291 printf("starting single_thread_tests: %d allocated, preempt %d\n",
292 nr_allocated, preempt_count);
Matthew Wilcox4f3755d2016-05-20 17:02:14 -0700293 multiorder_checks();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800294 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800295 printf("after multiorder_check: %d allocated, preempt %d\n",
296 nr_allocated, preempt_count);
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -0700297 locate_check();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800298 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800299 printf("after locate_check: %d allocated, preempt %d\n",
300 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700301 tag_check();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800302 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800303 printf("after tag_check: %d allocated, preempt %d\n",
304 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700305 gang_check();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800306 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800307 printf("after gang_check: %d allocated, preempt %d\n",
308 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700309 add_and_check();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800310 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800311 printf("after add_and_check: %d allocated, preempt %d\n",
312 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700313 dynamic_height_check();
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800314 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800315 printf("after dynamic_height_check: %d allocated, preempt %d\n",
316 nr_allocated, preempt_count);
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700317 big_gang_check(long_run);
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800318 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800319 printf("after big_gang_check: %d allocated, preempt %d\n",
320 nr_allocated, preempt_count);
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700321 for (i = 0; i < (long_run ? 2000 : 3); i++) {
Matthew Wilcox1366c372016-03-17 14:21:45 -0700322 copy_tag_check();
323 printf("%d ", i);
324 fflush(stdout);
325 }
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800326 rcu_barrier();
Matthew Wilcox847d3572016-12-14 15:08:02 -0800327 printf("after copy_tag_check: %d allocated, preempt %d\n",
328 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700329}
330
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700331int main(int argc, char **argv)
Matthew Wilcox1366c372016-03-17 14:21:45 -0700332{
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700333 bool long_run = false;
334 int opt;
Matthew Wilcox061ef392016-12-14 15:08:08 -0800335 unsigned int seed = time(NULL);
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700336
Matthew Wilcox061ef392016-12-14 15:08:08 -0800337 while ((opt = getopt(argc, argv, "ls:")) != -1) {
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700338 if (opt == 'l')
339 long_run = true;
Matthew Wilcox061ef392016-12-14 15:08:08 -0800340 else if (opt == 's')
341 seed = strtoul(optarg, NULL, 0);
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700342 }
343
Matthew Wilcox061ef392016-12-14 15:08:08 -0800344 printf("random seed %u\n", seed);
345 srand(seed);
346
Matthew Wilcox1366c372016-03-17 14:21:45 -0700347 rcu_register_thread();
348 radix_tree_init();
349
350 regression1_test();
351 regression2_test();
Konstantin Khlebnikov2d6f45b2016-03-17 14:22:08 -0700352 regression3_test();
Ross Zwislereec48522016-10-11 13:51:21 -0700353 iteration_test();
Ross Zwisleraa1d62d2016-05-20 17:01:45 -0700354 single_thread_tests(long_run);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700355
Matthew Wilcox6df5ee72016-12-14 15:08:05 -0800356 /* Free any remaining preallocated nodes */
357 radix_tree_cpu_dead(0);
358
Konstantin Khlebnikovcfa40bc2016-12-14 15:08:14 -0800359 benchmark();
360
Matthew Wilcoxaf1c5cc2016-12-14 15:08:17 -0800361 rcu_barrier();
362 printf("after rcu_barrier: %d allocated, preempt %d\n",
Matthew Wilcox847d3572016-12-14 15:08:02 -0800363 nr_allocated, preempt_count);
Matthew Wilcox1366c372016-03-17 14:21:45 -0700364 rcu_unregister_thread();
365
366 exit(0);
367}