Module Name:    src
Committed By:   msaitoh
Date:           Mon May 13 00:01:54 UTC 2024

Modified Files:
        src/lib/libc/sys: mmap.2
        src/lib/libc/time: zdump.c
        src/share/man/man5: elf.5
        src/sys/arch/sparc/dev: vme_machdep.c
        src/sys/dev/eisa: eisa.c
        src/sys/dev/mca: mca_subr.c
        src/sys/dev/tc: tc.c
        src/sys/kern: vfs_wapbl.c
        src/sys/sys: wapbl_replay.h
        src/sys/ufs/ffs: fs.h

Log Message:
s/of of/of/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/lib/libc/sys/mmap.2
cvs rdiff -u -r1.62 -r1.63 src/lib/libc/time/zdump.c
cvs rdiff -u -r1.15 -r1.16 src/share/man/man5/elf.5
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/sparc/dev/vme_machdep.c
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/eisa/eisa.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/mca/mca_subr.c
cvs rdiff -u -r1.59 -r1.60 src/sys/dev/tc/tc.c
cvs rdiff -u -r1.112 -r1.113 src/sys/kern/vfs_wapbl.c
cvs rdiff -u -r1.1 -r1.2 src/sys/sys/wapbl_replay.h
cvs rdiff -u -r1.71 -r1.72 src/sys/ufs/ffs/fs.h

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

Modified files:

Index: src/lib/libc/sys/mmap.2
diff -u src/lib/libc/sys/mmap.2:1.56 src/lib/libc/sys/mmap.2:1.57
--- src/lib/libc/sys/mmap.2:1.56	Wed Mar  1 15:11:28 2023
+++ src/lib/libc/sys/mmap.2	Mon May 13 00:01:52 2024
@@ -1,4 +1,4 @@
-.\"	$NetBSD: mmap.2,v 1.56 2023/03/01 15:11:28 uwe Exp $
+.\"	$NetBSD: mmap.2,v 1.57 2024/05/13 00:01:52 msaitoh Exp $
 .\"
 .\" Copyright (c) 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -178,7 +178,7 @@ Synonymous with
 .Dv MAP_ANON .
 .It Dv MAP_FILE
 Mapped from a regular file or character-special device memory.
-Read accesses beyond the end of of the file or device but less
+Read accesses beyond the end of the file or device but less
 than the current page size will be zero-filled.
 Write accesses beyond the end of the file or device but less
 than the current page size will not affect the file or device.

Index: src/lib/libc/time/zdump.c
diff -u src/lib/libc/time/zdump.c:1.62 src/lib/libc/time/zdump.c:1.63
--- src/lib/libc/time/zdump.c:1.62	Sat Sep 16 18:40:26 2023
+++ src/lib/libc/time/zdump.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: zdump.c,v 1.62 2023/09/16 18:40:26 christos Exp $	*/
+/*	$NetBSD: zdump.c,v 1.63 2024/05/13 00:01:53 msaitoh Exp $	*/
 /* Dump time zone data in a textual format.  */
 
 /*
@@ -8,7 +8,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: zdump.c,v 1.62 2023/09/16 18:40:26 christos Exp $");
+__RCSID("$NetBSD: zdump.c,v 1.63 2024/05/13 00:01:53 msaitoh Exp $");
 #endif /* !defined lint */
 
 #ifndef NETBSD_INSPIRED
@@ -153,7 +153,7 @@ sumsize(size_t a, size_t b)
   size_overflow();
 }
 
-/* Return the size of of the string STR, including its trailing NUL.
+/* Return the size of the string STR, including its trailing NUL.
    Report an error and exit if this would exceed INDEX_MAX which means
    pointer subtraction wouldn't work.  */
 static ptrdiff_t

Index: src/share/man/man5/elf.5
diff -u src/share/man/man5/elf.5:1.15 src/share/man/man5/elf.5:1.16
--- src/share/man/man5/elf.5:1.15	Mon Mar 22 18:58:32 2010
+++ src/share/man/man5/elf.5	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-.\"	$NetBSD: elf.5,v 1.15 2010/03/22 18:58:32 joerg Exp $
+.\"	$NetBSD: elf.5,v 1.16 2024/05/13 00:01:53 msaitoh Exp $
 .\"
 .\" Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -269,7 +269,7 @@ Section index of the associated string t
 Section index of the symbol table to which the hash table applies.
 .Pp
 .It Dv SHT_DYNAMIC
