blob: 0fef6364a9580c817dcf331fbd36e91bf852efbe [file] [log] [blame]
Michel Lespinassefff3fd82012-10-08 16:31:23 -07001#include <linux/module.h>
Davidlohr Buesoa54dae02017-07-10 15:51:46 -07002#include <linux/moduleparam.h>
Michel Lespinassefff3fd82012-10-08 16:31:23 -07003#include <linux/interval_tree.h>
4#include <linux/random.h>
Davidlohr Buesoa54dae02017-07-10 15:51:46 -07005#include <linux/slab.h>
Michel Lespinassefff3fd82012-10-08 16:31:23 -07006#include <asm/timex.h>
7
Davidlohr Buesoa54dae02017-07-10 15:51:46 -07008#define __param(type, name, init, msg) \
9 static type name = init; \
10 module_param(name, type, 0444); \
11 MODULE_PARM_DESC(name, msg);
12
13__param(int, nnodes, 100, "Number of nodes in the interval tree");
14__param(int, perf_loops, 100000, "Number of iterations modifying the tree");
15
16__param(int, nsearches, 100, "Number of searches to the interval tree");
17__param(int, search_loops, 10000, "Number of iterations searching the tree");
18
Davidlohr Buesoa8ec14d2017-07-10 15:51:49 -070019__param(uint, max_endpoint, ~0, "Largest value for the interval's endpoint");
Michel Lespinassefff3fd82012-10-08 16:31:23 -070020
21static struct rb_root root = RB_ROOT;
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070022static struct interval_tree_node *nodes = NULL;
23static u32 *queries = NULL;
Michel Lespinassefff3fd82012-10-08 16:31:23 -070024
25static struct rnd_state rnd;
26
27static inline unsigned long
28search(unsigned long query, struct rb_root *root)
29{
30 struct interval_tree_node *node;
31 unsigned long results = 0;
32
33 for (node = interval_tree_iter_first(root, query, query); node;
34 node = interval_tree_iter_next(node, query, query))
35 results++;
36 return results;
37}
38
39static void init(void)
40{
41 int i;
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070042
43 for (i = 0; i < nnodes; i++) {
Davidlohr Buesoa8ec14d2017-07-10 15:51:49 -070044 u32 b = (prandom_u32_state(&rnd) >> 4) % max_endpoint;
45 u32 a = (prandom_u32_state(&rnd) >> 4) % b;
46
47 nodes[i].start = a;
48 nodes[i].last = b;
Michel Lespinassefff3fd82012-10-08 16:31:23 -070049 }
Davidlohr Buesoa8ec14d2017-07-10 15:51:49 -070050
51 /*
52 * Limit the search scope to what the user defined.
53 * Otherwise we are merely measuring empty walks,
54 * which is pointless.
55 */
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070056 for (i = 0; i < nsearches; i++)
Davidlohr Buesoa8ec14d2017-07-10 15:51:49 -070057 queries[i] = (prandom_u32_state(&rnd) >> 4) % max_endpoint;
Michel Lespinassefff3fd82012-10-08 16:31:23 -070058}
59
60static int interval_tree_test_init(void)
61{
62 int i, j;
63 unsigned long results;
64 cycles_t time1, time2, time;
65
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070066 nodes = kmalloc(nnodes * sizeof(struct interval_tree_node), GFP_KERNEL);
67 if (!nodes)
68 return -ENOMEM;
69
70 queries = kmalloc(nsearches * sizeof(int), GFP_KERNEL);
71 if (!queries) {
72 kfree(nodes);
73 return -ENOMEM;
74 }
75
Michel Lespinassefff3fd82012-10-08 16:31:23 -070076 printk(KERN_ALERT "interval tree insert/remove");
77
Akinobu Mita496f2f92012-12-17 16:04:23 -080078 prandom_seed_state(&rnd, 3141592653589793238ULL);
Michel Lespinassefff3fd82012-10-08 16:31:23 -070079 init();
80
81 time1 = get_cycles();
82
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070083 for (i = 0; i < perf_loops; i++) {
84 for (j = 0; j < nnodes; j++)
Michel Lespinassefff3fd82012-10-08 16:31:23 -070085 interval_tree_insert(nodes + j, &root);
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070086 for (j = 0; j < nnodes; j++)
Michel Lespinassefff3fd82012-10-08 16:31:23 -070087 interval_tree_remove(nodes + j, &root);
88 }
89
90 time2 = get_cycles();
91 time = time2 - time1;
92
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070093 time = div_u64(time, perf_loops);
Michel Lespinassefff3fd82012-10-08 16:31:23 -070094 printk(" -> %llu cycles\n", (unsigned long long)time);
95
96 printk(KERN_ALERT "interval tree search");
97
Davidlohr Buesoa54dae02017-07-10 15:51:46 -070098 for (j = 0; j < nnodes; j++)
Michel Lespinassefff3fd82012-10-08 16:31:23 -070099 interval_tree_insert(nodes + j, &root);
100
101 time1 = get_cycles();
102
103 results = 0;
Davidlohr Buesoa54dae02017-07-10 15:51:46 -0700104 for (i = 0; i < search_loops; i++)
105 for (j = 0; j < nsearches; j++)
Michel Lespinassefff3fd82012-10-08 16:31:23 -0700106 results += search(queries[j], &root);
107
108 time2 = get_cycles();
109 time = time2 - time1;
110
Davidlohr Buesoa54dae02017-07-10 15:51:46 -0700111 time = div_u64(time, search_loops);
112 results = div_u64(results, search_loops);
Michel Lespinassefff3fd82012-10-08 16:31:23 -0700113 printk(" -> %llu cycles (%lu results)\n",
114 (unsigned long long)time, results);
115
Davidlohr Buesoa54dae02017-07-10 15:51:46 -0700116 kfree(queries);
117 kfree(nodes);
118
Michel Lespinassefff3fd82012-10-08 16:31:23 -0700119 return -EAGAIN; /* Fail will directly unload the module */
120}
121
122static void interval_tree_test_exit(void)
123{
124 printk(KERN_ALERT "test exit\n");
125}
126
127module_init(interval_tree_test_init)
128module_exit(interval_tree_test_exit)
129
130MODULE_LICENSE("GPL");
131MODULE_AUTHOR("Michel Lespinasse");
132MODULE_DESCRIPTION("Interval Tree test");