The patch titled Subject: kmod: prevent kmod_loop_msg overflow in __request_module() has been added to the -mm tree. Its filename is kmod-prevent-kmod_loop_msg-overflow-in-__request_module.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Jiri Kosina <jkosina@xxxxxxx> Subject: kmod: prevent kmod_loop_msg overflow in __request_module() Due to post-decrement in condition of kmod_loop_msg in __request_module(), the system log can be spammed by much more than 5 instances of the 'runaway loop' message if the number of events triggering it makes the kmod_loop_msg to overflow. Fix that by making sure we never increment it past the threshold. Signed-off-by: Jiri Kosina <jkosina@xxxxxxx> Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxx> --- kernel/kmod.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN kernel/kmod.c~kmod-prevent-kmod_loop_msg-overflow-in-__request_module kernel/kmod.c --- a/kernel/kmod.c~kmod-prevent-kmod_loop_msg-overflow-in-__request_module +++ a/kernel/kmod.c @@ -114,10 +114,12 @@ int __request_module(bool wait, const ch atomic_inc(&kmod_concurrent); if (atomic_read(&kmod_concurrent) > max_modprobes) { /* We may be blaming an innocent here, but unlikely */ - if (kmod_loop_msg++ < 5) + if (kmod_loop_msg < 5) { printk(KERN_ERR "request_module: runaway loop modprobe %s\n", module_name); + kmod_loop_msg++; + } atomic_dec(&kmod_concurrent); return -ENOMEM; } _ Subject: Subject: kmod: prevent kmod_loop_msg overflow in __request_module() Patches currently in -mm which might be from jkosina@xxxxxxx are origin.patch linux-next.patch kmod-prevent-kmod_loop_msg-overflow-in-__request_module.patch binfmt_elf-fix-pie-execution-with-randomization-disabled.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