From: David Gibson Date: Fri, 19 Aug 2005 04:52:32 +0000 (+1000) Subject: [PATCH] Move variables in ppc64 head.S from .data to .bss X-Git-Tag: v2.6.14-rc1~1037^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fbb49d56d228b666cb4534bbc3c2dfe833c8053;p=pandora-kernel.git [PATCH] Move variables in ppc64 head.S from .data to .bss The ppc64 head.S defines several zero-initialized structures, such as the empty_zero_page and the kernel top-level pagetable. Currently they are defined to be in the data section. However, they're not used until after the bss is cleared, so this patch moves them to the bss, saving two and a half pages from the vmlinux. Signed-off-by: David Gibson Signed-off-by: Paul Mackerras --- Reading git-diff-tree failed