Module Name:    src
Committed By:   andvar
Date:           Fri Sep  3 22:33:19 UTC 2021

Modified Files:
        src/sys/arch/emips/ebus: ace_ebus.c
        src/sys/arch/mips/ralink: ralink_gpio.c
        src/sys/dev/microcode/aic7xxx: aic79xx.seq aic7xxx.seq
        src/sys/dev/pci: mly.c
        src/tests/lib/libc/gen/posix_spawn: t_spawn.c
        src/tests/sys/uvm: t_uvm_physseg.c
        src/usr.sbin/acpitools/aml: aml_store.c

Log Message:
s/existant/existent/ in comments and messages, plus few more similar fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/emips/ebus/ace_ebus.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mips/ralink/ralink_gpio.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/microcode/aic7xxx/aic79xx.seq
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/microcode/aic7xxx/aic7xxx.seq
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/mly.c
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/gen/posix_spawn/t_spawn.c
cvs rdiff -u -r1.9 -r1.10 src/tests/sys/uvm/t_uvm_physseg.c
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/acpitools/aml/aml_store.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/emips/ebus/ace_ebus.c
diff -u src/sys/arch/emips/ebus/ace_ebus.c:1.24 src/sys/arch/emips/ebus/ace_ebus.c:1.25
--- src/sys/arch/emips/ebus/ace_ebus.c:1.24	Sat Jul 24 21:31:32 2021
+++ src/sys/arch/emips/ebus/ace_ebus.c	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ace_ebus.c,v 1.24 2021/07/24 21:31:32 andvar Exp $	*/
+/*	$NetBSD: ace_ebus.c,v 1.25 2021/09/03 22:33:17 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ace_ebus.c,v 1.24 2021/07/24 21:31:32 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ace_ebus.c,v 1.25 2021/09/03 22:33:17 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1313,7 +1313,7 @@ sysace_write_at(struct ace_softc *sc, da
 				SysaceDumpRegisters(sc->sc_dr);
 				/*
 				 * Ignore, we'll handle it the next time around
-				 * BUGBUG To be revised along with non-existant
+				 * BUGBUG To be revised along with non-existent
 				 * error handling
 				 */
 			}

Index: src/sys/arch/mips/ralink/ralink_gpio.c
diff -u src/sys/arch/mips/ralink/ralink_gpio.c:1.11 src/sys/arch/mips/ralink/ralink_gpio.c:1.12
--- src/sys/arch/mips/ralink/ralink_gpio.c:1.11	Sat Aug  7 16:18:59 2021
+++ src/sys/arch/mips/ralink/ralink_gpio.c	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ralink_gpio.c,v 1.11 2021/08/07 16:18:59 thorpej Exp $	*/
+/*	$NetBSD: ralink_gpio.c,v 1.12 2021/09/03 22:33:17 andvar Exp $	*/
 /*-
  * Copyright (c) 2011 CradlePoint Technology, Inc.
  * All rights reserved.
@@ -29,7 +29,7 @@
 /* ra_gpio.c -- Ralink 3052 gpio driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ralink_gpio.c,v 1.11 2021/08/07 16:18:59 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ralink_gpio.c,v 1.12 2021/09/03 22:33:17 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -900,7 +900,7 @@ ra_gpio_pin_read(void *arg, int pin)
 		 * then warn and return 0
 		 */
 		const int index = pin_tab_index[pin];
