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/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

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/sys

2021-10-12 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Oct 12 08:36:29 UTC 2021

Modified Files:
src/sys/arch/m68k/m68k: pmap_motorola.c
src/sys/arch/vax/vax: pmap.c
src/sys/compat/linux/arch/aarch64: linux_commons.c
src/sys/compat/linux/arch/amd64: linux_commons.c
src/sys/compat/linux/arch/arm: linux_commons.c
src/sys/compat/linux/arch/i386: linux_commons.c
src/sys/dev/i2c: i2c_exec.c
src/sys/dev/pci: piixpm.c
src/sys/dev/scsipi: cd.c

Log Message:
fix various typos, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/arch/m68k/m68k/pmap_motorola.c
cvs rdiff -u -r1.192 -r1.193 src/sys/arch/vax/vax/pmap.c
cvs rdiff -u -r1.1 -r1.2 src/sys/compat/linux/arch/aarch64/linux_commons.c
cvs rdiff -u -r1.12 -r1.13 src/sys/compat/linux/arch/amd64/linux_commons.c
cvs rdiff -u -r1.13 -r1.14 src/sys/compat/linux/arch/arm/linux_commons.c
cvs rdiff -u -r1.17 -r1.18 src/sys/compat/linux/arch/i386/linux_commons.c
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/i2c/i2c_exec.c
cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/piixpm.c
cvs rdiff -u -r1.352 -r1.353 src/sys/dev/scsipi/cd.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-10-12 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Oct 12 08:36:29 UTC 2021

Modified Files:
src/sys/arch/m68k/m68k: pmap_motorola.c
src/sys/arch/vax/vax: pmap.c
src/sys/compat/linux/arch/aarch64: linux_commons.c
src/sys/compat/linux/arch/amd64: linux_commons.c
src/sys/compat/linux/arch/arm: linux_commons.c
src/sys/compat/linux/arch/i386: linux_commons.c
src/sys/dev/i2c: i2c_exec.c
src/sys/dev/pci: piixpm.c
src/sys/dev/scsipi: cd.c

Log Message:
fix various typos, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/arch/m68k/m68k/pmap_motorola.c
cvs rdiff -u -r1.192 -r1.193 src/sys/arch/vax/vax/pmap.c
cvs rdiff -u -r1.1 -r1.2 src/sys/compat/linux/arch/aarch64/linux_commons.c
cvs rdiff -u -r1.12 -r1.13 src/sys/compat/linux/arch/amd64/linux_commons.c
cvs rdiff -u -r1.13 -r1.14 src/sys/compat/linux/arch/arm/linux_commons.c
cvs rdiff -u -r1.17 -r1.18 src/sys/compat/linux/arch/i386/linux_commons.c
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/i2c/i2c_exec.c
cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/piixpm.c
cvs rdiff -u -r1.352 -r1.353 src/sys/dev/scsipi/cd.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/m68k/m68k/pmap_motorola.c
diff -u src/sys/arch/m68k/m68k/pmap_motorola.c:1.74 src/sys/arch/m68k/m68k/pmap_motorola.c:1.75
--- src/sys/arch/m68k/m68k/pmap_motorola.c:1.74	Fri Apr 16 00:13:48 2021
+++ src/sys/arch/m68k/m68k/pmap_motorola.c	Tue Oct 12 08:36:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap_motorola.c,v 1.74 2021/04/16 00:13:48 mrg Exp $*/
+/*	$NetBSD: pmap_motorola.c,v 1.75 2021/10/12 08:36:28 andvar Exp $*/
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -119,7 +119,7 @@
 #include "opt_m68k_arch.h"
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: pmap_motorola.c,v 1.74 2021/04/16 00:13:48 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_motorola.c,v 1.75 2021/10/12 08:36:28 andvar Exp $");
 
 #include 
 #include 
@@ -696,7 +696,7 @@ pmap_destroy(pmap_t pmap)
 /*
  * pmap_release:
  *
- *	Relese the resources held by a pmap.
+ *	Release the resources held by a pmap.
  *
  *	Note: THIS FUNCTION SHOULD BE MOVED INTO pmap_destroy().
  */

Index: src/sys/arch/vax/vax/pmap.c
diff -u src/sys/arch/vax/vax/pmap.c:1.192 src/sys/arch/vax/vax/pmap.c:1.193
--- src/sys/arch/vax/vax/pmap.c:1.192	Mon Aug  2 12:56:23 2021
+++ src/sys/arch/vax/vax/pmap.c	Tue Oct 12 08:36:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.192 2021/08/02 12:56:23 andvar Exp $	   */
+/*	$NetBSD: pmap.c,v 1.193 2021/10/12 08:36:28 andvar Exp $	   */
 /*
  * Copyright (c) 1994, 1998, 1999, 2003 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -25,7 +25,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.192 2021/08/02 12:56:23 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.193 2021/10/12 08:36:28 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_cputype.h"
@@ -859,7 +859,7 @@ pmap_pinit(pmap_t pmap)
 
 	/*
 	 * Do not allocate any pte's here, we don't know the size and 
-	 * we'll get a page pault anyway when some page is referenced,
+	 * we'll get a page fault anyway when some page is referenced,
 	 * so do it then.
 	 */
 	pmap->pm_p0br = (struct pte *)KERNBASE;
@@ -935,8 +935,8 @@ pmap_release(struct pmap *pmap)
 
 /*
  * pmap_destroy(pmap): Remove a reference from the pmap. 
- * If the pmap is NULL then just return else decrese pm_count.
- * If this was the last reference we call's pmap_relaese to release this pmap.
+ * If the pmap is NULL then just return else decrease pm_count.
+ * If this was the last reference we call's pmap_release to release this pmap.
  */
 
 void

