From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keith Owens Date: Wed, 17 Aug 2005 05:40:02 +0000 Subject: [Review 5/7] MCA/INIT Align the initial task Message-Id: <7857.1124257202@kao2.melbourne.sgi.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-ia64@vger.kernel.org Align the stack for the initial task to be the same alignment as all other process stacks. Otherwise the validation code needs special cases for the intial task, it is currently only page aligned. vmlinux.lds.S | 1 + 1 files changed, 1 insertion(+) Index: linux/arch/ia64/kernel/vmlinux.lds.S =================================--- linux.orig/arch/ia64/kernel/vmlinux.lds.S 2005-08-17 14:34:38.404220401 +1000 +++ linux/arch/ia64/kernel/vmlinux.lds.S 2005-08-17 14:36:24.052711993 +1000 @@ -165,6 +165,7 @@ SECTIONS __init_end = .; /* The initial task and kernel stack */ + . = ALIGN(KERNEL_STACK_SIZE); .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) { *(.data.init_task) }