Module Name: src Committed By: andvar Date: Mon Feb 17 22:56:46 UTC 2025
Modified Files: src/share/doc/papers/kernmalloc: kernmalloc.t src/sys/dev/isa: aps.c src/sys/dev/pci/ixgbe: ixgbe_common.c src/usr.sbin/makefs/cd9660: iso9660_rrip.c Log Message: s/bye/byte/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/share/doc/papers/kernmalloc/kernmalloc.t cvs rdiff -u -r1.19 -r1.20 src/sys/dev/isa/aps.c cvs rdiff -u -r1.47 -r1.48 src/sys/dev/pci/ixgbe/ixgbe_common.c cvs rdiff -u -r1.16 -r1.17 src/usr.sbin/makefs/cd9660/iso9660_rrip.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/doc/papers/kernmalloc/kernmalloc.t diff -u src/share/doc/papers/kernmalloc/kernmalloc.t:1.5 src/share/doc/papers/kernmalloc/kernmalloc.t:1.6 --- src/share/doc/papers/kernmalloc/kernmalloc.t:1.5 Thu Aug 7 10:30:43 2003 +++ src/share/doc/papers/kernmalloc/kernmalloc.t Mon Feb 17 22:56:46 2025 @@ -1,4 +1,4 @@ -.\" $NetBSD: kernmalloc.t,v 1.5 2003/08/07 10:30:43 agc Exp $ +.\" $NetBSD: kernmalloc.t,v 1.6 2025/02/17 22:56:46 andvar Exp $ .\" .\" Copyright (c) 1988 The Regents of the University of California. .\" All rights reserved. @@ -133,7 +133,7 @@ it is not feasible to allocate even mode Consequently, such memory must be allocated through a more dynamic mechanism. For example, when the system must translate a pathname, -it must allocate a one kilobye buffer to hold the name. +it must allocate a one kilobyte buffer to hold the name. Other blocks of memory must be more persistent than a single system call and really have to be allocated from dynamic memory. Examples include protocol control blocks that remain throughout Index: src/sys/dev/isa/aps.c diff -u src/sys/dev/isa/aps.c:1.19 src/sys/dev/isa/aps.c:1.20 --- src/sys/dev/isa/aps.c:1.19 Fri Feb 9 22:08:35 2024 +++ src/sys/dev/isa/aps.c Mon Feb 17 22:56:46 2025 @@ -1,4 +1,4 @@ -/* $NetBSD: aps.c,v 1.19 2024/02/09 22:08:35 andvar Exp $ */ +/* $NetBSD: aps.c,v 1.20 2025/02/17 22:56:46 andvar Exp $ */ /* $OpenBSD: aps.c,v 1.15 2007/05/19 19:14:11 tedu Exp $ */ /* $OpenBSD: aps.c,v 1.17 2008/06/27 06:08:43 canacar Exp $ */ /* @@ -24,7 +24,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: aps.c,v 1.19 2024/02/09 22:08:35 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: aps.c,v 1.20 2025/02/17 22:56:46 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -192,7 +192,7 @@ aps_do_io(bus_space_tag_t iot, bus_space } /* write data bytes, init already sent */ - /* make sure last bye is always written as this will trigger slave */ + /* make sure last byte is always written as this will trigger slave */ wmask |= APS_READ_RET; buf[APS_RET] = 0x01; Index: src/sys/dev/pci/ixgbe/ixgbe_common.c diff -u src/sys/dev/pci/ixgbe/ixgbe_common.c:1.47 src/sys/dev/pci/ixgbe/ixgbe_common.c:1.48 --- src/sys/dev/pci/ixgbe/ixgbe_common.c:1.47 Fri Oct 6 14:48:08 2023 +++ src/sys/dev/pci/ixgbe/ixgbe_common.c Mon Feb 17 22:56:46 2025 @@ -1,4 +1,4 @@ -/* $NetBSD: ixgbe_common.c,v 1.47 2023/10/06 14:48:08 msaitoh Exp $ */ +/* $NetBSD: ixgbe_common.c,v 1.48 2025/02/17 22:56:46 andvar Exp $ */ /****************************************************************************** SPDX-License-Identifier: BSD-3-Clause @@ -36,7 +36,7 @@ /*$FreeBSD: head/sys/dev/ixgbe/ixgbe_common.c 331224 2018-03-19 20:55:05Z erj $*/ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ixgbe_common.c,v 1.47 2023/10/06 14:48:08 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ixgbe_common.c,v 1.48 2025/02/17 22:56:46 andvar Exp $"); #include "ixgbe_common.h" #include "ixgbe_phy.h" @@ -4709,7 +4709,7 @@ s32 ixgbe_host_interface_command(struct /* * If there is any thing in data position pull it in * Read Flash command requires reading buffer length from - * two byes instead of one byte + * two bytes instead of one byte */ if (resp->cmd == IXGBE_HOST_INTERFACE_FLASH_READ_CMD || resp->cmd == IXGBE_HOST_INTERFACE_SHADOW_RAM_READ_CMD) { Index: src/usr.sbin/makefs/cd9660/iso9660_rrip.c diff -u src/usr.sbin/makefs/cd9660/iso9660_rrip.c:1.16 src/usr.sbin/makefs/cd9660/iso9660_rrip.c:1.17 --- src/usr.sbin/makefs/cd9660/iso9660_rrip.c:1.16 Tue Apr 18 23:02:51 2023 +++ src/usr.sbin/makefs/cd9660/iso9660_rrip.c Mon Feb 17 22:56:46 2025 @@ -1,4 +1,4 @@ -/* $NetBSD: iso9660_rrip.c,v 1.16 2023/04/18 23:02:51 christos Exp $ */ +/* $NetBSD: iso9660_rrip.c,v 1.17 2025/02/17 22:56:46 andvar Exp $ */ /* * Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan @@ -44,7 +44,7 @@ #include <sys/cdefs.h> #if defined(__RCSID) && !defined(__lint) -__RCSID("$NetBSD: iso9660_rrip.c,v 1.16 2023/04/18 23:02:51 christos Exp $"); +__RCSID("$NetBSD: iso9660_rrip.c,v 1.17 2025/02/17 22:56:46 andvar Exp $"); #endif /* !__lint */ static void cd9660_rrip_initialize_inode(cd9660node *); @@ -740,7 +740,7 @@ cd9660_rrip_add_NM(cd9660node *node, con struct ISO_SUSP_ATTRIBUTES *r; /* - * Each NM record has 254 byes to work with. This means that + * Each NM record has 254 bytes to work with. This means that * the name data itself only has 249 bytes to work with. So, a * name with 251 characters would require two nm records. */