From: Vlastimil Babka <vbabka@xxxxxxx> Date: Thu, 26 Nov 2015 15:39:27 +0100 Subject: [PATCH] mm, debug: fix wrongly filtered flags in dump_vma()-fix Don't print opening parenthesis twice. --- mm/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/debug.c b/mm/debug.c index d9718fc8377a..68118399c2b6 100644 --- a/mm/debug.c +++ b/mm/debug.c @@ -240,7 +240,7 @@ void dump_mm(const struct mm_struct *mm) "" /* This is here to not have a comma! */ ); - pr_emerg("def_flags: %#lx(", mm->def_flags); + pr_emerg("def_flags: %#lx", mm->def_flags); dump_flag_names(mm->def_flags, vmaflags_names, ARRAY_SIZE(vmaflags_names)); } -- 2.6.3 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>