Module Name:    src
Committed By:   andvar
Date:           Wed Feb 23 21:54:41 UTC 2022

Modified Files:
        src/lib/libperfuse: perfuse.c
        src/lib/libtelnet: encrypt.c
        src/sys/arch/powerpc/pic: pic_distopenpic.c pic_mpcsoc.c pic_openpic.c
        src/sys/arch/sh3/include: cpu.h mmu.h
        src/sys/arch/sh3/sh3: sh3_machdep.c
        src/sys/arch/sparc64/dev: psycho.c
        src/sys/dev/ata: ata.c
        src/sys/dev/eisa: ahbreg.h
        src/sys/dev/ic: aic7xxx_osm.c esiop.c siop.c
        src/sys/dev/pci: if_skreg.h if_tl.c
        src/sys/dev/scsipi: ss.c st.c
        src/sys/dev/tc: if_le_tc.c
        src/sys/fs/puffs: puffs_vnops.c
        src/sys/kern: kern_sig.c kern_turnstile.c
        src/sys/netinet6: raw_ip6.c

Log Message:
fix various typos in comments, mainly immediatly/immediately/,
as well shared and recently fixed typos in OpenBSD code by Jonathan Grey.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/lib/libperfuse/perfuse.c
cvs rdiff -u -r1.18 -r1.19 src/lib/libtelnet/encrypt.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/powerpc/pic/pic_distopenpic.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/pic/pic_mpcsoc.c
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/powerpc/pic/pic_openpic.c
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/sh3/include/cpu.h
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sh3/include/mmu.h
cvs rdiff -u -r1.111 -r1.112 src/sys/arch/sh3/sh3/sh3_machdep.c
cvs rdiff -u -r1.136 -r1.137 src/sys/arch/sparc64/dev/psycho.c
cvs rdiff -u -r1.165 -r1.166 src/sys/dev/ata/ata.c
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/eisa/ahbreg.h
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/ic/aic7xxx_osm.c
cvs rdiff -u -r1.59 -r1.60 src/sys/dev/ic/esiop.c
cvs rdiff -u -r1.102 -r1.103 src/sys/dev/ic/siop.c
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/if_skreg.h
cvs rdiff -u -r1.123 -r1.124 src/sys/dev/pci/if_tl.c
cvs rdiff -u -r1.90 -r1.91 src/sys/dev/scsipi/ss.c
cvs rdiff -u -r1.242 -r1.243 src/sys/dev/scsipi/st.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/tc/if_le_tc.c
cvs rdiff -u -r1.224 -r1.225 src/sys/fs/puffs/puffs_vnops.c
cvs rdiff -u -r1.401 -r1.402 src/sys/kern/kern_sig.c
cvs rdiff -u -r1.40 -r1.41 src/sys/kern/kern_turnstile.c
cvs rdiff -u -r1.176 -r1.177 src/sys/netinet6/raw_ip6.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/perfuse.c
diff -u src/lib/libperfuse/perfuse.c:1.43 src/lib/libperfuse/perfuse.c:1.44
--- src/lib/libperfuse/perfuse.c:1.43	Sun Aug  8 20:54:48 2021
+++ src/lib/libperfuse/perfuse.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*  $NetBSD: perfuse.c,v 1.43 2021/08/08 20:54:48 nia Exp $ */
+/*  $NetBSD: perfuse.c,v 1.44 2022/02/23 21:54:40 andvar Exp $ */
 
 /*-
  *  Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@@ -708,7 +708,7 @@ perfuse_fsreq(struct puffs_usermount *pu
 	foh = GET_OUTHDR(ps, pm);
 
 	/*
-	 * There are some operations we may use in a  Fire and Forget wey,
+	 * There are some operations we may use in a  Fire and Forget way,
 	 * because the kernel does not await a reply, but FUSE still
 	 * sends a reply. This happens for fsyc, setattr (for metadata
 	 * associated with a fsync) and write (for VOP_PUTPAGES). Ignore
@@ -718,7 +718,7 @@ perfuse_fsreq(struct puffs_usermount *pu
 	case 0:
 		break;
 	case -ENOENT:
-		/* File disapeared during a FAF operation */
+		/* File disappeared during a FAF operation */
 		break;
 	case -ENOTCONN: /* FALLTHROUGH */
 	case -EAGAIN: /* FALLTHROUGH */