Index: src/sys/compat/linux/arch/aarch64/linux_commons.c
diff -u src/sys/compat/linux/arch/aarch64/linux_commons.c:1.1 src/sys/compat/linux/arch/aarch64/linux_commons.c:1.2
--- src/sys/compat/linux/arch/aarch64/linux_commons.c:1.1	Thu Sep 23 06:56:27 2021
+++ src/sys/compat/linux/arch/aarch64/linux_commons.c	Tue Oct 12 08:36:28 2021
@@ -1,8 +1,8 @@
-/*	$NetBSD: linux_commons.c,v 1.1 2021/09/23 06:56:27 ryo Exp $	*/
+/*	$NetBSD: linux_commons.c,v 1.2 2021/10/12 08:36:28 andvar Exp $	*/
 
 /*
  * This file includes C files from the common
- * area to decrese the number of files to compile
+ * area to decrease the number of files to compile
  * in order to make building a kernel go faster.
  *
  * Option headers and headers which depend on
@@ -13,7 +13,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: linux_commons.c,v 1.1 2021/09/23 06:56:27 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_commons.c,v 1.2 2021/10/12 08:36:28 andvar Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"

Index: src/sys/compat/linux/arch/amd64/linux_commons.c
diff -u src/sys/compat/linux/arch/amd64/linux_commons.c:1.12 src/sys/compat/linux/arch/amd64/linux_commons.c:1.13
--- 

CVS commit: src

2021-10-12 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Oct 12 15:25:27 UTC 2021

Modified Files:
src/lib/libcrypt: crypt.3
src/share/man/man8: compat_linux.8

Log Message:
fix typos in man pages.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libcrypt/crypt.3
cvs rdiff -u -r1.44 -r1.45 src/share/man/man8/compat_linux.8

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

Modified files:

Index: src/lib/libcrypt/crypt.3
diff -u src/lib/libcrypt/crypt.3:1.29 src/lib/libcrypt/crypt.3:1.30
--- src/lib/libcrypt/crypt.3:1.29	Mon Oct 21 05:16:51 2019
+++ src/lib/libcrypt/crypt.3	Tue Oct 12 15:25:27 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: crypt.3,v 1.29 2019/10/21 05:16:51 wiz Exp $
+.\"	$NetBSD: crypt.3,v 1.30 2021/10/12 15:25:27 andvar Exp $
 .\"
 .\" Copyright (c) 1989, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -250,7 +250,7 @@ using argon2i on the first pass, and arg
 passes.
 We parameterize on three variables.
 First, m_cost (m), specifies the memory usage in KB.
-Second, t_cost (t), specfies the number of iterations.
+Second, t_cost (t), specifies the number of iterations.
 Third, parallelism (p) specifies the number of threads.
 A valid Argon2 encoded password looks similar to
 .Bd -literal

Index: src/share/man/man8/compat_linux.8
diff -u src/share/man/man8/compat_linux.8:1.44 src/share/man/man8/compat_linux.8:1.45
--- src/share/man/man8/compat_linux.8:1.44	Sun Sep 26 11:22:29 2021
+++ src/share/man/man8/compat_linux.8	Tue Oct 12 15:25:27 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: compat_linux.8,v 1.44 2021/09/26 11:22:29 nia Exp $
+.\"	$NetBSD: compat_linux.8,v 1.45 2021/10/12 15:25:27 andvar Exp $
 .\"
 .\" Copyright (c) 1995 Frank van der Linden
 .\" All rights reserved.
@@ -195,7 +195,7 @@ You must create or get a valid copy of t
 .Nm
 is generally not enabled in
 .Dv GENERIC
-kernels for secuity reasons,
+kernels for security reasons,
 but is available as a module.
 It must be added to
 .Xr modules.conf 5



CVS commit: src

2021-10-12 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Tue Oct 12 15:25:27 UTC 2021

Modified Files:
src/lib/libcrypt: crypt.3
src/share/man/man8: compat_linux.8

Log Message:
fix typos in man pages.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libcrypt/crypt.3
cvs rdiff -u -r1.44 -r1.45 src/share/man/man8/compat_linux.8

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



CVS commit: src/sys/kern

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 11:01:03 UTC 2021

Modified Files:
src/sys/kern: makesyscalls.sh

Log Message:
s/optiona]/optional]/


To generate a diff of this commit:
cvs rdiff -u -r1.185 -r1.186 src/sys/kern/makesyscalls.sh

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



CVS commit: src/sys/kern

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 11:01:03 UTC 2021

Modified Files:
src/sys/kern: makesyscalls.sh

Log Message:
s/optiona]/optional]/


To generate a diff of this commit:
cvs rdiff -u -r1.185 -r1.186 src/sys/kern/makesyscalls.sh

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

Modified files:

Index: src/sys/kern/makesyscalls.sh
diff -u src/sys/kern/makesyscalls.sh:1.185 src/sys/kern/makesyscalls.sh:1.186
--- src/sys/kern/makesyscalls.sh:1.185	Wed Apr 14 02:45:40 2021
+++ src/sys/kern/makesyscalls.sh	Thu Oct 21 11:01:03 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.185 2021/04/14 02:45:40 christos Exp $
+#	$NetBSD: makesyscalls.sh,v 1.186 2021/10/21 11:01:03 andvar Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -58,7 +58,7 @@ esac
 #	nsysent		the size of the sysent table
 #	sys_nosys	[optional] name of function called for unsupported
 #			syscalls, if not sys_nosys()
-#   maxsysargs	[optiona] the maximum number or arguments
+#   maxsysargs	[optional] the maximum number or arguments
 #	rumpcalls	???
 #	rumpcallshdr	???
 #	rumpsysmap	???



CVS commit: src

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 13:21:55 UTC 2021

Modified Files:
src/doc/roadmaps: storage
src/lib/librpcsvc: mount.x
src/lib/libz: Makefile
src/share/man/man4: vio9p.4
src/share/man/man4/man4.hppa: pdc.4
src/share/man/man5: statvfs.5
src/share/man/man7: sysctl.7
src/sys/arch/amiga/dev: mfc.c ser.c
src/sys/arch/arm/imx: imx23_ssp.c
src/sys/arch/evbppc/virtex: dcr.h
src/sys/dev/hyperv: if_hvnreg.h
src/sys/dev/ic: dm9000reg.h ds1286reg.h ds1687reg.h isp.c isp_library.c
src/sys/dev/pci: if_sip.c
src/sys/kern: sys_futex.c
src/sys/modules/examples/panic_string: panic_string.c
src/sys/netinet: sctp_output.c
src/sys/nfs: nfsnode.h
src/tests/usr.bin/config: t_config.sh
src/usr.sbin/mtrace: mtrace.c

Log Message:
fix various typos, mainly in comments, but also in man pages and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/doc/roadmaps/storage
cvs rdiff -u -r1.6 -r1.7 src/lib/librpcsvc/mount.x
cvs rdiff -u -r1.26 -r1.27 src/lib/libz/Makefile
cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/vio9p.4
cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/man4.hppa/pdc.4
cvs rdiff -u -r1.15 -r1.16 src/share/man/man5/statvfs.5
cvs rdiff -u -r1.154 -r1.155 src/share/man/man7/sysctl.7
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/amiga/dev/mfc.c
cvs rdiff -u -r1.83 -r1.84 src/sys/arch/amiga/dev/ser.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/imx/imx23_ssp.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbppc/virtex/dcr.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hyperv/if_hvnreg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/dm9000reg.h
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/ds1286reg.h \
src/sys/dev/ic/isp_library.c
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/ic/ds1687reg.h
cvs rdiff -u -r1.130 -r1.131 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.182 -r1.183 src/sys/dev/pci/if_sip.c
cvs rdiff -u -r1.13 -r1.14 src/sys/kern/sys_futex.c
cvs rdiff -u -r1.2 -r1.3 src/sys/modules/examples/panic_string/panic_string.c
cvs rdiff -u -r1.25 -r1.26 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.75 -r1.76 src/sys/nfs/nfsnode.h
cvs rdiff -u -r1.10 -r1.11 src/tests/usr.bin/config/t_config.sh
cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/mtrace/mtrace.c

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



CVS commit: src

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 13:21:55 UTC 2021

Modified Files:
src/doc/roadmaps: storage
src/lib/librpcsvc: mount.x
src/lib/libz: Makefile
src/share/man/man4: vio9p.4
src/share/man/man4/man4.hppa: pdc.4
src/share/man/man5: statvfs.5
src/share/man/man7: sysctl.7
src/sys/arch/amiga/dev: mfc.c ser.c
src/sys/arch/arm/imx: imx23_ssp.c
src/sys/arch/evbppc/virtex: dcr.h
src/sys/dev/hyperv: if_hvnreg.h
src/sys/dev/ic: dm9000reg.h ds1286reg.h ds1687reg.h isp.c isp_library.c
src/sys/dev/pci: if_sip.c
src/sys/kern: sys_futex.c
src/sys/modules/examples/panic_string: panic_string.c
src/sys/netinet: sctp_output.c
src/sys/nfs: nfsnode.h
src/tests/usr.bin/config: t_config.sh
src/usr.sbin/mtrace: mtrace.c

Log Message:
fix various typos, mainly in comments, but also in man pages and log messages.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/doc/roadmaps/storage
cvs rdiff -u -r1.6 -r1.7 src/lib/librpcsvc/mount.x
cvs rdiff -u -r1.26 -r1.27 src/lib/libz/Makefile
cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/vio9p.4
cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/man4.hppa/pdc.4
cvs rdiff -u -r1.15 -r1.16 src/share/man/man5/statvfs.5
cvs rdiff -u -r1.154 -r1.155 src/share/man/man7/sysctl.7
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/amiga/dev/mfc.c
cvs rdiff -u -r1.83 -r1.84 src/sys/arch/amiga/dev/ser.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/imx/imx23_ssp.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbppc/virtex/dcr.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hyperv/if_hvnreg.h
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/dm9000reg.h
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/ds1286reg.h \
src/sys/dev/ic/isp_library.c
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/ic/ds1687reg.h
cvs rdiff -u -r1.130 -r1.131 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.182 -r1.183 src/sys/dev/pci/if_sip.c
cvs rdiff -u -r1.13 -r1.14 src/sys/kern/sys_futex.c
cvs rdiff -u -r1.2 -r1.3 src/sys/modules/examples/panic_string/panic_string.c
cvs rdiff -u -r1.25 -r1.26 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.75 -r1.76 src/sys/nfs/nfsnode.h
cvs rdiff -u -r1.10 -r1.11 src/tests/usr.bin/config/t_config.sh
cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/mtrace/mtrace.c

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

Modified files:

Index: src/doc/roadmaps/storage
diff -u src/doc/roadmaps/storage:1.27 src/doc/roadmaps/storage:1.28
--- src/doc/roadmaps/storage:1.27	Wed May 29 02:34:19 2019
+++ src/doc/roadmaps/storage	Thu Oct 21 13:21:53 2021
@@ -1,4 +1,4 @@
-$NetBSD: storage,v 1.27 2019/05/29 02:34:19 msaitoh Exp $
+$NetBSD: storage,v 1.28 2021/10/21 13:21:53 andvar Exp $
 
 NetBSD Storage Roadmap
 ==
@@ -223,7 +223,7 @@ optimizations, such as DragonFly pbuf(9)
 
 Semi-relatedly, it is also time for scsipi to become MPSAFE.
 
- - As of May 2016 a port of OpenBSD's driver has been commited. This
+ - As of May 2016 a port of OpenBSD's driver has been committed. This
will be in -8.
  - The nvme driver is a backend to ld(4) and is fully is MPSAFE, but we
still need to attend to I/O path bottlenecks like kern/53124.
@@ -328,11 +328,11 @@ people; this is a harder project than it
hashes; jdolecek also implemented several frequently used ext4 features
so most contemporary ext filesystems should be possible to mount
read-write
- - still need rw dir_nhash and xattr (semi-easy), and eventually journalling
+ - still need rw dir_nhash and xattr (semi-easy), and eventually journaling
(hard)
  - There is no clear timeframe or release target.
- - jdolecek is working on improving ext3/ext4 support (particularily
-   journalling) 
+ - jdolecek is working on improving ext3/ext4 support (particularly
+   journaling) 
 
 
 14. Port hammer from Dragonfly

Index: src/lib/librpcsvc/mount.x
diff -u src/lib/librpcsvc/mount.x:1.6 src/lib/librpcsvc/mount.x:1.7
--- src/lib/librpcsvc/mount.x:1.6	Thu Jul  1 22:52:34 2004
+++ src/lib/librpcsvc/mount.x	Thu Oct 21 13:21:53 2021
@@ -36,7 +36,7 @@
 %#ifndef __lint__
 %/*static char sccsid[] = "from: @(#)mount.x 1.2 87/09/18 Copyr 1987 Sun Micro";*/
 %/*static char sccsid[] = "from: @(#)mount.x	2.1 88/08/01 4.0 RPCSRC";*/
