]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mm/mn10300: use common help functions to free reserved pages
authorJiang Liu <liuj97@gmail.com>
Mon, 29 Apr 2013 22:06:44 +0000 (15:06 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Apr 2013 22:54:30 +0000 (15:54 -0700)
Use common help functions to free reserved pages.

Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/mn10300/mm/init.c

index e57e5bc235628ac2dc8b3dc76fabe01f1ac7c8a1..5a8ace63a6b48188a6efbdc852f1d6c530d4913f 100644 (file)
@@ -138,31 +138,12 @@ void __init mem_init(void)
               totalhigh_pages << (PAGE_SHIFT - 10));
 }
 
-/*
- *
- */
-void free_init_pages(char *what, unsigned long begin, unsigned long end)
-{
-       unsigned long addr;
-
-       for (addr = begin; addr < end; addr += PAGE_SIZE) {
-               ClearPageReserved(virt_to_page(addr));
-               init_page_count(virt_to_page(addr));
-               memset((void *) addr, 0xcc, PAGE_SIZE);
-               free_page(addr);
-               totalram_pages++;
-       }
-       printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
-}
-
 /*
  * recycle memory containing stuff only required for initialisation
  */
 void free_initmem(void)
 {
-       free_init_pages("unused kernel memory",
-                       (unsigned long) &__init_begin,
-                       (unsigned long) &__init_end);
+       free_initmem_default(POISON_FREE_INITMEM);
 }
 
 /*
@@ -171,6 +152,6 @@ void free_initmem(void)
 #ifdef CONFIG_BLK_DEV_INITRD
 void free_initrd_mem(unsigned long start, unsigned long end)
 {
-       free_init_pages("initrd memory", start, end);
+       free_reserved_area(start, end, POISON_FREE_INITMEM, "initrd");
 }
 #endif