]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
x86: also use debug_pagealloc_enabled() for free_init_pages
authorChristian Borntraeger <borntraeger@de.ibm.com>
Tue, 15 Mar 2016 21:57:39 +0000 (14:57 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 15 Mar 2016 23:55:16 +0000 (16:55 -0700)
we want to couple all debugging features with debug_pagealloc_enabled()
and not with the config option CONFIG_DEBUG_PAGEALLOC.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Suggested-by: David Rientjes <rientjes@google.com>
Acked-by: David Rientjes <rientjes@google.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Laura Abbott <labbott@fedoraproject.org>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/x86/mm/init.c

index 39823fd91396942f61de855598a7d5b8c77bedf8..9d56f271d519592a5fbf316237f73b57b0fc49c4 100644 (file)
@@ -667,21 +667,22 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end)
         * mark them not present - any buggy init-section access will
         * create a kernel page fault:
         */
-#ifdef CONFIG_DEBUG_PAGEALLOC
-       printk(KERN_INFO "debug: unmapping init [mem %#010lx-%#010lx]\n",
-               begin, end - 1);
-       set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
-#else
-       /*
-        * We just marked the kernel text read only above, now that
-        * we are going to free part of that, we need to make that
-        * writeable and non-executable first.
-        */
-       set_memory_nx(begin, (end - begin) >> PAGE_SHIFT);
-       set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
+       if (debug_pagealloc_enabled()) {
+               pr_info("debug: unmapping init [mem %#010lx-%#010lx]\n",
+                       begin, end - 1);
+               set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
+       } else {
+               /*
+                * We just marked the kernel text read only above, now that
+                * we are going to free part of that, we need to make that
+                * writeable and non-executable first.
+                */
+               set_memory_nx(begin, (end - begin) >> PAGE_SHIFT);
+               set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
 
-       free_reserved_area((void *)begin, (void *)end, POISON_FREE_INITMEM, what);
-#endif
+               free_reserved_area((void *)begin, (void *)end,
+                                  POISON_FREE_INITMEM, what);
+       }
 }
 
 void free_initmem(void)