Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02f55324 authored by Jiang Liu's avatar Jiang Liu Committed by Linus Torvalds
Browse files

mm/c6x: prepare for removing num_physpages and simplify mem_init()



Prepare for removing num_physpages and simplify mem_init().

Signed-off-by: default avatarJiang Liu <jiang.liu@huawei.com>
Cc: Mark Salter <msalter@redhat.com>
Cc: Aurelien Jacquiot <a-jacquiot@ti.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d9d7e769
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -58,21 +58,12 @@ void __init paging_init(void)

void __init mem_init(void)
{
	int codek, datak;
	unsigned long tmp;
	unsigned long len = memory_end - memory_start;

	high_memory = (void *)(memory_end & PAGE_MASK);

	/* this will put all memory onto the freelists */
	free_all_bootmem();

	codek = (_etext - _stext) >> 10;
	datak = (_end - _sdata) >> 10;

	tmp = nr_free_pages() << PAGE_SHIFT;
	printk(KERN_INFO "Memory: %luk/%luk RAM (%dk kernel code, %dk data)\n",
	       tmp >> 10, len >> 10, codek, datak);
	mem_init_print_info(NULL);
}

#ifdef CONFIG_BLK_DEV_INITRD