Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/fs/vfs s/memry/memory+s/softare/software/+s/grapics/gr...
details: https://anonhg.NetBSD.org/src/rev/69a1b6c35332
branches: trunk
changeset: 1023028:69a1b6c35332
user: andvar <andvar%NetBSD.org@localhost>
date: Thu Aug 19 20:56:36 2021 +0000
description:
s/memry/memory+s/softare/software/+s/grapics/graphics+s/ouput/output
diffstat:
lib/libm/arch/x86_64/fenv.c | 6 +++---
sys/arch/arm/sunxi/sunxi_tcon.c | 6 +++---
sys/arch/evbppc/conf/EV64260 | 4 ++--
sys/dev/pci/tga.c | 10 +++++-----
sys/ufs/lfs/ulfs_dirhash.h | 4 ++--
sys/ufs/ufs/dirhash.h | 4 ++--
tests/fs/vfs/t_vnops.c | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diffs (171 lines):
diff -r 499cd423473d -r 69a1b6c35332 lib/libm/arch/x86_64/fenv.c
--- a/lib/libm/arch/x86_64/fenv.c Thu Aug 19 20:53:37 2021 +0000
+++ b/lib/libm/arch/x86_64/fenv.c Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fenv.c,v 1.8 2021/08/12 20:53:18 andvar Exp $ */
+/* $NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $ */
/*-
* Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.8 2021/08/12 20:53:18 andvar Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.9 2021/08/19 20:56:36 andvar Exp $");
#include "namespace.h"
@@ -369,7 +369,7 @@
* exceptions are masked).
*
* 8.6 X87 FPU EXCEPTION SYNCHRONIZATION -
- * Intel(R) 64 and IA-32 Architectures Softare Developer's Manual - Vol 1
+ * Intel(R) 64 and IA-32 Architectures Software Developer's Manual - Vol 1
*
*/
__fldcw(envp->x87.control);
diff -r 499cd423473d -r 69a1b6c35332 sys/arch/arm/sunxi/sunxi_tcon.c
--- a/sys/arch/arm/sunxi/sunxi_tcon.c Thu Aug 19 20:53:37 2021 +0000
+++ b/sys/arch/arm/sunxi/sunxi_tcon.c Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_tcon.c,v 1.11 2021/01/27 03:10:20 thorpej Exp $ */
+/* $NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $ */
/*-
* Copyright (c) 2018 Manuel Bouyer <bouyer%antioche.eu.org@localhost>
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.11 2021/01/27 03:10:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -363,7 +363,7 @@
if (fdt_endpoint_is_active(in_ep))
return EBUSY;
}
- /* try output 0 (RGB/LVDS) first, then ouput 1 (HDMI) if it fails */
+ /* try output 0 (RGB/LVDS) first, then output 1 (HDMI) if it fails */
for (outi = 0; outi < 2; outi++) {
out_ep = fdt_endpoint_get_from_index(&sc->sc_ports,
SUNXI_PORT_OUTPUT, outi);
diff -r 499cd423473d -r 69a1b6c35332 sys/arch/evbppc/conf/EV64260
--- a/sys/arch/evbppc/conf/EV64260 Thu Aug 19 20:53:37 2021 +0000
+++ b/sys/arch/evbppc/conf/EV64260 Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: EV64260,v 1.73 2019/04/26 21:40:29 sevan Exp $
+# $NetBSD: EV64260,v 1.74 2021/08/19 20:56:36 andvar Exp $
#
# MVP -- Motorola's Multiprocessing Verification Platform
#
@@ -265,7 +265,7 @@
#pseudo-device wsmux # ick
pseudo-device clockctl # user control of clock subsystem
pseudo-device ksyms # /dev/ksyms
-pseudo-device swdmover # softare dmover(9) back-end
+pseudo-device swdmover # software dmover(9) back-end
pseudo-device dmoverio # /dev/dmover dmover(9) interface
include "dev/veriexec.config"
diff -r 499cd423473d -r 69a1b6c35332 sys/dev/pci/tga.c
--- a/sys/dev/pci/tga.c Thu Aug 19 20:53:37 2021 +0000
+++ b/sys/dev/pci/tga.c Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tga.c,v 1.88 2021/08/07 16:19:14 thorpej Exp $ */
+/* $NetBSD: tga.c,v 1.89 2021/08/19 20:56:36 andvar Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tga.c,v 1.88 2021/08/07 16:19:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tga.c,v 1.89 2021/08/19 20:56:36 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1265,7 +1265,7 @@
*rp = 0xffffffff;
}
- /* Set grapics mode back to normal. */
+ /* Set graphics mode back to normal. */
TGAWREG(dc, TGA_REG_GMOR, 0);
TGAWREG(dc, TGA_REG_GPXR_P, 0xffffffff);
}
@@ -1316,7 +1316,7 @@
rp = (int32_t *)((uint8_t *)rp + ri->ri_stride);
}
- /* Set grapics mode back to normal. */
+ /* Set graphics mode back to normal. */
TGAWREG(dc, TGA_REG_GMOR, 0);
}
@@ -1366,7 +1366,7 @@
rp = (int32_t *)((uint8_t *)rp + ri->ri_stride);
}
- /* Set grapics mode back to normal. */
+ /* Set graphics mode back to normal. */
TGAWREG(dc, TGA_REG_GMOR, 0);
}
diff -r 499cd423473d -r 69a1b6c35332 sys/ufs/lfs/ulfs_dirhash.h
--- a/sys/ufs/lfs/ulfs_dirhash.h Thu Aug 19 20:53:37 2021 +0000
+++ b/sys/ufs/lfs/ulfs_dirhash.h Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ulfs_dirhash.h,v 1.11 2019/12/27 09:25:58 msaitoh Exp $ */
+/* $NetBSD: ulfs_dirhash.h,v 1.12 2021/08/19 20:56:36 andvar Exp $ */
/* from NetBSD: dirhash.h,v 1.7 2013/06/09 17:57:09 dholland Exp */
/*
@@ -64,7 +64,7 @@
* 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
- * candidates is much larger than the configured memry limit). In this
+ * candidates is much larger than the configured memory limit). In this
* case it limits the number of hash builds to 1/DH_SCOREINIT of the
* number of accesses.
*/
diff -r 499cd423473d -r 69a1b6c35332 sys/ufs/ufs/dirhash.h
--- a/sys/ufs/ufs/dirhash.h Thu Aug 19 20:53:37 2021 +0000
+++ b/sys/ufs/ufs/dirhash.h Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dirhash.h,v 1.8 2019/12/27 09:25:58 msaitoh Exp $ */
+/* $NetBSD: dirhash.h,v 1.9 2021/08/19 20:56:36 andvar Exp $ */
/*
* Copyright (c) 2001 Ian Dowse. All rights reserved.
@@ -63,7 +63,7 @@
* 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
- * candidates is much larger than the configured memry limit). In this
+ * candidates is much larger than the configured memory limit). In this
* case it limits the number of hash builds to 1/DH_SCOREINIT of the
* number of accesses.
*/
diff -r 499cd423473d -r 69a1b6c35332 tests/fs/vfs/t_vnops.c
--- a/tests/fs/vfs/t_vnops.c Thu Aug 19 20:53:37 2021 +0000
+++ b/tests/fs/vfs/t_vnops.c Thu Aug 19 20:56:36 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_vnops.c,v 1.59 2017/01/13 21:30:40 christos Exp $ */
+/* $NetBSD: t_vnops.c,v 1.60 2021/08/19 20:56:36 andvar Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -148,7 +148,7 @@
#undef FIELD
#undef TIME
- atf_tc_fail("stat results differ, see ouput for more details");
+ atf_tc_fail("stat results differ, see output for more details");
}
}
Home |
Main Index |
Thread Index |
Old Index