Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Fix typos: s/trough/through/
details: https://anonhg.NetBSD.org/src/rev/496ab4c13376
branches: trunk
changeset: 374149:496ab4c13376
user: gutteridge <gutteridge%NetBSD.org@localhost>
date: Mon Apr 03 18:03:23 2023 +0000
description:
Fix typos: s/trough/through/
diffstat:
sys/dev/flash/flash_io.c | 6 +++---
sys/fs/udf/udf_subr.c | 6 +++---
sys/kern/subr_disk_mbr.c | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diffs (81 lines):
diff -r 03d043588caf -r 496ab4c13376 sys/dev/flash/flash_io.c
--- a/sys/dev/flash/flash_io.c Mon Apr 03 17:58:41 2023 +0000
+++ b/sys/dev/flash/flash_io.c Mon Apr 03 18:03:23 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: flash_io.c,v 1.5 2014/02/25 18:30:09 pooka Exp $ */
+/* $NetBSD: flash_io.c,v 1.6 2023/04/03 18:03:23 gutteridge Exp $ */
/*-
* Copyright (c) 2011 Department of Software Engineering,
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: flash_io.c,v 1.5 2014/02/25 18:30:09 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: flash_io.c,v 1.6 2023/04/03 18:03:23 gutteridge Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -83,7 +83,7 @@ flash_io_getblock(struct flash_io *fio,
last = (bp->b_rawblkno * DEV_BSIZE + bp->b_resid - 1)
/ fio->fio_if->erasesize;
- /* spans trough multiple blocks, needs special handling */
+ /* spans through multiple blocks, needs special handling */
if (last != block) {
printf("0x%jx -> 0x%jx\n",
bp->b_rawblkno * DEV_BSIZE,
diff -r 03d043588caf -r 496ab4c13376 sys/fs/udf/udf_subr.c
--- a/sys/fs/udf/udf_subr.c Mon Apr 03 17:58:41 2023 +0000
+++ b/sys/fs/udf/udf_subr.c Mon Apr 03 18:03:23 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_subr.c,v 1.172 2022/10/31 21:22:06 andvar Exp $ */
+/* $NetBSD: udf_subr.c,v 1.173 2023/04/03 18:03:24 gutteridge Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.172 2022/10/31 21:22:06 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.173 2023/04/03 18:03:24 gutteridge Exp $");
#endif /* not lint */
@@ -5530,7 +5530,7 @@ udf_loadvnode(struct mount *mp, struct v
udf_node->needs_indirect = needs_indirect;
/*
- * Go trough all allocations extents of this descriptor and when
+ * Go through all allocations extents of this descriptor and when
* encountering a redirect read in the allocation extension. These are
* daisy-chained.
*/
diff -r 03d043588caf -r 496ab4c13376 sys/kern/subr_disk_mbr.c
--- a/sys/kern/subr_disk_mbr.c Mon Apr 03 17:58:41 2023 +0000
+++ b/sys/kern/subr_disk_mbr.c Mon Apr 03 18:03:23 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_disk_mbr.c,v 1.57 2021/05/17 08:50:36 mrg Exp $ */
+/* $NetBSD: subr_disk_mbr.c,v 1.58 2023/04/03 18:03:24 gutteridge Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@@ -54,7 +54,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_disk_mbr.c,v 1.57 2021/05/17 08:50:36 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_disk_mbr.c,v 1.58 2023/04/03 18:03:24 gutteridge Exp $");
#ifdef _KERNEL_OPT
#include "opt_mbr.h"
@@ -330,7 +330,7 @@ scan_iso_vrs(mbr_args_t *a)
if (error)
return SCAN_CONTINUE;
- /* go trough all (data) tracks */
+ /* go through all (data) tracks */
sessionnr = -1;
for (tracknr = di.first_track;
tracknr <= di.first_track_last_session; tracknr++)
Home |
Main Index |
Thread Index |
Old Index