Module Name:    src
Committed By:   andvar
Date:           Mon Oct  4 21:02:40 UTC 2021

Modified Files:
        src: build.sh
        src/common/lib/libc/arch/i386/string: strlen.S
        src/lib/libresolv: dst_api.c
        src/sys/arch/alpha/alpha: fp_complete.c
        src/sys/arch/mips/adm5120/dev: ahci.c
        src/sys/arch/mips/include: mips_param.h
        src/sys/arch/sparc64/sparc64: autoconf.c
        src/sys/dev/usb: uhci.c
        src/sys/kern: subr_cpu.c

Log Message:
remove duplicate the article in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.358 -r1.359 src/build.sh
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/arch/i386/string/strlen.S
cvs rdiff -u -r1.4 -r1.5 src/lib/libresolv/dst_api.c
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/alpha/alpha/fp_complete.c
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/mips/adm5120/dev/ahci.c
cvs rdiff -u -r1.51 -r1.52 src/sys/arch/mips/include/mips_param.h
cvs rdiff -u -r1.236 -r1.237 src/sys/arch/sparc64/sparc64/autoconf.c
cvs rdiff -u -r1.306 -r1.307 src/sys/dev/usb/uhci.c
cvs rdiff -u -r1.16 -r1.17 src/sys/kern/subr_cpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/build.sh
diff -u src/build.sh:1.358 src/build.sh:1.359
--- src/build.sh:1.358	Sat Sep 18 01:47:07 2021
+++ src/build.sh	Mon Oct  4 21:02:40 2021
@@ -1,5 +1,5 @@
 #! /usr/bin/env sh
-#	$NetBSD: build.sh,v 1.358 2021/09/18 01:47:07 christos Exp $
+#	$NetBSD: build.sh,v 1.359 2021/10/04 21:02:40 andvar Exp $
 #
 # Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1974,7 +1974,7 @@ createmakewrapper()
 	eval cat <<EOF ${makewrapout}
 #! ${HOST_SH}
 # Set proper variables to allow easy "make" building of a NetBSD subtree.
-# Generated from:  \$NetBSD: build.sh,v 1.358 2021/09/18 01:47:07 christos Exp $
+# Generated from:  \$NetBSD: build.sh,v 1.359 2021/10/04 21:02:40 andvar Exp $
 # with these arguments: ${_args}
 #
 
@@ -2297,7 +2297,7 @@ dorump()
 }
 
 repro_date() {
-	# try the bsd date fail back the the linux one
+	# try the bsd date fail back the linux one
 	date -u -r "$1" 2> /dev/null || date -u -d "@$1"
 }
 

Index: src/common/lib/libc/arch/i386/string/strlen.S
diff -u src/common/lib/libc/arch/i386/string/strlen.S:1.2 src/common/lib/libc/arch/i386/string/strlen.S:1.3
--- src/common/lib/libc/arch/i386/string/strlen.S:1.2	Sat Mar 22 19:38:46 2014
+++ src/common/lib/libc/arch/i386/string/strlen.S	Mon Oct  4 21:02:40 2021
@@ -6,7 +6,7 @@
 #include <machine/asm.h>
 
 #if defined(LIBC_SCCS)
-	RCSID("$NetBSD: strlen.S,v 1.2 2014/03/22 19:38:46 jakllsch Exp $")
+	RCSID("$NetBSD: strlen.S,v 1.3 2021/10/04 21:02:40 andvar Exp $")
 #endif
 
 ENTRY(strlen)
@@ -81,7 +81,7 @@ ENTRY(strlen)
 	 * presented above, code that uses it will be faster as long as
 	 * the rate of false positives is low.
 	 *
-	 * This is likely, because the the false positive can only occur
+	 * This is likely, because the false positive can only occur
 	 * if the most siginificant bit of a byte within the word is set.
 	 * The expression will never fail for typical 7-bit ASCII strings.
 	 *

