diff options
| author | andvar <andvar@NetBSD.org> | 2022-02-23 21:54:40 +0000 |
|---|---|---|
| committer | andvar <andvar@NetBSD.org> | 2022-02-23 21:54:40 +0000 |
| commit | f855a88741a8a0aa63efde8923bf1b5ae1e37cd1 (patch) | |
| tree | 0c1f32b44eb134f6ead5aed4f0f0869f35d63e0b /sys | |
| parent | 1ec76ff58a1253c38448794815a9cf8cd74a5875 (diff) | |
fix various typos in comments, mainly immediatly/immediately/,
as well shared and recently fixed typos in OpenBSD code by Jonathan Grey.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/powerpc/pic/pic_distopenpic.c | 6 | ||||
| -rw-r--r-- | sys/arch/powerpc/pic/pic_mpcsoc.c | 6 | ||||
| -rw-r--r-- | sys/arch/powerpc/pic/pic_openpic.c | 6 | ||||
| -rw-r--r-- | sys/arch/sh3/include/cpu.h | 4 | ||||
| -rw-r--r-- | sys/arch/sh3/include/mmu.h | 4 | ||||
| -rw-r--r-- | sys/arch/sh3/sh3/sh3_machdep.c | 6 | ||||
| -rw-r--r-- | sys/arch/sparc64/dev/psycho.c | 6 | ||||
| -rw-r--r-- | sys/dev/ata/ata.c | 6 | ||||
| -rw-r--r-- | sys/dev/eisa/ahbreg.h | 4 | ||||
| -rw-r--r-- | sys/dev/ic/aic7xxx_osm.c | 6 | ||||
| -rw-r--r-- | sys/dev/ic/esiop.c | 6 | ||||
| -rw-r--r-- | sys/dev/ic/siop.c | 6 | ||||
| -rw-r--r-- | sys/dev/pci/if_skreg.h | 4 | ||||
| -rw-r--r-- | sys/dev/pci/if_tl.c | 6 | ||||
| -rw-r--r-- | sys/dev/scsipi/ss.c | 6 | ||||
| -rw-r--r-- | sys/dev/scsipi/st.c | 6 | ||||
| -rw-r--r-- | sys/dev/tc/if_le_tc.c | 6 | ||||
| -rw-r--r-- | sys/fs/puffs/puffs_vnops.c | 8 | ||||
| -rw-r--r-- | sys/kern/kern_sig.c | 6 | ||||
| -rw-r--r-- | sys/kern/kern_turnstile.c | 6 | ||||
| -rw-r--r-- | sys/netinet6/raw_ip6.c | 6 |
21 files changed, 60 insertions, 60 deletions
diff --git a/sys/arch/powerpc/pic/pic_distopenpic.c b/sys/arch/powerpc/pic/pic_distopenpic.c index ed393d126db..84626a3625f 100644 --- a/sys/arch/powerpc/pic/pic_distopenpic.c +++ b/sys/arch/powerpc/pic/pic_distopenpic.c @@ -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, int nrofisus, void **isu, int *maps) 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); diff --git a/sys/arch/powerpc/pic/pic_mpcsoc.c b/sys/arch/powerpc/pic/pic_mpcsoc.c index 12ae07d6116..e2c1285e9b9 100644 --- a/sys/arch/powerpc/pic/pic_mpcsoc.c +++ b/sys/arch/powerpc/pic/pic_mpcsoc.c @@ -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); diff --git a/sys/arch/powerpc/pic/pic_openpic.c b/sys/arch/powerpc/pic/pic_openpic.c index d7f3cfd9432..c366516516a 100644 --- a/sys/arch/powerpc/pic/pic_openpic.c +++ b/sys/arch/powerpc/pic/pic_openpic.c @@ -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 passthrough) 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); diff --git a/sys/arch/sh3/include/cpu.h b/sys/arch/sh3/include/cpu.h index bc9fe738f36..06e5c04f2bc 100644 --- a/sys/arch/sh3/include/cpu.h +++ b/sys/arch/sh3/include/cpu.h @@ -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 \ diff --git a/sys/arch/sh3/include/mmu.h b/sys/arch/sh3/include/mmu.h index 581f31158f2..12ea35cb458 100644 --- a/sys/arch/sh3/include/mmu.h +++ b/sys/arch/sh3/include/mmu.h @@ -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. diff --git a/sys/arch/sh3/sh3/sh3_machdep.c b/sys/arch/sh3/sh3/sh3_machdep.c index 4914c135fe7..ac458fd9d12 100644 --- a/sys/arch/sh3/sh3/sh3_machdep.c +++ b/sys/arch/sh3/sh3/sh3_machdep.c @@ -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(); diff --git a/sys/arch/sparc64/dev/psycho.c b/sys/arch/sparc64/dev/psycho.c index 48362d88c99..fed18eae96e 100644 --- a/sys/arch/sparc64/dev/psycho.c +++ b/sys/arch/sparc64/dev/psycho.c @@ -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 psycho_softc), * "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 diff --git a/sys/dev/ata/ata.c b/sys/dev/ata/ata.c index 535398bcb9e..dc152339298 100644 --- a/sys/dev/ata/ata.c +++ b/sys/dev/ata/ata.c @@ -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, int flags) /* * 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. */ diff --git a/sys/dev/eisa/ahbreg.h b/sys/dev/eisa/ahbreg.h index e542c755ca3..502bbd085b2 100644 --- a/sys/dev/eisa/ahbreg.h +++ b/sys/dev/eisa/ahbreg.h @@ -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 diff --git a/sys/dev/ic/aic7xxx_osm.c b/sys/dev/ic/aic7xxx_osm.c index 2da309ad31f..51ea7cdf5e7 100644 --- a/sys/dev/ic/aic7xxx_osm.c +++ b/sys/dev/ic/aic7xxx_osm.c @@ -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); diff --git a/sys/dev/ic/esiop.c b/sys/dev/ic/esiop.c index 4c09d07d62c..f990fed0a2d 100644 --- a/sys/dev/ic/esiop.c +++ b/sys/dev/ic/esiop.c @@ -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_cmd *esiop_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 diff --git a/sys/dev/ic/siop.c b/sys/dev/ic/siop.c index da6eda7b812..332420ba5e5 100644 --- a/sys/dev/ic/siop.c +++ b/sys/dev/ic/siop.c @@ -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 *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 diff --git a/sys/dev/pci/if_skreg.h b/sys/dev/pci/if_skreg.h index 06dbc03a603..a080983ac7e 100644 --- a/sys/dev/pci/if_skreg.h +++ b/sys/dev/pci/if_skreg.h @@ -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 */ diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index a83302d70a5..c74b507c28a 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -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) { diff --git a/sys/dev/scsipi/ss.c b/sys/dev/scsipi/ss.c index bbdcfe44b76..c59380a6cea 100644 --- a/sys/dev/scsipi/ss.c +++ b/sys/dev/scsipi/ss.c @@ -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; diff --git a/sys/dev/scsipi/st.c b/sys/dev/scsipi/st.c index b2a6fb4b396..957a4aa5ae2 100644 --- a/sys/dev/scsipi/st.c +++ b/sys/dev/scsipi/st.c @@ -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, int size, int flags) { 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)); diff --git a/sys/dev/tc/if_le_tc.c b/sys/dev/tc/if_le_tc.c index fec352ddba3..549cdae9358 100644 --- a/sys/dev/tc/if_le_tc.c +++ b/sys/dev/tc/if_le_tc.c @@ -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 self, void *aux) /* * 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. */ diff --git a/sys/fs/puffs/puffs_vnops.c b/sys/fs/puffs/puffs_vnops.c index 146caa7cf10..375e5f55bf6 100644 --- a/sys/fs/puffs/puffs_vnops.c +++ b/sys/fs/puffs/puffs_vnops.c @@ -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) { diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index 479bf1ec977..13334780595 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -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. * diff --git a/sys/kern/kern_turnstile.c b/sys/kern/kern_turnstile.c index 46736581dc8..ab85a303beb 100644 --- a/sys/kern/kern_turnstile.c +++ b/sys/kern/kern_turnstile.c @@ -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; } diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index 2f9d6e4bc99..1db02376d21 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -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; |
