Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src s/sucess/success/ in comment.



details:   https://anonhg.NetBSD.org/src/rev/2b3a79f093fc
branches:  trunk
changeset: 466603:2b3a79f093fc
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Fri Dec 27 09:45:26 2019 +0000

description:
s/sucess/success/ in comment.

diffstat:

 lib/libpthread/pthread_mutex.3         |  4 ++--
 lib/libutil/pidfile.c                  |  6 +++---
 sys/arch/arm/arm32/arm32_machdep.c     |  6 +++---
 sys/arch/mips/mips/cpu_subr.c          |  6 +++---
 sys/arch/powerpc/booke/booke_machdep.c |  6 +++---
 sys/arch/x86/x86/bios32.c              |  6 +++---
 sys/dev/audio/audio.c                  |  6 +++---
 sys/dev/ic/aic79xx.c                   |  6 +++---
 sys/dev/ic/aic7xxx.c                   |  8 ++++----
 sys/dev/ppbus/ppbus_conf.c             |  6 +++---
 sys/stand/efiboot/smbios.c             |  6 +++---
 usr.bin/vmstat/vmstat.c                |  6 +++---
 12 files changed, 36 insertions(+), 36 deletions(-)

diffs (truncated from 324 to 300 lines):

diff -r 95ce41fd3b93 -r 2b3a79f093fc lib/libpthread/pthread_mutex.3
--- a/lib/libpthread/pthread_mutex.3    Fri Dec 27 09:41:48 2019 +0000
+++ b/lib/libpthread/pthread_mutex.3    Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: pthread_mutex.3,v 1.10 2017/10/22 16:37:24 abhinav Exp $
+.\" $NetBSD: pthread_mutex.3,v 1.11 2019/12/27 09:45:26 msaitoh Exp $
 .\"
 .\" Copyright (c) 2002, 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -176,7 +176,7 @@
 The
 .Fn pthread_mutex_setprioceiling
 function shall either lock the mutex if it is unlocked, or block until
-it can sucessfully lock the mutex, then it shall change the mutex's priority
+it can successfully lock the mutex, then it shall change the mutex's priority
 ceiling and release the mutex.
 When the change is successful, the previous value of the priority ceiling
 shall be returned
diff -r 95ce41fd3b93 -r 2b3a79f093fc lib/libutil/pidfile.c
--- a/lib/libutil/pidfile.c     Fri Dec 27 09:41:48 2019 +0000
+++ b/lib/libutil/pidfile.c     Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pidfile.c,v 1.14 2016/04/12 20:40:43 roy Exp $ */
+/*     $NetBSD: pidfile.c,v 1.15 2019/12/27 09:45:26 msaitoh Exp $     */
 
 /*-
  * Copyright (c) 1999, 2016 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: pidfile.c,v 1.14 2016/04/12 20:40:43 roy Exp $");
+__RCSID("$NetBSD: pidfile.c,v 1.15 2019/12/27 09:45:26 msaitoh Exp $");
 #endif
 
 #include <sys/param.h>
@@ -205,7 +205,7 @@
                        if (errno == EAGAIN) {
                                /* The pidfile is locked, return the process ID
                                 * it contains.
-                                * If sucessful, set errno to EEXIST. */
+                                * If successful, set errno to EEXIST. */
                                if ((pid = pidfile_read(path)) != -1)
                                        errno = EEXIST;
                        } else
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/arch/arm/arm32/arm32_machdep.c
--- a/sys/arch/arm/arm32/arm32_machdep.c        Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/arch/arm/arm32/arm32_machdep.c        Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: arm32_machdep.c,v 1.129 2019/12/18 21:45:44 riastradh Exp $    */
+/*     $NetBSD: arm32_machdep.c,v 1.130 2019/12/27 09:45:26 msaitoh Exp $      */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: arm32_machdep.c,v 1.129 2019/12/18 21:45:44 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arm32_machdep.c,v 1.130 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include "opt_arm_debug.h"
 #include "opt_arm_start.h"