Index: src/lib/libresolv/dst_api.c
diff -u src/lib/libresolv/dst_api.c:1.4 src/lib/libresolv/dst_api.c:1.5
--- src/lib/libresolv/dst_api.c:1.4	Thu Sep 16 22:19:10 2021
+++ src/lib/libresolv/dst_api.c	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $	*/
+/*	$NetBSD: dst_api.c,v 1.5 2021/10/04 21:02:40 andvar Exp $	*/
 
 /*
  * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc.
@@ -40,7 +40,7 @@
 #if 0
 static const char rcsid[] = "Header: /proj/cvs/prod/libbind/dst/dst_api.c,v 1.17 2007/09/24 17:18:25 each Exp ";
 #else
-__RCSID("$NetBSD: dst_api.c,v 1.4 2021/09/16 22:19:10 andvar Exp $");
+__RCSID("$NetBSD: dst_api.c,v 1.5 2021/10/04 21:02:40 andvar Exp $");
 #endif
 
 
@@ -640,7 +640,7 @@ dst_s_write_public_key(const DST_KEY *ke
  *	key structure.
  *  Paramters
  *	len	 Length of the RDATA of the KEY RR RDATA
- *	rdata	 A pointer to the the KEY RR RDATA.
+ *	rdata	 A pointer to the KEY RR RDATA.
  *	in_name     Key name to be stored in key structure.
  *  Returns
  *	NULL	    Failure

Index: src/sys/arch/alpha/alpha/fp_complete.c
diff -u src/sys/arch/alpha/alpha/fp_complete.c:1.27 src/sys/arch/alpha/alpha/fp_complete.c:1.28
--- src/sys/arch/alpha/alpha/fp_complete.c:1.27	Fri Jul 23 03:57:06 2021
+++ src/sys/arch/alpha/alpha/fp_complete.c	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fp_complete.c,v 1.27 2021/07/23 03:57:06 thorpej Exp $ */
+/* $NetBSD: fp_complete.c,v 1.28 2021/10/04 21:02:40 andvar Exp $ */
 
 /*-
  * Copyright (c) 2001 Ross Harvey
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: fp_complete.c,v 1.27 2021/07/23 03:57:06 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fp_complete.c,v 1.28 2021/10/04 21:02:40 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -648,7 +648,7 @@ alpha_fp_complete_at(unsigned long trigg
 	 * for it, and so we don't have to lock any memory locations or
 	 * pass a third parameter to every SoftFloat entry point.
 	 *
-	 * N.B. the rounding mode field of the the FLOAT format instructions
+	 * N.B. the rounding mode field of the FLOAT format instructions
 	 * matches that of the FPCR *except* for the value 3, which means
 	 * "dynamic" rounding mode (i.e. what is programmed into the FPCR).
 	 */

Index: src/sys/arch/mips/adm5120/dev/ahci.c
diff -u src/sys/arch/mips/adm5120/dev/ahci.c:1.25 src/sys/arch/mips/adm5120/dev/ahci.c:1.26
--- src/sys/arch/mips/adm5120/dev/ahci.c:1.25	Sat Aug  7 16:18:58 2021
+++ src/sys/arch/mips/adm5120/dev/ahci.c	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ahci.c,v 1.25 2021/08/07 16:18:58 thorpej Exp $	*/
+/*	$NetBSD: ahci.c,v 1.26 2021/10/04 21:02:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2007 Ruslan Ermilov and Vsevolod Lobko.
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ahci.c,v 1.25 2021/08/07 16:18:58 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ahci.c,v 1.26 2021/10/04 21:02:40 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -445,7 +445,7 @@ ahci_poll_hub(void *arg)
 	 * another intr xfer has been submitted, let that one be dealt
 	 * with when the callout fires again.
 	 *
-	 * The call to callout_pending is racy, but the the transition
+	 * The call to callout_pending is racy, but the transition
 	 * from pending to invoking happens atomically.  The
 	 * callout_ack ensures callout_invoking does not return true
 	 * due to this invocation of the callout; the lock ensures the

Index: src/sys/arch/mips/include/mips_param.h
diff -u src/sys/arch/mips/include/mips_param.h:1.51 src/sys/arch/mips/include/mips_param.h:1.52
--- src/sys/arch/mips/include/mips_param.h:1.51	Mon May 31 14:38:56 2021
+++ src/sys/arch/mips/include/mips_param.h	Mon Oct  4 21:02:40 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: mips_param.h,v 1.51 2021/05/31 14:38:56 simonb Exp $	*/
+/*	$NetBSD: mips_param.h,v 1.52 2021/10/04 21:02:40 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -138,7 +138,7 @@
 /*
  * Note for the non-LP64 case, cpu_switch_resume has the assumption
  * that UPAGES == 2.  For MIPS-I we wire USPACE in TLB #0 and #1.
- * For MIPS3+ we wire USPACE in the the TLB #0 pair.
+ * For MIPS3+ we wire USPACE in the TLB #0 pair.
  */
 #define	__MIN_USPACE	8192		/* otherwise use an 8kB stack */
 #endif

