Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/lfs s/threshhold/threshold



details:   https://anonhg.NetBSD.org/src/rev/ca2327f2e16f
branches:  trunk
changeset: 984933:ca2327f2e16f
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sat Jul 31 20:29:36 2021 +0000

description:
s/threshhold/threshold

diffstat:

 sys/arch/hp300/dev/rd.c                   |   6 +++---
 sys/arch/m68k/fpsp/round.sa               |   4 ++--
 sys/arch/mips/sibyte/include/sb1250_mac.h |   2 +-
 sys/dev/gpib/rd.c                         |   6 +++---
 sys/dev/ic/cs89x0.c                       |   6 +++---
 sys/dev/ic/siisatareg.h                   |   4 ++--
 sys/dev/usb/umcs.h                        |   4 ++--
 sys/netinet/tcp_congctl.c                 |  10 +++++-----
 sys/netinet/tcp_input.c                   |   6 +++---
 sys/netinet/tcp_subr.c                    |   6 +++---
 sys/netinet/tcp_var.h                     |   4 ++--
 sys/ufs/lfs/lfs_vfsops.c                  |   6 +++---
 12 files changed, 32 insertions(+), 32 deletions(-)

diffs (280 lines):

diff -r 1709819bcce0 -r ca2327f2e16f sys/arch/hp300/dev/rd.c
--- a/sys/arch/hp300/dev/rd.c   Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/arch/hp300/dev/rd.c   Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rd.c,v 1.109 2021/07/11 13:00:52 tsutsui Exp $ */
+/*     $NetBSD: rd.c,v 1.110 2021/07/31 20:29:36 andvar Exp $  */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.109 2021/07/11 13:00:52 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.110 2021/07/31 20:29:36 andvar Exp $");
 
 #include "opt_useleds.h"
 
@@ -1238,7 +1238,7 @@
        }
        /*
         * Only report error if we have reached the error reporting
-        * threshhold.  By default, this will only report after the
+        * threshold.  By default, this will only report after the
         * retry limit has been exceeded.
         */
        if (sc->sc_errcnt < rderrthresh)
diff -r 1709819bcce0 -r ca2327f2e16f sys/arch/m68k/fpsp/round.sa
--- a/sys/arch/m68k/fpsp/round.sa       Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/arch/m68k/fpsp/round.sa       Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-*      $NetBSD: round.sa,v 1.3 1994/10/26 07:49:24 cgd Exp $
+*      $NetBSD: round.sa,v 1.4 2021/07/31 20:29:37 andvar Exp $
 
 *      MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP
 *      M68000 Hi-Performance Microprocessor Division
@@ -507,7 +507,7 @@
        rts
 
 *
-*      dnrm_lp --- normalize exponent/mantissa to specified threshhold
+*      dnrm_lp --- normalize exponent/mantissa to specified threshold
 *
 * Input:
 *      a0              points to the operand to be denormalized
diff -r 1709819bcce0 -r ca2327f2e16f sys/arch/mips/sibyte/include/sb1250_mac.h
--- a/sys/arch/mips/sibyte/include/sb1250_mac.h Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/arch/mips/sibyte/include/sb1250_mac.h Sat Jul 31 20:29:36 2021 +0000
@@ -228,7 +228,7 @@
 #define G_MAC_TXD_WEIGHT1(x)        _SB_GETVALUE(x,S_MAC_TXD_WEIGHT1,M_MAC_TXD_WEIGHT1)
 
 /*
- * MAC Fifo Threshhold registers (Table 9-14)
+ * MAC Fifo Threshold registers (Table 9-14)
  * Register: MAC_THRSH_CFG_0
  * Register: MAC_THRSH_CFG_1
  * Register: MAC_THRSH_CFG_2
diff -r 1709819bcce0 -r ca2327f2e16f sys/dev/gpib/rd.c
--- a/sys/dev/gpib/rd.c Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/dev/gpib/rd.c Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rd.c,v 1.43 2020/09/29 02:49:56 msaitoh Exp $ */
+/*     $NetBSD: rd.c,v 1.44 2021/07/31 20:29:37 andvar Exp $ */
 
 /*-
  * Copyright (c) 1996-2003 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.43 2020/09/29 02:49:56 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rd.c,v 1.44 2021/07/31 20:29:37 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -871,7 +871,7 @@
        }
        /*
         * Only report error if we have reached the error reporting
-        * threshhold.  By default, this will only report after the
+        * threshold.  By default, this will only report after the
         * retry limit has been exceeded.
         */
        if (sc->sc_errcnt < rderrthresh)
