The patch titled Subject: perf tools: fix build for another rbtree.c change has been removed from the -mm tree. Its filename was rbtree-adjust-root-color-in-rb_insert_color-only-when-necessary-fix.patch This patch was dropped because it was folded into rbtree-adjust-node-color-in-__rb_erase_color-only-when-necessary.patch ------------------------------------------------------ From: Adrian Hunter <adrian.hunter@xxxxxxxxx> Subject: perf tools: fix build for another rbtree.c change Fixes: ../../lib/rbtree.c: In function 'rb_insert_color': ../../lib/rbtree.c:95:9: error: 'true' undeclared (first use in this function) ../../lib/rbtree.c:95:9: note: each undeclared identifier is reported only once for each function it appears in ../../lib/rbtree.c: In function '__rb_erase_color': ../../lib/rbtree.c:216:9: error: 'true' undeclared (first use in this function) ../../lib/rbtree.c: In function 'rb_erase': ../../lib/rbtree.c:368:2: error: unknown type name 'bool' make: *** [util/rbtree.o] Error 1 Signed-off-by: Adrian Hunter <adrian.hunter@xxxxxxxxx> Cc: Michel Lespinasse <walken@xxxxxxxxxx> Reported-by: Alexander Shishkin <alexander.shishkin@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/perf/util/include/linux/rbtree.h | 1 + 1 file changed, 1 insertion(+) diff -puN tools/perf/util/include/linux/rbtree.h~rbtree-adjust-root-color-in-rb_insert_color-only-when-necessary-fix tools/perf/util/include/linux/rbtree.h --- a/tools/perf/util/include/linux/rbtree.h~rbtree-adjust-root-color-in-rb_insert_color-only-when-necessary-fix +++ a/tools/perf/util/include/linux/rbtree.h @@ -1,2 +1,3 @@ #include <stdbool.h> +#include <stdbool.h> #include "../../../../include/linux/rbtree.h" _ Patches currently in -mm which might be from adrian.hunter@xxxxxxxxx are origin.patch rbtree-adjust-node-color-in-__rb_erase_color-only-when-necessary.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