@@ -734,7 +734,7 @@
 void
 cpu_init_secondary_processor(int cpuindex)
 {
-       // pmap_kernel has been sucessfully built and we can switch to it
+       // pmap_kernel has been successfully built and we can switch to it
 
        cpu_domains(DOMAIN_DEFAULT);
        cpu_idcache_wbinv_all();
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/arch/mips/mips/cpu_subr.c
--- a/sys/arch/mips/mips/cpu_subr.c     Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/arch/mips/mips/cpu_subr.c     Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu_subr.c,v 1.42 2019/12/21 13:00:22 ad Exp $ */
+/*     $NetBSD: cpu_subr.c,v 1.43 2019/12/27 09:45:26 msaitoh Exp $    */
 
 /*-
  * Copyright (c) 2010, 2019 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.42 2019/12/21 13:00:22 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.43 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -962,7 +962,7 @@
                KASSERT(ci->ci_data.cpu_idlelwp);
 
                /*
-                * Skip this CPU if it didn't sucessfully hatch.
+                * Skip this CPU if it didn't successfully hatch.
                 */
                if (!kcpuset_isset(cpus_hatched, cpu_index(ci)))
                        continue;
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/arch/powerpc/booke/booke_machdep.c
--- a/sys/arch/powerpc/booke/booke_machdep.c    Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/arch/powerpc/booke/booke_machdep.c    Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: booke_machdep.c,v 1.27 2019/12/21 13:00:22 ad Exp $    */
+/*     $NetBSD: booke_machdep.c,v 1.28 2019/12/27 09:45:26 msaitoh Exp $       */
 /*-
  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -38,7 +38,7 @@
 #define        _POWERPC_BUS_DMA_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: booke_machdep.c,v 1.27 2019/12/21 13:00:22 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: booke_machdep.c,v 1.28 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include "opt_modular.h"
 
@@ -515,7 +515,7 @@
 
        for (CPU_INFO_FOREACH(cii, ci)) {
                /*
-                * Skip this CPU if it didn't sucessfully hatch.
+                * Skip this CPU if it didn't successfully hatch.
                 */
                if (!kcpuset_isset(csi->cpus_hatched, cpu_index(ci)))
                        continue;
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/arch/x86/x86/bios32.c
--- a/sys/arch/x86/x86/bios32.c Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/arch/x86/x86/bios32.c Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bios32.c,v 1.3 2019/02/11 14:59:33 cherry Exp $        */
+/*     $NetBSD: bios32.c,v 1.4 2019/12/27 09:45:26 msaitoh Exp $       */
 
 /*
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -86,7 +86,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bios32.c,v 1.3 2019/02/11 14:59:33 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bios32.c,v 1.4 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -357,7 +357,7 @@
 /*
  * smbios_find_table() takes a caller supplied smbios struct type and
  * a pointer to a handle (struct smbtable) returning one if the structure
- * is sucessfully located and zero otherwise. Callers should take care
+ * is successfully located and zero otherwise. Callers should take care
  * to initilize the cookie field of the smbtable structure to zero before
  * the first invocation of this function.
  * Multiple tables of the same type can be located by repeadtly calling
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/dev/audio/audio.c
--- a/sys/dev/audio/audio.c     Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/dev/audio/audio.c     Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.35 2019/12/26 11:27:03 isaki Exp $ */
+/*     $NetBSD: audio.c,v 1.36 2019/12/27 09:45:26 msaitoh Exp $       */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -142,7 +142,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.35 2019/12/26 11:27:03 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.36 2019/12/27 09:45:26 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "audio.h"
@@ -4525,7 +4525,7 @@
  * Initialize the mixer corresponding to the mode.
  * Set AUMODE_PLAY to the 'mode' for playback or AUMODE_RECORD for recording.
  * sc->sc_[pr]mixer (corresponding to the 'mode') must be zero-filled.
- * This function returns 0 on sucessful.  Otherwise returns errno.
+ * This function returns 0 on successful.  Otherwise returns errno.
  * Must be called with sc_lock held.
  */
 static int
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/dev/ic/aic79xx.c
--- a/sys/dev/ic/aic79xx.c      Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/dev/ic/aic79xx.c      Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic79xx.c,v 1.52 2019/11/10 21:16:35 chs Exp $ */
+/*     $NetBSD: aic79xx.c,v 1.53 2019/12/27 09:45:26 msaitoh Exp $     */
 
 /*
  * Core routines and tables shareable across OS platforms.
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.52 2019/11/10 21:16:35 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.53 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include <dev/ic/aic79xx_osm.h>
 #include <dev/ic/aic79xx_inline.h>
@@ -1579,7 +1579,7 @@
                /*
                 * Although the driver does not care about the
                 * 'Selection in Progress' status bit, the busy
-                * LED does.  SELINGO is only cleared by a sucessfull
+                * LED does.  SELINGO is only cleared by a successful
                 * selection, so we must manually clear it to insure
                 * the LED turns off just incase no future successful
                 * selections occur (e.g. no devices on the bus).
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/dev/ic/aic7xxx.c
--- a/sys/dev/ic/aic7xxx.c      Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/dev/ic/aic7xxx.c      Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic7xxx.c,v 1.138 2019/12/27 09:18:00 msaitoh Exp $    */
+/*     $NetBSD: aic7xxx.c,v 1.139 2019/12/27 09:45:26 msaitoh Exp $    */
 
 /*
  * Core routines and tables shareable across OS platforms.
@@ -39,7 +39,7 @@
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGES.
  *
- * $Id: aic7xxx.c,v 1.138 2019/12/27 09:18:00 msaitoh Exp $
+ * $Id: aic7xxx.c,v 1.139 2019/12/27 09:45:26 msaitoh Exp $
  *
  * //depot/aic7xxx/aic7xxx/aic7xxx.c#112 $
  *
@@ -50,7 +50,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.138 2019/12/27 09:18:00 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.139 2019/12/27 09:45:26 msaitoh Exp $");
 
 #include <dev/ic/aic7xxx_osm.h>
 #include <dev/ic/aic7xxx_inline.h>
@@ -1165,7 +1165,7 @@
                /*
                 * Although the driver does not care about the
                 * 'Selection in Progress' status bit, the busy
-                * LED does.  SELINGO is only cleared by a sucessfull
+                * LED does.  SELINGO is only cleared by a successful
                 * selection, so we must manually clear it to insure
                 * the LED turns off just incase no future successful
                 * selections occur (e.g. no devices on the bus).
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/dev/ppbus/ppbus_conf.c
--- a/sys/dev/ppbus/ppbus_conf.c        Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/dev/ppbus/ppbus_conf.c        Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ppbus_conf.c,v 1.20 2012/10/27 17:18:37 chs Exp $ */
+/* $NetBSD: ppbus_conf.c,v 1.21 2019/12/27 09:45:27 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 1997, 1998, 1999 Nicolas Souchu
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ppbus_conf.c,v 1.20 2012/10/27 17:18:37 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppbus_conf.c,v 1.21 2019/12/27 09:45:27 msaitoh Exp $");
 
 #include "opt_ppbus.h"
 #include "opt_ppbus_1284.h"
@@ -144,7 +144,7 @@
        ppbus->sc_1284_state = PPBUS_FORWARD_IDLE;
        ppbus->sc_1284_error = PPBUS_NO_ERROR;
 
-       /* Record device's sucessful attachment */
+       /* Record device's successful attachment */
        ppbus->sc_dev_ok = PPBUS_OK;
 
 #ifndef DONTPROBE_1284
diff -r 95ce41fd3b93 -r 2b3a79f093fc sys/stand/efiboot/smbios.c
--- a/sys/stand/efiboot/smbios.c        Fri Dec 27 09:41:48 2019 +0000
+++ b/sys/stand/efiboot/smbios.c        Fri Dec 27 09:45:26 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: smbios.c,v 1.1 2019/11/30 13:02:18 jmcneill Exp $      */
+/*     $NetBSD: smbios.c,v 1.2 2019/12/27 09:45:27 msaitoh Exp $       */
 
 /*
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -82,7 +82,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.1 2019/11/30 13:02:18 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: smbios.c,v 1.2 2019/12/27 09:45:27 msaitoh Exp $");
 
 #include <sys/param.h>
 
@@ -108,7 +108,7 @@
 /*
  * smbios_find_table() takes a caller supplied smbios struct type and
  * a pointer to a handle (struct smbtable) returning one if the structure
- * is sucessfully located and zero otherwise. Callers should take care
+ * is successfully located and zero otherwise. Callers should take care
  * to initilize the cookie field of the smbtable structure to zero before
  * the first invocation of this function.
  * Multiple tables of the same type can be located by repeadtly calling
diff -r 95ce41fd3b93 -r 2b3a79f093fc usr.bin/vmstat/vmstat.c
--- a/usr.bin/vmstat/vmstat.c   Fri Dec 27 09:41:48 2019 +0000
+++ b/usr.bin/vmstat/vmstat.c   Fri Dec 27 09:45:26 2019 +0000



Home | Main Index | Thread Index | Old Index