The patch titled kprobes-list-all-active-probes-in-the-system fix has been added to the -mm tree. Its filename is kprobes-list-all-active-probes-in-the-system-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: kprobes-list-all-active-probes-in-the-system fix From: Ananth N Mavinakayanahalli <ananth@xxxxxxxxxx> Fix kprobes compilation breakage on sparc64 caused due to kprobes-list-all-active-probes-in-the-system.patch Signed-off-by: Ananth N Mavinakayanahalli <ananth@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kprobes.c | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN kernel/kprobes.c~kprobes-list-all-active-probes-in-the-system-fix kernel/kprobes.c --- a/kernel/kprobes.c~kprobes-list-all-active-probes-in-the-system-fix +++ a/kernel/kprobes.c @@ -780,6 +780,12 @@ int __kprobes register_kretprobe(struct return -ENOSYS; } +static int __kprobes pre_handler_kretprobe(struct kprobe *p, + struct pt_regs *regs) +{ + return 0; +} + #endif /* ARCH_SUPPORTS_KRETPROBES */ void __kprobes unregister_kretprobe(struct kretprobe *rp) _ Patches currently in -mm which might be from ananth@xxxxxxxxxx are kprobes-list-all-active-probes-in-the-system.patch kprobes-list-all-active-probes-in-the-system-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html