blob: baf7c835c57c90515e97151dd8c30ed0142f07c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 Red Black Trees
3 (C) 1999 Andrea Arcangeli <andrea@suse.de>
4 (C) 2002 David Woodhouse <dwmw2@infradead.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 linux/lib/rbtree.c
21*/
22
23#include <linux/rbtree.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050024#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Michel Lespinasse5bc91882012-10-08 16:30:47 -070026/*
27 * red-black trees properties: http://en.wikipedia.org/wiki/Rbtree
28 *
29 * 1) A node is either red or black
30 * 2) The root is black
31 * 3) All leaves (NULL) are black
32 * 4) Both children of every red node are black
33 * 5) Every simple path from root to leaves contains the same number
34 * of black nodes.
35 *
36 * 4 and 5 give the O(log n) guarantee, since 4 implies you cannot have two
37 * consecutive red nodes in a path and every red node is therefore followed by
38 * a black. So if B is the number of black nodes on every simple path (as per
39 * 5), then the longest possible path due to 4 is 2B.
40 *
41 * We shall indicate color with case, where black nodes are uppercase and red
42 * nodes will be lowercase.
43 */
44
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -070045#define RB_RED 0
46#define RB_BLACK 1
47
48#define rb_color(r) ((r)->__rb_parent_color & 1)
49#define rb_is_red(r) (!rb_color(r))
50#define rb_is_black(r) rb_color(r)
51#define rb_set_red(r) do { (r)->__rb_parent_color &= ~1; } while (0)
52#define rb_set_black(r) do { (r)->__rb_parent_color |= 1; } while (0)
53
54static inline void rb_set_parent(struct rb_node *rb, struct rb_node *p)
55{
56 rb->__rb_parent_color = rb_color(rb) | (unsigned long)p;
57}
58static inline void rb_set_color(struct rb_node *rb, int color)
59{
60 rb->__rb_parent_color = (rb->__rb_parent_color & ~1) | color;
61}
62
Michel Lespinasse5bc91882012-10-08 16:30:47 -070063static inline void rb_set_parent_color(struct rb_node *rb,
64 struct rb_node *p, int color)
65{
66 rb->__rb_parent_color = (unsigned long)p | color;
67}
68
69static inline struct rb_node *rb_red_parent(struct rb_node *red)
70{
71 return (struct rb_node *)red->__rb_parent_color;
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void __rb_rotate_left(struct rb_node *node, struct rb_root *root)
75{
76 struct rb_node *right = node->rb_right;
David Woodhouse55a98102006-04-21 13:35:51 +010077 struct rb_node *parent = rb_parent(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 if ((node->rb_right = right->rb_left))
David Woodhouse55a98102006-04-21 13:35:51 +010080 rb_set_parent(right->rb_left, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 right->rb_left = node;
82
David Woodhouse55a98102006-04-21 13:35:51 +010083 rb_set_parent(right, parent);
84
85 if (parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 {
David Woodhouse55a98102006-04-21 13:35:51 +010087 if (node == parent->rb_left)
88 parent->rb_left = right;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 else
David Woodhouse55a98102006-04-21 13:35:51 +010090 parent->rb_right = right;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92 else
93 root->rb_node = right;
David Woodhouse55a98102006-04-21 13:35:51 +010094 rb_set_parent(node, right);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static void __rb_rotate_right(struct rb_node *node, struct rb_root *root)
98{
99 struct rb_node *left = node->rb_left;
David Woodhouse55a98102006-04-21 13:35:51 +0100100 struct rb_node *parent = rb_parent(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 if ((node->rb_left = left->rb_right))
David Woodhouse55a98102006-04-21 13:35:51 +0100103 rb_set_parent(left->rb_right, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 left->rb_right = node;
105
David Woodhouse55a98102006-04-21 13:35:51 +0100106 rb_set_parent(left, parent);
107
108 if (parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 {
David Woodhouse55a98102006-04-21 13:35:51 +0100110 if (node == parent->rb_right)
111 parent->rb_right = left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 else
David Woodhouse55a98102006-04-21 13:35:51 +0100113 parent->rb_left = left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115 else
116 root->rb_node = left;
David Woodhouse55a98102006-04-21 13:35:51 +0100117 rb_set_parent(node, left);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700120/*
121 * Helper function for rotations:
122 * - old's parent and color get assigned to new
123 * - old gets assigned new as a parent and 'color' as a color.
124 */
125static inline void
126__rb_rotate_set_parents(struct rb_node *old, struct rb_node *new,
127 struct rb_root *root, int color)
128{
129 struct rb_node *parent = rb_parent(old);
130 new->__rb_parent_color = old->__rb_parent_color;
131 rb_set_parent_color(old, new, color);
132 if (parent) {
133 if (parent->rb_left == old)
134 parent->rb_left = new;
135 else
136 parent->rb_right = new;
137 } else
138 root->rb_node = new;
139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141void rb_insert_color(struct rb_node *node, struct rb_root *root)
142{
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700143 struct rb_node *parent = rb_red_parent(node), *gparent, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Michel Lespinasse6d584522012-10-08 16:30:44 -0700145 while (true) {
146 /*
147 * Loop invariant: node is red
148 *
149 * If there is a black parent, we are done.
150 * Otherwise, take some corrective action as we don't
151 * want a red root or two consecutive red nodes.
152 */
Michel Lespinasse6d584522012-10-08 16:30:44 -0700153 if (!parent) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700154 rb_set_parent_color(node, NULL, RB_BLACK);
Michel Lespinasse6d584522012-10-08 16:30:44 -0700155 break;
156 } else if (rb_is_black(parent))
157 break;
158
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700159 gparent = rb_red_parent(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700161 if (parent == gparent->rb_left) {
162 tmp = gparent->rb_right;
163 if (tmp && rb_is_red(tmp)) {
164 /*
165 * Case 1 - color flips
166 *
167 * G g
168 * / \ / \
169 * p u --> P U
170 * / /
171 * n N
172 *
173 * However, since g's parent might be red, and
174 * 4) does not allow this, we need to recurse
175 * at g.
176 */
177 rb_set_parent_color(tmp, gparent, RB_BLACK);
178 rb_set_parent_color(parent, gparent, RB_BLACK);
179 node = gparent;
180 parent = rb_parent(node);
181 rb_set_parent_color(node, parent, RB_RED);
182 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Michel Lespinasse1f052862012-10-08 16:30:42 -0700185 if (parent->rb_right == node) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700186 /*
187 * Case 2 - left rotate at parent
188 *
189 * G G
190 * / \ / \
191 * p U --> n U
192 * \ /
193 * n p
194 *
195 * This still leaves us in violation of 4), the
196 * continuation into Case 3 will fix that.
197 */
198 parent->rb_right = tmp = node->rb_left;
199 node->rb_left = parent;
200 if (tmp)
201 rb_set_parent_color(tmp, parent,
202 RB_BLACK);
203 rb_set_parent_color(parent, node, RB_RED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 parent = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700207 /*
208 * Case 3 - right rotate at gparent
209 *
210 * G P
211 * / \ / \
212 * p U --> n g
213 * / \
214 * n U
215 */
216 gparent->rb_left = tmp = parent->rb_right;
217 parent->rb_right = gparent;
218 if (tmp)
219 rb_set_parent_color(tmp, gparent, RB_BLACK);
220 __rb_rotate_set_parents(gparent, parent, root, RB_RED);
Michel Lespinasse1f052862012-10-08 16:30:42 -0700221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 } else {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700223 tmp = gparent->rb_left;
224 if (tmp && rb_is_red(tmp)) {
225 /* Case 1 - color flips */
226 rb_set_parent_color(tmp, gparent, RB_BLACK);
227 rb_set_parent_color(parent, gparent, RB_BLACK);
228 node = gparent;
229 parent = rb_parent(node);
230 rb_set_parent_color(node, parent, RB_RED);
231 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Michel Lespinasse1f052862012-10-08 16:30:42 -0700234 if (parent->rb_left == node) {
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700235 /* Case 2 - right rotate at parent */
236 parent->rb_left = tmp = node->rb_right;
237 node->rb_right = parent;
238 if (tmp)
239 rb_set_parent_color(tmp, parent,
240 RB_BLACK);
241 rb_set_parent_color(parent, node, RB_RED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 parent = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
Michel Lespinasse5bc91882012-10-08 16:30:47 -0700245 /* Case 3 - left rotate at gparent */
246 gparent->rb_right = tmp = parent->rb_left;
247 parent->rb_left = gparent;
248 if (tmp)
249 rb_set_parent_color(tmp, gparent, RB_BLACK);
250 __rb_rotate_set_parents(gparent, parent, root, RB_RED);
Michel Lespinasse1f052862012-10-08 16:30:42 -0700251 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255EXPORT_SYMBOL(rb_insert_color);
256
257static void __rb_erase_color(struct rb_node *node, struct rb_node *parent,
258 struct rb_root *root)
259{
260 struct rb_node *other;
261
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700262 while (true) {
263 /*
264 * Loop invariant: all leaf paths going through node have a
265 * black node count that is 1 lower than other leaf paths.
266 *
267 * If node is red, we can flip it to black to adjust.
268 * If node is the root, all leaf paths go through it.
269 * Otherwise, we need to adjust the tree through color flips
270 * and tree rotations as per one of the 4 cases below.
271 */
272 if (node && rb_is_red(node)) {
273 rb_set_black(node);
274 break;
275 } else if (!parent) {
276 break;
277 } else if (parent->rb_left == node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 other = parent->rb_right;
David Woodhouse55a98102006-04-21 13:35:51 +0100279 if (rb_is_red(other))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 {
David Woodhouse55a98102006-04-21 13:35:51 +0100281 rb_set_black(other);
282 rb_set_red(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 __rb_rotate_left(parent, root);
284 other = parent->rb_right;
285 }
David Woodhouse55a98102006-04-21 13:35:51 +0100286 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
287 (!other->rb_right || rb_is_black(other->rb_right)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 {
David Woodhouse55a98102006-04-21 13:35:51 +0100289 rb_set_red(other);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 node = parent;
David Woodhouse55a98102006-04-21 13:35:51 +0100291 parent = rb_parent(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 else
294 {
David Woodhouse55a98102006-04-21 13:35:51 +0100295 if (!other->rb_right || rb_is_black(other->rb_right))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 {
Wolfram Strepp55a63992009-03-31 15:23:45 -0700297 rb_set_black(other->rb_left);
David Woodhouse55a98102006-04-21 13:35:51 +0100298 rb_set_red(other);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 __rb_rotate_right(other, root);
300 other = parent->rb_right;
301 }
David Woodhouse2f3243a2006-06-05 20:19:05 +0100302 rb_set_color(other, rb_color(parent));
David Woodhouse55a98102006-04-21 13:35:51 +0100303 rb_set_black(parent);
Wolfram Strepp55a63992009-03-31 15:23:45 -0700304 rb_set_black(other->rb_right);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 __rb_rotate_left(parent, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
307 }
Michel Lespinassed6ff1272012-10-08 16:30:50 -0700308 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 other = parent->rb_left;
David Woodhouse55a98102006-04-21 13:35:51 +0100310 if (rb_is_red(other))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 {
David Woodhouse55a98102006-04-21 13:35:51 +0100312 rb_set_black(other);
313 rb_set_red(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 __rb_rotate_right(parent, root);
315 other = parent->rb_left;
316 }
David Woodhouse55a98102006-04-21 13:35:51 +0100317 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
318 (!other->rb_right || rb_is_black(other->rb_right)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 {
David Woodhouse55a98102006-04-21 13:35:51 +0100320 rb_set_red(other);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 node = parent;
David Woodhouse55a98102006-04-21 13:35:51 +0100322 parent = rb_parent(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 else
325 {
David Woodhouse55a98102006-04-21 13:35:51 +0100326 if (!other->rb_left || rb_is_black(other->rb_left))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 {
Wolfram Strepp55a63992009-03-31 15:23:45 -0700328 rb_set_black(other->rb_right);
David Woodhouse55a98102006-04-21 13:35:51 +0100329 rb_set_red(other);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 __rb_rotate_left(other, root);
331 other = parent->rb_left;
332 }
David Woodhouse2f3243a2006-06-05 20:19:05 +0100333 rb_set_color(other, rb_color(parent));
David Woodhouse55a98102006-04-21 13:35:51 +0100334 rb_set_black(parent);
Wolfram Strepp55a63992009-03-31 15:23:45 -0700335 rb_set_black(other->rb_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 __rb_rotate_right(parent, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 break;
338 }
339 }
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343void rb_erase(struct rb_node *node, struct rb_root *root)
344{
345 struct rb_node *child, *parent;
346 int color;
347
348 if (!node->rb_left)
349 child = node->rb_right;
350 else if (!node->rb_right)
351 child = node->rb_left;
352 else
353 {
354 struct rb_node *old = node, *left;
355
356 node = node->rb_right;
357 while ((left = node->rb_left) != NULL)
358 node = left;
Wolfram Strepp16c047a2009-06-16 15:34:11 -0700359
360 if (rb_parent(old)) {
361 if (rb_parent(old)->rb_left == old)
362 rb_parent(old)->rb_left = node;
363 else
364 rb_parent(old)->rb_right = node;
365 } else
366 root->rb_node = node;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 child = node->rb_right;
David Woodhouse55a98102006-04-21 13:35:51 +0100369 parent = rb_parent(node);
David Woodhouse2f3243a2006-06-05 20:19:05 +0100370 color = rb_color(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
David Woodhouse55a98102006-04-21 13:35:51 +0100372 if (parent == old) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 parent = node;
Wolfram Strepp4c601172009-06-16 15:34:12 -0700374 } else {
375 if (child)
376 rb_set_parent(child, parent);
David Woodhouse1975e592006-04-21 13:30:36 +0100377 parent->rb_left = child;
Wolfram Strepp4b324122009-06-16 15:34:13 -0700378
379 node->rb_right = old->rb_right;
380 rb_set_parent(old->rb_right, node);
Wolfram Strepp4c601172009-06-16 15:34:12 -0700381 }
David Woodhouse1975e592006-04-21 13:30:36 +0100382
Michel Lespinassebf7ad8e2012-10-08 16:30:37 -0700383 node->__rb_parent_color = old->__rb_parent_color;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 node->rb_left = old->rb_left;
David Woodhouse55a98102006-04-21 13:35:51 +0100385 rb_set_parent(old->rb_left, node);
Wolfram Strepp4b324122009-06-16 15:34:13 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 goto color;
388 }
389
David Woodhouse55a98102006-04-21 13:35:51 +0100390 parent = rb_parent(node);
David Woodhouse2f3243a2006-06-05 20:19:05 +0100391 color = rb_color(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (child)
David Woodhouse55a98102006-04-21 13:35:51 +0100394 rb_set_parent(child, parent);
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200395 if (parent)
396 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (parent->rb_left == node)
398 parent->rb_left = child;
399 else
400 parent->rb_right = child;
Pallipadi, Venkatesh17d9ddc2010-02-10 15:23:44 -0800401 }
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200402 else
403 root->rb_node = child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 color:
406 if (color == RB_BLACK)
407 __rb_erase_color(child, parent, root);
408}
409EXPORT_SYMBOL(rb_erase);
410
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200411static void rb_augment_path(struct rb_node *node, rb_augment_f func, void *data)
412{
413 struct rb_node *parent;
414
415up:
416 func(node, data);
417 parent = rb_parent(node);
418 if (!parent)
419 return;
420
421 if (node == parent->rb_left && parent->rb_right)
422 func(parent->rb_right, data);
423 else if (parent->rb_left)
424 func(parent->rb_left, data);
425
426 node = parent;
427 goto up;
428}
429
430/*
431 * after inserting @node into the tree, update the tree to account for
432 * both the new entry and any damage done by rebalance
433 */
434void rb_augment_insert(struct rb_node *node, rb_augment_f func, void *data)
435{
436 if (node->rb_left)
437 node = node->rb_left;
438 else if (node->rb_right)
439 node = node->rb_right;
440
441 rb_augment_path(node, func, data);
442}
Andreas Gruenbacher0b6bb662011-01-26 15:55:36 +0100443EXPORT_SYMBOL(rb_augment_insert);
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200444
445/*
446 * before removing the node, find the deepest node on the rebalance path
447 * that will still be there after @node gets removed
448 */
449struct rb_node *rb_augment_erase_begin(struct rb_node *node)
450{
451 struct rb_node *deepest;
452
453 if (!node->rb_right && !node->rb_left)
454 deepest = rb_parent(node);
455 else if (!node->rb_right)
456 deepest = node->rb_left;
457 else if (!node->rb_left)
458 deepest = node->rb_right;
459 else {
460 deepest = rb_next(node);
461 if (deepest->rb_right)
462 deepest = deepest->rb_right;
463 else if (rb_parent(deepest) != node)
464 deepest = rb_parent(deepest);
465 }
466
467 return deepest;
468}
Andreas Gruenbacher0b6bb662011-01-26 15:55:36 +0100469EXPORT_SYMBOL(rb_augment_erase_begin);
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200470
471/*
472 * after removal, update the tree to account for the removed entry
473 * and any rebalance damage.
474 */
475void rb_augment_erase_end(struct rb_node *node, rb_augment_f func, void *data)
476{
477 if (node)
478 rb_augment_path(node, func, data);
479}
Andreas Gruenbacher0b6bb662011-01-26 15:55:36 +0100480EXPORT_SYMBOL(rb_augment_erase_end);
Peter Zijlstrab945d6b2010-05-29 15:31:43 +0200481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * This function returns the first node (in sort order) of the tree.
484 */
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000485struct rb_node *rb_first(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 struct rb_node *n;
488
489 n = root->rb_node;
490 if (!n)
491 return NULL;
492 while (n->rb_left)
493 n = n->rb_left;
494 return n;
495}
496EXPORT_SYMBOL(rb_first);
497
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000498struct rb_node *rb_last(const struct rb_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct rb_node *n;
501
502 n = root->rb_node;
503 if (!n)
504 return NULL;
505 while (n->rb_right)
506 n = n->rb_right;
507 return n;
508}
509EXPORT_SYMBOL(rb_last);
510
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000511struct rb_node *rb_next(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
David Woodhouse55a98102006-04-21 13:35:51 +0100513 struct rb_node *parent;
514
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700515 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200516 return NULL;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* If we have a right-hand child, go down and then left as far
519 as we can. */
520 if (node->rb_right) {
521 node = node->rb_right;
522 while (node->rb_left)
523 node=node->rb_left;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000524 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 /* No right-hand children. Everything down and left is
528 smaller than us, so any 'next' node must be in the general
529 direction of our parent. Go up the tree; any time the
530 ancestor is a right-hand child of its parent, keep going
531 up. First time it's a left-hand child of its parent, said
532 parent is our 'next' node. */
David Woodhouse55a98102006-04-21 13:35:51 +0100533 while ((parent = rb_parent(node)) && node == parent->rb_right)
534 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
David Woodhouse55a98102006-04-21 13:35:51 +0100536 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538EXPORT_SYMBOL(rb_next);
539
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000540struct rb_node *rb_prev(const struct rb_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
David Woodhouse55a98102006-04-21 13:35:51 +0100542 struct rb_node *parent;
543
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700544 if (RB_EMPTY_NODE(node))
Jens Axboe10fd48f2006-07-11 21:15:52 +0200545 return NULL;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* If we have a left-hand child, go down and then right as far
548 as we can. */
549 if (node->rb_left) {
550 node = node->rb_left;
551 while (node->rb_right)
552 node=node->rb_right;
Artem Bityutskiyf4b477c2009-01-10 11:12:09 +0000553 return (struct rb_node *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
556 /* No left-hand children. Go up till we find an ancestor which
557 is a right-hand child of its parent */
David Woodhouse55a98102006-04-21 13:35:51 +0100558 while ((parent = rb_parent(node)) && node == parent->rb_left)
559 node = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
David Woodhouse55a98102006-04-21 13:35:51 +0100561 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563EXPORT_SYMBOL(rb_prev);
564
565void rb_replace_node(struct rb_node *victim, struct rb_node *new,
566 struct rb_root *root)
567{
David Woodhouse55a98102006-04-21 13:35:51 +0100568 struct rb_node *parent = rb_parent(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* Set the surrounding nodes to point to the replacement */
571 if (parent) {
572 if (victim == parent->rb_left)
573 parent->rb_left = new;
574 else
575 parent->rb_right = new;
576 } else {
577 root->rb_node = new;
578 }
579 if (victim->rb_left)
David Woodhouse55a98102006-04-21 13:35:51 +0100580 rb_set_parent(victim->rb_left, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (victim->rb_right)
David Woodhouse55a98102006-04-21 13:35:51 +0100582 rb_set_parent(victim->rb_right, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* Copy the pointers/colour from the victim to the replacement */
585 *new = *victim;
586}
587EXPORT_SYMBOL(rb_replace_node);