diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-29 17:05:11 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-12-06 09:24:07 +0100 |
commit | 54c29c635ae91f5d75ced7bffeaa77ba37ca02bb (patch) | |
tree | cddf131b5e70809ec5c282f619de0635e45c1cfa /mm/debug-pagealloc.c | |
parent | 855c743a27bb58a9a521bdc485ef5acfdb69badc (diff) | |
download | linux-3.10-54c29c635ae91f5d75ced7bffeaa77ba37ca02bb.tar.gz linux-3.10-54c29c635ae91f5d75ced7bffeaa77ba37ca02bb.tar.bz2 linux-3.10-54c29c635ae91f5d75ced7bffeaa77ba37ca02bb.zip |
mm, x86: Remove debug_pagealloc_enabled
When (no)bootmem finish operation, it pass pages to buddy
allocator. Since debug_pagealloc_enabled is not set, we will do
not protect pages, what is not what we want with
CONFIG_DEBUG_PAGEALLOC=y.
To fix remove debug_pagealloc_enabled. That variable was
introduced by commit 12d6f21e "x86: do not PSE on
CONFIG_DEBUG_PAGEALLOC=y" to get more CPA (change page
attribude) code testing. But currently we have CONFIG_CPA_DEBUG,
which test CPA.
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Mel Gorman <mgorman@suse.de>
Cc: linux-mm@kvack.org
Link: http://lkml.kernel.org/r/1322582711-14571-1-git-send-email-sgruszka@redhat.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'mm/debug-pagealloc.c')
-rw-r--r-- | mm/debug-pagealloc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mm/debug-pagealloc.c b/mm/debug-pagealloc.c index 7cea557407f..789ff70c8a4 100644 --- a/mm/debug-pagealloc.c +++ b/mm/debug-pagealloc.c @@ -95,9 +95,6 @@ static void unpoison_pages(struct page *page, int n) void kernel_map_pages(struct page *page, int numpages, int enable) { - if (!debug_pagealloc_enabled) - return; - if (enable) unpoison_pages(page, numpages); else |