Source-Changes-HG archive

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

[src/trunk]: src Fix typo (s/supress/suppress/).



details:   https://anonhg.NetBSD.org/src/rev/1472492d1412
branches:  trunk
changeset: 457664:1472492d1412
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Jul 11 03:49:51 2019 +0000

description:
Fix typo (s/supress/suppress/).

diffstat:

 sys/arch/i386/stand/bootxx/bootxx.S |   4 ++--
 sys/arch/m68k/m68k/db_disasm.c      |   6 +++---
 sys/dev/pci/if_vgereg.h             |   8 ++++----
 sys/dev/raidframe/rf_dagflags.h     |   6 +++---
 sys/dev/raidframe/rf_stripelocks.c  |   8 ++++----
 sys/net/if_slvar.h                  |   4 ++--
 sys/net/if_spppsubr.c               |   6 +++---
 sys/net/if_stripvar.h               |   4 ++--
 sys/net/zlib.c                      |  18 +++++++++---------
 tests/bin/sh/t_option.sh            |   4 ++--
 usr.bin/sort/sort.1                 |   4 ++--
 usr.sbin/altq/libaltq/altq_qop.h    |   6 +++---
 usr.sbin/kgmon/kgmon.c              |  10 +++++-----
 usr.sbin/route6d/route6d.c          |   6 +++---
 14 files changed, 47 insertions(+), 47 deletions(-)

diffs (truncated from 397 to 300 lines):

diff -r eea46c5d51dd -r 1472492d1412 sys/arch/i386/stand/bootxx/bootxx.S
--- a/sys/arch/i386/stand/bootxx/bootxx.S       Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/arch/i386/stand/bootxx/bootxx.S       Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bootxx.S,v 1.10 2011/01/06 01:08:48 jakllsch Exp $     */
+/*     $NetBSD: bootxx.S,v 1.11 2019/07/11 03:49:51 msaitoh Exp $      */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -98,7 +98,7 @@
        aam                             /* largest errno is < 100 */
        addw    $('0' << 8) | '0', %ax  /* to ascii */
        rorw    $8, %ax
-       cmpb    $'0', %al               /* supress leading zero */
+       cmpb    $'0', %al               /* suppress leading zero */
        jne     10f
        movb    $' ', %al
 10:    movw    %ax, 12f
diff -r eea46c5d51dd -r 1472492d1412 sys/arch/m68k/m68k/db_disasm.c
--- a/sys/arch/m68k/m68k/db_disasm.c    Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/arch/m68k/m68k/db_disasm.c    Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_disasm.c,v 1.42 2019/02/05 07:18:52 mrg Exp $       */
+/*     $NetBSD: db_disasm.c,v 1.43 2019/07/11 03:49:51 msaitoh Exp $   */
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_disasm.c,v 1.42 2019/02/05 07:18:52 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_disasm.c,v 1.43 2019/07/11 03:49:51 msaitoh Exp $");
 
 #include <sys/param.h>
 #ifdef _KERNEL
@@ -2691,7 +2691,7 @@
                            bd == 3 ? SIZE_LONG :
                            SIZE_BYTE);
                        if (od && !ISBITSET(ext,6) && !ISBITSET(ext,2))
-                               /* Pre-indexed and not supressing index */
+                               /* Pre-indexed and not suppressing index */
                                addchar(',');
                        else if (od && ISBITSET(ext,2)) {
                                /* Post-indexed */
diff -r eea46c5d51dd -r 1472492d1412 sys/dev/pci/if_vgereg.h
--- a/sys/dev/pci/if_vgereg.h   Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/dev/pci/if_vgereg.h   Thu Jul 11 03:49:51 2019 +0000
@@ -240,8 +240,8 @@
 #define VGE_INTCTL_HC_RELOAD           0x02 /* enable hold timer reload */
 #define VGE_INTCTL_STATUS              0x04 /* interrupt pending status */
 #define VGE_INTCTL_MASK                        0x18 /* multilayer int mask */
-#define VGE_INTCTL_RXINTSUP_DISABLE    0x20 /* disable RX int supression */
-#define VGE_INTCTL_TXINTSUP_DISABLE    0x40 /* disable TX int supression */
+#define VGE_INTCTL_RXINTSUP_DISABLE    0x20 /* disable RX int suppression */
+#define VGE_INTCTL_TXINTSUP_DISABLE    0x40 /* disable TX int suppression */
 #define VGE_INTCTL_SOFTINT             0x80 /* request soft interrupt */
 
 #define VGE_INTMASK_LAYER0             0x00
@@ -384,8 +384,8 @@
  *   the multicast hash filter or the CAM table)
  * - The behavior of the interrupt holdoff timer register at offset
  *   0x20 (the page select bits allow you to set the interrupt
- *   holdoff timer, the TX interrupt supression count or the
- *   RX interrupt supression count)
+ *   holdoff timer, the TX interrupt suppression count or the
+ *   RX interrupt suppression count)
  * - The behavior the WOL pattern programming registers at offset
  *   0xC0 (controls which pattern is set)
  */