diff -r 1709819bcce0 -r ca2327f2e16f sys/dev/ic/cs89x0.c
--- a/sys/dev/ic/cs89x0.c       Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/dev/ic/cs89x0.c       Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cs89x0.c,v 1.50 2021/07/24 21:31:37 andvar Exp $       */
+/*     $NetBSD: cs89x0.c,v 1.51 2021/07/31 20:29:37 andvar Exp $       */
 
 /*
  * Copyright (c) 2004 Christopher Gilbert
@@ -212,7 +212,7 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs89x0.c,v 1.50 2021/07/24 21:31:37 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs89x0.c,v 1.51 2021/07/31 20:29:37 andvar Exp $");
 
 #include "opt_inet.h"
 
@@ -383,7 +383,7 @@
        /* Start out not transmitting */
        sc->sc_txbusy = FALSE;
 
-       /* Set up early transmit threshhold */
+       /* Set up early transmit threshold */
        sc->sc_xe_ent = 0;
        sc->sc_xe_togo = cs_xmit_early_table[sc->sc_xe_ent].better_count;
 
diff -r 1709819bcce0 -r ca2327f2e16f sys/dev/ic/siisatareg.h
--- a/sys/dev/ic/siisatareg.h   Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/dev/ic/siisatareg.h   Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: siisatareg.h,v 1.11 2018/02/08 09:05:19 dholland Exp $ */
+/* $NetBSD: siisatareg.h,v 1.12 2021/07/31 20:29:37 andvar Exp $ */
 
 /*
  * Copyright (c) 2007, 2008, 2009, 2010, 2011 Jonathan A. Kollasch.
@@ -176,7 +176,7 @@
 #define PRO_PCEF       0x1020          /* port command execution fifo */
 #define PRO_PCE                0x1024          /* port command error */
 #define PRO_PFISC      0x1028          /* port FIS config */
-#define PRO_PCIRFIFOT  0x102c          /* pci request fifo threshhold */
+#define PRO_PCIRFIFOT  0x102c          /* pci request fifo threshold */
 #define PRO_P8B10BDEC  0x1040          /* port 8B/10B decode error counter */
 #define PRO_PCRCEC     0x1044          /* port crc error count */
 #define PRO_PHEC       0x1048          /* port handshake error count */
diff -r 1709819bcce0 -r ca2327f2e16f sys/dev/usb/umcs.h
--- a/sys/dev/usb/umcs.h        Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/dev/usb/umcs.h        Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: umcs.h,v 1.3 2021/07/31 14:36:33 andvar Exp $ */
+/* $NetBSD: umcs.h,v 1.4 2021/07/31 20:29:37 andvar Exp $ */
 /* $FreeBSD: head/sys/dev/usb/serial/umcs.h 252123 2013-06-23 20:19:51Z thomas $ */
 
 /*-
@@ -159,7 +159,7 @@
 #define        MCS7840_DEV_REG_THR_VAL_HIGH3   0x44    /* High 1 bit of threshold
                                                 * value for Bulk-Out and
                                                 * enable flag for Port 3, R/W */
-#define        MCS7840_DEV_REG_THR_VAL_LOW4    0x45    /* Low 8 bits of threshhold
+#define        MCS7840_DEV_REG_THR_VAL_LOW4    0x45    /* Low 8 bits of threshold
                                                 * value for Bulk-Out for Port
                                                 * 4, R/W */
 #define        MCS7840_DEV_REG_THR_VAL_HIGH4   0x46    /* High 1 bit of threshold
diff -r 1709819bcce0 -r ca2327f2e16f sys/netinet/tcp_congctl.c
--- a/sys/netinet/tcp_congctl.c Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/netinet/tcp_congctl.c Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_congctl.c,v 1.27 2019/10/09 05:29:18 msaitoh Exp $ */
+/*     $NetBSD: tcp_congctl.c,v 1.28 2021/07/31 20:29:37 andvar Exp $  */
 
 /*-
  * Copyright (c) 1997, 1998, 1999, 2001, 2005, 2006 The NetBSD Foundation, Inc.
@@ -135,7 +135,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_congctl.c,v 1.27 2019/10/09 05:29:18 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_congctl.c,v 1.28 2021/07/31 20:29:37 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -537,12 +537,12 @@
         * almost immediately.  To get more time between
         * drops but still "push" the network to take advantage
         * of improving conditions, we switch from exponential
-        * to linear window opening at some threshhold size.
-        * For a threshhold, we use half the current window
+        * to linear window opening at some threshold size.
+        * For a threshold, we use half the current window
         * size, truncated to a multiple of the mss.
         *
         * (the minimum cwnd that will give us exponential
-        * growth is 2 mss.  We don't allow the threshhold
+        * growth is 2 mss.  We don't allow the threshold
         * to go below this.)
         */
 
