Module Name:    src
Committed By:   msaitoh
Date:           Sun Dec  5 03:07:16 UTC 2021

Modified Files:
        src/sys/arch/amiga/amiga: disksubr.c
        src/sys/arch/emips/emips: bus_dma.c
        src/sys/arch/newsmips/newsmips: bus.c
        src/sys/arch/pmax/pmax: bus.c bus_dma.c
        src/sys/fs/puffs: puffs_vnops.c

Log Message:
s/invlid/invalid/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/sys/arch/amiga/amiga/disksubr.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/emips/emips/bus_dma.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/newsmips/newsmips/bus.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/pmax/pmax/bus.c
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/pmax/pmax/bus_dma.c
cvs rdiff -u -r1.223 -r1.224 src/sys/fs/puffs/puffs_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/sys/arch/amiga/amiga/disksubr.c
diff -u src/sys/arch/amiga/amiga/disksubr.c:1.70 src/sys/arch/amiga/amiga/disksubr.c:1.71
--- src/sys/arch/amiga/amiga/disksubr.c:1.70	Wed Apr  3 22:10:49 2019
+++ src/sys/arch/amiga/amiga/disksubr.c	Sun Dec  5 03:07:15 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: disksubr.c,v 1.70 2019/04/03 22:10:49 christos Exp $	*/
+/*	$NetBSD: disksubr.c,v 1.71 2021/12/05 03:07:15 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.70 2019/04/03 22:10:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.71 2021/12/05 03:07:15 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -355,7 +355,7 @@ readdisklabel(dev_t dev, void (*strat)(s
 			pp = &lp->d_partitions[0];
 			if (pp->p_size) {
 				printf("WARN: more than one root, ignoring\n");
-				clp->rdblock = RDBNULL;	/* invlidate cpulab */
+				clp->rdblock = RDBNULL;	/* invalidate cpulab */
 				continue;
 			}
 			break;
