Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1278687
| From | Vlastimil Babka <vbabka@suse.cz> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2 1/9] mm, debug: fix wrongly filtered flags in dump_vma() |
| Date | 2015-11-27 11:00 +0100 |
| Message-ID | <qznYS-18E-11@gated-at.bofh.it> (permalink) |
| References | <qyl33-86O-5@gated-at.bofh.it> <qyl34-86O-21@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Vlastimil Babka <vbabka@suse.cz>
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 majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v2 1/9] mm, debug: fix wrongly filtered flags in dump_vma() Vlastimil Babka <vbabka@suse.cz> - 2015-11-24 13:40 +0100 Re: [PATCH v2 1/9] mm, debug: fix wrongly filtered flags in dump_vma() Vlastimil Babka <vbabka@suse.cz> - 2015-11-27 11:00 +0100
csiph-web