aboutsummaryrefslogtreecommitdiff
path: root/arch/sparc64
diff options
context:
space:
mode:
authorGravatar Rusty Lynch <rusty.lynch@intel.com> 2005-07-05 18:54:50 -0700
committerGravatar Linus Torvalds <torvalds@g5.osdl.org> 2005-07-05 19:19:00 -0700
commit6772926bef3c9f0ec761b39e5702535471fff70b (patch)
treeb55f1b7af51e10c54781e24b5472236323d24ee5 /arch/sparc64
parent[PATCH] ppc32: explicitly disable 440GP IRQ compatibility mode in 440GX setup (diff)
downloadlinux-6772926bef3c9f0ec761b39e5702535471fff70b.tar.gz
linux-6772926bef3c9f0ec761b39e5702535471fff70b.tar.bz2
linux-6772926bef3c9f0ec761b39e5702535471fff70b.zip
[PATCH] kprobes: fix namespace problem and sparc64 build
The following renames arch_init, a kprobes function for performing any architecture specific initialization, to arch_init_kprobes in order to cleanup the namespace. Also, this patch adds arch_init_kprobes to sparc64 to fix the sparc64 kprobes build from the last return probe patch. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sparc64')
-rw-r--r--arch/sparc64/kernel/kprobes.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/kprobes.c b/arch/sparc64/kernel/kprobes.c
index bdac631cf011..bbf11f85dab1 100644
--- a/arch/sparc64/kernel/kprobes.c
+++ b/arch/sparc64/kernel/kprobes.c
@@ -433,3 +433,8 @@ int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
return 0;
}
+/* architecture specific initialization */
+int arch_init_kprobes(void)
+{
+ return 0;
+}