1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#ifndef _LINUX_RBTREE_H
18#define _LINUX_RBTREE_H
19
20#include <linux/kernel.h>
21#include <linux/stddef.h>
22#include <linux/rcupdate.h>
23
24struct rb_node {
25 unsigned long __rb_parent_color;
26 struct rb_node *rb_right;
27 struct rb_node *rb_left;
28} __attribute__((aligned(sizeof(long))));
29
30
31struct rb_root {
32 struct rb_node *rb_node;
33};
34
35#define rb_parent(r) ((struct rb_node *)((r)->__rb_parent_color & ~3))
36
37#define RB_ROOT (struct rb_root) { NULL, }
38#define rb_entry(ptr, type, member) container_of(ptr, type, member)
39
40#define RB_EMPTY_ROOT(root) (READ_ONCE((root)->rb_node) == NULL)
41
42
43#define RB_EMPTY_NODE(node) \
44 ((node)->__rb_parent_color == (unsigned long)(node))
45#define RB_CLEAR_NODE(node) \
46 ((node)->__rb_parent_color = (unsigned long)(node))
47
48
49extern void rb_insert_color(struct rb_node *, struct rb_root *);
50extern void rb_erase(struct rb_node *, struct rb_root *);
51
52
53
54extern struct rb_node *rb_next(const struct rb_node *);
55extern struct rb_node *rb_prev(const struct rb_node *);
56extern struct rb_node *rb_first(const struct rb_root *);
57extern struct rb_node *rb_last(const struct rb_root *);
58
59
60extern struct rb_node *rb_first_postorder(const struct rb_root *);
61extern struct rb_node *rb_next_postorder(const struct rb_node *);
62
63
64extern void rb_replace_node(struct rb_node *victim, struct rb_node *new,
65 struct rb_root *root);
66extern void rb_replace_node_rcu(struct rb_node *victim, struct rb_node *new,
67 struct rb_root *root);
68
69static inline void rb_link_node(struct rb_node *node, struct rb_node *parent,
70 struct rb_node **rb_link)
71{
72 node->__rb_parent_color = (unsigned long)parent;
73 node->rb_left = node->rb_right = NULL;
74
75 *rb_link = node;
76}
77
78static inline void rb_link_node_rcu(struct rb_node *node, struct rb_node *parent,
79 struct rb_node **rb_link)
80{
81 node->__rb_parent_color = (unsigned long)parent;
82 node->rb_left = node->rb_right = NULL;
83
84 rcu_assign_pointer(*rb_link, node);
85}
86
87#define rb_entry_safe(ptr, type, member) \
88 ({ typeof(ptr) ____ptr = (ptr); \
89 ____ptr ? rb_entry(____ptr, type, member) : NULL; \
90 })
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109#define rbtree_postorder_for_each_entry_safe(pos, n, root, field) \
110 for (pos = rb_entry_safe(rb_first_postorder(root), typeof(*pos), field); \
111 pos && ({ n = rb_entry_safe(rb_next_postorder(&pos->field), \
112 typeof(*pos), field); 1; }); \
113 pos = n)
114
115
116
117
118
119
120
121
122
123
124
125struct rb_root_cached {
126 struct rb_root rb_root;
127 struct rb_node *rb_leftmost;
128};
129
130#define RB_ROOT_CACHED (struct rb_root_cached) { {NULL, }, NULL }
131
132
133#define rb_first_cached(root) (root)->rb_leftmost
134
135static inline void rb_insert_color_cached(struct rb_node *node,
136 struct rb_root_cached *root,
137 bool leftmost)
138{
139 if (leftmost)
140 root->rb_leftmost = node;
141 rb_insert_color(node, &root->rb_root);
142}
143
144
145static inline struct rb_node *
146rb_erase_cached(struct rb_node *node, struct rb_root_cached *root)
147{
148 struct rb_node *leftmost = NULL;
149
150 if (root->rb_leftmost == node)
151 leftmost = root->rb_leftmost = rb_next(node);
152
153 rb_erase(node, &root->rb_root);
154
155 return leftmost;
156}
157
158static inline void rb_replace_node_cached(struct rb_node *victim,
159 struct rb_node *new,
160 struct rb_root_cached *root)
161{
162 if (root->rb_leftmost == victim)
163 root->rb_leftmost = new;
164 rb_replace_node(victim, new, &root->rb_root);
165}
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191static __always_inline struct rb_node *
192rb_add_cached(struct rb_node *node, struct rb_root_cached *tree,
193 bool (*less)(struct rb_node *, const struct rb_node *))
194{
195 struct rb_node **link = &tree->rb_root.rb_node;
196 struct rb_node *parent = NULL;
197 bool leftmost = true;
198
199 while (*link) {
200 parent = *link;
201 if (less(node, parent)) {
202 link = &parent->rb_left;
203 } else {
204 link = &parent->rb_right;
205 leftmost = false;
206 }
207 }
208
209 rb_link_node(node, parent, link);
210 rb_insert_color_cached(node, tree, leftmost);
211
212 return leftmost ? node : NULL;
213}
214
215
216
217
218
219
220
221static __always_inline void
222rb_add(struct rb_node *node, struct rb_root *tree,
223 bool (*less)(struct rb_node *, const struct rb_node *))
224{
225 struct rb_node **link = &tree->rb_node;
226 struct rb_node *parent = NULL;
227
228 while (*link) {
229 parent = *link;
230 if (less(node, parent))
231 link = &parent->rb_left;
232 else
233 link = &parent->rb_right;
234 }
235
236 rb_link_node(node, parent, link);
237 rb_insert_color(node, tree);
238}
239
240
241
242
243
244
245
246
247
248
249static __always_inline struct rb_node *
250rb_find_add(struct rb_node *node, struct rb_root *tree,
251 int (*cmp)(struct rb_node *, const struct rb_node *))
252{
253 struct rb_node **link = &tree->rb_node;
254 struct rb_node *parent = NULL;
255 int c;
256
257 while (*link) {
258 parent = *link;
259 c = cmp(node, parent);
260
261 if (c < 0)
262 link = &parent->rb_left;
263 else if (c > 0)
264 link = &parent->rb_right;
265 else
266 return parent;
267 }
268
269 rb_link_node(node, parent, link);
270 rb_insert_color(node, tree);
271 return NULL;
272}
273
274
275
276
277
278
279
280
281
282static __always_inline struct rb_node *
283rb_find(const void *key, const struct rb_root *tree,
284 int (*cmp)(const void *key, const struct rb_node *))
285{
286 struct rb_node *node = tree->rb_node;
287
288 while (node) {
289 int c = cmp(key, node);
290
291 if (c < 0)
292 node = node->rb_left;
293 else if (c > 0)
294 node = node->rb_right;
295 else
296 return node;
297 }
298
299 return NULL;
300}
301
302
303
304
305
306
307
308
309
310static __always_inline struct rb_node *
311rb_find_first(const void *key, const struct rb_root *tree,
312 int (*cmp)(const void *key, const struct rb_node *))
313{
314 struct rb_node *node = tree->rb_node;
315 struct rb_node *match = NULL;
316
317 while (node) {
318 int c = cmp(key, node);
319
320 if (c <= 0) {
321 if (!c)
322 match = node;
323 node = node->rb_left;
324 } else if (c > 0) {
325 node = node->rb_right;
326 }
327 }
328
329 return match;
330}
331
332
333
334
335
336
337
338
339
340static __always_inline struct rb_node *
341rb_next_match(const void *key, struct rb_node *node,
342 int (*cmp)(const void *key, const struct rb_node *))
343{
344 node = rb_next(node);
345 if (node && cmp(key, node))
346 node = NULL;
347 return node;
348}
349
350
351
352
353
354
355
356
357#define rb_for_each(node, key, tree, cmp) \
358 for ((node) = rb_find_first((key), (tree), (cmp)); \
359 (node); (node) = rb_next_match((key), (node), (cmp)))
360
361#endif
362