diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-21 14:43:15 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-21 14:43:15 -0400 |
commit | 4ab8f241f6d510470c15b62ac10f6905ff5c97bd (patch) | |
tree | 738c3eb0231be1518137953a4f3745390d41e232 /arch/sh/kernel/unwinder.c | |
parent | 97f361e2498ada54b48a235619eaf5af8e46427e (diff) |
sh: Export unwind_stack() to satisfy modular oprofile.
If the oprofile code is built as a module, unwind_stack() as used by the
oprofile backtrace code is not available, causing build breakage.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/unwinder.c')
-rw-r--r-- | arch/sh/kernel/unwinder.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/kernel/unwinder.c b/arch/sh/kernel/unwinder.c index 2b30fa28b440..5f56ff3f55e0 100644 --- a/arch/sh/kernel/unwinder.c +++ b/arch/sh/kernel/unwinder.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/errno.h> | 11 | #include <linux/errno.h> |
12 | #include <linux/list.h> | 12 | #include <linux/list.h> |
13 | #include <linux/spinlock.h> | 13 | #include <linux/spinlock.h> |
14 | #include <linux/module.h> | ||
14 | #include <asm/unwinder.h> | 15 | #include <asm/unwinder.h> |
15 | #include <asm/atomic.h> | 16 | #include <asm/atomic.h> |
16 | 17 | ||
@@ -160,3 +161,4 @@ void unwind_stack(struct task_struct *task, struct pt_regs *regs, | |||
160 | 161 | ||
161 | atomic_dec(&unwinder_running); | 162 | atomic_dec(&unwinder_running); |
162 | } | 163 | } |
164 | EXPORT_SYMBOL_GPL(unwind_stack); | ||