Re: [PATCH v7 01/13] printk: Avoid delaying messages that aren't solicited by any console
From: Chris Down
Date: Tue Nov 18 2025 - 14:33:22 EST
Of course, one reviews the whole patch set and then misses...
Chris Down writes:
- boot_delay_msec(level);
+ /* If the message is forced (e.g. panic), we must delay */
That should obviously say "_not_ delay". I'll fix it on next resend.
+ if (!is_printk_force_console() && suppress_message_printing(level))
+ return;
+
+ boot_delay_msec();