diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-01-30 07:31:23 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:31:23 -0500 |
commit | 3e7622f9d7807a0a826d042cafc211cd1a29448c (patch) | |
tree | b7eaa54e51668fcffa53d1104655d301447e9da7 /arch/x86/kernel/entry_32.S | |
parent | 22f5991c85dec1281cce5c8df9ee92b43b1738c8 (diff) |
x86: move to .rodata/.init.data
The array is never written, and on 64-bits it's not even being used
past initial boot.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/entry_32.S')
-rw-r--r-- | arch/x86/kernel/entry_32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S index 6a474e1028c7..be5c31d04884 100644 --- a/arch/x86/kernel/entry_32.S +++ b/arch/x86/kernel/entry_32.S | |||
@@ -583,7 +583,7 @@ END(syscall_badsys) | |||
583 | * Build the entry stubs and pointer table with | 583 | * Build the entry stubs and pointer table with |
584 | * some assembler magic. | 584 | * some assembler magic. |
585 | */ | 585 | */ |
586 | .data | 586 | .section .rodata,"a" |
587 | ENTRY(interrupt) | 587 | ENTRY(interrupt) |
588 | .text | 588 | .text |
589 | 589 | ||