diff -r 1709819bcce0 -r ca2327f2e16f sys/netinet/tcp_input.c
--- a/sys/netinet/tcp_input.c   Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/netinet/tcp_input.c   Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_input.c,v 1.428 2021/03/08 18:17:27 christos Exp $ */
+/*     $NetBSD: tcp_input.c,v 1.429 2021/07/31 20:29:37 andvar Exp $   */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -148,7 +148,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.428 2021/03/08 18:17:27 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.429 2021/07/31 20:29:37 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -2535,7 +2535,7 @@
                                 * duplicate ack (ie, window info didn't
                                 * change), the ack is the biggest we've
                                 * seen and we've seen exactly our rexmt
-                                * threshhold of them, assume a packet
+                                * threshold of them, assume a packet
                                 * has been dropped and retransmit it.
                                 * Kludge snd_nxt & the congestion
                                 * window so we send only this one
diff -r 1709819bcce0 -r ca2327f2e16f sys/netinet/tcp_subr.c
--- a/sys/netinet/tcp_subr.c    Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/netinet/tcp_subr.c    Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_subr.c,v 1.288 2021/03/09 13:48:16 christos Exp $  */
+/*     $NetBSD: tcp_subr.c,v 1.289 2021/07/31 20:29:37 andvar Exp $    */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -91,7 +91,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_subr.c,v 1.288 2021/03/09 13:48:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_subr.c,v 1.289 2021/07/31 20:29:37 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -1155,7 +1155,7 @@
                }
                /*
                 * update the pipelimit (ssthresh) if it has been updated
-                * already or if a pipesize was specified & the threshhold
+                * already or if a pipesize was specified & the threshold
                 * got below half the pipesize.  I.e., wait for bad news
                 * before we start updating, then update on both good
                 * and bad news.
diff -r 1709819bcce0 -r ca2327f2e16f sys/netinet/tcp_var.h
--- a/sys/netinet/tcp_var.h     Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/netinet/tcp_var.h     Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_var.h,v 1.195 2021/03/08 18:17:27 christos Exp $   */
+/*     $NetBSD: tcp_var.h,v 1.196 2021/07/31 20:29:37 andvar Exp $     */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -299,7 +299,7 @@
 
 /* congestion control (for slow start, source quench, retransmit after loss) */
        u_long  snd_cwnd;               /* congestion-controlled window */
-       u_long  snd_ssthresh;           /* snd_cwnd size threshhold for
+       u_long  snd_ssthresh;           /* snd_cwnd size threshold for
                                         * for slow start exponential to
                                         * linear switch
                                         */
diff -r 1709819bcce0 -r ca2327f2e16f sys/ufs/lfs/lfs_vfsops.c
--- a/sys/ufs/lfs/lfs_vfsops.c  Sat Jul 31 19:52:44 2021 +0000
+++ b/sys/ufs/lfs/lfs_vfsops.c  Sat Jul 31 20:29:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lfs_vfsops.c,v 1.380 2020/09/05 16:30:13 riastradh Exp $       */
+/*     $NetBSD: lfs_vfsops.c,v 1.381 2021/07/31 20:29:37 andvar Exp $  */
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002, 2003, 2007, 2007
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.380 2020/09/05 16:30:13 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.381 2021/07/31 20:29:37 andvar Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_lfs.h"
@@ -383,7 +383,7 @@
 /*
  * The writer daemon.  UVM keeps track of how many dirty pages we are holding
  * in lfs_subsys_pages; the daemon flushes the filesystem when this value
- * crosses the (user-defined) threshhold LFS_MAX_PAGES.
+ * crosses the (user-defined) threshold LFS_MAX_PAGES.
  */
 static void
 lfs_writerd(void *arg)



Home | Main Index | Thread Index | Old Index