From nobody Sun Apr 26 09:35:42 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BB5BCC43334 for ; Sun, 19 Jun 2022 23:33:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234881AbiFSXdz (ORCPT ); Sun, 19 Jun 2022 19:33:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44036 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231539AbiFSXdx (ORCPT ); Sun, 19 Jun 2022 19:33:53 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9C24F65B5 for ; Sun, 19 Jun 2022 16:33:52 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 5AF1BB80BA9 for ; Sun, 19 Jun 2022 23:33:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C2D8C34114; Sun, 19 Jun 2022 23:33:49 +0000 (UTC) Authentication-Results: smtp.kernel.org; dkim=pass (1024-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="WN9mEEbA" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zx2c4.com; s=20210105; t=1655681627; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=lG5RMNB0R0p4pD+TpKqoURyMeGyNH2/uAPQxoeQaA+g=; b=WN9mEEbAfk7wwF2ZPcE3YYVoIp5wr5nJ4wuzj0kaketFT8of9AA8h2KtU2zYcncOkztdnr EzEBhvwQMZ/e75IWz0IW9b2ZxpCEU/HQZbOFbz8KYQmi9c7hUkewLvhMJLuMZcKZMNMVSX yQSjqtmU8whA27egtLw5qfjM5BPwIJg= Received: by mail.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id 3fdf6f38 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sun, 19 Jun 2022 23:33:47 +0000 (UTC) From: "Jason A. Donenfeld" To: John Ogness , Petr Mladek , Marco Elver , linux-kernel@vger.kernel.org, Sergey Senozhatsky , Steven Rostedt Cc: "Jason A. Donenfeld" Subject: [PATCH v3] printk: allow direct console printing to be enabled always Date: Mon, 20 Jun 2022 01:33:02 +0200 Message-Id: <20220619233302.601092-1-Jason@zx2c4.com> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" In 5.19, there are some changes in printk message ordering / interleaving which leads to confusion. The most obvious (and benign) example appears on system boot, in which the "Run /init as init process" message gets intermixed with the messages that init actually writes() to stdout. For example, here's a snippet from build.wireguard.com: [ 0.469732] Freeing unused kernel image (initmem) memory: 4576K [ 0.469738] Write protecting the kernel read-only data: 10240k [ 0.473823] Freeing unused kernel image (text/rodata gap) memory: 20= 44K [ 0.475228] Freeing unused kernel image (rodata/data gap) memory: 11= 36K [ 0.475236] Run /init as init process WireGuard Test Suite on Linux 5.19.0-rc2+ x86_64 [+] Mounting filesystems... [+] Module self-tests: * allowedips self-tests: pass * nonce counter self-tests: pass * ratelimiter self-tests: pass [+] Enabling logging... [+] Launching tests... [ 0.475237] with arguments: [ 0.475238] /init [ 0.475238] with environment: [ 0.475239] HOME=3D/ [ 0.475240] TERM=3Dlinux [+] ip netns add wg-test-46-0 [+] ip netns add wg-test-46-1 Before the "with arguments:" and such would print prior to the "wireguard test suite on linux 5.19" banner. Now it shows after. I see the same thing with "Freeing unused kernel image (text/rodata gap) memory" printing interwoven into the console of my initramfs on my laptop. And so forth. But the bigger issue for me is that it makes it very confusing to interpret CI results later on. Prior, I would nice a nice correlation of: [+] some userspace command [ 1.2345 ] some kernel log output [+] some userspace command [ 1.2346 ] some kernel log output [+] some userspace command [ 1.2347 ] some kernel log output Now, the kernel log outputs are all over the place and out of order with the sequence of commands. This makes debugging issues somewhat tricky, because post hoc ergo propter hoc winds up being a good intuition to follow when tracking down bugs, and now the post hoc part is muddled. This is caused by threaded printk. In order to restore this in debugging sessions and in CI, this commit adds the ability to always use direct printk, either set by default at compile time, or overridden with a runtime command line switch. Cc: John Ogness Cc: Petr Mladek Cc: Marco Elver Fixes: 09c5ba0aa2fc ("printk: add kthread console printers") Signed-off-by: Jason A. Donenfeld --- Documentation/admin-guide/kernel-parameters.txt | 7 +++++++ kernel/printk/printk.c | 11 +++++++++++ lib/Kconfig.debug | 12 ++++++++++++ 3 files changed, 30 insertions(+) diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentatio= n/admin-guide/kernel-parameters.txt index 2522b11e593f..04cec66802d1 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -4424,6 +4424,13 @@ printk.time=3D Show timing data prefixed to each printk message line Format: (1/Y/y=3Denable, 0/N/n=3Ddisable) =20 + printk.direct=3D Rather than using kthreads for printk output, always + attempt to write to the console immediately. This has + performance implications, but will result in a more + faithful ordering and interleaving with other + processes writing to the console. + Format: (1/Y/y=3Denable, 0/N/n=3Ddisable) + processor.max_cstate=3D [HW,ACPI] Limit processor to maximum C-state max_cstate=3D9 overrides any DMI blacklist limit. diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index b095fb5f5f61..b7f8f2904f2c 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -178,6 +178,14 @@ static int __init control_devkmsg(char *str) } __setup("printk.devkmsg=3D", control_devkmsg); =20 +static bool printk_direct_only __initdata =3D IS_ENABLED(CONFIG_PRINTK_DIR= ECT); + +static int __init control_printk_direct_only(char *str) +{ + return kstrtobool(str, &printk_direct_only); +} +__setup("printk.direct=3D", control_printk_direct_only); + char devkmsg_log_str[DEVKMSG_STR_MAX_SIZE] =3D "ratelimit"; #if defined(CONFIG_PRINTK) && defined(CONFIG_SYSCTL) int devkmsg_sysctl_set_loglvl(struct ctl_table *table, int write, @@ -3605,6 +3613,9 @@ static int __init printk_activate_kthreads(void) { struct console *con; =20 + if (printk_direct_only) + return 0; + console_lock(); printk_kthreads_available =3D true; for_each_console(con) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 2e24db4bff19..1acfb4971ec7 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -35,6 +35,18 @@ config PRINTK_CALLER no option to enable/disable at the kernel command line parameter or sysfs interface. =20 +config PRINTK_DIRECT + bool "Attempt to flush printk output immediately" + depends on PRINTK + help + Rather than using kthreads for printk output, always attempt to write + to the console immediately. This has performance implications, but + will result in a more faithful ordering and interleaving with other + processes writing to the console. + + Say N here unless you really need this. This may also be controlled + at boot time with printk.direct=3D0/1. + config STACKTRACE_BUILD_ID bool "Show build ID information in stacktraces" depends on PRINTK --=20 2.35.1