[PATCH 2/2 v2] FLAT: tweak default stack alignment

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Mike Frysinger
Date: Wednesday, May 26, 2010 - 1:45 am

The recent commit 1f0ce8b3dd667dca7 which moved the ARCH_SLAB_MINALIGN
default into the global header inadvertently broke FLAT for a bunch of
systems.  Blackfin systems now fail on any FLAT exec with:
Unable to read code+data+bss, errno 14
When your /init is a FLAT binary, obviously this can be annoying ;).

This stems from the alignment usage in the FLAT loader.  The behavior
before was that FLAT would default to ARCH_SLAB_MINALIGN only if it was
defined, and this was only defined by arches when they wanted a larger
alignment value.  Otherwise it'd default to pointer alignment.  Arguably,
this is kind of hokey that the FLAT is semi-abusing defines it shouldn't.

But let's ignore that and simply ignore min alignment values of 0.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
v2
	- split changes & document better

 fs/binfmt_flat.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c
index b865622..4959a0a 100644
--- a/fs/binfmt_flat.c
+++ b/fs/binfmt_flat.c
@@ -68,7 +68,7 @@
  * Here we can be a bit looser than the data sections since this
  * needs to only meet arch ABI requirements.
  */
-#ifdef ARCH_SLAB_MINALIGN
+#if defined(ARCH_SLAB_MINALIGN) && ARCH_SLAB_MINALIGN != 0
 #define FLAT_STACK_ALIGN	(ARCH_SLAB_MINALIGN)
 #else
 #define FLAT_STACK_ALIGN	(sizeof(void *))
-- 
1.7.1

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [PATCH] FLAT: allow arches to declare a larger alignme ..., Geert Uytterhoeven, (Tue May 25, 12:50 pm)
Re: [PATCH] FLAT: allow arches to declare a larger alignme ..., Geert Uytterhoeven, (Tue May 25, 11:59 pm)
[PATCH 1/2 v2] FLAT: split the stack &amp; data alignments, Mike Frysinger, (Wed May 26, 1:45 am)
[PATCH 2/2 v2] FLAT: tweak default stack alignment, Mike Frysinger, (Wed May 26, 1:45 am)
Re: [PATCH 1/2 v2] FLAT: split the stack &amp; data alignments, David McCullough, (Thu May 27, 11:23 pm)
Re: [PATCH 2/2 v2] FLAT: tweak default stack alignment, David McCullough, (Thu May 27, 11:24 pm)
Re: [PATCH 2/2 v2] FLAT: tweak default stack alignment, Greg Ungerer, (Thu May 27, 11:39 pm)
[PATCH v3] FLAT: tweak default stack alignment, Mike Frysinger, (Sun Jun 6, 12:12 am)