Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/inital/initial/
details: https://anonhg.NetBSD.org/src/rev/ef41350e756e
branches: trunk
changeset: 967907:ef41350e756e
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Fri Dec 27 09:25:57 2019 +0000
description:
s/inital/initial/
diffstat:
lib/libc/gen/randomid.c | 6 +++---
sys/arch/arm/xscale/ixp425_qmgr.c | 6 +++---
sys/kern/kern_tc.c | 6 +++---
sys/net80211/ieee80211_node.c | 6 +++---
sys/netinet/dccp_tfrc.c | 6 +++---
sys/netinet/sctp_constants.h | 4 ++--
sys/ufs/chfs/chfs_vfsops.c | 4 ++--
sys/ufs/lfs/ulfs_dirhash.h | 4 ++--
sys/ufs/ufs/dirhash.h | 4 ++--
tests/lib/libc/sys/t_pipe.c | 6 +++---
10 files changed, 26 insertions(+), 26 deletions(-)
diffs (236 lines):
diff -r 80712aac5f89 -r ef41350e756e lib/libc/gen/randomid.c
--- a/lib/libc/gen/randomid.c Fri Dec 27 09:22:19 2019 +0000
+++ b/lib/libc/gen/randomid.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
}
/*
- * 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.
*
diff -r 80712aac5f89 -r ef41350e756e sys/arch/arm/xscale/ixp425_qmgr.c
--- a/sys/arch/arm/xscale/ixp425_qmgr.c Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/arch/arm/xscale/ixp425_qmgr.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
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);
diff -r 80712aac5f89 -r ef41350e756e sys/kern/kern_tc.c
--- a/sys/kern/kern_tc.c Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/kern/kern_tc.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
* 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.
*/
diff -r 80712aac5f89 -r ef41350e756e sys/net80211/ieee80211_node.c
--- a/sys/net80211/ieee80211_node.c Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/net80211/ieee80211_node.c Fri Dec 27 09:25:57 2019 +0000
@@ -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_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) {
diff -r 80712aac5f89 -r ef41350e756e sys/netinet/dccp_tfrc.c
--- a/sys/netinet/dccp_tfrc.c Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/netinet/dccp_tfrc.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
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;
diff -r 80712aac5f89 -r ef41350e756e sys/netinet/sctp_constants.h
--- a/sys/netinet/sctp_constants.h Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/netinet/sctp_constants.h Fri Dec 27 09:25:57 2019 +0000
@@ -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
diff -r 80712aac5f89 -r ef41350e756e sys/ufs/chfs/chfs_vfsops.c
--- a/sys/ufs/chfs/chfs_vfsops.c Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/ufs/chfs/chfs_vfsops.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
}
- /* Finish inode initalization. */
+ /* Finish inode initialization. */
ip->ch_type = VTTOCHT(vp->v_type);
ip->devvp = ump->um_devvp;
vref(ip->devvp);
diff -r 80712aac5f89 -r ef41350e756e sys/ufs/lfs/ulfs_dirhash.h
--- a/sys/ufs/lfs/ulfs_dirhash.h Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/ufs/lfs/ulfs_dirhash.h Fri Dec 27 09:25:57 2019 +0000
@@ -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
diff -r 80712aac5f89 -r ef41350e756e sys/ufs/ufs/dirhash.h
--- a/sys/ufs/ufs/dirhash.h Fri Dec 27 09:22:19 2019 +0000
+++ b/sys/ufs/ufs/dirhash.h Fri Dec 27 09:25:57 2019 +0000
@@ -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
diff -r 80712aac5f89 -r ef41350e756e tests/lib/libc/sys/t_pipe.c
--- a/tests/lib/libc/sys/t_pipe.c Fri Dec 27 09:22:19 2019 +0000
+++ b/tests/lib/libc/sys/t_pipe.c Fri Dec 27 09:25:57 2019 +0000
@@ -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 @@
/* 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.
*/
Home |
Main Index |
Thread Index |
Old Index