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 <sys/cdefs.h>
-__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 <stdio.h>
 #include <stdlib.h>
@@ -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: src/sys/arch/acorn32/stand/boot32/start.S
diff -u src/sys/arch/acorn32/stand/boot32/start.S:1.4 src/sys/arch/acorn32/stand/boot32/start.S:1.5
--- src/sys/arch/acorn32/stand/boot32/start.S:1.4	Sat Feb  6 21:45:38 2021
+++ src/sys/arch/acorn32/stand/boot32/start.S	Fri Aug 20 20:25:26 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: start.S,v 1.4 2021/02/06 21:45:38 joerg Exp $	*/
+/*	$NetBSD: start.S,v 1.5 2021/08/20 20:25:26 andvar Exp $	*/
 
 /*
  * Copyright (c) 2002 Reinoud Zandijk
@@ -47,7 +47,7 @@ ENTRY(relocate_code)
 	ldmfd	sp!, {r8-r12}
 
 	/*
-	 * determine processor architecture version. This is nessisary for the
+	 * determine processor architecture version. This is necessary for the
 	 * correct coprocessor instruction.
 	 */
 	mrc	p15, 0, r0, c0, c0, 0					/* read CPU id in r0			*/

Index: src/sys/arch/algor/conf/P5064
diff -u src/sys/arch/algor/conf/P5064:1.94 src/sys/arch/algor/conf/P5064:1.95
--- src/sys/arch/algor/conf/P5064:1.94	Tue Jun 29 10:22:34 2021
+++ src/sys/arch/algor/conf/P5064	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: P5064,v 1.94 2021/06/29 10:22:34 nia Exp $
+#	$NetBSD: P5064,v 1.95 2021/08/20 20:25:27 andvar Exp $
 #
 # Algorithmics P-5064 kernel.
 #
@@ -7,7 +7,7 @@ include	"arch/algor/conf/std.algor"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"P5064-$Revision: 1.94 $"
+#ident 		"P5064-$Revision: 1.95 $"
 
 maxusers 32
 
@@ -86,7 +86,7 @@ options 	SCSIVERBOSE		# Verbose SCSI err
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON) doens't enable the IDE
+# Do this if your firmware (usually PMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to
 # ignore them).
 options 	PCI_NETBSD_ENABLE_IDE=0x1

Index: src/sys/arch/arm/iomd/vidcvideo.c
diff -u src/sys/arch/arm/iomd/vidcvideo.c:1.47 src/sys/arch/arm/iomd/vidcvideo.c:1.48
--- src/sys/arch/arm/iomd/vidcvideo.c:1.47	Sat Aug  7 16:18:44 2021
+++ src/sys/arch/arm/iomd/vidcvideo.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: vidcvideo.c,v 1.47 2021/08/07 16:18:44 thorpej Exp $ */
+/* $NetBSD: vidcvideo.c,v 1.48 2021/08/20 20:25:27 andvar Exp $ */
 
 /*
  * Copyright (c) 2001 Reinoud Zandijk
@@ -30,7 +30,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.47 2021/08/07 16:18:44 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.48 2021/08/20 20:25:27 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -804,7 +804,7 @@ static void vv_copyrows(void *id, int sr
 		ri->ri_bits = vidcvideo_hwscroll(offset);
 		vidcvideo_progr_scroll();	/* sadistic ; shouldnt this be on vsync? */
 
-		/* wipe out remains of the screen if nessisary */
+		/* wipe out remains of the screen if necessary */
 		if (ri->ri_emuheight != ri->ri_height)
 			vv_eraserows(id, ri->ri_rows, 1, 0);
 		return;

