Module Name:    src
Committed By:   andvar
Date:           Sat Jul 31 20:29:37 UTC 2021

Modified Files:
        src/sys/arch/hp300/dev: rd.c
        src/sys/arch/m68k/fpsp: round.sa
        src/sys/arch/mips/sibyte/include: sb1250_mac.h
        src/sys/dev/gpib: rd.c
        src/sys/dev/ic: cs89x0.c siisatareg.h
        src/sys/dev/usb: umcs.h
        src/sys/netinet: tcp_congctl.c tcp_input.c tcp_subr.c tcp_var.h
        src/sys/ufs/lfs: lfs_vfsops.c

Log Message:
s/threshhold/threshold


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/hp300/dev/rd.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/m68k/fpsp/round.sa
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/mips/sibyte/include/sb1250_mac.h
cvs rdiff -u -r1.43 -r1.44 src/sys/dev/gpib/rd.c
cvs rdiff -u -r1.50 -r1.51 src/sys/dev/ic/cs89x0.c
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/ic/siisatareg.h
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/usb/umcs.h
cvs rdiff -u -r1.27 -r1.28 src/sys/netinet/tcp_congctl.c
cvs rdiff -u -r1.428 -r1.429 src/sys/netinet/tcp_input.c
cvs rdiff -u -r1.288 -r1.289 src/sys/netinet/tcp_subr.c
cvs rdiff -u -r1.195 -r1.196 src/sys/netinet/tcp_var.h
cvs rdiff -u -r1.380 -r1.381 src/sys/ufs/lfs/lfs_vfsops.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/hp300/dev/rd.c
diff -u src/sys/arch/hp300/dev/rd.c:1.109 src/sys/arch/hp300/dev/rd.c:1.110
--- src/sys/arch/hp300/dev/rd.c:1.109	Sun Jul 11 13:00:52 2021
+++ src/sys/arch/hp300/dev/rd.c	Sat Jul 31 20:29:36 2021
@@ -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 @@ rderror(int unit)
 	}
 	/*
 	 * 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)

Index: src/sys/arch/m68k/fpsp/round.sa
diff -u src/sys/arch/m68k/fpsp/round.sa:1.3 src/sys/arch/m68k/fpsp/round.sa:1.4
--- src/sys/arch/m68k/fpsp/round.sa:1.3	Wed Oct 26 07:49:24 1994
+++ src/sys/arch/m68k/fpsp/round.sa	Sat Jul 31 20:29:37 2021
@@ -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 @@ no_inex:
 	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

Index: src/sys/arch/mips/sibyte/include/sb1250_mac.h
diff -u src/sys/arch/mips/sibyte/include/sb1250_mac.h:1.7 src/sys/arch/mips/sibyte/include/sb1250_mac.h:1.8
--- src/sys/arch/mips/sibyte/include/sb1250_mac.h:1.7	Tue May 28 08:59:34 2019
+++ src/sys/arch/mips/sibyte/include/sb1250_mac.h	Sat Jul 31 20:29:37 2021
@@ -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

Index: src/sys/dev/gpib/rd.c
diff -u src/sys/dev/gpib/rd.c:1.43 src/sys/dev/gpib/rd.c:1.44
--- src/sys/dev/gpib/rd.c:1.43	Tue Sep 29 02:49:56 2020
+++ src/sys/dev/gpib/rd.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ rderror(struct rd_softc *sc)
 	}
 	/*
 	 * 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)

Index: src/sys/dev/ic/cs89x0.c
diff -u src/sys/dev/ic/cs89x0.c:1.50 src/sys/dev/ic/cs89x0.c:1.51
--- src/sys/dev/ic/cs89x0.c:1.50	Sat Jul 24 21:31:37 2021
+++ src/sys/dev/ic/cs89x0.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ cs_attach(struct cs_softc *sc, uint8_t *
 	/* 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;
 

Index: src/sys/dev/ic/siisatareg.h
diff -u src/sys/dev/ic/siisatareg.h:1.11 src/sys/dev/ic/siisatareg.h:1.12
--- src/sys/dev/ic/siisatareg.h:1.11	Thu Feb  8 09:05:19 2018
+++ src/sys/dev/ic/siisatareg.h	Sat Jul 31 20:29:37 2021
@@ -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 @@ struct siisata_prb {
 #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 */

Index: src/sys/dev/usb/umcs.h
diff -u src/sys/dev/usb/umcs.h:1.3 src/sys/dev/usb/umcs.h:1.4
--- src/sys/dev/usb/umcs.h:1.3	Sat Jul 31 14:36:33 2021
+++ src/sys/dev/usb/umcs.h	Sat Jul 31 20:29:37 2021
@@ -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

Index: src/sys/netinet/tcp_congctl.c
diff -u src/sys/netinet/tcp_congctl.c:1.27 src/sys/netinet/tcp_congctl.c:1.28
--- src/sys/netinet/tcp_congctl.c:1.27	Wed Oct  9 05:29:18 2019
+++ src/sys/netinet/tcp_congctl.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ tcp_reno_slow_retransmit(struct tcpcb *t
 	 * 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.)
 	 */
 

Index: src/sys/netinet/tcp_input.c
diff -u src/sys/netinet/tcp_input.c:1.428 src/sys/netinet/tcp_input.c:1.429
--- src/sys/netinet/tcp_input.c:1.428	Mon Mar  8 18:17:27 2021
+++ src/sys/netinet/tcp_input.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ after_listen:
 				 * 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

Index: src/sys/netinet/tcp_subr.c
diff -u src/sys/netinet/tcp_subr.c:1.288 src/sys/netinet/tcp_subr.c:1.289
--- src/sys/netinet/tcp_subr.c:1.288	Tue Mar  9 13:48:16 2021
+++ src/sys/netinet/tcp_subr.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ tcp_close(struct tcpcb *tp)
 		}
 		/*
 		 * 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.

Index: src/sys/netinet/tcp_var.h
diff -u src/sys/netinet/tcp_var.h:1.195 src/sys/netinet/tcp_var.h:1.196
--- src/sys/netinet/tcp_var.h:1.195	Mon Mar  8 18:17:27 2021
+++ src/sys/netinet/tcp_var.h	Sat Jul 31 20:29:37 2021
@@ -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 @@ struct tcpcb {
 
 /* 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
 					 */

Index: src/sys/ufs/lfs/lfs_vfsops.c
diff -u src/sys/ufs/lfs/lfs_vfsops.c:1.380 src/sys/ufs/lfs/lfs_vfsops.c:1.381
--- src/sys/ufs/lfs/lfs_vfsops.c:1.380	Sat Sep  5 16:30:13 2020
+++ src/sys/ufs/lfs/lfs_vfsops.c	Sat Jul 31 20:29:37 2021
@@ -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 @@ struct pool lfs_lbnentry_pool;
 /*
  * 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)

Reply via email to