Commit c0400030 authored by Jan Beulich's avatar Jan Beulich Committed by Ingo Molnar

x86-64: clean up linker script

Remove the dead .text.lock. Move _etext and __{start,stop}___ex_table
into their sections.
Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent c11b68bc
...@@ -37,16 +37,15 @@ SECTIONS ...@@ -37,16 +37,15 @@ SECTIONS
KPROBES_TEXT KPROBES_TEXT
*(.fixup) *(.fixup)
*(.gnu.warning) *(.gnu.warning)
} :text = 0x9090 _etext = .; /* End of text section */
/* out-of-line lock text */ } :text = 0x9090
.text.lock : AT(ADDR(.text.lock) - LOAD_OFFSET) { *(.text.lock) }
_etext = .; /* End of text section */
. = ALIGN(16); /* Exception table */ . = ALIGN(16); /* Exception table */
__start___ex_table = .; __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { *(__ex_table) } __start___ex_table = .;
__stop___ex_table = .; *(__ex_table)
__stop___ex_table = .;
}
NOTES :text :note NOTES :text :note
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment