Module Name:    src
Committed By:   msaitoh
Date:           Sun Dec  5 07:44:53 UTC 2021

Modified Files:
        src/sys/dev/ic: aic79xx.c
        src/sys/kern: tty.c
        src/sys/nfs: nfs.h

Log Message:
s/runable/runnable/


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/dev/ic/aic79xx.c
cvs rdiff -u -r1.298 -r1.299 src/sys/kern/tty.c
cvs rdiff -u -r1.79 -r1.80 src/sys/nfs/nfs.h

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/ic/aic79xx.c
diff -u src/sys/dev/ic/aic79xx.c:1.61 src/sys/dev/ic/aic79xx.c:1.62
--- src/sys/dev/ic/aic79xx.c:1.61	Sun Dec  5 07:23:44 2021
+++ src/sys/dev/ic/aic79xx.c	Sun Dec  5 07:44:53 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic79xx.c,v 1.61 2021/12/05 07:23:44 msaitoh Exp $	*/
+/*	$NetBSD: aic79xx.c,v 1.62 2021/12/05 07:44:53 msaitoh Exp $	*/
 
 /*
  * Core routines and tables shareable across OS platforms.
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.61 2021/12/05 07:23:44 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.62 2021/12/05 07:44:53 msaitoh Exp $");
 
 #include <dev/ic/aic79xx_osm.h>
 #include <dev/ic/aic79xx_inline.h>
@@ -5243,7 +5243,7 @@ ahd_shutdown(void *arg)
  * that is only available just after a reset.  If "reinit" is
  * non-zero, this reset occurred after initial configuration
  * and the caller requests that the chip be fully reinitialized
- * to a runable state.  Chip interrupts are *not* enabled after
+ * to a runnable state.  Chip interrupts are *not* enabled after
  * a reinitialization.  The caller must enable interrupts via
  * ahd_intr_enable().
  */

Index: src/sys/kern/tty.c
diff -u src/sys/kern/tty.c:1.298 src/sys/kern/tty.c:1.299
--- src/sys/kern/tty.c:1.298	Wed Sep 29 13:14:39 2021
+++ src/sys/kern/tty.c	Sun Dec  5 07:44:53 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: tty.c,v 1.298 2021/09/29 13:14:39 thorpej Exp $	*/
+/*	$NetBSD: tty.c,v 1.299 2021/12/05 07:44:53 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2020 The NetBSD Foundation, Inc.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tty.c,v 1.298 2021/09/29 13:14:39 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tty.c,v 1.299 2021/12/05 07:44:53 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -2618,11 +2618,11 @@ ttygetinfo(struct tty *tp, int fromsig, 
 #ifdef LWP_PC
 #define FMT_RUN "%#"PRIxVADDR
 #define VAL_RUNNING (vaddr_t)LWP_PC(l)
-#define VAL_RUNABLE (vaddr_t)LWP_PC(l)
+#define VAL_RUNNABLE (vaddr_t)LWP_PC(l)
 #else
 #define FMT_RUN "%s"
 #define VAL_RUNNING "running"
-#define VAL_RUNABLE "runnable"
+#define VAL_RUNNABLE "runnable"
 #endif
 		switch (l->l_stat) {
 		case LSONPROC:
@@ -2631,7 +2631,7 @@ ttygetinfo(struct tty *tp, int fromsig, 
 			lp = lmsg;
 			break;
 		case LSRUN:
-			snprintf(lmsg, sizeof(lmsg), FMT_RUN, VAL_RUNABLE);
+			snprintf(lmsg, sizeof(lmsg), FMT_RUN, VAL_RUNNABLE);
 			lp = lmsg;
 			break;
 		default:

Index: src/sys/nfs/nfs.h
diff -u src/sys/nfs/nfs.h:1.79 src/sys/nfs/nfs.h:1.80
--- src/sys/nfs/nfs.h:1.79	Fri Jun  4 10:44:58 2021
+++ src/sys/nfs/nfs.h	Sun Dec  5 07:44:53 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: nfs.h,v 1.79 2021/06/04 10:44:58 hannken Exp $	*/
+/*	$NetBSD: nfs.h,v 1.80 2021/12/05 07:44:53 msaitoh Exp $	*/
 /*
  * Copyright (c) 1989, 1993, 1995
  *	The Regents of the University of California.  All rights reserved.
@@ -91,7 +91,7 @@
  * NFS client IO daemon threads. May be overridden by config options.
  */
 #ifndef NFS_MAXASYNCDAEMON
-#define	NFS_MAXASYNCDAEMON 	128	/* Max. number async_daemons runable */
+#define	NFS_MAXASYNCDAEMON 	128    /* Max. number async_daemons runnable */
 #endif
 
 /*

Reply via email to