]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mm/um: use common help functions to free reserved pages
authorJiang Liu <liuj97@gmail.com>
Tue, 26 Mar 2013 23:24:29 +0000 (10:24 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 2 Apr 2013 07:29:03 +0000 (18:29 +1100)
Use common help functions to free reserved pages.

Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/um/kernel/mem.c

index 5abcbfbe7e2586857ddc48a41b3a1af7fdc5f02c..d5ac80299cda16753eb446a543e8a2248e02e849 100644 (file)
@@ -254,15 +254,7 @@ void free_initmem(void)
 #ifdef CONFIG_BLK_DEV_INITRD
 void free_initrd_mem(unsigned long start, unsigned long end)
 {
-       if (start < end)
-               printk(KERN_INFO "Freeing initrd memory: %ldk freed\n",
-                      (end - start) >> 10);
-       for (; start < end; start += PAGE_SIZE) {
-               ClearPageReserved(virt_to_page(start));
-               init_page_count(virt_to_page(start));
-               free_page(start);
-               totalram_pages++;
-       }
+       free_reserved_area(start, end, 0, "initrd");
 }
 #endif