Module Name:    src
Committed By:   msaitoh
Date:           Wed Mar 20 23:33:23 UTC 2024

Modified Files:
        src/sys/dev/vmt: vmt_subr.c

Log Message:
On error, give time to recover and wait a second.

Part of OpenBSD sys/dev/vmt.c rev. 1.22.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/vmt/vmt_subr.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/dev/vmt/vmt_subr.c
diff -u src/sys/dev/vmt/vmt_subr.c:1.6 src/sys/dev/vmt/vmt_subr.c:1.7
--- src/sys/dev/vmt/vmt_subr.c:1.6	Wed Mar 20 23:33:02 2024
+++ src/sys/dev/vmt/vmt_subr.c	Wed Mar 20 23:33:22 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: vmt_subr.c,v 1.6 2024/03/20 23:33:02 msaitoh Exp $ */
+/* $NetBSD: vmt_subr.c,v 1.7 2024/03/20 23:33:22 msaitoh Exp $ */
 /* $OpenBSD: vmt.c,v 1.11 2011/01/27 21:29:25 dtucker Exp $ */
 
 /*
@@ -843,7 +843,9 @@ vmt_tclo_tick(void *xarg)
 	}
 
 out:
-	callout_schedule(&sc->sc_tclo_tick, sc->sc_tclo_ping ? hz : 1);
+	/* On error, give time to recover and wait a second */
+	callout_schedule(&sc->sc_tclo_tick,
+	    (sc->sc_tclo_ping || sc->sc_rpc_error) ? hz : 1);
 }
 
 static void

Reply via email to