Index: src/sys/arch/sparc64/sparc64/autoconf.c
diff -u src/sys/arch/sparc64/sparc64/autoconf.c:1.236 src/sys/arch/sparc64/sparc64/autoconf.c:1.237
--- src/sys/arch/sparc64/sparc64/autoconf.c:1.236	Tue Sep  7 13:24:46 2021
+++ src/sys/arch/sparc64/sparc64/autoconf.c	Mon Oct  4 21:02:39 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.236 2021/09/07 13:24:46 andvar Exp $ */
+/*	$NetBSD: autoconf.c,v 1.237 2021/10/04 21:02:39 andvar Exp $ */
 
 /*
  * Copyright (c) 1996
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.236 2021/09/07 13:24:46 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.237 2021/10/04 21:02:39 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -1166,7 +1166,7 @@ device_register(device_t dev, void *aux)
 		 * busdev now points to the direct descendent of the
 		 * controller ("atabus" or "scsibus").  Get the
 		 * controller's devhandle.  Hoist it up one more so
-		 * that busdev points at the the controller.
+		 * that busdev points at the controller.
 		 */
 		busdev = device_parent(busdev);
 		devhandle = device_handle(busdev);

Index: src/sys/dev/usb/uhci.c
diff -u src/sys/dev/usb/uhci.c:1.306 src/sys/dev/usb/uhci.c:1.307
--- src/sys/dev/usb/uhci.c:1.306	Tue Jan  5 18:00:21 2021
+++ src/sys/dev/usb/uhci.c	Mon Oct  4 21:02:39 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: uhci.c,v 1.306 2021/01/05 18:00:21 skrll Exp $	*/
+/*	$NetBSD: uhci.c,v 1.307 2021/10/04 21:02:39 andvar Exp $	*/
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012, 2016, 2020 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.306 2021/01/05 18:00:21 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.307 2021/10/04 21:02:39 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -1022,7 +1022,7 @@ uhci_poll_hub(void *addr)
 	 * another intr xfer has been submitted, let that one be dealt
 	 * with when the callout fires again.
 	 *
-	 * The call to callout_pending is racy, but the the transition
+	 * The call to callout_pending is racy, but the transition
 	 * from pending to invoking happens atomically.  The
 	 * callout_ack ensures callout_invoking does not return true
 	 * due to this invocation of the callout; the lock ensures the

Index: src/sys/kern/subr_cpu.c
diff -u src/sys/kern/subr_cpu.c:1.16 src/sys/kern/subr_cpu.c:1.17
--- src/sys/kern/subr_cpu.c:1.16	Wed Sep 23 12:05:16 2020
+++ src/sys/kern/subr_cpu.c	Mon Oct  4 21:02:39 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_cpu.c,v 1.16 2020/09/23 12:05:16 simonb Exp $	*/
+/*	$NetBSD: subr_cpu.c,v 1.17 2021/10/04 21:02:39 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2007, 2008, 2009, 2010, 2012, 2019, 2020
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_cpu.c,v 1.16 2020/09/23 12:05:16 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_cpu.c,v 1.17 2021/10/04 21:02:39 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -450,7 +450,7 @@ cpu_count(enum cpu_count idx, int64_t de
 /*
  * Fetch fresh sum total for all counts.  Expensive - don't call often.
  *
- * If poll is true, the the caller is okay with with less recent values (but
+ * If poll is true, the caller is okay with with less recent values (but
  * no more than 1/hz seconds old).  Where this is called very often that
  * should be the case.
  *

Reply via email to