Module Name:    src
Committed By:   riastradh
Date:           Sat Sep  2 17:44:32 UTC 2023

Modified Files:
        src/sys/kern: kern_heartbeat.c

Log Message:
heartbeat(9): More detail about manual test success criteria.

Changes comments only, no functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/kern/kern_heartbeat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/kern_heartbeat.c
diff -u src/sys/kern/kern_heartbeat.c:1.7 src/sys/kern/kern_heartbeat.c:1.8
--- src/sys/kern/kern_heartbeat.c:1.7	Sat Sep  2 17:44:23 2023
+++ src/sys/kern/kern_heartbeat.c	Sat Sep  2 17:44:32 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_heartbeat.c,v 1.7 2023/09/02 17:44:23 riastradh Exp $	*/
+/*	$NetBSD: kern_heartbeat.c,v 1.8 2023/09/02 17:44:32 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2023 The NetBSD Foundation, Inc.
@@ -53,21 +53,25 @@
  *
  * 4.	sysctl -w debug.crashme_enable=1
  *	sysctl -w debug.crashme.spl_spinout=1   # IPL_SOFTCLOCK
- *	# verify system panics after 15sec
+ *	# verify system panics after 15sec, with a stack trace through
+ *	# crashme_spl_spinout
  *
  * 5.	sysctl -w debug.crashme_enable=1
  *	sysctl -w debug.crashme.spl_spinout=6   # IPL_SCHED
- *	# verify system panics after 15sec
+ *	# verify system panics after 15sec, with a stack trace through
+ *	# crashme_spl_spinout
  *
  * 6.	cpuctl offline 0
  *	sysctl -w debug.crashme_enable=1
  *	sysctl -w debug.crashme.spl_spinout=1   # IPL_SOFTCLOCK
- *	# verify system panics after 15sec
+ *	# verify system panics after 15sec, with a stack trace through
+ *	# crashme_spl_spinout
  *
  * 7.	cpuctl offline 0
  *	sysctl -w debug.crashme_enable=1
  *	sysctl -w debug.crashme.spl_spinout=5   # IPL_VM
- *	# verify system panics after 15sec
+ *	# verify system panics after 15sec, with a stack trace through
+ *	# crashme_spl_spinout
  *
  *	# Not this -- IPL_SCHED and IPL_HIGH spinout on a single CPU
  *	# require a hardware watchdog timer.
@@ -78,7 +82,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_heartbeat.c,v 1.7 2023/09/02 17:44:23 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_heartbeat.c,v 1.8 2023/09/02 17:44:32 riastradh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"

Reply via email to