projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61098a0
)
sh: kprobes: kretprobe_trampoline needs to be global.
author
Paul Mundt
<lethal@linux-sh.org>
Mon, 8 Sep 2008 23:13:28 +0000
(08:13 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Mon, 8 Sep 2008 23:13:28 +0000
(08:13 +0900)
Needed by CONFIG_TRACING.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/kprobes.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/kernel/kprobes.c
b/arch/sh/kernel/kprobes.c
index e357e3669a34e47d47d6fd015df5046e95313404..c96850b061fb8e4830c26afd5c083ab861ab0a06 100644
(file)
--- a/
arch/sh/kernel/kprobes.c
+++ b/
arch/sh/kernel/kprobes.c
@@
-290,7
+290,9
@@
no_kprobe:
*/
static void __used kretprobe_trampoline_holder(void)
{
- asm volatile ("kretprobe_trampoline: \n" "nop\n");
+ asm volatile (".globl kretprobe_trampoline\n"
+ "kretprobe_trampoline:\n\t"
+ "nop\n");
}
/*