Module Name:    src
Committed By:   msaitoh
Date:           Fri Dec 27 09:25:58 UTC 2019

Modified Files:
        src/lib/libc/gen: randomid.c
        src/sys/arch/arm/xscale: ixp425_qmgr.c
        src/sys/kern: kern_tc.c
        src/sys/net80211: ieee80211_node.c
        src/sys/netinet: dccp_tfrc.c sctp_constants.h
        src/sys/ufs/chfs: chfs_vfsops.c
        src/sys/ufs/lfs: ulfs_dirhash.h
        src/sys/ufs/ufs: dirhash.h
        src/tests/lib/libc/sys: t_pipe.c

Log Message:
s/inital/initial/


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/libc/gen/randomid.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/xscale/ixp425_qmgr.c
cvs rdiff -u -r1.52 -r1.53 src/sys/kern/kern_tc.c
cvs rdiff -u -r1.78 -r1.79 src/sys/net80211/ieee80211_node.c
cvs rdiff -u -r1.5 -r1.6 src/sys/netinet/dccp_tfrc.c
cvs rdiff -u -r1.1 -r1.2 src/sys/netinet/sctp_constants.h
cvs rdiff -u -r1.19 -r1.20 src/sys/ufs/chfs/chfs_vfsops.c
cvs rdiff -u -r1.10 -r1.11 src/sys/ufs/lfs/ulfs_dirhash.h
cvs rdiff -u -r1.7 -r1.8 src/sys/ufs/ufs/dirhash.h
cvs rdiff -u -r1.5 -r1.6 src/tests/lib/libc/sys/t_pipe.c

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/gen/randomid.c
diff -u src/lib/libc/gen/randomid.c:1.13 src/lib/libc/gen/randomid.c:1.14
--- src/lib/libc/gen/randomid.c:1.13	Sun Jan 11 02:46:27 2009
+++ src/lib/libc/gen/randomid.c	Fri Dec 27 09:25:57 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: randomid.c,v 1.13 2009/01/11 02:46:27 christos Exp $	*/
+/*	$NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 msaitoh Exp $	*/
 /*	$KAME: ip6_id.c,v 1.8 2003/09/06 13:41:06 itojun Exp $	*/
 /*	$OpenBSD: ip_id.c,v 1.6 2002/03/15 18:19:52 millert Exp $	*/
 
@@ -83,7 +83,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: randomid.c,v 1.13 2009/01/11 02:46:27 christos Exp $");
+__RCSID("$NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 msaitoh Exp $");
 #endif
 
 #include "namespace.h"
@@ -200,7 +200,7 @@ pmod(u_int32_t gen, u_int32_t expo, u_in
 }
 
 /*
- * Initalizes the seed and chooses a suitable generator. Also toggles
+ * Initializes the seed and chooses a suitable generator. Also toggles
  * the msb flag. The msb flag is used to generate two distinct
  * cycles of random numbers and thus avoiding reuse of ids.
  *

Index: src/sys/arch/arm/xscale/ixp425_qmgr.c
diff -u src/sys/arch/arm/xscale/ixp425_qmgr.c:1.9 src/sys/arch/arm/xscale/ixp425_qmgr.c:1.10
--- src/sys/arch/arm/xscale/ixp425_qmgr.c:1.9	Sun Nov 10 21:16:24 2019
+++ src/sys/arch/arm/xscale/ixp425_qmgr.c	Fri Dec 27 09:25:57 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ixp425_qmgr.c,v 1.9 2019/11/10 21:16:24 chs Exp $	*/
+/*	$NetBSD: ixp425_qmgr.c,v 1.10 2019/12/27 09:25:57 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2006 Sam Leffler, Errno Consulting
@@ -60,7 +60,7 @@
 */
 #include <sys/cdefs.h>
 /*__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/ixp425_qmgr.c,v 1.1 2006/11/19 23:55:23 sam Exp $");*/
-__KERNEL_RCSID(0, "$NetBSD: ixp425_qmgr.c,v 1.9 2019/11/10 21:16:24 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixp425_qmgr.c,v 1.10 2019/12/27 09:25:57 msaitoh Exp $");
 
 /*
  * Intel XScale Queue Manager support.
@@ -331,7 +331,7 @@ ixpqmgr_init(bus_space_tag_t iot)
 	
 	sc->aqmFreeSramAddress = 0x100;	/* Q buffer space starts at 0x2100 */
 
-	ixpqmgr_rebuild(sc);		/* build inital priority table */
+	ixpqmgr_rebuild(sc);		/* build initial priority table */
 	aqm_reset(sc);			/* reset h/w */
 
 	return (sc);

