The patch titled Dump stack during sysctl registration failure has been added to the -mm tree. Its filename is dump-stack-during-sysctl-registration-failure.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: Dump stack during sysctl registration failure From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Let's make immediately obvious from where sysctl comes from and messages itself more noticeable. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Acked-by: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sysctl_check.c | 1 + 1 file changed, 1 insertion(+) diff -puN kernel/sysctl_check.c~dump-stack-during-sysctl-registration-failure kernel/sysctl_check.c --- a/kernel/sysctl_check.c~dump-stack-during-sysctl-registration-failure +++ a/kernel/sysctl_check.c @@ -1432,6 +1432,7 @@ static void set_fail(const char **fail, printk(KERN_ERR "sysctl table check failed: "); sysctl_print_path(table); printk(" %s\n", *fail); + dump_stack(); } *fail = str; } _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are dump-stack-during-sysctl-registration-failure.patch fix-versus-precedence-in-various-places.patch fix-versus-precedence-in-various-places-checkpatch-fixes.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