Index: src/sys/arch/arm/sunxi/sunxi_debe.c
diff -u src/sys/arch/arm/sunxi/sunxi_debe.c:1.14 src/sys/arch/arm/sunxi/sunxi_debe.c:1.15
--- src/sys/arch/arm/sunxi/sunxi_debe.c:1.14	Sat Aug  7 16:18:45 2021
+++ src/sys/arch/arm/sunxi/sunxi_debe.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_debe.c,v 1.14 2021/08/07 16:18:45 thorpej Exp $ */
+/* $NetBSD: sunxi_debe.c,v 1.15 2021/08/20 20:25:27 andvar Exp $ */
 
 /*-
  * Copyright (c) 2018 Manuel Bouyer <bou...@antioche.eu.org>
@@ -38,7 +38,7 @@
 #define SUNXI_DEBE_CURMAX	64
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.14 2021/08/07 16:18:45 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.15 2021/08/20 20:25:27 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -288,7 +288,7 @@ sunxi_debe_ep_connect(device_t self, str
 		 */
 		if (sc->sc_unit != -1 && rep_idx != -1 &&
 		    sc->sc_unit != rep_idx) {
-			aprint_error_dev(self, ": remote id %d doens't match"
+			aprint_error_dev(self, ": remote id %d doesn't match"
 			    " discovered unit number %d\n",
 			    rep_idx, sc->sc_unit);
 			return;

Index: src/sys/arch/arm/sunxi/sunxi_tcon.c
diff -u src/sys/arch/arm/sunxi/sunxi_tcon.c:1.12 src/sys/arch/arm/sunxi/sunxi_tcon.c:1.13
--- src/sys/arch/arm/sunxi/sunxi_tcon.c:1.12	Thu Aug 19 20:56:36 2021
+++ src/sys/arch/arm/sunxi/sunxi_tcon.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $ */
+/* $NetBSD: sunxi_tcon.c,v 1.13 2021/08/20 20:25:27 andvar Exp $ */
 
 /*-
  * Copyright (c) 2018 Manuel Bouyer <bou...@antioche.eu.org>
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.13 2021/08/20 20:25:27 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -268,7 +268,7 @@ sunxi_tcon_ep_connect(device_t self, str
 		 */
 		if (sc->sc_unit != -1 && rep_idx != -1 &&
 		    sc->sc_unit != rep_idx) {
-			aprint_error_dev(self, ": remote id %d doens't match"
+			aprint_error_dev(self, ": remote id %d doesn't match"
 			    " discovered unit number %d\n",
 			    rep_idx, sc->sc_unit);
 			return;
@@ -829,7 +829,7 @@ sunxi_tcon1_set_videomode(device_t dev, 
 	}
 }
 
-/* check if this tcon is the console chosen by firmare */
+/* check if this tcon is the console chosen by firmware */
 bool
 sunxi_tcon_is_console(device_t dev, const char *pipeline)
 {

Index: src/sys/arch/evbmips/conf/AP30
diff -u src/sys/arch/evbmips/conf/AP30:1.41 src/sys/arch/evbmips/conf/AP30:1.42
--- src/sys/arch/evbmips/conf/AP30:1.41	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/AP30	Fri Aug 20 20:25:27 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: AP30,v 1.41 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: AP30,v 1.42 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.atheros"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"AP30-$Revision: 1.41 $"
+#ident 		"AP30-$Revision: 1.42 $"
 
 maxusers	32
 
@@ -109,7 +109,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 #options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbmips/conf/DB120
diff -u src/sys/arch/evbmips/conf/DB120:1.24 src/sys/arch/evbmips/conf/DB120:1.25
--- src/sys/arch/evbmips/conf/DB120:1.24	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/DB120	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: DB120,v 1.24 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: DB120,v 1.25 2021/08/20 20:25:27 andvar Exp $
 #
 # Qualcomm Atheros AR9344 DB120 evaluation board.
 #
@@ -7,7 +7,7 @@ include 	"arch/evbmips/conf/std.atheros"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"DB120-$Revision: 1.24 $"
+#ident 		"DB120-$Revision: 1.25 $"
 
 maxusers	32
 
@@ -118,7 +118,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 #options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbmips/conf/MALTA
diff -u src/sys/arch/evbmips/conf/MALTA:1.103 src/sys/arch/evbmips/conf/MALTA:1.104
--- src/sys/arch/evbmips/conf/MALTA:1.103	Thu Jan 21 06:51:54 2021
+++ src/sys/arch/evbmips/conf/MALTA	Fri Aug 20 20:25:27 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: MALTA,v 1.103 2021/01/21 06:51:54 nia Exp $
+#	$NetBSD: MALTA,v 1.104 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.malta"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"MALTA-$Revision: 1.103 $"
+#ident 		"MALTA-$Revision: 1.104 $"
 
 maxusers	32
 
@@ -110,7 +110,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbmips/conf/MERAKI
diff -u src/sys/arch/evbmips/conf/MERAKI:1.35 src/sys/arch/evbmips/conf/MERAKI:1.36
--- src/sys/arch/evbmips/conf/MERAKI:1.35	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/MERAKI	Fri Aug 20 20:25:27 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: MERAKI,v 1.35 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: MERAKI,v 1.36 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.meraki"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"MERAKI-$Revision: 1.35 $"
+#ident 		"MERAKI-$Revision: 1.36 $"
 
 maxusers	32
 
@@ -110,7 +110,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 #options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbmips/conf/RB433UAH
diff -u src/sys/arch/evbmips/conf/RB433UAH:1.21 src/sys/arch/evbmips/conf/RB433UAH:1.22
--- src/sys/arch/evbmips/conf/RB433UAH:1.21	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/RB433UAH	Fri Aug 20 20:25:27 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: RB433UAH,v 1.21 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: RB433UAH,v 1.22 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.atheros"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"RB433UAH-$Revision: 1.21 $"
+#ident 		"RB433UAH-$Revision: 1.22 $"
 
 maxusers	32
 
@@ -110,7 +110,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 #options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbmips/conf/WGT624V3
diff -u src/sys/arch/evbmips/conf/WGT624V3:1.31 src/sys/arch/evbmips/conf/WGT624V3:1.32
--- src/sys/arch/evbmips/conf/WGT624V3:1.31	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/WGT624V3	Fri Aug 20 20:25:27 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: WGT624V3,v 1.31 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: WGT624V3,v 1.32 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.atheros"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident 		"WGT624V3-$Revision: 1.31 $"
+#ident 		"WGT624V3-$Revision: 1.32 $"
 
 maxusers	32
 
@@ -111,7 +111,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 #options 	PCI_NETBSD_ENABLE_IDE=0x1
 
Index: src/sys/arch/evbmips/conf/XLSATX
diff -u src/sys/arch/evbmips/conf/XLSATX:1.31 src/sys/arch/evbmips/conf/XLSATX:1.32
--- src/sys/arch/evbmips/conf/XLSATX:1.31	Sun Sep 27 13:48:50 2020
+++ src/sys/arch/evbmips/conf/XLSATX	Fri Aug 20 20:25:27 2021
@@ -1,8 +1,8 @@
-#	$NetBSD: XLSATX,v 1.31 2020/09/27 13:48:50 roy Exp $
+#	$NetBSD: XLSATX,v 1.32 2021/08/20 20:25:27 andvar Exp $
 
 include 	"arch/evbmips/conf/std.rmixl"
 
-#ident 		"XLSATX-$Revision: 1.31 $"
+#ident 		"XLSATX-$Revision: 1.32 $"
 
 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
@@ -114,7 +114,7 @@ options 	MIIVERBOSE	# verbose PHY autoco
 # Bitmask for enabling the PCI IDE channels in the southbridge.
 # Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
 #
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
 # channels for you (thus causing the NetBSD `pciide' driver to ignore them).
 options 	PCI_NETBSD_ENABLE_IDE=0x1
 

Index: src/sys/arch/evbppc/virtex/dev/xlcom.c
diff -u src/sys/arch/evbppc/virtex/dev/xlcom.c:1.11 src/sys/arch/evbppc/virtex/dev/xlcom.c:1.12
--- src/sys/arch/evbppc/virtex/dev/xlcom.c:1.11	Fri Jul 25 08:10:33 2014
+++ src/sys/arch/evbppc/virtex/dev/xlcom.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/* 	$NetBSD: xlcom.c,v 1.11 2014/07/25 08:10:33 dholland Exp $ */
+/* 	$NetBSD: xlcom.c,v 1.12 2021/08/20 20:25:27 andvar Exp $ */
 
 /*
  * Copyright (c) 2006 Jachym Holecek
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xlcom.c,v 1.11 2014/07/25 08:10:33 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xlcom.c,v 1.12 2021/08/20 20:25:27 andvar Exp $");
 
 #include "opt_kgdb.h"
 
@@ -357,7 +357,7 @@ xlcom_recv_chunk(struct xlcom_softc *sc)
 		stat = bus_space_read_4(sc->sc_iot, sc->sc_ioh, XLCOM_STAT);
 	}
 
-	/* Shedule completion hook if we received any. */
+	/* Schedule completion hook if we received any. */
 	if (n != sc->sc_ravail)
 		softint_schedule(sc->sc_rx_soft);
 }

Index: src/sys/arch/powerpc/powerpc/ofwreal.S
diff -u src/sys/arch/powerpc/powerpc/ofwreal.S:1.15 src/sys/arch/powerpc/powerpc/ofwreal.S:1.16
--- src/sys/arch/powerpc/powerpc/ofwreal.S:1.15	Mon Jul  6 09:34:18 2020
+++ src/sys/arch/powerpc/powerpc/ofwreal.S	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ofwreal.S,v 1.15 2020/07/06 09:34:18 rin Exp $	*/
+/*	$NetBSD: ofwreal.S,v 1.16 2021/08/20 20:25:27 andvar Exp $	*/
 
 /*
  * Copyright (C) 1996 Wolfgang Solfrank.
@@ -128,7 +128,7 @@ fwentry:
 	mtmsr	%r4
 	isync
 
-	lis	%r3,fwsave@ha		/* save mmu values of firmare */
+	lis	%r3,fwsave@ha		/* save mmu values of firmware */
 	addi	%r3,%r3,fwsave@l	/* (might not be necessary, but... */
 	bl	savemmu
 

Index: src/sys/arch/shark/stand/ofwboot/boot.c
diff -u src/sys/arch/shark/stand/ofwboot/boot.c:1.9 src/sys/arch/shark/stand/ofwboot/boot.c:1.10
--- src/sys/arch/shark/stand/ofwboot/boot.c:1.9	Thu Jul  7 06:55:38 2016
+++ src/sys/arch/shark/stand/ofwboot/boot.c	Fri Aug 20 20:25:27 2021
@@ -1,5 +1,5 @@
 #define	DEBUG
-/*	$NetBSD: boot.c,v 1.9 2016/07/07 06:55:38 msaitoh Exp $	*/
+/*	$NetBSD: boot.c,v 1.10 2021/08/20 20:25:27 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -254,7 +254,7 @@ main(void)
  loaded:
 	/*
 	 * Okay, kernel is loaded, free the extra memory at the end.
-	 * Round to the ARM OpenFirmare page size (4k).
+	 * Round to the ARM OpenFirmware page size (4k).
 	 */
 	cp = (char *) ((marks[MARK_END] + 0xfff) & ~0xfff);
 	size = (u_long) (endbuf - cp);

Index: src/sys/dev/dm/dm_ioctl.c
diff -u src/sys/dev/dm/dm_ioctl.c:1.53 src/sys/dev/dm/dm_ioctl.c:1.54
--- src/sys/dev/dm/dm_ioctl.c:1.53	Sat Jul 24 21:31:37 2021
+++ src/sys/dev/dm/dm_ioctl.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: dm_ioctl.c,v 1.53 2021/07/24 21:31:37 andvar Exp $      */
+/* $NetBSD: dm_ioctl.c,v 1.54 2021/08/20 20:25:27 andvar Exp $      */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.53 2021/07/24 21:31:37 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.54 2021/08/20 20:25:27 andvar Exp $");
 
 /*
  * Locking is used to synchronise between ioctl calls and between dm_table's
@@ -557,7 +557,7 @@ dm_dev_resume_ioctl(prop_dictionary_t dm
 
 /*
  * Table management routines
- * lvm2tools doens't send name/uuid to kernel with table
+ * lvm2tools doesn't send name/uuid to kernel with table
  * for lookup I have to use minor number.
  */
 

Index: src/sys/dev/dm/dm_table.c
diff -u src/sys/dev/dm/dm_table.c:1.19 src/sys/dev/dm/dm_table.c:1.20
--- src/sys/dev/dm/dm_table.c:1.19	Tue Dec 31 10:30:30 2019
+++ src/sys/dev/dm/dm_table.c	Fri Aug 20 20:25:27 2021
@@ -1,4 +1,4 @@
-/*        $NetBSD: dm_table.c,v 1.19 2019/12/31 10:30:30 tkusumi Exp $      */
+/*        $NetBSD: dm_table.c,v 1.20 2021/08/20 20:25:27 andvar Exp $      */
 
 /*
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.19 2019/12/31 10:30:30 tkusumi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.20 2021/08/20 20:25:27 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -326,7 +326,7 @@ dm_table_head_destroy(dm_table_head_t *h
 
 	KASSERT(!mutex_owned(&head->table_mtx));
 	KASSERT(!cv_has_waiters(&head->table_cv));
-	/* tables doens't exists when I call this routine, therefore it
+	/* tables don't exist when I call this routine, therefore it
 	 * doesn't make sense to have io_cnt != 0 */
 	KASSERT(head->io_cnt == 0);
 

Index: src/sys/dev/ic/ne2000.c
diff -u src/sys/dev/ic/ne2000.c:1.76 src/sys/dev/ic/ne2000.c:1.77
--- src/sys/dev/ic/ne2000.c:1.76	Sun Jan 27 02:08:42 2019
+++ src/sys/dev/ic/ne2000.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ne2000.c,v 1.76 2019/01/27 02:08:42 pgoyette Exp $	*/
+/*	$NetBSD: ne2000.c,v 1.77 2021/08/20 20:25:28 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ne2000.c,v 1.76 2019/01/27 02:08:42 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ne2000.c,v 1.77 2021/08/20 20:25:28 andvar Exp $");
 
 #include "rtl80x9.h"
 
@@ -207,7 +207,7 @@ ne2000_attach(struct ne2000_softc *nsc, 
 		dsc->sc_reg_map[i] = i;
 
 	/*
-	 * NIC memory doens't start at zero on an NE board.
+	 * NIC memory doesn't start at zero on an NE board.
 	 * The start address is tied to the bus width.
 	 */
 #ifdef GWETHER

Index: src/sys/dev/mii/lxtphy.c
diff -u src/sys/dev/mii/lxtphy.c:1.55 src/sys/dev/mii/lxtphy.c:1.56
--- src/sys/dev/mii/lxtphy.c:1.55	Sun Mar 15 23:04:50 2020
+++ src/sys/dev/mii/lxtphy.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: lxtphy.c,v 1.55 2020/03/15 23:04:50 thorpej Exp $	*/
+/*	$NetBSD: lxtphy.c,v 1.56 2021/08/20 20:25:28 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lxtphy.c,v 1.55 2020/03/15 23:04:50 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lxtphy.c,v 1.56 2021/08/20 20:25:28 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -238,7 +238,7 @@ lxtphy_status(struct mii_softc *sc)
 	/*
 	 * Get link status from the CSR; we need to read the CSR
 	 * for media type anyhow, and the link status in the CSR
-	 * doens't latch, so fewer register reads are required.
+	 * doesn't latch, so fewer register reads are required.
 	 */
 	PHY_READ(sc, MII_LXTPHY_CSR, &csr);
 	if (csr & CSR_LINK)

Index: src/sys/dev/pci/auixp.c
diff -u src/sys/dev/pci/auixp.c:1.50 src/sys/dev/pci/auixp.c:1.51
--- src/sys/dev/pci/auixp.c:1.50	Fri Jul  3 12:39:54 2020
+++ src/sys/dev/pci/auixp.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: auixp.c,v 1.50 2020/07/03 12:39:54 isaki Exp $ */
+/* $NetBSD: auixp.c,v 1.51 2021/08/20 20:25:28 andvar Exp $ */
 
 /*
  * Copyright (c) 2004, 2005 Reinoud Zandijk <rein...@netbsd.org>
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.50 2020/07/03 12:39:54 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.51 2021/08/20 20:25:28 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/errno.h>
@@ -360,7 +360,7 @@ auixp_commit_settings(void *hdl)
 		value &= ~ATI_REG_CMD_SPDF_CONFIG_MASK;
 		value |=  ATI_REG_CMD_SPDF_CONFIG_34; /* NetBSD AC'97 default */
 
-		/* XXX this prolly is not nessisary unless splitted XXX */
+		/* XXX this prolly is not necessary unless splitted XXX */
 		value &= ~ATI_REG_CMD_INTERLEAVE_SPDF;
 		if (params->precision <= 16)
 			value |= ATI_REG_CMD_INTERLEAVE_SPDF;
@@ -1567,7 +1567,7 @@ auixp_disable_dma(struct auixp_softc *sc
 
 	iot = sc->sc_iot;
 	ioh = sc->sc_ioh;
-	/* lets not stress the DMA engine more than nessisary */
+	/* lets not stress the DMA engine more than necessary */
 	value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
 	if (value & dma->dma_enable_bit) {
 		value &= ~dma->dma_enable_bit;
@@ -1585,7 +1585,7 @@ auixp_enable_dma(struct auixp_softc *sc,
 
 	iot = sc->sc_iot;
 	ioh = sc->sc_ioh;
-	/* lets not stress the DMA engine more than nessisary */
+	/* lets not stress the DMA engine more than necessary */
 	value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
 	if (!(value & dma->dma_enable_bit)) {
 		value |= dma->dma_enable_bit;

Index: src/sys/dev/pci/auixpvar.h
diff -u src/sys/dev/pci/auixpvar.h:1.10 src/sys/dev/pci/auixpvar.h:1.11
--- src/sys/dev/pci/auixpvar.h:1.10	Wed Oct 16 21:52:22 2019
+++ src/sys/dev/pci/auixpvar.h	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: auixpvar.h,v 1.10 2019/10/16 21:52:22 maya Exp $*/
+/* $NetBSD: auixpvar.h,v 1.11 2021/08/20 20:25:28 andvar Exp $*/
 
 /*
  * Copyright (c) 2004, 2005 Reinoud Zandijk <rein...@netbsd.org>
@@ -84,7 +84,7 @@ struct auixp_softc {
 
 	/* card id */
 	int			type;
-	int			delay1, delay2;		/* nessisary? */
+	int			delay1, delay2;		/* necessary? */
 
 	/* card properties */
 	int			has_4ch, has_6ch, is_fixed, has_spdif;

Index: src/sys/dev/pci/ixgbe/ixgbe.c
diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.287 src/sys/dev/pci/ixgbe/ixgbe.c:1.288
--- src/sys/dev/pci/ixgbe/ixgbe.c:1.287	Thu Jul 15 08:09:31 2021
+++ src/sys/dev/pci/ixgbe/ixgbe.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.287 2021/07/15 08:09:31 msaitoh Exp $ */
+/* $NetBSD: ixgbe.c,v 1.288 2021/08/20 20:25:28 andvar Exp $ */
 
 /******************************************************************************
 
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.287 2021/07/15 08:09:31 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.288 2021/08/20 20:25:28 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -4822,7 +4822,7 @@ out:
 	IXGBE_CORE_LOCK(adapter);
 
 	/*
-	 * Don't shedule MSF event if the chip is 82598. 82598 doesn't support
+	 * Don't schedule MSF event if the chip is 82598. 82598 doesn't support
 	 * MSF. At least, calling ixgbe_handle_msf on 82598 DA makes the link
 	 * flap because the function calls setup_link().
 	 */

Index: src/sys/fs/udf/udf_allocation.c
diff -u src/sys/fs/udf/udf_allocation.c:1.42 src/sys/fs/udf/udf_allocation.c:1.43
--- src/sys/fs/udf/udf_allocation.c:1.42	Sat Jul 24 21:31:38 2021
+++ src/sys/fs/udf/udf_allocation.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_allocation.c,v 1.42 2021/07/24 21:31:38 andvar Exp $ */
+/* $NetBSD: udf_allocation.c,v 1.43 2021/08/20 20:25:28 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_allocation.c,v 1.42 2021/07/24 21:31:38 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_allocation.c,v 1.43 2021/08/20 20:25:28 andvar Exp $");
 #endif /* not lint */
 
 
@@ -371,7 +371,7 @@ udf_calc_freespace(struct udf_mount *ump
 	*freeblks = *sizeblks = 0;
 
 	/*
-	 * Sequentials media report free space directly (CD/DVD/BD-R), for the
+	 * Sequential media reports free space directly (CD/DVD/BD-R), for the
 	 * other media we need the logical volume integrity.
 	 *
 	 * We sum all free space up here regardless of type.
@@ -420,7 +420,7 @@ udf_calc_vpart_freespace(struct udf_moun
 	*freeblks = 0;
 
 	/*
-	 * Sequentials media report free space directly (CD/DVD/BD-R), for the
+	 * Sequential media reports free space directly (CD/DVD/BD-R), for the
 	 * other media we need the logical volume integrity.
 	 *
 	 * We sum all free space up here regardless of type.
@@ -638,7 +638,7 @@ udf_translate_vtop_list(struct udf_mount
 
 /*
  * Translate an extent (in logical_blocks) into logical block numbers; used
- * for read and write operations. DOESNT't check extents.
+ * for read and write operations. DOESN'T check extents.
  */
 
 int
@@ -755,8 +755,8 @@ udf_translate_file_extent(struct udf_nod
 		ext_offset = 0;
 
 		/*
-		 * note that the while(){} is nessisary for the extent that
-		 * the udf_translate_vtop() returns doens't have to span the
+		 * note that the while(){} is necessary for the extent that
+		 * the udf_translate_vtop() returns doesn't have to span the
 		 * whole extent.
 		 */
 	
@@ -1550,7 +1550,7 @@ udf_trunc_metadatapart(struct udf_mount 
 
 	/*
 	 * The truncated space is secured now and can't be allocated anymore.
-	 * Release the allocate mutex so we can shrink the nodes the normal
+	 * Release the allocated mutex so we can shrink the nodes the normal
 	 * way.
 	 */
 	mutex_exit(&ump->allocate_mutex);
@@ -1593,7 +1593,7 @@ static void
 udf_collect_free_space_for_vpart(struct udf_mount *ump,
 	uint16_t vpart_num, uint32_t num_lb)
 {
-	/* allocate mutex is helt */
+	/* allocated mutex is held */
 
 	/* only defined for metadata partitions */
 	if (ump->vtop_tp[ump->node_part] != UDF_VTOP_TYPE_META) {
@@ -1621,7 +1621,7 @@ udf_collect_free_space_for_vpart(struct 
 			udf_sparsify_metadatapart(ump, num_lb);
 	}
 
-	/* allocate mutex should still be helt */
+	/* allocated mutex should still be held */
 }
 
 /* --------------------------------------------------------------------- */
@@ -2222,7 +2222,7 @@ udf_count_alloc_exts(struct udf_node *ud
  * take note that we might glue to existing allocation descriptors.
  *
  * XXX Note there can only be one allocation being recorded/mount; maybe
- * explicit allocation in shedule thread?
+ * explicit allocation in schedule thread?
  */
 
 static void
@@ -2782,7 +2782,7 @@ udf_grow_node(struct udf_node *udf_node,
 		len += lastblock_grow;
 		c_ad.len = udf_rw32(len | flags);
 
-		/* TODO zero appened space in buffer! */
+		/* TODO zero appended space in buffer! */
 		/* using ubc_zerorange(&vp->v_uobj, old_size, */
 		/*    new_size - old_size, UBC_VNODE_FLAGS(vp)); ? */
 	}
@@ -2953,7 +2953,7 @@ udf_shrink_node(struct udf_node *udf_nod
 		KASSERT(old_size >= new_size);
 		memset(data_pos + new_size, 0, old_size - new_size);
 
-		/* TODO zero appened space in buffer! */
+		/* TODO zero appended space in buffer! */
 		/* using ubc_zerorange(&vp->v_uobj, old_size, */
 		/*    old_size - new_size, UBC_VNODE_FLAGS(vp)); ? */
 
@@ -3088,7 +3088,7 @@ udf_shrink_node(struct udf_node *udf_nod
 	/* 4) if it will fit into the descriptor then convert */
 	if (new_size < max_l_ad) {
 		/*
-		 * resque/evacuate old piece by reading it in, and convert it
+		 * rescue/evacuate old piece by reading it in, and convert it
 		 * to internal alloc.
 		 */
 		if (new_size == 0) {

Index: src/sys/fs/udf/udf_subr.c
diff -u src/sys/fs/udf/udf_subr.c:1.154 src/sys/fs/udf/udf_subr.c:1.155
--- src/sys/fs/udf/udf_subr.c:1.154	Sat Jul 24 21:31:38 2021
+++ src/sys/fs/udf/udf_subr.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_subr.c,v 1.154 2021/07/24 21:31:38 andvar Exp $ */
+/* $NetBSD: udf_subr.c,v 1.155 2021/08/20 20:25:28 andvar Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -29,7 +29,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.154 2021/07/24 21:31:38 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.155 2021/08/20 20:25:28 andvar Exp $");
 #endif /* not lint */
 
 
@@ -289,7 +289,7 @@ udf_setup_writeparams(struct udf_mount *
 	/*
 	 * 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.
 	 */

Index: src/tests/fs/ffs/t_quota2_remount.c
diff -u src/tests/fs/ffs/t_quota2_remount.c:1.5 src/tests/fs/ffs/t_quota2_remount.c:1.6
--- src/tests/fs/ffs/t_quota2_remount.c:1.5	Fri Jan 13 21:30:39 2017
+++ src/tests/fs/ffs/t_quota2_remount.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_quota2_remount.c,v 1.5 2017/01/13 21:30:39 christos Exp $	*/
+/*	$NetBSD: t_quota2_remount.c,v 1.6 2021/08/20 20:25:28 andvar Exp $	*/
 
 /*
  * Basic tests for quota2
@@ -44,7 +44,7 @@ do_quota(const atf_tc_t *tc, int n, cons
 
 	uargs.fspec = __UNCONST("/diskdev");
 
-	/* read-only doens't have quota enabled */
+	/* read-only doesn't have quota enabled */
 	if (rump_sys_mount(MOUNT_FFS, FSTEST_MNTNAME, MNT_RDONLY,
 	    &uargs, sizeof(uargs)) == -1)
 		atf_tc_fail_errno("mount ffs ro %s", FSTEST_MNTNAME);

Index: src/tests/net/can/t_can.c
diff -u src/tests/net/can/t_can.c:1.7 src/tests/net/can/t_can.c:1.8
--- src/tests/net/can/t_can.c:1.7	Mon Jun 24 06:26:29 2019
+++ src/tests/net/can/t_can.c	Fri Aug 20 20:25:28 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_can.c,v 1.7 2019/06/24 06:26:29 skrll Exp $	*/
+/*	$NetBSD: t_can.c,v 1.8 2021/08/20 20:25:28 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: t_can.c,v 1.7 2019/06/24 06:26:29 skrll Exp $");
+__RCSID("$NetBSD: t_can.c,v 1.8 2021/08/20 20:25:28 andvar Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -526,7 +526,7 @@ ATF_TC(canbindfilter);
 ATF_TC_HEAD(canbindfilter, tc)
 {
 
-	atf_tc_set_md_var(tc, "descr", "check that socket bound to an interface doens't get other interface's messages");
+	atf_tc_set_md_var(tc, "descr", "check that socket bound to an interface doesn't get other interface's messages");
 	atf_tc_set_md_var(tc, "timeout", "5");
 }
 

Reply via email to