Index: src/sys/kern/kern_tc.c
diff -u src/sys/kern/kern_tc.c:1.52 src/sys/kern/kern_tc.c:1.53
--- src/sys/kern/kern_tc.c:1.52	Sun Oct  6 15:11:17 2019
+++ src/sys/kern/kern_tc.c	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_tc.c,v 1.52 2019/10/06 15:11:17 uwe Exp $ */
+/* $NetBSD: kern_tc.c,v 1.53 2019/12/27 09:25:58 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
 
 #include <sys/cdefs.h>
 /* __FBSDID("$FreeBSD: src/sys/kern/kern_tc.c,v 1.166 2005/09/19 22:16:31 andre Exp $"); */
-__KERNEL_RCSID(0, "$NetBSD: kern_tc.c,v 1.52 2019/10/06 15:11:17 uwe Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_tc.c,v 1.53 2019/12/27 09:25:58 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ntp.h"
@@ -1329,7 +1329,7 @@ inittimecounter(void)
 	 * Set the initial timeout to
 	 * max(1, <approx. number of hardclock ticks in a millisecond>).
 	 * People should probably not use the sysctl to set the timeout
-	 * to smaller than its inital value, since that value is the
+	 * to smaller than its initial value, since that value is the
 	 * smallest reasonable one.  If they want better timestamps they
 	 * should use the non-"get"* functions.
 	 */

Index: src/sys/net80211/ieee80211_node.c
diff -u src/sys/net80211/ieee80211_node.c:1.78 src/sys/net80211/ieee80211_node.c:1.79
--- src/sys/net80211/ieee80211_node.c:1.78	Thu Dec 19 15:54:21 2019
+++ src/sys/net80211/ieee80211_node.c	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ieee80211_node.c,v 1.78 2019/12/19 15:54:21 jakllsch Exp $	*/
+/*	$NetBSD: ieee80211_node.c,v 1.79 2019/12/27 09:25:58 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 2001 Atsushi Onoe
@@ -37,7 +37,7 @@
 __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_node.c,v 1.65 2005/08/13 17:50:21 sam Exp $");
 #endif
 #ifdef __NetBSD__
-__KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.78 2019/12/19 15:54:21 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.79 2019/12/27 09:25:58 msaitoh Exp $");
 #endif
 
 #ifdef _KERNEL_OPT
@@ -484,7 +484,7 @@ ieee80211_reset_bss(struct ieee80211com 
 	ieee80211_node_table_reset(&ic->ic_sta);
 
 	ni = ieee80211_alloc_node(&ic->ic_scan, ic->ic_myaddr);
-	IASSERT(ni != NULL, ("unable to setup inital BSS node"));
+	IASSERT(ni != NULL, ("unable to setup initial BSS node"));
 	obss = ic->ic_bss;
 	ic->ic_bss = ieee80211_ref_node(ni);
 	if (obss != NULL) {

Index: src/sys/netinet/dccp_tfrc.c
diff -u src/sys/netinet/dccp_tfrc.c:1.5 src/sys/netinet/dccp_tfrc.c:1.6
--- src/sys/netinet/dccp_tfrc.c:1.5	Tue Jun  4 10:15:22 2019
+++ src/sys/netinet/dccp_tfrc.c	Fri Dec 27 09:25:58 2019
@@ -1,5 +1,5 @@
 /*	$KAME: dccp_tfrc.c,v 1.16 2006/03/01 17:34:08 nishida Exp $	*/
-/*	$NetBSD: dccp_tfrc.c,v 1.5 2019/06/04 10:15:22 msaitoh Exp $ */
+/*	$NetBSD: dccp_tfrc.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2003  Nils-Erik Mattsson
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dccp_tfrc.c,v 1.5 2019/06/04 10:15:22 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dccp_tfrc.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_dccp.h"
@@ -1744,7 +1744,7 @@ tfrc_recv_packet_recv(void *ccb, char *o
 
 		switch (cb->state) {
 		case TFRC_RSTATE_NO_DATA:
-			TFRC_DEBUG((LOG_INFO, "TFRC - Send an inital feedback packet (tfrc_recv_packet_recv)\n"));
+			TFRC_DEBUG((LOG_INFO, "TFRC - Send an initial feedback packet (tfrc_recv_packet_recv)\n"));
 			tfrc_recv_send_feedback(cb);
 			cb->state = TFRC_RSTATE_DATA;
 			break;

Index: src/sys/netinet/sctp_constants.h
diff -u src/sys/netinet/sctp_constants.h:1.1 src/sys/netinet/sctp_constants.h:1.2
--- src/sys/netinet/sctp_constants.h:1.1	Tue Oct 13 21:28:35 2015
+++ src/sys/netinet/sctp_constants.h	Fri Dec 27 09:25:58 2019
@@ -1,5 +1,5 @@
 /*	$KAME: sctp_constants.h,v 1.17 2005/03/06 16:04:17 itojun Exp $	*/
-/*	$NetBSD: sctp_constants.h,v 1.1 2015/10/13 21:28:35 rjs Exp $ */
+/*	$NetBSD: sctp_constants.h,v 1.2 2019/12/27 09:25:58 msaitoh Exp $ */
 
 #ifndef __SCTP_CONSTANTS_H__
 #define __SCTP_CONSTANTS_H__
@@ -353,7 +353,7 @@
 /* Maximum the mapping array will  grow to (TSN mapping array) */
 #define SCTP_MAPPING_ARRAY	512
 
-/* size of the inital malloc on the mapping array */
+/* size of the initial malloc on the mapping array */
 #define SCTP_INITIAL_MAPPING_ARRAY  16
 /* how much we grow the mapping array each call */
 #define SCTP_MAPPING_ARRAY_INCR     32

Index: src/sys/ufs/chfs/chfs_vfsops.c
diff -u src/sys/ufs/chfs/chfs_vfsops.c:1.19 src/sys/ufs/chfs/chfs_vfsops.c:1.20
--- src/sys/ufs/chfs/chfs_vfsops.c:1.19	Thu Jun 20 03:31:30 2019
+++ src/sys/ufs/chfs/chfs_vfsops.c	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: chfs_vfsops.c,v 1.19 2019/06/20 03:31:30 pgoyette Exp $	*/
+/*	$NetBSD: chfs_vfsops.c,v 1.20 2019/12/27 09:25:58 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -640,7 +640,7 @@ chfs_loadvnode(struct mount *mp, struct 
 
 	}
 
-	/* Finish inode initalization. */
+	/* Finish inode initialization. */
 	ip->ch_type = VTTOCHT(vp->v_type);
 	ip->devvp = ump->um_devvp;
 	vref(ip->devvp);

Index: src/sys/ufs/lfs/ulfs_dirhash.h
diff -u src/sys/ufs/lfs/ulfs_dirhash.h:1.10 src/sys/ufs/lfs/ulfs_dirhash.h:1.11
--- src/sys/ufs/lfs/ulfs_dirhash.h:1.10	Mon Jun 20 03:29:52 2016
+++ src/sys/ufs/lfs/ulfs_dirhash.h	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ulfs_dirhash.h,v 1.10 2016/06/20 03:29:52 dholland Exp $	*/
+/*	$NetBSD: ulfs_dirhash.h,v 1.11 2019/12/27 09:25:58 msaitoh Exp $	*/
 /*  from NetBSD: dirhash.h,v 1.7 2013/06/09 17:57:09 dholland Exp  */
 
 /*
@@ -60,7 +60,7 @@
  * together on a TAILQ list, and hashes with higher scores filter
  * towards the tail (most recently used) end of the list.
  *
- * New hash entries are given an inital score of DH_SCOREINIT and are
+ * New hash entries are given an initial score of DH_SCOREINIT and are
  * placed at the most-recently-used end of the list. This helps a lot
  * in the worst-case case scenario where every directory access is
  * to a directory that is not hashed (i.e. the working set of hash

Index: src/sys/ufs/ufs/dirhash.h
diff -u src/sys/ufs/ufs/dirhash.h:1.7 src/sys/ufs/ufs/dirhash.h:1.8
--- src/sys/ufs/ufs/dirhash.h:1.7	Sun Jun  9 17:57:09 2013
+++ src/sys/ufs/ufs/dirhash.h	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: dirhash.h,v 1.7 2013/06/09 17:57:09 dholland Exp $	*/
+/*	$NetBSD: dirhash.h,v 1.8 2019/12/27 09:25:58 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 2001 Ian Dowse.  All rights reserved.
@@ -59,7 +59,7 @@
  * together on a TAILQ list, and hashes with higher scores filter
  * towards the tail (most recently used) end of the list.
  *
- * New hash entries are given an inital score of DH_SCOREINIT and are
+ * New hash entries are given an initial score of DH_SCOREINIT and are
  * placed at the most-recently-used end of the list. This helps a lot
  * in the worst-case case scenario where every directory access is
  * to a directory that is not hashed (i.e. the working set of hash

Index: src/tests/lib/libc/sys/t_pipe.c
diff -u src/tests/lib/libc/sys/t_pipe.c:1.5 src/tests/lib/libc/sys/t_pipe.c:1.6
--- src/tests/lib/libc/sys/t_pipe.c:1.5	Fri Jan 13 21:30:41 2017
+++ src/tests/lib/libc/sys/t_pipe.c	Fri Dec 27 09:25:58 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: t_pipe.c,v 1.5 2017/01/13 21:30:41 christos Exp $ */
+/* $NetBSD: t_pipe.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2001, 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 #include <sys/cdefs.h>
 __COPYRIGHT("@(#) Copyright (c) 2008\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_pipe.c,v 1.5 2017/01/13 21:30:41 christos Exp $");
+__RCSID("$NetBSD: t_pipe.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $");
 
 #include <sys/types.h>
 #include <sys/wait.h>
@@ -99,7 +99,7 @@ ATF_TC_BODY(pipe_restart, tc)
 		/* child */
 		RL(close(pp[1]));
 
-		/* Do inital write. This should succeed, make
+		/* Do initial write. This should succeed, make
 		 * the other side do partial write and wait for us to pick
 		 * rest up.
 		 */

Reply via email to