-Section index of of the string table by which entries in this section are used.
+Section index of the string table by which entries in this section are used.
 .El
 .It Fa sh_info
 Contains extra information. The interpretation depends on the type as

Index: src/sys/arch/sparc/dev/vme_machdep.c
diff -u src/sys/arch/sparc/dev/vme_machdep.c:1.77 src/sys/arch/sparc/dev/vme_machdep.c:1.78
--- src/sys/arch/sparc/dev/vme_machdep.c:1.77	Fri Dec  1 05:22:01 2023
+++ src/sys/arch/sparc/dev/vme_machdep.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: vme_machdep.c,v 1.77 2023/12/01 05:22:01 thorpej Exp $	*/
+/*	$NetBSD: vme_machdep.c,v 1.78 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vme_machdep.c,v 1.77 2023/12/01 05:22:01 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vme_machdep.c,v 1.78 2024/05/13 00:01:53 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -196,7 +196,7 @@ vmem_t *vme_dvmamap;
  * The VME hardware on the sun4m IOMMU maps the first 8MB of 32-bit
  * VME space to the last 8MB of DVMA space and the first 1MB of
  * 24-bit VME space to the first 1MB of the last 8MB of DVMA space
- * (thus 24-bit VME space overlaps the first 1MB of of 32-bit space).
+ * (thus 24-bit VME space overlaps the first 1MB of 32-bit space).
  * The following constants define subregions in the IOMMU DVMA map
  * for VME DVMA allocations.  The DMA addresses returned by
  * bus_dmamap_load*() must be relocated by -VME_IOMMU_DVMA_BASE.

Index: src/sys/dev/eisa/eisa.c
diff -u src/sys/dev/eisa/eisa.c:1.49 src/sys/dev/eisa/eisa.c:1.50
--- src/sys/dev/eisa/eisa.c:1.49	Sat Aug  7 16:19:10 2021
+++ src/sys/dev/eisa/eisa.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: eisa.c,v 1.49 2021/08/07 16:19:10 thorpej Exp $	*/
+/*	$NetBSD: eisa.c,v 1.50 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: eisa.c,v 1.49 2021/08/07 16:19:10 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: eisa.c,v 1.50 2024/05/13 00:01:53 msaitoh Exp $");
 
 #include "opt_eisaverbose.h"
 
@@ -207,7 +207,7 @@ eisa_compatible_lookup(const struct eisa
 
 #ifdef EISAVERBOSE
 /*
- * Descriptions of of known vendors and devices ("products").
+ * Descriptions of known vendors and devices ("products").
  */
 struct eisa_knowndev {
 	int	flags;

Index: src/sys/dev/mca/mca_subr.c
diff -u src/sys/dev/mca/mca_subr.c:1.10 src/sys/dev/mca/mca_subr.c:1.11
--- src/sys/dev/mca/mca_subr.c:1.10	Sat Mar 14 15:36:18 2009
+++ src/sys/dev/mca/mca_subr.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: mca_subr.c,v 1.10 2009/03/14 15:36:18 dsl Exp $	*/
+/*	$NetBSD: mca_subr.c,v 1.11 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mca_subr.c,v 1.10 2009/03/14 15:36:18 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mca_subr.c,v 1.11 2024/05/13 00:01:53 msaitoh Exp $");
 
 #include "opt_mcaverbose.h"
 
@@ -48,7 +48,7 @@ __KERNEL_RCSID(0, "$NetBSD: mca_subr.c,v
 
 #ifdef MCAVERBOSE
 /*
- * Descriptions of of known MCA devices
+ * Descriptions of known MCA devices
  */
 struct mca_knowndev {
 	int		 id;		/* MCA ID */

Index: src/sys/dev/tc/tc.c
diff -u src/sys/dev/tc/tc.c:1.59 src/sys/dev/tc/tc.c:1.60
--- src/sys/dev/tc/tc.c:1.59	Sat Aug  7 16:19:16 2021
+++ src/sys/dev/tc/tc.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: tc.c,v 1.59 2021/08/07 16:19:16 thorpej Exp $	*/
+/*	$NetBSD: tc.c,v 1.60 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tc.c,v 1.59 2021/08/07 16:19:16 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tc.c,v 1.60 2024/05/13 00:01:53 msaitoh Exp $");
 
 #include "opt_tcverbose.h"
 
@@ -287,7 +287,7 @@ tc_intr_disestablish(device_t dev, void 
 
 #ifdef TCVERBOSE
 /*
- * Descriptions of of known devices.
+ * Descriptions of known devices.
  */
 struct tc_knowndev {
 	const char *id, *driver, *description;

Index: src/sys/kern/vfs_wapbl.c
diff -u src/sys/kern/vfs_wapbl.c:1.112 src/sys/kern/vfs_wapbl.c:1.113
--- src/sys/kern/vfs_wapbl.c:1.112	Sat Apr  9 23:38:33 2022
+++ src/sys/kern/vfs_wapbl.c	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_wapbl.c,v 1.112 2022/04/09 23:38:33 riastradh Exp $	*/
+/*	$NetBSD: vfs_wapbl.c,v 1.113 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2003, 2008, 2009 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #define WAPBL_INTERNAL
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_wapbl.c,v 1.112 2022/04/09 23:38:33 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_wapbl.c,v 1.113 2024/05/13 00:01:53 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/bitops.h>
@@ -1560,7 +1560,7 @@ wapbl_truncate(struct wapbl *wl, size_t 
 	tail = wl->wl_tail;
 	delta = wl->wl_reclaimable_bytes;
 
-	/* If all of of the entries are flushed, then be sure to keep
+	/* If all of the entries are flushed, then be sure to keep
 	 * the reserved bytes reserved.  Watch out for discarded transactions,
 	 * which could leave more bytes reserved than are reclaimable.
 	 */

Index: src/sys/sys/wapbl_replay.h
diff -u src/sys/sys/wapbl_replay.h:1.1 src/sys/sys/wapbl_replay.h:1.2
--- src/sys/sys/wapbl_replay.h:1.1	Mon Nov 24 16:05:21 2008
+++ src/sys/sys/wapbl_replay.h	Mon May 13 00:01:53 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: wapbl_replay.h,v 1.1 2008/11/24 16:05:21 joerg Exp $	*/
+/*	$NetBSD: wapbl_replay.h,v 1.2 2024/05/13 00:01:53 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2003,2008 The NetBSD Foundation, Inc.
@@ -93,7 +93,7 @@ struct wapbl_wc_header {
 	uint32_t	wc_fs_dev_bshift;
 	int64_t		wc_head;
 	int64_t		wc_tail;
-	int64_t		wc_circ_off;	/* offset of of circ buffer region */
+	int64_t		wc_circ_off;	/* offset of circ buffer region */
 	int64_t		wc_circ_size;	/* size of circular buffer region */
 	uint8_t		wc_spare[0];	/* actually longer */
 };

Index: src/sys/ufs/ffs/fs.h
diff -u src/sys/ufs/ffs/fs.h:1.71 src/sys/ufs/ffs/fs.h:1.72
--- src/sys/ufs/ffs/fs.h:1.71	Sat Jan  7 19:41:30 2023
+++ src/sys/ufs/ffs/fs.h	Mon May 13 00:01:54 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: fs.h,v 1.71 2023/01/07 19:41:30 chs Exp $	*/
+/*	$NetBSD: fs.h,v 1.72 2024/05/13 00:01:54 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1993
@@ -150,7 +150,7 @@
 /*
  * The volume name for this filesystem is maintained in fs_volname.
  * MAXVOLLEN defines the length of the buffer allocated.
- * This space used to be part of of fs_fsmnt.
+ * This space used to be part of fs_fsmnt.
  */
 #define	MAXVOLLEN	32
 

Reply via email to