Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/chfs fix typos in word "instead", mainly in log mess...



details:   https://anonhg.NetBSD.org/src/rev/a63e7a0ae6af
branches:  trunk
changeset: 1027155:a63e7a0ae6af
user:      andvar <andvar%NetBSD.org@localhost>
date:      Tue Dec 07 22:13:56 2021 +0000

description:
fix typos in word "instead", mainly in log messages.

diffstat:

 sys/dev/pci/ixgbe/ixgbe.c |  6 +++---
 sys/dev/sbus/sio16.c      |  6 +++---
 sys/ufs/chfs/chfs_gc.c    |  4 ++--
 sys/ufs/chfs/chfs_vnode.c |  8 ++++----
 4 files changed, 12 insertions(+), 12 deletions(-)

diffs (108 lines):

diff -r 93ad89459a60 -r a63e7a0ae6af sys/dev/pci/ixgbe/ixgbe.c
--- a/sys/dev/pci/ixgbe/ixgbe.c Tue Dec 07 22:09:59 2021 +0000
+++ b/sys/dev/pci/ixgbe/ixgbe.c Tue Dec 07 22:13:56 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.294 2021/11/12 06:56:50 skrll Exp $ */
+/* $NetBSD: ixgbe.c,v 1.295 2021/12/07 22:13:56 andvar Exp $ */
 
 /******************************************************************************
 
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.294 2021/11/12 06:56:50 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.295 2021/12/07 22:13:56 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -723,7 +723,7 @@
                /* Disable Head Writeback */
                /*
                 * Note: for X550 series devices, these registers are actually
-                * prefixed with TPH_ isntead of DCA_, but the addresses and
+                * prefixed with TPH_ instead of DCA_, but the addresses and
                 * fields remain the same.
                 */
                switch (hw->mac.type) {
diff -r 93ad89459a60 -r a63e7a0ae6af sys/dev/sbus/sio16.c
--- a/sys/dev/sbus/sio16.c      Tue Dec 07 22:09:59 2021 +0000
+++ b/sys/dev/sbus/sio16.c      Tue Dec 07 22:13:56 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sio16.c,v 1.27 2021/08/07 16:19:15 thorpej Exp $       */
+/*     $NetBSD: sio16.c,v 1.28 2021/12/07 22:13:56 andvar Exp $        */
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sio16.c,v 1.27 2021/08/07 16:19:15 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sio16.c,v 1.28 2021/12/07 22:13:56 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/conf.h>
@@ -133,7 +133,7 @@
        sc->sc_dev = self;
 
        if (sa->sa_nreg != 4)
-               panic("sio16_attach: got %d registers intead of 4",
+               panic("sio16_attach: got %d registers instead of 4",
                    sa->sa_nreg);
 
        /* copy our bus tag, we will need it */
diff -r 93ad89459a60 -r a63e7a0ae6af sys/ufs/chfs/chfs_gc.c
--- a/sys/ufs/chfs/chfs_gc.c    Tue Dec 07 22:09:59 2021 +0000
+++ b/sys/ufs/chfs/chfs_gc.c    Tue Dec 07 22:13:56 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: chfs_gc.c,v 1.11 2021/07/19 22:24:55 andvar Exp $      */
+/*     $NetBSD: chfs_gc.c,v 1.12 2021/12/07 22:13:56 andvar Exp $      */
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -1034,7 +1034,7 @@
 
                if (retlen != nref_len) {
                        dbg_gc("Error reading node:"
-                           " read: %zu insted of: %zu\n", retlen, nref_len);
+                           " read: %zu instead of: %zu\n", retlen, nref_len);
                        continue;
                }
 
diff -r 93ad89459a60 -r a63e7a0ae6af sys/ufs/chfs/chfs_vnode.c
--- a/sys/ufs/chfs/chfs_vnode.c Tue Dec 07 22:09:59 2021 +0000
+++ b/sys/ufs/chfs/chfs_vnode.c Tue Dec 07 22:13:56 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: chfs_vnode.c,v 1.19 2020/05/16 18:31:53 christos Exp $ */
+/*     $NetBSD: chfs_vnode.c,v 1.20 2021/12/07 22:13:56 andvar Exp $   */
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -106,7 +106,7 @@
                        return err;
                }
                if (retlen != len) {
-                       chfs_err("Error reading vnode: read: %zu insted of: %zu\n",
+                       chfs_err("Error reading vnode: read: %zu instead of: %zu\n",
                            len, retlen);
                        kmem_free(buf, len);
                        return EIO;
@@ -155,7 +155,7 @@
                return err;
        }
        if (retlen != len) {
-               chfs_err("Error reading vnode: read: %zu insted of: %zu\n",
+               chfs_err("Error reading vnode: read: %zu instead of: %zu\n",
                    retlen, len);
                return EIO;
        }
@@ -175,7 +175,7 @@
        }
 
        if (retlen != chfdn.nsize) {
-               chfs_err("Error reading vnode: read: %zu insted of: %zu\n",
+               chfs_err("Error reading vnode: read: %zu instead of: %zu\n",
                    len, retlen);
                return EIO;
        }



Home | Main Index | Thread Index | Old Index