diff options
author | Tim Abbott <tabbott@MIT.EDU> | 2009-04-28 11:47:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-28 18:55:14 -0400 |
commit | 13beadd91f148933f47947a88ab2c97a1ca9768d (patch) | |
tree | 7dd1c38768401a3d0dfd65fb03020a80ede02700 /arch/powerpc | |
parent | 27b1833279995e7c290a40cac4ef36ccea7e9283 (diff) |
powerpc: Revert switch to TEXT_TEXT in linker script
Commit edada399 broke the build on 64-bit powerpc because it moved the
__ftr_alt_* sections of a file away from the .text section, causing
link failures due to relative conditional branch targets being too far
away from the branch instructions. This happens on pretty much all
64-bit powerpc configs.
This change reverts commit edada399 while preserving the update from
the *.refok sections to .ref.text that has happened since.
Signed-off-by: Tim Abbott <tabbott@mit.edu>
Requested-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index 433ae118406d..a047a6cfca4d 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
@@ -54,8 +54,8 @@ SECTIONS | |||
54 | ALIGN_FUNCTION(); | 54 | ALIGN_FUNCTION(); |
55 | HEAD_TEXT | 55 | HEAD_TEXT |
56 | _text = .; | 56 | _text = .; |
57 | TEXT_TEXT | 57 | /* careful! __ftr_alt_* sections need to be close to .text */ |
58 | *(.fixup __ftr_alt_*) | 58 | *(.text .fixup __ftr_alt_* .ref.text) |
59 | SCHED_TEXT | 59 | SCHED_TEXT |
60 | LOCK_TEXT | 60 | LOCK_TEXT |
61 | KPROBES_TEXT | 61 | KPROBES_TEXT |