]> Pileus Git - ~andy/linux/commitdiff
m68k: move to a single instance of free_initmem()
authorGreg Ungerer <gerg@uclinux.org>
Tue, 23 Oct 2012 03:40:36 +0000 (13:40 +1000)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Wed, 14 Nov 2012 07:50:56 +0000 (08:50 +0100)
Currently each sub-architecture has its own implementation if init_freemem().
There is two different cases that the various implementations deal with.
They either free the init memory, or they don't. We only need a single instance
to cover all cases.

The non-MMU version did some page alignment twidling, but this is not
neccessary. The current linker script enforces page alignment. It also
checked for CONFIG_RAMKERNEL, but this also is not necessary, the linker
script always keeps the init sections in RAM.

The MMU ColdFire version of free_initmem() was empty. There is no reason it
can't carry out the freeing of the init memory. So it is now changed and
tested to do this.

For the other MMU cases the code is the same. For the general Motorola MMU
case we free the init memory. For the SUN3 case we do nothing (though I
think it could safely free the init memory as well).

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
arch/m68k/mm/init.c
arch/m68k/mm/mcfmmu.c
arch/m68k/mm/motorola.c
arch/m68k/mm/sun3mmu.c

index b0f201a409f33727f5e60618929d6881261a5e5b..f0e05bce92f2533ee8dc78ade768595d825646df 100644 (file)
@@ -103,32 +103,26 @@ void __init paging_init(void)
        free_area_init(zones_size);
 }
 
+#endif /* CONFIG_MMU */
+
 void free_initmem(void)
 {
-#ifdef CONFIG_RAMKERNEL
+#ifndef CONFIG_MMU_SUN3
        unsigned long addr;
 
-       /*
-        * The following code should be cool even if these sections
-        * are not page aligned.
-        */
-       addr = PAGE_ALIGN((unsigned long) __init_begin);
-       /* next to check that the page we free is not a partial page */
-       for (; addr + PAGE_SIZE < ((unsigned long) __init_end); addr += PAGE_SIZE) {
+       addr = (unsigned long) __init_begin;
+       for (; addr < ((unsigned long) __init_end); addr += PAGE_SIZE) {
                ClearPageReserved(virt_to_page(addr));
                init_page_count(virt_to_page(addr));
                free_page(addr);
                totalram_pages++;
        }
        pr_notice("Freeing unused kernel memory: %luk freed (0x%x - 0x%x)\n",
-               (addr - PAGE_ALIGN((unsigned long) __init_begin)) >> 10,
-               (int)(PAGE_ALIGN((unsigned long) __init_begin)),
-               (int)(addr - PAGE_SIZE));
-#endif
+               (addr - (unsigned long) __init_begin) >> 10,
+               (unsigned int) __init_begin, (unsigned int) __init_end);
+#endif /* CONFIG_MMU_SUN3 */
 }
 
-#endif /* CONFIG_MMU */
-
 #if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE)
 #define VECTORS        &vectors[0]
 #else
index 875b800ef0ddb765d9785ecb9d179eb919526c92..f58fafe7e4c9f37980c84bab6e4360120c9da88a 100644 (file)
@@ -29,10 +29,6 @@ atomic_t nr_free_contexts;
 struct mm_struct *context_mm[LAST_CONTEXT+1];
 extern unsigned long num_pages;
 
-void free_initmem(void)
-{
-}
-
 /*
  * ColdFire paging_init derived from sun3.
  */
index 0dafa693515b880450835d9a9fe87f68c87389c2..251c5437787be6054086b4d5586adfc0887e0472 100644 (file)
@@ -304,17 +304,3 @@ void __init paging_init(void)
        }
 }
 
-void free_initmem(void)
-{
-       unsigned long addr;
-
-       addr = (unsigned long)__init_begin;
-       for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) {
-               virt_to_page(addr)->flags &= ~(1 << PG_reserved);
-               init_page_count(virt_to_page(addr));
-               free_page(addr);
-               totalram_pages++;
-       }
-}
-
-
index e0804060501e653d39392cd98e89a0e7f9e72695..269f81158a33108e9568e83f096acd9c750b1814 100644 (file)
@@ -30,10 +30,6 @@ const char bad_pmd_string[] = "Bad pmd in pte_alloc: %08lx\n";
 
 extern unsigned long num_pages;
 
-void free_initmem(void)
-{
-}
-
 /* For the sun3 we try to follow the i386 paging_init() more closely */
 /* start_mem and end_mem have PAGE_OFFSET added already */
 /* now sets up tables using sun3 PTEs rather than i386 as before. --m */