-		KASSERTMSG(index != -1, "%s: non-existant pin=%d\n",
+		KASSERTMSG(index != -1, "%s: non-existent pin=%d\n",
 			__func__, pin);
 		if (index == -1) {
 			rv = 0;
@@ -1001,7 +1001,7 @@ ra_gpio_pin_write(void *arg, int pin, in
 	 * then warn and return
 	 */
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 
@@ -1432,7 +1432,7 @@ disable_gpio_interrupt(ra_gpio_softc_t *
 {
 	RALINK_DEBUG_FUNC_ENTRY();
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 
@@ -1456,7 +1456,7 @@ static void
 enable_gpio_interrupt(ra_gpio_softc_t *sc, int pin)
 {
 	const int index = pin_tab_index[pin];
-	KASSERTMSG(index != -1, "%s: non-existant pin=%d\n", __func__, pin);
+	KASSERTMSG(index != -1, "%s: non-existent pin=%d\n", __func__, pin);
 	if (index == -1)
 		return;
 

Index: src/sys/dev/microcode/aic7xxx/aic79xx.seq
diff -u src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.12 src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.13
--- src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.12	Tue Jun  4 10:15:22 2019
+++ src/sys/dev/microcode/aic7xxx/aic79xx.seq	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: aic79xx.seq,v 1.12 2019/06/04 10:15:22 msaitoh Exp $	*/
+/*	$NetBSD: aic79xx.seq,v 1.13 2021/09/03 22:33:17 andvar Exp $	*/
 
 /*
  * Adaptec U320 device driver firmware for Linux and FreeBSD.
@@ -1274,7 +1274,7 @@ service_fifo:
 
 	/*
 	 * We fetch a "cacheline aligned" and sized amount of data
-	 * so we don't end up referencing a non-existant page.
+	 * so we don't end up referencing a non-existent page.
 	 * Cacheline aligned is in quotes because the kernel will
 	 * set the prefetch amount to a reasonable level if the
 	 * cacheline size is unknown.

Index: src/sys/dev/microcode/aic7xxx/aic7xxx.seq
diff -u src/sys/dev/microcode/aic7xxx/aic7xxx.seq:1.20 src/sys/dev/microcode/aic7xxx/aic7xxx.seq:1.21
--- src/sys/dev/microcode/aic7xxx/aic7xxx.seq:1.20	Tue Jun  4 10:15:22 2019
+++ src/sys/dev/microcode/aic7xxx/aic7xxx.seq	Fri Sep  3 22:33:17 2021
@@ -40,7 +40,7 @@
  * $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx.seq,v 1.123 2003/01/20 20:44:55 gibbs Exp $
  */
 
-VERSION = "$NetBSD: aic7xxx.seq,v 1.20 2019/06/04 10:15:22 msaitoh Exp $"
+VERSION = "$NetBSD: aic7xxx.seq,v 1.21 2021/09/03 22:33:17 andvar Exp $"
 PATCH_ARG_LIST = "struct ahc_softc *ahc"
 PREFIX = "ahc_"
 
@@ -751,7 +751,7 @@ idle_loop:
 
 	/*
 	 * We fetch a "cacheline aligned" and sized amount of data
-	 * so we don't end up referencing a non-existant page.
+	 * so we don't end up referencing a non-existent page.
 	 * Cacheline aligned is in quotes because the kernel will
 	 * set the prefetch amount to a reasonable level if the
 	 * cacheline size is unknown.

Index: src/sys/dev/pci/mly.c
diff -u src/sys/dev/pci/mly.c:1.55 src/sys/dev/pci/mly.c:1.56
--- src/sys/dev/pci/mly.c:1.55	Sat Aug  7 16:19:14 2021
+++ src/sys/dev/pci/mly.c	Fri Sep  3 22:33:17 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: mly.c,v 1.55 2021/08/07 16:19:14 thorpej Exp $	*/
+/*	$NetBSD: mly.c,v 1.56 2021/09/03 22:33:17 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mly.c,v 1.55 2021/08/07 16:19:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mly.c,v 1.56 2021/09/03 22:33:17 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1826,7 +1826,7 @@ mly_scsipi_request(struct scsipi_channel
 		splx(s);
 
 		/*
-		 * Check for I/O attempt to a protected or non-existant
+		 * Check for I/O attempt to a protected or non-existent
 		 * device.
 		 */
 		if ((tmp & MLY_BTL_PROTECTED) != 0) {

Index: src/tests/lib/libc/gen/posix_spawn/t_spawn.c
diff -u src/tests/lib/libc/gen/posix_spawn/t_spawn.c:1.2 src/tests/lib/libc/gen/posix_spawn/t_spawn.c:1.3
--- src/tests/lib/libc/gen/posix_spawn/t_spawn.c:1.2	Sat Oct 18 08:33:30 2014
+++ src/tests/lib/libc/gen/posix_spawn/t_spawn.c	Fri Sep  3 22:33:18 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_spawn.c,v 1.2 2014/10/18 08:33:30 snj Exp $ */
+/* $NetBSD: t_spawn.c,v 1.3 2021/09/03 22:33:18 andvar Exp $ */
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@ ATF_TC(t_spawn_missing);
 ATF_TC_HEAD(t_spawn_missing, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-	    "posix_spawn a non existant binary");
+	    "posix_spawn a non-existent binary");
 }
 
 ATF_TC_BODY(t_spawn_missing, tc)
@@ -117,7 +117,7 @@ ATF_TC(t_spawn_nonexec);
 ATF_TC_HEAD(t_spawn_nonexec, tc)
 {
 	atf_tc_set_md_var(tc, "descr",
-	    "posix_spawn a script with non existing interpreter");
+	    "posix_spawn a script with non-existent interpreter");
 }
 
 ATF_TC_BODY(t_spawn_nonexec, tc)

Index: src/tests/sys/uvm/t_uvm_physseg.c
diff -u src/tests/sys/uvm/t_uvm_physseg.c:1.9 src/tests/sys/uvm/t_uvm_physseg.c:1.10
--- src/tests/sys/uvm/t_uvm_physseg.c:1.9	Fri Aug 13 20:19:13 2021
+++ src/tests/sys/uvm/t_uvm_physseg.c	Fri Sep  3 22:33:18 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_uvm_physseg.c,v 1.9 2021/08/13 20:19:13 andvar Exp $ */
+/* $NetBSD: t_uvm_physseg.c,v 1.10 2021/09/03 22:33:18 andvar Exp $ */
 
 /*-
  * Copyright (c) 2015, 2016 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_uvm_physseg.c,v 1.9 2021/08/13 20:19:13 andvar Exp $");
+__RCSID("$NetBSD: t_uvm_physseg.c,v 1.10 2021/09/03 22:33:18 andvar Exp $");
 
 /*
  * If this line is commented out tests related to uvm_physseg_get_pmseg()
@@ -1886,7 +1886,7 @@ ATF_TC(vm_physseg_find_invalid);
 ATF_TC_HEAD(vm_physseg_find_invalid, tc)
 {
 	atf_tc_set_md_var(tc, "descr", "Tests if the returned segment number \
-	    is (paddr_t) -1  when a non existant PFN is passed into \
+	    is (paddr_t) -1  when a non-existent PFN is passed into \
 	    uvm_physseg_find() call.");
 }
 ATF_TC_BODY(vm_physseg_find_invalid, tc)

Index: src/usr.sbin/acpitools/aml/aml_store.c
diff -u src/usr.sbin/acpitools/aml/aml_store.c:1.2 src/usr.sbin/acpitools/aml/aml_store.c:1.3
--- src/usr.sbin/acpitools/aml/aml_store.c:1.2	Sun Feb  3 03:19:30 2019
+++ src/usr.sbin/acpitools/aml/aml_store.c	Fri Sep  3 22:33:18 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: aml_store.c,v 1.2 2019/02/03 03:19:30 mrg Exp $	*/
+/*	$NetBSD: aml_store.c,v 1.3 2021/09/03 22:33:18 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1999 Takanori Watanabe
@@ -30,7 +30,7 @@
  *	$FreeBSD: src/usr.sbin/acpi/amldb/aml/aml_store.c,v 1.3 2000/11/09 06:24:45 iwasaki Exp $
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: aml_store.c,v 1.2 2019/02/03 03:19:30 mrg Exp $");
+__RCSID("$NetBSD: aml_store.c,v 1.3 2021/09/03 22:33:18 andvar Exp $");
 
 #include <sys/param.h>
 
@@ -305,7 +305,7 @@ aml_store_to_name(struct aml_environ *en
 		return;
 	}
 	if (name == NULL || obj == NULL) {
-		AML_DEBUGPRINT("[Try to store no existant name ]");
+		AML_DEBUGPRINT("[Try to store non-existent name]");
 		return;
 	}
 	if (name->property == NULL) {

Reply via email to