aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2009-04-29 03:47:22 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-29 04:20:31 -0400
commit448bc3ab0d03e77fee8e4264de0d001fc87bc164 (patch)
tree13137c86f7ec061da167d947a4ad4623c77b502f /arch/x86/kernel/vmlinux.lds.S
parentdfc20895d944cfa81d8ff00809b68ecb8f72cbb0 (diff)
x86, vmlinux.lds: unify exception table
[ Impact: cleanup ] Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Tim Abbott <tabbott@MIT.EDU> Cc: Linus Torvalds <torvalds@linux-foundation.org> LKML-Reference: <1240991249-27117-6-git-send-email-sam@ravnborg.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/vmlinux.lds.S')
-rw-r--r--arch/x86/kernel/vmlinux.lds.S10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/kernel/vmlinux.lds.S b/arch/x86/kernel/vmlinux.lds.S
index a7c88bb43650..67164f6f092f 100644
--- a/arch/x86/kernel/vmlinux.lds.S
+++ b/arch/x86/kernel/vmlinux.lds.S
@@ -94,6 +94,16 @@ SECTIONS
94 94
95 NOTES :text :note 95 NOTES :text :note
96 96
97 /* Exception table */
98 . = ALIGN(16);
99 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
100 __start___ex_table = .;
101 *(__ex_table)
102 __stop___ex_table = .;
103 } :text = 0x9090
104
105 RODATA
106
97 107
98#ifdef CONFIG_X86_32 108#ifdef CONFIG_X86_32
99# include "vmlinux_32.lds.S" 109# include "vmlinux_32.lds.S"