mirror of
https://github.com/torvalds/linux.git
synced 2026-06-10 07:32:29 +02:00
PARISC: fix boot failure on 32-bit systems caused by branch stubs placed before .text
commit ed5fb2471b upstream.
In certain configurations, the resulting kernel becomes too large to boot
because the linker places the long branch stubs for the merged .text section
at the very start of the image. As a result, the initial transfer of control
jumps to an unexpected location. Fix this by placing the head text in a
separate section so the stubs for .text are not at the start of the image.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
27ab30eb96
commit
e01b7f8729
|
|
@ -50,8 +50,10 @@ SECTIONS
|
|||
. = KERNEL_BINARY_TEXT_START;
|
||||
|
||||
_text = .; /* Text and read-only data */
|
||||
.text ALIGN(16) : {
|
||||
.head ALIGN(16) : {
|
||||
HEAD_TEXT
|
||||
} = 0
|
||||
.text ALIGN(16) : {
|
||||
TEXT_TEXT
|
||||
SCHED_TEXT
|
||||
LOCK_TEXT
|
||||
|
|
@ -65,7 +67,7 @@ SECTIONS
|
|||
*(.fixup)
|
||||
*(.lock.text) /* out-of-line lock text */
|
||||
*(.gnu.warning)
|
||||
} = 0
|
||||
}
|
||||
/* End of text section */
|
||||
_etext = .;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user