aboutsummaryrefslogtreecommitdiffstats
path: root/mm/sparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/sparse.c')
-rw-r--r--mm/sparse.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/mm/sparse.c b/mm/sparse.c
index 58cab483e81b..62eef264a7bd 100644
--- a/mm/sparse.c
+++ b/mm/sparse.c
@@ -779,7 +779,13 @@ int __meminit sparse_add_one_section(struct pglist_data *pgdat,
779 goto out; 779 goto out;
780 } 780 }
781 781
782 memset(memmap, 0, sizeof(struct page) * PAGES_PER_SECTION); 782#ifdef CONFIG_DEBUG_VM
783 /*
784 * Poison uninitialized struct pages in order to catch invalid flags
785 * combinations.
786 */
787 memset(memmap, PAGE_POISON_PATTERN, sizeof(struct page) * PAGES_PER_SECTION);
788#endif
783 789
784 section_mark_present(ms); 790 section_mark_present(ms);
785 791