The patch titled Subject: watchdog: handle comma separated nmi_watchdog command line has been added to the -mm mm-nonmm-unstable branch. Its filename is watchdog-handle-comma-separated-nmi_watchdog-command-line.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/watchdog-handle-comma-separated-nmi_watchdog-command-line.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Song Liu <song@xxxxxxxxxx> Subject: watchdog: handle comma separated nmi_watchdog command line Date: Mon, 29 Apr 2024 23:02:35 -0700 Per the document, the kernel can accept comma separated command line like nmi_watchdog=nopanic,0. However, the code doesn't really handle it. Fix the kernel to handle it properly. Link: https://lkml.kernel.org/r/20240430060236.1878002-1-song@xxxxxxxxxx Signed-off-by: Song Liu <song@xxxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/watchdog.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/kernel/watchdog.c~watchdog-handle-comma-separated-nmi_watchdog-command-line +++ a/kernel/watchdog.c @@ -71,6 +71,7 @@ void __init hardlockup_detector_disable( static int __init hardlockup_panic_setup(char *str) { +next: if (!strncmp(str, "panic", 5)) hardlockup_panic = 1; else if (!strncmp(str, "nopanic", 7)) @@ -79,6 +80,12 @@ static int __init hardlockup_panic_setup watchdog_hardlockup_user_enabled = 0; else if (!strncmp(str, "1", 1)) watchdog_hardlockup_user_enabled = 1; + while (*(str++)) { + if (*str == ',') { + str++; + goto next; + } + } return 1; } __setup("nmi_watchdog=", hardlockup_panic_setup); _ Patches currently in -mm which might be from song@xxxxxxxxxx are watchdog-handle-comma-separated-nmi_watchdog-command-line.patch watchdog-allow-nmi-watchdog-to-use-raw-perf-event.patch