]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: make sure initmem is writable on 64-bit
authorPekka Enberg <penberg@cs.helsinki.fi>
Tue, 3 Mar 2009 11:15:04 +0000 (13:15 +0200)
committerIngo Molnar <mingo@elte.hu>
Tue, 3 Mar 2009 11:21:18 +0000 (12:21 +0100)
Impact: unification

This patch ports commit 3c1df68b848b39270752ff8d4b956cc4a4dce0f6 ("x86: make
sure initmem is writable") to the 64-bit version to unify implementations of
free_init_pages().

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Arjan van de Ven <arjan@linux.intel.com>
LKML-Reference: <1236078904.2675.17.camel@penberg-laptop>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/mm/init_64.c

index e6d36b490250bed6952f2d93de3d1f337c3cf7f4..03da9030d0ee43d2f3f3efefdf7e3493bd220080 100644 (file)
@@ -962,6 +962,13 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end)
                begin, PAGE_ALIGN(end));
        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 first.
+        */
+       set_memory_rw(begin, (end - begin) >> PAGE_SHIFT);
+
        printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
 
        for (; addr < end; addr += PAGE_SIZE) {