浏览代码

powerpc/prom_init: Move __prombss to it's own section and store it in .bss

This makes __prombss its own section, and for now store
it in .bss.

This will give us the ability later to store it elsewhere
and/or free it after boot (it's about 8KB).

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Benjamin Herrenschmidt 6 年之前
父节点
当前提交
5f69e38885
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 1 1
      arch/powerpc/kernel/prom_init.c
  2. 3 0
      arch/powerpc/kernel/vmlinux.lds.S

+ 1 - 1
arch/powerpc/kernel/prom_init.c

@@ -48,7 +48,7 @@
 #include <linux/linux_logo.h>
 
 /* All of prom_init bss lives here */
-#define __prombss __initdata
+#define __prombss __section(.bss.prominit)
 
 /*
  * Eventually bump that one up

+ 3 - 0
arch/powerpc/kernel/vmlinux.lds.S

@@ -4,6 +4,9 @@
 #else
 #define PROVIDE32(x)	PROVIDE(x)
 #endif
+
+#define BSS_FIRST_SECTIONS *(.bss.prominit)
+
 #include <asm/page.h>
 #include <asm-generic/vmlinux.lds.h>
 #include <asm/cache.h>