diff options
author | Michal Simek <monstr@monstr.eu> | 2009-07-08 22:27:40 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-07-08 22:27:40 -0400 |
commit | 1dcdd0911b5553f0282ce8525773955b59a56919 (patch) | |
tree | 15a2543bd14d6e9764555ff5d8120832ce2529db | |
parent | a530b7958612bafe2027e21359083dba84f0b3b4 (diff) |
microblaze: include EXIT_TEXT to _stext
Microblaze wants to throw out EXIT_TEXT during runtime too. This
hasn't caused trouble till now because the linker script didn't
discard EXIT_TEXT and it ended up in its default output section. As
discard definition is about to be unified, include EXIT_TEXT into
_stext explicitly and while at it replace explicit exitcall definition
to EXIT_CALL.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | arch/microblaze/kernel/vmlinux.lds.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/vmlinux.lds.S b/arch/microblaze/kernel/vmlinux.lds.S index a207543c5927..81bebdcb18fe 100644 --- a/arch/microblaze/kernel/vmlinux.lds.S +++ b/arch/microblaze/kernel/vmlinux.lds.S | |||
@@ -23,8 +23,8 @@ SECTIONS { | |||
23 | _stext = . ; | 23 | _stext = . ; |
24 | *(.text .text.*) | 24 | *(.text .text.*) |
25 | *(.fixup) | 25 | *(.fixup) |
26 | 26 | EXIT_TEXT | |
27 | *(.exitcall.exit) | 27 | EXIT_CALL |
28 | SCHED_TEXT | 28 | SCHED_TEXT |
29 | LOCK_TEXT | 29 | LOCK_TEXT |
30 | KPROBES_TEXT | 30 | KPROBES_TEXT |