Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/fs/puffs s/invlid/invalid/ in comment.



details:   https://anonhg.NetBSD.org/src/rev/46ac49faeecc
branches:  trunk
changeset: 1026671:46ac49faeecc
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sun Dec 05 03:07:15 2021 +0000

description:
s/invlid/invalid/ in comment.

diffstat:

 sys/arch/amiga/amiga/disksubr.c  |  8 ++++----
 sys/arch/emips/emips/bus_dma.c   |  6 +++---
 sys/arch/newsmips/newsmips/bus.c |  6 +++---
 sys/arch/pmax/pmax/bus.c         |  6 +++---
 sys/arch/pmax/pmax/bus_dma.c     |  6 +++---
 sys/fs/puffs/puffs_vnops.c       |  6 +++---
 6 files changed, 19 insertions(+), 19 deletions(-)

diffs (171 lines):

diff -r bfb4e9c18b57 -r 46ac49faeecc sys/arch/amiga/amiga/disksubr.c
--- a/sys/arch/amiga/amiga/disksubr.c   Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/arch/amiga/amiga/disksubr.c   Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
                        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 @@
                        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;
diff -r bfb4e9c18b57 -r 46ac49faeecc sys/arch/emips/emips/bus_dma.c
--- a/sys/arch/emips/emips/bus_dma.c    Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/arch/emips/emips/bus_dma.c    Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
                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)
diff -r bfb4e9c18b57 -r 46ac49faeecc sys/arch/newsmips/newsmips/bus.c
--- a/sys/arch/newsmips/newsmips/bus.c  Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/arch/newsmips/newsmips/bus.c  Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
                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)
diff -r bfb4e9c18b57 -r 46ac49faeecc sys/arch/pmax/pmax/bus.c
--- a/sys/arch/pmax/pmax/bus.c  Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/arch/pmax/pmax/bus.c  Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
                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)
diff -r bfb4e9c18b57 -r 46ac49faeecc sys/arch/pmax/pmax/bus_dma.c
--- a/sys/arch/pmax/pmax/bus_dma.c      Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/arch/pmax/pmax/bus_dma.c      Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
                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)
diff -r bfb4e9c18b57 -r 46ac49faeecc sys/fs/puffs/puffs_vnops.c
--- a/sys/fs/puffs/puffs_vnops.c        Sun Dec 05 03:04:41 2021 +0000
+++ b/sys/fs/puffs/puffs_vnops.c        Sun Dec 05 03:07:15 2021 +0000
@@ -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 @@
 
                /*
                 * 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) && 



Home | Main Index | Thread Index | Old Index