s/inital/initial/

This commit is contained in:
msaitoh 2019-12-27 09:25:57 +00:00
parent e992133145
commit a5effc3ce9
10 changed files with 26 additions and 26 deletions

View File

@ -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_int32_t mod)
}
/*
* 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.
*

View File

@ -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);

View File

@ -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.
*/

View File

@ -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 *ic)
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) {

View File

@ -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 *options, int optlen)
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;

View File

@ -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

View File

@ -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 vnode *vp,
}
/* Finish inode initalization. */
/* Finish inode initialization. */
ip->ch_type = VTTOCHT(vp->v_type);
ip->devvp = ump->um_devvp;
vref(ip->devvp);

View File

@ -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

View File

@ -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

View File

@ -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.
*/