mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] watchdog: use kstrtouint to parse softlockup_panic=
@ 2026-09-21  6:41 林濬哲
  2026-09-21 14:21 ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: 林濬哲 @ 2026-09-21  6:41 UTC (permalink / raw)
  To: Wim Van Sebroeck
  Cc: Guenter Roeck, linux-watchdog, linux-kernel, m18667909625

simple_strtoul() is deprecated. Replace it with kstrtouint(), which
also reports parse errors back to the boot process instead of
silently accepting garbage.

Signed-off-by: 林濬哲 <m18667909625@163.com>
Assisted-by: AI coding assistant (disclosed per kernel AI guidelines)
---
 kernel/watchdog.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/kernel/watchdog.c b/kernel/watchdog.c
index e5134ad7b663..420f08140713 100644
--- a/kernel/watchdog.c
+++ b/kernel/watchdog.c
@@ -17,6 +17,7 @@
 #include <linux/irq.h>
 #include <linux/irqdesc.h>
 #include <linux/kernel_stat.h>
+#include <linux/kstrtox.h>
 #include <linux/kvm_para.h>
 #include <linux/math64.h>
 #include <linux/mm.h>
@@ -422,8 +423,10 @@ static unsigned long soft_lockup_nmi_warn;
 
 static int __init softlockup_panic_setup(char *str)
 {
-	softlockup_panic = simple_strtoul(str, NULL, 0);
-	return 1;
+	int ret;
+
+	ret = kstrtouint(str, 0, &softlockup_panic);
+	return ret ? ret : 1;
 }
 __setup("softlockup_panic=", softlockup_panic_setup);
 
-- 
2.53.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-09-22 13:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-21  6:41 [PATCH 1/2] watchdog: use kstrtouint to parse softlockup_panic= 林濬哲
2026-09-21 14:21 ` Guenter Roeck
2026-09-21  6:29   ` [PATCH v2 2/2] PM: hibernate: use kstrtouint to parse resume= device numbers 林濬哲
2026-09-22  5:50   ` [PATCH v2 1/2] watchdog: use kstrtouint to parse softlockup_panic= 林濬哲
2026-09-22 13:28     ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®