-%__RCSID("$NetBSD: mount.x,v 1.6 2004/07/01 22:52:34 kleink Exp $");
+%__RCSID("$NetBSD: mount.x,v 1.7 2021/10/21 13:21:53 andvar Exp $");
 %/*	$FreeBSD: src/include/rpcsvc/mount.x,v 1.7 2003/05/04 02:51:42 obrien Exp $	*/
 %#endif /* not __lint__ */
 #endif
@@ -144,8 +144,8 @@ program MOUNTPROG {
 	 */
 	version MOUNTVERS {
 		/*
-		 * Does no work. It is made available in all RPC services
-		 * to allow server reponse testing and timing
+		 * Does not work. It is made available in all RPC services
+		 * to allow server response testing and timing
 		 */
 		void
 		MOUNTPROC_NULL(void) = 0;
@@ -198,8 +198,8 @@ program MOUNTPROG {
 	} = 1;
 

CVS commit: src/lib/librpcsvc

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 21:35:02 UTC 2021

Modified Files:
src/lib/librpcsvc: mount.x

Log Message:
Revert "Does not work" back to "Does no work". It wasn't a typo.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/librpcsvc/mount.x

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

Modified files:

Index: src/lib/librpcsvc/mount.x
diff -u src/lib/librpcsvc/mount.x:1.7 src/lib/librpcsvc/mount.x:1.8
--- src/lib/librpcsvc/mount.x:1.7	Thu Oct 21 13:21:53 2021
+++ src/lib/librpcsvc/mount.x	Thu Oct 21 21:35:02 2021
@@ -36,7 +36,7 @@
 %#ifndef __lint__
 %/*static char sccsid[] = "from: @(#)mount.x 1.2 87/09/18 Copyr 1987 Sun Micro";*/
 %/*static char sccsid[] = "from: @(#)mount.x	2.1 88/08/01 4.0 RPCSRC";*/
-%__RCSID("$NetBSD: mount.x,v 1.7 2021/10/21 13:21:53 andvar Exp $");
+%__RCSID("$NetBSD: mount.x,v 1.8 2021/10/21 21:35:02 andvar Exp $");
 %/*	$FreeBSD: src/include/rpcsvc/mount.x,v 1.7 2003/05/04 02:51:42 obrien Exp $	*/
 %#endif /* not __lint__ */
 #endif
@@ -144,7 +144,7 @@ program MOUNTPROG {
 	 */
 	version MOUNTVERS {
 		/*
-		 * Does not work. It is made available in all RPC services
+		 * Does no work. It is made available in all RPC services
 		 * to allow server response testing and timing
 		 */
 		void
@@ -198,7 +198,7 @@ program MOUNTPROG {
 	} = 1;
 	version MOUNTVERS3 {
 		/*
-		 * Does not work. It is made available in all RPC services
+		 * Does no work. It is made available in all RPC services
 		 * to allow server response testing and timing
 		 */
 		void



CVS commit: src/lib/librpcsvc

2021-10-21 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Thu Oct 21 21:35:02 UTC 2021

Modified Files:
src/lib/librpcsvc: mount.x

Log Message:
Revert "Does not work" back to "Does no work". It wasn't a typo.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/librpcsvc/mount.x

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



CVS commit: src

2021-10-15 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Oct 15 22:32:29 UTC 2021

Modified Files:
src/include: unistd.h
src/sys/crypto/blowfish: bf_locl.h
src/sys/dev/ic: aic79xxvar.h
src/sys/ufs/lfs: ulfs_quota2.c
src/sys/ufs/ufs: ufs_quota2.c

Log Message:
fix typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 src/include/unistd.h
cvs rdiff -u -r1.6 -r1.7 src/sys/crypto/blowfish/bf_locl.h
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/aic79xxvar.h
cvs rdiff -u -r1.33 -r1.34 src/sys/ufs/lfs/ulfs_quota2.c
cvs rdiff -u -r1.43 -r1.44 src/sys/ufs/ufs/ufs_quota2.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/unistd.h
diff -u src/include/unistd.h:1.161 src/include/unistd.h:1.162
--- src/include/unistd.h:1.161	Fri Dec  4 23:04:58 2020
+++ src/include/unistd.h	Fri Oct 15 22:32:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: unistd.h,v 1.161 2020/12/04 23:04:58 kre Exp $	*/
+/*	$NetBSD: unistd.h,v 1.162 2021/10/15 22:32:28 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -187,7 +187,7 @@ off_t	 lseek(int, off_t, int);
 int	 truncate(const char *, off_t);
 /*
  * IEEE Std 1003.1b-93,
- * also found in X/Open Portability Guide >= Issue 4 Verion 2
+ * also found in X/Open Portability Guide >= Issue 4 Version 2
  */
 #if (_POSIX_C_SOURCE - 0) >= 199309L || \
 (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \

Index: src/sys/crypto/blowfish/bf_locl.h
diff -u src/sys/crypto/blowfish/bf_locl.h:1.6 src/sys/crypto/blowfish/bf_locl.h:1.7
--- src/sys/crypto/blowfish/bf_locl.h:1.6	Mon Feb  4 08:23:53 2019
+++ src/sys/crypto/blowfish/bf_locl.h	Fri Oct 15 22:32:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: bf_locl.h,v 1.6 2019/02/04 08:23:53 mrg Exp $	*/
+/*	$NetBSD: bf_locl.h,v 1.7 2021/10/15 22:32:28 andvar Exp $	*/
 /*	$KAME: bf_locl.h,v 1.5 2000/08/31 06:03:48 itojun Exp $	*/
 
 /* crypto/bf/bf_local.h */
@@ -179,7 +179,7 @@
 
 #if defined(BF_PTR2)
 
-/* This is basically a special pentium verson */
+/* This is basically a special pentium version */
 #define BF_ENC(LL,R,S,P) \
 	{ \
 	BF_LONG t,u,v; \

Index: src/sys/dev/ic/aic79xxvar.h
diff -u src/sys/dev/ic/aic79xxvar.h:1.28 src/sys/dev/ic/aic79xxvar.h:1.29
--- src/sys/dev/ic/aic79xxvar.h:1.28	Sun Aug 22 19:56:15 2021
+++ src/sys/dev/ic/aic79xxvar.h	Fri Oct 15 22:32:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic79xxvar.h,v 1.28 2021/08/22 19:56:15 andvar Exp $	*/
+/*	$NetBSD: aic79xxvar.h,v 1.29 2021/10/15 22:32:28 andvar Exp $	*/
 
 /*
  * Core definitions and data structures sharable across OS platforms.
@@ -1186,7 +1186,7 @@ struct ahd_softc {
 	uint8_t			  tqinfifonext;
 
 	/*
-	 * Cached verson of the hs_mailbox so we can avoid
+	 * Cached version of the hs_mailbox so we can avoid
 	 * pausing the sequencer during mailbox updates.
 	 */
 	uint8_t			  hs_mailbox;

Index: src/sys/ufs/lfs/ulfs_quota2.c
diff -u src/sys/ufs/lfs/ulfs_quota2.c:1.33 src/sys/ufs/lfs/ulfs_quota2.c:1.34
--- src/sys/ufs/lfs/ulfs_quota2.c:1.33	Sat Dec  5 17:40:00 2020
+++ src/sys/ufs/lfs/ulfs_quota2.c	Fri Oct 15 22:32:29 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ulfs_quota2.c,v 1.33 2020/12/05 17:40:00 thorpej Exp $	*/
+/*	$NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 andvar Exp $	*/
 /*  from NetBSD: ufs_quota2.c,v 1.40 2015/03/28 19:24:05 maxv Exp Exp  */
 /*  from NetBSD: ffs_quota2.c,v 1.5 2015/02/22 14:12:48 maxv Exp  */
 
@@ -29,7 +29,7 @@
   */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: ulfs_quota2.c,v 1.33 2020/12/05 17:40:00 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ulfs_quota2.c,v 1.34 2021/10/15 22:32:29 andvar Exp $");
 
 #include 
 #include 
@@ -311,7 +311,7 @@ quota2_q2ealloc(struct ulfsmount *ump, i
 		struct vnode *vp = ump->um_quotas[type];
 		struct inode *ip = VTOI(vp);
 		uint64_t size = ip->i_size;
-		/* need to alocate a new disk block */
+		/* need to allocate a new disk block */
 		error = lfs_balloc(vp, size, ump->umq2_bsize,
 		ump->um_cred[type], B_CLRBUF | B_SYNC, );
 		if (error) {

Index: src/sys/ufs/ufs/ufs_quota2.c
diff -u src/sys/ufs/ufs/ufs_quota2.c:1.43 src/sys/ufs/ufs/ufs_quota2.c:1.44
--- src/sys/ufs/ufs/ufs_quota2.c:1.43	Sat Dec  5 17:33:54 2020
+++ src/sys/ufs/ufs/ufs_quota2.c	Fri Oct 15 22:32:29 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: ufs_quota2.c,v 1.43 2020/12/05 17:33:54 thorpej Exp $ */
+/* $NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 andvar Exp $ */
 /*-
   * Copyright (c) 2010 Manuel Bouyer
   * All rights reserved.
@@ -26,7 +26,7 @@
   */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.43 2020/12/05 17:33:54 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.44 2021/10/15 22:32:29 andvar Exp $");
 
 #include 
 #include 
@@ -304,7 +304,7 @@ quota2_q2ealloc(struct ufsmount *ump, in
 		struct vnode *vp = ump->um_quotas[type];
 		struct inode *ip = VTOI(vp);
 		uint64_t size = ip->i_size;
-		/* need to alocate a new disk 

CVS commit: src

2021-10-15 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Oct 15 22:32:29 UTC 2021

Modified Files:
src/include: unistd.h
src/sys/crypto/blowfish: bf_locl.h
src/sys/dev/ic: aic79xxvar.h
src/sys/ufs/lfs: ulfs_quota2.c
src/sys/ufs/ufs: ufs_quota2.c

Log Message:
fix typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 src/include/unistd.h
cvs rdiff -u -r1.6 -r1.7 src/sys/crypto/blowfish/bf_locl.h
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/aic79xxvar.h
cvs rdiff -u -r1.33 -r1.34 src/sys/ufs/lfs/ulfs_quota2.c
cvs rdiff -u -r1.43 -r1.44 src/sys/ufs/ufs/ufs_quota2.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/usb

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:40:03 UTC 2021

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
s/Techonology/Technology/


To generate a diff of this commit:
cvs rdiff -u -r1.796 -r1.797 src/sys/dev/usb/usbdevs

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



CVS commit: src/sys/dev/usb

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:40:03 UTC 2021

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
s/Techonology/Technology/


To generate a diff of this commit:
cvs rdiff -u -r1.796 -r1.797 src/sys/dev/usb/usbdevs

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/usb/usbdevs
diff -u src/sys/dev/usb/usbdevs:1.796 src/sys/dev/usb/usbdevs:1.797
--- src/sys/dev/usb/usbdevs:1.796	Sat Oct 16 05:39:11 2021
+++ src/sys/dev/usb/usbdevs	Sun Oct 17 20:40:03 2021
@@ -1,4 +1,4 @@
-$NetBSD: usbdevs,v 1.796 2021/10/16 05:39:11 mrg Exp $
+$NetBSD: usbdevs,v 1.797 2021/10/17 20:40:03 andvar Exp $
 
 /*-
  * Copyright (c) 1998-2004 The NetBSD Foundation, Inc.
@@ -2327,7 +2327,7 @@ product MSI BLUETOOTH_3		0xa97a	Bluetoot
 product MICROCHIP PICKIT1	0x0032	PICkit(TM) 1 FLASH Starter Kit
 product MICROCHIP PICKIT2	0x0033	PICkit 2 Microcontroller Programmer
 
-/* Microdia / Sonix Techonology Co., Ltd. products */
+/* Microdia / Sonix Technology Co., Ltd. products */
 product MICRODIA YUREX		0x1010	YUREX
 
 /* Micronet Communications products */



CVS commit: src/sys/dev/usb

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:40:20 UTC 2021

Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.786 -r1.787 src/sys/dev/usb/usbdevs.h \
src/sys/dev/usb/usbdevs_data.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/usb/usbdevs.h
diff -u src/sys/dev/usb/usbdevs.h:1.786 src/sys/dev/usb/usbdevs.h:1.787
--- src/sys/dev/usb/usbdevs.h:1.786	Sat Oct 16 05:39:32 2021
+++ src/sys/dev/usb/usbdevs.h	Sun Oct 17 20:40:20 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbdevs.h,v 1.786 2021/10/16 05:39:32 mrg Exp $	*/
+/*	$NetBSD: usbdevs.h,v 1.787 2021/10/17 20:40:20 andvar Exp $	*/
 
 /*
  * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.
@@ -2334,7 +2334,7 @@
 #define	USB_PRODUCT_MICROCHIP_PICKIT1	0x0032		/* PICkit(TM) 1 FLASH Starter Kit */
 #define	USB_PRODUCT_MICROCHIP_PICKIT2	0x0033		/* PICkit 2 Microcontroller Programmer */
 
-/* Microdia / Sonix Techonology Co., Ltd. products */
+/* Microdia / Sonix Technology Co., Ltd. products */
 #define	USB_PRODUCT_MICRODIA_YUREX	0x1010		/* YUREX */
 
 /* Micronet Communications products */
Index: src/sys/dev/usb/usbdevs_data.h
diff -u src/sys/dev/usb/usbdevs_data.h:1.786 src/sys/dev/usb/usbdevs_data.h:1.787
--- src/sys/dev/usb/usbdevs_data.h:1.786	Sat Oct 16 05:39:32 2021
+++ src/sys/dev/usb/usbdevs_data.h	Sun Oct 17 20:40:20 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbdevs_data.h,v 1.786 2021/10/16 05:39:32 mrg Exp $	*/
+/*	$NetBSD: usbdevs_data.h,v 1.787 2021/10/17 20:40:20 andvar Exp $	*/
 
 /*
  * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.



CVS commit: src/sys/dev/usb

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:40:20 UTC 2021

Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.786 -r1.787 src/sys/dev/usb/usbdevs.h \
src/sys/dev/usb/usbdevs_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/pcmcia

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:33:05 UTC 2021

Modified Files:
src/sys/dev/pcmcia: pcmciadevs

Log Message:
s/Versin/Version/


To generate a diff of this commit:
cvs rdiff -u -r1.235 -r1.236 src/sys/dev/pcmcia/pcmciadevs

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/pcmcia/pcmciadevs
diff -u src/sys/dev/pcmcia/pcmciadevs:1.235 src/sys/dev/pcmcia/pcmciadevs:1.236
--- src/sys/dev/pcmcia/pcmciadevs:1.235	Sat Apr  6 04:52:44 2019
+++ src/sys/dev/pcmcia/pcmciadevs	Sun Oct 17 20:33:05 2021
@@ -1,4 +1,4 @@
-$NetBSD: pcmciadevs,v 1.235 2019/04/06 04:52:44 msaitoh Exp $
+$NetBSD: pcmciadevs,v 1.236 2021/10/17 20:33:05 andvar Exp $
 /* $FreeBSD: src/sys/dev/pccard/pccarddevs,v 1.20 2001/11/19 05:02:55 imp Exp $*/
 
 /*-
@@ -289,7 +289,7 @@ product LINKSYS ETHERFAST	0x0230 Linksys
 product LINKSYS ECARD_1		0x0265 Linksys EthernetCard or D-Link DE-650
 product LINKSYS COMBO_ECARD	0xc1ab Linksys Combo EthernetCard
 product LINKSYS2 IWN		0x1612 Instant Wireless Network PC Card
-product LINKSYS2 IWN3		0x1613 Instant Wireless Network PC Card, Versin 3
+product LINKSYS2 IWN3		0x1613 Instant Wireless Network PC Card, Version 3
 product LINKSYS2 WCF11		0x3301 Instant Wireless Network CF Card
 
 /* Lucent */



CVS commit: src/sys/dev/pcmcia

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:33:27 UTC 2021

Modified Files:
src/sys/dev/pcmcia: pcmciadevs.h pcmciadevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.234 -r1.235 src/sys/dev/pcmcia/pcmciadevs.h \
src/sys/dev/pcmcia/pcmciadevs_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/pcmcia

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:33:27 UTC 2021

Modified Files:
src/sys/dev/pcmcia: pcmciadevs.h pcmciadevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.234 -r1.235 src/sys/dev/pcmcia/pcmciadevs.h \
src/sys/dev/pcmcia/pcmciadevs_data.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/pcmcia/pcmciadevs.h
diff -u src/sys/dev/pcmcia/pcmciadevs.h:1.234 src/sys/dev/pcmcia/pcmciadevs.h:1.235
--- src/sys/dev/pcmcia/pcmciadevs.h:1.234	Fri Mar 16 01:58:42 2018
+++ src/sys/dev/pcmcia/pcmciadevs.h	Sun Oct 17 20:33:27 2021
@@ -1,10 +1,10 @@
-/*	$NetBSD: pcmciadevs.h,v 1.234 2018/03/16 01:58:42 sevan Exp $	*/
+/*	$NetBSD: pcmciadevs.h,v 1.235 2021/10/17 20:33:27 andvar Exp $	*/
 
 /*
  * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
  *
  * generated from:
- *	NetBSD: pcmciadevs,v 1.234 2018/03/16 01:49:15 sevan Exp
+ *	NetBSD: pcmciadevs,v 1.235 2019/04/06 04:52:44 msaitoh Exp
  */
 /* $FreeBSD: src/sys/dev/pccard/pccarddevs,v 1.20 2001/11/19 05:02:55 imp Exp $*/
 
@@ -38,8 +38,8 @@
  */
 
 /*
- * Use "make -f Makefile.pcmciadevs" to regenerate pcmicadevs.h and
- * pcmicadevs_data.h
+ * Use "make -f Makefile.pcmciadevs" to regenerate pcmciadevs.h and
+ * pcmciadevs_data.h
  */
 
 /*
Index: src/sys/dev/pcmcia/pcmciadevs_data.h
diff -u src/sys/dev/pcmcia/pcmciadevs_data.h:1.234 src/sys/dev/pcmcia/pcmciadevs_data.h:1.235
--- src/sys/dev/pcmcia/pcmciadevs_data.h:1.234	Fri Mar 16 01:58:42 2018
+++ src/sys/dev/pcmcia/pcmciadevs_data.h	Sun Oct 17 20:33:27 2021
@@ -1,10 +1,10 @@
-/*	$NetBSD: pcmciadevs_data.h,v 1.234 2018/03/16 01:58:42 sevan Exp $	*/
+/*	$NetBSD: pcmciadevs_data.h,v 1.235 2021/10/17 20:33:27 andvar Exp $	*/
 
 /*
  * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
  *
  * generated from:
- *	NetBSD: pcmciadevs,v 1.234 2018/03/16 01:49:15 sevan Exp
+ *	NetBSD: pcmciadevs,v 1.235 2019/04/06 04:52:44 msaitoh Exp
  */
 /* $FreeBSD: src/sys/dev/pccard/pccarddevs,v 1.20 2001/11/19 05:02:55 imp Exp $*/
 
@@ -705,7 +705,7 @@ struct pcmcia_knowndev pcmcia_knowndevs[
 	PCMCIA_CIS_LINKSYS2_IWN3,
 	0,
 	"The Linksys Group",
-	"Instant Wireless Network PC Card, Versin 3",	}
+	"Instant Wireless Network PC Card, Version 3",	}
 	,
 	{
 	PCMCIA_VENDOR_LINKSYS2, PCMCIA_PRODUCT_LINKSYS2_WCF11,



CVS commit: src/sys/dev/pcmcia

2021-10-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Sun Oct 17 20:33:05 UTC 2021

Modified Files:
src/sys/dev/pcmcia: pcmciadevs

Log Message:
s/Versin/Version/


To generate a diff of this commit:
cvs rdiff -u -r1.235 -r1.236 src/sys/dev/pcmcia/pcmciadevs

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



CVS commit: src/sys/dev/std

2021-10-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct 13 21:49:10 UTC 2021

Modified Files:
src/sys/dev/std: ieee1212reg.h

Log Message:
fix typos and wrong ISO/IEC standard number in reference description.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/std/ieee1212reg.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/std

2021-10-13 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct 13 21:49:10 UTC 2021

Modified Files:
src/sys/dev/std: ieee1212reg.h

Log Message:
fix typos and wrong ISO/IEC standard number in reference description.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/std/ieee1212reg.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/std/ieee1212reg.h
diff -u src/sys/dev/std/ieee1212reg.h:1.11 src/sys/dev/std/ieee1212reg.h:1.12
--- src/sys/dev/std/ieee1212reg.h:1.11	Mon Apr 28 20:23:58 2008
+++ src/sys/dev/std/ieee1212reg.h	Wed Oct 13 21:49:10 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ieee1212reg.h,v 1.11 2008/04/28 20:23:58 martin Exp $	*/
+/*	$NetBSD: ieee1212reg.h,v 1.12 2021/10/13 21:49:10 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -32,9 +32,9 @@
 #ifndef _DEV_STD_IEEE1212REG_H_
 #define _DEV_STD_IEEE1212REG_H_
 
-/* This file contains definitions from ISO/IEC 1312 or ANSI/IEEE Std 1212
- *	Informaton techonology
- *		Microprocessor systes
+/* This file contains definitions from ISO/IEC 13213 or ANSI/IEEE Std 1212
+ *	Information technology
+ *		Microprocessor systems
  *			Control and Status Registers (CSR)
  *			Architecture for microcomputer buses
  *	First edition 1994-10-05
@@ -195,7 +195,7 @@
 	"Textual-Descriptor", "Bus-Dependent-Info", "Module-Vendor-Id", \
 	"Module-Hw-Version", "Module-Spec-Id", "Module-Sw-Version", \
 	"Module-Dependent-Info", "Node-Vendor-Id", "Node-Hw_Version", \
-	"Node-Spec-Id", "Node-Sw-Verson", "Node-Capabilities", \
+	"Node-Spec-Id", "Node-Sw-Version", "Node-Capabilities", \
 	"Node-Unique-Id", "Node-Units-Extent", "Node-Memory-Extent", \
 	"Node-Dependent-Info", "Unit-Directory", "Unit-Spec-Id", \
 	"Unit-Sw-Version", "Unit-Dependent-Info", "Unit-Location", \



CVS commit: src

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 14:35:20 UTC 2021

Modified Files:
src/lib/libcurses: curses_cchar.3
src/share/man/man4: raid.4
src/share/man/man9: ucas.9
src/usr.bin/config: config.5

Log Message:
remove duplicate the article in documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libcurses/curses_cchar.3
cvs rdiff -u -r1.40 -r1.41 src/share/man/man4/raid.4
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/ucas.9
cvs rdiff -u -r1.46 -r1.47 src/usr.bin/config/config.5

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



CVS commit: src

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 14:35:20 UTC 2021

Modified Files:
src/lib/libcurses: curses_cchar.3
src/share/man/man4: raid.4
src/share/man/man9: ucas.9
src/usr.bin/config: config.5

Log Message:
remove duplicate the article in documentation.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libcurses/curses_cchar.3
cvs rdiff -u -r1.40 -r1.41 src/share/man/man4/raid.4
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/ucas.9
cvs rdiff -u -r1.46 -r1.47 src/usr.bin/config/config.5

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

Modified files:

Index: src/lib/libcurses/curses_cchar.3
diff -u src/lib/libcurses/curses_cchar.3:1.2 src/lib/libcurses/curses_cchar.3:1.3
--- src/lib/libcurses/curses_cchar.3:1.2	Sat Nov 24 11:04:39 2018
+++ src/lib/libcurses/curses_cchar.3	Mon Oct  4 14:35:20 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: curses_cchar.3,v 1.2 2018/11/24 11:04:39 wiz Exp $
+.\"	$NetBSD: curses_cchar.3,v 1.3 2021/10/04 14:35:20 andvar Exp $
 .\"
 .\" Copyright (c) 2018 Valery Ushakov
 .\" All rights reserved.
@@ -128,7 +128,7 @@ and color pair
 .Nm getchar
 called with null
 .Fa wch
-returns the the number of wide characters referenced by
+returns the number of wide characters referenced by
 .Fa wcval ,
 including the null terminator.
 .Pp

Index: src/share/man/man4/raid.4
diff -u src/share/man/man4/raid.4:1.40 src/share/man/man4/raid.4:1.41
--- src/share/man/man4/raid.4:1.40	Thu May 27 07:23:04 2021
+++ src/share/man/man4/raid.4	Mon Oct  4 14:35:20 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: raid.4,v 1.40 2021/05/27 07:23:04 mrg Exp $
+.\" $NetBSD: raid.4,v 1.41 2021/10/04 14:35:20 andvar Exp $
 .\"
 .\" Copyright (c) 1998 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -464,7 +464,7 @@ In 2018, support for 32-bit userland com
 In 2021, support for autoconfiguration from other-endian raid sets was added.
 .Pp
 Support for loading kernels from RAID 1 partitions was added for the
-pmax, alpha, i386, and vax ports in 2000, the the sgimips port in 2001,
+pmax, alpha, i386, and vax ports in 2000, the sgimips port in 2001,
 the sparc64 and amd64 ports in 2002, the arc port in 2005, the sparc,
 and landisk ports in 2006, the cobalt port in 2007, the ofppc port in 2008,
 the bebox port in 2010, the emips port in 2011, and the sandpoint port

Index: src/share/man/man9/ucas.9
diff -u src/share/man/man9/ucas.9:1.5 src/share/man/man9/ucas.9:1.6
--- src/share/man/man9/ucas.9:1.5	Mon Aug 10 09:30:21 2020
+++ src/share/man/man9/ucas.9	Mon Oct  4 14:35:20 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: ucas.9,v 1.5 2020/08/10 09:30:21 rin Exp $
+.\"	$NetBSD: ucas.9,v 1.6 2021/10/04 14:35:20 andvar Exp $
 .\"
 .\" Copyright (c) 2019 Jason R. Thorpe.
 .\" Copyright (c) 2011 YAMAMOTO Takashi,
@@ -129,7 +129,7 @@ interprocessor interrupts.
 .Pp
 If a particular platform wishes to use the generic implementation on
 uniprocessors but an optimized implementation on multiprocessors, the
-the platform should define
+platform should define
 .Dv __HAVE_UCAS_MP
 in
 .In machine/types.h

Index: src/usr.bin/config/config.5
diff -u src/usr.bin/config/config.5:1.46 src/usr.bin/config/config.5:1.47
--- src/usr.bin/config/config.5:1.46	Sat Sep 11 20:28:06 2021
+++ src/usr.bin/config/config.5	Mon Oct  4 14:35:20 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: config.5,v 1.46 2021/09/11 20:28:06 andvar Exp $
+.\" $NetBSD: config.5,v 1.47 2021/10/04 14:35:20 andvar Exp $
 .\"
 .\"  Copyright (c) 2006, 2007 The NetBSD Foundation.
 .\"  All rights reserved.
@@ -683,7 +683,7 @@ The
 is mandatory and only
 .Ic +=
 can be used.
-Not to be confused with the the confusingly similar variant of
+Not to be confused with the confusingly similar variant of
 .Ic makeoptions
 used in the selections section.
 .El



CVS commit: src/sys/arch

2021-10-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct  6 20:36:58 UTC 2021

Modified Files:
src/sys/arch/ews4800mips/stand/common: loader.c
src/sys/arch/hpc/stand/hpcboot/sh3/dev: sh.h
src/sys/arch/playstation2/ee: eevar.h
src/sys/arch/playstation2/playstation2: interrupt.c
src/sys/arch/sh3/include: devreg.h

Log Message:
s/embeded/embedded/ in comments and messages.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/ews4800mips/stand/common/loader.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/playstation2/ee/eevar.h
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/playstation2/playstation2/interrupt.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/sh3/include/devreg.h

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



CVS commit: src/sys/arch

2021-10-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct  6 20:36:58 UTC 2021

Modified Files:
src/sys/arch/ews4800mips/stand/common: loader.c
src/sys/arch/hpc/stand/hpcboot/sh3/dev: sh.h
src/sys/arch/playstation2/ee: eevar.h
src/sys/arch/playstation2/playstation2: interrupt.c
src/sys/arch/sh3/include: devreg.h

Log Message:
s/embeded/embedded/ in comments and messages.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/ews4800mips/stand/common/loader.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/playstation2/ee/eevar.h
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/playstation2/playstation2/interrupt.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/sh3/include/devreg.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/ews4800mips/stand/common/loader.c
diff -u src/sys/arch/ews4800mips/stand/common/loader.c:1.4 src/sys/arch/ews4800mips/stand/common/loader.c:1.5
--- src/sys/arch/ews4800mips/stand/common/loader.c:1.4	Mon Apr 28 20:23:18 2008
+++ src/sys/arch/ews4800mips/stand/common/loader.c	Wed Oct  6 20:36:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: loader.c,v 1.4 2008/04/28 20:23:18 martin Exp $	*/
+/*	$NetBSD: loader.c,v 1.5 2021/10/06 20:36:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -284,5 +284,5 @@ boot_usage(void)
 	printf("\tex).\n");
 	printf("\t Disk 0, Partition 10, /netbsd => sd0k:netbsd\n");
 	printf("\t NFS, /netbsd => nfs:netbsd\n");
-	printf("\t `kernel embeded in data section' => mem:\n");
+	printf("\t `kernel embedded in data section' => mem:\n");
 }

Index: src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h
diff -u src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h:1.5 src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h:1.6
--- src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h:1.5	Mon Apr 28 20:23:20 2008
+++ src/sys/arch/hpc/stand/hpcboot/sh3/dev/sh.h	Wed Oct  6 20:36:58 2021
@@ -1,4 +1,4 @@
-/* -*-C++-*-	$NetBSD: sh.h,v 1.5 2008/04/28 20:23:20 martin Exp $	*/
+/* -*-C++-*-	$NetBSD: sh.h,v 1.6 2021/10/06 20:36:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #define	_HPCBOOT_SH_DEV_SH_H_
 
 /*
- * SH3, SH4 embeded devices.
+ * SH3, SH4 embedded devices.
  */
 
 /*

Index: src/sys/arch/playstation2/ee/eevar.h
diff -u src/sys/arch/playstation2/ee/eevar.h:1.5 src/sys/arch/playstation2/ee/eevar.h:1.6
--- src/sys/arch/playstation2/ee/eevar.h:1.5	Sun Apr  3 10:03:34 2016
+++ src/sys/arch/playstation2/ee/eevar.h	Wed Oct  6 20:36:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: eevar.h,v 1.5 2016/04/03 10:03:34 martin Exp $	*/
+/*	$NetBSD: eevar.h,v 1.6 2021/10/06 20:36:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 /*
- * EE embeded device's memory mapped register access method.
+ * EE embedded device's memory mapped register access method.
  */
 
 #define _PLAYSTATION2_BUS_SPACE_PRIVATE

Index: src/sys/arch/playstation2/playstation2/interrupt.c
diff -u src/sys/arch/playstation2/playstation2/interrupt.c:1.17 src/sys/arch/playstation2/playstation2/interrupt.c:1.18
--- src/sys/arch/playstation2/playstation2/interrupt.c:1.17	Sat Jun  5 21:38:37 2021
+++ src/sys/arch/playstation2/playstation2/interrupt.c	Wed Oct  6 20:36:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: interrupt.c,v 1.17 2021/06/05 21:38:37 christos Exp $	*/
+/*	$NetBSD: interrupt.c,v 1.18 2021/10/06 20:36:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.17 2021/06/05 21:38:37 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.18 2021/10/06 20:36:58 andvar Exp $");
 
 #include "debug_playstation2.h"
 #if defined INTR_DEBUG && !defined GSFB_DEBUG_MONITOR
@@ -89,7 +89,7 @@ interrupt_init_bootstrap(void)
 	for (i = 0; i < _IPL_N; i++)
 		__icu_mask[i] = 0x;
 
-	/* initialize EE embeded device */
+	/* initialize EE embedded device */
 	timer_init();
 
 	/* clear all pending interrupt and disable all */

Index: src/sys/arch/sh3/include/devreg.h
diff -u src/sys/arch/sh3/include/devreg.h:1.6 src/sys/arch/sh3/include/devreg.h:1.7
--- src/sys/arch/sh3/include/devreg.h:1.6	Mon Apr 28 20:23:35 2008
+++ src/sys/arch/sh3/include/devreg.h	Wed Oct  6 20:36:58 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: devreg.h,v 1.6 2008/04/28 20:23:35 martin Exp $	*/
+/*	$NetBSD: devreg.h,v 1.7 2021/10/06 20:36:58 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 #ifndef _SH3_DEVREG_H_
 #define	_SH3_DEVREG_H_
 /*
- * SH embeded device register defines.
+ * SH embedded device register defines.
  */
 
 /*



CVS commit: src/sys

2021-10-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct  6 20:42:44 UTC 2021

Modified Files:
src/sys/dev/ic: ninjascsi32var.h
src/sys/net: if_media.c

Log Message:
s/acccess/access/


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/ic/ninjascsi32var.h
cvs rdiff -u -r1.52 -r1.53 src/sys/net/if_media.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-10-06 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Wed Oct  6 20:42:44 UTC 2021

Modified Files:
src/sys/dev/ic: ninjascsi32var.h
src/sys/net: if_media.c

Log Message:
s/acccess/access/


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/ic/ninjascsi32var.h
cvs rdiff -u -r1.52 -r1.53 src/sys/net/if_media.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/ic/ninjascsi32var.h
diff -u src/sys/dev/ic/ninjascsi32var.h:1.7 src/sys/dev/ic/ninjascsi32var.h:1.8
--- src/sys/dev/ic/ninjascsi32var.h:1.7	Sat Oct 27 17:18:22 2012
+++ src/sys/dev/ic/ninjascsi32var.h	Wed Oct  6 20:42:44 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ninjascsi32var.h,v 1.7 2012/10/27 17:18:22 chs Exp $	*/
+/*	$NetBSD: ninjascsi32var.h,v 1.8 2021/10/06 20:42:44 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2004, 2007 The NetBSD Foundation, Inc.
@@ -114,7 +114,7 @@ struct njsc32_cmd {
 	bus_dmamap_t		c_dmamap_xfer;
 };
 
-/* -1 for unaligned acccess */
+/* -1 for unaligned access */
 #define NJSC32_MAX_XFER	((NJSC32_NUM_SG - 1) << PGSHIFT)
 
 struct njsc32_softc {

Index: src/sys/net/if_media.c
diff -u src/sys/net/if_media.c:1.52 src/sys/net/if_media.c:1.53
--- src/sys/net/if_media.c:1.52	Sun Mar 15 23:04:51 2020
+++ src/sys/net/if_media.c	Wed Oct  6 20:42:44 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_media.c,v 1.52 2020/03/15 23:04:51 thorpej Exp $	*/
+/*	$NetBSD: if_media.c,v 1.53 2021/10/06 20:42:44 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2020 The NetBSD Foundation, Inc.
@@ -76,7 +76,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_media.c,v 1.52 2020/03/15 23:04:51 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_media.c,v 1.53 2021/10/06 20:42:44 andvar Exp $");
 
 #define	__IFMEDIA_PRIVATE
 
@@ -183,7 +183,7 @@ ifmedia_init_with_lock(struct ifmedia *i
 	 *
 	 *	!if_is_mpsafe(ifp) || ((if_is_mpsafe(ifp) && lock != NULL)
 	 *
-	 * ...but we don't have acccess to the ifnet here.
+	 * ...but we don't have access to the ifnet here.
 	 */
 
 	TAILQ_INIT(>ifm_list);



CVS commit: src

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 20:25:20 UTC 2021

Modified Files:
src/share/man/man9: ucas.9
src/sys/arch/vax/vax: subr.S

Log Message:
s/userpsace/userspace/


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man9/ucas.9
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/vax/vax/subr.S

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



CVS commit: src

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 20:25:20 UTC 2021

Modified Files:
src/share/man/man9: ucas.9
src/sys/arch/vax/vax: subr.S

Log Message:
s/userpsace/userspace/


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man9/ucas.9
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/vax/vax/subr.S

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/man9/ucas.9
diff -u src/share/man/man9/ucas.9:1.6 src/share/man/man9/ucas.9:1.7
--- src/share/man/man9/ucas.9:1.6	Mon Oct  4 14:35:20 2021
+++ src/share/man/man9/ucas.9	Mon Oct  4 20:25:20 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: ucas.9,v 1.6 2021/10/04 14:35:20 andvar Exp $
+.\"	$NetBSD: ucas.9,v 1.7 2021/10/04 20:25:20 andvar Exp $
 .\"
 .\" Copyright (c) 2019 Jason R. Thorpe.
 .\" Copyright (c) 2011 YAMAMOTO Takashi,
@@ -105,7 +105,7 @@ load-locked / store-conditional code seq
 .It
 Can be used on uniprocessor and multiprocessor systems.
 .It
-Can operate across the kernel-userpsace boundary.
+Can operate across the kernel-userspace boundary.
 .El
 .Pp
 If

Index: src/sys/arch/vax/vax/subr.S
diff -u src/sys/arch/vax/vax/subr.S:1.38 src/sys/arch/vax/vax/subr.S:1.39
--- src/sys/arch/vax/vax/subr.S:1.38	Tue Jun 30 16:20:02 2020
+++ src/sys/arch/vax/vax/subr.S	Mon Oct  4 20:25:20 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr.S,v 1.38 2020/06/30 16:20:02 maxv Exp $	   */
+/*	$NetBSD: subr.S,v 1.39 2021/10/04 20:25:20 andvar Exp $	   */
 
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@@ -505,7 +505,7 @@ ENTRY(copyoutstr, 0)
 	.align	2
 
 #define	UFETCHSTORE_PROLOGUE		 \
-	tstl	4(%ap)			/* uaddr in userpsace? */	;\
+	tstl	4(%ap)			/* uaddr in userspace? */	;\
 	blss	1f			/* nope, fault */		;\
 	mfpr	$PR_ESP,%r1		/* _onfault is in ESP */	;\
 	movab	2f,(%r1)		/* set pcb_onfault */



CVS commit: src/sys

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 20:48:06 UTC 2021

Modified Files:
src/sys/arch/amiga/dev: grf_cl.c
src/sys/arch/arm/imx: imx23_digfilt.c
src/sys/arch/atari/dev: atari5380.c
src/sys/dev/ieee1394: firewire.c

Log Message:
follow fcambus steps by fixing typos for "unknown" in few more error messages.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/arch/amiga/dev/grf_cl.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/imx/imx23_digfilt.c
cvs rdiff -u -r1.64 -r1.65 src/sys/arch/atari/dev/atari5380.c
cvs rdiff -u -r1.52 -r1.53 src/sys/dev/ieee1394/firewire.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/amiga/dev/grf_cl.c
diff -u src/sys/arch/amiga/dev/grf_cl.c:1.52 src/sys/arch/amiga/dev/grf_cl.c:1.53
--- src/sys/arch/amiga/dev/grf_cl.c:1.52	Sat Aug  7 16:18:41 2021
+++ src/sys/arch/amiga/dev/grf_cl.c	Mon Oct  4 20:48:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: grf_cl.c,v 1.52 2021/08/07 16:18:41 thorpej Exp $ */
+/*	$NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $ */
 
 /*
  * Copyright (c) 1997 Klaus Burkert
@@ -36,7 +36,7 @@
 #include "opt_amigacons.h"
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.52 2021/08/07 16:18:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $");
 
 #include "grfcl.h"
 #include "ite.h"
@@ -1158,7 +1158,7 @@ cl_getcmap(struct grf_softc *gfp, struct
  */
 
 /*
- * The source for the above comment is somewhat unknow to me.
+ * The source for the above comment is somewhat unknown to me.
  * The Spectrum, Piccolo and PiccoloSD64 have the analog Red and Blue
  * lines swapped. In 24BPP this provides RGB instead of BGR as it would
  * be native to the chipset. This requires special programming for the

Index: src/sys/arch/arm/imx/imx23_digfilt.c
diff -u src/sys/arch/arm/imx/imx23_digfilt.c:1.3 src/sys/arch/arm/imx/imx23_digfilt.c:1.4
--- src/sys/arch/arm/imx/imx23_digfilt.c:1.3	Sun Apr 19 08:18:19 2020
+++ src/sys/arch/arm/imx/imx23_digfilt.c	Mon Oct  4 20:48:05 2021
@@ -1,4 +1,4 @@
-/* $Id: imx23_digfilt.c,v 1.3 2020/04/19 08:18:19 isaki Exp $ */
+/* $Id: imx23_digfilt.c,v 1.4 2021/10/04 20:48:05 andvar Exp $ */
 
 /*
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -1040,7 +1040,7 @@ digfilt_ao_set_rate(struct digfilt_softc
 		__SHIFTIN(0x0E00, HW_AUDIOOUT_DACSRR_SRC_FRAC));
 		break;
 	default:
-		aprint_error_dev(sc->sc_dev, "uknown sample rate: %d\n", sr);
+		aprint_error_dev(sc->sc_dev, "unknown sample rate: %d\n", sr);
 	case 44100:
 		val |= (__SHIFTIN(0x1 ,HW_AUDIOOUT_DACSRR_BASEMULT) |
 		__SHIFTIN(0x0, HW_AUDIOOUT_DACSRR_SRC_HOLD) |

Index: src/sys/arch/atari/dev/atari5380.c
diff -u src/sys/arch/atari/dev/atari5380.c:1.64 src/sys/arch/atari/dev/atari5380.c:1.65
--- src/sys/arch/atari/dev/atari5380.c:1.64	Fri Dec 27 09:41:49 2019
+++ src/sys/arch/atari/dev/atari5380.c	Mon Oct  4 20:48:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: atari5380.c,v 1.64 2019/12/27 09:41:49 msaitoh Exp $	*/
+/*	$NetBSD: atari5380.c,v 1.65 2021/10/04 20:48:05 andvar Exp $	*/
 
 /*
  * Copyright (c) 1995 Leo Weppelman.
@@ -26,7 +26,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.64 2019/12/27 09:41:49 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.65 2021/10/04 20:48:05 andvar Exp $");
 
 #include "opt_atariscsi.h"
 
@@ -900,7 +900,7 @@ falcon_get_dma_result(SC_REQ *reqp, u_lo
 		/*
 		 * Misc. DMA-error according to Atari...
 		 */
-		ncr_tprint(reqp, "Unknow ST-SCSI error near 0x%x\n",
+		ncr_tprint(reqp, "Unknown ST-SCSI error near 0x%x\n",
 		st_dmaaddr_get());
 		reqp->xs->error = XS_DRIVER_STUFFUP;
 		rv = 1;

Index: src/sys/dev/ieee1394/firewire.c
diff -u src/sys/dev/ieee1394/firewire.c:1.52 src/sys/dev/ieee1394/firewire.c:1.53
--- src/sys/dev/ieee1394/firewire.c:1.52	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ieee1394/firewire.c	Mon Oct  4 20:48:05 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: firewire.c,v 1.52 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: firewire.c,v 1.53 2021/10/04 20:48:05 andvar Exp $	*/
 /*-
  * Copyright (c) 2003 Hidetoshi Shimokawa
  * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
@@ -37,7 +37,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: firewire.c,v 1.52 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: firewire.c,v 1.53 2021/10/04 20:48:05 andvar Exp $");
 
 #include 
 #include 
@@ -1202,7 +1202,7 @@ fw_rcv(struct fw_rcv_buf *rb)
 		return;
 
 	default:
-		aprint_error_dev(rb->fc->bdev, "unknow tcode %d\n", tcode);
+		aprint_error_dev(rb->fc->bdev, "unknown tcode %d\n", tcode);
 		break;
 	}
 }



CVS commit: src/sys

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 20:48:06 UTC 2021

Modified Files:
src/sys/arch/amiga/dev: grf_cl.c
src/sys/arch/arm/imx: imx23_digfilt.c
src/sys/arch/atari/dev: atari5380.c
src/sys/dev/ieee1394: firewire.c

Log Message:
follow fcambus steps by fixing typos for "unknown" in few more error messages.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/arch/amiga/dev/grf_cl.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/imx/imx23_digfilt.c
cvs rdiff -u -r1.64 -r1.65 src/sys/arch/atari/dev/atari5380.c
cvs rdiff -u -r1.52 -r1.53 src/sys/dev/ieee1394/firewire.c

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



CVS commit: src

2021-10-04 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Mon Oct  4 21:02:40 UTC 2021

Modified Files:
src: build.sh
src/common/lib/libc/arch/i386/string: strlen.S
src/lib/libresolv: dst_api.c
src/sys/arch/alpha/alpha: fp_complete.c
src/sys/arch/mips/adm5120/dev: ahci.c
src/sys/arch/mips/include: mips_param.h
src/sys/arch/sparc64/sparc64: autoconf.c
src/sys/dev/usb: uhci.c
src/sys/kern: subr_cpu.c

Log Message:
remove duplicate the article in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.358 -r1.359 src/build.sh
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/arch/i386/string/strlen.S
cvs rdiff -u -r1.4 -r1.5 src/lib/libresolv/dst_api.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/alpha/alpha/fp_complete.c
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/mips/adm5120/dev/ahci.c
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/mips/include/mips_param.h
cvs rdiff -u -r1.236 -r1.237 src/sys/arch/sparc64/sparc64/autoconf.c
cvs rdiff -u -r1.306 -r1.307 src/sys/dev/usb/uhci.c
cvs rdiff -u -r1.16 -r1.17 src/sys/kern/subr_cpu.c

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

Modified files:

Index: src/build.sh
diff -u src/build.sh:1.358 src/build.sh:1.359
--- src/build.sh:1.358	Sat Sep 18 01:47:07 2021
+++ src/build.sh	Mon Oct  4 21:02:40 2021
@@ -1,5 +1,5 @@
 #! /usr/bin/env sh
-#	$NetBSD: build.sh,v 1.358 2021/09/18 01:47:07 christos Exp $
+#	$NetBSD: build.sh,v 1.359 2021/10/04 21:02:40 andvar Exp $
 #
 # Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1974,7 +1974,7 @@ createmakewrapper()
 	eval cat < /dev/null || date -u -d "@$1"
 }
 

Index: src/common/lib/libc/arch/i386/string/strlen.S
diff -u src/common/lib/libc/arch/i386/string/strlen.S:1.2 src/common/lib/libc/arch/i386/string/strlen.S:1.3
--- src/common/lib/libc/arch/i386/string/strlen.S:1.2	Sat Mar 22 19:38:46 2014
+++ src/common/lib/libc/arch/i386/string/strlen.S	Mon Oct  4 21:02:40 2021
@@ -6,7 +6,7 @@
 #include 
 
 #if defined(LIBC_SCCS)
-	RCSID("$NetBSD: strlen.S,v 1.2 2014/03/22 19:38:46 jakllsch Exp $")
+	RCSID("$NetBSD: strlen.S,v 1.3 2021/10/04 21:02:40 andvar Exp $")
 #endif
 
 ENTRY(strlen)
@@ -81,7 +81,7 @@ ENTRY(strlen)
 	 * presented above, code that uses it will be faster as long as
 	 * the rate of false positives is low.
 	 *
-	 * This is likely, because the the false positive can only occur
+	 * This is likely, because the false positive can only occur
 	 * if the most siginificant bit of a byte within the word is set.
 	 * The expression will never fail for typical 7-bit ASCII strings.
 	 *

Index: src/lib/libresolv/dst_api.c
diff -u src/lib/libresolv/dst_api.c:1.4 src/lib/libresolv/dst_api.c:1.5
--- src/lib/libresolv/dst_api.c:1.4	Thu Sep 16 22:19:10 2021
+++ src/lib/libresolv/dst_api.c	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $	*/
+/*	$NetBSD: dst_api.c,v 1.5 2021/10/04 21:02:40 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.4 2021/09/16 22:19:10 andvar Exp $");
+__RCSID("$NetBSD: dst_api.c,v 1.5 2021/10/04 21:02:40 andvar Exp $");
 #endif
 
 
@@ -640,7 +640,7 @@ dst_s_write_public_key(const DST_KEY *ke
  *	key structure.
  *  Paramters
  *	len	 Length of the RDATA of the KEY RR RDATA
- *	rdata	 A pointer to the the KEY RR RDATA.
+ *	rdata	 A pointer to the KEY RR RDATA.
  *	in_name Key name to be stored in key structure.
  *  Returns
  *	NULL	Failure

Index: src/sys/arch/alpha/alpha/fp_complete.c
diff -u src/sys/arch/alpha/alpha/fp_complete.c:1.27 src/sys/arch/alpha/alpha/fp_complete.c:1.28
--- src/sys/arch/alpha/alpha/fp_complete.c:1.27	Fri Jul 23 03:57:06 2021
+++ src/sys/arch/alpha/alpha/fp_complete.c	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fp_complete.c,v 1.27 2021/07/23 03:57:06 thorpej Exp $ */
+/* $NetBSD: fp_complete.c,v 1.28 2021/10/04 21:02:40 andvar Exp $ */
 
 /*-
  * Copyright (c) 2001 Ross Harvey
@@ -37,7 +37,7 @@
 
 #include 			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: fp_complete.c,v 1.27 2021/07/23 03:57:06 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fp_complete.c,v 1.28 2021/10/04 21:02:40 andvar Exp $");
 
 #include 
 #include 
@@ -648,7 +648,7 @@ alpha_fp_complete_at(unsigned long trigg
 	 * for it, and so we don't have to lock any memory locations or
 	 * pass a third parameter to every SoftFloat entry point.
 	 *
-	 * N.B. the rounding mode field of the the FLOAT format instructions
+	 * N.B. the rounding mode field of the FLOAT format instructions
 	 * matches that of the FPCR *except* for the value 3, which means
 	 * "dynamic" rounding mode (i.e. what is programmed into the FPCR).
 	 */

Index: 

  1   2   3   4   5   6   7   8   9   10   >