Index: src/lib/libtelnet/encrypt.c
diff -u src/lib/libtelnet/encrypt.c:1.18 src/lib/libtelnet/encrypt.c:1.19
--- src/lib/libtelnet/encrypt.c:1.18	Sat Jan  5 08:55:58 2019
+++ src/lib/libtelnet/encrypt.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: encrypt.c,v 1.18 2019/01/05 08:55:58 maya Exp $	*/
+/*	$NetBSD: encrypt.c,v 1.19 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -33,7 +33,7 @@
 #if 0
 static char sccsid[] = "@(#)encrypt.c	8.2 (Berkeley) 5/30/95";
 #else
-__RCSID("$NetBSD: encrypt.c,v 1.18 2019/01/05 08:55:58 maya Exp $");
+__RCSID("$NetBSD: encrypt.c,v 1.19 2022/02/23 21:54:40 andvar Exp $");
 #endif /* not lint */
 
 /*
@@ -414,7 +414,7 @@ encrypt_send_support(void)
 	if (str_suplen) {
 		/*
 		 * If the user has requested that decryption start
-		 * immediatly, then send a "REQUEST START" before
+		 * immediately, then send a "REQUEST START" before
 		 * we negotiate the type.
 		 */
 		if (!Server && autodecrypt)

Index: src/sys/arch/powerpc/pic/pic_distopenpic.c
diff -u src/sys/arch/powerpc/pic/pic_distopenpic.c:1.13 src/sys/arch/powerpc/pic/pic_distopenpic.c:1.14
--- src/sys/arch/powerpc/pic/pic_distopenpic.c:1.13	Mon Jul  6 11:02:44 2020
+++ src/sys/arch/powerpc/pic/pic_distopenpic.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: pic_distopenpic.c,v 1.13 2020/07/06 11:02:44 rin Exp $ */
+/*	$NetBSD: pic_distopenpic.c,v 1.14 2022/02/23 21:54:40 andvar Exp $ */
 
 /*-
  * Copyright (c) 2008 Tim Rightnour
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic_distopenpic.c,v 1.13 2020/07/06 11:02:44 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic_distopenpic.c,v 1.14 2022/02/23 21:54:40 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_openpic.h"
@@ -121,7 +121,7 @@ setup_distributed_openpic(void *addr, in
 
 	openpic_set_priority(0, 0);
 
-	/* clear all pending interrunts */
+	/* clear all pending interrupts */
 	for (irq = 0; irq < pic->pic_numintrs; irq++) {
 		openpic_read_irq(0);
 		openpic_eoi(0);

Index: src/sys/arch/powerpc/pic/pic_mpcsoc.c
diff -u src/sys/arch/powerpc/pic/pic_mpcsoc.c:1.8 src/sys/arch/powerpc/pic/pic_mpcsoc.c:1.9
--- src/sys/arch/powerpc/pic/pic_mpcsoc.c:1.8	Mon Jul  6 09:34:18 2020
+++ src/sys/arch/powerpc/pic/pic_mpcsoc.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: pic_mpcsoc.c,v 1.8 2020/07/06 09:34:18 rin Exp $ */
+/*	$NetBSD: pic_mpcsoc.c,v 1.9 2022/02/23 21:54:40 andvar Exp $ */
 
 /*-
  * Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic_mpcsoc.c,v 1.8 2020/07/06 09:34:18 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic_mpcsoc.c,v 1.9 2022/02/23 21:54:40 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_interrupt.h"
@@ -131,7 +131,7 @@ setup_mpcpic(void *addr)
 	openpic_write(OPENPIC_SPURIOUS_VECTOR, 0xff);
 	openpic_set_priority(0, 0);
 
-	/* clear all pending interrunts */
+	/* clear all pending interrupts */
 	for (irq = 0; irq < self->pic_numintrs; irq++) {
 		openpic_read_irq(0);
 		openpic_eoi(0);

Index: src/sys/arch/powerpc/pic/pic_openpic.c
diff -u src/sys/arch/powerpc/pic/pic_openpic.c:1.19 src/sys/arch/powerpc/pic/pic_openpic.c:1.20
--- src/sys/arch/powerpc/pic/pic_openpic.c:1.19	Mon Jul 13 00:04:03 2020
+++ src/sys/arch/powerpc/pic/pic_openpic.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: pic_openpic.c,v 1.19 2020/07/13 00:04:03 rin Exp $ */
+/*	$NetBSD: pic_openpic.c,v 1.20 2022/02/23 21:54:40 andvar Exp $ */
 
 /*-
  * Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic_openpic.c,v 1.19 2020/07/13 00:04:03 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic_openpic.c,v 1.20 2022/02/23 21:54:40 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_multiprocessor.h"
@@ -112,7 +112,7 @@ setup_openpic(void *addr, int passthroug
 
 	openpic_set_priority(0, 0);
 
-	/* clear all pending interrunts */
+	/* clear all pending interrupts */
 	for (irq = 0; irq < pic->pic_numintrs; irq++) {
 		openpic_read_irq(0);
 		openpic_eoi(0);

Index: src/sys/arch/sh3/include/cpu.h
diff -u src/sys/arch/sh3/include/cpu.h:1.60 src/sys/arch/sh3/include/cpu.h:1.61
--- src/sys/arch/sh3/include/cpu.h:1.60	Mon Aug  3 21:53:25 2020
+++ src/sys/arch/sh3/include/cpu.h	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu.h,v 1.60 2020/08/03 21:53:25 uwe Exp $	*/
+/*	$NetBSD: cpu.h,v 1.61 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2019 The NetBSD Foundation, Inc. All rights reserved.
@@ -186,7 +186,7 @@ do {									\
 /*
  * Switch from P2 (uncached) back to P1 (cached).  We need to be
  * running on P2 to access cache control, memory-mapped cache and TLB
- * arrays, etc. and after touching them at least 8 instructinos are
+ * arrays, etc. and after touching them at least 8 instructions are
  * necessary before jumping to P1, so provide that padding here.
  */
 #define RUN_P1						\

Index: src/sys/arch/sh3/include/mmu.h
diff -u src/sys/arch/sh3/include/mmu.h:1.10 src/sys/arch/sh3/include/mmu.h:1.11
--- src/sys/arch/sh3/include/mmu.h:1.10	Mon Apr 28 20:23:35 2008
+++ src/sys/arch/sh3/include/mmu.h	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: mmu.h,v 1.10 2008/04/28 20:23:35 martin Exp $	*/
+/*	$NetBSD: mmu.h,v 1.11 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
  *				Call after exception vector was installed.
  *
  * TLB access ops.
- *	sh_tlb_invalidate_addr	invalidate TLB entris for given
+ *	sh_tlb_invalidate_addr	invalidate TLB entries for given
  *				virtual addr with ASID.
  *	sh_tlb_invalidate_asid	invalidate TLB entries for given ASID.
  *	sh_tlb_invalidate_all	invalidate all non-wired TLB entries.

Index: src/sys/arch/sh3/sh3/sh3_machdep.c
diff -u src/sys/arch/sh3/sh3/sh3_machdep.c:1.111 src/sys/arch/sh3/sh3/sh3_machdep.c:1.112
--- src/sys/arch/sh3/sh3/sh3_machdep.c:1.111	Mon Nov  1 05:07:16 2021
+++ src/sys/arch/sh3/sh3/sh3_machdep.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: sh3_machdep.c,v 1.111 2021/11/01 05:07:16 thorpej Exp $	*/
+/*	$NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2002 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.111 2021/11/01 05:07:16 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -162,7 +162,7 @@ sh_cpu_init(int arch, int product)
 	/* Hardclock, RTC initialize. */
 	machine_clock_init();
 
-	/* ICU initiailze. */
+	/* ICU initialize. */
 	curcpu()->ci_idepth = -1;
 	intc_init();
 

Index: src/sys/arch/sparc64/dev/psycho.c
diff -u src/sys/arch/sparc64/dev/psycho.c:1.136 src/sys/arch/sparc64/dev/psycho.c:1.137
--- src/sys/arch/sparc64/dev/psycho.c:1.136	Fri Jan 21 19:14:14 2022
+++ src/sys/arch/sparc64/dev/psycho.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: psycho.c,v 1.136 2022/01/21 19:14:14 thorpej Exp $	*/
+/*	$NetBSD: psycho.c,v 1.137 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*
  * Copyright (c) 1999, 2000 Matthew R. Green
@@ -55,7 +55,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: psycho.c,v 1.136 2022/01/21 19:14:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: psycho.c,v 1.137 2022/02/23 21:54:40 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -175,7 +175,7 @@ CFATTACH_DECL_NEW(psycho, sizeof(struct 
  * "sabre" is the UltraSPARC IIi onboard UPA to PCI bridge.  It manages a
  * single PCI bus and does not have a streaming buffer.  It often has an APB
  * (advanced PCI bridge) connected to it, which was designed specifically for
- * the IIi.  The APB let's the IIi handle two independednt PCI buses, and
+ * the IIi.  The APB lets the IIi handle two independent PCI buses, and
  * appears as two "simba"'s underneath the sabre.
  *
  * "psycho" and "psycho+" is a dual UPA to PCI bridge.  It sits on the UPA bus

Index: src/sys/dev/ata/ata.c
diff -u src/sys/dev/ata/ata.c:1.165 src/sys/dev/ata/ata.c:1.166
--- src/sys/dev/ata/ata.c:1.165	Fri Nov 12 06:53:49 2021
+++ src/sys/dev/ata/ata.c	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ata.c,v 1.165 2021/11/12 06:53:49 skrll Exp $	*/
+/*	$NetBSD: ata.c,v 1.166 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.165 2021/11/12 06:53:49 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.166 2022/02/23 21:54:40 andvar Exp $");
 
 #include "opt_ata.h"
 
@@ -960,7 +960,7 @@ ata_dmaerr(struct ata_drive_datas *drvp,
 	/*
 	 * Downgrade decision: if we get NERRS_MAX in NXFER.
 	 * We start with n_dmaerrs set to NERRS_MAX-1 so that the
-	 * first error within the first NXFER ops will immediatly trigger
+	 * first error within the first NXFER ops will immediately trigger
 	 * a downgrade.
 	 * If we got an error and n_xfers is bigger than NXFER reset counters.
 	 */

Index: src/sys/dev/eisa/ahbreg.h
diff -u src/sys/dev/eisa/ahbreg.h:1.18 src/sys/dev/eisa/ahbreg.h:1.19
--- src/sys/dev/eisa/ahbreg.h:1.18	Mon Jul 26 16:45:56 2021
+++ src/sys/dev/eisa/ahbreg.h	Wed Feb 23 21:54:40 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ahbreg.h,v 1.18 2021/07/26 16:45:56 thorpej Exp $	*/
+/*	$NetBSD: ahbreg.h,v 1.19 2022/02/23 21:54:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -73,7 +73,7 @@
 #define	HSCSIID	0x0F		/* our SCSI ID */
 #define	RSTPWR	0x10		/* reset scsi bus on power up or reset */
 /**** bit definitions for BUSDEF ****/
-#define	B0uS	0x00		/* give up bus immediatly */
+#define	B0uS	0x00		/* give up bus immediately */
 #define	B4uS	0x01		/* delay 4uSec. */
 #define	B8uS	0x02
 

Index: src/sys/dev/ic/aic7xxx_osm.c
diff -u src/sys/dev/ic/aic7xxx_osm.c:1.41 src/sys/dev/ic/aic7xxx_osm.c:1.42
--- src/sys/dev/ic/aic7xxx_osm.c:1.41	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ic/aic7xxx_osm.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic7xxx_osm.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: aic7xxx_osm.c,v 1.42 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Bus independent FreeBSD shim for the aic7xxx based adaptec SCSI controllers
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic7xxx_osm.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic7xxx_osm.c,v 1.42 2022/02/23 21:54:41 andvar Exp $");
 
 #include <dev/ic/aic7xxx_osm.h>
 #include <dev/ic/aic7xxx_inline.h>
@@ -1038,7 +1038,7 @@ bus_reset:
 					      ahc_timeout, scb);
 				ahc_unpause(ahc);
 			} else {
-				/* Go "immediatly" to the bus reset */
+				/* Go "immediately" to the bus reset */
 				/* This shouldn't happen */
 				ahc_set_recoveryscb(ahc, scb);
 				ahc_print_path(ahc, scb);

Index: src/sys/dev/ic/esiop.c
diff -u src/sys/dev/ic/esiop.c:1.59 src/sys/dev/ic/esiop.c:1.60
--- src/sys/dev/ic/esiop.c:1.59	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ic/esiop.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: esiop.c,v 1.59 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.59 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1398,7 +1398,7 @@ esiop_handle_qtag_reject(struct esiop_cm
 /*
  * handle a bus reset: reset chip, unqueue all active commands, free all
  * target struct and report lossage to upper layer.
- * As the upper layer may requeue immediatly we have to first store
+ * As the upper layer may requeue immediately we have to first store
  * all active commands in a temporary queue.
  */
 void

Index: src/sys/dev/ic/siop.c
diff -u src/sys/dev/ic/siop.c:1.102 src/sys/dev/ic/siop.c:1.103
--- src/sys/dev/ic/siop.c:1.102	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ic/siop.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: siop.c,v 1.102 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: siop.c,v 1.103 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 2000 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.102 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.103 2022/02/23 21:54:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1160,7 +1160,7 @@ siop_handle_qtag_reject(struct siop_cmd 
 /*
  * handle a bus reset: reset chip, unqueue all active commands, free all
  * target struct and report lossage to upper layer.
- * As the upper layer may requeue immediatly we have to first store
+ * As the upper layer may requeue immediately we have to first store
  * all active commands in a temporary queue.
  */
 void

Index: src/sys/dev/pci/if_skreg.h
diff -u src/sys/dev/pci/if_skreg.h:1.30 src/sys/dev/pci/if_skreg.h:1.31
--- src/sys/dev/pci/if_skreg.h:1.30	Mon Aug  2 12:56:24 2021
+++ src/sys/dev/pci/if_skreg.h	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: if_skreg.h,v 1.30 2021/08/02 12:56:24 andvar Exp $ */
+/* $NetBSD: if_skreg.h,v 1.31 2022/02/23 21:54:41 andvar Exp $ */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -1930,7 +1930,7 @@ struct msk_status_desc {
 #define YU_RXSTAT_MIIERR        0x00000020      /* MII error */
 #define YU_RXSTAT_BADFC         0x00000040      /* bad flow-control packet */
 #define YU_RXSTAT_GOODFC        0x00000080      /* good flow-control packet */
-#define YU_RXSTAT_RXOK          0x00000100      /* receice OK (Good packet) */
+#define YU_RXSTAT_RXOK          0x00000100      /* receive OK (Good packet) */
 #define YU_RXSTAT_BROADCAST     0x00000200      /* broadcast packet */
 #define YU_RXSTAT_MULTICAST     0x00000400      /* multicast packet */
 #define YU_RXSTAT_RUNT          0x00000800      /* undersize packet */

Index: src/sys/dev/pci/if_tl.c
diff -u src/sys/dev/pci/if_tl.c:1.123 src/sys/dev/pci/if_tl.c:1.124
--- src/sys/dev/pci/if_tl.c:1.123	Mon Sep  6 20:55:08 2021
+++ src/sys/dev/pci/if_tl.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $	*/
+/*	$NetBSD: if_tl.c,v 1.124 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.123 2021/09/06 20:55:08 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.124 2022/02/23 21:54:41 andvar Exp $");
 
 #undef TLDEBUG
 #define TL_PRIV_STATS
@@ -1135,7 +1135,7 @@ tl_intr(void *v)
 		bus_dmamap_sync(sc->tl_dmatag, sc->Tx_dmamap, 0,
 		    sizeof(struct tl_Tx_list) * TL_NBUF,
 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
-		/* if this was an EOC, ACK immediatly */
+		/* if this was an EOC, ACK immediately */
 		if (ack)
 			sc->tl_if.if_flags &= ~IFF_OACTIVE;
 		if (int_type == TL_INTR_TxEOC) {

Index: src/sys/dev/scsipi/ss.c
diff -u src/sys/dev/scsipi/ss.c:1.90 src/sys/dev/scsipi/ss.c:1.91
--- src/sys/dev/scsipi/ss.c:1.90	Tue Sep 29 02:58:52 2020
+++ src/sys/dev/scsipi/ss.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $	*/
+/*	$NetBSD: ss.c,v 1.91 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 1995 Kenneth Stailey.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.90 2020/09/29 02:58:52 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ss.c,v 1.91 2022/02/23 21:54:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -414,7 +414,7 @@ ssstrategy(struct buf *bp)
 	if (bp->b_bcount > ss->sio.scan_window_size)
 		bp->b_bcount = ss->sio.scan_window_size;
 
-	/* If it's a null transfer, return immediatly */
+	/* If it's a null transfer, return immediately */
 	if (bp->b_bcount == 0)
 		goto done;
 

Index: src/sys/dev/scsipi/st.c
diff -u src/sys/dev/scsipi/st.c:1.242 src/sys/dev/scsipi/st.c:1.243
--- src/sys/dev/scsipi/st.c:1.242	Sun Dec  5 02:21:08 2021
+++ src/sys/dev/scsipi/st.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: st.c,v 1.242 2021/12/05 02:21:08 msaitoh Exp $ */
+/*	$NetBSD: st.c,v 1.243 2022/02/23 21:54:41 andvar Exp $ */
 
 /*-
  * Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.242 2021/12/05 02:21:08 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.243 2022/02/23 21:54:41 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_scsi.h"
@@ -1686,7 +1686,7 @@ st_read(struct st_softc *st, char *bf, i
 {
 	struct scsi_rw_tape cmd;
 
-	/* If it's a null transfer, return immediatly */
+	/* If it's a null transfer, return immediately */
 	if (size == 0)
 		return 0;
 	memset(&cmd, 0, sizeof(cmd));

Index: src/sys/dev/tc/if_le_tc.c
diff -u src/sys/dev/tc/if_le_tc.c:1.22 src/sys/dev/tc/if_le_tc.c:1.23
--- src/sys/dev/tc/if_le_tc.c:1.22	Thu Jun 22 16:46:53 2017
+++ src/sys/dev/tc/if_le_tc.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_le_tc.c,v 1.22 2017/06/22 16:46:53 flxd Exp $	*/
+/*	$NetBSD: if_le_tc.c,v 1.23 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 1996 Carnegie-Mellon University.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_le_tc.c,v 1.22 2017/06/22 16:46:53 flxd Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_le_tc.c,v 1.23 2022/02/23 21:54:41 andvar Exp $");
 
 #include "opt_inet.h"
 
@@ -106,7 +106,7 @@ le_tc_attach(device_t parent, device_t s
 
 	/*
 	 * TC lance boards have onboard SRAM buffers.  DMA
-	 * between the onbard RAM and main memory is not possible,
+	 * between the onboard RAM and main memory is not possible,
 	 * so  DMA setup is not required.
 	 */
 

Index: src/sys/fs/puffs/puffs_vnops.c
diff -u src/sys/fs/puffs/puffs_vnops.c:1.224 src/sys/fs/puffs/puffs_vnops.c:1.225
--- src/sys/fs/puffs/puffs_vnops.c:1.224	Sun Dec  5 03:07:16 2021
+++ src/sys/fs/puffs/puffs_vnops.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh Exp $	*/
+/*	$NetBSD: puffs_vnops.c,v 1.225 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 2005, 2006, 2007  Antti Kantee.  All Rights Reserved.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.225 2022/02/23 21:54:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -1342,12 +1342,12 @@ puffs_vnop_inactive(void *v)
 			mutex_enter(&pmp->pmp_sopmtx);
 
 			/*
-			 * If thread has disapeared, just give up. The
+			 * If thread has disappeared, just give up. The
 			 * fs is being unmounted and the node will be 
 			 * be reclaimed anyway.
 			 *
 			 * Otherwise, we queue the request but do not
-			 * immediatly signal the thread, as the node
+			 * immediately signal the thread, as the node
 			 * has not been expired yet.
 			 */
 			if (pmp->pmp_sopthrcount == 0) {

Index: src/sys/kern/kern_sig.c
diff -u src/sys/kern/kern_sig.c:1.401 src/sys/kern/kern_sig.c:1.402
--- src/sys/kern/kern_sig.c:1.401	Sat Feb 12 15:51:29 2022
+++ src/sys/kern/kern_sig.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_sig.c,v 1.401 2022/02/12 15:51:29 thorpej Exp $	*/
+/*	$NetBSD: kern_sig.c,v 1.402 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008, 2019 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.401 2022/02/12 15:51:29 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.402 2022/02/23 21:54:41 andvar Exp $");
 
 #include "opt_execfmt.h"
 #include "opt_ptrace.h"
@@ -2434,7 +2434,7 @@ proc_stop(struct proc *p, int signo)
 }
 
 /*
- * When stopping a process, we do not immediatly set sleeping LWPs stopped,
+ * When stopping a process, we do not immediately set sleeping LWPs stopped,
  * but wait for them to come to a halt at the kernel-user boundary.  This is
  * to allow LWPs to release any locks that they may hold before stopping.
  *

Index: src/sys/kern/kern_turnstile.c
diff -u src/sys/kern/kern_turnstile.c:1.40 src/sys/kern/kern_turnstile.c:1.41
--- src/sys/kern/kern_turnstile.c:1.40	Sat May 23 20:45:10 2020
+++ src/sys/kern/kern_turnstile.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_turnstile.c,v 1.40 2020/05/23 20:45:10 ad Exp $	*/
+/*	$NetBSD: kern_turnstile.c,v 1.41 2022/02/23 21:54:41 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2006, 2007, 2009, 2019, 2020
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.40 2020/05/23 20:45:10 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.41 2022/02/23 21:54:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/lockdebug.h>
@@ -243,7 +243,7 @@ turnstile_lendpri(lwp_t *cur)
 		if (cur == owner) {
 			/*
 			 * We own the lock: stop here, sleepq_block()
-			 * should wake up immediatly.
+			 * should wake up immediately.
 			 */
 			break;
 		}

Index: src/sys/netinet6/raw_ip6.c
diff -u src/sys/netinet6/raw_ip6.c:1.176 src/sys/netinet6/raw_ip6.c:1.177
--- src/sys/netinet6/raw_ip6.c:1.176	Tue Sep 21 15:08:44 2021
+++ src/sys/netinet6/raw_ip6.c	Wed Feb 23 21:54:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: raw_ip6.c,v 1.176 2021/09/21 15:08:44 christos Exp $	*/
+/*	$NetBSD: raw_ip6.c,v 1.177 2022/02/23 21:54:41 andvar Exp $	*/
 /*	$KAME: raw_ip6.c,v 1.82 2001/07/23 18:57:56 jinmei Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.176 2021/09/21 15:08:44 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.177 2022/02/23 21:54:41 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ipsec.h"
@@ -783,7 +783,7 @@ rip6_shutdown(struct socket *so)
 	KASSERT(solocked(so));
 
 	/*
-	 * Mark the connection as being incapable of futther input.
+	 * Mark the connection as being incapable of futher input.
 	 */
 	socantsendmore(so);
 	return 0;

Reply via email to