diff -r eea46c5d51dd -r 1472492d1412 sys/dev/raidframe/rf_dagflags.h
--- a/sys/dev/raidframe/rf_dagflags.h   Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/dev/raidframe/rf_dagflags.h   Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rf_dagflags.h,v 1.5 2005/12/11 12:23:37 christos Exp $ */
+/*     $NetBSD: rf_dagflags.h,v 1.6 2019/07/11 03:49:51 msaitoh Exp $  */
 /*
  * Copyright (c) 1995 Carnegie-Mellon University.
  * All rights reserved.
@@ -43,12 +43,12 @@
  * by DoAccess, SelectAlgorithm, and the DAG creation routines.
  *
  * If USE_DAG or USE_ASM is specified, neither the DAG nor the ASM
- * will be modified, which means that you can't SUPRESS if you
+ * will be modified, which means that you can't SUPPRESS if you
  * specify USE_DAG.
  */
 
 #define RF_DAG_FLAGS_NONE             0        /* no flags */
-#define RF_DAG_SUPPRESS_LOCKS     (1<<0)       /* supress all stripe locks in
+#define RF_DAG_SUPPRESS_LOCKS     (1<<0)       /* suppress all stripe locks in
                                                 * the DAG */
 #define RF_DAG_NONBLOCKING_IO     (1<<3)       /* cause DoAccess to be
                                                 * non-blocking */
diff -r eea46c5d51dd -r 1472492d1412 sys/dev/raidframe/rf_stripelocks.c
--- a/sys/dev/raidframe/rf_stripelocks.c        Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/dev/raidframe/rf_stripelocks.c        Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rf_stripelocks.c,v 1.33 2019/02/09 03:34:00 christos Exp $     */
+/*     $NetBSD: rf_stripelocks.c,v 1.34 2019/07/11 03:49:51 msaitoh Exp $      */
 /*
  * Copyright (c) 1995 Carnegie-Mellon University.
  * All rights reserved.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_stripelocks.c,v 1.33 2019/02/09 03:34:00 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_stripelocks.c,v 1.34 2019/07/11 03:49:51 msaitoh Exp $");
 
 #include <dev/raidframe/raidframevar.h>
 
@@ -262,7 +262,7 @@
 #if RF_DEBUG_STRIPELOCK
        if (rf_stripeLockDebug) {
                if (stripeID == -1) {
-                       Dprintf1("[%d] Lock acquisition supressed (stripeID == -1)\n", tid);
+                       Dprintf1("[%d] Lock acquisition suppressed (stripeID == -1)\n", tid);
                } else {
                        Dprintf8("[%d] Trying to acquire stripe lock table 0x%lx SID %ld type %c range %ld-%ld, range2 %ld-%ld hashval %d\n",
                            tid, (unsigned long) lockTable, stripeID, lockReqDesc->type, lockReqDesc->start,
@@ -385,7 +385,7 @@
 #if RF_DEBUG_STRIPELOCK
        if (rf_stripeLockDebug) {
                if (stripeID == -1) {
-                       Dprintf1("[%d] Lock release supressed (stripeID == -1)\n", tid);
+                       Dprintf1("[%d] Lock release suppressed (stripeID == -1)\n", tid);
                } else {
                        Dprintf8("[%d] Releasing stripe lock on stripe ID %ld, type %c range %ld-%ld %ld-%ld table 0x%lx\n",
                            tid, stripeID, lockReqDesc->type, lockReqDesc->start, lockReqDesc->stop, lockReqDesc->start2, lockReqDesc->stop2, lockTable);
diff -r eea46c5d51dd -r 1472492d1412 sys/net/if_slvar.h
--- a/sys/net/if_slvar.h        Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/net/if_slvar.h        Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_slvar.h,v 1.33 2007/07/14 21:02:41 ad Exp $ */
+/*     $NetBSD: if_slvar.h,v 1.34 2019/07/11 03:49:51 msaitoh Exp $    */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -74,7 +74,7 @@
 
 /* visible flags */
 #define        SC_COMPRESS     IFF_LINK0       /* compress TCP traffic */
-#define        SC_NOICMP       IFF_LINK1       /* supress ICMP traffic */
+#define        SC_NOICMP       IFF_LINK1       /* suppress ICMP traffic */
 #define        SC_AUTOCOMP     IFF_LINK2       /* auto-enable TCP compression */
 
 #endif /* _NET_IF_SLVAR_H_ */
