Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/nfs s/runable/runnable/
details: https://anonhg.NetBSD.org/src/rev/865bc6d7d988
branches: trunk
changeset: 1026720:865bc6d7d988
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Sun Dec 05 07:35:17 2021 +0000
description:
s/runable/runnable/
diffstat:
share/man/man7/sysctl.7 | 6 +++---
sys/dev/ic/aic79xx.c | 6 +++---
sys/kern/tty.c | 10 +++++-----
sys/nfs/nfs.h | 4 ++--
4 files changed, 13 insertions(+), 13 deletions(-)
diffs (113 lines):
diff -r 97d5dff09610 -r 865bc6d7d988 share/man/man7/sysctl.7
--- a/share/man/man7/sysctl.7 Sun Dec 05 07:33:56 2021 +0000
+++ b/share/man/man7/sysctl.7 Sun Dec 05 07:35:17 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: sysctl.7,v 1.155 2021/10/21 13:21:54 andvar Exp $
+.\" $NetBSD: sysctl.7,v 1.156 2021/12/05 07:35:17 msaitoh Exp $
.\"
.\" Copyright (c) 1993
.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" @(#)sysctl.3 8.4 (Berkeley) 5/9/95
.\"
-.Dd July 13, 2021
+.Dd December 5, 2021
.Dt SYSCTL 7
.Os
.Sh NAME
@@ -1162,7 +1162,7 @@
on the current situation.
Defaults to 50 and must be between 0 and 100.
.It Li kern.sched.min_catch ( dynamic )
-Minimum count of migratable (runable) threads for catching (stealing)
+Minimum count of migratable (runnable) threads for catching (stealing)
from another CPU.
Defaults to 1 but can be increased to decrease chance of thread
migration between CPUs.
diff -r 97d5dff09610 -r 865bc6d7d988 sys/dev/ic/aic79xx.c
--- a/sys/dev/ic/aic79xx.c Sun Dec 05 07:33:56 2021 +0000
+++ b/sys/dev/ic/aic79xx.c Sun Dec 05 07:35:17 2021 +0000
@@ -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 @@
* 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().
*/
diff -r 97d5dff09610 -r 865bc6d7d988 sys/kern/tty.c
--- a/sys/kern/tty.c Sun Dec 05 07:33:56 2021 +0000
+++ b/sys/kern/tty.c Sun Dec 05 07:35:17 2021 +0000
@@ -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 @@
#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 @@
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:
diff -r 97d5dff09610 -r 865bc6d7d988 sys/nfs/nfs.h
--- a/sys/nfs/nfs.h Sun Dec 05 07:33:56 2021 +0000
+++ b/sys/nfs/nfs.h Sun Dec 05 07:35:17 2021 +0000
@@ -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
/*
Home |
Main Index |
Thread Index |
Old Index