blob: e6337fce08f2f6b1ba2453376a641dce3aba7291 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 Red Black Trees
4 (C) 1999 Andrea Arcangeli <andrea@suse.de>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 linux/include/linux/rbtree.h
8
9 To use rbtrees you'll have to implement your own insert and search cores.
10 This will avoid us to use callbacks and to drop drammatically performances.
11 I know it's not the cleaner way, but in C (not in C++) to get
12 performances and genericity...
13
Michel Lespinasse1457d282012-10-08 16:30:28 -070014 See Documentation/rbtree.txt for documentation and samples.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015*/
16
17#ifndef _LINUX_RBTREE_H
18#define _LINUX_RBTREE_H
19
20#include <linux/kernel.h>
21#include <linux/stddef.h>
Peter Zijlstrad72da4a2015-05-27 11:09:36 +093022#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070024struct rb_node {
25 unsigned long __rb_parent_color;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct rb_node *rb_right;
27 struct rb_node *rb_left;
David Woodhousee9771452006-04-21 23:15:39 +010028} __attribute__((aligned(sizeof(long))));
29 /* The alignment might seem pointless, but allegedly CRIS needs it */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070031struct rb_root {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 struct rb_node *rb_node;
33};
34
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -070035/*
36 * Leftmost-cached rbtrees.
37 *
38 * We do not cache the rightmost node based on footprint
39 * size vs number of potential users that could benefit
40 * from O(1) rb_last(). Just not worth it, users that want
41 * this feature can always implement the logic explicitly.
42 * Furthermore, users that want to cache both pointers may
43 * find it a bit asymmetric, but that's ok.
44 */
45struct rb_root_cached {
46 struct rb_root rb_root;
47 struct rb_node *rb_leftmost;
48};
David Woodhouse55a98102006-04-21 13:35:51 +010049
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070050#define rb_parent(r) ((struct rb_node *)((r)->__rb_parent_color & ~3))
David Woodhouse55a98102006-04-21 13:35:51 +010051
Peter Zijlstrab945d6b2010-05-29 15:31:43 +020052#define RB_ROOT (struct rb_root) { NULL, }
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -070053#define RB_ROOT_CACHED (struct rb_root_cached) { {NULL, }, NULL }
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define rb_entry(ptr, type, member) container_of(ptr, type, member)
55
Davidlohr Buesoa460bec2016-01-20 15:00:42 -080056#define RB_EMPTY_ROOT(root) (READ_ONCE((root)->rb_node) == NULL)
Jens Axboedd67d052006-06-21 09:36:18 +020057
John de la Garza7647f142015-02-17 13:46:04 -080058/* 'empty' nodes are nodes that are known not to be inserted in an rbtree */
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070059#define RB_EMPTY_NODE(node) \
60 ((node)->__rb_parent_color == (unsigned long)(node))
61#define RB_CLEAR_NODE(node) \
62 ((node)->__rb_parent_color = (unsigned long)(node))
Michel Lespinasse4c199a92012-10-08 16:30:32 -070063
John Stultz88d19cf2011-01-03 18:59:43 -080064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065extern void rb_insert_color(struct rb_node *, struct rb_root *);
66extern void rb_erase(struct rb_node *, struct rb_root *);
67
Michel Lespinasse14b94af2012-10-08 16:31:17 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* Find logical next and previous nodes in a tree */
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +000070extern struct rb_node *rb_next(const struct rb_node *);
71extern struct rb_node *rb_prev(const struct rb_node *);
72extern struct rb_node *rb_first(const struct rb_root *);
73extern struct rb_node *rb_last(const struct rb_root *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Davidlohr Buesocd9e61e2017-09-08 16:14:36 -070075extern void rb_insert_color_cached(struct rb_node *,
76 struct rb_root_cached *, bool);
77extern void rb_erase_cached(struct rb_node *node, struct rb_root_cached *);
78/* Same as rb_first(), but O(1) */
79#define rb_first_cached(root) (root)->rb_leftmost
80
Cody P Schafer9dee5c52013-09-11 14:25:10 -070081/* Postorder iteration - always visit the parent after its children */
82extern struct rb_node *rb_first_postorder(const struct rb_root *);
83extern struct rb_node *rb_next_postorder(const struct rb_node *);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Fast replacement of a single node without remove/rebalance/add/rebalance */
Peter Zijlstrad72da4a2015-05-27 11:09:36 +093086extern void rb_replace_node(struct rb_node *victim, struct rb_node *new,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct rb_root *root);
David Howellsc1adf202016-07-01 07:53:51 +010088extern void rb_replace_node_rcu(struct rb_node *victim, struct rb_node *new,
89 struct rb_root *root);
Chris Wilson338f1d92017-12-14 15:32:28 -080090extern void rb_replace_node_cached(struct rb_node *victim, struct rb_node *new,
91 struct rb_root_cached *root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Peter Zijlstrad72da4a2015-05-27 11:09:36 +093093static inline void rb_link_node(struct rb_node *node, struct rb_node *parent,
94 struct rb_node **rb_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070096 node->__rb_parent_color = (unsigned long)parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 node->rb_left = node->rb_right = NULL;
98
99 *rb_link = node;
100}
101
Peter Zijlstrad72da4a2015-05-27 11:09:36 +0930102static inline void rb_link_node_rcu(struct rb_node *node, struct rb_node *parent,
103 struct rb_node **rb_link)
104{
105 node->__rb_parent_color = (unsigned long)parent;
106 node->rb_left = node->rb_right = NULL;
107
108 rcu_assign_pointer(*rb_link, node);
109}
110
Jan Kara1310a5a2013-11-12 15:11:19 -0800111#define rb_entry_safe(ptr, type, member) \
112 ({ typeof(ptr) ____ptr = (ptr); \
113 ____ptr ? rb_entry(____ptr, type, member) : NULL; \
114 })
115
Cody P Schafer2b5290892013-09-11 14:25:11 -0700116/**
Cody P Schafer8de1ee72015-11-06 16:31:28 -0800117 * rbtree_postorder_for_each_entry_safe - iterate in post-order over rb_root of
118 * given type allowing the backing memory of @pos to be invalidated
Cody P Schafer2b5290892013-09-11 14:25:11 -0700119 *
120 * @pos: the 'type *' to use as a loop cursor.
121 * @n: another 'type *' to use as temporary storage
122 * @root: 'rb_root *' of the rbtree.
123 * @field: the name of the rb_node field within 'type'.
Cody P Schafer8de1ee72015-11-06 16:31:28 -0800124 *
125 * rbtree_postorder_for_each_entry_safe() provides a similar guarantee as
126 * list_for_each_entry_safe() and allows the iteration to continue independent
127 * of changes to @pos by the body of the loop.
128 *
129 * Note, however, that it cannot handle other modifications that re-order the
130 * rbtree it is iterating over. This includes calling rb_erase() on @pos, as
131 * rb_erase() may rebalance the tree, causing us to miss some nodes.
Cody P Schafer2b5290892013-09-11 14:25:11 -0700132 */
133#define rbtree_postorder_for_each_entry_safe(pos, n, root, field) \
Jan Kara1310a5a2013-11-12 15:11:19 -0800134 for (pos = rb_entry_safe(rb_first_postorder(root), typeof(*pos), field); \
135 pos && ({ n = rb_entry_safe(rb_next_postorder(&pos->field), \
136 typeof(*pos), field); 1; }); \
137 pos = n)
Cody P Schafer2b5290892013-09-11 14:25:11 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#endif /* _LINUX_RBTREE_H */