CVS commit: src/sys/dev/ic

2021-08-22 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Aug 22 19:56:15 UTC 2021

Modified Files:
src/sys/dev/ic: aic79xxvar.h aic7xxxvar.h

Log Message:
fix typos in comments, add missing RCSID.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/ic/aic79xxvar.h
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/aic7xxxvar.h

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



CVS commit: src/sys/dev/ic

2021-08-22 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Aug 22 19:56:15 UTC 2021

Modified Files:
src/sys/dev/ic: aic79xxvar.h aic7xxxvar.h

Log Message:
fix typos in comments, add missing RCSID.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/ic/aic79xxvar.h
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/aic7xxxvar.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/aic79xxvar.h
diff -u src/sys/dev/ic/aic79xxvar.h:1.27 src/sys/dev/ic/aic79xxvar.h:1.28
--- src/sys/dev/ic/aic79xxvar.h:1.27	Sat Sep 26 14:44:11 2009
+++ src/sys/dev/ic/aic79xxvar.h	Sun Aug 22 19:56:15 2021
@@ -1,3 +1,5 @@
+/*	$NetBSD: aic79xxvar.h,v 1.28 2021/08/22 19:56:15 andvar Exp $	*/
+
 /*
  * Core definitions and data structures sharable across OS platforms.
  *
@@ -288,7 +290,7 @@ typedef enum {
 	 */
 	AHD_NONPACKFIFO_BUG	= 0x4000,
 	/*
-	 * Writing to a DFF SCBPTR register may fail if concurent with
+	 * Writing to a DFF SCBPTR register may fail if concurrent with
 	 * a hardware write to the other DFF SCBPTR register.  This is
 	 * not currently a concern in our sequencer since all chips with
 	 * this bug have the AHD_NONPACKFIFO_BUG and all writes of concern
@@ -486,7 +488,7 @@ struct hardware_scb {
  *	o A residual has occurred if SG_FULL_RESID is set in sgptr,
  *	  or residual_sgptr does not have SG_LIST_NULL set.
  *
- *	o We are transfering the last segment if residual_datacnt has
+ *	o We are transferring the last segment if residual_datacnt has
  *	  the SG_LAST_SEG flag set.
  *
  * Host:
@@ -534,7 +536,7 @@ struct hardware_scb {
  * the length to store additional address bits and a flag to indicate
  * that a given segment terminates the transfer.  This gives us an
  * addressable range of 512GB on machines with 64bit PCI or with chips
- * that can support dual address cycles on 32bit PCI busses.
+ * that can support dual address cycles on 32bit PCI buses.
  */
 struct ahd_dma_seg {
 	uint32_t	addr;
@@ -691,7 +693,7 @@ struct scb_data {
 / Target Mode Definitions */
 
 /*
- * Connection desciptor for select-in requests in target mode.
+ * Connection descriptor for select-in requests in target mode.
  */
 struct target_cmd {
 	uint8_t scsiid;		/* Our ID and the initiator's ID */
@@ -750,7 +752,7 @@ struct ahd_tmode_lstate;
 / Transfer Negotiation Datastructures */
 #define AHD_TRANS_CUR		0x01	/* Modify current negotiation status */
 #define AHD_TRANS_ACTIVE	0x03	/* Assume this target is on the bus */
-#define AHD_TRANS_GOAL		0x04	/* Modify negontiation goal */
+#define AHD_TRANS_GOAL		0x04	/* Modify negotiation goal */
 #define AHD_TRANS_USER		0x08	/* Modify user negotiation settings */
 #define AHD_PERIOD_10MHz	0x19
 
@@ -1122,7 +1124,7 @@ struct ahd_softc {
 
 	/*
 	 * Device instance currently on the bus awaiting a continue TIO
-	 * for a command that was not given the disconnect priviledge.
+	 * for a command that was not given the disconnect privilege.
 	 */
 	struct ahd_tmode_lstate  *pending_device;
 
@@ -1444,7 +1446,7 @@ void			ahd_validate_width(struct ahd_sof
 typedef enum {
 	AHD_NEG_TO_GOAL,	/* Renegotiate only if goal and curr differ. */
 	AHD_NEG_IF_NON_ASYNC,	/* Renegotiate so long as goal is non-async. */
-	AHD_NEG_ALWAYS		/* Renegotiat even if goal is async. */
+	AHD_NEG_ALWAYS		/* Renegotiate even if goal is async. */
 } ahd_neg_type;
 int			ahd_update_neg_request(struct ahd_softc *,
 			struct ahd_devinfo *, struct ahd_tmode_tstate *,

Index: src/sys/dev/ic/aic7xxxvar.h
diff -u src/sys/dev/ic/aic7xxxvar.h:1.57 src/sys/dev/ic/aic7xxxvar.h:1.58
--- src/sys/dev/ic/aic7xxxvar.h:1.57	Tue May 12 14:25:17 2009
+++ src/sys/dev/ic/aic7xxxvar.h	Sun Aug 22 19:56:15 2021
@@ -1,3 +1,5 @@
+/*	$NetBSD: aic7xxxvar.h,v 1.58 2021/08/22 19:56:15 andvar Exp $	*/
+
 /*
  * Core definitions and data structures sharable across OS platforms.
  *
@@ -37,7 +39,7 @@
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGES.
  *
- * $Id: aic7xxxvar.h,v 1.57 2009/05/12 14:25:17 cegger Exp $
+ * $Id: aic7xxxvar.h,v 1.58 2021/08/22 19:56:15 andvar Exp $
  *
  * $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx.h,v 1.44 2003/01/20 20:44:55 gibbs Exp $
  */
@@ -545,7 +547,7 @@ struct hardware_scb {
  *	o A residual has occurred if SG_FULL_RESID is set in sgptr,
  *	  or residual_sgptr does not have SG_LIST_NULL set.
  *
- *	o We are transfering the last segment if residual_datacnt has
+ *	o We are transferring the last segment if residual_datacnt has
  *	  the SG_LAST_SEG flag set.
  *
  * Host:
@@ -604,7 +606,7 @@ struct hardware_scb {
  * the length to store additional address bits and a flag to indicate
  * that a given segment terminates the transfer.  This gives us an
  * addressable range of 512GB on machines with 64bit PCI or with chips
- * that 

CVS commit: src

2021-08-22 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Aug 22 20:18:39 UTC 2021

Modified Files:
src/lib/libc/sys: _lwp_create.2
src/sbin/newfs_udf: udf_write.c
src/sys/arch/hpc/stand/hpcboot/sh3: sh_mmu.cpp
src/sys/arch/hppa/hppa: hppa_machdep.c
src/tests/lib/libc/sys: t_lwp_create.c
src/usr.sbin/isibootd: isibootd.c

Log Message:
s/priviledge/privilege/ in comments/log messages and fix one typo in descriptor.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libc/sys/_lwp_create.2
cvs rdiff -u -r1.9 -r1.10 src/sbin/newfs_udf/udf_write.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/hppa/hppa/hppa_machdep.c
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/sys/t_lwp_create.c
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/isibootd/isibootd.c

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



CVS commit: src

2021-08-22 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Aug 22 20:18:39 UTC 2021

Modified Files:
src/lib/libc/sys: _lwp_create.2
src/sbin/newfs_udf: udf_write.c
src/sys/arch/hpc/stand/hpcboot/sh3: sh_mmu.cpp
src/sys/arch/hppa/hppa: hppa_machdep.c
src/tests/lib/libc/sys: t_lwp_create.c
src/usr.sbin/isibootd: isibootd.c

Log Message:
s/priviledge/privilege/ in comments/log messages and fix one typo in descriptor.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libc/sys/_lwp_create.2
cvs rdiff -u -r1.9 -r1.10 src/sbin/newfs_udf/udf_write.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/hppa/hppa/hppa_machdep.c
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/sys/t_lwp_create.c
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/isibootd/isibootd.c

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

Modified files:

Index: src/lib/libc/sys/_lwp_create.2
diff -u src/lib/libc/sys/_lwp_create.2:1.8 src/lib/libc/sys/_lwp_create.2:1.9
--- src/lib/libc/sys/_lwp_create.2:1.8	Sat Jul 31 20:51:32 2021
+++ src/lib/libc/sys/_lwp_create.2	Sun Aug 22 20:18:39 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: _lwp_create.2,v 1.8 2021/07/31 20:51:32 andvar Exp $
+.\"	$NetBSD: _lwp_create.2,v 1.9 2021/08/22 20:18:39 andvar Exp $
 .\"
 .\" Copyright (c) 2003 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -49,7 +49,7 @@ argument specifies the initial execution
 signal mask, stack, and machine registers.
 The signal stack of the newly created light-weight process is reset to
 disabled.
-If this context specifies invalid register values (for example priviledge
+If this context specifies invalid register values (for example privilege
 escalation by setting machine dependent bits forbidden for user processes),
 or does not specify cpu register values (uc_flags does not have the
 _UC_CPU bit set), the call will fail and errno will be set to EINVAL.

Index: src/sbin/newfs_udf/udf_write.c
diff -u src/sbin/newfs_udf/udf_write.c:1.9 src/sbin/newfs_udf/udf_write.c:1.10
--- src/sbin/newfs_udf/udf_write.c:1.9	Fri Jan  2 21:01:12 2015
+++ src/sbin/newfs_udf/udf_write.c	Sun Aug 22 20:18:39 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_write.c,v 1.9 2015/01/02 21:01:12 reinoud Exp $ */
+/* $NetBSD: udf_write.c,v 1.10 2021/08/22 20:18:39 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
@@ -30,7 +30,7 @@
 #endif
 
 #include 
-__RCSID("$NetBSD: udf_write.c,v 1.9 2015/01/02 21:01:12 reinoud Exp $");
+__RCSID("$NetBSD: udf_write.c,v 1.10 2021/08/22 20:18:39 andvar Exp $");
 
 #include 
 #include 
@@ -820,7 +820,7 @@ udf_do_newfs_postfix(void)
 			return error;
 		loc++;
 	
-		/* mark end of integrity desciptor sequence again */
+		/* mark end of integrity descriptor sequence again */
 		error = udf_write_dscr_phys(terminator_dscr, loc, 1);
 		if (error)
 			return error;

Index: src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp
diff -u src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp:1.7 src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp:1.8
--- src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp:1.7	Mon Apr 28 20:23:20 2008
+++ src/sys/arch/hpc/stand/hpcboot/sh3/sh_mmu.cpp	Sun Aug 22 20:18:39 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: sh_mmu.cpp,v 1.7 2008/04/28 20:23:20 martin Exp $	*/
+/*	$NetBSD: sh_mmu.cpp,v 1.8 2021/08/22 20:18:39 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -202,7 +202,7 @@ MemoryManager_SHMMU::MMUDump()
 			goto disabled;
 		DPRINTF((TEXT("%s virtual storage mode,"),
 		r & SH3_MMUCR_SV ? TEXT("single") : TEXT("multiple")));
-		DPRINTF((TEXT(" SQ access: (priviledge%S)"),
+		DPRINTF((TEXT(" SQ access: (privilege%S)"),
 		r & SH4_MMUCR_SQMD ? "" : "/user"));
 		DPRINTF((TEXT("\n")));
 #if sample_code

Index: src/sys/arch/hppa/hppa/hppa_machdep.c
diff -u src/sys/arch/hppa/hppa/hppa_machdep.c:1.31 src/sys/arch/hppa/hppa/hppa_machdep.c:1.32
--- src/sys/arch/hppa/hppa/hppa_machdep.c:1.31	Thu Apr 16 09:28:52 2020
+++ src/sys/arch/hppa/hppa/hppa_machdep.c	Sun Aug 22 20:18:39 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: hppa_machdep.c,v 1.31 2020/04/16 09:28:52 skrll Exp $	*/
+/*	$NetBSD: hppa_machdep.c,v 1.32 2021/08/22 20:18:39 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997, 2019 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: hppa_machdep.c,v 1.31 2020/04/16 09:28:52 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hppa_machdep.c,v 1.32 2021/08/22 20:18:39 andvar Exp $");
 
 #include 
 #include 
@@ -141,7 +141,7 @@ cpu_mcontext_validate(struct lwp *l, con
 #if 0
 	/*
 	 * XXX
-	 * Force the space regs and priviledge bits to
+	 * Force the space regs and privilege bits to
 	 * the right values in the trapframe for now.
 	 */
 

Index: src/tests/lib/libc/sys/t_lwp_create.c
diff -u src/tests/lib/libc/sys/t_lwp_create.c:1.3 src/tests/lib/libc/sys/t_lwp_create.c:1.4
--- 

CVS commit: src/share/man/man4

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 14:11:22 UTC 2021

Modified Files:
src/share/man/man4: tty.4

Log Message:
tty.4: s/asynchronus/asynchronous/


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/share/man/man4/tty.4

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



CVS commit: src/share/man/man4

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 14:11:22 UTC 2021

Modified Files:
src/share/man/man4: tty.4

Log Message:
tty.4: s/asynchronus/asynchronous/


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/share/man/man4/tty.4

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

Modified files:

Index: src/share/man/man4/tty.4
diff -u src/share/man/man4/tty.4:1.30 src/share/man/man4/tty.4:1.31
--- src/share/man/man4/tty.4:1.30	Sat Sep  7 19:32:52 2019
+++ src/share/man/man4/tty.4	Tue Aug 17 14:11:22 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: tty.4,v 1.30 2019/09/07 19:32:52 wiz Exp $
+.\"	$NetBSD: tty.4,v 1.31 2021/08/17 14:11:22 andvar Exp $
 .\"
 .\" Copyright (c) 1991, 1992, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -478,7 +478,7 @@ Return the current line discipline in th
 .Sh HISTORY
 A console typewriter device
 .Pa /dev/tty
-and asynchronus communication interfaces
+and asynchronous communication interfaces
 .Pa /dev/tty[0-5]
 first appeared in
 .At v1 .



CVS commit: src/sys/dev/pci

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 17:16:40 UTC 2021

Modified Files:
src/sys/dev/pci: pci_subr.c

Log Message:
s/Windw/Window/ in log message.


To generate a diff of this commit:
cvs rdiff -u -r1.227 -r1.228 src/sys/dev/pci/pci_subr.c

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



CVS commit: src/sys/dev/pci

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 17:16:40 UTC 2021

Modified Files:
src/sys/dev/pci: pci_subr.c

Log Message:
s/Windw/Window/ in log message.


To generate a diff of this commit:
cvs rdiff -u -r1.227 -r1.228 src/sys/dev/pci/pci_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/pci/pci_subr.c
diff -u src/sys/dev/pci/pci_subr.c:1.227 src/sys/dev/pci/pci_subr.c:1.228
--- src/sys/dev/pci/pci_subr.c:1.227	Mon Jul 12 04:41:14 2021
+++ src/sys/dev/pci/pci_subr.c	Tue Aug 17 17:16:40 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_subr.c,v 1.227 2021/07/12 04:41:14 msaitoh Exp $	*/
+/*	$NetBSD: pci_subr.c,v 1.228 2021/08/17 17:16:40 andvar Exp $	*/
 
 /*
  * Copyright (c) 1997 Zubin D. Dittia.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.227 2021/07/12 04:41:14 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.228 2021/08/17 17:16:40 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -3539,7 +3539,7 @@ pci_conf_print_multicast_cap(const pcire
 	/* Endpoint Only */
 	n = PCIREG_SHIFTOUT(reg, PCI_MCAST_CAP_WINSIZEREQ);
 	if (n > 0)
-		printf("  Windw Size Requested: %d\n", 1 << (n - 1));
+		printf("  Window Size Requested: %d\n", 1 << (n - 1));
 
 	onoff("ECRC Regeneration Supported", reg, PCI_MCAST_CAP_ECRCREGEN);
 



CVS commit: src

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 22:00:33 UTC 2021

Modified Files:
src/share/man/man4: route.4
src/sys/altq: altq_cbq.c
src/sys/arch/acorn32/acorn32: rpc_machdep.c
src/sys/arch/acorn32/doc: history
src/sys/arch/acorn32/eb7500atx: eb7500atx_machdep.c
src/sys/arch/alpha/jensenio: jensenio_dma.c
src/sys/arch/amiga/amiga: amiga_init.c
src/sys/arch/amiga/dev: fd.c grfabs_cc.c
src/sys/arch/arm/footbridge: footbridge_machdep.c
src/sys/arch/arm/imx: imxspi.c
src/sys/arch/atari/atari: atari_init.c
src/sys/arch/atari/dev: grfabs_fal.c grfabs_tt.c if_ne_mb.c
src/sys/arch/evbarm/adi_brh: brh_machdep.c
src/sys/arch/evbarm/armadillo: armadillo9_machdep.c
src/sys/arch/evbarm/g42xxeb: g42xxeb_machdep.c
src/sys/arch/evbarm/hdl_g: hdlg_machdep.c
src/sys/arch/evbarm/imx31: imx31lk_machdep.c
src/sys/arch/evbarm/iq80310: iq80310_machdep.c
src/sys/arch/evbarm/iq80321: iq80321_machdep.c
src/sys/arch/evbarm/ixdp425: ixdp425_machdep.c
src/sys/arch/evbarm/ixm1200: ixm1200_machdep.c
src/sys/arch/evbarm/lubbock: lubbock_machdep.c
src/sys/arch/evbarm/mini2440: mini2440_machdep.c
src/sys/arch/evbarm/npwr_fc: npwr_fc_machdep.c
src/sys/arch/evbarm/nslu2: nslu2_machdep.c
src/sys/arch/evbarm/smdk2xx0: smdk2410_machdep.c smdk2800_machdep.c
src/sys/arch/evbarm/tsarm: tsarm_machdep.c
src/sys/arch/evbarm/viper: viper_machdep.c
src/sys/arch/hpcarm/hpcarm: kloader_machdep.c pxa2x0_hpc_machdep.c
sa11x0_hpc_machdep.c
src/sys/arch/i386/conf: MODULAR
src/sys/arch/macppc/stand/ofwboot: ofdev.c
src/sys/arch/mips/alchemy/include: aureg.h
src/sys/arch/mips/ralink: ralink_eth.c
src/sys/arch/mipsco/obio: rambo.h
src/sys/arch/netwinder/netwinder: netwinder_machdep.c
src/sys/arch/pmax/ibus: siireg.h
src/sys/arch/powerpc/oea: ofw_rascons.c
src/sys/arch/sh3/include: scifreg.h
src/sys/arch/shark/shark: shark_machdep.c
src/sys/arch/sparc/sparc: machdep.c
src/sys/arch/sun2/sun2: machdep.c
src/sys/arch/sun68k/stand: README
src/sys/arch/vax/include: qdreg.h
src/sys/arch/zaurus/zaurus: kloader_machdep.c machdep.c
src/sys/dev/ic: gemreg.h hd64570.c rndisreg.h tulipreg.h
src/sys/dev/marvell: if_mvxpereg.h
src/sys/dev/pci: if_casreg.h if_iwmreg.h pci_subr.c pcireg.h
src/sys/dev/pci/ixgbe: if_bypass.c
src/sys/dev/qbus: qdreg.h
src/sys/dev/tc: stic.c
src/sys/dev/usb: usb_quirks.c xhci.c
src/sys/kern: subr_vmem.c
src/sys/lib/libkern/arch/hppa: milli.S
src/sys/netinet6: ip6_output.c ip6_var.h
src/sys/sys: shm.h
src/sys/ufs/ext2fs: ext2fs_inode.c
src/tests/net/if: t_ifconfig.sh
src/usr.sbin/acpitools/amldb: amldb.8 debug.c
src/usr.sbin/ypserv/ypinit: ypinit.sh

Log Message:
fix multiplei repetitive typos in comments, messages and documentation. mainly 
because copy paste code big amount of files are affected.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/share/man/man4/route.4
cvs rdiff -u -r1.36 -r1.37 src/sys/altq/altq_cbq.c
cvs rdiff -u -r1.98 -r1.99 src/sys/arch/acorn32/acorn32/rpc_machdep.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/acorn32/doc/history
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/alpha/jensenio/jensenio_dma.c
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/amiga/amiga/amiga_init.c
cvs rdiff -u -r1.99 -r1.100 src/sys/arch/amiga/dev/fd.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/amiga/dev/grfabs_cc.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/footbridge/footbridge_machdep.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/imx/imxspi.c
cvs rdiff -u -r1.101 -r1.102 src/sys/arch/atari/atari/atari_init.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/atari/dev/grfabs_fal.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/atari/dev/grfabs_tt.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/dev/if_ne_mb.c
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/evbarm/adi_brh/brh_machdep.c
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/evbarm/armadillo/armadillo9_machdep.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/evbarm/hdl_g/hdlg_machdep.c
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/evbarm/imx31/imx31lk_machdep.c
cvs rdiff -u -r1.93 -r1.94 src/sys/arch/evbarm/iq80310/iq80310_machdep.c
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/evbarm/iq80321/iq80321_machdep.c
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/evbarm/ixdp425/ixdp425_machdep.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/evbarm/ixm1200/ixm1200_machdep.c
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/evbarm/lubbock/lubbock_machdep.c
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/evbarm/mini2440/mini2440_machdep.c

CVS commit: src

2021-08-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug 17 22:00:33 UTC 2021

Modified Files:
src/share/man/man4: route.4
src/sys/altq: altq_cbq.c
src/sys/arch/acorn32/acorn32: rpc_machdep.c
src/sys/arch/acorn32/doc: history
src/sys/arch/acorn32/eb7500atx: eb7500atx_machdep.c
src/sys/arch/alpha/jensenio: jensenio_dma.c
src/sys/arch/amiga/amiga: amiga_init.c
src/sys/arch/amiga/dev: fd.c grfabs_cc.c
src/sys/arch/arm/footbridge: footbridge_machdep.c
src/sys/arch/arm/imx: imxspi.c
src/sys/arch/atari/atari: atari_init.c
src/sys/arch/atari/dev: grfabs_fal.c grfabs_tt.c if_ne_mb.c
src/sys/arch/evbarm/adi_brh: brh_machdep.c
src/sys/arch/evbarm/armadillo: armadillo9_machdep.c
src/sys/arch/evbarm/g42xxeb: g42xxeb_machdep.c
src/sys/arch/evbarm/hdl_g: hdlg_machdep.c
src/sys/arch/evbarm/imx31: imx31lk_machdep.c
src/sys/arch/evbarm/iq80310: iq80310_machdep.c
src/sys/arch/evbarm/iq80321: iq80321_machdep.c
src/sys/arch/evbarm/ixdp425: ixdp425_machdep.c
src/sys/arch/evbarm/ixm1200: ixm1200_machdep.c
src/sys/arch/evbarm/lubbock: lubbock_machdep.c
src/sys/arch/evbarm/mini2440: mini2440_machdep.c
src/sys/arch/evbarm/npwr_fc: npwr_fc_machdep.c
src/sys/arch/evbarm/nslu2: nslu2_machdep.c
src/sys/arch/evbarm/smdk2xx0: smdk2410_machdep.c smdk2800_machdep.c
src/sys/arch/evbarm/tsarm: tsarm_machdep.c
src/sys/arch/evbarm/viper: viper_machdep.c
src/sys/arch/hpcarm/hpcarm: kloader_machdep.c pxa2x0_hpc_machdep.c
sa11x0_hpc_machdep.c
src/sys/arch/i386/conf: MODULAR
src/sys/arch/macppc/stand/ofwboot: ofdev.c
src/sys/arch/mips/alchemy/include: aureg.h
src/sys/arch/mips/ralink: ralink_eth.c
src/sys/arch/mipsco/obio: rambo.h
src/sys/arch/netwinder/netwinder: netwinder_machdep.c
src/sys/arch/pmax/ibus: siireg.h
src/sys/arch/powerpc/oea: ofw_rascons.c
src/sys/arch/sh3/include: scifreg.h
src/sys/arch/shark/shark: shark_machdep.c
src/sys/arch/sparc/sparc: machdep.c
src/sys/arch/sun2/sun2: machdep.c
src/sys/arch/sun68k/stand: README
src/sys/arch/vax/include: qdreg.h
src/sys/arch/zaurus/zaurus: kloader_machdep.c machdep.c
src/sys/dev/ic: gemreg.h hd64570.c rndisreg.h tulipreg.h
src/sys/dev/marvell: if_mvxpereg.h
src/sys/dev/pci: if_casreg.h if_iwmreg.h pci_subr.c pcireg.h
src/sys/dev/pci/ixgbe: if_bypass.c
src/sys/dev/qbus: qdreg.h
src/sys/dev/tc: stic.c
src/sys/dev/usb: usb_quirks.c xhci.c
src/sys/kern: subr_vmem.c
src/sys/lib/libkern/arch/hppa: milli.S
src/sys/netinet6: ip6_output.c ip6_var.h
src/sys/sys: shm.h
src/sys/ufs/ext2fs: ext2fs_inode.c
src/tests/net/if: t_ifconfig.sh
src/usr.sbin/acpitools/amldb: amldb.8 debug.c
src/usr.sbin/ypserv/ypinit: ypinit.sh

Log Message:
fix multiplei repetitive typos in comments, messages and documentation. mainly 
because copy paste code big amount of files are affected.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/share/man/man4/route.4
cvs rdiff -u -r1.36 -r1.37 src/sys/altq/altq_cbq.c
cvs rdiff -u -r1.98 -r1.99 src/sys/arch/acorn32/acorn32/rpc_machdep.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/acorn32/doc/history
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/alpha/jensenio/jensenio_dma.c
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/amiga/amiga/amiga_init.c
cvs rdiff -u -r1.99 -r1.100 src/sys/arch/amiga/dev/fd.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/amiga/dev/grfabs_cc.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/footbridge/footbridge_machdep.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/imx/imxspi.c
cvs rdiff -u -r1.101 -r1.102 src/sys/arch/atari/atari/atari_init.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/atari/dev/grfabs_fal.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/atari/dev/grfabs_tt.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/dev/if_ne_mb.c
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/evbarm/adi_brh/brh_machdep.c
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/evbarm/armadillo/armadillo9_machdep.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/evbarm/hdl_g/hdlg_machdep.c
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/evbarm/imx31/imx31lk_machdep.c
cvs rdiff -u -r1.93 -r1.94 src/sys/arch/evbarm/iq80310/iq80310_machdep.c
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/evbarm/iq80321/iq80321_machdep.c
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/evbarm/ixdp425/ixdp425_machdep.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/evbarm/ixm1200/ixm1200_machdep.c
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/evbarm/lubbock/lubbock_machdep.c
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/evbarm/mini2440/mini2440_machdep.c

CVS commit: src/sys/dev

2021-08-26 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 26 21:33:36 UTC 2021

Modified Files:
src/sys/dev/pci: if_bwfm_pci.c if_bwfm_pci.h if_jmereg.h if_vgereg.h
pciide_svwsata_reg.h vioscsireg.h
src/sys/dev/usb: aubtfwlreg.h if_urtwreg.h mbim.h

Log Message:
Add missing RCSID in header files and one __KERNEL_RCSID().


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/if_bwfm_pci.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/if_bwfm_pci.h \
src/sys/dev/pci/pciide_svwsata_reg.h src/sys/dev/pci/vioscsireg.h
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/if_jmereg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pci/if_vgereg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/aubtfwlreg.h src/sys/dev/usb/mbim.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/usb/if_urtwreg.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/pci/if_bwfm_pci.c
diff -u src/sys/dev/pci/if_bwfm_pci.c:1.10 src/sys/dev/pci/if_bwfm_pci.c:1.11
--- src/sys/dev/pci/if_bwfm_pci.c:1.10	Sat May  8 00:27:02 2021
+++ src/sys/dev/pci/if_bwfm_pci.c	Thu Aug 26 21:33:36 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_bwfm_pci.c,v 1.10 2021/05/08 00:27:02 thorpej Exp $	*/
+/*	$NetBSD: if_bwfm_pci.c,v 1.11 2021/08/26 21:33:36 andvar Exp $	*/
 /*	$OpenBSD: if_bwfm_pci.c,v 1.18 2018/02/08 05:00:38 patrick Exp $	*/
 /*
  * Copyright (c) 2010-2016 Broadcom Corporation
@@ -17,6 +17,9 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include 
+__KERNEL_RCSID(0, "$NetBSD: if_bwfm_pci.c,v 1.11 2021/08/26 21:33:36 andvar Exp $");
+
 #include 
 #include 
 #include 

Index: src/sys/dev/pci/if_bwfm_pci.h
diff -u src/sys/dev/pci/if_bwfm_pci.h:1.1 src/sys/dev/pci/if_bwfm_pci.h:1.2
--- src/sys/dev/pci/if_bwfm_pci.h:1.1	Fri May 11 07:42:22 2018
+++ src/sys/dev/pci/if_bwfm_pci.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/*	$NetBSD: if_bwfm_pci.h,v 1.2 2021/08/26 21:33:36 andvar Exp $	*/
 /*	$OpenBSD: if_bwfm_pci.h,v 1.2 2018/01/05 23:30:16 patrick Exp $	*/
 /*
  * Copyright (c) 2010-2016 Broadcom Corporation
Index: src/sys/dev/pci/pciide_svwsata_reg.h
diff -u src/sys/dev/pci/pciide_svwsata_reg.h:1.1 src/sys/dev/pci/pciide_svwsata_reg.h:1.2
--- src/sys/dev/pci/pciide_svwsata_reg.h:1.1	Mon Mar  6 18:35:24 2006
+++ src/sys/dev/pci/pciide_svwsata_reg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/*	$NetBSD: pciide_svwsata_reg.h,v 1.2 2021/08/26 21:33:36 andvar Exp $	*/
 /*	$OpenBSD: pciide_svwsata_reg.h,v 1.4 2006/02/10 21:45:41 kettenis Exp $	*/
 
 /*
Index: src/sys/dev/pci/vioscsireg.h
diff -u src/sys/dev/pci/vioscsireg.h:1.1 src/sys/dev/pci/vioscsireg.h:1.2
--- src/sys/dev/pci/vioscsireg.h:1.1	Thu Oct 29 01:56:12 2015
+++ src/sys/dev/pci/vioscsireg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/*	$NetBSD: vioscsireg.h,v 1.2 2021/08/26 21:33:36 andvar Exp $	*/
 /*	$OpenBSD: vioscsireg.h,v 1.1 2013/12/20 21:50:49 matthew Exp $	*/
 /*
  * Copyright (c) 2013 Google Inc.

Index: src/sys/dev/pci/if_jmereg.h
diff -u src/sys/dev/pci/if_jmereg.h:1.5 src/sys/dev/pci/if_jmereg.h:1.6
--- src/sys/dev/pci/if_jmereg.h:1.5	Thu Nov 14 09:15:12 2019
+++ src/sys/dev/pci/if_jmereg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,5 @@
+/* $NetBSD: if_jmereg.h,v 1.6 2021/08/26 21:33:36 andvar Exp $ */
+
 /*-
  * Copyright (c) 2008, Pyun YongHyeon 
  * All rights reserved.

Index: src/sys/dev/pci/if_vgereg.h
diff -u src/sys/dev/pci/if_vgereg.h:1.6 src/sys/dev/pci/if_vgereg.h:1.7
--- src/sys/dev/pci/if_vgereg.h:1.6	Sat Jul 24 21:31:37 2021
+++ src/sys/dev/pci/if_vgereg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,5 @@
+/* $NetBSD: if_vgereg.h,v 1.7 2021/08/26 21:33:36 andvar Exp $ */
+
 /*-
  * Copyright (c) 2004
  *	Bill Paul .  All rights reserved.

Index: src/sys/dev/usb/aubtfwlreg.h
diff -u src/sys/dev/usb/aubtfwlreg.h:1.1 src/sys/dev/usb/aubtfwlreg.h:1.2
--- src/sys/dev/usb/aubtfwlreg.h:1.1	Thu May  9 12:44:31 2013
+++ src/sys/dev/usb/aubtfwlreg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/* $NetBSD: aubtfwlreg.h,v 1.2 2021/08/26 21:33:36 andvar Exp $ */
 
 #define AR3K_FIRMWARE_HEADER_SIZE 20
 
Index: src/sys/dev/usb/mbim.h
diff -u src/sys/dev/usb/mbim.h:1.1 src/sys/dev/usb/mbim.h:1.2
--- src/sys/dev/usb/mbim.h:1.1	Tue Jul 31 16:44:30 2018
+++ src/sys/dev/usb/mbim.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/*	$NetBSD: mbim.h,v 1.2 2021/08/26 21:33:36 andvar Exp $ */
 /*	$OpenBSD: mbim.h,v 1.4 2017/04/18 13:27:55 gerhard Exp $ */
 
 /*

Index: src/sys/dev/usb/if_urtwreg.h
diff -u src/sys/dev/usb/if_urtwreg.h:1.6 src/sys/dev/usb/if_urtwreg.h:1.7
--- src/sys/dev/usb/if_urtwreg.h:1.6	Thu May 14 08:34:18 2020
+++ src/sys/dev/usb/if_urtwreg.h	Thu Aug 26 21:33:36 2021
@@ -1,3 +1,4 @@
+/*	$NetBSD: if_urtwreg.h,v 1.7 2021/08/26 21:33:36 andvar Exp $	*/
 /*	$OpenBSD: if_urtwreg.h,v 1.13 2010/08/27 17:08:01 jsg Exp $	*/
 
 /*-



CVS commit: src/sys/dev

2021-08-26 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 26 21:33:36 UTC 2021

Modified Files:
src/sys/dev/pci: if_bwfm_pci.c if_bwfm_pci.h if_jmereg.h if_vgereg.h
pciide_svwsata_reg.h vioscsireg.h
src/sys/dev/usb: aubtfwlreg.h if_urtwreg.h mbim.h

Log Message:
Add missing RCSID in header files and one __KERNEL_RCSID().


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/if_bwfm_pci.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/if_bwfm_pci.h \
src/sys/dev/pci/pciide_svwsata_reg.h src/sys/dev/pci/vioscsireg.h
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/if_jmereg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pci/if_vgereg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/aubtfwlreg.h src/sys/dev/usb/mbim.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/usb/if_urtwreg.h

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



CVS commit: src

2021-09-01 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Sep  1 14:17:46 UTC 2021

Modified Files:
src/sbin/newfs_udf: udf_write.c
src/sys/arch/mips/rmi: rmixl_spl.S

Log Message:
fix few typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sbin/newfs_udf/udf_write.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/mips/rmi/rmixl_spl.S

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



CVS commit: src

2021-09-01 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Sep  1 14:17:46 UTC 2021

Modified Files:
src/sbin/newfs_udf: udf_write.c
src/sys/arch/mips/rmi: rmixl_spl.S

Log Message:
fix few typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sbin/newfs_udf/udf_write.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/mips/rmi/rmixl_spl.S

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

Modified files:

Index: src/sbin/newfs_udf/udf_write.c
diff -u src/sbin/newfs_udf/udf_write.c:1.10 src/sbin/newfs_udf/udf_write.c:1.11
--- src/sbin/newfs_udf/udf_write.c:1.10	Sun Aug 22 20:18:39 2021
+++ src/sbin/newfs_udf/udf_write.c	Wed Sep  1 14:17:46 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_write.c,v 1.10 2021/08/22 20:18:39 andvar Exp $ */
+/* $NetBSD: udf_write.c,v 1.11 2021/09/01 14:17:46 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
@@ -30,7 +30,7 @@
 #endif
 
 #include 
-__RCSID("$NetBSD: udf_write.c,v 1.10 2021/08/22 20:18:39 andvar Exp $");
+__RCSID("$NetBSD: udf_write.c,v 1.11 2021/09/01 14:17:46 andvar Exp $");
 
 #include 
 #include 
@@ -551,7 +551,7 @@ udf_do_newfs_prefix(void)
 	/*
 	 * Start with wipeout of VRS1 upto start of partition. This allows
 	 * formatting for sequentials with the track reservation and it 
-	 * cleans old rubbish on rewritables. For sequentuals without the
+	 * cleans old rubbish on rewritables. For sequentials without the
 	 * track reservation all is wiped from track start.
 	 */
 	if ((zero_dscr = calloc(1, context.sector_size)) == NULL)
@@ -580,7 +580,7 @@ udf_do_newfs_prefix(void)
 	 * terminator
 	 */
 
-	/* start of volume recognision sequence building */
+	/* start of volume recognition sequence building */
 	context.vds_seq = 0;
 
 	/* Create primary volume descriptor */

Index: src/sys/arch/mips/rmi/rmixl_spl.S
diff -u src/sys/arch/mips/rmi/rmixl_spl.S:1.6 src/sys/arch/mips/rmi/rmixl_spl.S:1.7
--- src/sys/arch/mips/rmi/rmixl_spl.S:1.6	Tue Dec  1 08:39:39 2020
+++ src/sys/arch/mips/rmi/rmixl_spl.S	Wed Sep  1 14:17:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: rmixl_spl.S,v 1.6 2020/12/01 08:39:39 skrll Exp $	*/
+/*	$NetBSD: rmixl_spl.S,v 1.7 2021/09/01 14:17:46 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #include 
 #include 
 
-RCSID("$NetBSD: rmixl_spl.S,v 1.6 2020/12/01 08:39:39 skrll Exp $");
+RCSID("$NetBSD: rmixl_spl.S,v 1.7 2021/09/01 14:17:46 andvar Exp $");
 
 #include "assym.h"
 
@@ -284,7 +284,7 @@ STATIC_LEAF(_splsw_splintr)
 	 * - if clock intr is requested, set MIPS_INT_MASK_5
 	 * - if other HW intr is requested, set MIPS_INT_MASK_1 as summary bit
 	 *   the RMI evbmips_iointr function will sort through
-	 *   individial EIRR requests
+	 *   individual EIRR requests
 	 */
 	li	t2, RMIXL_INT_MASK_5		# load RMIXL_INT_MASK_5
 	and	t1, v1, t2			# save count/compare intr request value



CVS commit: src/usr.sbin/syslogd

2021-09-01 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Sep  1 13:44:02 UTC 2021

Modified Files:
src/usr.sbin/syslogd: syslog.conf.5

Log Message:
s/optons/options/


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/usr.sbin/syslogd/syslog.conf.5

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



CVS commit: src/usr.sbin/syslogd

2021-09-01 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Sep  1 13:44:02 UTC 2021

Modified Files:
src/usr.sbin/syslogd: syslog.conf.5

Log Message:
s/optons/options/


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/usr.sbin/syslogd/syslog.conf.5

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

Modified files:

Index: src/usr.sbin/syslogd/syslog.conf.5
diff -u src/usr.sbin/syslogd/syslog.conf.5:1.25 src/usr.sbin/syslogd/syslog.conf.5:1.26
--- src/usr.sbin/syslogd/syslog.conf.5:1.25	Mon Jul  3 21:35:32 2017
+++ src/usr.sbin/syslogd/syslog.conf.5	Wed Sep  1 13:44:02 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: syslog.conf.5,v 1.25 2017/07/03 21:35:32 wiz Exp $
+.\"	$NetBSD: syslog.conf.5,v 1.26 2021/09/01 13:44:02 andvar Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -477,7 +477,7 @@ On any match the client is authenticated
 .Sh BUFFERING
 .Xr syslogd 8
 is able to buffer temporary not writable messages in memory.
-To limit the memory consumed for this buffering the following optons may be
+To limit the memory consumed for this buffering the following options may be
 given:
 .Bl -ohang
 .It Em file_queue_length



CVS commit: src/sys/dev

2021-08-25 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Aug 25 21:50:29 UTC 2021

Modified Files:
src/sys/dev/mii: smscphy.c
src/sys/dev/pci: pm3fb.c pm3reg.h

Log Message:
Add missing RCSID and __KERNEL_RCSID().


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/mii/smscphy.c
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/pm3fb.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/pm3reg.h

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



CVS commit: src/sys/dev

2021-08-25 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Aug 25 21:50:29 UTC 2021

Modified Files:
src/sys/dev/mii: smscphy.c
src/sys/dev/pci: pm3fb.c pm3reg.h

Log Message:
Add missing RCSID and __KERNEL_RCSID().


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/mii/smscphy.c
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/pm3fb.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/pm3reg.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/mii/smscphy.c
diff -u src/sys/dev/mii/smscphy.c:1.3 src/sys/dev/mii/smscphy.c:1.4
--- src/sys/dev/mii/smscphy.c:1.3	Sun Mar 15 23:04:50 2020
+++ src/sys/dev/mii/smscphy.c	Wed Aug 25 21:50:29 2021
@@ -1,3 +1,5 @@
+/* $NetBSD: smscphy.c,v 1.4 2021/08/25 21:50:29 andvar Exp $ */
+
 /*-
  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  *
@@ -24,13 +26,15 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include 
 /* $FreeBSD: head/sys/dev/mii/smscphy.c 326255 2017-11-27 14:52:40Z pfg $ */
 
 /*
  * Driver for the SMSC LAN8710A
  */
 
+#include 
+__KERNEL_RCSID(0, "$NetBSD: smscphy.c,v 1.4 2021/08/25 21:50:29 andvar Exp $");
+
 #include 
 #include 
 #include 

Index: src/sys/dev/pci/pm3fb.c
diff -u src/sys/dev/pci/pm3fb.c:1.7 src/sys/dev/pci/pm3fb.c:1.8
--- src/sys/dev/pci/pm3fb.c:1.7	Sat Aug  7 16:19:14 2021
+++ src/sys/dev/pci/pm3fb.c	Wed Aug 25 21:50:29 2021
@@ -1,3 +1,5 @@
+/* $NetBSD: pm3fb.c,v 1.8 2021/08/25 21:50:29 andvar Exp $ */
+
 /*
  * Copyright (c) 2015 Naruaki Etomi
  * All rights reserved.
@@ -29,6 +31,9 @@
  * pm3_accel.c, pm3_dac.c and pm2fb framebuffer console driver
  */
 
+#include 
+__KERNEL_RCSID(0, "$NetBSD: pm3fb.c,v 1.8 2021/08/25 21:50:29 andvar Exp $");
+
 #include 
 #include 
 #include 

Index: src/sys/dev/pci/pm3reg.h
diff -u src/sys/dev/pci/pm3reg.h:1.2 src/sys/dev/pci/pm3reg.h:1.3
--- src/sys/dev/pci/pm3reg.h:1.2	Sat Jun 17 16:11:14 2017
+++ src/sys/dev/pci/pm3reg.h	Wed Aug 25 21:50:29 2021
@@ -1,3 +1,5 @@
+/* $NetBSD: pm3reg.h,v 1.3 2021/08/25 21:50:29 andvar Exp $ */
+
 /*
  * Copyright (c) 2015 Naruaki Etomi
  * All rights reserved.



CVS commit: src/sys/dev/pci

2021-08-30 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug 30 20:51:27 UTC 2021

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
add RDC R6022 PCI-Host bridge.


To generate a diff of this commit:
cvs rdiff -u -r1.1430 -r1.1431 src/sys/dev/pci/pcidevs

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



CVS commit: src/sys/dev/pci

2021-08-30 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug 30 20:51:27 UTC 2021

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
add RDC R6022 PCI-Host bridge.


To generate a diff of this commit:
cvs rdiff -u -r1.1430 -r1.1431 src/sys/dev/pci/pcidevs

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/pci/pcidevs
diff -u src/sys/dev/pci/pcidevs:1.1430 src/sys/dev/pci/pcidevs:1.1431
--- src/sys/dev/pci/pcidevs:1.1430	Mon Aug 30 08:53:29 2021
+++ src/sys/dev/pci/pcidevs	Mon Aug 30 20:51:27 2021
@@ -1,4 +1,4 @@
-$NetBSD: pcidevs,v 1.1430 2021/08/30 08:53:29 mrg Exp $
+$NetBSD: pcidevs,v 1.1431 2021/08/30 20:51:27 andvar Exp $
 
 /*
  * Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -7776,6 +7776,7 @@ product RDC	R2015_VGA	0x2015	R2015 VGA C
 product RDC	R6011_PCIB	0x6011	R6011 PCI-ISA bridge
 product RDC	R6013_PCIB	0x6013	R6013 PCI-ISA bridge
 product RDC	R6021_HB	0x6021	R6021 Host
+product RDC	R6022_HB	0x6022	R6022 Host
 product RDC	R6023_HB	0x6023	R6023 Host
 product RDC	R6025_HB	0x6025	R6025 Host
 product RDC	R6026_HB	0x6026	R6026 Host



CVS commit: src/sys/dev/pci

2021-08-30 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug 30 20:52:10 UTC 2021

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen.


To generate a diff of this commit:
cvs rdiff -u -r1.1417 -r1.1418 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1416 -r1.1417 src/sys/dev/pci/pcidevs_data.h

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



CVS commit: src/sys/dev/pci

2021-08-30 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug 30 20:09:22 UTC 2021

Modified Files:
src/sys/dev/pci: if_vte.c

Log Message:
Restore original MDC speed control register value after MAC reset, if it wasn't 
default. Fixes PR port-i386/53494.
ok riastradh


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/if_vte.c

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



CVS commit: src/sys/dev/pci

2021-08-30 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug 30 20:09:22 UTC 2021

Modified Files:
src/sys/dev/pci: if_vte.c

Log Message:
Restore original MDC speed control register value after MAC reset, if it wasn't 
default. Fixes PR port-i386/53494.
ok riastradh


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/if_vte.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/pci/if_vte.c
diff -u src/sys/dev/pci/if_vte.c:1.31 src/sys/dev/pci/if_vte.c:1.32
--- src/sys/dev/pci/if_vte.c:1.31	Fri Feb  7 00:04:28 2020
+++ src/sys/dev/pci/if_vte.c	Mon Aug 30 20:09:22 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_vte.c,v 1.31 2020/02/07 00:04:28 thorpej Exp $	*/
+/*	$NetBSD: if_vte.c,v 1.32 2021/08/30 20:09:22 andvar Exp $	*/
 
 /*
  * Copyright (c) 2011 Manuel Bouyer.  All rights reserved.
@@ -55,7 +55,7 @@
 /* Driver for DM Electronics, Inc, Vortex86 RDC R6040 FastEthernet. */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_vte.c,v 1.31 2020/02/07 00:04:28 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_vte.c,v 1.32 2021/08/30 20:09:22 andvar Exp $");
 
 #include 
 #include 
@@ -1211,9 +1211,10 @@ vte_tick(void *arg)
 static void
 vte_reset(struct vte_softc *sc)
 {
-	uint16_t mcr;
+	uint16_t mcr, mdcsc;
 	int i;
 
+	mdcsc = CSR_READ_2(sc, VTE_MDCSC);
 	mcr = CSR_READ_2(sc, VTE_MCR1);
 	CSR_WRITE_2(sc, VTE_MCR1, mcr | MCR1_MAC_RESET);
 	for (i = VTE_RESET_TIMEOUT; i > 0; i--) {
@@ -1231,6 +1232,14 @@ vte_reset(struct vte_softc *sc)
 	CSR_WRITE_2(sc, VTE_MACSM, 0x0002);
 	CSR_WRITE_2(sc, VTE_MACSM, 0);
 	DELAY(5000);
+
+	/*
+	 * On some SoCs (like Vortex86DX3) MDC speed control register value
+	 * needs to be restored to original value instead of default one,
+	 * otherwise some PHY registers may fail to be read.
+	 */
+	if (mdcsc != MDCSC_DEFAULT)
+		CSR_WRITE_2(sc, VTE_MDCSC, mdcsc);
 }
 
 



CVS commit: src/sys

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:26:07 UTC 2021

Modified Files:
src/sys/arch/amd64/amd64: locore.S
src/sys/arch/i386/i386: locore.S
src/sys/dev/marvell: mvxpsec.c
src/sys/dev/pci: if_bnx.c

Log Message:
s/struture/structure/ s/structre/structure/


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/sys/arch/amd64/amd64/locore.S
cvs rdiff -u -r1.185 -r1.186 src/sys/arch/i386/i386/locore.S
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/marvell/mvxpsec.c
cvs rdiff -u -r1.108 -r1.109 src/sys/dev/pci/if_bnx.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/arch/amd64/amd64/locore.S
diff -u src/sys/arch/amd64/amd64/locore.S:1.210 src/sys/arch/amd64/amd64/locore.S:1.211
--- src/sys/arch/amd64/amd64/locore.S:1.210	Sun Jun 21 16:57:18 2020
+++ src/sys/arch/amd64/amd64/locore.S	Fri Aug 13 20:26:07 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.S,v 1.210 2020/06/21 16:57:18 bouyer Exp $	*/
+/*	$NetBSD: locore.S,v 1.211 2021/08/13 20:26:07 andvar Exp $	*/
 
 /*
  * Copyright-o-rama!
@@ -1050,7 +1050,7 @@ ENTRY(start_xen32)
 	movl	$RELOC(HYPERVISOR_shared_info_pa),%ebp
 	movl	%ebx,(%ebp)
 	movl	$0,4(%ebp)
-	/* XXX assume hvm_start_info+dependant struture fits in a single page */
+	/* XXX assume hvm_start_info+dependant structure fits in a single page */
 	addl	$PAGE_SIZE, %ebx
 	addl	$PGOFSET,%ebx
 	andl	$~PGOFSET,%ebx

Index: src/sys/arch/i386/i386/locore.S
diff -u src/sys/arch/i386/i386/locore.S:1.185 src/sys/arch/i386/i386/locore.S:1.186
--- src/sys/arch/i386/i386/locore.S:1.185	Wed May 27 19:33:40 2020
+++ src/sys/arch/i386/i386/locore.S	Fri Aug 13 20:26:07 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.S,v 1.185 2020/05/27 19:33:40 ad Exp $	*/
+/*	$NetBSD: locore.S,v 1.186 2021/08/13 20:26:07 andvar Exp $	*/
 
 /*
  * Copyright-o-rama!
@@ -128,7 +128,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: locore.S,v 1.185 2020/05/27 19:33:40 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locore.S,v 1.186 2021/08/13 20:26:07 andvar Exp $");
 
 #include "opt_copy_symtab.h"
 #include "opt_ddb.h"
@@ -1205,7 +1205,7 @@ ENTRY(start_xenpvh)
 	andl	$~PGOFSET,%ebx
 	movl	$RELOC(HYPERVISOR_shared_info_pa),%ebp
 	movl	%ebx,(%ebp)
-	/* XXX assume hvm_start_info+dependant struture fits in a single page */
+	/* XXX assume hvm_start_info+dependant structure fits in a single page */
 	addl	$PAGE_SIZE, %ebx
 	addl	$PGOFSET,%ebx
 	andl	$~PGOFSET,%ebx

Index: src/sys/dev/marvell/mvxpsec.c
diff -u src/sys/dev/marvell/mvxpsec.c:1.7 src/sys/dev/marvell/mvxpsec.c:1.8
--- src/sys/dev/marvell/mvxpsec.c:1.7	Sat Jul 25 22:37:48 2020
+++ src/sys/dev/marvell/mvxpsec.c	Fri Aug 13 20:26:07 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: mvxpsec.c,v 1.7 2020/07/25 22:37:48 riastradh Exp $	*/
+/*	$NetBSD: mvxpsec.c,v 1.8 2021/08/13 20:26:07 andvar Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -1487,7 +1487,7 @@ mvxpsec_packet_dtor(void *arg, void *obj
 }
 
 /*
- * allocate new session struture.
+ * allocate new session structure.
  */
 STATIC struct mvxpsec_session *
 mvxpsec_session_alloc(struct mvxpsec_softc *sc)

Index: src/sys/dev/pci/if_bnx.c
diff -u src/sys/dev/pci/if_bnx.c:1.108 src/sys/dev/pci/if_bnx.c:1.109
--- src/sys/dev/pci/if_bnx.c:1.108	Sun Feb 14 14:05:03 2021
+++ src/sys/dev/pci/if_bnx.c	Fri Aug 13 20:26:07 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_bnx.c,v 1.108 2021/02/14 14:05:03 jakllsch Exp $	*/
+/*	$NetBSD: if_bnx.c,v 1.109 2021/08/13 20:26:07 andvar Exp $	*/
 /*	$OpenBSD: if_bnx.c,v 1.101 2013/03/28 17:21:44 brad Exp $	*/
 
 /*-
@@ -35,7 +35,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/sys/dev/bce/if_bce.c,v 1.3 2006/04/13 14:12:26 ru Exp $");
 #endif
-__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.108 2021/02/14 14:05:03 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bnx.c,v 1.109 2021/08/13 20:26:07 andvar Exp $");
 
 /*
  * The following controllers are supported by this driver:
@@ -2304,7 +2304,7 @@ bnx_init_media(struct bnx_softc *sc)
 //
 /* Free any DMA memory owned by the driver. */
 /*  */
-/* Scans through each data structre that requires DMA memory and frees  */
+/* Scans through each data structure that requires DMA memory and frees */
 /* the memory if allocated. */
 /*  */
 /* Returns: */



CVS commit: src/sys

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:26:07 UTC 2021

Modified Files:
src/sys/arch/amd64/amd64: locore.S
src/sys/arch/i386/i386: locore.S
src/sys/dev/marvell: mvxpsec.c
src/sys/dev/pci: if_bnx.c

Log Message:
s/struture/structure/ s/structre/structure/


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/sys/arch/amd64/amd64/locore.S
cvs rdiff -u -r1.185 -r1.186 src/sys/arch/i386/i386/locore.S
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/marvell/mvxpsec.c
cvs rdiff -u -r1.108 -r1.109 src/sys/dev/pci/if_bnx.c

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



CVS commit: src/sys/arch/alpha/alpha

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:19:45 UTC 2021

Modified Files:
src/sys/arch/alpha/alpha: pmap.c

Log Message:
fix multiple typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.300 -r1.301 src/sys/arch/alpha/alpha/pmap.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/arch/alpha/alpha/pmap.c
diff -u src/sys/arch/alpha/alpha/pmap.c:1.300 src/sys/arch/alpha/alpha/pmap.c:1.301
--- src/sys/arch/alpha/alpha/pmap.c:1.300	Sat Jul 31 14:51:25 2021
+++ src/sys/arch/alpha/alpha/pmap.c	Fri Aug 13 20:19:45 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.300 2021/07/31 14:51:25 thorpej Exp $ */
+/* $NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $ */
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001, 2007, 2008, 2020
@@ -106,8 +106,8 @@
  *
  *	All user page table access is done via K0SEG.  Kernel
  *	page table access is done via the recursive Virtual Page
- *	Table becase kernel PT pages are pre-allocated and never
- *	freed, so no VPT fault handling is requiried.
+ *	Table because kernel PT pages are pre-allocated and never
+ *	freed, so no VPT fault handling is required.
  */
 
 /*
@@ -135,7 +135,7 @@
 
 #include 			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.300 2021/07/31 14:51:25 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $");
 
 #include 
 #include 
@@ -578,9 +578,9 @@ pmap_pvlist_free(struct pmap_pvlist * co
  * that includes room for 8 VAs, the pmap the VAs belong to, a bitmap of
  * CPUs to be notified, and a list for PT pages that are freed during
  * removal off mappings.  The number of valid addresses in the list as
- * well as flags are sqeezed into the lower bits of the first two VAs.
+ * well as flags are squeezed into the lower bits of the first two VAs.
  * Storage for this structure is allocated on the stack.  We need to be
- * careful to keep the size of this struture under control.
+ * careful to keep the size of this structure under control.
  *
  * When notifying remote CPUs, we acquire the tlb_lock (which also
  * blocks IPIs), record the pointer to our context structure, set a
@@ -589,9 +589,9 @@ pmap_pvlist_free(struct pmap_pvlist * co
  * any invalidations necessary on the local CPU.  Once that is done,
  * we then wait the the global context pointer to be cleared, which
  * will be done by the final remote CPU to complete their work. This
- * method reduces cache line contention during pocessing.
+ * method reduces cache line contention during processing.
  *
- * When removing mappings in user pmaps, this implemention frees page
+ * When removing mappings in user pmaps, this implementation frees page
  * table pages back to the VM system once they contain no valid mappings.
  * As we do this, we must ensure to invalidate TLB entries that the
  * CPU might hold for the respective recursive VPT mappings.  This must
@@ -1038,7 +1038,7 @@ pmap_tlb_shootnow(const struct pmap_tlb_
 
 	/*
 	 * Figure out who to notify.  If it's for the kernel or
-	 * multiple aaddress spaces, we notify everybody.  If
+	 * multiple address spaces, we notify everybody.  If
 	 * it's a single user pmap, then we try to acquire the
 	 * activation lock so we can get an accurate accounting
 	 * of who needs to be notified.  If we can't acquire
@@ -2094,7 +2094,7 @@ pmap_enter_tlb_shootdown(pmap_t const pm
  * pmap_enter_l2pt_delref:
  *
  *	Release a reference on an L2 PT page for pmap_enter().
- *	This is factored out separately becacause we expect it
+ *	This is factored out separately because we expect it
  *	to be a rare case.
  */
 static void __noinline
@@ -2105,7 +2105,7 @@ pmap_enter_l2pt_delref(pmap_t const pmap
 
 	/*
 	 * PALcode may have tried to service a TLB miss with
-	 * this L2 PTE, so we need to make sure we don't actully
+	 * this L2 PTE, so we need to make sure we don't actually
 	 * free the PT page untl we've shot down any TLB entries
 	 * for this VPT index.
 	 */
@@ -2122,7 +2122,7 @@ pmap_enter_l2pt_delref(pmap_t const pmap
  * pmap_enter_l3pt_delref:
  *
  *	Release a reference on an L3 PT page for pmap_enter().
- *	This is factored out separately becacause we expect it
+ *	This is factored out separately because we expect it
  *	to be a rare case.
  */
 static void __noinline
@@ -2133,8 +2133,8 @@ pmap_enter_l3pt_delref(pmap_t const pmap
 
 	/*
 	 * PALcode may have tried to service a TLB miss with
-	 * this PTE, so we need to make sure we don't actully
-	 * free the PT page untl we've shot down any TLB entries
+	 * this PTE, so we need to make sure we don't actually
+	 * free the PT page until we've shot down any TLB entries
 	 * for this VPT index.
 	 */
 
@@ -2256,7 +2256,7 @@ pmap_enter(pmap_t pmap, vaddr_t va, padd
 	 * new one immediately.
 	 */
 	if ((opte & PG_V) == 0) {
-		/* No TLB invalidatons needed for new mappings. */
+		/* No TLB 

CVS commit: src/sys/arch/alpha/alpha

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:19:45 UTC 2021

Modified Files:
src/sys/arch/alpha/alpha: pmap.c

Log Message:
fix multiple typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.300 -r1.301 src/sys/arch/alpha/alpha/pmap.c

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



CVS commit: src

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:19:14 UTC 2021

Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
src/usr.sbin/syslogd: syslogd.c

Log Message:
s/bacause/because/


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/tests/sys/uvm/t_uvm_physseg.c
cvs rdiff -u -r1.136 -r1.137 src/usr.sbin/syslogd/syslogd.c

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



CVS commit: src

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:19:14 UTC 2021

Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
src/usr.sbin/syslogd: syslogd.c

Log Message:
s/bacause/because/


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/tests/sys/uvm/t_uvm_physseg.c
cvs rdiff -u -r1.136 -r1.137 src/usr.sbin/syslogd/syslogd.c

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

Modified files:

Index: src/tests/sys/uvm/t_uvm_physseg.c
diff -u src/tests/sys/uvm/t_uvm_physseg.c:1.8 src/tests/sys/uvm/t_uvm_physseg.c:1.9
--- src/tests/sys/uvm/t_uvm_physseg.c:1.8	Wed Jan 16 13:54:17 2019
+++ src/tests/sys/uvm/t_uvm_physseg.c	Fri Aug 13 20:19:13 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_uvm_physseg.c,v 1.8 2019/01/16 13:54:17 fox Exp $ */
+/* $NetBSD: t_uvm_physseg.c,v 1.9 2021/08/13 20:19:13 andvar Exp $ */
 
 /*-
  * Copyright (c) 2015, 2016 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: t_uvm_physseg.c,v 1.8 2019/01/16 13:54:17 fox Exp $");
+__RCSID("$NetBSD: t_uvm_physseg.c,v 1.9 2021/08/13 20:19:13 andvar Exp $");
 
 /*
  * If this line is commented out tests related to uvm_physseg_get_pmseg()
@@ -2251,7 +2251,7 @@ ATF_TC_BODY(uvm_page_physunload_force, t
 	/* Insert more than one segment iff VM_PHYSSEG_MAX > 1 */
 #if VM_PHYSSEG_MAX > 1
 	/*
-	 * We have couple of physloads done this is bacause of the fact that if
+	 * We have couple of physloads done this is because of the fact that if
 	 * we physunload all the PFs from a given range and we have only one
 	 * segment in total a panic() is called
 	 */

Index: src/usr.sbin/syslogd/syslogd.c
diff -u src/usr.sbin/syslogd/syslogd.c:1.136 src/usr.sbin/syslogd/syslogd.c:1.137
--- src/usr.sbin/syslogd/syslogd.c:1.136	Sun Nov  8 01:12:46 2020
+++ src/usr.sbin/syslogd/syslogd.c	Fri Aug 13 20:19:14 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: syslogd.c,v 1.136 2020/11/08 01:12:46 dholland Exp $	*/
+/*	$NetBSD: syslogd.c,v 1.137 2021/08/13 20:19:14 andvar Exp $	*/
 
 /*
  * Copyright (c) 1983, 1988, 1993, 1994
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 19
 #if 0
 static char sccsid[] = "@(#)syslogd.c	8.3 (Berkeley) 4/4/94";
 #else
-__RCSID("$NetBSD: syslogd.c,v 1.136 2020/11/08 01:12:46 dholland Exp $");
+__RCSID("$NetBSD: syslogd.c,v 1.137 2021/08/13 20:19:14 andvar Exp $");
 #endif
 #endif /* not lint */
 
@@ -580,7 +580,7 @@ getgroup:
 	/*
 	 * Create the global kernel event descriptor.
 	 *
-	 * NOTE: We MUST do this after daemon(), bacause the kqueue()
+	 * NOTE: We MUST do this after daemon(), because the kqueue()
 	 * API dictates that kqueue descriptors are not inherited
 	 * across forks (lame!).
 	 */



CVS commit: src

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:47:55 UTC 2021

Modified Files:
src/common/lib/libc/arch/sparc64/string: memset.S
src/sbin/ifconfig: ieee80211.c
src/sys/arch/mips/ralink: ralink_reg.h
src/sys/arch/powerpc/include: reg.h
src/sys/ddb: db_command.c
src/sys/dev/ic: aic79xx_inline.h dc21040reg.h
src/sys/dev/usb: xhci.c
src/sys/netinet: tcp_vtw.c

Log Message:
fix typos in words "pointer" and s/fram /frame/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/arch/sparc64/string/memset.S
cvs rdiff -u -r1.30 -r1.31 src/sbin/ifconfig/ieee80211.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/mips/ralink/ralink_reg.h
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/powerpc/include/reg.h
cvs rdiff -u -r1.176 -r1.177 src/sys/ddb/db_command.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/ic/aic79xx_inline.h
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/ic/dc21040reg.h
cvs rdiff -u -r1.146 -r1.147 src/sys/dev/usb/xhci.c
cvs rdiff -u -r1.20 -r1.21 src/sys/netinet/tcp_vtw.c

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



CVS commit: src

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 20:47:55 UTC 2021

Modified Files:
src/common/lib/libc/arch/sparc64/string: memset.S
src/sbin/ifconfig: ieee80211.c
src/sys/arch/mips/ralink: ralink_reg.h
src/sys/arch/powerpc/include: reg.h
src/sys/ddb: db_command.c
src/sys/dev/ic: aic79xx_inline.h dc21040reg.h
src/sys/dev/usb: xhci.c
src/sys/netinet: tcp_vtw.c

Log Message:
fix typos in words "pointer" and s/fram /frame/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/arch/sparc64/string/memset.S
cvs rdiff -u -r1.30 -r1.31 src/sbin/ifconfig/ieee80211.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/mips/ralink/ralink_reg.h
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/powerpc/include/reg.h
cvs rdiff -u -r1.176 -r1.177 src/sys/ddb/db_command.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/ic/aic79xx_inline.h
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/ic/dc21040reg.h
cvs rdiff -u -r1.146 -r1.147 src/sys/dev/usb/xhci.c
cvs rdiff -u -r1.20 -r1.21 src/sys/netinet/tcp_vtw.c

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

Modified files:

Index: src/common/lib/libc/arch/sparc64/string/memset.S
diff -u src/common/lib/libc/arch/sparc64/string/memset.S:1.2 src/common/lib/libc/arch/sparc64/string/memset.S:1.3
--- src/common/lib/libc/arch/sparc64/string/memset.S:1.2	Sun Mar 17 02:12:41 2013
+++ src/common/lib/libc/arch/sparc64/string/memset.S	Fri Aug 13 20:47:54 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: memset.S,v 1.2 2013/03/17 02:12:41 christos Exp $	*/
+/*	$NetBSD: memset.S,v 1.3 2021/08/13 20:47:54 andvar Exp $	*/
 
 /*
  * Copyright (c) 1996-2002 Eduardo Horvath
@@ -25,7 +25,7 @@
  */
 #include "strmacros.h"
 #if defined(LIBC_SCCS) && !defined(lint)
-RCSID("$NetBSD: memset.S,v 1.2 2013/03/17 02:12:41 christos Exp $")
+RCSID("$NetBSD: memset.S,v 1.3 2021/08/13 20:47:54 andvar Exp $")
 #endif  /* LIBC_SCCS and not lint */
 
 
@@ -120,7 +120,7 @@ Lmemset_cleanup:	
 	 stb	%o1, [%o0]		!	*addr = 0;
 Lmemset_done:
 	retl
-	 mov	%o4, %o0		! Restore ponter for memset (ugh)
+	 mov	%o4, %o0		! Restore pointer for memset (ugh)
 
 #ifdef USE_BLOCK_STORE_LOAD
 Lmemset_block:

Index: src/sbin/ifconfig/ieee80211.c
diff -u src/sbin/ifconfig/ieee80211.c:1.30 src/sbin/ifconfig/ieee80211.c:1.31
--- src/sbin/ifconfig/ieee80211.c:1.30	Fri Aug 16 10:33:17 2019
+++ src/sbin/ifconfig/ieee80211.c	Fri Aug 13 20:47:55 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ieee80211.c,v 1.30 2019/08/16 10:33:17 msaitoh Exp $	*/
+/*	$NetBSD: ieee80211.c,v 1.31 2021/08/13 20:47:55 andvar Exp $	*/
 
 /*
  * Copyright (c) 1983, 1993
@@ -31,7 +31,7 @@
 
 #include 
 #ifndef lint
-__RCSID("$NetBSD: ieee80211.c,v 1.30 2019/08/16 10:33:17 msaitoh Exp $");
+__RCSID("$NetBSD: ieee80211.c,v 1.31 2021/08/13 20:47:55 andvar Exp $");
 #endif /* not lint */
 
 #include 
@@ -531,7 +531,7 @@ ieee80211_statistics(prop_dictionary_t e
 	STAT_PRINT(is_rx_badsubtype, "rx frame w/ unknown subtyp");
 	STAT_PRINT(is_rx_nobuf, "rx failed for lack of buf");
 	STAT_PRINT(is_rx_decryptcrc, "rx decrypt failed on crc");
-	STAT_PRINT(is_rx_ahdemo_mgt, "rx discard ahdemo mgt fram");
+	STAT_PRINT(is_rx_ahdemo_mgt, "rx discard ahdemo mgt frame");
 	STAT_PRINT(is_rx_bad_auth, "rx bad auth request");
 	STAT_PRINT(is_rx_unauth, "rx on unauthorized port");
 	STAT_PRINT(is_rx_badkeyid, "rx w/ incorrect keyid");

Index: src/sys/arch/mips/ralink/ralink_reg.h
diff -u src/sys/arch/mips/ralink/ralink_reg.h:1.9 src/sys/arch/mips/ralink/ralink_reg.h:1.10
--- src/sys/arch/mips/ralink/ralink_reg.h:1.9	Wed Oct  5 15:54:58 2016
+++ src/sys/arch/mips/ralink/ralink_reg.h	Fri Aug 13 20:47:55 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ralink_reg.h,v 1.9 2016/10/05 15:54:58 ryo Exp $	*/
+/*	$NetBSD: ralink_reg.h,v 1.10 2021/08/13 20:47:55 andvar Exp $	*/
 /*-
  * Copyright (c) 2011 CradlePoint Technology, Inc.
  * All rights reserved.
@@ -725,7 +725,7 @@ enum ralink_irq {
 #define RA_FE_TX_BASE_PTR_0	0x800	/*  TX Ring #0 Base Pointer */
 #define RA_FE_TX_MAX_CNT_0	0x804	/*  TX Ring #0 Maximum Count */
 #define RA_FE_TX_CTX_IDX_0	0x808	/*  TX Ring #0 CPU pointer */
-#define RA_FE_TX_DTX_IDX_0	0x80c	/*  TX Ring #0 DMA poitner */
+#define RA_FE_TX_DTX_IDX_0	0x80c	/*  TX Ring #0 DMA pointer */
 #define RA_FE_PDMA_TX0_PTR	RA_FE_TX_BASE_PTR_0
 #define RA_FE_PDMA_TX0_COUNT	RA_FE_TX_MAX_CNT_0
 #define RA_FE_PDMA_TX0_CPU_IDX	RA_FE_TX_CTX_IDX_0
@@ -733,19 +733,19 @@ enum ralink_irq {
 #define RA_FE_TX_BASE_PTR_1	0x810	/*  TX Ring #1 Base Pointer */
 #define RA_FE_TX_MAX_CNT_1	0x814	/*  TX Ring #1 Maximum Count */
 #define RA_FE_TX_CTX_IDX_1	0x818	/*  TX Ring #1 CPU pointer */
-#define RA_FE_TX_DTX_IDX_1	0x81c	/*  TX Ring #1 DMA poitner */
+#define RA_FE_TX_DTX_IDX_1	0x81c	/*  TX Ring #1 DMA pointer */
 #define RA_FE_TX_BASE_PTR_2	0x820	/*  TX Ring #2 Base Pointer */
 #define RA_FE_TX_MAX_CNT_2	0x824	/*  TX Ring #2 Maximum Count */
 #define RA_FE_TX_CTX_IDX_2	0x828	/*  TX Ring #2 CPU 

CVS commit: src/sys/dev/marvell

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 21:04:44 UTC 2021

Modified Files:
src/sys/dev/marvell: if_mvxpe.c

Log Message:
s/fame/frame in mvxpe_mib_def with assumption that it was not intentional typo.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/marvell/if_mvxpe.c

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



CVS commit: src/sys/dev/marvell

2021-08-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 13 21:04:44 UTC 2021

Modified Files:
src/sys/dev/marvell: if_mvxpe.c

Log Message:
s/fame/frame in mvxpe_mib_def with assumption that it was not intentional typo.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/marvell/if_mvxpe.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/marvell/if_mvxpe.c
diff -u src/sys/dev/marvell/if_mvxpe.c:1.34 src/sys/dev/marvell/if_mvxpe.c:1.35
--- src/sys/dev/marvell/if_mvxpe.c:1.34	Mon Aug  2 12:56:24 2021
+++ src/sys/dev/marvell/if_mvxpe.c	Fri Aug 13 21:04:44 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_mvxpe.c,v 1.34 2021/08/02 12:56:24 andvar Exp $	*/
+/*	$NetBSD: if_mvxpe.c,v 1.35 2021/08/13 21:04:44 andvar Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -25,7 +25,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.34 2021/08/02 12:56:24 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.35 2021/08/13 21:04:44 andvar Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -218,7 +218,7 @@ STATIC struct mvxpe_mib_def {
 	"Frame Size  256 -  511"},
 	{MVXPE_MIB_RX_FRAME1023_OCT, 0,	"rx_frame_512_1023",
 	"Frame Size  512 - 1023", 0},
-	{MVXPE_MIB_RX_FRAMEMAX_OCT, 0,	"rx_fame_1024_max",
+	{MVXPE_MIB_RX_FRAMEMAX_OCT, 0,	"rx_frame_1024_max",
 	"Frame Size 1024 -  Max", 0},
 	{MVXPE_MIB_TX_GOOD_OCT, 1,	"tx_good_oct",
 	"Good Octets Tx", 0},



CVS commit: src/sys/opencrypto

2021-08-14 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 14 20:43:05 UTC 2021

Modified Files:
src/sys/opencrypto: crypto.c cryptodev.h

Log Message:
fix typo in CRK_ALGORITHM_MIN definition to match CRK_ALGORITHM_MAX one.
while here fix few typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/sys/opencrypto/crypto.c
cvs rdiff -u -r1.41 -r1.42 src/sys/opencrypto/cryptodev.h

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



CVS commit: src/sys/opencrypto

2021-08-14 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 14 20:43:05 UTC 2021

Modified Files:
src/sys/opencrypto: crypto.c cryptodev.h

Log Message:
fix typo in CRK_ALGORITHM_MIN definition to match CRK_ALGORITHM_MAX one.
while here fix few typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/sys/opencrypto/crypto.c
cvs rdiff -u -r1.41 -r1.42 src/sys/opencrypto/cryptodev.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/opencrypto/crypto.c
diff -u src/sys/opencrypto/crypto.c:1.115 src/sys/opencrypto/crypto.c:1.116
--- src/sys/opencrypto/crypto.c:1.115	Mon Aug  9 19:57:58 2021
+++ src/sys/opencrypto/crypto.c	Sat Aug 14 20:43:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: crypto.c,v 1.115 2021/08/09 19:57:58 andvar Exp $ */
+/*	$NetBSD: crypto.c,v 1.116 2021/08/14 20:43:05 andvar Exp $ */
 /*	$FreeBSD: src/sys/opencrypto/crypto.c,v 1.4.2.5 2003/02/26 00:14:05 sam Exp $	*/
 /*	$OpenBSD: crypto.c,v 1.41 2002/07/17 23:52:38 art Exp $	*/
 
@@ -53,7 +53,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.115 2021/08/09 19:57:58 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.116 2021/08/14 20:43:05 andvar Exp $");
 
 #include 
 #include 
@@ -1047,7 +1047,7 @@ crypto_kregister(u_int32_t driverid, int
 
 	cap = crypto_checkdriver_lock(driverid);
 	if (cap != NULL &&
-	(CRK_ALGORITM_MIN <= kalg && kalg <= CRK_ALGORITHM_MAX)) {
+	(CRK_ALGORITHM_MIN <= kalg && kalg <= CRK_ALGORITHM_MAX)) {
 		/*
 		 * XXX Do some performance testing to determine placing.
 		 * XXX We probably need an auxiliary data structure that

Index: src/sys/opencrypto/cryptodev.h
diff -u src/sys/opencrypto/cryptodev.h:1.41 src/sys/opencrypto/cryptodev.h:1.42
--- src/sys/opencrypto/cryptodev.h:1.41	Mon Aug  9 19:57:58 2021
+++ src/sys/opencrypto/cryptodev.h	Sat Aug 14 20:43:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: cryptodev.h,v 1.41 2021/08/09 19:57:58 andvar Exp $ */
+/*	$NetBSD: cryptodev.h,v 1.42 2021/08/14 20:43:05 andvar Exp $ */
 /*	$FreeBSD: src/sys/opencrypto/cryptodev.h,v 1.2.2.6 2003/07/02 17:04:50 sam Exp $	*/
 /*	$OpenBSD: cryptodev.h,v 1.33 2002/07/17 23:52:39 art Exp $	*/
 
@@ -325,7 +325,7 @@ struct cryptret {
 
 
 /* Asymmetric key operations */
-#define	CRK_ALGORITM_MIN	0
+#define	CRK_ALGORITHM_MIN	0
 #define CRK_MOD_EXP		0
 #define CRK_MOD_EXP_CRT		1
 #define CRK_DSA_SIGN		2
@@ -402,7 +402,7 @@ struct cryptostats {
 	 * accumulate statistics about how long it takes to process
 	 * crypto requests at various points during processing.
 	 */
-	struct cryptotstat cs_invoke;	/* crypto_dipsatch -> crypto_invoke */
+	struct cryptotstat cs_invoke;	/* crypto_dispatch -> crypto_invoke */
 	struct cryptotstat cs_done;	/* crypto_invoke -> crypto_done */
 	struct cryptotstat cs_cb;	/* crypto_done -> callback */
 	struct cryptotstat cs_finis;	/* callback -> callback return */
@@ -636,8 +636,8 @@ extern	int crypto_devallowsoft;	/* only 
 /*
  * initialize the crypto framework subsystem (not the pseudo-device).
  * This must be called very early in boot, so the framework is ready
- * to handle registration requests when crpto hardware is autoconfigured.
- * (This declaration doesnt really belong here but there's no header
+ * to handle registration requests when crypto hardware is autoconfigured.
+ * (This declaration doesn't really belong here but there's no header
  * for the raw framework.)
  */
 int	crypto_init(void);



CVS commit: src

2021-08-20 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 20 20:25:28 UTC 2021

Modified Files:
src/sbin/newfs_udf: newfs_udf.c udf_create.c
src/sys/arch/acorn32/stand/boot32: start.S
src/sys/arch/algor/conf: P5064
src/sys/arch/arm/iomd: vidcvideo.c
src/sys/arch/arm/sunxi: sunxi_debe.c sunxi_tcon.c
src/sys/arch/evbmips/conf: AP30 DB120 MALTA MERAKI RB433UAH WGT624V3
XLSATX
src/sys/arch/evbppc/virtex/dev: xlcom.c
src/sys/arch/powerpc/powerpc: ofwreal.S
src/sys/arch/shark/stand/ofwboot: boot.c
src/sys/dev/dm: dm_ioctl.c dm_table.c
src/sys/dev/ic: ne2000.c
src/sys/dev/mii: lxtphy.c
src/sys/dev/pci: auixp.c auixpvar.h
src/sys/dev/pci/ixgbe: ixgbe.c
src/sys/fs/udf: udf_allocation.c udf_subr.c
src/tests/fs/ffs: t_quota2_remount.c
src/tests/net/can: t_can.c

Log Message:
fix various typos in comments and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sbin/newfs_udf/newfs_udf.c
cvs rdiff -u -r1.29 -r1.30 src/sbin/newfs_udf/udf_create.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/acorn32/stand/boot32/start.S
cvs rdiff -u -r1.94 -r1.95 src/sys/arch/algor/conf/P5064
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/iomd/vidcvideo.c
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/sunxi/sunxi_debe.c
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/sunxi/sunxi_tcon.c
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/evbmips/conf/AP30
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/evbmips/conf/DB120
cvs rdiff -u -r1.103 -r1.104 src/sys/arch/evbmips/conf/MALTA
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/evbmips/conf/MERAKI
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/evbmips/conf/RB433UAH
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/evbmips/conf/WGT624V3 \
src/sys/arch/evbmips/conf/XLSATX
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbppc/virtex/dev/xlcom.c
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/powerpc/powerpc/ofwreal.S
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/shark/stand/ofwboot/boot.c
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/dm/dm_ioctl.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/dm/dm_table.c
cvs rdiff -u -r1.76 -r1.77 src/sys/dev/ic/ne2000.c
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/mii/lxtphy.c
cvs rdiff -u -r1.50 -r1.51 src/sys/dev/pci/auixp.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/auixpvar.h
cvs rdiff -u -r1.287 -r1.288 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.42 -r1.43 src/sys/fs/udf/udf_allocation.c
cvs rdiff -u -r1.154 -r1.155 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/ffs/t_quota2_remount.c
cvs rdiff -u -r1.7 -r1.8 src/tests/net/can/t_can.c

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



CVS commit: src

2021-08-20 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Aug 20 20:25:28 UTC 2021

Modified Files:
src/sbin/newfs_udf: newfs_udf.c udf_create.c
src/sys/arch/acorn32/stand/boot32: start.S
src/sys/arch/algor/conf: P5064
src/sys/arch/arm/iomd: vidcvideo.c
src/sys/arch/arm/sunxi: sunxi_debe.c sunxi_tcon.c
src/sys/arch/evbmips/conf: AP30 DB120 MALTA MERAKI RB433UAH WGT624V3
XLSATX
src/sys/arch/evbppc/virtex/dev: xlcom.c
src/sys/arch/powerpc/powerpc: ofwreal.S
src/sys/arch/shark/stand/ofwboot: boot.c
src/sys/dev/dm: dm_ioctl.c dm_table.c
src/sys/dev/ic: ne2000.c
src/sys/dev/mii: lxtphy.c
src/sys/dev/pci: auixp.c auixpvar.h
src/sys/dev/pci/ixgbe: ixgbe.c
src/sys/fs/udf: udf_allocation.c udf_subr.c
src/tests/fs/ffs: t_quota2_remount.c
src/tests/net/can: t_can.c

Log Message:
fix various typos in comments and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sbin/newfs_udf/newfs_udf.c
cvs rdiff -u -r1.29 -r1.30 src/sbin/newfs_udf/udf_create.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/acorn32/stand/boot32/start.S
cvs rdiff -u -r1.94 -r1.95 src/sys/arch/algor/conf/P5064
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/iomd/vidcvideo.c
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/sunxi/sunxi_debe.c
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/sunxi/sunxi_tcon.c
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/evbmips/conf/AP30
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/evbmips/conf/DB120
cvs rdiff -u -r1.103 -r1.104 src/sys/arch/evbmips/conf/MALTA
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/evbmips/conf/MERAKI
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/evbmips/conf/RB433UAH
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/evbmips/conf/WGT624V3 \
src/sys/arch/evbmips/conf/XLSATX
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbppc/virtex/dev/xlcom.c
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/powerpc/powerpc/ofwreal.S
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/shark/stand/ofwboot/boot.c
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/dm/dm_ioctl.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/dm/dm_table.c
cvs rdiff -u -r1.76 -r1.77 src/sys/dev/ic/ne2000.c
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/mii/lxtphy.c
cvs rdiff -u -r1.50 -r1.51 src/sys/dev/pci/auixp.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/auixpvar.h
cvs rdiff -u -r1.287 -r1.288 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.42 -r1.43 src/sys/fs/udf/udf_allocation.c
cvs rdiff -u -r1.154 -r1.155 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/ffs/t_quota2_remount.c
cvs rdiff -u -r1.7 -r1.8 src/tests/net/can/t_can.c

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

Modified files:

Index: src/sbin/newfs_udf/newfs_udf.c
diff -u src/sbin/newfs_udf/newfs_udf.c:1.20 src/sbin/newfs_udf/newfs_udf.c:1.21
--- src/sbin/newfs_udf/newfs_udf.c:1.20	Sun Apr  5 15:25:40 2020
+++ src/sbin/newfs_udf/newfs_udf.c	Fri Aug 20 20:25:26 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: newfs_udf.c,v 1.20 2020/04/05 15:25:40 joerg Exp $ */
+/* $NetBSD: newfs_udf.c,v 1.21 2021/08/20 20:25:26 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
@@ -391,7 +391,7 @@ udf_setup_writeparams(struct mmc_discinf
 	/*
 	 * only CD burning normally needs setting up, but other disc types
 	 * might need other settings to be made. The MMC framework will set up
-	 * the nessisary recording parameters according to the disc
+	 * the necessary recording parameters according to the disc
 	 * characteristics read in. Modifications can be made in the discinfo
 	 * structure passed to change the nature of the disc.
 	 */
@@ -865,7 +865,7 @@ main(int argc, char **argv)
 		printf("Metadata percentage  %d %%\n", meta_perc);
 	printf("\n");
 
-	/* prepare disc if nessisary (recordables mainly) */
+	/* prepare disc if necessary (recordables mainly) */
 	error = udf_prepare_disc();
 	if (error) {
 		perror("preparing disc failed");

Index: src/sbin/newfs_udf/udf_create.c
diff -u src/sbin/newfs_udf/udf_create.c:1.29 src/sbin/newfs_udf/udf_create.c:1.30
--- src/sbin/newfs_udf/udf_create.c:1.29	Tue Apr 13 06:25:48 2021
+++ src/sbin/newfs_udf/udf_create.c	Fri Aug 20 20:25:26 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_create.c,v 1.29 2021/04/13 06:25:48 mrg Exp $ */
+/* $NetBSD: udf_create.c,v 1.30 2021/08/20 20:25:26 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -30,7 +30,7 @@
 #endif
 
 #include 
-__RCSID("$NetBSD: udf_create.c,v 1.29 2021/04/13 06:25:48 mrg Exp $");
+__RCSID("$NetBSD: udf_create.c,v 1.30 2021/08/20 20:25:26 andvar Exp $");
 
 #include 
 #include 
@@ -276,7 +276,7 @@ udf_calculate_disc_layout(int format_fla
 
 	/*
 	 * Align partition LBA space to blocking granularity. Not strickly
-	 * nessisary for non sparables but safer for the VRS data since it is
+	 * necessary for non sparables but safer for the VRS data since it is
 	 * not updated sporadically
 	 */
 

Index: 

CVS commit: src/sys

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 10:18:14 UTC 2021

Modified Files:
src/sys/arch/x68k/dev: vs.c
src/sys/dev/audio: audiodef.h

Log Message:
s/recoding/recording/ in comments where it didn't actually mean recoding.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x68k/dev/vs.c
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/audio/audiodef.h

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



CVS commit: src/sys

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 10:18:14 UTC 2021

Modified Files:
src/sys/arch/x68k/dev: vs.c
src/sys/dev/audio: audiodef.h

Log Message:
s/recoding/recording/ in comments where it didn't actually mean recoding.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x68k/dev/vs.c
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/audio/audiodef.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/arch/x68k/dev/vs.c
diff -u src/sys/arch/x68k/dev/vs.c:1.54 src/sys/arch/x68k/dev/vs.c:1.55
--- src/sys/arch/x68k/dev/vs.c:1.54	Sat Feb  6 12:50:04 2021
+++ src/sys/arch/x68k/dev/vs.c	Sat Aug 21 10:18:14 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: vs.c,v 1.54 2021/02/06 12:50:04 isaki Exp $	*/
+/*	$NetBSD: vs.c,v 1.55 2021/08/21 10:18:14 andvar Exp $	*/
 
 /*
  * Copyright (c) 2001 Tetsuya Isaki. All rights reserved.
@@ -30,7 +30,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: vs.c,v 1.54 2021/02/06 12:50:04 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vs.c,v 1.55 2021/08/21 10:18:14 andvar Exp $");
 
 #include "audio.h"
 #include "vs.h"
@@ -476,7 +476,7 @@ vs_halt_input(void *hdl)
 	DPRINTF(1, ("vs_halt_input\n"));
 	sc = hdl;
 
-	/* stop ADPCM recoding */
+	/* stop ADPCM recording */
 	dmac_abort_xfer(sc->sc_dma_ch->ch_softc, sc->sc_current.xfer);
 	bus_space_write_1(sc->sc_iot, sc->sc_ioh,
 	MSM6258_CMD, MSM6258_CMD_STOP);

Index: src/sys/dev/audio/audiodef.h
diff -u src/sys/dev/audio/audiodef.h:1.15 src/sys/dev/audio/audiodef.h:1.16
--- src/sys/dev/audio/audiodef.h:1.15	Sun Sep 13 04:14:48 2020
+++ src/sys/dev/audio/audiodef.h	Sat Aug 21 10:18:14 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: audiodef.h,v 1.15 2020/09/13 04:14:48 isaki Exp $	*/
+/*	$NetBSD: audiodef.h,v 1.16 2021/08/21 10:18:14 andvar Exp $	*/
 
 /*
  * Copyright (C) 2017 Tetsuya Isaki. All rights reserved.
@@ -97,7 +97,7 @@ typedef enum {
 struct audio_track {
 	/*
 	 * AUMODE_PLAY for playback track, or
-	 * AUMODE_RECORD for recoding track.
+	 * AUMODE_RECORD for recording track.
 	 * Note that AUMODE_PLAY_ALL is maintained by file->mode, not here.
 	 */
 	int mode;



CVS commit: src

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 09:59:47 UTC 2021

Modified Files:
src: UPDATING
src/sys/arch/sparc/conf: majors.sparc
src/sys/arch/sparc64/conf: majors.sparc64
src/sys/arch/vax/include: disklabel.h
src/sys/arch/x68k/dev: rtclock_var.h
src/sys/dev/ieee1394: fwohci.c
src/sys/dev/pci: auixp.c
src/sys/fs/udf: udf_strat_rmw.c udf_subr.c
src/sys/kern: vfs_dirhash.c
src/tests/dev/audio: audiotest.c
src/usr.sbin/makefs: udf.c
src/usr.sbin/postinstall: postinstall.in

Log Message:
s/helt/held+s/eroneously/erroneously/+s/splitted/split/+s/recommented/recommended/


To generate a diff of this commit:
cvs rdiff -u -r1.319 -r1.320 src/UPDATING
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/sparc/conf/majors.sparc
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/sparc64/conf/majors.sparc64
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/vax/include/disklabel.h
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/x68k/dev/rtclock_var.h
cvs rdiff -u -r1.146 -r1.147 src/sys/dev/ieee1394/fwohci.c
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/pci/auixp.c
cvs rdiff -u -r1.28 -r1.29 src/sys/fs/udf/udf_strat_rmw.c
cvs rdiff -u -r1.155 -r1.156 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.13 -r1.14 src/sys/kern/vfs_dirhash.c
cvs rdiff -u -r1.14 -r1.15 src/tests/dev/audio/audiotest.c
cvs rdiff -u -r1.21 -r1.22 src/usr.sbin/makefs/udf.c
cvs rdiff -u -r1.39 -r1.40 src/usr.sbin/postinstall/postinstall.in

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



CVS commit: src

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 09:59:47 UTC 2021

Modified Files:
src: UPDATING
src/sys/arch/sparc/conf: majors.sparc
src/sys/arch/sparc64/conf: majors.sparc64
src/sys/arch/vax/include: disklabel.h
src/sys/arch/x68k/dev: rtclock_var.h
src/sys/dev/ieee1394: fwohci.c
src/sys/dev/pci: auixp.c
src/sys/fs/udf: udf_strat_rmw.c udf_subr.c
src/sys/kern: vfs_dirhash.c
src/tests/dev/audio: audiotest.c
src/usr.sbin/makefs: udf.c
src/usr.sbin/postinstall: postinstall.in

Log Message:
s/helt/held+s/eroneously/erroneously/+s/splitted/split/+s/recommented/recommended/


To generate a diff of this commit:
cvs rdiff -u -r1.319 -r1.320 src/UPDATING
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/sparc/conf/majors.sparc
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/sparc64/conf/majors.sparc64
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/vax/include/disklabel.h
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/x68k/dev/rtclock_var.h
cvs rdiff -u -r1.146 -r1.147 src/sys/dev/ieee1394/fwohci.c
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/pci/auixp.c
cvs rdiff -u -r1.28 -r1.29 src/sys/fs/udf/udf_strat_rmw.c
cvs rdiff -u -r1.155 -r1.156 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.13 -r1.14 src/sys/kern/vfs_dirhash.c
cvs rdiff -u -r1.14 -r1.15 src/tests/dev/audio/audiotest.c
cvs rdiff -u -r1.21 -r1.22 src/usr.sbin/makefs/udf.c
cvs rdiff -u -r1.39 -r1.40 src/usr.sbin/postinstall/postinstall.in

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

Modified files:

Index: src/UPDATING
diff -u src/UPDATING:1.319 src/UPDATING:1.320
--- src/UPDATING:1.319	Sun Jul 11 21:58:52 2021
+++ src/UPDATING	Sat Aug 21 09:59:45 2021
@@ -1,4 +1,4 @@
-$NetBSD: UPDATING,v 1.319 2021/07/11 21:58:52 mrg Exp $
+$NetBSD: UPDATING,v 1.320 2021/08/21 09:59:45 andvar Exp $
 
 This file (UPDATING) is intended to be a brief reference to recent
 changes that might cause problems in the build process, and a guide for
@@ -398,7 +398,7 @@ Recent changes:
 	to IPSEC (and the older IPSEC version removed).
 
 20130605:
-	Previous freetype installations eroneously installed private
+	Previous freetype installations erroneously installed private
 	header files. If you are building against a non-empty $DESTDIR,
 	please remove ${DESTDIR}//usr/X11R7/include/freetype2/freetype/.
 
@@ -538,7 +538,7 @@ Recent changes:
 	build problems with xsrc.
 
 20100522:
-	private section of  was splitted, and now mklocale(1)
+	private section of  was split, and now mklocale(1)
 	include ctype_local.h, so you have to make cleandir in tools/mklocale.
 
 20100520:
@@ -609,7 +609,7 @@ Recent changes:
 
 20090202:
 	pkg_install now depends on the pkgdb cache for automatic conflict
-	detection.  It is recommented to rebuild the cache with
+	detection.  It is recommended to rebuild the cache with
 	``pkg_admin rebuild''.
 
 20090110:

Index: src/sys/arch/sparc/conf/majors.sparc
diff -u src/sys/arch/sparc/conf/majors.sparc:1.40 src/sys/arch/sparc/conf/majors.sparc:1.41
--- src/sys/arch/sparc/conf/majors.sparc:1.40	Sat Apr  4 16:06:16 2020
+++ src/sys/arch/sparc/conf/majors.sparc	Sat Aug 21 09:59:45 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: majors.sparc,v 1.40 2020/04/04 16:06:16 jdolecek Exp $
+#	$NetBSD: majors.sparc,v 1.41 2021/08/21 09:59:45 andvar Exp $
 #
 # Device majors for sparc
 #
@@ -127,7 +127,7 @@ device-major	joy		char 137		joy
 # New machine-independent driver majors are assigned in 
 # sys/conf/majors.
 
-# ld has (eroneously) been assigned a MD major on some ports, this one
+# ld has (erroneously) been assigned a MD major on some ports, this one
 # is from the (mostly unused) sys/conf/majors.storage
 device-major	ld		char 303 block	303	ld
 

Index: src/sys/arch/sparc64/conf/majors.sparc64
diff -u src/sys/arch/sparc64/conf/majors.sparc64:1.40 src/sys/arch/sparc64/conf/majors.sparc64:1.41
--- src/sys/arch/sparc64/conf/majors.sparc64:1.40	Tue Jun 29 10:22:37 2021
+++ src/sys/arch/sparc64/conf/majors.sparc64	Sat Aug 21 09:59:45 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: majors.sparc64,v 1.40 2021/06/29 10:22:37 nia Exp $
+#	$NetBSD: majors.sparc64,v 1.41 2021/08/21 09:59:45 andvar Exp $
 #
 # Device majors for sparc64
 #
@@ -124,6 +124,6 @@ device-major	joy		char 137		joy
 # New machine-independent driver majors are assigned in 
 # sys/conf/majors.
 
-# ld has (eroneously) been assigned a MD major on some ports, this one
+# ld has (erroneously) been assigned a MD major on some ports, this one
 # is from the (mostly unused) sys/conf/majors.storage
 device-major	ld		char 303 block	303	ld

Index: src/sys/arch/vax/include/disklabel.h
diff -u src/sys/arch/vax/include/disklabel.h:1.7 src/sys/arch/vax/include/disklabel.h:1.8
--- src/sys/arch/vax/include/disklabel.h:1.7	Thu Apr  4 12:50:03 2013
+++ src/sys/arch/vax/include/disklabel.h	Sat Aug 21 09:59:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: disklabel.h,v 1.7 2013/04/04 12:50:03 martin Exp $	*/
+/*	$NetBSD: 

CVS commit: src/usr.sbin/postinstall

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 10:06:33 UTC 2021

Modified Files:
src/usr.sbin/postinstall: postinstall.in

Log Message:
s/accidentaly/accidentally/


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/usr.sbin/postinstall/postinstall.in

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



CVS commit: src/usr.sbin/postinstall

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 10:06:33 UTC 2021

Modified Files:
src/usr.sbin/postinstall: postinstall.in

Log Message:
s/accidentaly/accidentally/


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/usr.sbin/postinstall/postinstall.in

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

Modified files:

Index: src/usr.sbin/postinstall/postinstall.in
diff -u src/usr.sbin/postinstall/postinstall.in:1.40 src/usr.sbin/postinstall/postinstall.in:1.41
--- src/usr.sbin/postinstall/postinstall.in:1.40	Sat Aug 21 09:59:47 2021
+++ src/usr.sbin/postinstall/postinstall.in	Sat Aug 21 10:06:33 2021
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: postinstall.in,v 1.40 2021/08/21 09:59:47 andvar Exp $
+# $NetBSD: postinstall.in,v 1.41 2021/08/21 10:06:33 andvar Exp $
 #
 # Copyright (c) 2002-2021 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1243,7 +1243,7 @@ do_dhcpcd()
 #	dhcpcdrundir
 #
 
-additem dhcpcdrundir "accidentaly created /@RUNDIR@ does not exist"
+additem dhcpcdrundir "accidentally created /@RUNDIR@ does not exist"
 do_dhcpcdrundir()
 {
 	[ -n "$1" ] || err 3 "USAGE: do_dhcpcdrundir fix|check"



CVS commit: src/sys/dev/ic

2021-08-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 19 20:43:58 UTC 2021

Modified Files:
src/sys/dev/ic: tulipreg.h

Log Message:
add plural for packets and move it to new line to keep 80 symbols per line.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/ic/tulipreg.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/tulipreg.h
diff -u src/sys/dev/ic/tulipreg.h:1.40 src/sys/dev/ic/tulipreg.h:1.41
--- src/sys/dev/ic/tulipreg.h:1.40	Tue Aug 17 22:00:31 2021
+++ src/sys/dev/ic/tulipreg.h	Thu Aug 19 20:43:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: tulipreg.h,v 1.40 2021/08/17 22:00:31 andvar Exp $	*/
+/*	$NetBSD: tulipreg.h,v 1.41 2021/08/19 20:43:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -578,7 +578,8 @@ struct tulip_desc {
 #define	OPMODE_SR		0x0002	/* start receive */
 #define	OPMODE_HO		0x0004	/* hash only mode (ro) */
 #define	OPMODE_PB		0x0008	/* pass bad frames */
-#define	OPMODE_WINB_APP		0x0008	/* accept all physical packet */
+#define	OPMODE_WINB_APP		0x0008	/* accept all physical 
+		   packets */
 #define	OPMODE_IF		0x0010	/* inverse filter mode (ro) */
 #define	OPMODE_WINB_AMP		0x0010	/* accept multicast packet */
 #define	OPMODE_SB		0x0020	/* start backoff counter */



CVS commit: src/sys/dev/ic

2021-08-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 19 20:43:58 UTC 2021

Modified Files:
src/sys/dev/ic: tulipreg.h

Log Message:
add plural for packets and move it to new line to keep 80 symbols per line.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/ic/tulipreg.h

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



CVS commit: src

2021-08-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 19 20:56:37 UTC 2021

Modified Files:
src/lib/libm/arch/x86_64: fenv.c
src/sys/arch/arm/sunxi: sunxi_tcon.c
src/sys/arch/evbppc/conf: EV64260
src/sys/dev/pci: tga.c
src/sys/ufs/lfs: ulfs_dirhash.h
src/sys/ufs/ufs: dirhash.h
src/tests/fs/vfs: t_vnops.c

Log Message:
s/memry/memory+s/softare/software/+s/grapics/graphics+s/ouput/output


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libm/arch/x86_64/fenv.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/sunxi/sunxi_tcon.c
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/evbppc/conf/EV64260
cvs rdiff -u -r1.88 -r1.89 src/sys/dev/pci/tga.c
cvs rdiff -u -r1.11 -r1.12 src/sys/ufs/lfs/ulfs_dirhash.h
cvs rdiff -u -r1.8 -r1.9 src/sys/ufs/ufs/dirhash.h
cvs rdiff -u -r1.59 -r1.60 src/tests/fs/vfs/t_vnops.c

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



CVS commit: src

2021-08-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Aug 19 20:56:37 UTC 2021

Modified Files:
src/lib/libm/arch/x86_64: fenv.c
src/sys/arch/arm/sunxi: sunxi_tcon.c
src/sys/arch/evbppc/conf: EV64260
src/sys/dev/pci: tga.c
src/sys/ufs/lfs: ulfs_dirhash.h
src/sys/ufs/ufs: dirhash.h
src/tests/fs/vfs: t_vnops.c

Log Message:
s/memry/memory+s/softare/software/+s/grapics/graphics+s/ouput/output


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libm/arch/x86_64/fenv.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/sunxi/sunxi_tcon.c
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/evbppc/conf/EV64260
cvs rdiff -u -r1.88 -r1.89 src/sys/dev/pci/tga.c
cvs rdiff -u -r1.11 -r1.12 src/sys/ufs/lfs/ulfs_dirhash.h
cvs rdiff -u -r1.8 -r1.9 src/sys/ufs/ufs/dirhash.h
cvs rdiff -u -r1.59 -r1.60 src/tests/fs/vfs/t_vnops.c

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

Modified files:

Index: src/lib/libm/arch/x86_64/fenv.c
diff -u src/lib/libm/arch/x86_64/fenv.c:1.8 src/lib/libm/arch/x86_64/fenv.c:1.9
--- src/lib/libm/arch/x86_64/fenv.c:1.8	Thu Aug 12 20:53:18 2021
+++ src/lib/libm/arch/x86_64/fenv.c	Thu Aug 19 20:56:36 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.8 2021/08/12 20:53:18 andvar Exp $ */
+/* $NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $ */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz 
@@ -27,7 +27,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: fenv.c,v 1.8 2021/08/12 20:53:18 andvar Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $");
 
 #include "namespace.h"
 
@@ -369,7 +369,7 @@ fegetenv(fenv_t *envp)
   * exceptions are masked).
   *
   * 8.6 X87 FPU EXCEPTION SYNCHRONIZATION -
-  * Intel(R) 64 and IA-32 Architectures Softare Developer's Manual - Vol 1
+  * Intel(R) 64 and IA-32 Architectures Software Developer's Manual - Vol 1
   *
   */
 	__fldcw(envp->x87.control);

Index: src/sys/arch/arm/sunxi/sunxi_tcon.c
diff -u src/sys/arch/arm/sunxi/sunxi_tcon.c:1.11 src/sys/arch/arm/sunxi/sunxi_tcon.c:1.12
--- src/sys/arch/arm/sunxi/sunxi_tcon.c:1.11	Wed Jan 27 03:10:20 2021
+++ src/sys/arch/arm/sunxi/sunxi_tcon.c	Thu Aug 19 20:56:36 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_tcon.c,v 1.11 2021/01/27 03:10:20 thorpej Exp $ */
+/* $NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $ */
 
 /*-
  * Copyright (c) 2018 Manuel Bouyer 
@@ -30,7 +30,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.11 2021/01/27 03:10:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $");
 
 #include 
 #include 
@@ -363,7 +363,7 @@ sunxi_tcon_ep_activate(device_t dev, str
 		if (fdt_endpoint_is_active(in_ep))
 			return EBUSY;
 	}
-	/* try output 0 (RGB/LVDS) first, then ouput 1 (HDMI) if it fails */
+	/* try output 0 (RGB/LVDS) first, then output 1 (HDMI) if it fails */
 	for (outi = 0; outi < 2; outi++) {
 		out_ep = fdt_endpoint_get_from_index(>sc_ports,
 		SUNXI_PORT_OUTPUT, outi);

Index: src/sys/arch/evbppc/conf/EV64260
diff -u src/sys/arch/evbppc/conf/EV64260:1.73 src/sys/arch/evbppc/conf/EV64260:1.74
--- src/sys/arch/evbppc/conf/EV64260:1.73	Fri Apr 26 21:40:29 2019
+++ src/sys/arch/evbppc/conf/EV64260	Thu Aug 19 20:56:36 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: EV64260,v 1.73 2019/04/26 21:40:29 sevan Exp $
+#	$NetBSD: EV64260,v 1.74 2021/08/19 20:56:36 andvar Exp $
 #
 #	MVP -- Motorola's Multiprocessing Verification Platform
 #
@@ -265,7 +265,7 @@ pseudo-device	pty			# pseudo-terminals
 #pseudo-device	wsmux			# ick
 pseudo-device	clockctl		# user control of clock subsystem
 pseudo-device	ksyms			# /dev/ksyms
-pseudo-device	swdmover		# softare dmover(9) back-end
+pseudo-device	swdmover		# software dmover(9) back-end
 pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
 
 include "dev/veriexec.config"

Index: src/sys/dev/pci/tga.c
diff -u src/sys/dev/pci/tga.c:1.88 src/sys/dev/pci/tga.c:1.89
--- src/sys/dev/pci/tga.c:1.88	Sat Aug  7 16:19:14 2021
+++ src/sys/dev/pci/tga.c	Thu Aug 19 20:56:36 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: tga.c,v 1.88 2021/08/07 16:19:14 thorpej Exp $ */
+/* $NetBSD: tga.c,v 1.89 2021/08/19 20:56:36 andvar Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: tga.c,v 1.88 2021/08/07 16:19:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tga.c,v 1.89 2021/08/19 20:56:36 andvar Exp $");
 
 #include 
 #include 
@@ -1265,7 +1265,7 @@ void tga_putchar(void *c, int row, int c
 		*rp = 0x;
 	}
 
-	/* Set grapics mode back to normal. */
+	/* Set graphics mode back to normal. */
 	TGAWREG(dc, TGA_REG_GMOR, 0);
 	TGAWREG(dc, TGA_REG_GPXR_P, 0x);
 }
@@ -1316,7 +1316,7 @@ tga_eraserows(void *c, int row, int num,
 		rp = (int32_t *)((uint8_t *)rp + ri->ri_stride);
 	}
 
-	/* Set grapics mode back to normal. */
+	/* Set graphics mode back to normal. */
 	

CVS commit: src/sys/dev/dm

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 22:23:33 UTC 2021

Modified Files:
src/sys/dev/dm: dm.h dm_dev.c dm_ioctl.c dm_pdev.c dm_table.c
dm_target.c
src/sys/dev/dm/doc: design.txt locking.txt

Log Message:
fix typos in sys/dev/dm code comments and documentation.
also remove some trailing space in documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/dm/dm.h
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/dm/dm_dev.c
cvs rdiff -u -r1.54 -r1.55 src/sys/dev/dm/dm_ioctl.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/dm/dm_pdev.c
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/dm/dm_table.c
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/dm/dm_target.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/dm/doc/design.txt
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/dm/doc/locking.txt

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/dm/dm.h
diff -u src/sys/dev/dm/dm.h:1.55 src/sys/dev/dm/dm.h:1.56
--- src/sys/dev/dm/dm.h:1.55	Tue Jan 21 16:27:53 2020
+++ src/sys/dev/dm/dm.h	Sat Aug 21 22:23:33 2021
@@ -1,4 +1,4 @@
-/*$NetBSD: dm.h,v 1.55 2020/01/21 16:27:53 tkusumi Exp $  */
+/*$NetBSD: dm.h,v 1.56 2021/08/21 22:23:33 andvar Exp $  */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -117,7 +117,7 @@ typedef struct dm_pdev {
 	struct vnode *pdev_vnode;
 	uint64_t pdev_numsec;
 	unsigned int pdev_secsize;
-	int ref_cnt; /* reference counter for users ofthis pdev */
+	int ref_cnt; /* reference counter for users of this pdev */
 
 	SLIST_ENTRY(dm_pdev) next_pdev;
 } dm_pdev_t;
@@ -137,7 +137,7 @@ typedef struct dm_dev {
 	uint64_t minor; /* Device minor number */
 	uint32_t flags; /* store communication protocol flags */
 
-	kmutex_t dev_mtx; /* mutex for generall device lock */
+	kmutex_t dev_mtx; /* mutex for general device lock */
 	kcondvar_t dev_cv; /* cv for between ioctl synchronisation */
 
 	uint32_t event_nr;

Index: src/sys/dev/dm/dm_dev.c
diff -u src/sys/dev/dm/dm_dev.c:1.18 src/sys/dev/dm/dm_dev.c:1.19
--- src/sys/dev/dm/dm_dev.c:1.18	Wed Jul  8 15:07:13 2020
+++ src/sys/dev/dm/dm_dev.c	Sat Aug 21 22:23:33 2021
@@ -1,4 +1,4 @@
-/*$NetBSD: dm_dev.c,v 1.18 2020/07/08 15:07:13 thorpej Exp $  */
+/*$NetBSD: dm_dev.c,v 1.19 2021/08/21 22:23:33 andvar Exp $  */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include 
-__KERNEL_RCSID(0, "$NetBSD: dm_dev.c,v 1.18 2020/07/08 15:07:13 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_dev.c,v 1.19 2021/08/21 22:23:33 andvar Exp $");
 
 #include 
 #include 
@@ -270,7 +270,7 @@ dm_dev_rem(const char *dm_dev_name, cons
 
 /*
  * Destroy all devices created in device-mapper. Remove all tables
- * free all allocated memmory.
+ * free all allocated memory.
  */
 int
 dm_dev_destroy(void)

Index: src/sys/dev/dm/dm_ioctl.c
diff -u src/sys/dev/dm/dm_ioctl.c:1.54 src/sys/dev/dm/dm_ioctl.c:1.55
--- src/sys/dev/dm/dm_ioctl.c:1.54	Fri Aug 20 20:25:27 2021
+++ src/sys/dev/dm/dm_ioctl.c	Sat Aug 21 22:23:33 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: dm_ioctl.c,v 1.54 2021/08/20 20:25:27 andvar Exp $  */
+/* $NetBSD: dm_ioctl.c,v 1.55 2021/08/21 22:23:33 andvar Exp $  */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include 
-__KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.54 2021/08/20 20:25:27 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.55 2021/08/21 22:23:33 andvar Exp $");
 
 /*
  * Locking is used to synchronise between ioctl calls and between dm_table's
@@ -53,10 +53,10 @@ __KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v
  * on uint8_t argument.
  *
  * dm_table_release must be called for every table_entry from
- * dm_table_get_entry. Between these to calls tables can'tbe switched
+ * dm_table_get_entry. Between these two calls tables can't be switched
  * or destroyed.
  *
- * dm_table_head_init initialize talbe_entries SLISTS and io_cv.
+ * dm_table_head_init initialize table_entries SLISTS and io_cv.
  *
  * dm_table_head_destroy destroy cv.
  *
@@ -265,7 +265,7 @@ dm_dev_create_ioctl(prop_dictionary_t dm
 }
 
 /*
- * Get list of created device-mapper devices fromglobal list and
+ * Get list of created device-mapper devices from global list and
  * send it to kernel.
  *
  * Output dictionary:
@@ -695,7 +695,7 @@ dm_table_deps(dm_table_entry_t *table_en
 
 /*
  * Load new table/tables to device.
- * Call apropriate target init routine open all physical pdev's and
+ * Call appropriate target init routine to open all physical pdev's and
  * link them to device. For other targets mirror, strip, snapshot
  * etc. also add dependency devices to upcalls list.
  *

Index: src/sys/dev/dm/dm_pdev.c
diff -u src/sys/dev/dm/dm_pdev.c:1.22 src/sys/dev/dm/dm_pdev.c:1.23
--- src/sys/dev/dm/dm_pdev.c:1.22	Fri Dec 20 16:16:36 2019
+++ src/sys/dev/dm/dm_pdev.c	

CVS commit: src/sys/dev/dm

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 22:23:33 UTC 2021

Modified Files:
src/sys/dev/dm: dm.h dm_dev.c dm_ioctl.c dm_pdev.c dm_table.c
dm_target.c
src/sys/dev/dm/doc: design.txt locking.txt

Log Message:
fix typos in sys/dev/dm code comments and documentation.
also remove some trailing space in documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/dm/dm.h
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/dm/dm_dev.c
cvs rdiff -u -r1.54 -r1.55 src/sys/dev/dm/dm_ioctl.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/dm/dm_pdev.c
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/dm/dm_table.c
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/dm/dm_target.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/dm/doc/design.txt
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/dm/doc/locking.txt

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



CVS commit: src

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 23:00:32 UTC 2021

Modified Files:
src/etc/rc.d: lvm
src/lib/libc/rpc: clnt_dg.c clnt_vc.c svc.c xdr_rec.c
src/lib/libisns: isns_pdu.c
src/sys/arch/amiga/dev: amidisplaycc.c
src/sys/arch/arm/broadcom: bcm2835_gpio.c
src/sys/arch/m68k/fpe: README
src/sys/arch/m68k/fpsp: ssin.sa
src/sys/arch/prep/stand/boot: siop.c
src/sys/ddb: db_command.c
src/sys/dev/acpi/acpica: OsdEnvironment.c
src/sys/dev/ic: ibm82660reg.h
src/sys/dev/scsipi: cd.c
src/sys/kern: subr_kobj.c
src/tests/lib/libc/gen/posix_spawn: h_spawnattr.c
src/usr.sbin/mopd/common: print.c

Log Message:
fix mainly same typos as in my previous commit but outside sys/dev/dm.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/etc/rc.d/lvm
cvs rdiff -u -r1.29 -r1.30 src/lib/libc/rpc/clnt_dg.c
cvs rdiff -u -r1.26 -r1.27 src/lib/libc/rpc/clnt_vc.c
cvs rdiff -u -r1.39 -r1.40 src/lib/libc/rpc/svc.c
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/rpc/xdr_rec.c
cvs rdiff -u -r1.4 -r1.5 src/lib/libisns/isns_pdu.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/amiga/dev/amidisplaycc.c
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/broadcom/bcm2835_gpio.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/m68k/fpe/README
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/fpsp/ssin.sa
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/prep/stand/boot/siop.c
cvs rdiff -u -r1.177 -r1.178 src/sys/ddb/db_command.c
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/acpi/acpica/OsdEnvironment.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/ibm82660reg.h
cvs rdiff -u -r1.351 -r1.352 src/sys/dev/scsipi/cd.c
cvs rdiff -u -r1.68 -r1.69 src/sys/kern/subr_kobj.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/gen/posix_spawn/h_spawnattr.c
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/mopd/common/print.c

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

Modified files:

Index: src/etc/rc.d/lvm
diff -u src/etc/rc.d/lvm:1.7 src/etc/rc.d/lvm:1.8
--- src/etc/rc.d/lvm:1.7	Tue Aug  3 05:15:20 2021
+++ src/etc/rc.d/lvm	Sat Aug 21 23:00:30 2021
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: lvm,v 1.7 2021/08/03 05:15:20 mlelstv Exp $
+# $NetBSD: lvm,v 1.8 2021/08/21 23:00:30 andvar Exp $
 #
 
 # PROVIDE: lvm
@@ -32,7 +32,7 @@ lvm_start()
 		# Scan for all available VG's
 		/sbin/lvm vgscan --mknodes --ignorelockingfailure >/dev/null
 
-		# Activate all LV's and create apropriate nodes in /dev
+		# Activate all LV's and create appropriate nodes in /dev
 		/sbin/lvm vgchange --ignorelockingfailure -a y >/dev/null
 		LV_LIST=$(/sbin/lvm vgdisplay -C -o vg_name --noheadings 2>/dev/null)
 		echo " Activated Volume Groups:" $LV_LIST

Index: src/lib/libc/rpc/clnt_dg.c
diff -u src/lib/libc/rpc/clnt_dg.c:1.29 src/lib/libc/rpc/clnt_dg.c:1.30
--- src/lib/libc/rpc/clnt_dg.c:1.29	Tue May  7 21:08:44 2013
+++ src/lib/libc/rpc/clnt_dg.c	Sat Aug 21 23:00:30 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: clnt_dg.c,v 1.29 2013/05/07 21:08:44 christos Exp $	*/
+/*	$NetBSD: clnt_dg.c,v 1.30 2021/08/21 23:00:30 andvar Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)clnt_dg.c 1.19 89/03/16 Copyr 1988 Sun Micro";
 #else
-__RCSID("$NetBSD: clnt_dg.c,v 1.29 2013/05/07 21:08:44 christos Exp $");
+__RCSID("$NetBSD: clnt_dg.c,v 1.30 2021/08/21 23:00:30 andvar Exp $");
 #endif
 #endif
 
@@ -92,9 +92,9 @@ static void clnt_dg_destroy(CLIENT *);
  *	This machinery implements per-fd locks for MT-safety.  It is not
  *	sufficient to do per-CLIENT handle locks for MT-safety because a
  *	user may create more than one CLIENT handle with the same fd behind
- *	it.  Therfore, we allocate an array of flags (dg_fd_locks), protected
+ *	it.  Therefore, we allocate an array of flags (dg_fd_locks), protected
  *	by the clnt_fd_lock mutex, and an array (dg_cv) of condition variables
- *	similarly protected.  Dg_fd_lock[fd] == 1 => a call is activte on some
+ *	similarly protected.  Dg_fd_lock[fd] == 1 => a call is active on some
  *	CLIENT handle created for that fd.
  *	The current implementation holds locks across the entire RPC and reply,
  *	including retransmissions.  Yes, this is silly, and as soon as this

Index: src/lib/libc/rpc/clnt_vc.c
diff -u src/lib/libc/rpc/clnt_vc.c:1.26 src/lib/libc/rpc/clnt_vc.c:1.27
--- src/lib/libc/rpc/clnt_vc.c:1.26	Tue Jan 20 18:31:25 2015
+++ src/lib/libc/rpc/clnt_vc.c	Sat Aug 21 23:00:30 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: clnt_vc.c,v 1.26 2015/01/20 18:31:25 christos Exp $	*/
+/*	$NetBSD: clnt_vc.c,v 1.27 2021/08/21 23:00:30 andvar Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -38,7 +38,7 @@ static char *sccsid = "@(#)clnt_tcp.c 1.
 static char *sccsid = "@(#)clnt_tcp.c	2.2 88/08/01 4.0 RPCSRC";
 static char sccsid[] = "@(#)clnt_vc.c 1.19 89/03/16 Copyr 1988 Sun Micro";
 #else
-__RCSID("$NetBSD: clnt_vc.c,v 1.26 2015/01/20 18:31:25 christos Exp 

CVS commit: src

2021-08-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Aug 21 23:00:32 UTC 2021

Modified Files:
src/etc/rc.d: lvm
src/lib/libc/rpc: clnt_dg.c clnt_vc.c svc.c xdr_rec.c
src/lib/libisns: isns_pdu.c
src/sys/arch/amiga/dev: amidisplaycc.c
src/sys/arch/arm/broadcom: bcm2835_gpio.c
src/sys/arch/m68k/fpe: README
src/sys/arch/m68k/fpsp: ssin.sa
src/sys/arch/prep/stand/boot: siop.c
src/sys/ddb: db_command.c
src/sys/dev/acpi/acpica: OsdEnvironment.c
src/sys/dev/ic: ibm82660reg.h
src/sys/dev/scsipi: cd.c
src/sys/kern: subr_kobj.c
src/tests/lib/libc/gen/posix_spawn: h_spawnattr.c
src/usr.sbin/mopd/common: print.c

Log Message:
fix mainly same typos as in my previous commit but outside sys/dev/dm.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/etc/rc.d/lvm
cvs rdiff -u -r1.29 -r1.30 src/lib/libc/rpc/clnt_dg.c
cvs rdiff -u -r1.26 -r1.27 src/lib/libc/rpc/clnt_vc.c
cvs rdiff -u -r1.39 -r1.40 src/lib/libc/rpc/svc.c
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/rpc/xdr_rec.c
cvs rdiff -u -r1.4 -r1.5 src/lib/libisns/isns_pdu.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/amiga/dev/amidisplaycc.c
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/broadcom/bcm2835_gpio.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/m68k/fpe/README
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/fpsp/ssin.sa
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/prep/stand/boot/siop.c
cvs rdiff -u -r1.177 -r1.178 src/sys/ddb/db_command.c
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/acpi/acpica/OsdEnvironment.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/ibm82660reg.h
cvs rdiff -u -r1.351 -r1.352 src/sys/dev/scsipi/cd.c
cvs rdiff -u -r1.68 -r1.69 src/sys/kern/subr_kobj.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/gen/posix_spawn/h_spawnattr.c
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/mopd/common/print.c

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



CVS commit: src/sys/arch/evbarm/conf

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 21:58:36 UTC 2021

Modified Files:
src/sys/arch/evbarm/conf: std.beagle std.generic std.rpi std.zynq

Log Message:
s/opions/options/


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/evbarm/conf/std.beagle
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbarm/conf/std.generic
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/evbarm/conf/std.rpi
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/conf/std.zynq

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



CVS commit: src

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 22:33:19 UTC 2021

Modified Files:
src/sys/arch/emips/ebus: ace_ebus.c
src/sys/arch/mips/ralink: ralink_gpio.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq aic7xxx.seq
src/sys/dev/pci: mly.c
src/tests/lib/libc/gen/posix_spawn: t_spawn.c
src/tests/sys/uvm: t_uvm_physseg.c
src/usr.sbin/acpitools/aml: aml_store.c

Log Message:
s/existant/existent/ in comments and messages, plus few more similar fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/emips/ebus/ace_ebus.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mips/ralink/ralink_gpio.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/microcode/aic7xxx/aic7xxx.seq
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/mly.c
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/gen/posix_spawn/t_spawn.c
cvs rdiff -u -r1.9 -r1.10 src/tests/sys/uvm/t_uvm_physseg.c
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/acpitools/aml/aml_store.c

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



CVS commit: src

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 22:33:19 UTC 2021

Modified Files:
src/sys/arch/emips/ebus: ace_ebus.c
src/sys/arch/mips/ralink: ralink_gpio.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq aic7xxx.seq
src/sys/dev/pci: mly.c
src/tests/lib/libc/gen/posix_spawn: t_spawn.c
src/tests/sys/uvm: t_uvm_physseg.c
src/usr.sbin/acpitools/aml: aml_store.c

Log Message:
s/existant/existent/ in comments and messages, plus few more similar fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/emips/ebus/ace_ebus.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mips/ralink/ralink_gpio.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/microcode/aic7xxx/aic7xxx.seq
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/mly.c
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/gen/posix_spawn/t_spawn.c
cvs rdiff -u -r1.9 -r1.10 src/tests/sys/uvm/t_uvm_physseg.c
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/acpitools/aml/aml_store.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/arch/emips/ebus/ace_ebus.c
diff -u src/sys/arch/emips/ebus/ace_ebus.c:1.24 src/sys/arch/emips/ebus/ace_ebus.c:1.25
--- src/sys/arch/emips/ebus/ace_ebus.c:1.24	Sat Jul 24 21:31:32 2021
+++ src/sys/arch/emips/ebus/ace_ebus.c	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ace_ebus.c,v 1.24 2021/07/24 21:31:32 andvar Exp $	*/
+/*	$NetBSD: ace_ebus.c,v 1.25 2021/09/03 22:33:17 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: ace_ebus.c,v 1.24 2021/07/24 21:31:32 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ace_ebus.c,v 1.25 2021/09/03 22:33:17 andvar Exp $");
 
 #include 
 #include 
@@ -1313,7 +1313,7 @@ sysace_write_at(struct ace_softc *sc, da
 SysaceDumpRegisters(sc->sc_dr);
 /*
  * Ignore, we'll handle it the next time around
- * BUGBUG To be revised along with non-existant
+ * BUGBUG To be revised along with non-existent
  * error handling
  */
 			}

Index: src/sys/arch/mips/ralink/ralink_gpio.c
diff -u src/sys/arch/mips/ralink/ralink_gpio.c:1.11 src/sys/arch/mips/ralink/ralink_gpio.c:1.12
--- src/sys/arch/mips/ralink/ralink_gpio.c:1.11	Sat Aug  7 16:18:59 2021
+++ src/sys/arch/mips/ralink/ralink_gpio.c	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ralink_gpio.c,v 1.11 2021/08/07 16:18:59 thorpej Exp $	*/
+/*	$NetBSD: ralink_gpio.c,v 1.12 2021/09/03 22:33:17 andvar Exp $	*/
 /*-
  * Copyright (c) 2011 CradlePoint Technology, Inc.
  * All rights reserved.
@@ -29,7 +29,7 @@
 /* ra_gpio.c -- Ralink 3052 gpio driver */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: ralink_gpio.c,v 1.11 2021/08/07 16:18:59 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ralink_gpio.c,v 1.12 2021/09/03 22:33:17 andvar Exp $");
 
 #include 
 #include 
@@ -900,7 +900,7 @@ ra_gpio_pin_read(void *arg, int pin)
 		 * then warn and return 0
 		 */
 		const int index = pin_tab_index[pin];
-		KASSERTMSG(index != -1, "%s: non-existant pin=%d\n",
+		KASSERTMSG(index != -1, "%s: non-existent pin=%d\n",
 			__func__, pin);
 		if (index == -1) {
 			rv = 0;
@@ -1001,7 +1001,7 @@ ra_gpio_pin_write(void *arg, int pin, in
 	 * then warn and return
 	 */
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 
@@ -1432,7 +1432,7 @@ disable_gpio_interrupt(ra_gpio_softc_t *
 {
 	RALINK_DEBUG_FUNC_ENTRY();
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 
@@ -1456,7 +1456,7 @@ static void
 enable_gpio_interrupt(ra_gpio_softc_t *sc, int pin)
 {
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 

Index: src/sys/dev/microcode/aic7xxx/aic79xx.seq
diff -u src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.12 src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.13
--- src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.12	Tue Jun  4 10:15:22 2019
+++ src/sys/dev/microcode/aic7xxx/aic79xx.seq	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic79xx.seq,v 1.12 2019/06/04 10:15:22 msaitoh Exp $	*/
+/*	$NetBSD: aic79xx.seq,v 1.13 2021/09/03 22:33:17 andvar Exp $	*/
 
 /*
  * Adaptec U320 device driver firmware for Linux and FreeBSD.
@@ -1274,7 +1274,7 @@ service_fifo:
 
 	/*
 	 * We fetch a "cacheline aligned" and sized amount of data
-	 * so we don't end up referencing a non-existant page.
+	 * so we don't end up referencing a non-existent page.
 	 * Cacheline aligned is in quotes 

CVS commit: src

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 21:55:01 UTC 2021

Modified Files:
src/include: resolv.h
src/lib/libm/arch/hppa: fenv.c
src/lib/libm/arch/i387: fenv.c
src/lib/libm/arch/riscv: fenv.c
src/lib/libm/arch/sparc: fenv.c
src/lib/libm/arch/sparc64: fenv.c
src/lib/libm/arch/x86_64: fenv.c
src/libexec/httpd: CHANGES
src/sys/altq: altq_red.c
src/sys/arch/arm/include: armreg.h
src/sys/arch/sandpoint/stand/altboot: wm.c
src/sys/dev/acpi: acpica.h
src/sys/dev/pci: if_bge.c nfsmb.c pdcsata.c
src/sys/dev/usb: uvideo.c
src/sys/fs/udf: udf_allocation.c udf_subr.c
src/sys/net: ether_sw_offload.c
src/sys/net80211: CHANGES
src/sys/netinet: sctp_output.c
src/sys/ufs/ffs: ffs_alloc.c
src/usr.sbin/puffs/mount_9p: nineproto.c

Log Message:
fix typos in comments, mainly s/extention/extension/ and s/sufficent/sufficient/


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/include/resolv.h
cvs rdiff -u -r1.4 -r1.5 src/lib/libm/arch/hppa/fenv.c
cvs rdiff -u -r1.9 -r1.10 src/lib/libm/arch/i387/fenv.c
cvs rdiff -u -r1.2 -r1.3 src/lib/libm/arch/riscv/fenv.c
cvs rdiff -u -r1.2 -r1.3 src/lib/libm/arch/sparc/fenv.c
cvs rdiff -u -r1.3 -r1.4 src/lib/libm/arch/sparc64/fenv.c
cvs rdiff -u -r1.9 -r1.10 src/lib/libm/arch/x86_64/fenv.c
cvs rdiff -u -r1.51 -r1.52 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.32 -r1.33 src/sys/altq/altq_red.c
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/arm/include/armreg.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/sandpoint/stand/altboot/wm.c
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/acpi/acpica.h
cvs rdiff -u -r1.347 -r1.348 src/sys/dev/pci/if_bge.c
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/pci/nfsmb.c
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/pdcsata.c
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/usb/uvideo.c
cvs rdiff -u -r1.43 -r1.44 src/sys/fs/udf/udf_allocation.c
cvs rdiff -u -r1.156 -r1.157 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.7 -r1.8 src/sys/net/ether_sw_offload.c
cvs rdiff -u -r1.2 -r1.3 src/sys/net80211/CHANGES
cvs rdiff -u -r1.23 -r1.24 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.169 -r1.170 src/sys/ufs/ffs/ffs_alloc.c
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/puffs/mount_9p/nineproto.c

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



CVS commit: src

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 21:55:01 UTC 2021

Modified Files:
src/include: resolv.h
src/lib/libm/arch/hppa: fenv.c
src/lib/libm/arch/i387: fenv.c
src/lib/libm/arch/riscv: fenv.c
src/lib/libm/arch/sparc: fenv.c
src/lib/libm/arch/sparc64: fenv.c
src/lib/libm/arch/x86_64: fenv.c
src/libexec/httpd: CHANGES
src/sys/altq: altq_red.c
src/sys/arch/arm/include: armreg.h
src/sys/arch/sandpoint/stand/altboot: wm.c
src/sys/dev/acpi: acpica.h
src/sys/dev/pci: if_bge.c nfsmb.c pdcsata.c
src/sys/dev/usb: uvideo.c
src/sys/fs/udf: udf_allocation.c udf_subr.c
src/sys/net: ether_sw_offload.c
src/sys/net80211: CHANGES
src/sys/netinet: sctp_output.c
src/sys/ufs/ffs: ffs_alloc.c
src/usr.sbin/puffs/mount_9p: nineproto.c

Log Message:
fix typos in comments, mainly s/extention/extension/ and s/sufficent/sufficient/


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/include/resolv.h
cvs rdiff -u -r1.4 -r1.5 src/lib/libm/arch/hppa/fenv.c
cvs rdiff -u -r1.9 -r1.10 src/lib/libm/arch/i387/fenv.c
cvs rdiff -u -r1.2 -r1.3 src/lib/libm/arch/riscv/fenv.c
cvs rdiff -u -r1.2 -r1.3 src/lib/libm/arch/sparc/fenv.c
cvs rdiff -u -r1.3 -r1.4 src/lib/libm/arch/sparc64/fenv.c
cvs rdiff -u -r1.9 -r1.10 src/lib/libm/arch/x86_64/fenv.c
cvs rdiff -u -r1.51 -r1.52 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.32 -r1.33 src/sys/altq/altq_red.c
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/arm/include/armreg.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/sandpoint/stand/altboot/wm.c
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/acpi/acpica.h
cvs rdiff -u -r1.347 -r1.348 src/sys/dev/pci/if_bge.c
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/pci/nfsmb.c
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/pdcsata.c
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/usb/uvideo.c
cvs rdiff -u -r1.43 -r1.44 src/sys/fs/udf/udf_allocation.c
cvs rdiff -u -r1.156 -r1.157 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.7 -r1.8 src/sys/net/ether_sw_offload.c
cvs rdiff -u -r1.2 -r1.3 src/sys/net80211/CHANGES
cvs rdiff -u -r1.23 -r1.24 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.169 -r1.170 src/sys/ufs/ffs/ffs_alloc.c
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/puffs/mount_9p/nineproto.c

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

Modified files:

Index: src/include/resolv.h
diff -u src/include/resolv.h:1.41 src/include/resolv.h:1.42
--- src/include/resolv.h:1.41	Fri Apr 30 16:07:49 2021
+++ src/include/resolv.h	Fri Sep  3 21:54:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: resolv.h,v 1.41 2021/04/30 16:07:49 christos Exp $	*/
+/*	$NetBSD: resolv.h,v 1.42 2021/09/03 21:54:58 andvar Exp $	*/
 
 /*
  * Portions Copyright (C) 2004, 2005, 2008, 2009  Internet Systems Consortium, Inc. ("ISC")
@@ -188,7 +188,7 @@ struct __res_state {
 			uint16_t		nscount;
 			uint16_t		nstimes[MAXNS];	/*%< ms. */
 			int			nssocks[MAXNS];
-			struct __res_state_ext *ext;	/*%< extention for IPv6 */
+			struct __res_state_ext *ext;	/*%< extension for IPv6 */
 		} _ext;
 	} _u;
 	u_char	*_rnd;			/*%< PRIVATE: random state */

Index: src/lib/libm/arch/hppa/fenv.c
diff -u src/lib/libm/arch/hppa/fenv.c:1.4 src/lib/libm/arch/hppa/fenv.c:1.5
--- src/lib/libm/arch/hppa/fenv.c:1.4	Wed Mar 22 23:11:08 2017
+++ src/lib/libm/arch/hppa/fenv.c	Fri Sep  3 21:54:59 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: fenv.c,v 1.4 2017/03/22 23:11:08 chs Exp $	*/
+/*	$NetBSD: fenv.c,v 1.5 2021/09/03 21:54:59 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2004-2005 David Schultz 
@@ -24,7 +24,7 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  */
 #include 
-__RCSID("$NetBSD: fenv.c,v 1.4 2017/03/22 23:11:08 chs Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.5 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -333,7 +333,7 @@ feupdateenv(const fenv_t *envp)
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)

Index: src/lib/libm/arch/i387/fenv.c
diff -u src/lib/libm/arch/i387/fenv.c:1.9 src/lib/libm/arch/i387/fenv.c:1.10
--- src/lib/libm/arch/i387/fenv.c:1.9	Thu Jan 25 03:54:21 2018
+++ src/lib/libm/arch/i387/fenv.c	Fri Sep  3 21:54:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.9 2018/01/25 03:54:21 christos Exp $ */
+/* $NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $ */
 
 /*-
  * Copyright (c) 2004-2005 David Schultz 
@@ -27,7 +27,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: fenv.c,v 1.9 2018/01/25 03:54:21 christos Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.10 2021/09/03 21:54:59 andvar Exp $");
 
 #include "namespace.h"
 
@@ -469,7 +469,7 @@ feupdateenv(const fenv_t *envp)
 }
 
 /*
- * The following functions are extentions to the standard
+ * The following functions are extensions to the standard
  */
 int
 feenableexcept(int mask)

Index: 

CVS commit: src/sys/arch/evbarm/conf

2021-09-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep  3 21:58:36 UTC 2021

Modified Files:
src/sys/arch/evbarm/conf: std.beagle std.generic std.rpi std.zynq

Log Message:
s/opions/options/


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/evbarm/conf/std.beagle
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbarm/conf/std.generic
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/evbarm/conf/std.rpi
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/conf/std.zynq

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

Modified files:

Index: src/sys/arch/evbarm/conf/std.beagle
diff -u src/sys/arch/evbarm/conf/std.beagle:1.18 src/sys/arch/evbarm/conf/std.beagle:1.19
--- src/sys/arch/evbarm/conf/std.beagle:1.18	Sat May 18 08:49:23 2019
+++ src/sys/arch/evbarm/conf/std.beagle	Fri Sep  3 21:58:36 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: std.beagle,v 1.18 2019/05/18 08:49:23 skrll Exp $
+#	$NetBSD: std.beagle,v 1.19 2021/09/03 21:58:36 andvar Exp $
 #
 # standard NetBSD/evbarm for BEAGLEBOARD options
 
@@ -8,7 +8,7 @@ include		"arch/evbarm/conf/std.evbarm"
 # Pull in BEAGLEBOARD config definitions.
 include		"arch/evbarm/conf/files.beagle"
 
-# Architecture opions
+# Architecture options
 options 	ARM_GENERIC_TODR
 options 	ARM_HAS_VBAR
 options 	ARM_INTR_IMPL=""

Index: src/sys/arch/evbarm/conf/std.generic
diff -u src/sys/arch/evbarm/conf/std.generic:1.9 src/sys/arch/evbarm/conf/std.generic:1.10
--- src/sys/arch/evbarm/conf/std.generic:1.9	Sun Mar 21 09:00:55 2021
+++ src/sys/arch/evbarm/conf/std.generic	Fri Sep  3 21:58:36 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: std.generic,v 1.9 2021/03/21 09:00:55 skrll Exp $
+#	$NetBSD: std.generic,v 1.10 2021/09/03 21:58:36 andvar Exp $
 #
 # 	generic NetBSD/evbarm with FDT support
 
@@ -9,7 +9,7 @@ include		"arch/arm/conf/std.arm"		# arch
 options 	EXEC_ELF32
 options 	EXEC_SCRIPT
 
-# Architecture opions
+# Architecture options
 options 	ARM32
 
 options 	ARM_GENERIC_TODR

Index: src/sys/arch/evbarm/conf/std.rpi
diff -u src/sys/arch/evbarm/conf/std.rpi:1.25 src/sys/arch/evbarm/conf/std.rpi:1.26
--- src/sys/arch/evbarm/conf/std.rpi:1.25	Sun Mar 21 09:00:55 2021
+++ src/sys/arch/evbarm/conf/std.rpi	Fri Sep  3 21:58:36 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: std.rpi,v 1.25 2021/03/21 09:00:55 skrll Exp $
+#	$NetBSD: std.rpi,v 1.26 2021/09/03 21:58:36 andvar Exp $
 #
 # standard NetBSD/evbarm for Raspberry Pi options
 
@@ -8,7 +8,7 @@ include		"arch/evbarm/conf/std.evbarm"
 # Pull in Raspberry Pi config definitions.
 include		"arch/evbarm/conf/files.rpi"
 
-# Architecture opions
+# Architecture options
 options 	ARM_GENERIC_TODR
 options 	ARM_HAS_VBAR
 options 	ARM_INTR_IMPL=""

Index: src/sys/arch/evbarm/conf/std.zynq
diff -u src/sys/arch/evbarm/conf/std.zynq:1.6 src/sys/arch/evbarm/conf/std.zynq:1.7
--- src/sys/arch/evbarm/conf/std.zynq:1.6	Thu Oct 18 09:01:54 2018
+++ src/sys/arch/evbarm/conf/std.zynq	Fri Sep  3 21:58:36 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: std.zynq,v 1.6 2018/10/18 09:01:54 skrll Exp $
+#	$NetBSD: std.zynq,v 1.7 2021/09/03 21:58:36 andvar Exp $
 #
 # standard NetBSD/evbarm for ZYNQ options
 
@@ -8,7 +8,7 @@ include		"arch/evbarm/conf/std.evbarm"
 # Pull in Zynq config definitions.
 include		"arch/evbarm/conf/files.zynq"
 
-# Architecture opions
+# Architecture options
 options 	ARM_GENERIC_TODR
 options 	ARM_HAS_VBAR
 options 	ARM_INTR_IMPL=""



CVS commit: src/sys

2021-09-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Sep  6 20:55:08 UTC 2021

Modified Files:
src/sys/arch/hp300/dev: dma.c
src/sys/dev/pci: if_tl.c
src/sys/kern: subr_physmap.c

Log Message:
fix typos in word "segment" and two additional typos in if_tl.c.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/hp300/dev/dma.c
cvs rdiff -u -r1.122 -r1.123 src/sys/dev/pci/if_tl.c
cvs rdiff -u -r1.4 -r1.5 src/sys/kern/subr_physmap.c

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



CVS commit: src/sys

2021-09-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Sep  6 20:55:08 UTC 2021

Modified Files:
src/sys/arch/hp300/dev: dma.c
src/sys/dev/pci: if_tl.c
src/sys/kern: subr_physmap.c

Log Message:
fix typos in word "segment" and two additional typos in if_tl.c.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/hp300/dev/dma.c
cvs rdiff -u -r1.122 -r1.123 src/sys/dev/pci/if_tl.c
cvs rdiff -u -r1.4 -r1.5 src/sys/kern/subr_physmap.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/arch/hp300/dev/dma.c
diff -u src/sys/arch/hp300/dev/dma.c:1.43 src/sys/arch/hp300/dev/dma.c:1.44
--- src/sys/arch/hp300/dev/dma.c:1.43	Sun Jun  6 04:50:06 2010
+++ src/sys/arch/hp300/dev/dma.c	Mon Sep  6 20:55:08 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: dma.c,v 1.43 2010/06/06 04:50:06 mrg Exp $	*/
+/*	$NetBSD: dma.c,v 1.44 2021/09/06 20:55:08 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 #include "opt_m68k_arch.h"
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: dma.c,v 1.43 2010/06/06 04:50:06 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dma.c,v 1.44 2021/09/06 20:55:08 andvar Exp $");
 
 #include 	/* XXX param.h includes cpu.h */
 
@@ -609,7 +609,7 @@ dmaintr(void *arg)
 			printf("dma channel %d: intr when armed\n", i);
 #endif
 		/*
-		 * Load the next segemnt, or finish up if we're done.
+		 * Load the next segment, or finish up if we're done.
 		 */
 		dc->dm_cur++;
 		if (dc->dm_cur <= dc->dm_last) {

Index: src/sys/dev/pci/if_tl.c
diff -u src/sys/dev/pci/if_tl.c:1.122 src/sys/dev/pci/if_tl.c:1.123
--- src/sys/dev/pci/if_tl.c:1.122	Tue Jul  7 06:27:37 2020
+++ src/sys/dev/pci/if_tl.c	Mon Sep  6 20:55:08 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tl.c,v 1.122 2020/07/07 06:27:37 msaitoh Exp $	*/
+/*	$NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $	*/
 
 /*
  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.122 2020/07/07 06:27:37 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $");
 
 #undef TLDEBUG
 #define TL_PRIV_STATS
@@ -1281,7 +1281,7 @@ tbdinit:
 		 if (error == 0)
 			bus_dmamap_unload(sc->tl_dmatag, Tx->m_dmamap);
 		 if (again) {
-			/* already copyed, can't do much more */
+			/* already copied, can't do much more */
 			m_freem(mb_head);
 			goto bad;
 		}
@@ -1327,7 +1327,7 @@ tbdinit:
 	if (size < ETHER_MIN_TX) {
 #ifdef DIAGNOSTIC
 		if (segment >= TL_NSEG) {
-			panic("%s: to much segmets (%d)", __func__, segment);
+			panic("%s: too much segments (%d)", __func__, segment);
 		}
 #endif
 		/*

Index: src/sys/kern/subr_physmap.c
diff -u src/sys/kern/subr_physmap.c:1.4 src/sys/kern/subr_physmap.c:1.5
--- src/sys/kern/subr_physmap.c:1.4	Sun Sep  6 15:27:22 2020
+++ src/sys/kern/subr_physmap.c	Mon Sep  6 20:55:08 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_physmap.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $	*/
+/*	$NetBSD: subr_physmap.c,v 1.5 2021/09/06 20:55:08 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include 
-__KERNEL_RCSID(1, "$NetBSD: subr_physmap.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $");
+__KERNEL_RCSID(1, "$NetBSD: subr_physmap.c,v 1.5 2021/09/06 20:55:08 andvar Exp $");
 
 #include 
 #include 
@@ -206,7 +206,7 @@ physmap_create_pagelist(struct vm_page *
 		if (curaddr != lastaddr) {
 			/*
 			 * If the addresses are not the same, we need to use
-			 * a new segemnt.  Set its address and update lastaddr.
+			 * a new segment.  Set its address and update lastaddr.
 			 */
 			ps++;
 			ps->ps_addr = curaddr;



CVS commit: src/sys

2021-09-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Sep  6 21:56:04 UTC 2021

Modified Files:
src/sys/arch/hppa/hppa: kgdb_hppa.c trap.S
src/sys/arch/hppa/include: trap.h
src/sys/arch/sparc/include: ctlreg.h
src/sys/dev/ic: isp.c
src/sys/dev/pci: neo.c
src/sys/netinet: sctp.h

Log Message:
fix various typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/hppa/hppa/kgdb_hppa.c
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/hppa/hppa/trap.S
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/hppa/include/trap.h
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/sparc/include/ctlreg.h
cvs rdiff -u -r1.127 -r1.128 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/neo.c
cvs rdiff -u -r1.3 -r1.4 src/sys/netinet/sctp.h

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



CVS commit: src/sys

2021-09-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Sep  6 21:56:04 UTC 2021

Modified Files:
src/sys/arch/hppa/hppa: kgdb_hppa.c trap.S
src/sys/arch/hppa/include: trap.h
src/sys/arch/sparc/include: ctlreg.h
src/sys/dev/ic: isp.c
src/sys/dev/pci: neo.c
src/sys/netinet: sctp.h

Log Message:
fix various typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/hppa/hppa/kgdb_hppa.c
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/hppa/hppa/trap.S
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/hppa/include/trap.h
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/sparc/include/ctlreg.h
cvs rdiff -u -r1.127 -r1.128 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/neo.c
cvs rdiff -u -r1.3 -r1.4 src/sys/netinet/sctp.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/arch/hppa/hppa/kgdb_hppa.c
diff -u src/sys/arch/hppa/hppa/kgdb_hppa.c:1.9 src/sys/arch/hppa/hppa/kgdb_hppa.c:1.10
--- src/sys/arch/hppa/hppa/kgdb_hppa.c:1.9	Mon Apr 15 20:45:08 2019
+++ src/sys/arch/hppa/hppa/kgdb_hppa.c	Mon Sep  6 21:56:03 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: kgdb_hppa.c,v 1.9 2019/04/15 20:45:08 skrll Exp $	*/
+/*	$NetBSD: kgdb_hppa.c,v 1.10 2021/09/06 21:56:03 andvar Exp $	*/
 
 /*
  * Copyright (c) 1990, 1993
@@ -45,7 +45,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: kgdb_hppa.c,v 1.9 2019/04/15 20:45:08 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kgdb_hppa.c,v 1.10 2021/09/06 21:56:03 andvar Exp $");
 
 #include 
 #include 
@@ -121,7 +121,7 @@ kgdb_signal(int type)
 	case T_EXCEPTION:	/* assist exception */
 	case T_TLB_DIRTY:	/* TLB dirty bit */
 	case T_PAGEREF:		/* page reference */
-	case T_HIGHERPL:	/* higher-privelege transfer */
+	case T_HIGHERPL:	/* higher-privilege transfer */
 	case T_LOWERPL:		/* lower-privilege transfer */
 #endif
 	default:

Index: src/sys/arch/hppa/hppa/trap.S
diff -u src/sys/arch/hppa/hppa/trap.S:1.73 src/sys/arch/hppa/hppa/trap.S:1.74
--- src/sys/arch/hppa/hppa/trap.S:1.73	Mon Sep 14 16:11:00 2020
+++ src/sys/arch/hppa/hppa/trap.S	Mon Sep  6 21:56:03 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: trap.S,v 1.73 2020/09/14 16:11:00 skrll Exp $	*/
+/*	$NetBSD: trap.S,v 1.74 2021/09/06 21:56:03 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -662,7 +662,7 @@ os_hpmc:
 	STRAP(tlbd,T_TLB_DIRTY,DTLBPRE)	/* 20. TLB dirty bit trap */
 	ATRAP(pgref,T_PAGEREF)		/* 21. page reference trap */
 	CTRAP(emu,T_EMULATION,)		/* 22. assist emulation trap */
-	ATRAP(hpl,T_HIGHERPL)		/* 23. higher-privelege transfer trap*/
+	ATRAP(hpl,T_HIGHERPL)		/* 23. higher-privilege transfer trap*/
 	ATRAP(lpl,T_LOWERPL)		/* 24. lower-privilege transfer trap */
 	ATRAP(tknbr,T_TAKENBR)		/* 25. taken branch trap */
 	ATRAP(dacc,T_DATACC)		/* 26. data access rights trap */

Index: src/sys/arch/hppa/include/trap.h
diff -u src/sys/arch/hppa/include/trap.h:1.4 src/sys/arch/hppa/include/trap.h:1.5
--- src/sys/arch/hppa/include/trap.h:1.4	Sat Jan 16 10:06:31 2010
+++ src/sys/arch/hppa/include/trap.h	Mon Sep  6 21:56:03 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: trap.h,v 1.4 2010/01/16 10:06:31 skrll Exp $	*/
+/*	$NetBSD: trap.h,v 1.5 2021/09/06 21:56:03 andvar Exp $	*/
 
 /*	$OpenBSD: trap.h,v 1.8 2000/02/10 20:05:39 mickey Exp $	*/
 
@@ -57,7 +57,7 @@
 #define	T_TLB_DIRTY	20	/* TLB dirty bit */
 #define	T_PAGEREF	21	/* page reference */
 #define	T_EMULATION	22	/* assist emulation */
-#define	T_HIGHERPL	23	/* higher-privelege transfer */
+#define	T_HIGHERPL	23	/* higher-privilege transfer */
 #define	T_LOWERPL	24	/* lower-privilege transfer */
 #define	T_TAKENBR	25	/* taken branch */
 #define	T_DATACC	26	/* data access rights >=7100 */

Index: src/sys/arch/sparc/include/ctlreg.h
diff -u src/sys/arch/sparc/include/ctlreg.h:1.30 src/sys/arch/sparc/include/ctlreg.h:1.31
--- src/sys/arch/sparc/include/ctlreg.h:1.30	Thu Aug 29 05:55:18 2019
+++ src/sys/arch/sparc/include/ctlreg.h	Mon Sep  6 21:56:03 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ctlreg.h,v 1.30 2019/08/29 05:55:18 msaitoh Exp $ */
+/*	$NetBSD: ctlreg.h,v 1.31 2021/09/06 21:56:03 andvar Exp $ */
 
 /*
  * Copyright (c) 1996
@@ -382,7 +382,7 @@
 #define SFSR_FT_NONE		(0 << 2) 	/* no fault */
 #define SFSR_FT_INVADDR		(1 << 2)	/* invalid address fault */
 #define SFSR_FT_PROTERR		(2 << 2)	/* protection fault */
-#define SFSR_FT_PRIVERR		(3 << 2)	/* privelege violation */
+#define SFSR_FT_PRIVERR		(3 << 2)	/* privilege violation */
 #define SFSR_FT_TRANSERR	(4 << 2)	/* translation fault */
 #define SFSR_FT_BUSERR		(5 << 2)	/* access bus error */
 #define SFSR_FT_INTERR		(6 << 2)	/* internal error */

Index: src/sys/dev/ic/isp.c
diff -u src/sys/dev/ic/isp.c:1.127 src/sys/dev/ic/isp.c:1.128
--- src/sys/dev/ic/isp.c:1.127	Thu Feb  8 09:05:19 2018
+++ src/sys/dev/ic/isp.c	Mon Sep  6 21:56:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: isp.c,v 1.127 2018/02/08 09:05:19 dholland Exp $ */
+/* $NetBSD: isp.c,v 1.128 

CVS commit: src/sys/arch/alpha/alpha

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 20:43:46 UTC 2021

Modified Files:
src/sys/arch/alpha/alpha: pmap.c

Log Message:
review and fix rest of the typos in alpha pmap.c.


To generate a diff of this commit:
cvs rdiff -u -r1.302 -r1.303 src/sys/arch/alpha/alpha/pmap.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/arch/alpha/alpha/pmap.c
diff -u src/sys/arch/alpha/alpha/pmap.c:1.302 src/sys/arch/alpha/alpha/pmap.c:1.303
--- src/sys/arch/alpha/alpha/pmap.c:1.302	Sun Sep 19 10:34:07 2021
+++ src/sys/arch/alpha/alpha/pmap.c	Sun Sep 19 20:43:46 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $ */
+/* $NetBSD: pmap.c,v 1.303 2021/09/19 20:43:46 andvar Exp $ */
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001, 2007, 2008, 2020
@@ -135,7 +135,7 @@
 
 #include 			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.303 2021/09/19 20:43:46 andvar Exp $");
 
 #include 
 #include 
@@ -544,7 +544,7 @@ pmap_pvlist_free(struct pmap_pvlist * co
  * Some things that add complexity:
  *
  * ==> ASNs. A CPU may have valid TLB entries for other than the current
- * address spaace.  We can only invalidate TLB entries for the current
+ * address space.  We can only invalidate TLB entries for the current
  * address space, so when asked to invalidate a VA for the non-current
  * pmap on a given CPU, we simply invalidate the ASN for that pmap,CPU
  * tuple so that new one is allocated on the next activation on that
@@ -587,7 +587,7 @@ pmap_pvlist_free(struct pmap_pvlist * co
  * global bitmap off CPUs to be notified, and then send the IPIs to
  * each victim.  While the other CPUs are in-flight, we then perform
  * any invalidations necessary on the local CPU.  Once that is done,
- * we then wait the the global context pointer to be cleared, which
+ * we then wait the global context pointer to be cleared, which
  * will be done by the final remote CPU to complete their work. This
  * method reduces cache line contention during processing.
  *
@@ -597,7 +597,7 @@ pmap_pvlist_free(struct pmap_pvlist * co
  * CPU might hold for the respective recursive VPT mappings.  This must
  * be done whenever an L1 or L2 PTE is invalidated.  Until these VPT
  * translations are invalidated, the PT pages must not be reused.  For
- * this reason, we keep a list of freed PT pages in the context stucture
+ * this reason, we keep a list of freed PT pages in the context structure
  * and drain them off once all invalidations are complete.
  *
  * NOTE: The value of TLB_CTX_MAXVA is tuned to accommodate the UBC
@@ -3635,7 +3635,7 @@ pmap_l1pt_ctor(void *arg, void *object, 
 /*
  * pmap_l1pt_alloc:
  *
- *	Page alloctaor for L1 PT pages.
+ *	Page allocator for L1 PT pages.
  */
 static void *
 pmap_l1pt_alloc(struct pool *pp, int flags)



CVS commit: src/sys/arch/alpha/alpha

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 20:43:46 UTC 2021

Modified Files:
src/sys/arch/alpha/alpha: pmap.c

Log Message:
review and fix rest of the typos in alpha pmap.c.


To generate a diff of this commit:
cvs rdiff -u -r1.302 -r1.303 src/sys/arch/alpha/alpha/pmap.c

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



CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 20:52:47 UTC 2021

Modified Files:
src/lib/libtelnet: auth.c
src/sys/arch/arm/gemini: obio_wdc.c

Log Message:
s/Plese/Please/ in comment, and fix an article in obio_wdc.c comment.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/lib/libtelnet/auth.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/gemini/obio_wdc.c

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



CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 20:52:47 UTC 2021

Modified Files:
src/lib/libtelnet: auth.c
src/sys/arch/arm/gemini: obio_wdc.c

Log Message:
s/Plese/Please/ in comment, and fix an article in obio_wdc.c comment.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/lib/libtelnet/auth.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/gemini/obio_wdc.c

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

Modified files:

Index: src/lib/libtelnet/auth.c
diff -u src/lib/libtelnet/auth.c:1.24 src/lib/libtelnet/auth.c:1.25
--- src/lib/libtelnet/auth.c:1.24	Sun Dec 16 16:06:39 2018
+++ src/lib/libtelnet/auth.c	Sun Sep 19 20:52:47 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: auth.c,v 1.24 2018/12/16 16:06:39 maya Exp $	*/
+/*	$NetBSD: auth.c,v 1.25 2021/09/19 20:52:47 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)auth.c	8.3 (Berkeley) 5/30/95"
 #else
-__RCSID("$NetBSD: auth.c,v 1.24 2018/12/16 16:06:39 maya Exp $");
+__RCSID("$NetBSD: auth.c,v 1.25 2021/09/19 20:52:47 andvar Exp $");
 #endif
 #endif /* not lint */
 
@@ -93,7 +93,7 @@ static	int	auth_send_cnt = 0;
 static void auth_intr(int);
 
 /*
- * Authentication types supported.  Plese note that these are stored
+ * Authentication types supported.  Please note that these are stored
  * in priority order, i.e. try the first one first.
  */
 Authenticator authenticators[] = {

Index: src/sys/arch/arm/gemini/obio_wdc.c
diff -u src/sys/arch/arm/gemini/obio_wdc.c:1.10 src/sys/arch/arm/gemini/obio_wdc.c:1.11
--- src/sys/arch/arm/gemini/obio_wdc.c:1.10	Sun Sep 19 10:34:08 2021
+++ src/sys/arch/arm/gemini/obio_wdc.c	Sun Sep 19 20:52:47 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $	*/
+/*	$NetBSD: obio_wdc.c,v 1.11 2021/09/19 20:52:47 andvar Exp $	*/
 
 /* adapted from iq31244/wdc_obio.c:
  *	NetBSD: wdc_obio.c,v 1.5 2008/04/28 20:23:16 martin Exp
@@ -34,7 +34,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.11 2021/09/19 20:52:47 andvar Exp $");
 
 #include "locators.h"
 
@@ -93,7 +93,7 @@ wdc_obio_attach(device_t parent, device_
 	/*
 	 * we treat the two channels of the Gemini MIDE controller
 	 * as separate wdc controllers, because they have
-	 * independent interrupts.  'chan' here is an MIDE channel,
+	 * independent interrupts.  'chan' here is a MIDE channel,
 	 * (not to be confused with ATA channel).
 	 */
 	switch (obio->obio_addr) {



CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 10:34:10 UTC 2021

Modified Files:
src/common/lib/libc/misc: ubsan.c
src/games/rogue: CHANGES
src/sbin/newfs_udf: newfs_udf.c
src/sys/arch/acorn32/podulebus: if_ie.c
src/sys/arch/alpha/alpha: pmap.c
src/sys/arch/amiga/dev: view.c viewioctl.h viewvar.h
src/sys/arch/arc/arc: c_nec_pci.c
src/sys/arch/arm/broadcom: bcm53xx_var.h
src/sys/arch/arm/gemini: obio_wdc.c
src/sys/arch/arm/iomd: vidc20config.c
src/sys/arch/arm/samsung: exynos_soc.c
src/sys/arch/arm/xscale: ixp425-fw.README ixp425_if_npe.c
src/sys/arch/atari/dev: view.c viewioctl.h viewvar.h
src/sys/arch/m68k/include: pmap_motorola.h
src/sys/arch/mips/mips: locore_mips1.S
src/sys/arch/powerpc/include/booke: etsecreg.h
src/sys/dev/ic: isp.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq aicasm_gram.y
src/sys/dev/pci/ixgbe: ixgbe.h
src/sys/dev/scsipi: if_se.c
src/sys/net80211: ieee80211_node.c
src/sys/netinet: sctp_input.c sctp_pcb.c
src/tests/fs/puffs/h_dtfs: dtfs_vfsops.c
src/tests/kernel: t_kauth_pr_47598.c
src/usr.sbin/acpitools/acpidump: acpi.c

Log Message:
fix various typos in comments, messages and documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/common/lib/libc/misc/ubsan.c
cvs rdiff -u -r1.3 -r1.4 src/games/rogue/CHANGES
cvs rdiff -u -r1.21 -r1.22 src/sbin/newfs_udf/newfs_udf.c
cvs rdiff -u -r1.49 -r1.50 src/sys/arch/acorn32/podulebus/if_ie.c
cvs rdiff -u -r1.301 -r1.302 src/sys/arch/alpha/alpha/pmap.c
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/amiga/dev/view.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/amiga/dev/viewioctl.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/amiga/dev/viewvar.h
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arc/arc/c_nec_pci.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/broadcom/bcm53xx_var.h
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/gemini/obio_wdc.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/arm/iomd/vidc20config.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/arm/samsung/exynos_soc.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/xscale/ixp425-fw.README
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/xscale/ixp425_if_npe.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/atari/dev/view.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/dev/viewioctl.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/atari/dev/viewvar.h
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/m68k/include/pmap_motorola.h
cvs rdiff -u -r1.95 -r1.96 src/sys/arch/mips/mips/locore_mips1.S
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/include/booke/etsecreg.h
cvs rdiff -u -r1.129 -r1.130 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/microcode/aic7xxx/aicasm_gram.y
cvs rdiff -u -r1.81 -r1.82 src/sys/dev/pci/ixgbe/ixgbe.h
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/scsipi/if_se.c
cvs rdiff -u -r1.81 -r1.82 src/sys/net80211/ieee80211_node.c
cvs rdiff -u -r1.14 -r1.15 src/sys/netinet/sctp_input.c
cvs rdiff -u -r1.21 -r1.22 src/sys/netinet/sctp_pcb.c
cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c
cvs rdiff -u -r1.4 -r1.5 src/tests/kernel/t_kauth_pr_47598.c
cvs rdiff -u -r1.51 -r1.52 src/usr.sbin/acpitools/acpidump/acpi.c

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



CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 10:34:10 UTC 2021

Modified Files:
src/common/lib/libc/misc: ubsan.c
src/games/rogue: CHANGES
src/sbin/newfs_udf: newfs_udf.c
src/sys/arch/acorn32/podulebus: if_ie.c
src/sys/arch/alpha/alpha: pmap.c
src/sys/arch/amiga/dev: view.c viewioctl.h viewvar.h
src/sys/arch/arc/arc: c_nec_pci.c
src/sys/arch/arm/broadcom: bcm53xx_var.h
src/sys/arch/arm/gemini: obio_wdc.c
src/sys/arch/arm/iomd: vidc20config.c
src/sys/arch/arm/samsung: exynos_soc.c
src/sys/arch/arm/xscale: ixp425-fw.README ixp425_if_npe.c
src/sys/arch/atari/dev: view.c viewioctl.h viewvar.h
src/sys/arch/m68k/include: pmap_motorola.h
src/sys/arch/mips/mips: locore_mips1.S
src/sys/arch/powerpc/include/booke: etsecreg.h
src/sys/dev/ic: isp.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq aicasm_gram.y
src/sys/dev/pci/ixgbe: ixgbe.h
src/sys/dev/scsipi: if_se.c
src/sys/net80211: ieee80211_node.c
src/sys/netinet: sctp_input.c sctp_pcb.c
src/tests/fs/puffs/h_dtfs: dtfs_vfsops.c
src/tests/kernel: t_kauth_pr_47598.c
src/usr.sbin/acpitools/acpidump: acpi.c

Log Message:
fix various typos in comments, messages and documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/common/lib/libc/misc/ubsan.c
cvs rdiff -u -r1.3 -r1.4 src/games/rogue/CHANGES
cvs rdiff -u -r1.21 -r1.22 src/sbin/newfs_udf/newfs_udf.c
cvs rdiff -u -r1.49 -r1.50 src/sys/arch/acorn32/podulebus/if_ie.c
cvs rdiff -u -r1.301 -r1.302 src/sys/arch/alpha/alpha/pmap.c
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/amiga/dev/view.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/amiga/dev/viewioctl.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/amiga/dev/viewvar.h
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arc/arc/c_nec_pci.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/broadcom/bcm53xx_var.h
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/gemini/obio_wdc.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/arm/iomd/vidc20config.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/arm/samsung/exynos_soc.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/xscale/ixp425-fw.README
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/xscale/ixp425_if_npe.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/atari/dev/view.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/dev/viewioctl.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/atari/dev/viewvar.h
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/m68k/include/pmap_motorola.h
cvs rdiff -u -r1.95 -r1.96 src/sys/arch/mips/mips/locore_mips1.S
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/include/booke/etsecreg.h
cvs rdiff -u -r1.129 -r1.130 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/microcode/aic7xxx/aicasm_gram.y
cvs rdiff -u -r1.81 -r1.82 src/sys/dev/pci/ixgbe/ixgbe.h
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/scsipi/if_se.c
cvs rdiff -u -r1.81 -r1.82 src/sys/net80211/ieee80211_node.c
cvs rdiff -u -r1.14 -r1.15 src/sys/netinet/sctp_input.c
cvs rdiff -u -r1.21 -r1.22 src/sys/netinet/sctp_pcb.c
cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c
cvs rdiff -u -r1.4 -r1.5 src/tests/kernel/t_kauth_pr_47598.c
cvs rdiff -u -r1.51 -r1.52 src/usr.sbin/acpitools/acpidump/acpi.c

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

Modified files:

Index: src/common/lib/libc/misc/ubsan.c
diff -u src/common/lib/libc/misc/ubsan.c:1.10 src/common/lib/libc/misc/ubsan.c:1.11
--- src/common/lib/libc/misc/ubsan.c:1.10	Sun Mar  8 21:35:03 2020
+++ src/common/lib/libc/misc/ubsan.c	Sun Sep 19 10:34:06 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $	*/
+/*	$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -38,9 +38,9 @@
 
 #include 
 #if defined(_KERNEL)
-__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
 #else
-__RCSID("$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $");
+__RCSID("$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
 #endif
 
 #if defined(_KERNEL)
@@ -744,7 +744,7 @@ HandleAlignmentAssumption(bool isFatal, 
 	if (pData->mAssumptionLocation.mFilename != NULL) {
 		DeserializeLocation(szAssumptionLocation, LOCATION_MAXLEN,
 		>mAssumptionLocation);
-		Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), asumption made in %s\n",
+		Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), assumption made in %s\n",
 		szLocation, ulAlignment, ulRealPointer, ulOffset,
 		szAssumptionLocation);
 	} else {

Index: src/games/rogue/CHANGES
diff -u src/games/rogue/CHANGES:1.3 

CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 11:37:01 UTC 2021

Modified Files:
src/sys/arch/evbppc/dht: machdep.c
src/sys/dev/pci: if_iwn.c
src/usr.bin/sort: init.c
src/usr.sbin/ndp: ndp.8

Log Message:
fix few more typos in comments, messages and documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbppc/dht/machdep.c
cvs rdiff -u -r1.96 -r1.97 src/sys/dev/pci/if_iwn.c
cvs rdiff -u -r1.29 -r1.30 src/usr.bin/sort/init.c
cvs rdiff -u -r1.32 -r1.33 src/usr.sbin/ndp/ndp.8

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



CVS commit: src

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 11:37:01 UTC 2021

Modified Files:
src/sys/arch/evbppc/dht: machdep.c
src/sys/dev/pci: if_iwn.c
src/usr.bin/sort: init.c
src/usr.sbin/ndp: ndp.8

Log Message:
fix few more typos in comments, messages and documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbppc/dht/machdep.c
cvs rdiff -u -r1.96 -r1.97 src/sys/dev/pci/if_iwn.c
cvs rdiff -u -r1.29 -r1.30 src/usr.bin/sort/init.c
cvs rdiff -u -r1.32 -r1.33 src/usr.sbin/ndp/ndp.8

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

Modified files:

Index: src/sys/arch/evbppc/dht/machdep.c
diff -u src/sys/arch/evbppc/dht/machdep.c:1.2 src/sys/arch/evbppc/dht/machdep.c:1.3
--- src/sys/arch/evbppc/dht/machdep.c:1.2	Tue Aug  3 09:25:43 2021
+++ src/sys/arch/evbppc/dht/machdep.c	Sun Sep 19 11:37:00 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.2 2021/08/03 09:25:43 rin Exp $	*/
+/*	$NetBSD: machdep.c,v 1.3 2021/09/19 11:37:00 andvar Exp $	*/
 
 /*
  * Taken from src/sys/arch/evbppc/walnut/machdep.c:
@@ -72,7 +72,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.2 2021/08/03 09:25:43 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.3 2021/09/19 11:37:00 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_pci.h"
@@ -301,7 +301,7 @@ ibm4xx_pci_conf_interrupt(void *v, int b
 	if (bus != 0) {
 		/*
 		 * XXX
-		 * See coment above.
+		 * See comment above.
 		 */
 		dev = PARENT_DEV(swiz, dev);
 		goto out;

Index: src/sys/dev/pci/if_iwn.c
diff -u src/sys/dev/pci/if_iwn.c:1.96 src/sys/dev/pci/if_iwn.c:1.97
--- src/sys/dev/pci/if_iwn.c:1.96	Wed Jun 16 00:21:18 2021
+++ src/sys/dev/pci/if_iwn.c	Sun Sep 19 11:37:01 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_iwn.c,v 1.96 2021/06/16 00:21:18 riastradh Exp $	*/
+/*	$NetBSD: if_iwn.c,v 1.97 2021/09/19 11:37:01 andvar Exp $	*/
 /*	$OpenBSD: if_iwn.c,v 1.135 2014/09/10 07:22:09 dcoppa Exp $	*/
 
 /*-
@@ -22,7 +22,7 @@
  * adapters.
  */
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.96 2021/06/16 00:21:18 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.97 2021/09/19 11:37:01 andvar Exp $");
 
 #define IWN_USE_RBUF	/* Use local storage for RX */
 #undef IWN_HWCRYPTO	/* XXX does not even compile yet */
@@ -4477,14 +4477,14 @@ iwn_config_bt_coex_adv_config(struct iwn
 	btprot.type = 1;
 	error = iwn_cmd(sc, IWN_CMD_BT_COEX_PROT, , sizeof btprot, 1);
 	if (error != 0) {
-		aprint_error_dev(sc->sc_dev, "could not open BT protcol\n");
+		aprint_error_dev(sc->sc_dev, "could not open BT protocol\n");
 		return error;
 	}
 
 	btprot.open = 0;
 	error = iwn_cmd(sc, IWN_CMD_BT_COEX_PROT, , sizeof btprot, 1);
 	if (error != 0) {
-		aprint_error_dev(sc->sc_dev, "could not close BT protcol\n");
+		aprint_error_dev(sc->sc_dev, "could not close BT protocol\n");
 		return error;
 	}
 	return 0;

Index: src/usr.bin/sort/init.c
diff -u src/usr.bin/sort/init.c:1.29 src/usr.bin/sort/init.c:1.30
--- src/usr.bin/sort/init.c:1.29	Fri Oct 18 20:47:06 2013
+++ src/usr.bin/sort/init.c	Sun Sep 19 11:37:01 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: init.c,v 1.29 2013/10/18 20:47:06 christos Exp $	*/
+/*	$NetBSD: init.c,v 1.30 2021/09/19 11:37:01 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -63,7 +63,7 @@
 
 #include "sort.h"
 
-__RCSID("$NetBSD: init.c,v 1.29 2013/10/18 20:47:06 christos Exp $");
+__RCSID("$NetBSD: init.c,v 1.30 2021/09/19 11:37:01 andvar Exp $");
 
 #include 
 #include 
@@ -402,7 +402,7 @@ fixit(int *argc, char **argv, const char
  * Numeric sorts don't need any tables, they are reversed by negation.
  *
  * Global reverse sorts are done by writing the sorted keys in reverse
- * order - the sort itself is stil forwards.
+ * order - the sort itself is still forwards.
  * This means that weights are only ever used when generating keys, any
  * sort of the original data bytes is always forwards and unweighted.
  *

Index: src/usr.sbin/ndp/ndp.8
diff -u src/usr.sbin/ndp/ndp.8:1.32 src/usr.sbin/ndp/ndp.8:1.33
--- src/usr.sbin/ndp/ndp.8:1.32	Tue Sep 15 10:11:35 2020
+++ src/usr.sbin/ndp/ndp.8	Sun Sep 19 11:37:01 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: ndp.8,v 1.32 2020/09/15 10:11:35 roy Exp $
+.\"	$NetBSD: ndp.8,v 1.33 2021/09/19 11:37:01 andvar Exp $
 .\"	$KAME: ndp.8,v 1.33 2005/10/19 14:57:42 suz Exp $
 .\"
 .\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -187,7 +187,7 @@ While the flag can be set or cleared by 
 .Nm
 command, it is not generally advisable to modify this flag manually.
 .It Ic basereachable=(number)
-Specify the BaseReachbleTimer on the interface in millisecond.
+Specify the BaseReachableTimer on the interface in millisecond.
 .It Ic retrans=(number)
 Specify the RetransTimer on the interface in millisecond.
 .It Ic curhlim=(number)



CVS commit: src/usr.bin/rump_dhcpclient

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 10:46:17 UTC 2021

Modified Files:
src/usr.bin/rump_dhcpclient: dhcp.c dhcp.h

Log Message:
fix typo in rump dhcpclient definition.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/rump_dhcpclient/dhcp.c
cvs rdiff -u -r1.1 -r1.2 src/usr.bin/rump_dhcpclient/dhcp.h

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



CVS commit: src/usr.bin/rump_dhcpclient

2021-09-19 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Sep 19 10:46:17 UTC 2021

Modified Files:
src/usr.bin/rump_dhcpclient: dhcp.c dhcp.h

Log Message:
fix typo in rump dhcpclient definition.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/rump_dhcpclient/dhcp.c
cvs rdiff -u -r1.1 -r1.2 src/usr.bin/rump_dhcpclient/dhcp.h

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

Modified files:

Index: src/usr.bin/rump_dhcpclient/dhcp.c
diff -u src/usr.bin/rump_dhcpclient/dhcp.c:1.2 src/usr.bin/rump_dhcpclient/dhcp.c:1.3
--- src/usr.bin/rump_dhcpclient/dhcp.c:1.2	Thu Sep 13 21:44:50 2012
+++ src/usr.bin/rump_dhcpclient/dhcp.c	Sun Sep 19 10:46:17 2021
@@ -730,11 +730,11 @@ make_message(struct dhcp_message **messa
 	}
 	*p++ = DHO_END;
 
-#ifdef BOOTP_MESSAGE_LENTH_MIN
+#ifdef BOOTP_MESSAGE_LENGTH_MIN
 	/* Some crappy DHCP servers think they have to obey the BOOTP minimum
 	 * message length.
 	 * They are wrong, but we should still cater for them. */
-	while (p - m < BOOTP_MESSAGE_LENTH_MIN)
+	while (p - m < BOOTP_MESSAGE_LENGTH_MIN)
 		*p++ = DHO_PAD;
 #endif
 

Index: src/usr.bin/rump_dhcpclient/dhcp.h
diff -u src/usr.bin/rump_dhcpclient/dhcp.h:1.1 src/usr.bin/rump_dhcpclient/dhcp.h:1.2
--- src/usr.bin/rump_dhcpclient/dhcp.h:1.1	Thu Jan 20 18:47:20 2011
+++ src/usr.bin/rump_dhcpclient/dhcp.h	Sun Sep 19 10:46:17 2021
@@ -133,7 +133,7 @@ enum FQDN {
 #define DHCP_OPTION_LEN (MTU_MAX - DHCP_FIXED_LEN)
 
 /* Some crappy DHCP servers require the BOOTP minimum length */
-#define BOOTP_MESSAGE_LENTH_MIN 300
+#define BOOTP_MESSAGE_LENGTH_MIN 300
 
 struct dhcp_message {
 	uint8_t op;   /* message type */



CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 21:29:42 UTC 2021

Modified Files:
src/common/lib/libc/gen: rb.c
src/lib/libc/gdtoa/test: README
src/libexec/identd: identd.c
src/sys/arch/arm/imx: imx23_ssp.c
src/sys/arch/i386/pci: pci_intr_fixup.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq
src/sys/dev/pci: amdpm_smbusreg.h if_ena.c
src/sys/kern: kern_module.c
src/sys/rump/librump/rumpkern: vm.c
src/sys/ufs/chfs: ebh_media.h
src/tests/fs/vfs: t_vnops.c
src/usr.bin/rump_dhcpclient: rump.dhcpclient.1
src/usr.sbin/puffs/mount_psshfs: node.c

Log Message:
fix typos in word "successfully", mainly s/succesfully/successfully/.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/common/lib/libc/gen/rb.c
cvs rdiff -u -r1.1.1.1 -r1.2 src/lib/libc/gdtoa/test/README
cvs rdiff -u -r1.36 -r1.37 src/libexec/identd/identd.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/imx/imx23_ssp.c
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/i386/pci/pci_intr_fixup.c
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/amdpm_smbusreg.h
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/if_ena.c
cvs rdiff -u -r1.152 -r1.153 src/sys/kern/kern_module.c
cvs rdiff -u -r1.191 -r1.192 src/sys/rump/librump/rumpkern/vm.c
cvs rdiff -u -r1.1 -r1.2 src/sys/ufs/chfs/ebh_media.h
cvs rdiff -u -r1.60 -r1.61 src/tests/fs/vfs/t_vnops.c
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/rump_dhcpclient/rump.dhcpclient.1
cvs rdiff -u -r1.65 -r1.66 src/usr.sbin/puffs/mount_psshfs/node.c

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



CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 21:29:42 UTC 2021

Modified Files:
src/common/lib/libc/gen: rb.c
src/lib/libc/gdtoa/test: README
src/libexec/identd: identd.c
src/sys/arch/arm/imx: imx23_ssp.c
src/sys/arch/i386/pci: pci_intr_fixup.c
src/sys/dev/microcode/aic7xxx: aic79xx.seq
src/sys/dev/pci: amdpm_smbusreg.h if_ena.c
src/sys/kern: kern_module.c
src/sys/rump/librump/rumpkern: vm.c
src/sys/ufs/chfs: ebh_media.h
src/tests/fs/vfs: t_vnops.c
src/usr.bin/rump_dhcpclient: rump.dhcpclient.1
src/usr.sbin/puffs/mount_psshfs: node.c

Log Message:
fix typos in word "successfully", mainly s/succesfully/successfully/.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/common/lib/libc/gen/rb.c
cvs rdiff -u -r1.1.1.1 -r1.2 src/lib/libc/gdtoa/test/README
cvs rdiff -u -r1.36 -r1.37 src/libexec/identd/identd.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/imx/imx23_ssp.c
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/i386/pci/pci_intr_fixup.c
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/amdpm_smbusreg.h
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/if_ena.c
cvs rdiff -u -r1.152 -r1.153 src/sys/kern/kern_module.c
cvs rdiff -u -r1.191 -r1.192 src/sys/rump/librump/rumpkern/vm.c
cvs rdiff -u -r1.1 -r1.2 src/sys/ufs/chfs/ebh_media.h
cvs rdiff -u -r1.60 -r1.61 src/tests/fs/vfs/t_vnops.c
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/rump_dhcpclient/rump.dhcpclient.1
cvs rdiff -u -r1.65 -r1.66 src/usr.sbin/puffs/mount_psshfs/node.c

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

Modified files:

Index: src/common/lib/libc/gen/rb.c
diff -u src/common/lib/libc/gen/rb.c:1.15 src/common/lib/libc/gen/rb.c:1.16
--- src/common/lib/libc/gen/rb.c:1.15	Thu May  9 10:56:24 2019
+++ src/common/lib/libc/gen/rb.c	Thu Sep 16 21:29:41 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $	*/
+/*	$NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -45,10 +45,10 @@
 #define KASSERT(s)	do { } while (/*CONSTCOND*/ 0)
 #define	__rbt_unused	__unused
 #endif
-__RCSID("$NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $");
+__RCSID("$NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $");
 #else
 #include 
-__KERNEL_RCSID(0, "$NetBSD: rb.c,v 1.15 2019/05/09 10:56:24 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rb.c,v 1.16 2021/09/16 21:29:41 andvar Exp $");
 #ifndef DIAGNOSTIC
 #define	__rbt_unused	__unused
 #else
@@ -313,7 +313,7 @@ rb_tree_insert_node(struct rb_tree *rbt,
 		KASSERT(rb_tree_check_node(rbt, self, NULL, true));
 	}
 
-	/* Succesfully inserted, return our node pointer. */
+	/* Successfully inserted, return our node pointer. */
 	return object;
 }
 

Index: src/lib/libc/gdtoa/test/README
diff -u src/lib/libc/gdtoa/test/README:1.1.1.1 src/lib/libc/gdtoa/test/README:1.2
--- src/lib/libc/gdtoa/test/README:1.1.1.1	Sat Mar 19 16:26:42 2011
+++ src/lib/libc/gdtoa/test/README	Thu Sep 16 21:29:41 2021
@@ -69,7 +69,7 @@ You can also or alternatively compile ge
 -DUSE_MY_LOCALE (when ../gdtoa.a is compiled with -DUSE_LOCALE)
 to test multi-byte decimal points.
 
-If in the parent directory, you have sucessfully invoked "make Printf"
+If in the parent directory, you have successfully invoked "make Printf"
 to add a "printf" (called Printf and accessed via ../stdio1.h), then
 here you can use "make pf_test" and (if you have both a 64-bit long
 double and a 113-bit "quad" double type) "make pf_testLq" for a brief

Index: src/libexec/identd/identd.c
diff -u src/libexec/identd/identd.c:1.36 src/libexec/identd/identd.c:1.37
--- src/libexec/identd/identd.c:1.36	Sat Dec 10 22:08:13 2016
+++ src/libexec/identd/identd.c	Thu Sep 16 21:29:41 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: identd.c,v 1.36 2016/12/10 22:08:13 christos Exp $ */
+/* $NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $ */
 
 /*
  * identd.c - TCP/IP Ident protocol server.
@@ -8,7 +8,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: identd.c,v 1.36 2016/12/10 22:08:13 christos Exp $");
+__RCSID("$NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $");
 
 #include 
 #include 
@@ -441,7 +441,7 @@ idhandle(int fd, const char *charset, co
 			forward(fd, (struct sockaddr *)_addr,
 			nat_lport, fport, lport)) {
 maybe_syslog(LOG_INFO,
-"Succesfully forwarded the request to %s",
+"Successfully forwarded the request to %s",
 gethost((struct sockaddr *)_addr));
 return 0;
 			}
@@ -796,7 +796,7 @@ sysctl_proxy_getuid(struct sockaddr_stor
 	return rc;
 }
 
-/* Forward ident queries. Returns 1 when succesful, or zero if not. */
+/* Forward ident queries. Returns 1 when successful, or zero if not. */
 static int
 forward(int fd, struct sockaddr *nat_addr, int nat_lport, int fport, int lport)
 {

Index: 

CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 22:19:12 UTC 2021

Modified Files:
src/lib/libp2k: p2k.3
src/lib/libresolv: dst_api.c
src/lib/librumpclient: rumpclient.c
src/lib/libukfs: ukfs.3
src/sys/arch/arm/omap: omap_edma.c
src/sys/arch/arm/ti: ti_edma.c
src/sys/arch/shark/shark: i8042.c
src/sys/dev: smbios.c
src/sys/dev/ic: aic79xx.c aic7xxx.c
src/sys/dev/usb: umass.c
src/sys/fs/nilfs: nilfs_vfsops.c
src/sys/fs/udf: udf_subr.c udf_vfsops.c
src/sys/kern: kern_physio.c
src/sys/net: bpf.c
src/sys/stand/efiboot: smbios.c
src/tests/dev/md: h_mdserv.c
src/tests/fs/puffs: t_fuzz.c
src/tests/fs/puffs/h_dtfs: dtfs_subr.c
src/tests/lib/librumphijack: h_client.c
src/tests/sbin/fsck_ffs: t_enable_quotas.sh
src/usr.sbin/syslogd: tls.c

Log Message:
fix typos in word "successful".


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libp2k/p2k.3
cvs rdiff -u -r1.3 -r1.4 src/lib/libresolv/dst_api.c
cvs rdiff -u -r1.68 -r1.69 src/lib/librumpclient/rumpclient.c
cvs rdiff -u -r1.16 -r1.17 src/lib/libukfs/ukfs.3
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/omap/omap_edma.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/ti/ti_edma.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/shark/shark/i8042.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/smbios.c
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/aic79xx.c
cvs rdiff -u -r1.143 -r1.144 src/sys/dev/ic/aic7xxx.c
cvs rdiff -u -r1.185 -r1.186 src/sys/dev/usb/umass.c
cvs rdiff -u -r1.26 -r1.27 src/sys/fs/nilfs/nilfs_vfsops.c
cvs rdiff -u -r1.157 -r1.158 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.81 -r1.82 src/sys/fs/udf/udf_vfsops.c
cvs rdiff -u -r1.98 -r1.99 src/sys/kern/kern_physio.c
cvs rdiff -u -r1.241 -r1.242 src/sys/net/bpf.c
cvs rdiff -u -r1.3 -r1.4 src/sys/stand/efiboot/smbios.c
cvs rdiff -u -r1.4 -r1.5 src/tests/dev/md/h_mdserv.c
cvs rdiff -u -r1.6 -r1.7 src/tests/fs/puffs/t_fuzz.c
cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_subr.c
cvs rdiff -u -r1.9 -r1.10 src/tests/lib/librumphijack/h_client.c
cvs rdiff -u -r1.2 -r1.3 src/tests/sbin/fsck_ffs/t_enable_quotas.sh
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/syslogd/tls.c

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



CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 22:19:12 UTC 2021

Modified Files:
src/lib/libp2k: p2k.3
src/lib/libresolv: dst_api.c
src/lib/librumpclient: rumpclient.c
src/lib/libukfs: ukfs.3
src/sys/arch/arm/omap: omap_edma.c
src/sys/arch/arm/ti: ti_edma.c
src/sys/arch/shark/shark: i8042.c
src/sys/dev: smbios.c
src/sys/dev/ic: aic79xx.c aic7xxx.c
src/sys/dev/usb: umass.c
src/sys/fs/nilfs: nilfs_vfsops.c
src/sys/fs/udf: udf_subr.c udf_vfsops.c
src/sys/kern: kern_physio.c
src/sys/net: bpf.c
src/sys/stand/efiboot: smbios.c
src/tests/dev/md: h_mdserv.c
src/tests/fs/puffs: t_fuzz.c
src/tests/fs/puffs/h_dtfs: dtfs_subr.c
src/tests/lib/librumphijack: h_client.c
src/tests/sbin/fsck_ffs: t_enable_quotas.sh
src/usr.sbin/syslogd: tls.c

Log Message:
fix typos in word "successful".


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libp2k/p2k.3
cvs rdiff -u -r1.3 -r1.4 src/lib/libresolv/dst_api.c
cvs rdiff -u -r1.68 -r1.69 src/lib/librumpclient/rumpclient.c
cvs rdiff -u -r1.16 -r1.17 src/lib/libukfs/ukfs.3
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/omap/omap_edma.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/ti/ti_edma.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/shark/shark/i8042.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/smbios.c
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/aic79xx.c
cvs rdiff -u -r1.143 -r1.144 src/sys/dev/ic/aic7xxx.c
cvs rdiff -u -r1.185 -r1.186 src/sys/dev/usb/umass.c
cvs rdiff -u -r1.26 -r1.27 src/sys/fs/nilfs/nilfs_vfsops.c
cvs rdiff -u -r1.157 -r1.158 src/sys/fs/udf/udf_subr.c
cvs rdiff -u -r1.81 -r1.82 src/sys/fs/udf/udf_vfsops.c
cvs rdiff -u -r1.98 -r1.99 src/sys/kern/kern_physio.c
cvs rdiff -u -r1.241 -r1.242 src/sys/net/bpf.c
cvs rdiff -u -r1.3 -r1.4 src/sys/stand/efiboot/smbios.c
cvs rdiff -u -r1.4 -r1.5 src/tests/dev/md/h_mdserv.c
cvs rdiff -u -r1.6 -r1.7 src/tests/fs/puffs/t_fuzz.c
cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_subr.c
cvs rdiff -u -r1.9 -r1.10 src/tests/lib/librumphijack/h_client.c
cvs rdiff -u -r1.2 -r1.3 src/tests/sbin/fsck_ffs/t_enable_quotas.sh
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/syslogd/tls.c

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

Modified files:

Index: src/lib/libp2k/p2k.3
diff -u src/lib/libp2k/p2k.3:1.10 src/lib/libp2k/p2k.3:1.11
--- src/lib/libp2k/p2k.3:1.10	Fri Jan  7 16:02:32 2011
+++ src/lib/libp2k/p2k.3	Thu Sep 16 22:19:10 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: p2k.3,v 1.10 2011/01/07 16:02:32 pooka Exp $
+.\" $NetBSD: p2k.3,v 1.11 2021/09/16 22:19:10 andvar Exp $
 .\"
 .\" Copyright (c) 2008 Antti Kantee.  All rights reserved.
 .\"
@@ -70,7 +70,7 @@ It can therefore be used to mount and ru
 a userspace daemon.
 .Pp
 Calling the library interface function mounts the file system and,
-if succesful, starts handling requests.
+if successful, starts handling requests.
 The parameters are handled by
 .Fn ukfs_mount
 (see

Index: src/lib/libresolv/dst_api.c
diff -u src/lib/libresolv/dst_api.c:1.3 src/lib/libresolv/dst_api.c:1.4
--- src/lib/libresolv/dst_api.c:1.3	Fri Nov 16 02:16:38 2012
+++ src/lib/libresolv/dst_api.c	Thu Sep 16 22:19:10 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: dst_api.c,v 1.3 2012/11/16 02:16:38 christos Exp $	*/
+/*	$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $	*/
 
 /*
  * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.
@@ -40,7 +40,7 @@
 #if 0
 static const char rcsid[] = "Header: /proj/cvs/prod/libbind/dst/dst_api.c,v 1.17 2007/09/24 17:18:25 each Exp ";
 #else
-__RCSID("$NetBSD: dst_api.c,v 1.3 2012/11/16 02:16:38 christos Exp $");
+__RCSID("$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $");
 #endif
 
 
@@ -240,7 +240,7 @@ dst_compare_keys(const DST_KEY *key1, co
  *	  The location to which the signature will be written.
  *	sig_len Length of the signature field in bytes.
  * Return
- *	 0  Successfull INIT or Update operation
+ *	 0  Successful INIT or Update operation
  *	0  success FINAL (sign) operation
  *	0  failure
  */

Index: src/lib/librumpclient/rumpclient.c
diff -u src/lib/librumpclient/rumpclient.c:1.68 src/lib/librumpclient/rumpclient.c:1.69
--- src/lib/librumpclient/rumpclient.c:1.68	Sat Sep 11 14:23:04 2021
+++ src/lib/librumpclient/rumpclient.c	Thu Sep 16 22:19:10 2021
@@ -1,4 +1,4 @@
-/*  $NetBSD: rumpclient.c,v 1.68 2021/09/11 14:23:04 christos Exp $	*/
+/*  $NetBSD: rumpclient.c,v 1.69 2021/09/16 22:19:10 andvar Exp $	*/
 
 /*
  * Copyright (c) 2010, 2011 Antti Kantee.  All Rights Reserved.
@@ -50,7 +50,7 @@
 #define USE_SIGNALFD
 #endif
 
-__RCSID("$NetBSD: rumpclient.c,v 1.68 2021/09/11 14:23:04 christos Exp $");
+__RCSID("$NetBSD: rumpclient.c,v 1.69 2021/09/16 22:19:10 andvar Exp $");
 
 #include 
 #include 
@@ -200,7 +200,7 @@ send_with_recon(struct spclient *spc, 

CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 20:17:48 UTC 2021

Modified Files:
src/lib/libc/resolv: res_debug.c
src/sys/arch/acorn32/acorn32: rpc_machdep.c
src/sys/arch/acorn32/eb7500atx: eb7500atx_machdep.c
src/sys/arch/acorn32/podulebus: sbicreg.h
src/sys/arch/alpha/pci: pci_machdep.c
src/sys/arch/amiga/dev: sbicreg.h
src/sys/arch/atari/atari: le_bus.c
src/sys/arch/evbarm/stand: Makefile
src/sys/arch/i386/stand/lib/netif: 3c509.h
src/sys/arch/mips/rmi: rmixl_obio_el_space.c
src/sys/arch/mvme68k/dev: sbicreg.h
src/sys/arch/xen/include: i82489var.h
src/sys/dev/pci: if_bge.c
src/sys/net: if.c
src/sys/nfs: nfs_serv.c
src/sys/sys: flashio.h

Log Message:
fix various typos, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/resolv/res_debug.c
cvs rdiff -u -r1.99 -r1.100 src/sys/arch/acorn32/acorn32/rpc_machdep.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/acorn32/podulebus/sbicreg.h
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/alpha/pci/pci_machdep.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/amiga/dev/sbicreg.h
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/atari/atari/le_bus.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/evbarm/stand/Makefile
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/stand/lib/netif/3c509.h
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/mips/rmi/rmixl_obio_el_space.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mvme68k/dev/sbicreg.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/xen/include/i82489var.h
cvs rdiff -u -r1.348 -r1.349 src/sys/dev/pci/if_bge.c
cvs rdiff -u -r1.487 -r1.488 src/sys/net/if.c
cvs rdiff -u -r1.181 -r1.182 src/sys/nfs/nfs_serv.c
cvs rdiff -u -r1.4 -r1.5 src/sys/sys/flashio.h

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



CVS commit: src

2021-09-16 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Sep 16 20:17:48 UTC 2021

Modified Files:
src/lib/libc/resolv: res_debug.c
src/sys/arch/acorn32/acorn32: rpc_machdep.c
src/sys/arch/acorn32/eb7500atx: eb7500atx_machdep.c
src/sys/arch/acorn32/podulebus: sbicreg.h
src/sys/arch/alpha/pci: pci_machdep.c
src/sys/arch/amiga/dev: sbicreg.h
src/sys/arch/atari/atari: le_bus.c
src/sys/arch/evbarm/stand: Makefile
src/sys/arch/i386/stand/lib/netif: 3c509.h
src/sys/arch/mips/rmi: rmixl_obio_el_space.c
src/sys/arch/mvme68k/dev: sbicreg.h
src/sys/arch/xen/include: i82489var.h
src/sys/dev/pci: if_bge.c
src/sys/net: if.c
src/sys/nfs: nfs_serv.c
src/sys/sys: flashio.h

Log Message:
fix various typos, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/resolv/res_debug.c
cvs rdiff -u -r1.99 -r1.100 src/sys/arch/acorn32/acorn32/rpc_machdep.c
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/acorn32/podulebus/sbicreg.h
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/alpha/pci/pci_machdep.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/amiga/dev/sbicreg.h
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/atari/atari/le_bus.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/evbarm/stand/Makefile
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/stand/lib/netif/3c509.h
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/mips/rmi/rmixl_obio_el_space.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mvme68k/dev/sbicreg.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/xen/include/i82489var.h
cvs rdiff -u -r1.348 -r1.349 src/sys/dev/pci/if_bge.c
cvs rdiff -u -r1.487 -r1.488 src/sys/net/if.c
cvs rdiff -u -r1.181 -r1.182 src/sys/nfs/nfs_serv.c
cvs rdiff -u -r1.4 -r1.5 src/sys/sys/flashio.h

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

Modified files:

Index: src/lib/libc/resolv/res_debug.c
diff -u src/lib/libc/resolv/res_debug.c:1.15 src/lib/libc/resolv/res_debug.c:1.16
--- src/lib/libc/resolv/res_debug.c:1.15	Thu Dec 13 08:45:29 2018
+++ src/lib/libc/resolv/res_debug.c	Thu Sep 16 20:17:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: res_debug.c,v 1.15 2018/12/13 08:45:29 maya Exp $	*/
+/*	$NetBSD: res_debug.c,v 1.16 2021/09/16 20:17:46 andvar Exp $	*/
 
 /*
  * Portions Copyright (C) 2004, 2005, 2008, 2009  Internet Systems Consortium, Inc. ("ISC")
@@ -97,7 +97,7 @@
 static const char sccsid[] = "@(#)res_debug.c	8.1 (Berkeley) 6/4/93";
 static const char rcsid[] = "Id: res_debug.c,v 1.19 2009/02/26 11:20:20 tbox Exp";
 #else
-__RCSID("$NetBSD: res_debug.c,v 1.15 2018/12/13 08:45:29 maya Exp $");
+__RCSID("$NetBSD: res_debug.c,v 1.16 2021/09/16 20:17:46 andvar Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -509,7 +509,7 @@ const struct res_sym __p_type_syms[] = {
 	{ns_t_naptr,	"NAPTR",	"naptr"},
 	{ns_t_kx,	"KX",		"key exchange"},
 	{ns_t_cert,	"CERT",		"certificate"},
-	{ns_t_a6,	"A",		"IPv6 address (experminental)"},
+	{ns_t_a6,	"A",		"IPv6 address (experimental)"},
 	{ns_t_dname,	"DNAME",	"non-terminal redirection"},
 	{ns_t_opt,	"OPT",		"opt"},
 	{ns_t_apl,	"apl",		"apl"},
@@ -680,7 +680,7 @@ p_option(u_long option) {
 	case RES_DEBUG:		return "debug";
 	case RES_AAONLY:	return "aaonly(unimpl)";
 	case RES_USEVC:		return "usevc";
-	case RES_PRIMARY:	return "primry(unimpl)";
+	case RES_PRIMARY:	return "primary(unimpl)";
 	case RES_IGNTC:		return "igntc";
 	case RES_RECURSE:	return "recurs";
 	case RES_DEFNAMES:	return "defnam";

Index: src/sys/arch/acorn32/acorn32/rpc_machdep.c
diff -u src/sys/arch/acorn32/acorn32/rpc_machdep.c:1.99 src/sys/arch/acorn32/acorn32/rpc_machdep.c:1.100
--- src/sys/arch/acorn32/acorn32/rpc_machdep.c:1.99	Tue Aug 17 22:00:26 2021
+++ src/sys/arch/acorn32/acorn32/rpc_machdep.c	Thu Sep 16 20:17:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: rpc_machdep.c,v 1.99 2021/08/17 22:00:26 andvar Exp $	*/
+/*	$NetBSD: rpc_machdep.c,v 1.100 2021/09/16 20:17:46 andvar Exp $	*/
 
 /*
  * Copyright (c) 2000-2002 Reinoud Zandijk.
@@ -54,7 +54,7 @@
 
 #include 
 
-__KERNEL_RCSID(0, "$NetBSD: rpc_machdep.c,v 1.99 2021/08/17 22:00:26 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rpc_machdep.c,v 1.100 2021/09/16 20:17:46 andvar Exp $");
 
 #include 
 #include 
@@ -405,7 +405,7 @@ initarm(void *cookie)
 	 */
 	set_cpufuncs();
 
-	/* canonicalise the boot configuration structure to alow versioning */
+	/* canonicalise the boot configuration structure to allow versioning */
 	canonicalise_bootconfig(, raw_bootconf);
 	booted_kernel = bootconfig.kernelname;
 

Index: src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c
diff -u src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c:1.35 src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c:1.36
--- src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c:1.35	Tue Aug 17 22:00:26 2021
+++ src/sys/arch/acorn32/eb7500atx/eb7500atx_machdep.c	Thu Sep 16 20:17:46 2021

CVS commit: src

2021-09-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep 17 08:13:06 UTC 2021

Modified Files:
src/lib/libperfuse: fuse.h
src/sys/arch/arm/at91: at91rm9200reg.h at91sam9260reg.h
at91sam9261reg.h
src/sys/arch/arm/ep93xx: ep93xxreg.h
src/sys/arch/arm/ixp12x0: ixp12x0reg.h
src/sys/arch/mips/cavium/dev: octeon_pko.c
src/sys/dev/marvell: if_mvxpe.c

Log Message:
some love to double letters (in comments).


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/libperfuse/fuse.h
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/at91/at91rm9200reg.h \
src/sys/arch/arm/at91/at91sam9261reg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/at91/at91sam9260reg.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/ep93xx/ep93xxreg.h
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/ixp12x0/ixp12x0reg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/mips/cavium/dev/octeon_pko.c
cvs rdiff -u -r1.35 -r1.36 src/sys/dev/marvell/if_mvxpe.c

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



CVS commit: src

2021-09-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Sep 17 08:13:06 UTC 2021

Modified Files:
src/lib/libperfuse: fuse.h
src/sys/arch/arm/at91: at91rm9200reg.h at91sam9260reg.h
at91sam9261reg.h
src/sys/arch/arm/ep93xx: ep93xxreg.h
src/sys/arch/arm/ixp12x0: ixp12x0reg.h
src/sys/arch/mips/cavium/dev: octeon_pko.c
src/sys/dev/marvell: if_mvxpe.c

Log Message:
some love to double letters (in comments).


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/libperfuse/fuse.h
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/at91/at91rm9200reg.h \
src/sys/arch/arm/at91/at91sam9261reg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/at91/at91sam9260reg.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/ep93xx/ep93xxreg.h
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/ixp12x0/ixp12x0reg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/mips/cavium/dev/octeon_pko.c
cvs rdiff -u -r1.35 -r1.36 src/sys/dev/marvell/if_mvxpe.c

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

Modified files:

Index: src/lib/libperfuse/fuse.h
diff -u src/lib/libperfuse/fuse.h:1.7 src/lib/libperfuse/fuse.h:1.8
--- src/lib/libperfuse/fuse.h:1.7	Tue Oct 18 17:56:31 2016
+++ src/lib/libperfuse/fuse.h	Fri Sep 17 08:13:06 2021
@@ -1,4 +1,4 @@
-/*  $NetBSD: fuse.h,v 1.7 2016/10/18 17:56:31 christos Exp $ */
+/*  $NetBSD: fuse.h,v 1.8 2021/09/17 08:13:06 andvar Exp $ */
 
 /*-
  *  Copyright (c) 2010 Emmanuel Dreyfus. All rights reserved.
@@ -453,7 +453,7 @@ struct fuse_fallocate_in {
 };
 
 #if 0 /* Duplicated in perfuse.h to avoid making fuse.h public */
-/* Send from kernel to proces */
+/* Send from kernel to process */
 struct fuse_in_header {
 	uint32_t	len;
 	uint32_t	opcode;

Index: src/sys/arch/arm/at91/at91rm9200reg.h
diff -u src/sys/arch/arm/at91/at91rm9200reg.h:1.3 src/sys/arch/arm/at91/at91rm9200reg.h:1.4
--- src/sys/arch/arm/at91/at91rm9200reg.h:1.3	Fri Oct 23 06:53:13 2009
+++ src/sys/arch/arm/at91/at91rm9200reg.h	Fri Sep 17 08:13:06 2021
@@ -1,5 +1,5 @@
-/*	$Id: at91rm9200reg.h,v 1.3 2009/10/23 06:53:13 snj Exp $	*/
-/*	$NetBSD: at91rm9200reg.h,v 1.3 2009/10/23 06:53:13 snj Exp $	*/
+/*	$Id: at91rm9200reg.h,v 1.4 2021/09/17 08:13:06 andvar Exp $	*/
+/*	$NetBSD: at91rm9200reg.h,v 1.4 2021/09/17 08:13:06 andvar Exp $	*/
 
 /*
  * Copyright (c) 2007 Embedtronics Oy
@@ -76,7 +76,7 @@
  *
  * Some device registers are statically mapped on upper address region.
  * because we have to access them before bus_space is initialized.
- * Most devices are dynamicaly mapped by bus_space_map(). In this case,
+ * Most devices are dynamically mapped by bus_space_map(). In this case,
  * the actual mapped (virtual) address are not cared by device drivers.
  */
 
Index: src/sys/arch/arm/at91/at91sam9261reg.h
diff -u src/sys/arch/arm/at91/at91sam9261reg.h:1.3 src/sys/arch/arm/at91/at91sam9261reg.h:1.4
--- src/sys/arch/arm/at91/at91sam9261reg.h:1.3	Fri Oct 23 06:53:13 2009
+++ src/sys/arch/arm/at91/at91sam9261reg.h	Fri Sep 17 08:13:06 2021
@@ -1,5 +1,5 @@
-/*	$Id: at91sam9261reg.h,v 1.3 2009/10/23 06:53:13 snj Exp $	*/
-/*	$NetBSD: at91sam9261reg.h,v 1.3 2009/10/23 06:53:13 snj Exp $	*/
+/*	$Id: at91sam9261reg.h,v 1.4 2021/09/17 08:13:06 andvar Exp $	*/
+/*	$NetBSD: at91sam9261reg.h,v 1.4 2021/09/17 08:13:06 andvar Exp $	*/
 
 /*
  * Copyright (c) 2007 Embedtronics Oy
@@ -84,7 +84,7 @@
  *
  * Some device registers are statically mapped on upper address region.
  * because we have to access them before bus_space is initialized.
- * Most devices are dynamicaly mapped by bus_space_map(). In this case,
+ * Most devices are dynamically mapped by bus_space_map(). In this case,
  * the actual mapped (virtual) address are not cared by device drivers.
  */
 

Index: src/sys/arch/arm/at91/at91sam9260reg.h
diff -u src/sys/arch/arm/at91/at91sam9260reg.h:1.1 src/sys/arch/arm/at91/at91sam9260reg.h:1.2
--- src/sys/arch/arm/at91/at91sam9260reg.h:1.1	Fri Nov  4 17:20:54 2011
+++ src/sys/arch/arm/at91/at91sam9260reg.h	Fri Sep 17 08:13:06 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: at91sam9260reg.h,v 1.1 2011/11/04 17:20:54 aymeric Exp $	*/
+/*	$NetBSD: at91sam9260reg.h,v 1.2 2021/09/17 08:13:06 andvar Exp $	*/
 
 /*
  * Copyright (c) 2007 Embedtronics Oy
@@ -84,7 +84,7 @@
  *
  * Some device registers are statically mapped on upper address region.
  * because we have to access them before bus_space is initialized.
- * Most devices are dynamicaly mapped by bus_space_map(). In this case,
+ * Most devices are dynamically mapped by bus_space_map(). In this case,
  * the actual mapped (virtual) address are not cared by device drivers.
  */
 

Index: src/sys/arch/arm/ep93xx/ep93xxreg.h
diff -u src/sys/arch/arm/ep93xx/ep93xxreg.h:1.7 src/sys/arch/arm/ep93xx/ep93xxreg.h:1.8
--- src/sys/arch/arm/ep93xx/ep93xxreg.h:1.7	Fri Oct 23 00:39:30 2009
+++ src/sys/arch/arm/ep93xx/ep93xxreg.h	Fri Sep 17 08:13:06 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ep93xxreg.h,v 1.7 2009/10/23 

CVS commit: src

2021-09-11 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Sep 11 21:30:46 UTC 2021

Modified Files:
src/lib/libperfuse: ops.c
src/share/mk: bsd.sys.mk
src/sys/arch/alpha/pci: cia_pci.c
src/sys/dev/marvell: mvxpbmvar.h
src/usr.sbin/sysinst: partitions.h

Log Message:
sysinst/partitions.h: fix typos comments, also fix same typos in other files.


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/lib/libperfuse/ops.c
cvs rdiff -u -r1.306 -r1.307 src/share/mk/bsd.sys.mk
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/alpha/pci/cia_pci.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/marvell/mvxpbmvar.h
cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/sysinst/partitions.h

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



CVS commit: src

2021-09-11 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Sep 11 21:30:46 UTC 2021

Modified Files:
src/lib/libperfuse: ops.c
src/share/mk: bsd.sys.mk
src/sys/arch/alpha/pci: cia_pci.c
src/sys/dev/marvell: mvxpbmvar.h
src/usr.sbin/sysinst: partitions.h

Log Message:
sysinst/partitions.h: fix typos comments, also fix same typos in other files.


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/lib/libperfuse/ops.c
cvs rdiff -u -r1.306 -r1.307 src/share/mk/bsd.sys.mk
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/alpha/pci/cia_pci.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/marvell/mvxpbmvar.h
cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/sysinst/partitions.h

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

Modified files:

Index: src/lib/libperfuse/ops.c
diff -u src/lib/libperfuse/ops.c:1.88 src/lib/libperfuse/ops.c:1.89
--- src/lib/libperfuse/ops.c:1.88	Mon Sep 23 12:00:57 2019
+++ src/lib/libperfuse/ops.c	Sat Sep 11 21:30:46 2021
@@ -1,4 +1,4 @@
-/*  $NetBSD: ops.c,v 1.88 2019/09/23 12:00:57 christos Exp $ */
+/*  $NetBSD: ops.c,v 1.89 2021/09/11 21:30:46 andvar Exp $ */
 
 /*-
  *  Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@@ -697,7 +697,7 @@ fuse_to_dirent(struct puffs_usermount *p
 		 * fd->off is not the offset, it is an opaque cookie
 		 * given by the filesystem to keep state across multiple
 		 * readdir() operation.
-		 * Use record alignement instead.
+		 * Use record alignment instead.
 		 */
 		len = FUSE_DIRENT_ALIGN(sizeof(*fd) + fd->namelen);
 #ifdef PERFUSE_DEBUG

Index: src/share/mk/bsd.sys.mk
diff -u src/share/mk/bsd.sys.mk:1.306 src/share/mk/bsd.sys.mk:1.307
--- src/share/mk/bsd.sys.mk:1.306	Mon Apr 26 00:38:23 2021
+++ src/share/mk/bsd.sys.mk	Sat Sep 11 21:30:46 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.sys.mk,v 1.306 2021/04/26 00:38:23 christos Exp $
+#	$NetBSD: bsd.sys.mk,v 1.307 2021/09/11 21:30:46 andvar Exp $
 #
 # Build definitions used for NetBSD source tree builds.
 
@@ -172,7 +172,7 @@ CPPFLAGS+=	-D_FORTIFY_SOURCE=2
 COPTS+=	-fstack-protector -Wstack-protector 
 
 # GCC 4.8 on m68k erroneously does not protect functions with
-# variables needing special alignement, see
+# variables needing special alignment, see
 #	http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59674
 # (the underlying issue for sh and vax may be different, needs more
 # investigation, symptoms are similar but for different sources)

Index: src/sys/arch/alpha/pci/cia_pci.c
diff -u src/sys/arch/alpha/pci/cia_pci.c:1.35 src/sys/arch/alpha/pci/cia_pci.c:1.36
--- src/sys/arch/alpha/pci/cia_pci.c:1.35	Fri Jun 25 03:45:59 2021
+++ src/sys/arch/alpha/pci/cia_pci.c	Sat Sep 11 21:30:46 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: cia_pci.c,v 1.35 2021/06/25 03:45:59 thorpej Exp $ */
+/* $NetBSD: cia_pci.c,v 1.36 2021/09/11 21:30:46 andvar Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -29,7 +29,7 @@
 
 #include 			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: cia_pci.c,v 1.35 2021/06/25 03:45:59 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cia_pci.c,v 1.36 2021/09/11 21:30:46 andvar Exp $");
 
 #include 
 #include 
@@ -72,7 +72,7 @@ cia_conf_read(void *cpv, pcitag_t tag, i
 	/*
 	 * Some (apparently-common) revisions of EB164 and AlphaStation
 	 * firmware do the Wrong thing with PCI master and target aborts,
-	 * which are caused by accesing the configuration space of devices
+	 * which are caused by accessing the configuration space of devices
 	 * that don't exist (for example).
 	 *
 	 * To work around this, we clear the CIA error register's PCI

Index: src/sys/dev/marvell/mvxpbmvar.h
diff -u src/sys/dev/marvell/mvxpbmvar.h:1.2 src/sys/dev/marvell/mvxpbmvar.h:1.3
--- src/sys/dev/marvell/mvxpbmvar.h:1.2	Mon Aug  2 12:56:24 2021
+++ src/sys/dev/marvell/mvxpbmvar.h	Sat Sep 11 21:30:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: mvxpbmvar.h,v 1.2 2021/08/02 12:56:24 andvar Exp $	*/
+/*	$NetBSD: mvxpbmvar.h,v 1.3 2021/09/11 21:30:46 andvar Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -34,7 +34,7 @@
 #define MVXPBM_UNIT_MAX		1
 
 /*
- * Buffer alignement
+ * Buffer alignment
  */
 #define MVXPBM_NUM_SLOTS	2048	/* minimum number of slots */
 #define MVXPBM_PACKET_SIZE	2000	/* minimum packet size */

Index: src/usr.sbin/sysinst/partitions.h
diff -u src/usr.sbin/sysinst/partitions.h:1.23 src/usr.sbin/sysinst/partitions.h:1.24
--- src/usr.sbin/sysinst/partitions.h:1.23	Sat Sep 11 20:28:06 2021
+++ src/usr.sbin/sysinst/partitions.h	Sat Sep 11 21:30:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: partitions.h,v 1.23 2021/09/11 20:28:06 andvar Exp $	*/
+/*	$NetBSD: partitions.h,v 1.24 2021/09/11 21:30:46 andvar Exp $	*/
 
 /*
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
  * details.
  *
  * NOTE:
- *  - all sector numbers, alignement and sizes are in units of the
+ *  - all sector numbers, alignment and sizes are in 

CVS commit: src

2021-09-11 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Sep 11 20:28:06 UTC 2021

Modified Files:
src/lib/libc/gen: randomid.c
src/lib/libc/include: namespace.h
src/lib/libpuffs: null.c
src/sys/arch/acorn32/podulebus: podulebus.c
src/sys/arch/arm/rockchip: rk_tsadc.c
src/sys/arch/cesfic/dev: zs.c
src/sys/arch/cobalt/dev: zs.c
src/sys/arch/ews4800mips/dev: zs.c
src/sys/arch/mac68k/dev: zs.c
src/sys/arch/macppc/dev: zs.c
src/sys/arch/mipsco/obio: zs.c
src/sys/arch/mvme68k/dev: zs.c
src/sys/arch/news68k/dev: zs.c
src/sys/arch/newsmips/dev: zs.c
src/sys/arch/next68k/dev: zs.c
src/sys/arch/powerpc/booke: e500_intr.c
src/sys/arch/powerpc/include/booke: vmparam.h
src/sys/arch/powerpc/include/oea: vmparam.h
src/sys/arch/sgimips/dev: zs.c
src/sys/arch/sparc/dev: sx.c zs.c
src/sys/arch/sparc64/dev: zs.c
src/sys/arch/sun2/dev: zs.c
src/sys/arch/sun3/dev: zs.c
src/sys/arch/x68k/dev: zs.c
src/sys/conf: Makefile.kern.inc
src/sys/dev: mm.h
src/sys/dev/ic: dm9000.c dwc_gmac.c isp.c ispvar.h
src/sys/dev/tc: zs_ioasic.c
src/tests/usr.bin/patch: t_patch.sh
src/usr.bin/config: config.5
src/usr.bin/kdump: mksiginfos
src/usr.bin/tip: acu.c
src/usr.sbin/sysinst: README.md_defs partitions.c partitions.h

Log Message:
Add missing double p and d for stopped and overriden accordingly.
Fix few more typos along the way, mainly in copy-pasted comments.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libc/gen/randomid.c
cvs rdiff -u -r1.201 -r1.202 src/lib/libc/include/namespace.h
cvs rdiff -u -r1.35 -r1.36 src/lib/libpuffs/null.c
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/acorn32/podulebus/podulebus.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/rockchip/rk_tsadc.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/cesfic/dev/zs.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/cobalt/dev/zs.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/ews4800mips/dev/zs.c
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/mac68k/dev/zs.c
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/macppc/dev/zs.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/mipsco/obio/zs.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/mvme68k/dev/zs.c
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/news68k/dev/zs.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/newsmips/dev/zs.c
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/next68k/dev/zs.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/powerpc/booke/e500_intr.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/powerpc/include/booke/vmparam.h
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/powerpc/include/oea/vmparam.h
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/sgimips/dev/zs.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc/dev/sx.c
cvs rdiff -u -r1.123 -r1.124 src/sys/arch/sparc/dev/zs.c
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/sparc64/dev/zs.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/sun2/dev/zs.c
cvs rdiff -u -r1.90 -r1.91 src/sys/arch/sun3/dev/zs.c
cvs rdiff -u -r1.46 -r1.47 src/sys/arch/x68k/dev/zs.c
cvs rdiff -u -r1.281 -r1.282 src/sys/conf/Makefile.kern.inc
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/mm.h
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ic/dm9000.c
cvs rdiff -u -r1.74 -r1.75 src/sys/dev/ic/dwc_gmac.c
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/ic/ispvar.h
cvs rdiff -u -r1.43 -r1.44 src/sys/dev/tc/zs_ioasic.c
cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/patch/t_patch.sh
cvs rdiff -u -r1.45 -r1.46 src/usr.bin/config/config.5
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/kdump/mksiginfos
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/tip/acu.c
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/sysinst/README.md_defs
cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/sysinst/partitions.c
cvs rdiff -u -r1.22 -r1.23 src/usr.sbin/sysinst/partitions.h

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



CVS commit: src

2021-09-11 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sat Sep 11 20:28:06 UTC 2021

Modified Files:
src/lib/libc/gen: randomid.c
src/lib/libc/include: namespace.h
src/lib/libpuffs: null.c
src/sys/arch/acorn32/podulebus: podulebus.c
src/sys/arch/arm/rockchip: rk_tsadc.c
src/sys/arch/cesfic/dev: zs.c
src/sys/arch/cobalt/dev: zs.c
src/sys/arch/ews4800mips/dev: zs.c
src/sys/arch/mac68k/dev: zs.c
src/sys/arch/macppc/dev: zs.c
src/sys/arch/mipsco/obio: zs.c
src/sys/arch/mvme68k/dev: zs.c
src/sys/arch/news68k/dev: zs.c
src/sys/arch/newsmips/dev: zs.c
src/sys/arch/next68k/dev: zs.c
src/sys/arch/powerpc/booke: e500_intr.c
src/sys/arch/powerpc/include/booke: vmparam.h
src/sys/arch/powerpc/include/oea: vmparam.h
src/sys/arch/sgimips/dev: zs.c
src/sys/arch/sparc/dev: sx.c zs.c
src/sys/arch/sparc64/dev: zs.c
src/sys/arch/sun2/dev: zs.c
src/sys/arch/sun3/dev: zs.c
src/sys/arch/x68k/dev: zs.c
src/sys/conf: Makefile.kern.inc
src/sys/dev: mm.h
src/sys/dev/ic: dm9000.c dwc_gmac.c isp.c ispvar.h
src/sys/dev/tc: zs_ioasic.c
src/tests/usr.bin/patch: t_patch.sh
src/usr.bin/config: config.5
src/usr.bin/kdump: mksiginfos
src/usr.bin/tip: acu.c
src/usr.sbin/sysinst: README.md_defs partitions.c partitions.h

Log Message:
Add missing double p and d for stopped and overriden accordingly.
Fix few more typos along the way, mainly in copy-pasted comments.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libc/gen/randomid.c
cvs rdiff -u -r1.201 -r1.202 src/lib/libc/include/namespace.h
cvs rdiff -u -r1.35 -r1.36 src/lib/libpuffs/null.c
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/acorn32/podulebus/podulebus.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/rockchip/rk_tsadc.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/cesfic/dev/zs.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/cobalt/dev/zs.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/ews4800mips/dev/zs.c
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/mac68k/dev/zs.c
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/macppc/dev/zs.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/mipsco/obio/zs.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/mvme68k/dev/zs.c
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/news68k/dev/zs.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/newsmips/dev/zs.c
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/next68k/dev/zs.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/powerpc/booke/e500_intr.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/powerpc/include/booke/vmparam.h
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/powerpc/include/oea/vmparam.h
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/sgimips/dev/zs.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc/dev/sx.c
cvs rdiff -u -r1.123 -r1.124 src/sys/arch/sparc/dev/zs.c
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/sparc64/dev/zs.c
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/sun2/dev/zs.c
cvs rdiff -u -r1.90 -r1.91 src/sys/arch/sun3/dev/zs.c
cvs rdiff -u -r1.46 -r1.47 src/sys/arch/x68k/dev/zs.c
cvs rdiff -u -r1.281 -r1.282 src/sys/conf/Makefile.kern.inc
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/mm.h
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ic/dm9000.c
cvs rdiff -u -r1.74 -r1.75 src/sys/dev/ic/dwc_gmac.c
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/ic/ispvar.h
cvs rdiff -u -r1.43 -r1.44 src/sys/dev/tc/zs_ioasic.c
cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/patch/t_patch.sh
cvs rdiff -u -r1.45 -r1.46 src/usr.bin/config/config.5
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/kdump/mksiginfos
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/tip/acu.c
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/sysinst/README.md_defs
cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/sysinst/partitions.c
cvs rdiff -u -r1.22 -r1.23 src/usr.sbin/sysinst/partitions.h

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

Modified files:

Index: src/lib/libc/gen/randomid.c
diff -u src/lib/libc/gen/randomid.c:1.14 src/lib/libc/gen/randomid.c:1.15
--- src/lib/libc/gen/randomid.c:1.14	Fri Dec 27 09:25:57 2019
+++ src/lib/libc/gen/randomid.c	Sat Sep 11 20:28:03 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 msaitoh Exp $	*/
+/*	$NetBSD: randomid.c,v 1.15 2021/09/11 20:28:03 andvar Exp $	*/
 /*	$KAME: ip6_id.c,v 1.8 2003/09/06 13:41:06 itojun Exp $	*/
 /*	$OpenBSD: ip_id.c,v 1.6 2002/03/15 18:19:52 millert Exp $	*/
 
@@ -76,14 +76,14 @@
  * The transaction id is determined by:
  * id[n] = seed xor (g^X[n] mod n)
  *
- * Effectivly the id is restricted to the lower (bits - 1) bits, thus
+ * Effectively the id is restricted to the lower (bits - 1) bits, thus
  * yielding two different cycles by toggling the msb on and off.
  * This avoids reuse issues caused by reseeding.
  */
 
 #include 
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 

CVS commit: src

2021-09-07 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Sep  7 13:24:46 UTC 2021

Modified Files:
src/common/lib/libprop: prop_string.c
src/sys/arch/hppa/hppa: intr.c
src/sys/arch/sparc64/sparc64: autoconf.c
src/sys/dev/audio: audio.c
src/sys/dev/sysmon: sysmon_envsys.c
src/sys/kern: sys_pipe.c
src/sys/netinet: dccp_tfrc.c sctp_output.c

Log Message:
s/aquire/acquire/ in comments, also one typo fix acqure->acquire.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/common/lib/libprop/prop_string.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/hppa/hppa/intr.c
cvs rdiff -u -r1.235 -r1.236 src/sys/arch/sparc64/sparc64/autoconf.c
cvs rdiff -u -r1.106 -r1.107 src/sys/dev/audio/audio.c
cvs rdiff -u -r1.147 -r1.148 src/sys/dev/sysmon/sysmon_envsys.c
cvs rdiff -u -r1.152 -r1.153 src/sys/kern/sys_pipe.c
cvs rdiff -u -r1.6 -r1.7 src/sys/netinet/dccp_tfrc.c
cvs rdiff -u -r1.24 -r1.25 src/sys/netinet/sctp_output.c

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



CVS commit: src

2021-09-07 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Sep  7 13:24:46 UTC 2021

Modified Files:
src/common/lib/libprop: prop_string.c
src/sys/arch/hppa/hppa: intr.c
src/sys/arch/sparc64/sparc64: autoconf.c
src/sys/dev/audio: audio.c
src/sys/dev/sysmon: sysmon_envsys.c
src/sys/kern: sys_pipe.c
src/sys/netinet: dccp_tfrc.c sctp_output.c

Log Message:
s/aquire/acquire/ in comments, also one typo fix acqure->acquire.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/common/lib/libprop/prop_string.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/hppa/hppa/intr.c
cvs rdiff -u -r1.235 -r1.236 src/sys/arch/sparc64/sparc64/autoconf.c
cvs rdiff -u -r1.106 -r1.107 src/sys/dev/audio/audio.c
cvs rdiff -u -r1.147 -r1.148 src/sys/dev/sysmon/sysmon_envsys.c
cvs rdiff -u -r1.152 -r1.153 src/sys/kern/sys_pipe.c
cvs rdiff -u -r1.6 -r1.7 src/sys/netinet/dccp_tfrc.c
cvs rdiff -u -r1.24 -r1.25 src/sys/netinet/sctp_output.c

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

Modified files:

Index: src/common/lib/libprop/prop_string.c
diff -u src/common/lib/libprop/prop_string.c:1.15 src/common/lib/libprop/prop_string.c:1.16
--- src/common/lib/libprop/prop_string.c:1.15	Sat Jun 20 00:16:50 2020
+++ src/common/lib/libprop/prop_string.c	Tue Sep  7 13:24:45 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: prop_string.c,v 1.15 2020/06/20 00:16:50 christos Exp $	*/
+/*	$NetBSD: prop_string.c,v 1.16 2021/09/07 13:24:45 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2020 The NetBSD Foundation, Inc.
@@ -146,7 +146,7 @@ _prop_string_free(prop_stack_t stack, pr
 		_PROP_MUTEX_LOCK(_prop_string_tree_mutex);
 		/*
 		 * Double-check the retain count now that we've
-		 * acqured the tree lock; holding this lock prevents
+		 * acquired the tree lock; holding this lock prevents
 		 * new retains from coming in by finding it in the
 		 * tree.
 		 */

Index: src/sys/arch/hppa/hppa/intr.c
diff -u src/sys/arch/hppa/hppa/intr.c:1.4 src/sys/arch/hppa/hppa/intr.c:1.5
--- src/sys/arch/hppa/hppa/intr.c:1.4	Thu Jul  1 22:57:45 2021
+++ src/sys/arch/hppa/hppa/intr.c	Tue Sep  7 13:24:45 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: intr.c,v 1.4 2021/07/01 22:57:45 macallan Exp $	*/
+/*	$NetBSD: intr.c,v 1.5 2021/09/07 13:24:45 andvar Exp $	*/
 /*	$OpenBSD: intr.c,v 1.27 2009/12/31 12:52:35 jsing Exp $	*/
 
 /*
@@ -35,7 +35,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.4 2021/07/01 22:57:45 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.5 2021/09/07 13:24:45 andvar Exp $");
 
 #define __MUTEX_PRIVATE
 
@@ -349,7 +349,7 @@ hppa_intr(struct trapframe *frame)
 	/*
 	 * If we interrupted in the middle of mutex_enter(), we must patch up
 	 * the lock owner value quickly if we got the interlock.  If any of the
-	 * interrupt handlers need to aquire the mutex, they could deadlock if
+	 * interrupt handlers need to acquire the mutex, they could deadlock if
 	 * the owner value is left unset.
 	 */
 	if (frame->tf_iisq_head == HPPA_SID_KERNEL &&

Index: src/sys/arch/sparc64/sparc64/autoconf.c
diff -u src/sys/arch/sparc64/sparc64/autoconf.c:1.235 src/sys/arch/sparc64/sparc64/autoconf.c:1.236
--- src/sys/arch/sparc64/sparc64/autoconf.c:1.235	Sat Aug 21 11:55:25 2021
+++ src/sys/arch/sparc64/sparc64/autoconf.c	Tue Sep  7 13:24:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.235 2021/08/21 11:55:25 andvar Exp $ */
+/*	$NetBSD: autoconf.c,v 1.236 2021/09/07 13:24:46 andvar Exp $ */
 
 /*
  * Copyright (c) 1996
@@ -48,7 +48,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.235 2021/08/21 11:55:25 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.236 2021/09/07 13:24:46 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -1457,7 +1457,7 @@ device_register_post_config(device_t dev
 
 		/*
 		 * If this is a FC-AL drive it will have
-		 * aquired its WWN device property by now,
+		 * acquired its WWN device property by now,
 		 * so we can properly match it.
 		 */
 		if (prop_dictionary_get_uint64(device_properties(dev),

Index: src/sys/dev/audio/audio.c
diff -u src/sys/dev/audio/audio.c:1.106 src/sys/dev/audio/audio.c:1.107
--- src/sys/dev/audio/audio.c:1.106	Sat Aug  7 16:19:09 2021
+++ src/sys/dev/audio/audio.c	Tue Sep  7 13:24:46 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: audio.c,v 1.106 2021/08/07 16:19:09 thorpej Exp $	*/
+/*	$NetBSD: audio.c,v 1.107 2021/09/07 13:24:46 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -138,7 +138,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.106 2021/08/07 16:19:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.107 2021/09/07 13:24:46 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "audio.h"
@@ -1645,7 +1645,7 @@ audio_track_waitio(struct audio_softc *s
 
 /*
  * Try to acquire track lock.
- * It doesn't block if the track lock is already aquired.
+ * It doesn't block if the track lock is already acquired.
 

CVS commit: src/tests/lib/libossaudio

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:43:56 UTC 2021

Modified Files:
src/tests/lib/libossaudio: t_ossaudio.c

Log Message:
s/suported/supported in comments


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libossaudio/t_ossaudio.c

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



CVS commit: src/tests/lib/libossaudio

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:43:56 UTC 2021

Modified Files:
src/tests/lib/libossaudio: t_ossaudio.c

Log Message:
s/suported/supported in comments


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libossaudio/t_ossaudio.c

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

Modified files:

Index: src/tests/lib/libossaudio/t_ossaudio.c
diff -u src/tests/lib/libossaudio/t_ossaudio.c:1.3 src/tests/lib/libossaudio/t_ossaudio.c:1.4
--- src/tests/lib/libossaudio/t_ossaudio.c:1.3	Sat Dec 26 15:28:52 2020
+++ src/tests/lib/libossaudio/t_ossaudio.c	Mon Aug  2 17:43:55 2021
@@ -250,7 +250,7 @@ ATF_TC_BODY(oss_dsp_init, tc)
 	 * and some unsupported sample rates... "best effort"
 	 */
 
-	/* closest suported rate is 1000 */
+	/* closest supported rate is 1000 */
 	rate = 900;
 	if (ioctl(fd, SNDCTL_DSP_SPEED, ) < 0)
 		atf_tc_fail("ioctl SNDCTL_DSP_SPEED (900) failed");
@@ -259,7 +259,7 @@ ATF_TC_BODY(oss_dsp_init, tc)
 	ATF_REQUIRE((fabs(900.0 - info.play.sample_rate) / 900.0) < 0.2);
 	ATF_REQUIRE_EQ(rate, (int)info.play.sample_rate);
 
-	/* closest suported rate is 192000 */
+	/* closest supported rate is 192000 */
 	rate = 197000;
 	if (ioctl(fd, SNDCTL_DSP_SPEED, ) < 0)
 		atf_tc_fail("ioctl SNDCTL_DSP_SPEED (197000) failed");



CVS commit: src/lib/librumpuser

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:45:10 UTC 2021

Modified Files:
src/lib/librumpuser: README.compileopts

Log Message:
fix typo in README.compileopts text.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/librumpuser/README.compileopts

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



CVS commit: src/lib/librumpuser

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:45:10 UTC 2021

Modified Files:
src/lib/librumpuser: README.compileopts

Log Message:
fix typo in README.compileopts text.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/librumpuser/README.compileopts

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

Modified files:

Index: src/lib/librumpuser/README.compileopts
diff -u src/lib/librumpuser/README.compileopts:1.1 src/lib/librumpuser/README.compileopts:1.2
--- src/lib/librumpuser/README.compileopts:1.1	Mon Jan 25 00:24:23 2016
+++ src/lib/librumpuser/README.compileopts	Mon Aug  2 17:45:10 2021
@@ -1,4 +1,4 @@
-$NetBSD: README.compileopts,v 1.1 2016/01/25 00:24:23 pooka Exp $
+$NetBSD: README.compileopts,v 1.2 2021/08/02 17:45:10 andvar Exp $
 
 This file describes compile-time options (make variables) for
 the rumpuser POSIX implementation.
@@ -12,7 +12,7 @@ Global options:
 values: pthread/none/fiber or 
 defval: 
 effect: Define the way threading is implemented in the rumpuser hypercall
-	implmentation.
+	implementation.
 	 - use default implementation (currently "pthread")
 	pthread - use pthreads to implement threading
 	none- do not support kernel threads at all



CVS commit: src/tests/lib/libc

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:41:07 UTC 2021

Modified Files:
src/tests/lib/libc/locale: t_sprintf.c t_strfmon.c t_toupper.c
src/tests/lib/libc/string: t_strcoll.c

Log Message:
s/diferent/different/


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/lib/libc/locale/t_sprintf.c
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/locale/t_strfmon.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/locale/t_toupper.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/string/t_strcoll.c

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



CVS commit: src/tests/lib/libc

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 17:41:07 UTC 2021

Modified Files:
src/tests/lib/libc/locale: t_sprintf.c t_strfmon.c t_toupper.c
src/tests/lib/libc/string: t_strcoll.c

Log Message:
s/diferent/different/


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/lib/libc/locale/t_sprintf.c
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/locale/t_strfmon.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/locale/t_toupper.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/string/t_strcoll.c

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

Modified files:

Index: src/tests/lib/libc/locale/t_sprintf.c
diff -u src/tests/lib/libc/locale/t_sprintf.c:1.7 src/tests/lib/libc/locale/t_sprintf.c:1.8
--- src/tests/lib/libc/locale/t_sprintf.c:1.7	Fri Dec  1 01:08:35 2017
+++ src/tests/lib/libc/locale/t_sprintf.c	Mon Aug  2 17:41:07 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_sprintf.c,v 1.7 2017/12/01 01:08:35 kre Exp $ */
+/* $NetBSD: t_sprintf.c,v 1.8 2021/08/02 17:41:07 andvar Exp $ */
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 #include 
 __COPYRIGHT("@(#) Copyright (c) 2017\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_sprintf.c,v 1.7 2017/12/01 01:08:35 kre Exp $");
+__RCSID("$NetBSD: t_sprintf.c,v 1.8 2021/08/02 17:41:07 andvar Exp $");
 
 #include 
 #include 
@@ -193,7 +193,7 @@ ATF_TC(sprintf);
 ATF_TC_HEAD(sprintf, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks sprintf %%'d and %%'f under diferent locales");
+		"Checks sprintf %%'d and %%'f under different locales");
 }
 ATF_TC_BODY(sprintf, tc)
 {
@@ -207,7 +207,7 @@ ATF_TC(strto);
 ATF_TC_HEAD(strto, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks strtol and strtod under diferent locales");
+		"Checks strtol and strtod under different locales");
 }
 ATF_TC_BODY(strto, tc)
 {
@@ -221,7 +221,7 @@ ATF_TC(sscanf);
 ATF_TC_HEAD(sscanf, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks sscanf under diferent locales");
+		"Checks sscanf under different locales");
 }
 ATF_TC_BODY(sscanf, tc)
 {

Index: src/tests/lib/libc/locale/t_strfmon.c
diff -u src/tests/lib/libc/locale/t_strfmon.c:1.2 src/tests/lib/libc/locale/t_strfmon.c:1.3
--- src/tests/lib/libc/locale/t_strfmon.c:1.2	Thu Dec  7 22:23:14 2017
+++ src/tests/lib/libc/locale/t_strfmon.c	Mon Aug  2 17:41:07 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_strfmon.c,v 1.2 2017/12/07 22:23:14 kre Exp $ */
+/* $NetBSD: t_strfmon.c,v 1.3 2021/08/02 17:41:07 andvar Exp $ */
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: t_strfmon.c,v 1.2 2017/12/07 22:23:14 kre Exp $");
+__RCSID("$NetBSD: t_strfmon.c,v 1.3 2021/08/02 17:41:07 andvar Exp $");
 
 #include 
 #include 
@@ -41,7 +41,7 @@ ATF_TC(strfmon);
 ATF_TC_HEAD(strfmon, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks strfmon_l under diferent locales");
+		"Checks strfmon_l under different locales");
 }
 
 ATF_TC_BODY(strfmon, tc)

Index: src/tests/lib/libc/locale/t_toupper.c
diff -u src/tests/lib/libc/locale/t_toupper.c:1.1 src/tests/lib/libc/locale/t_toupper.c:1.2
--- src/tests/lib/libc/locale/t_toupper.c:1.1	Tue May 30 02:11:03 2017
+++ src/tests/lib/libc/locale/t_toupper.c	Mon Aug  2 17:41:07 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_toupper.c,v 1.1 2017/05/30 02:11:03 perseant Exp $ */
+/* $NetBSD: t_toupper.c,v 1.2 2021/08/02 17:41:07 andvar Exp $ */
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 #include 
 __COPYRIGHT("@(#) Copyright (c) 2017\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_toupper.c,v 1.1 2017/05/30 02:11:03 perseant Exp $");
+__RCSID("$NetBSD: t_toupper.c,v 1.2 2021/08/02 17:41:07 andvar Exp $");
 
 #include 
 #include 
@@ -92,7 +92,7 @@ ATF_TC(toupper);
 ATF_TC_HEAD(toupper, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks toupper under diferent locales");
+		"Checks toupper under different locales");
 }
 
 ATF_TC_BODY(toupper, tc)
@@ -108,7 +108,7 @@ ATF_TC(tolower);
 ATF_TC_HEAD(tolower, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-		"Checks tolower under diferent locales");
+		"Checks tolower under different locales");
 }
 
 ATF_TC_BODY(tolower, tc)

Index: src/tests/lib/libc/string/t_strcoll.c
diff -u src/tests/lib/libc/string/t_strcoll.c:1.1 src/tests/lib/libc/string/t_strcoll.c:1.2
--- src/tests/lib/libc/string/t_strcoll.c:1.1	Fri May 26 01:24:19 2017
+++ src/tests/lib/libc/string/t_strcoll.c	Mon Aug  2 17:41:07 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_strcoll.c,v 1.1 2017/05/26 01:24:19 perseant Exp $ */
+/* $NetBSD: t_strcoll.c,v 1.2 2021/08/02 17:41:07 andvar Exp $ */
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 #include 
 __COPYRIGHT("@(#) Copyright (c) 2017\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_strcoll.c,v 1.1 2017/05/26 01:24:19 perseant Exp $");
+__RCSID("$NetBSD: t_strcoll.c,v 1.2 

CVS commit: src

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 12:56:25 UTC 2021

Modified Files:
src/common/include/rpc: types.h
src/sys/arch/arm/arm: armv6_start.S
src/sys/arch/arm/ixp12x0: ixp12x0reg.h
src/sys/arch/arm/sociox: if_scx.c
src/sys/arch/arm/xscale: ixp425_npe.c
src/sys/arch/evbarm/adi_brh: brhreg.h
src/sys/arch/evbmips/rmixl: machdep.c
src/sys/arch/i386/stand/lib: biosmemx.S
src/sys/arch/luna68k/stand/boot: scsivar.h
src/sys/arch/m68k/060sp/dist: isp.s
src/sys/arch/mips/atheros/dev: aereg.h
src/sys/arch/sun3/dev: si_sebuf.c si_vme.c
src/sys/arch/sun3/sun3: pmap.c
src/sys/arch/vax/vax: pmap.c
src/sys/arch/x86/x86: pmap.c
src/sys/dev/isa: cs89x0isa.c
src/sys/dev/marvell: gtintrreg.h if_mvxpe.c mvxpbmvar.h
src/sys/dev/pci: if_skreg.h
src/sys/dev/pci/cxgb: cxgb_t3_hw.c
src/sys/dev/pci/ixgbe: ixgbe_common.c
src/sys/dev/pckbport: alps.c
src/sys/dev/raidframe: rf_dagfuncs.c
src/sys/dev/usb: usbdivar.h
src/sys/net/agr: if_agr.c
src/sys/netatalk: at_control.c
src/sys/netinet6: nd6_nbr.c
src/sys/sys: sockio.h
src/usr.bin/config: TODO
src/usr.sbin/mopd/common: common.h print.c

Log Message:
fix various typos in comments and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/common/include/rpc/types.h
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/arm/arm/armv6_start.S
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/ixp12x0/ixp12x0reg.h
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/arm/sociox/if_scx.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/xscale/ixp425_npe.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/adi_brh/brhreg.h
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/evbmips/rmixl/machdep.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/i386/stand/lib/biosmemx.S
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/luna68k/stand/boot/scsivar.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/060sp/dist/isp.s
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/mips/atheros/dev/aereg.h
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/sun3/dev/si_sebuf.c \
src/sys/arch/sun3/dev/si_vme.c
cvs rdiff -u -r1.171 -r1.172 src/sys/arch/sun3/sun3/pmap.c
cvs rdiff -u -r1.191 -r1.192 src/sys/arch/vax/vax/pmap.c
cvs rdiff -u -r1.410 -r1.411 src/sys/arch/x86/x86/pmap.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/isa/cs89x0isa.c
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/marvell/gtintrreg.h
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/marvell/if_mvxpe.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/marvell/mvxpbmvar.h
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/pci/if_skreg.h
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/pci/cxgb/cxgb_t3_hw.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/pci/ixgbe/ixgbe_common.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pckbport/alps.c
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/raidframe/rf_dagfuncs.c
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/usb/usbdivar.h
cvs rdiff -u -r1.51 -r1.52 src/sys/net/agr/if_agr.c
cvs rdiff -u -r1.40 -r1.41 src/sys/netatalk/at_control.c
cvs rdiff -u -r1.181 -r1.182 src/sys/netinet6/nd6_nbr.c
cvs rdiff -u -r1.39 -r1.40 src/sys/sys/sockio.h
cvs rdiff -u -r1.33 -r1.34 src/usr.bin/config/TODO
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/mopd/common/common.h
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/mopd/common/print.c

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



CVS commit: src

2021-08-02 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  2 12:56:25 UTC 2021

Modified Files:
src/common/include/rpc: types.h
src/sys/arch/arm/arm: armv6_start.S
src/sys/arch/arm/ixp12x0: ixp12x0reg.h
src/sys/arch/arm/sociox: if_scx.c
src/sys/arch/arm/xscale: ixp425_npe.c
src/sys/arch/evbarm/adi_brh: brhreg.h
src/sys/arch/evbmips/rmixl: machdep.c
src/sys/arch/i386/stand/lib: biosmemx.S
src/sys/arch/luna68k/stand/boot: scsivar.h
src/sys/arch/m68k/060sp/dist: isp.s
src/sys/arch/mips/atheros/dev: aereg.h
src/sys/arch/sun3/dev: si_sebuf.c si_vme.c
src/sys/arch/sun3/sun3: pmap.c
src/sys/arch/vax/vax: pmap.c
src/sys/arch/x86/x86: pmap.c
src/sys/dev/isa: cs89x0isa.c
src/sys/dev/marvell: gtintrreg.h if_mvxpe.c mvxpbmvar.h
src/sys/dev/pci: if_skreg.h
src/sys/dev/pci/cxgb: cxgb_t3_hw.c
src/sys/dev/pci/ixgbe: ixgbe_common.c
src/sys/dev/pckbport: alps.c
src/sys/dev/raidframe: rf_dagfuncs.c
src/sys/dev/usb: usbdivar.h
src/sys/net/agr: if_agr.c
src/sys/netatalk: at_control.c
src/sys/netinet6: nd6_nbr.c
src/sys/sys: sockio.h
src/usr.bin/config: TODO
src/usr.sbin/mopd/common: common.h print.c

Log Message:
fix various typos in comments and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/common/include/rpc/types.h
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/arm/arm/armv6_start.S
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/ixp12x0/ixp12x0reg.h
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/arm/sociox/if_scx.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/xscale/ixp425_npe.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/adi_brh/brhreg.h
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/evbmips/rmixl/machdep.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/i386/stand/lib/biosmemx.S
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/luna68k/stand/boot/scsivar.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/060sp/dist/isp.s
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/mips/atheros/dev/aereg.h
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/sun3/dev/si_sebuf.c \
src/sys/arch/sun3/dev/si_vme.c
cvs rdiff -u -r1.171 -r1.172 src/sys/arch/sun3/sun3/pmap.c
cvs rdiff -u -r1.191 -r1.192 src/sys/arch/vax/vax/pmap.c
cvs rdiff -u -r1.410 -r1.411 src/sys/arch/x86/x86/pmap.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/isa/cs89x0isa.c
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/marvell/gtintrreg.h
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/marvell/if_mvxpe.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/marvell/mvxpbmvar.h
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/pci/if_skreg.h
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/pci/cxgb/cxgb_t3_hw.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/pci/ixgbe/ixgbe_common.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pckbport/alps.c
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/raidframe/rf_dagfuncs.c
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/usb/usbdivar.h
cvs rdiff -u -r1.51 -r1.52 src/sys/net/agr/if_agr.c
cvs rdiff -u -r1.40 -r1.41 src/sys/netatalk/at_control.c
cvs rdiff -u -r1.181 -r1.182 src/sys/netinet6/nd6_nbr.c
cvs rdiff -u -r1.39 -r1.40 src/sys/sys/sockio.h
cvs rdiff -u -r1.33 -r1.34 src/usr.bin/config/TODO
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/mopd/common/common.h
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/mopd/common/print.c

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

Modified files:

Index: src/common/include/rpc/types.h
diff -u src/common/include/rpc/types.h:1.3 src/common/include/rpc/types.h:1.4
--- src/common/include/rpc/types.h:1.3	Sun Jun 16 16:01:44 2019
+++ src/common/include/rpc/types.h	Mon Aug  2 12:56:22 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: types.h,v 1.3 2019/06/16 16:01:44 christos Exp $	*/
+/*	$NetBSD: types.h,v 1.4 2021/08/02 12:56:22 andvar Exp $	*/
 
 /*
  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -95,7 +95,7 @@ struct netbuf {
 };
 
 /*
- * The format of the addres and options arguments of the XTI t_bind call.
+ * The format of the address and options arguments of the XTI t_bind call.
  * Only provided for compatibility, it should not be used.
  */
 

Index: src/sys/arch/arm/arm/armv6_start.S
diff -u src/sys/arch/arm/arm/armv6_start.S:1.34 src/sys/arch/arm/arm/armv6_start.S:1.35
--- src/sys/arch/arm/arm/armv6_start.S:1.34	Wed Jan 27 13:50:17 2021
+++ src/sys/arch/arm/arm/armv6_start.S	Mon Aug  2 12:56:22 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: armv6_start.S,v 1.34 2021/01/27 13:50:17 skrll Exp $	*/
+/*	$NetBSD: armv6_start.S,v 1.35 2021/08/02 12:56:22 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2012, 2017, 2018 The NetBSD Foundation, Inc.
@@ -462,7 +462,7 @@ generic_startv7:
 	movt	r0, #:upper16:TEMP_L1_TABLE
 	sub	r0, R_VTOPDIFF
 
-	// Return to virtual addess after the call to armv7_mmuinit
+	// Return to virtual address after the call to armv7_mmuinit
 	movw	lr, #:lower16:generic_vstartv7
 	movt	lr, #:upper16:generic_vstartv7
 	b	

CVS commit: src/usr.sbin/rpc.pcnfsd

2021-08-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug  3 20:59:20 UTC 2021

Modified Files:
src/usr.sbin/rpc.pcnfsd: common.h

Log Message:
s/pasword/password/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/rpc.pcnfsd/common.h

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



CVS commit: src/usr.sbin/rpc.pcnfsd

2021-08-03 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Aug  3 20:59:20 UTC 2021

Modified Files:
src/usr.sbin/rpc.pcnfsd: common.h

Log Message:
s/pasword/password/


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/rpc.pcnfsd/common.h

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

Modified files:

Index: src/usr.sbin/rpc.pcnfsd/common.h
diff -u src/usr.sbin/rpc.pcnfsd/common.h:1.2 src/usr.sbin/rpc.pcnfsd/common.h:1.3
--- src/usr.sbin/rpc.pcnfsd/common.h:1.2	Tue Jul 25 22:20:26 1995
+++ src/usr.sbin/rpc.pcnfsd/common.h	Tue Aug  3 20:59:20 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: common.h,v 1.2 1995/07/25 22:20:26 gwr Exp $	*/
+/*	$NetBSD: common.h,v 1.3 2021/08/03 20:59:20 andvar Exp $	*/
 
 /* RE_SID: @(%)/usr/dosnfs/shades_SCCS/unix/pcnfsd/v2/src/SCCS/s.common.h 1.3 91/12/17 14:32:05 SMI */
 /*
@@ -89,7 +89,7 @@
 **-
 ** Define (via Makefile) the following symbol to use a cache of recently-used
 ** user names. This has certain uses in university and other settings
-** where (1) the pasword file is very large, and (2) a group of users
+** where (1) the password file is very large, and (2) a group of users
 ** frequently logs in together using the same account (for example,
 ** a class userid).
 **-
@@ -132,7 +132,7 @@
 ** to determine if a password entry contains a legal shell (and therefore
 ** identifies a user who may log in). The default is to check that
 ** the last two characters of the shell field are "sh", which should
-** cope with "sh", "csh", "ksh", "bash" See the routine get_pasword()
+** cope with "sh", "csh", "ksh", "bash" See the routine get_password()
 ** in pcnfsd_misc.c for more details.
 **
 ** Note: For some reason that I haven't yet figured out, getusershell()



CVS commit: src

2021-08-09 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  9 19:24:33 UTC 2021

Modified Files:
src/distrib/alpha/instkernel/ramdisk: upgrade.sh
src/distrib/amiga/floppies/upgr: upgrade.sh
src/doc: TODO.smpnet
src/sys/arch/arm/gemini: gemini_ipm.c
src/sys/arch/hpcmips/tx: tx3912video.c
src/sys/arch/shark/shark: scr.c
src/sys/dev/mscp: mscp_disk.c
src/usr.sbin/sysinst/arch/hpcarm: md.c
src/usr.sbin/sysinst/arch/zaurus: md.c

Log Message:
fix various typos in comments and messages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/alpha/instkernel/ramdisk/upgrade.sh
cvs rdiff -u -r1.9 -r1.10 src/distrib/amiga/floppies/upgr/upgrade.sh
cvs rdiff -u -r1.43 -r1.44 src/doc/TODO.smpnet
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/gemini/gemini_ipm.c
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/hpcmips/tx/tx3912video.c
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/shark/shark/scr.c
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/mscp/mscp_disk.c
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/sysinst/arch/hpcarm/md.c
cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/sysinst/arch/zaurus/md.c

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



CVS commit: src

2021-08-09 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  9 19:24:33 UTC 2021

Modified Files:
src/distrib/alpha/instkernel/ramdisk: upgrade.sh
src/distrib/amiga/floppies/upgr: upgrade.sh
src/doc: TODO.smpnet
src/sys/arch/arm/gemini: gemini_ipm.c
src/sys/arch/hpcmips/tx: tx3912video.c
src/sys/arch/shark/shark: scr.c
src/sys/dev/mscp: mscp_disk.c
src/usr.sbin/sysinst/arch/hpcarm: md.c
src/usr.sbin/sysinst/arch/zaurus: md.c

Log Message:
fix various typos in comments and messages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/alpha/instkernel/ramdisk/upgrade.sh
cvs rdiff -u -r1.9 -r1.10 src/distrib/amiga/floppies/upgr/upgrade.sh
cvs rdiff -u -r1.43 -r1.44 src/doc/TODO.smpnet
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/gemini/gemini_ipm.c
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/hpcmips/tx/tx3912video.c
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/shark/shark/scr.c
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/mscp/mscp_disk.c
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/sysinst/arch/hpcarm/md.c
cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/sysinst/arch/zaurus/md.c

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

Modified files:

Index: src/distrib/alpha/instkernel/ramdisk/upgrade.sh
diff -u src/distrib/alpha/instkernel/ramdisk/upgrade.sh:1.3 src/distrib/alpha/instkernel/ramdisk/upgrade.sh:1.4
--- src/distrib/alpha/instkernel/ramdisk/upgrade.sh:1.3	Sat Jul 26 17:06:26 2003
+++ src/distrib/alpha/instkernel/ramdisk/upgrade.sh	Mon Aug  9 19:24:32 2021
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: upgrade.sh,v 1.3 2003/07/26 17:06:26 salo Exp $
+# $NetBSD: upgrade.sh,v 1.4 2021/08/09 19:24:32 andvar Exp $
 #
 # Copyright (c) 1997 Perry E. Metzger
 # Copyright (c) 1994 Christopher G. Demetriou
@@ -62,7 +62,7 @@ echo	"This program is designed to help y
 echo	"on your hard disk, in a simple and rational way.  To upgrade, you"
 echo	"must have plenty of free space on all partitions which will be"
 echo	"upgraded.  If you have at least 1MB free on your root partition,"
-echo	"and several free on your /usr patition, you should be fine."
+echo	"and several free on your /usr partition, you should be fine."
 echo	""
 echo	"As with anything which modifies your hard drive's contents, this"
 echo	"program can cause SIGNIFICANT data loss, and you are advised"

Index: src/distrib/amiga/floppies/upgr/upgrade.sh
diff -u src/distrib/amiga/floppies/upgr/upgrade.sh:1.9 src/distrib/amiga/floppies/upgr/upgrade.sh:1.10
--- src/distrib/amiga/floppies/upgr/upgrade.sh:1.9	Wed Dec 23 09:13:21 2009
+++ src/distrib/amiga/floppies/upgr/upgrade.sh	Mon Aug  9 19:24:32 2021
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: upgrade.sh,v 1.9 2009/12/23 09:13:21 mbalmer Exp $
+# $NetBSD: upgrade.sh,v 1.10 2021/08/09 19:24:32 andvar Exp $
 #
 # Copyright (c) 1994 Christopher G. Demetriou
 # All rights reserved.
@@ -98,7 +98,7 @@ echo	"This program is designed to help y
 echo	"on your hard disk, in a simple and rational way.  To upgrade, you"
 echo	"must have plenty of free space on all partitions which will be"
 echo	"upgraded.  If you have at least 1MB free on your root partition,"
-echo	"and several free on your /usr patition, you should be fine."
+echo	"and several free on your /usr partition, you should be fine."
 echo	""
 echo	"As with anything which modifies your hard drive's contents, this"
 echo	"program can cause SIGNIFICANT data loss, and you are advised"

Index: src/doc/TODO.smpnet
diff -u src/doc/TODO.smpnet:1.43 src/doc/TODO.smpnet:1.44
--- src/doc/TODO.smpnet:1.43	Wed Aug  4 13:50:47 2021
+++ src/doc/TODO.smpnet	Mon Aug  9 19:24:33 2021
@@ -1,4 +1,4 @@
-$NetBSD: TODO.smpnet,v 1.43 2021/08/04 13:50:47 nia Exp $
+$NetBSD: TODO.smpnet,v 1.44 2021/08/09 19:24:33 andvar Exp $
 
 MP-safe components
 ==
@@ -129,7 +129,7 @@ bpf
 
 MP-ification of bpf requires all of bpf_mtap* are called in normal LWP context
 or softint context, i.e., not in hardware interrupt context.  For Tx, all
-bpf_mtap satisfy the requrement.  For Rx, most of bpf_mtap are called in softint.
+bpf_mtap satisfy the requirement.  For Rx, most of bpf_mtap are called in softint.
 Unfortunately some bpf_mtap on Rx are still called in hardware interrupt context.
 
 This is the list of the functions that have such bpf_mtap:
@@ -240,7 +240,7 @@ initializing address can loop in the net
 The address initialization creates an local route first and then registers an
 initializing address to the global hash table that is used to decide if an
 incoming packet destinates to the host by checking the destination of the packet
-is registered to the hash table.  So, if the host allows forwaring, an incoming
+is registered to the hash table.  So, if the host allows forwarding, an incoming
 packet can match on a local route of an initializing address at ip_output while
 it fails the to-self check described above at ip_input.  Because a matched local

CVS commit: src

2021-08-09 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  9 20:49:11 UTC 2021

Modified Files:
src/doc: BRANCHES TODO.modules
src/include: netdb.h string.h
src/lib/libc/compat/arch/hppa/sys: compat_sigpending.S
compat_sigprocmask.S compat_sigreturn.S compat_sigsuspend.S
src/lib/libc/gen: isinfd_ieee754.c isnand_ieee754.c
src/sys/arch/sandpoint/stand/altboot: brdsetup.c
src/sys/compat/common: Makefile.sysio files.common
src/sys/ddb: db_command.h
src/sys/dev/acpi: acpi_util.c
src/sys/dev/gpio: gpio.c
src/sys/dev/i2c: dbcool.c
src/sys/dev/ic: ath.c dp8390var.h sl811hs.c
src/sys/kern: compat_stub.c sys_ptrace_common.c tty_conf.c
src/sys/modules: Makefile
src/sys/net: if.h route.h
src/sys/netinet: sctp_pcb.h
src/sys/netipsec: key.h
src/usr.bin/find: option.c
src/usr.sbin/rpc.pcnfsd: README

Log Message:
fix various typos in compatibility, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.363 -r1.364 src/doc/BRANCHES
cvs rdiff -u -r1.23 -r1.24 src/doc/TODO.modules
cvs rdiff -u -r1.70 -r1.71 src/include/netdb.h
cvs rdiff -u -r1.52 -r1.53 src/include/string.h
cvs rdiff -u -r1.5 -r1.6 \
src/lib/libc/compat/arch/hppa/sys/compat_sigpending.S \
src/lib/libc/compat/arch/hppa/sys/compat_sigprocmask.S \
src/lib/libc/compat/arch/hppa/sys/compat_sigreturn.S \
src/lib/libc/compat/arch/hppa/sys/compat_sigsuspend.S
cvs rdiff -u -r1.1 -r1.2 src/lib/libc/gen/isinfd_ieee754.c \
src/lib/libc/gen/isnand_ieee754.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/sandpoint/stand/altboot/brdsetup.c
cvs rdiff -u -r1.13 -r1.14 src/sys/compat/common/Makefile.sysio
cvs rdiff -u -r1.6 -r1.7 src/sys/compat/common/files.common
cvs rdiff -u -r1.41 -r1.42 src/sys/ddb/db_command.h
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/acpi/acpi_util.c
cvs rdiff -u -r1.66 -r1.67 src/sys/dev/gpio/gpio.c
cvs rdiff -u -r1.62 -r1.63 src/sys/dev/i2c/dbcool.c
cvs rdiff -u -r1.135 -r1.136 src/sys/dev/ic/ath.c
cvs rdiff -u -r1.35 -r1.36 src/sys/dev/ic/dp8390var.h
cvs rdiff -u -r1.106 -r1.107 src/sys/dev/ic/sl811hs.c
cvs rdiff -u -r1.21 -r1.22 src/sys/kern/compat_stub.c
cvs rdiff -u -r1.91 -r1.92 src/sys/kern/sys_ptrace_common.c
cvs rdiff -u -r1.56 -r1.57 src/sys/kern/tty_conf.c
cvs rdiff -u -r1.250 -r1.251 src/sys/modules/Makefile
cvs rdiff -u -r1.291 -r1.292 src/sys/net/if.h
cvs rdiff -u -r1.128 -r1.129 src/sys/net/route.h
cvs rdiff -u -r1.3 -r1.4 src/sys/netinet/sctp_pcb.h
cvs rdiff -u -r1.36 -r1.37 src/sys/netipsec/key.h
cvs rdiff -u -r1.28 -r1.29 src/usr.bin/find/option.c
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/rpc.pcnfsd/README

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



CVS commit: src

2021-08-09 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  9 19:57:58 UTC 2021

Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: algorithm.c
src/sys/arch/hpcmips/stand/lcboot: start.S
src/sys/compat/linux/arch/i386: linux_machdep.c
src/sys/kern: sched_4bsd.c
src/sys/lib/libkern/arch/hppa: bcopy.S
src/sys/net: if_types.h
src/sys/netinet: tcp_input.c
src/sys/opencrypto: crypto.c cryptodev.h

Log Message:
fix typos in asymmetry, asymmetric(al), symmetrical.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/crypto/dist/ipsec-tools/src/racoon/algorithm.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/hpcmips/stand/lcboot/start.S
cvs rdiff -u -r1.166 -r1.167 src/sys/compat/linux/arch/i386/linux_machdep.c
cvs rdiff -u -r1.44 -r1.45 src/sys/kern/sched_4bsd.c
cvs rdiff -u -r1.16 -r1.17 src/sys/lib/libkern/arch/hppa/bcopy.S
cvs rdiff -u -r1.31 -r1.32 src/sys/net/if_types.h
cvs rdiff -u -r1.430 -r1.431 src/sys/netinet/tcp_input.c
cvs rdiff -u -r1.114 -r1.115 src/sys/opencrypto/crypto.c
cvs rdiff -u -r1.40 -r1.41 src/sys/opencrypto/cryptodev.h

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



CVS commit: src

2021-08-09 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Aug  9 19:57:58 UTC 2021

Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: algorithm.c
src/sys/arch/hpcmips/stand/lcboot: start.S
src/sys/compat/linux/arch/i386: linux_machdep.c
src/sys/kern: sched_4bsd.c
src/sys/lib/libkern/arch/hppa: bcopy.S
src/sys/net: if_types.h
src/sys/netinet: tcp_input.c
src/sys/opencrypto: crypto.c cryptodev.h

Log Message:
fix typos in asymmetry, asymmetric(al), symmetrical.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/crypto/dist/ipsec-tools/src/racoon/algorithm.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/hpcmips/stand/lcboot/start.S
cvs rdiff -u -r1.166 -r1.167 src/sys/compat/linux/arch/i386/linux_machdep.c
cvs rdiff -u -r1.44 -r1.45 src/sys/kern/sched_4bsd.c
cvs rdiff -u -r1.16 -r1.17 src/sys/lib/libkern/arch/hppa/bcopy.S
cvs rdiff -u -r1.31 -r1.32 src/sys/net/if_types.h
cvs rdiff -u -r1.430 -r1.431 src/sys/netinet/tcp_input.c
cvs rdiff -u -r1.114 -r1.115 src/sys/opencrypto/crypto.c
cvs rdiff -u -r1.40 -r1.41 src/sys/opencrypto/cryptodev.h

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

Modified files:

Index: src/crypto/dist/ipsec-tools/src/racoon/algorithm.c
diff -u src/crypto/dist/ipsec-tools/src/racoon/algorithm.c:1.9 src/crypto/dist/ipsec-tools/src/racoon/algorithm.c:1.10
--- src/crypto/dist/ipsec-tools/src/racoon/algorithm.c:1.9	Thu Nov 29 15:31:24 2012
+++ src/crypto/dist/ipsec-tools/src/racoon/algorithm.c	Mon Aug  9 19:57:57 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: algorithm.c,v 1.9 2012/11/29 15:31:24 vanhu Exp $	*/
+/*	$NetBSD: algorithm.c,v 1.10 2021/08/09 19:57:57 andvar Exp $	*/
 
 /* Id: algorithm.c,v 1.15 2006/05/23 20:23:09 manubsd Exp */
 
@@ -229,7 +229,7 @@ static struct misc_algorithm ipsec_compd
 };
 
 /*
- * In case of asymetric modes (hybrid xauth), what's racoon mode of
+ * In case of asymmetric modes (hybrid xauth), what's racoon mode of
  * operations ; it seems that the proposal should always use the
  * initiator half (unless a server initiates a connection, which is
  * not handled, and probably not useful).

Index: src/sys/arch/hpcmips/stand/lcboot/start.S
diff -u src/sys/arch/hpcmips/stand/lcboot/start.S:1.3 src/sys/arch/hpcmips/stand/lcboot/start.S:1.4
--- src/sys/arch/hpcmips/stand/lcboot/start.S:1.3	Sun Dec 11 12:17:34 2005
+++ src/sys/arch/hpcmips/stand/lcboot/start.S	Mon Aug  9 19:57:57 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: start.S,v 1.3 2005/12/11 12:17:34 christos Exp $ */
+/* $NetBSD: start.S,v 1.4 2021/08/09 19:57:57 andvar Exp $ */
 
 /*
  * Copyright (c) 2003 Naoto Shimazaki.
@@ -196,7 +196,7 @@ start:
 	 * B1Config = 01	(16Mbit)
 	 * Bstreftype = 1	(all raw refresh)
 	 * BstRefr = 0		(not allow burst refresh)
-	 * EDOAsym = 0		(asymetric)
+	 * EDOAsym = 0		(asymmetric)
 	 * B0Config = 01	(16Mbit)
 	 * EDO/SDRAM = 1	(SDRAM)
 	 */
@@ -233,7 +233,7 @@ start:
 	 * B1Config = 10	(64Mbit)
 	 * Bstreftype = 1	(all raw refresh)
 	 * BstRefr = 0		(not allow burst refresh)
-	 * EDOAsym = 0		(asymetric)
+	 * EDOAsym = 0		(asymmetric)
 	 * B0Config = 10	(64Mbit)
 	 * EDO/SDRAM = 1	(SDRAM)
 	 */

Index: src/sys/compat/linux/arch/i386/linux_machdep.c
diff -u src/sys/compat/linux/arch/i386/linux_machdep.c:1.166 src/sys/compat/linux/arch/i386/linux_machdep.c:1.167
--- src/sys/compat/linux/arch/i386/linux_machdep.c:1.166	Sun May 19 08:46:15 2019
+++ src/sys/compat/linux/arch/i386/linux_machdep.c	Mon Aug  9 19:57:57 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_machdep.c,v 1.166 2019/05/19 08:46:15 maxv Exp $	*/
+/*	$NetBSD: linux_machdep.c,v 1.167 2021/08/09 19:57:57 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1995, 2000, 2008, 2009 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.166 2019/05/19 08:46:15 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.167 2021/08/09 19:57:57 andvar Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_user_ldt.h"
@@ -491,7 +491,7 @@ linux_read_ldt(struct lwp *l, const stru
 	size_t sz;
 
 	/*
-	 * I've checked the linux code - this function is asymetric with
+	 * I've checked the linux code - this function is asymmetric with
 	 * linux_write_ldt, and returns raw ldt entries.
 	 * NB, the code I saw zerod the spare parts of the user buffer.
 	 */

Index: src/sys/kern/sched_4bsd.c
diff -u src/sys/kern/sched_4bsd.c:1.44 src/sys/kern/sched_4bsd.c:1.45
--- src/sys/kern/sched_4bsd.c:1.44	Sat May 23 21:24:41 2020
+++ src/sys/kern/sched_4bsd.c	Mon Aug  9 19:57:57 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: sched_4bsd.c,v 1.44 2020/05/23 21:24:41 ad Exp $	*/
+/*	$NetBSD: sched_4bsd.c,v 1.45 2021/08/09 19:57:57 andvar Exp $	*/
 
 /*
  * Copyright (c) 1999, 2000, 2004, 2006, 2007, 2008, 2019, 2020
@@ -69,7 +69,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: sched_4bsd.c,v 1.44 2020/05/23 21:24:41 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sched_4bsd.c,v 1.45 

  1   2   3   4   5   6   7   8   9   10   >