diff -r eea46c5d51dd -r 1472492d1412 sys/net/if_spppsubr.c
--- a/sys/net/if_spppsubr.c     Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/net/if_spppsubr.c     Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_spppsubr.c,v 1.182 2019/03/01 11:06:57 pgoyette Exp $        */
+/*     $NetBSD: if_spppsubr.c,v 1.183 2019/07/11 03:49:51 msaitoh Exp $         */
 
 /*
  * Synchronous PPP/Cisco link level subroutines.
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.182 2019/03/01 11:06:57 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.183 2019/07/11 03:49:51 msaitoh Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_inet.h"
@@ -4571,7 +4571,7 @@
                if ((sp->hisauth.flags & SPPP_AUTHFLAG_NORECHALLENGE) == 0)
                        addlog("next re-challenge in %d seconds\n", i);
                else
-                       addlog("re-challenging supressed\n");
+                       addlog("re-challenging suppressed\n");
        }
 
        x = splnet();
diff -r eea46c5d51dd -r 1472492d1412 sys/net/if_stripvar.h
--- a/sys/net/if_stripvar.h     Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/net/if_stripvar.h     Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_stripvar.h,v 1.19 2007/07/14 21:02:42 ad Exp $      */
+/*     $NetBSD: if_stripvar.h,v 1.20 2019/07/11 03:49:51 msaitoh Exp $ */
 
 #ifndef _NET_IF_STRIPVAR_H_
 #define _NET_IF_STRIPVAR_H_
@@ -50,7 +50,7 @@
 
 /* visible flags */
 #define        SC_COMPRESS     IFF_LINK0       /* compress TCP traffic */
-#define        SC_NOICMP       IFF_LINK1       /* supress ICMP traffic */
+#define        SC_NOICMP       IFF_LINK1       /* suppress ICMP traffic */
 #define        SC_AUTOCOMP     IFF_LINK2       /* auto-enable TCP compression */
 
 #ifdef _KERNEL
diff -r eea46c5d51dd -r 1472492d1412 sys/net/zlib.c
--- a/sys/net/zlib.c    Thu Jul 11 03:30:01 2019 +0000
+++ b/sys/net/zlib.c    Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $       */
+/*     $NetBSD: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $        */
 /*
  * This file is derived from various .h and .c files from the zlib-1.0.4
  * distribution by Jean-loup Gailly and Mark Adler, with some additions
@@ -11,7 +11,7 @@
  * - added inflateIncomp and deflateOutputPending
  * - allow strm->next_out to be NULL, meaning discard the output
  *
- * $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $
+ * $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $
  */
 
 /*
@@ -22,7 +22,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $");
 
 #define NO_DUMMY_DECL
 #define NO_ZCFUNCS
@@ -45,7 +45,7 @@
    subject to change. Applications should only use zlib.h.
  */
 
-/* @(#) $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $ */
+/* @(#) $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $ */
 
 #ifndef _Z_UTIL_H
 #define _Z_UTIL_H
@@ -294,7 +294,7 @@
    subject to change. Applications should only use zlib.h.
  */
 
-/* @(#) $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $ */
+/* @(#) $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $ */
 
 #ifndef _DEFLATE_H
 #define _DEFLATE_H
@@ -461,7 +461,7 @@
     int nice_match; /* Stop searching when current match exceeds this */
 
                 /* used by trees.c: */
-    /* Didn't use ct_data typedef below to supress compiler warning */
+    /* Didn't use ct_data typedef below to suppress compiler warning */
     struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
     struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
     struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
@@ -656,7 +656,7 @@
  *
  */
 
-/* @(#) $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $ */
+/* @(#) $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $ */
 
 /* #include "deflate.h" */
 
@@ -1999,7 +1999,7 @@
  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
  */
 
-/* @(#) $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $ */
+/* @(#) $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $ */
 
 /* #define GEN_TREES_H */
 
@@ -5813,7 +5813,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h
  */
 
-/* @(#) $Id: zlib.c,v 1.36 2019/02/19 00:26:57 christos Exp $ */
+/* @(#) $Id: zlib.c,v 1.37 2019/07/11 03:49:51 msaitoh Exp $ */
 
 /* #include "zlib.h" */
 
diff -r eea46c5d51dd -r 1472492d1412 tests/bin/sh/t_option.sh
--- a/tests/bin/sh/t_option.sh  Thu Jul 11 03:30:01 2019 +0000
+++ b/tests/bin/sh/t_option.sh  Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: t_option.sh,v 1.6 2017/11/16 19:41:41 kre Exp $
+# $NetBSD: t_option.sh,v 1.7 2019/07/11 03:49:51 msaitoh Exp $
 #
 # Copyright (c) 2016 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -258,7 +258,7 @@
 
 atf_test_case set_n
 set_n_head() {
-       atf_set "descr" "Tests that 'set -n' supresses command execution " \
+       atf_set "descr" "Tests that 'set -n' suppresses command execution " \
                        "and that it behaves as defined by the standard"
 }
 set_n_body() {
diff -r eea46c5d51dd -r 1472492d1412 usr.bin/sort/sort.1
--- a/usr.bin/sort/sort.1       Thu Jul 11 03:30:01 2019 +0000
+++ b/usr.bin/sort/sort.1       Thu Jul 11 03:49:51 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: sort.1,v 1.38 2017/07/03 21:34:21 wiz Exp $
+.\"    $NetBSD: sort.1,v 1.39 2019/07/11 03:49:51 msaitoh Exp $
 .\"
 .\" Copyright (c) 2000-2003 The NetBSD Foundation, Inc.



Home | Main Index | Thread Index | Old Index