Skip to content
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.

Commit

Permalink
rb_tree: reorganize code in rb_erase() for additional changes
Browse files Browse the repository at this point in the history
First, move some code around in order to make the next change more obvious.

[[email protected]: coding-style fixes]
Signed-off-by: Peter Zijlstra <[email protected]>
Signed-off-by: Wolfram Strepp <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
strepwo authored and torvalds committed Jun 17, 2009
1 parent 130b76c commit 16c047a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/rbtree.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,15 @@ void rb_erase(struct rb_node *node, struct rb_root *root)
node = node->rb_right;
while ((left = node->rb_left) != NULL)
node = left;

if (rb_parent(old)) {
if (rb_parent(old)->rb_left == old)
rb_parent(old)->rb_left = node;
else
rb_parent(old)->rb_right = node;
} else
root->rb_node = node;

child = node->rb_right;
parent = rb_parent(node);
color = rb_color(node);
Expand All @@ -247,15 +256,6 @@ void rb_erase(struct rb_node *node, struct rb_root *root)
node->rb_right = old->rb_right;
node->rb_left = old->rb_left;

if (rb_parent(old))
{
if (rb_parent(old)->rb_left == old)
rb_parent(old)->rb_left = node;
else
rb_parent(old)->rb_right = node;
} else
root->rb_node = node;

rb_set_parent(old->rb_left, node);
if (old->rb_right)
rb_set_parent(old->rb_right, node);
Expand Down

0 comments on commit 16c047a

Please sign in to comment.