From: Anton Blanchard Date: Mon, 23 Dec 2013 01:19:51 +0000 (+1100) Subject: powerpc: Align p_end X-Git-Tag: submit/tizen_common/20140905.094502~1159 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eab7669977d1b16f580edd76441abdbbcaf3ff52;p=sdk%2Femulator%2Femulator-kernel.git powerpc: Align p_end commit 286e4f90a72c0b0621dde0294af6ed4b0baddabb upstream. p_end is an 8 byte value embedded in the text section. This means it is only 4 byte aligned when it should be 8 byte aligned. Fix this by adding an explicit alignment. This fixes an issue where POWER7 little endian builds with CONFIG_RELOCATABLE=y fail to boot. Signed-off-by: Anton Blanchard Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index 3d11d8038dee..9141e894c89b 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S @@ -467,6 +467,7 @@ _STATIC(__after_prom_start) mtctr r8 bctr +.balign 8 p_end: .llong _end - _stext 4: /* Now copy the rest of the kernel up to _end */