@@ -363,7 +363,7 @@ readdisklabel(dev_t dev, void (*strat)(s
 			pp = &lp->d_partitions[1];
 			if (pp->p_size) {
 				printf("WARN: more than one swap, ignoring\n");
-				clp->rdblock = RDBNULL;	/* invlidate cpulab */
+				clp->rdblock = RDBNULL;	/* invalidate cpulab */
 				continue;
 			}
 			break;

Index: src/sys/arch/emips/emips/bus_dma.c
diff -u src/sys/arch/emips/emips/bus_dma.c:1.5 src/sys/arch/emips/emips/bus_dma.c:1.6
--- src/sys/arch/emips/emips/bus_dma.c:1.5	Sat Nov 21 19:24:17 2020
+++ src/sys/arch/emips/emips/bus_dma.c	Sun Dec  5 03:07:15 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_dma.c,v 1.5 2020/11/21 19:24:17 thorpej Exp $	*/
+/*	$NetBSD: bus_dma.c,v 1.6 2021/12/05 03:07:15 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.5 2020/11/21 19:24:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.6 2021/12/05 03:07:15 msaitoh Exp $");
 
 #include "opt_cputype.h"
 
@@ -462,7 +462,7 @@ _bus_dmamap_sync_r3k(bus_dma_tag_t t, bu
 		return;
 
 	/*
-	 * No cache invlidation is necessary if the DMA map covers
+	 * No cache invalidation is necessary if the DMA map covers
 	 * COHERENT DMA-safe memory (which is mapped un-cached).
 	 */
 	if (map->_dm_flags & EMIPS_DMAMAP_COHERENT)

Index: src/sys/arch/newsmips/newsmips/bus.c
diff -u src/sys/arch/newsmips/newsmips/bus.c:1.34 src/sys/arch/newsmips/newsmips/bus.c:1.35
--- src/sys/arch/newsmips/newsmips/bus.c:1.34	Sat Nov 21 17:54:48 2020
+++ src/sys/arch/newsmips/newsmips/bus.c	Sun Dec  5 03:07:16 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus.c,v 1.34 2020/11/21 17:54:48 thorpej Exp $	*/
+/*	$NetBSD: bus.c,v 1.35 2021/12/05 03:07:16 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.34 2020/11/21 17:54:48 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.35 2021/12/05 03:07:16 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -507,7 +507,7 @@ _bus_dmamap_sync_r3k(bus_dma_tag_t t, bu
 		return;
 
 	/*
-	 * No cache invlidation is necessary if the DMA map covers
+	 * No cache invalidation is necessary if the DMA map covers
 	 * COHERENT DMA-safe memory (which is mapped un-cached).
 	 */
 	if (map->_dm_flags & NEWSMIPS_DMAMAP_COHERENT)

Index: src/sys/arch/pmax/pmax/bus.c
diff -u src/sys/arch/pmax/pmax/bus.c:1.4 src/sys/arch/pmax/pmax/bus.c:1.5
--- src/sys/arch/pmax/pmax/bus.c:1.4	Thu Feb  7 04:32:38 2019
+++ src/sys/arch/pmax/pmax/bus.c	Sun Dec  5 03:07:16 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus.c,v 1.4 2019/02/07 04:32:38 mrg Exp $	*/
+/*	$NetBSD: bus.c,v 1.5 2021/12/05 03:07:16 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.4 2019/02/07 04:32:38 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.5 2021/12/05 03:07:16 msaitoh Exp $");
 
 #include "opt_cputype.h"
 
@@ -148,7 +148,7 @@ _bus_dmamap_sync_r3k(bus_dma_tag_t t, bu
 		return;
 
 	/*
-	 * No cache invlidation is necessary if the DMA map covers
+	 * No cache invalidation is necessary if the DMA map covers
 	 * COHERENT DMA-safe memory (which is mapped un-cached).
 	 */
 	if (map->_dm_flags & _BUS_DMAMAP_COHERENT)

Index: src/sys/arch/pmax/pmax/bus_dma.c
diff -u src/sys/arch/pmax/pmax/bus_dma.c:1.60 src/sys/arch/pmax/pmax/bus_dma.c:1.61
--- src/sys/arch/pmax/pmax/bus_dma.c:1.60	Sat Nov 21 16:07:18 2020
+++ src/sys/arch/pmax/pmax/bus_dma.c	Sun Dec  5 03:07:16 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_dma.c,v 1.60 2020/11/21 16:07:18 thorpej Exp $	*/
+/*	$NetBSD: bus_dma.c,v 1.61 2021/12/05 03:07:16 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.60 2020/11/21 16:07:18 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.61 2021/12/05 03:07:16 msaitoh Exp $");
 
 #include "opt_cputype.h"
 
@@ -462,7 +462,7 @@ _bus_dmamap_sync_r3k(bus_dma_tag_t t, bu
 		return;
 
 	/*
-	 * No cache invlidation is necessary if the DMA map covers
+	 * No cache invalidation is necessary if the DMA map covers
 	 * COHERENT DMA-safe memory (which is mapped un-cached).
 	 */
 	if (map->_dm_flags & PMAX_DMAMAP_COHERENT)

Index: src/sys/fs/puffs/puffs_vnops.c
diff -u src/sys/fs/puffs/puffs_vnops.c:1.223 src/sys/fs/puffs/puffs_vnops.c:1.224
--- src/sys/fs/puffs/puffs_vnops.c:1.223	Wed Oct 20 03:08:17 2021
+++ src/sys/fs/puffs/puffs_vnops.c	Sun Dec  5 03:07:16 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: puffs_vnops.c,v 1.223 2021/10/20 03:08:17 thorpej Exp $	*/
+/*	$NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh 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.223 2021/10/20 03:08:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.224 2021/12/05 03:07:16 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -2474,7 +2474,7 @@ puffs_vnop_write(void *v)
 
 		/*
 		 * Direct I/O on write but not on read: we must
-		 * invlidate the written pages so that we read
+		 * invalidate the written pages so that we read
 		 * the written data and not the stalled cache.
 		 */
 		if ((error == 0) && 

Reply via email to