From: Vlastimil Babka <[email protected]>
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 from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to