From: Vivek Goyal Date: Mon, 20 Nov 2006 16:29:09 +0000 (-0500) Subject: [PATCH] x86_64: Align data segment to PAGE_SIZE boundary X-Git-Tag: v2.6.19~58^2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=3af9815328bba76e8d11d71d6dbbd6f38beafe58;p=~shefty%2Frdma-dev.git [PATCH] x86_64: Align data segment to PAGE_SIZE boundary o Explicitly align data segment to PAGE_SIZE boundary otherwise depending on config options and tool chain it might be placed on a non PAGE_SIZE aligned boundary and vmlinux loaders like kexec fail when they encounter a PT_LOAD type segment which is not aligned to PAGE_SIZE boundary. Signed-off-by: Vivek Goyal Signed-off-by: Andi Kleen --- diff --git a/arch/x86_64/kernel/vmlinux.lds.S b/arch/x86_64/kernel/vmlinux.lds.S index edb24aa714b..d9534e750d4 100644 --- a/arch/x86_64/kernel/vmlinux.lds.S +++ b/arch/x86_64/kernel/vmlinux.lds.S @@ -60,6 +60,7 @@ SECTIONS } #endif + . = ALIGN(PAGE_SIZE); /* Align data segment to page size boundary */ /* Data */ .data : AT(ADDR(.data) - LOAD_OFFSET) { *(.data)