fix various typos in comments, messages and documentation.
This commit is contained in:
parent
694409aebf
commit
a136e22ab6
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $ */
|
||||
/* $NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
||||
|
@ -38,9 +38,9 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
#if defined(_KERNEL)
|
||||
__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
|
||||
#else
|
||||
__RCSID("$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $");
|
||||
__RCSID("$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
|
||||
#endif
|
||||
|
||||
#if defined(_KERNEL)
|
||||
|
@ -744,7 +744,7 @@ HandleAlignmentAssumption(bool isFatal, struct CAlignmentAssumptionData *pData,
|
|||
if (pData->mAssumptionLocation.mFilename != NULL) {
|
||||
DeserializeLocation(szAssumptionLocation, LOCATION_MAXLEN,
|
||||
&pData->mAssumptionLocation);
|
||||
Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), asumption made in %s\n",
|
||||
Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), assumption made in %s\n",
|
||||
szLocation, ulAlignment, ulRealPointer, ulOffset,
|
||||
szAssumptionLocation);
|
||||
} else {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES,v 1.3 2000/03/13 22:53:22 soren Exp $
|
||||
$NetBSD: CHANGES,v 1.4 2021/09/19 10:34:07 andvar Exp $
|
||||
|
||||
From: tektronix!zeus.TEK.COM!tims@ucbvax.Berkeley.EDU
|
||||
Date: 30 Nov 87 15:08:15 PST (Mon)
|
||||
|
@ -6,7 +6,7 @@ To: okeeffe.Berkeley.EDU!mckusick@ucbvax.Berkeley.EDU (Kirk McKusick)
|
|||
Subject: Re: Public domain rogue
|
||||
Return-Path: tektronix!zeus.TEK.COM!tims@ucbvax.Berkeley.EDU
|
||||
|
||||
Here is a list of discrepencies from the documentation you sent me:
|
||||
Here is a list of discrepancies from the documentation you sent me:
|
||||
|
||||
The -d option not implemented.
|
||||
The -r option not implemented, use "rogue save_file" instead.
|
||||
|
@ -14,7 +14,7 @@ Strength is between 1 and 99, not 3 and 32.
|
|||
The D command is not implemented.
|
||||
Only scrolls,potions,wands,and rings may be "call"ed something.
|
||||
The ^P command may be used to go 4 messages back, instead of just 1.
|
||||
The @ comand is not implemented.
|
||||
The @ command is not implemented.
|
||||
There are no dark rooms.
|
||||
ROGUEOPTS of flush,terse,seefloor,askme,inventory are ignored.
|
||||
'askquit' is added to prevent ^\ from terminating the game accidentally.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: newfs_udf.c,v 1.21 2021/08/20 20:25:26 andvar Exp $ */
|
||||
/* $NetBSD: newfs_udf.c,v 1.22 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
|
||||
|
@ -759,7 +759,7 @@ main(int argc, char **argv)
|
|||
emul_packetsize = MIN(emul_packetsize, 32);
|
||||
break;
|
||||
case 't' :
|
||||
/* time zone overide */
|
||||
/* time zone override */
|
||||
context.gmtoff = a_num(optarg, "gmtoff");
|
||||
break;
|
||||
default :
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $ */
|
||||
/* $NetBSD: if_ie.c,v 1.50 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Melvin Tang-Richardson.
|
||||
|
@ -53,7 +53,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.50 2021/09/19 10:34:07 andvar Exp $");
|
||||
|
||||
#define IGNORE_ETHER1_IDROM_CHECKSUM
|
||||
|
||||
|
@ -456,7 +456,7 @@ ieattach(device_t parent, device_t self, void *aux)
|
|||
|
||||
/* "Hmm," said nuts, "what if the attach fails" */
|
||||
|
||||
/* Write some pretty things on the annoucement line */
|
||||
/* Write some pretty things on the announcement line */
|
||||
printf ( ": %s using %dk card ram",
|
||||
ether_sprintf(hwaddr),
|
||||
((NRXBUF*IE_RXBUF_SIZE)+(NTXBUF*IE_TXBUF_SIZE))/1024 );
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $ */
|
||||
/* $NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 1999, 2000, 2001, 2007, 2008, 2020
|
||||
|
@ -135,7 +135,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -3759,7 +3759,7 @@ pmap_l3pt_delref(pmap_t pmap, vaddr_t va, pt_entry_t *l3pte,
|
|||
"0x%lx\n", pmap_pte_pa(l2pte));
|
||||
#endif
|
||||
/*
|
||||
* You can pass NULL if you know the last refrence won't
|
||||
* You can pass NULL if you know the last reference won't
|
||||
* be dropped.
|
||||
*/
|
||||
KASSERT(tlbctx != NULL);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: view.c,v 1.33 2015/11/12 12:19:49 phx Exp $ */
|
||||
/* $NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -34,11 +34,11 @@
|
|||
* simply to map the semantics of a graphics dipslay to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.33 2015/11/12 12:19:49 phx Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: viewioctl.h,v 1.10 2015/09/07 03:49:45 dholland Exp $ */
|
||||
/* $NetBSD: viewioctl.h,v 1.11 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -35,7 +35,7 @@
|
|||
* simply to map the semantics of a graphics dipslay to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics.
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: viewvar.h,v 1.4 2002/01/26 13:41:00 aymeric Exp $ */
|
||||
/* $NetBSD: viewvar.h,v 1.5 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -34,7 +34,7 @@
|
|||
* simply to map the semantics of a graphics dipslay to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics. */
|
||||
|
||||
struct view_softc {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: c_nec_pci.c,v 1.20 2012/10/13 17:58:53 jdc Exp $ */
|
||||
/* $NetBSD: c_nec_pci.c,v 1.21 2021/09/19 10:34:07 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 2000 Shuichiro URATA. All rights reserved.
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: c_nec_pci.c,v 1.20 2012/10/13 17:58:53 jdc Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: c_nec_pci.c,v 1.21 2021/09/19 10:34:07 andvar Exp $");
|
||||
|
||||
#define __INTR_PRIVATE
|
||||
#include <sys/param.h>
|
||||
|
@ -222,7 +222,7 @@ c_nec_pci_init(void)
|
|||
* If you met this symptom, please report it to
|
||||
* port-arc-maintainer@NetBSD.org.
|
||||
*
|
||||
* kseg2iobufsize will be refered from pmap_bootstrap().
|
||||
* kseg2iobufsize will be referred from pmap_bootstrap().
|
||||
*/
|
||||
kseg2iobufsize = 0x02000000; /* 32MB: consumes 32KB for PTEs */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bcm53xx_var.h,v 1.6 2013/10/28 22:51:16 matt Exp $ */
|
||||
/* $NetBSD: bcm53xx_var.h,v 1.7 2021/09/19 10:34:08 andvar Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2012 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -70,7 +70,7 @@ struct bcm53xx_clock_info {
|
|||
uint32_t clk_robo; // GENPLL CH1
|
||||
uint32_t clk_usb2; // GENPLL CH2
|
||||
uint32_t clk_iproc; // GENPLL CH3
|
||||
uint32_t clk_usb_ref; // 1920MHz USB Refernce Clock
|
||||
uint32_t clk_usb_ref; // 1920MHz USB Reference Clock
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: obio_wdc.c,v 1.9 2019/06/03 06:04:20 msaitoh Exp $ */
|
||||
/* $NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/* adapted from iq31244/wdc_obio.c:
|
||||
* NetBSD: wdc_obio.c,v 1.5 2008/04/28 20:23:16 martin Exp
|
||||
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.9 2019/06/03 06:04:20 msaitoh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $");
|
||||
|
||||
#include "locators.h"
|
||||
|
||||
|
@ -93,7 +93,7 @@ wdc_obio_attach(device_t parent, device_t self, void *aux)
|
|||
/*
|
||||
* we treat the two channels of the Gemini MIDE controller
|
||||
* as separate wdc controllers, because they have
|
||||
* independent interrupts. 'chan' here is an MIDE chanel,
|
||||
* independent interrupts. 'chan' here is an MIDE channel,
|
||||
* (not to be confused with ATA channel).
|
||||
*/
|
||||
switch (obio->obio_addr) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vidc20config.c,v 1.34 2014/10/25 10:58:12 skrll Exp $ */
|
||||
/* $NetBSD: vidc20config.c,v 1.35 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Reinoud Zandijk
|
||||
|
@ -48,7 +48,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.34 2014/10/25 10:58:12 skrll Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.35 2021/09/19 10:34:08 andvar Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -371,7 +371,7 @@ vidcvideo_coldinit(void)
|
|||
|
||||
|
||||
/* simple function to abstract vidc variables ; returns virt start address of screen */
|
||||
/* XXX asumption that video memory is mapped in twice */
|
||||
/* XXX assumption that video memory is mapped in twice */
|
||||
void *vidcvideo_hwscroll(int bytes)
|
||||
{
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: exynos_soc.c,v 1.39 2018/10/31 08:41:47 skrll Exp $ */
|
||||
/* $NetBSD: exynos_soc.c,v 1.40 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2014 The NetBSD Foundation, Inc.
|
||||
|
@ -33,7 +33,7 @@
|
|||
#include "opt_exynos.h"
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.39 2018/10/31 08:41:47 skrll Exp $");
|
||||
__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.40 2021/09/19 10:34:08 andvar Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/bus.h>
|
||||
|
@ -824,7 +824,7 @@ exynos5410_usb2phy_enable(bus_space_handle_t usb2phy_bsh)
|
|||
phyotg = bus_space_read_4(&armv7_generic_bs_tag, usb2phy_bsh,
|
||||
USB_PHY_OTG_SYS);
|
||||
|
||||
/* otg phy refrence clock: assumption its 24 Mhz now */
|
||||
/* otg phy reference clock: assumption its 24 Mhz now */
|
||||
phyotg &= ~OTG_SYS_FSEL_MASK;
|
||||
phyotg |= __SHIFTIN(OTG_SYS_FSEL_MASK, FSEL_CLKSEL_24M);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: ixp425-fw.README,v 1.5 2020/01/30 13:07:18 thorpej Exp $
|
||||
$NetBSD: ixp425-fw.README,v 1.6 2021/09/19 10:34:08 andvar Exp $
|
||||
|
||||
IXP425 NPE Microcode
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -32,7 +32,7 @@ Select the "Download (without Crypto)" link in the "NPE Microcode"
|
|||
section. Note that there is no benefit in selecting the "with Cypto"
|
||||
microcode at this time since NetBSD does not support it.
|
||||
|
||||
For refrence, the "with Crypto" version is available here:
|
||||
For reference, the "with Crypto" version is available here:
|
||||
https://downloads.openwrt.org/sources/IPL_ixp400NpeLibraryWithCrypto-2_4.zip
|
||||
|
||||
SHA1(IPL_ixp400NpeLibraryWithCrypto-2_4.zip)= 48beb80564fbbb7fb7861188cad26e896b5a5afc
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ixp425_if_npe.c,v 1.47 2020/02/18 14:49:32 thorpej Exp $ */
|
||||
/* $NetBSD: ixp425_if_npe.c,v 1.48 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2006 Sam Leffler. All rights reserved.
|
||||
|
@ -28,7 +28,7 @@
|
|||
#if 0
|
||||
__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/if_npe.c,v 1.1 2006/11/19 23:55:23 sam Exp $");
|
||||
#endif
|
||||
__KERNEL_RCSID(0, "$NetBSD: ixp425_if_npe.c,v 1.47 2020/02/18 14:49:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ixp425_if_npe.c,v 1.48 2021/09/19 10:34:08 andvar Exp $");
|
||||
|
||||
/*
|
||||
* Intel XScale NPE Ethernet driver.
|
||||
|
@ -616,7 +616,7 @@ npe_activate(struct npe_softc *sc)
|
|||
* frames to process or tx'd frames to reap. These callbacks
|
||||
* are controlled by the q configurations; e.g. we get a
|
||||
* callback when tx_done has 2 or more frames to process and
|
||||
* when the rx q has at least one frame. These setings can
|
||||
* when the rx q has at least one frame. These settings can
|
||||
* changed at the time the q is configured.
|
||||
*/
|
||||
sc->rx_qid = npeconfig[unit].rx_qid;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: view.c,v 1.35 2015/08/20 14:40:16 christos Exp $ */
|
||||
/* $NetBSD: view.c,v 1.36 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -34,11 +34,11 @@
|
|||
* simply to map the semantics of a graphics dipslay to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.35 2015/08/20 14:40:16 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.36 2021/09/19 10:34:08 andvar Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: viewioctl.h,v 1.2 2015/09/07 03:49:45 dholland Exp $ */
|
||||
/* $NetBSD: viewioctl.h,v 1.3 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -35,7 +35,7 @@
|
|||
* simply to map the semantics of a graphics display to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics.
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: viewvar.h,v 1.7 2009/03/14 14:45:56 dsl Exp $ */
|
||||
/* $NetBSD: viewvar.h,v 1.8 2021/09/19 10:34:08 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -34,7 +34,7 @@
|
|||
* simply to map the semantics of a graphics dipslay to
|
||||
* the semantics of a character block device. In other
|
||||
* words the graphics system as currently built does not like to be
|
||||
* refered to by open/close/ioctl. This device serves as
|
||||
* referred to by open/close/ioctl. This device serves as
|
||||
* a interface to graphics. */
|
||||
|
||||
#define NOLWP ((struct lwp *)-1) /* XXX */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pmap_motorola.h,v 1.36 2020/03/14 14:05:43 ad Exp $ */
|
||||
/* $NetBSD: pmap_motorola.h,v 1.37 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -116,7 +116,7 @@ struct pmap {
|
|||
* Even on 68040/060, we still appropriate 2-level ste-pte pmap structures
|
||||
* for 68020/030 (derived from 4.4BSD/hp300) to handle 040's 3-level MMU.
|
||||
* TIA_SIZE and TIB_SIZE are used to represent such pmap structures and
|
||||
* they are also refered on 040/060.
|
||||
* they are also referred on 040/060.
|
||||
*
|
||||
* NBSEG and SEGOFSET are used to check l2 STE of the specified VA,
|
||||
* so they have different values between 020/030 and 040/060.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: locore_mips1.S,v 1.95 2020/08/22 05:52:00 simonb Exp $ */
|
||||
/* $NetBSD: locore_mips1.S,v 1.96 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -57,7 +57,7 @@
|
|||
#include <mips/asm.h>
|
||||
#include <mips/cpuregs.h>
|
||||
|
||||
RCSID("$NetBSD: locore_mips1.S,v 1.95 2020/08/22 05:52:00 simonb Exp $")
|
||||
RCSID("$NetBSD: locore_mips1.S,v 1.96 2021/09/19 10:34:09 andvar Exp $")
|
||||
|
||||
#include "assym.h"
|
||||
|
||||
|
@ -1529,7 +1529,7 @@ END(MIPSX(lwp_trampoline))
|
|||
* void mipsN_cpu_switch_resume(struct lwp *newlwp)
|
||||
*
|
||||
* Wiredown the USPACE of newproc with TLB entry#0 and #1. Check
|
||||
* if target USPACE is already refered by any TLB entry before
|
||||
* if target USPACE is already referred by any TLB entry before
|
||||
* doing that, and make sure TBIS(them) in the case.
|
||||
*/
|
||||
LEAF_NOPROFILE(MIPSX(cpu_switch_resume))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: etsecreg.h,v 1.8 2015/02/26 02:27:40 nonaka Exp $ */
|
||||
/* $NetBSD: etsecreg.h,v 1.9 2021/09/19 10:34:09 andvar Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -153,7 +153,7 @@ struct rxfcb {
|
|||
#define IEVENT_PERR __PPCBIT(31) /* Receive parse error for TOE */
|
||||
#define IMASK 0x014 /* Interrupt mask register */
|
||||
#define EDIS 0x018 /* error disabled register */
|
||||
#define EMAPG 0x01c /* group eror mapping register */
|
||||
#define EMAPG 0x01c /* group error mapping register */
|
||||
#define ECNTRL 0x020 /* ethernet control register */
|
||||
#define ECNTRL_FIFM __PPCBIT(16) /* FIFO mode enable */
|
||||
#define ECNTRL_CLRCNT __PPCBIT(17) /* Clear all MIB counters */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isp.c,v 1.129 2021/09/11 20:28:06 andvar Exp $ */
|
||||
/* $NetBSD: isp.c,v 1.130 2021/09/19 10:34:09 andvar Exp $ */
|
||||
/*
|
||||
* Machine and OS Independent (well, as best as possible)
|
||||
* code for the Qlogic ISP SCSI adapters.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
#ifdef __NetBSD__
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.129 2021/09/11 20:28:06 andvar Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.130 2021/09/19 10:34:09 andvar Exp $");
|
||||
#include <dev/ic/isp_netbsd.h>
|
||||
#endif
|
||||
#ifdef __FreeBSD__
|
||||
|
@ -2149,7 +2149,7 @@ isp_plogx(ispsoftc_t *isp, int chan, uint16_t handle, uint32_t portid, int flags
|
|||
goto out;
|
||||
} else if (plp->plogx_status != PLOGX_STATUS_IOCBERR) {
|
||||
isp_prt(isp, ISP_LOGWARN,
|
||||
"status 0x%x on port login IOCB chanel %d",
|
||||
"status 0x%x on port login IOCB channel %d",
|
||||
plp->plogx_status, chan);
|
||||
rval = -1;
|
||||
goto out;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aic79xx.seq,v 1.14 2021/09/16 21:29:41 andvar Exp $ */
|
||||
/* $NetBSD: aic79xx.seq,v 1.15 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Adaptec U320 device driver firmware for Linux and FreeBSD.
|
||||
|
@ -1926,7 +1926,7 @@ pkt_status_check_nonpackreq:
|
|||
/*
|
||||
* The unexpected nonpkt phase handler assumes that any
|
||||
* data channel use will have a FIFO reference count. It
|
||||
* turns out that the status handler doesn't need a refernce
|
||||
* turns out that the status handler doesn't need a reference
|
||||
* count since the status received flag, and thus completion
|
||||
* processing, cannot be set until the handler is finished.
|
||||
* We increment the count here to make the nonpkt handler
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
%{
|
||||
/* $NetBSD: aicasm_gram.y,v 1.7 2020/06/27 16:48:01 jdolecek Exp $ */
|
||||
/* $NetBSD: aicasm_gram.y,v 1.8 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Parser for the Aic7xxx SCSI Host adapter sequencer assembler.
|
||||
|
@ -1757,7 +1757,7 @@ format_3_instr(int opcode, symbol_ref_t *src,
|
|||
instr = seq_alloc();
|
||||
f3_instr = &instr->format.format3;
|
||||
if (address->symbol == NULL) {
|
||||
/* 'dot' referrence. Use the current instruction pointer */
|
||||
/* 'dot' reference. Use the current instruction pointer */
|
||||
addr = instruction_ptr + address->offset;
|
||||
} else if (address->symbol->type == UNINITIALIZED) {
|
||||
/* forward reference */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ixgbe.h,v 1.81 2021/09/16 09:55:28 msaitoh Exp $ */
|
||||
/* $NetBSD: ixgbe.h,v 1.82 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/******************************************************************************
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
|
@ -197,7 +197,7 @@
|
|||
* 33 should be large enough even for 64K TSO
|
||||
* (32 * 2K mbuf cluster and 1 x mbuf header).
|
||||
*
|
||||
* Rerefence: 82599-X550 dataseet 7.2.1.1 "Transmit Storage in System Memory".
|
||||
* Reference: 82599-X550 dataseet 7.2.1.1 "Transmit Storage in System Memory".
|
||||
*/
|
||||
#define IXGBE_82599_SCATTER_MAX (40 - IXGBE_TX_WTHRESH - 2)
|
||||
#define IXGBE_SCATTER_DEFAULT 33
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_se.c,v 1.113 2021/06/16 00:21:19 riastradh Exp $ */
|
||||
/* $NetBSD: if_se.c,v 1.114 2021/09/19 10:34:09 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Ian W. Dall <ian.dall@dsto.defence.gov.au>
|
||||
|
@ -37,7 +37,7 @@
|
|||
*
|
||||
* Acknowledgement: Thanks are due to Philip L. Budne <budd@cs.bu.edu>
|
||||
* who reverse engineered the EA41x. In developing this code,
|
||||
* Phil's userland daemon "etherd", was refered to extensively in lieu
|
||||
* Phil's userland daemon "etherd", was referred to extensively in lieu
|
||||
* of accurate documentation for the device.
|
||||
*
|
||||
* This is a weird device! It doesn't conform to the scsi spec in much
|
||||
|
@ -59,7 +59,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.113 2021/06/16 00:21:19 riastradh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.114 2021/09/19 10:34:09 andvar Exp $");
|
||||
|
||||
#ifdef _KERNEL_OPT
|
||||
#include "opt_inet.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ieee80211_node.c,v 1.81 2020/11/30 05:33:32 msaitoh Exp $ */
|
||||
/* $NetBSD: ieee80211_node.c,v 1.82 2021/09/19 10:34:09 andvar 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.81 2020/11/30 05:33:32 msaitoh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.82 2021/09/19 10:34:09 andvar Exp $");
|
||||
#endif
|
||||
|
||||
#ifdef _KERNEL_OPT
|
||||
|
@ -115,7 +115,7 @@ ieee80211_node_attach(struct ieee80211com *ic)
|
|||
ic->ic_node_cleanup = node_cleanup;
|
||||
ic->ic_node_getrssi = node_getrssi;
|
||||
|
||||
/* default station inactivity timer setings */
|
||||
/* default station inactivity timer settings */
|
||||
ic->ic_inact_init = IEEE80211_INACT_INIT;
|
||||
ic->ic_inact_auth = IEEE80211_INACT_AUTH;
|
||||
ic->ic_inact_run = IEEE80211_INACT_RUN;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* $KAME: sctp_input.c,v 1.28 2005/04/21 18:36:21 nishida Exp $ */
|
||||
/* $NetBSD: sctp_input.c,v 1.14 2019/05/28 08:59:35 msaitoh Exp $ */
|
||||
/* $NetBSD: sctp_input.c,v 1.15 2021/09/19 10:34:10 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 2002, 2003, 2004 Cisco Systems Inc,
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: sctp_input.c,v 1.14 2019/05/28 08:59:35 msaitoh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sctp_input.c,v 1.15 2021/09/19 10:34:10 andvar Exp $");
|
||||
|
||||
#ifdef _KERNEL_OPT
|
||||
#include "opt_ipsec.h"
|
||||
|
@ -387,7 +387,7 @@ sctp_process_init_ack(struct mbuf *m, int iphlen, int offset,
|
|||
|
||||
/*
|
||||
* Cancel the INIT timer, We do this first before queueing
|
||||
* the cookie. We always cancel at the primary to assue that
|
||||
* the cookie. We always cancel at the primary to assume that
|
||||
* we are canceling the timer started by the INIT which always
|
||||
* goes to the primary.
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* $KAME: sctp_pcb.c,v 1.39 2005/06/16 18:29:25 jinmei Exp $ */
|
||||
/* $NetBSD: sctp_pcb.c,v 1.21 2020/04/30 03:30:10 riastradh Exp $ */
|
||||
/* $NetBSD: sctp_pcb.c,v 1.22 2021/09/19 10:34:10 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc.
|
||||
|
@ -33,7 +33,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.21 2020/04/30 03:30:10 riastradh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.22 2021/09/19 10:34:10 andvar Exp $");
|
||||
|
||||
#ifdef _KERNEL_OPT
|
||||
#include "opt_inet.h"
|
||||
|
@ -742,7 +742,7 @@ sctp_endpoint_probe(struct sockaddr *nam, struct sctppcbhead *head,
|
|||
}
|
||||
#ifdef SCTP_DEBUG
|
||||
if (sctp_debug_on & SCTP_DEBUG_PCB1) {
|
||||
printf("Ok, found maching local port\n");
|
||||
printf("Ok, found matching local port\n");
|
||||
}
|
||||
#endif
|
||||
LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dtfs_vfsops.c,v 1.4 2019/09/23 12:00:58 christos Exp $ */
|
||||
/* $NetBSD: dtfs_vfsops.c,v 1.5 2021/09/19 10:34:10 andvar Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Antti Kantee. All Rights Reserved.
|
||||
|
@ -160,7 +160,7 @@ dtfs_domount(struct puffs_usermount *pu, const char *typestr)
|
|||
}
|
||||
}
|
||||
if (i == NTYPES) {
|
||||
fprintf(stderr, "no maching type for %s\n", typestr);
|
||||
fprintf(stderr, "no matching type for %s\n", typestr);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <sys/cdefs.h>
|
||||
__COPYRIGHT("@(#) Copyright (c) 2013\
|
||||
The NetBSD Foundation, inc. All rights reserved.");
|
||||
__RCSID("$NetBSD: t_kauth_pr_47598.c,v 1.4 2020/02/10 16:51:48 riastradh Exp $");
|
||||
__RCSID("$NetBSD: t_kauth_pr_47598.c,v 1.5 2021/09/19 10:34:10 andvar Exp $");
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
|
@ -140,7 +140,7 @@ ATF_TC_BODY(kauth_curtain, tc)
|
|||
printf("port is %d\n", ntohs(sa.sin_port));
|
||||
err = connect(s2, (struct sockaddr *)&sa, sizeof(sa));
|
||||
ATF_REQUIRE_MSG(err == -1 && errno == EINPROGRESS,
|
||||
"conect returned %d with errno %d", err, errno);
|
||||
"connect returned %d with errno %d", err, errno);
|
||||
fflush(stdout);
|
||||
fflush(stderr);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi.c,v 1.51 2021/09/14 20:34:36 rillig Exp $ */
|
||||
/* $NetBSD: acpi.c,v 1.52 2021/09/19 10:34:10 andvar Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 Doug Rabson
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__RCSID("$NetBSD: acpi.c,v 1.51 2021/09/14 20:34:36 rillig Exp $");
|
||||
__RCSID("$NetBSD: acpi.c,v 1.52 2021/09/19 10:34:10 andvar Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/endian.h>
|
||||
|
@ -2300,7 +2300,7 @@ acpi_print_iort_smmuv3(ACPI_IORT_NODE *node)
|
|||
printf("\tSync GSIV=%u\n", smmu->SyncGsiv);
|
||||
printf("\tProximity domain=%u\n", smmu->Pxm);
|
||||
|
||||
/* XXX should we print the refered contents? */
|
||||
/* XXX should we print the referred contents? */
|
||||
printf("\tDevice ID mapping index=%u\n", smmu->IdMappingIndex);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue