The patch titled Subject: printk: check CON_ENABLED in have_callable_console() has been added to the -mm tree. Its filename is printk-check-con_enabled-in-have_callable_console.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/printk-check-con_enabled-in-have_callable_console.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/printk-check-con_enabled-in-have_callable_console.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Subject: printk: check CON_ENABLED in have_callable_console() have_callable_console() must also test CON_ENABLED bit, not just CON_ANYTIME. We may have disabled CON_ANYTIME console so printk can wrongly assume that it's safe to call_console_drivers(). Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Cc: Petr Mladek <pmladek@xxxxxxxx> Cc: Jan Kara <jack@xxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxx> Cc: Dave Jones <davej@xxxxxxxxxxxxxxxxx> Cc: Calvin Owens <calvinowens@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/printk/printk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/printk/printk.c~printk-check-con_enabled-in-have_callable_console kernel/printk/printk.c --- a/kernel/printk/printk.c~printk-check-con_enabled-in-have_callable_console +++ a/kernel/printk/printk.c @@ -2139,7 +2139,8 @@ static int have_callable_console(void) struct console *con; for_each_console(con) - if (con->flags & CON_ANYTIME) + if ((con->flags & CON_ENABLED) && + (con->flags & CON_ANYTIME)) return 1; return 0; _ Patches currently in -mm which might be from sergey.senozhatsky@xxxxxxxxx are mm-workingset-per-cgroup-cache-thrash-detection-fix.patch zram-export-the-number-of-available-comp-streams.patch printk-move-can_use_console-out-of-console_trylock_for_printk.patch printk-set-may_schedule-for-some-of-console_trylock-callers.patch printk-check-con_enabled-in-have_callable_console.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