The patch titled Don't give bad kprobes example aka ") < 0))" typo has been added to the -mm tree. Its filename is dont-give-bad-kprobes-example-aka-0-typo.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Don't give bad kprobes example aka ") < 0))" typo From: Alexey Dobriyan <adobriyan@xxxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- Documentation/kprobes.txt | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff -puN Documentation/kprobes.txt~dont-give-bad-kprobes-example-aka-0-typo Documentation/kprobes.txt --- a/Documentation/kprobes.txt~dont-give-bad-kprobes-example-aka-0-typo +++ a/Documentation/kprobes.txt @@ -442,9 +442,10 @@ static int __init kprobe_init(void) kp.fault_handler = handler_fault; kp.symbol_name = "do_fork"; - if ((ret = register_kprobe(&kp) < 0)) { + ret = register_kprobe(&kp); + if (ret < 0) { printk("register_kprobe failed, returned %d\n", ret); - return -1; + return ret; } printk("kprobe registered\n"); return 0; _ Patches currently in -mm which might be from adobriyan@xxxxxxxxxx are origin.patch dont-give-bad-kprobes-example-aka-0-typo.patch i2c-ixp4xx-fix-=-0-typo.patch reiserfs-add-missing-d-cache-flushing.patch reiserfs-add-missing-d-cache-flushing-tweak.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