From: Wei Yang Date: Wed, 3 Jan 2018 11:42:27 +0000 (+0100) Subject: rbtree: fix typo in comment of rb_insert_color X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~862 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7762c2d6f4382776d97446f3fdaa1838443720cb;p=xen.git rbtree: fix typo in comment of rb_insert_color In case 1, it passes down the BLACK color from G to p and u, and maintains the color of n. By doing so, it maintains the black height of the sub-tree. While in the comment, it marks the color of n to BLACK. This is a typo and not consistents with the code. This patch fixs this typo in comment. Signed-off-by: Wei Yang Acked-by: Michel Lespinasse Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds [Linux commit 1b9c53e849aa65776d4f611d99aa09f856518dad] Ported to Xen for rb_insert_color API. Signed-off-by: Praveen Kumar Acked-by: Jan Beulich --- diff --git a/xen/common/rbtree.c b/xen/common/rbtree.c index 35bce0f598..9f5498a89d 100644 --- a/xen/common/rbtree.c +++ b/xen/common/rbtree.c @@ -135,7 +135,7 @@ void rb_insert_color(struct rb_node *node, struct rb_root *root) * / \ / \ * p u --> P U * / / - * n N + * n n * * However, since g's parent might be red, and * 4) does not allow this, we need to recurse