[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191028021442.5450-2-richardw.yang@linux.intel.com>
Date: Mon, 28 Oct 2019 10:14:42 +0800
From: Wei Yang <richardw.yang@...ux.intel.com>
To: akpm@...ux-foundation.org, peterz@...radead.org, walken@...gle.com,
richardw.yang@...ux.intel.com, dbueso@...e.de, tglx@...utronix.de
Cc: linux-kernel@...r.kernel.org
Subject: [Patch v2 2/2] lib/rbtree: get successor's color directly
After move parent assignment out, we can check the color directly.
Signed-off-by: Wei Yang <richardw.yang@...ux.intel.com>
---
include/linux/rbtree_augmented.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/include/linux/rbtree_augmented.h b/include/linux/rbtree_augmented.h
index 99c42e1a74b8..724b0d036b57 100644
--- a/include/linux/rbtree_augmented.h
+++ b/include/linux/rbtree_augmented.h
@@ -286,8 +286,7 @@ __rb_erase_augmented(struct rb_node *node, struct rb_root *root,
rb_set_parent_color(child2, parent, RB_BLACK);
rebalance = NULL;
} else {
- unsigned long pc2 = successor->__rb_parent_color;
- rebalance = __rb_is_black(pc2) ? parent : NULL;
+ rebalance = rb_is_black(successor) ? parent : NULL;
}
successor->__rb_parent_color = pc;
tmp = successor;
--
2.17.1
Powered by blists - more mailing lists