The patch titled Subject: lib/rbtree.c: fix typo in comment of __rb_insert() has been added to the -mm tree. Its filename is rbtree-fix-typo-in-comment-of-__rb_insert.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/rbtree-fix-typo-in-comment-of-__rb_insert.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/rbtree-fix-typo-in-comment-of-__rb_insert.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Wei Yang <weiyang@xxxxxxxxxxxxxxxxxx> Subject: lib/rbtree.c: fix typo in comment of __rb_insert() 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 <weiyang@xxxxxxxxxxxxxxxxxx> Cc: Michel Lespinasse <walken@xxxxxxxxxx> Cc: Xiao Guangrong <xiaoguangrong@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/rbtree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/rbtree.c~rbtree-fix-typo-in-comment-of-__rb_insert lib/rbtree.c --- a/lib/rbtree.c~rbtree-fix-typo-in-comment-of-__rb_insert +++ a/lib/rbtree.c @@ -101,7 +101,7 @@ __rb_insert(struct rb_node *node, struct * / \ / \ * 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 _ Patches currently in -mm which might be from weiyang@xxxxxxxxxxxxxxxxxx are slub-reduce-duplicate-creation-on-the-first-object.patch rbtree-fix-typo-in-comment-of-__rb_insert.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html