]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - lib/interval_tree_test.c
1 #include <linux/module.h>
2 #include <linux/moduleparam.h>
3 #include <linux/interval_tree.h>
4 #include <linux/random.h>
5 #include <linux/slab.h>
8 #define __param(type, name, init, msg) \
9 static type name = init; \
10 module_param(name, type, 0444); \
11 MODULE_PARM_DESC(name, msg);
13 __param(int, nnodes
, 100, "Number of nodes in the interval tree");
14 __param(int, perf_loops
, 100000, "Number of iterations modifying the tree");
16 __param(int, nsearches
, 100, "Number of searches to the interval tree");
17 __param(int, search_loops
, 10000, "Number of iterations searching the tree");
20 static struct rb_root root
= RB_ROOT
;
21 static struct interval_tree_node
*nodes
= NULL
;
22 static u32
*queries
= NULL
;
24 static struct rnd_state rnd
;
26 static inline unsigned long
27 search(unsigned long query
, struct rb_root
*root
)
29 struct interval_tree_node
*node
;
30 unsigned long results
= 0;
32 for (node
= interval_tree_iter_first(root
, query
, query
); node
;
33 node
= interval_tree_iter_next(node
, query
, query
))
38 static void init(void)
42 for (i
= 0; i
< nnodes
; i
++) {
43 u32 a
= prandom_u32_state(&rnd
);
44 u32 b
= prandom_u32_state(&rnd
);
53 for (i
= 0; i
< nsearches
; i
++)
54 queries
[i
] = prandom_u32_state(&rnd
);
57 static int interval_tree_test_init(void)
60 unsigned long results
;
61 cycles_t time1
, time2
, time
;
63 nodes
= kmalloc(nnodes
* sizeof(struct interval_tree_node
), GFP_KERNEL
);
67 queries
= kmalloc(nsearches
* sizeof(int), GFP_KERNEL
);
73 printk(KERN_ALERT
"interval tree insert/remove");
75 prandom_seed_state(&rnd
, 3141592653589793238ULL);
80 for (i
= 0; i
< perf_loops
; i
++) {
81 for (j
= 0; j
< nnodes
; j
++)
82 interval_tree_insert(nodes
+ j
, &root
);
83 for (j
= 0; j
< nnodes
; j
++)
84 interval_tree_remove(nodes
+ j
, &root
);
90 time
= div_u64(time
, perf_loops
);
91 printk(" -> %llu cycles\n", (unsigned long long)time
);
93 printk(KERN_ALERT
"interval tree search");
95 for (j
= 0; j
< nnodes
; j
++)
96 interval_tree_insert(nodes
+ j
, &root
);
101 for (i
= 0; i
< search_loops
; i
++)
102 for (j
= 0; j
< nsearches
; j
++)
103 results
+= search(queries
[j
], &root
);
105 time2
= get_cycles();
106 time
= time2
- time1
;
108 time
= div_u64(time
, search_loops
);
109 results
= div_u64(results
, search_loops
);
110 printk(" -> %llu cycles (%lu results)\n",
111 (unsigned long long)time
, results
);
116 return -EAGAIN
; /* Fail will directly unload the module */
119 static void interval_tree_test_exit(void)
121 printk(KERN_ALERT
"test exit\n");
124 module_init(interval_tree_test_init
)
125 module_exit(interval_tree_test_exit
)
127 MODULE_LICENSE("GPL");
128 MODULE_AUTHOR("Michel Lespinasse");
129 MODULE_DESCRIPTION("Interval Tree test");