From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755948AbcCTOQE (ORCPT ); Sun, 20 Mar 2016 10:16:04 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:35762 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755899AbcCTOPk (ORCPT ); Sun, 20 Mar 2016 10:15:40 -0400 From: Sergey Senozhatsky To: Andrew Morton Cc: Jan Kara , Petr Mladek , Tejun Heo , Tetsuo Handa , linux-kernel@vger.kernel.org, Byungchul Park , Sergey Senozhatsky , Sergey Senozhatsky , Jan Kara Subject: [RFC][PATCH v5 2/2] printk: Make wake_up_klogd_work_func() async Date: Sun, 20 Mar 2016 23:13:11 +0900 Message-Id: <1458483191-3596-3-git-send-email-sergey.senozhatsky@gmail.com> X-Mailer: git-send-email 2.8.0.rc0 In-Reply-To: <1458483191-3596-1-git-send-email-sergey.senozhatsky@gmail.com> References: <1458483191-3596-1-git-send-email-sergey.senozhatsky@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jan Kara Offload printing of scheduler deferred messages from IRQ context to a schedulable printing kthread, when possible (the same way we do it in vprintk_emit()). Otherwise, the CPU can spend unbounded amount of time doing printing in console_unlock() from IRQ. Signed-off-by: Jan Kara Signed-off-by: Sergey Senozhatsky --- kernel/printk/printk.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index cf7906e..e8dfe88 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -348,9 +348,16 @@ static void wake_up_klogd_work_func(struct irq_work *irq_work) int pending = __this_cpu_xchg(printk_pending, 0); if (pending & PRINTK_PENDING_OUTPUT) { - /* If trylock fails, someone else is doing the printing */ - if (console_trylock()) - console_unlock(); + if (!printk_sync && printk_kthread) { + wake_up_process(printk_kthread); + } else { + /* + * If trylock fails, someone else is doing + * the printing + */ + if (console_trylock()) + console_unlock(); + } } if (pending & PRINTK_PENDING_WAKEUP) -- 2.8.0.rc0