Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src fix various typos, mainly in comments, but also in man pages...
details: https://anonhg.NetBSD.org/src/rev/c710aa98a505
branches: trunk
changeset: 989957:c710aa98a505
user: andvar <andvar%NetBSD.org@localhost>
date: Thu Oct 21 13:21:53 2021 +0000
description:
fix various typos, mainly in comments, but also in man pages and log messages.
diffstat:
doc/roadmaps/storage | 10 +++++-----
lib/librpcsvc/mount.x | 10 +++++-----
lib/libz/Makefile | 4 ++--
share/man/man4/man4.hppa/pdc.4 | 4 ++--
share/man/man4/vio9p.4 | 4 ++--
share/man/man5/statvfs.5 | 4 ++--
share/man/man7/sysctl.7 | 4 ++--
sys/arch/amiga/dev/mfc.c | 6 +++---
sys/arch/amiga/dev/ser.c | 6 +++---
sys/arch/arm/imx/imx23_ssp.c | 4 ++--
sys/arch/evbppc/virtex/dcr.h | 4 ++--
sys/dev/hyperv/if_hvnreg.h | 4 ++--
sys/dev/ic/dm9000reg.h | 4 ++--
sys/dev/ic/ds1286reg.h | 4 ++--
sys/dev/ic/ds1687reg.h | 6 +++---
sys/dev/ic/isp.c | 6 +++---
sys/dev/ic/isp_library.c | 6 +++---
sys/dev/pci/if_sip.c | 6 +++---
sys/kern/sys_futex.c | 6 +++---
sys/modules/examples/panic_string/panic_string.c | 6 +++---
sys/netinet/sctp_output.c | 10 +++++-----
sys/nfs/nfsnode.h | 4 ++--
tests/usr.bin/config/t_config.sh | 4 ++--
usr.sbin/mtrace/mtrace.c | 6 +++---
24 files changed, 66 insertions(+), 66 deletions(-)
diffs (truncated from 571 to 300 lines):
diff -r d3fbe2f7b211 -r c710aa98a505 doc/roadmaps/storage
--- a/doc/roadmaps/storage Thu Oct 21 11:45:24 2021 +0000
+++ b/doc/roadmaps/storage Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: storage,v 1.27 2019/05/29 02:34:19 msaitoh Exp $
+$NetBSD: storage,v 1.28 2021/10/21 13:21:53 andvar Exp $
NetBSD Storage Roadmap
======================
@@ -223,7 +223,7 @@
Semi-relatedly, it is also time for scsipi to become MPSAFE.
- - As of May 2016 a port of OpenBSD's driver has been commited. This
+ - As of May 2016 a port of OpenBSD's driver has been committed. This
will be in -8.
- The nvme driver is a backend to ld(4) and is fully is MPSAFE, but we
still need to attend to I/O path bottlenecks like kern/53124.
@@ -328,11 +328,11 @@
hashes; jdolecek also implemented several frequently used ext4 features
so most contemporary ext filesystems should be possible to mount
read-write
- - still need rw dir_nhash and xattr (semi-easy), and eventually journalling
+ - still need rw dir_nhash and xattr (semi-easy), and eventually journaling
(hard)
- There is no clear timeframe or release target.
- - jdolecek is working on improving ext3/ext4 support (particularily
- journalling)
+ - jdolecek is working on improving ext3/ext4 support (particularly
+ journaling)
14. Port hammer from Dragonfly
diff -r d3fbe2f7b211 -r c710aa98a505 lib/librpcsvc/mount.x
--- a/lib/librpcsvc/mount.x Thu Oct 21 11:45:24 2021 +0000
+++ b/lib/librpcsvc/mount.x Thu Oct 21 13:21:53 2021 +0000
@@ -36,7 +36,7 @@
%#ifndef __lint__
%/*static char sccsid[] = "from: @(#)mount.x 1.2 87/09/18 Copyr 1987 Sun Micro";*/
%/*static char sccsid[] = "from: @(#)mount.x 2.1 88/08/01 4.0 RPCSRC";*/
-%__RCSID("$NetBSD: mount.x,v 1.6 2004/07/01 22:52:34 kleink Exp $");
+%__RCSID("$NetBSD: mount.x,v 1.7 2021/10/21 13:21:53 andvar Exp $");
%/* $FreeBSD: src/include/rpcsvc/mount.x,v 1.7 2003/05/04 02:51:42 obrien Exp $ */
%#endif /* not __lint__ */
#endif
@@ -144,8 +144,8 @@
*/
version MOUNTVERS {
/*
- * Does no work. It is made available in all RPC services
- * to allow server reponse testing and timing
+ * Does not work. It is made available in all RPC services
+ * to allow server response testing and timing
*/
void
MOUNTPROC_NULL(void) = 0;
@@ -198,8 +198,8 @@
} = 1;
version MOUNTVERS3 {
/*
- * Does no work. It is made available in all RPC services
- * to allow server reponse testing and timing
+ * Does not work. It is made available in all RPC services
+ * to allow server response testing and timing
*/
void
MOUNTPROC_NULL(void) = 0;
diff -r d3fbe2f7b211 -r c710aa98a505 lib/libz/Makefile
--- a/lib/libz/Makefile Thu Oct 21 11:45:24 2021 +0000
+++ b/lib/libz/Makefile Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2021/04/26 07:17:30 mrg Exp $
+# $NetBSD: Makefile,v 1.27 2021/10/21 13:21:53 andvar Exp $
WARNS= 3
@@ -37,7 +37,7 @@
test: minigzip
echo hello world | ./minigzip | ./minigzip -d
-# Note: CFLAGS ommitted by intention!
+# Note: CFLAGS omitted by intention!
# This is to verify that zlib.h works standalone.
minigzip: ${ZLIBDIR}/test/minigzip.c libz.a
${CC} -o minigzip ${ZLIBDIR}/test/minigzip.c libz.a
diff -r d3fbe2f7b211 -r c710aa98a505 share/man/man4/man4.hppa/pdc.4
--- a/share/man/man4/man4.hppa/pdc.4 Thu Oct 21 11:45:24 2021 +0000
+++ b/share/man/man4/man4.hppa/pdc.4 Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: pdc.4,v 1.3 2017/07/03 21:30:59 wiz Exp $
+.\" $NetBSD: pdc.4,v 1.4 2021/10/21 13:21:53 andvar Exp $
.\"
.\" $OpenBSD: pdc.4,v 1.6 2007/06/01 19:54:10 aanriot Exp $
.\"
@@ -61,7 +61,7 @@
without causing a HPMC, in order to verify that the address is valid
and there is a device to respond to it.
The implementation may choose to call the caller's HPMC handler and
-raise error conditions on the bus convertors.
+raise error conditions on the bus converters.
.It Fn pdc "PDC_ALLOC" "PDC_ALLOC_DFLT" "ptr" "size"
Allocate static storage for IODC use of
.Ar size
diff -r d3fbe2f7b211 -r c710aa98a505 share/man/man4/vio9p.4
--- a/share/man/man4/vio9p.4 Thu Oct 21 11:45:24 2021 +0000
+++ b/share/man/man4/vio9p.4 Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: vio9p.4,v 1.3 2019/10/28 13:43:10 wiz Exp $
+.\" $NetBSD: vio9p.4,v 1.4 2021/10/21 13:21:53 andvar Exp $
.\"
.\" Copyright (c) 2019 Internet Initiative Japan, Inc.
.\" All rights reserved.
@@ -44,7 +44,7 @@
It exports a 9p end-point of virtio-9p via a character device file for
.Xr mount_9p 8 .
.Pp
-Each exported file system is assigned a character device and accesible via
+Each exported file system is assigned a character device and accessible via
.Pa /dev/vio9p0 ,
.Pa /dev/vio9p1
and so on, respectively, in exporting order by the host.
diff -r d3fbe2f7b211 -r c710aa98a505 share/man/man5/statvfs.5
--- a/share/man/man5/statvfs.5 Thu Oct 21 11:45:24 2021 +0000
+++ b/share/man/man5/statvfs.5 Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: statvfs.5,v 1.15 2019/09/22 22:59:38 christos Exp $
+.\" $NetBSD: statvfs.5,v 1.16 2021/10/21 13:21:53 andvar Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -118,7 +118,7 @@
.It Dv ST_NODEVMTIME
Never update modification times for device files.
.It Dv ST_LOG
-Use logging (journalling).
+Use logging (journaling).
.It Dv ST_LOCAL
The filesystem resides locally.
.It Dv ST_QUOTA
diff -r d3fbe2f7b211 -r c710aa98a505 share/man/man7/sysctl.7
--- a/share/man/man7/sysctl.7 Thu Oct 21 11:45:24 2021 +0000
+++ b/share/man/man7/sysctl.7 Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: sysctl.7,v 1.154 2021/07/28 11:32:21 wiz Exp $
+.\" $NetBSD: sysctl.7,v 1.155 2021/10/21 13:21:54 andvar Exp $
.\"
.\" Copyright (c) 1993
.\" The Regents of the University of California. All rights reserved.
@@ -159,7 +159,7 @@
.Pp
A second level name for controlling the
.Xr wapbl 4
-(Write Ahead Physical Block Logging file system journalling)
+(Write Ahead Physical Block Logging file system journaling)
capabilities with the following third level identifiers:
.Bl -tag -width "123456"
.It Li vfs.wapbl.flush_disk_cache
diff -r d3fbe2f7b211 -r c710aa98a505 sys/arch/amiga/dev/mfc.c
--- a/sys/arch/amiga/dev/mfc.c Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/arch/amiga/dev/mfc.c Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mfc.c,v 1.59 2021/08/07 16:18:41 thorpej Exp $ */
+/* $NetBSD: mfc.c,v 1.60 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 1982, 1990 The Regents of the University of California.
@@ -55,7 +55,7 @@
#include "opt_kgdb.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mfc.c,v 1.59 2021/08/07 16:18:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mfc.c,v 1.60 2021/10/21 13:21:54 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1053,7 +1053,7 @@
s1 = spltty();
/*
- * pass along any acumulated information
+ * pass along any accumulated information
* while input is not blocked
*/
while (sc->incnt && (tp->t_state & TS_TBLOCK) == 0) {
diff -r d3fbe2f7b211 -r c710aa98a505 sys/arch/amiga/dev/ser.c
--- a/sys/arch/amiga/dev/ser.c Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/arch/amiga/dev/ser.c Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ser.c,v 1.83 2014/07/25 08:10:31 dholland Exp $ */
+/* $NetBSD: ser.c,v 1.84 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@@ -40,7 +40,7 @@
#include "opt_kgdb.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ser.c,v 1.83 2014/07/25 08:10:31 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ser.c,v 1.84 2021/10/21 13:21:54 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -542,7 +542,7 @@
s1 = spltty();
/*
- * pass along any acumulated information
+ * pass along any accumulated information
*/
while (sbcnt > 0 && (tp->t_state & TS_TBLOCK) == 0) {
/*
diff -r d3fbe2f7b211 -r c710aa98a505 sys/arch/arm/imx/imx23_ssp.c
--- a/sys/arch/arm/imx/imx23_ssp.c Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/arch/arm/imx/imx23_ssp.c Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $Id: imx23_ssp.c,v 1.7 2021/09/16 21:29:41 andvar Exp $ */
+/* $Id: imx23_ssp.c,v 1.8 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -550,7 +550,7 @@
cmd->c_error = sc->sc_irq_error >> 8;
}
- /* Check reponse from the card if such was requested. */
+ /* Check response from the card if such was requested. */
if (ISSET(cmd->c_flags, SCF_RSP_PRESENT)) {
cmd->c_resp[0] = SSP_RD(sc, HW_SSP_SDRESP0);
if (ISSET(cmd->c_flags, SCF_RSP_136)) {
diff -r d3fbe2f7b211 -r c710aa98a505 sys/arch/evbppc/virtex/dcr.h
--- a/sys/arch/evbppc/virtex/dcr.h Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/arch/evbppc/virtex/dcr.h Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dcr.h,v 1.1 2006/12/02 22:18:47 freza Exp $ */
+/* $NetBSD: dcr.h,v 1.2 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 2006 Jachym Holecek
@@ -30,7 +30,7 @@
*/
/*
- * DCR is an user accesible bus on Xilinx PPC405D5Xn cores and may contain
+ * DCR is an user accessible bus on Xilinx PPC405D5Xn cores and may contain
* arbitrary devices. Because we want to be able to share drivers with
* OPB/PLB, we make it a bus space backend. Each platform ("design", "board")
* has to provide the leaf _read_4/_write_4 routines specific to device
diff -r d3fbe2f7b211 -r c710aa98a505 sys/dev/hyperv/if_hvnreg.h
--- a/sys/dev/hyperv/if_hvnreg.h Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/dev/hyperv/if_hvnreg.h Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_hvnreg.h,v 1.1 2019/02/15 08:54:01 nonaka Exp $ */
+/* $NetBSD: if_hvnreg.h,v 1.2 2021/10/21 13:21:54 andvar Exp $ */
/* $OpenBSD: if_hvnreg.h,v 1.3 2016/09/14 17:48:28 mikeb Exp $ */
/*-
@@ -96,7 +96,7 @@
uint32_t nvs_status; /* HVN_NVS_STATUS_ */
} __packed;
-/* No reponse */
+/* No response */
struct hvn_nvs_ndis_conf {
uint32_t nvs_type; /* HVN_NVS_TYPE_NDIS_CONF */
uint32_t nvs_mtu;
diff -r d3fbe2f7b211 -r c710aa98a505 sys/dev/ic/dm9000reg.h
--- a/sys/dev/ic/dm9000reg.h Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/dev/ic/dm9000reg.h Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dm9000reg.h,v 1.6 2020/10/08 21:00:25 nisimura Exp $ */
+/* $NetBSD: dm9000reg.h,v 1.7 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 2009 Paul Fleischer
@@ -30,7 +30,7 @@
#define _DEV_IC_DM9000REG_H_
/*
- * Registers accesible on the DM9000, extracted from pp. 11-12 from
+ * Registers accessible on the DM9000, extracted from pp. 11-12 from
* the data sheet
*/
diff -r d3fbe2f7b211 -r c710aa98a505 sys/dev/ic/ds1286reg.h
--- a/sys/dev/ic/ds1286reg.h Thu Oct 21 11:45:24 2021 +0000
+++ b/sys/dev/ic/ds1286reg.h Thu Oct 21 13:21:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ds1286reg.h,v 1.8 2005/12/11 12:21:26 christos Exp $ */
+/* $NetBSD: ds1286reg.h,v 1.9 2021/10/21 13:21:54 andvar Exp $ */
/*
* Copyright (c) 2001 Rafal K. Boni
@@ -56,7 +56,7 @@
/*
* Definitions for the Dallas Semiconductor DS1286/DS1386 Real Time Clock.
*
- * Plucked right from the Dallas Semicomductor specs available at
+ * Plucked right from the Dallas Semiconductor specs available at
* http://pdfserv.maxim-ic.com/arpdf/DS1286.pdf and
* http://pdfserv.maxim-ic.com/arpdf/DS1386-DS1386P.pdf
Home |
Main Index |
Thread Index |
Old Index