Module Name:    src
Committed By:   andvar
Date:           Sat Aug  6 18:26:43 UTC 2022

Modified Files:
        src/sys/fs/adosfs: adlookup.c
        src/sys/fs/cd9660: cd9660_lookup.c
        src/sys/fs/efs: efs_vnops.c
        src/sys/fs/filecorefs: filecore_lookup.c
        src/sys/fs/hfs: hfs_vnops.c
        src/sys/fs/msdosfs: msdosfs_lookup.c
        src/sys/netinet: sctp_usrreq.c
        src/sys/ufs/ext2fs: ext2fs_lookup.c
        src/sys/ufs/lfs: ulfs_lookup.c
        src/sys/ufs/ufs: ufs_lookup.c
        src/tests/dev/audio: audiotest.c
        src/usr.bin/ftp: util.c
        src/usr.bin/mail: complete.c
        src/usr.sbin/cpuctl/arch: arm.c

Log Message:
s/blity/bility/ in various words, mainly in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/fs/adosfs/adlookup.c
cvs rdiff -u -r1.31 -r1.32 src/sys/fs/cd9660/cd9660_lookup.c
cvs rdiff -u -r1.43 -r1.44 src/sys/fs/efs/efs_vnops.c
cvs rdiff -u -r1.21 -r1.22 src/sys/fs/filecorefs/filecore_lookup.c
cvs rdiff -u -r1.39 -r1.40 src/sys/fs/hfs/hfs_vnops.c
cvs rdiff -u -r1.40 -r1.41 src/sys/fs/msdosfs/msdosfs_lookup.c
cvs rdiff -u -r1.21 -r1.22 src/sys/netinet/sctp_usrreq.c
cvs rdiff -u -r1.91 -r1.92 src/sys/ufs/ext2fs/ext2fs_lookup.c
cvs rdiff -u -r1.46 -r1.47 src/sys/ufs/lfs/ulfs_lookup.c
cvs rdiff -u -r1.155 -r1.156 src/sys/ufs/ufs/ufs_lookup.c
cvs rdiff -u -r1.22 -r1.23 src/tests/dev/audio/audiotest.c
cvs rdiff -u -r1.163 -r1.164 src/usr.bin/ftp/util.c
cvs rdiff -u -r1.24 -r1.25 src/usr.bin/mail/complete.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/cpuctl/arch/arm.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/fs/adosfs/adlookup.c
diff -u src/sys/fs/adosfs/adlookup.c:1.21 src/sys/fs/adosfs/adlookup.c:1.22
--- src/sys/fs/adosfs/adlookup.c:1.21	Fri Jan 17 20:08:07 2020
+++ src/sys/fs/adosfs/adlookup.c	Sat Aug  6 18:26:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: adlookup.c,v 1.21 2020/01/17 20:08:07 ad Exp $	*/
+/*	$NetBSD: adlookup.c,v 1.22 2022/08/06 18:26:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: adlookup.c,v 1.21 2020/01/17 20:08:07 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: adlookup.c,v 1.22 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -96,7 +96,7 @@ adosfs_lookup(void *v)
 	nocache = 0;
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0)
 		return (error);

Index: src/sys/fs/cd9660/cd9660_lookup.c
diff -u src/sys/fs/cd9660/cd9660_lookup.c:1.31 src/sys/fs/cd9660/cd9660_lookup.c:1.32
--- src/sys/fs/cd9660/cd9660_lookup.c:1.31	Sat Apr  4 20:49:30 2020
+++ src/sys/fs/cd9660/cd9660_lookup.c	Sat Aug  6 18:26:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: cd9660_lookup.c,v 1.31 2020/04/04 20:49:30 ad Exp $	*/
+/*	$NetBSD: cd9660_lookup.c,v 1.32 2022/08/06 18:26:41 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1989, 1993, 1994
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cd9660_lookup.c,v 1.31 2020/04/04 20:49:30 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cd9660_lookup.c,v 1.32 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/namei.h>
@@ -132,7 +132,7 @@ cd9660_lookup(void *v)
 	imp = dp->i_mnt;
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return (error);

Index: src/sys/fs/efs/efs_vnops.c
diff -u src/sys/fs/efs/efs_vnops.c:1.43 src/sys/fs/efs/efs_vnops.c:1.44
--- src/sys/fs/efs/efs_vnops.c:1.43	Sun Jul 18 23:56:13 2021
+++ src/sys/fs/efs/efs_vnops.c	Sat Aug  6 18:26:41 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: efs_vnops.c,v 1.43 2021/07/18 23:56:13 dholland Exp $	*/
+/*	$NetBSD: efs_vnops.c,v 1.44 2022/08/06 18:26:41 andvar Exp $	*/
 
 /*
  * Copyright (c) 2006 Stephen M. Rumble <rum...@ephemeral.org>
@@ -17,7 +17,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efs_vnops.c,v 1.43 2021/07/18 23:56:13 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efs_vnops.c,v 1.44 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -125,7 +125,7 @@ efs_check_possible(struct vnode *vp, str
 }
 
 /*
- * Determine the accessiblity of a file based on the permissions allowed by the
+ * Determine the accessibility of a file based on the permissions allowed by the
  * specified credentials.
  *
  * Returns 0 on success.

Index: src/sys/fs/filecorefs/filecore_lookup.c
diff -u src/sys/fs/filecorefs/filecore_lookup.c:1.21 src/sys/fs/filecorefs/filecore_lookup.c:1.22
--- src/sys/fs/filecorefs/filecore_lookup.c:1.21	Sat Oct  4 13:27:24 2014
+++ src/sys/fs/filecorefs/filecore_lookup.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: filecore_lookup.c,v 1.21 2014/10/04 13:27:24 hannken Exp $	*/
+/*	$NetBSD: filecore_lookup.c,v 1.22 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1989, 1993, 1994 The Regents of the University of California.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filecore_lookup.c,v 1.21 2014/10/04 13:27:24 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filecore_lookup.c,v 1.22 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/namei.h>
@@ -147,7 +147,7 @@ filecore_lookup(void *v)
 	dp = VTOI(vdp);
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return (error);

Index: src/sys/fs/hfs/hfs_vnops.c
diff -u src/sys/fs/hfs/hfs_vnops.c:1.39 src/sys/fs/hfs/hfs_vnops.c:1.40
--- src/sys/fs/hfs/hfs_vnops.c:1.39	Sun Jul 18 23:56:13 2021
+++ src/sys/fs/hfs/hfs_vnops.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: hfs_vnops.c,v 1.39 2021/07/18 23:56:13 dholland Exp $	*/
+/*	$NetBSD: hfs_vnops.c,v 1.40 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2005, 2007 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hfs_vnops.c,v 1.39 2021/07/18 23:56:13 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hfs_vnops.c,v 1.40 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ipsec.h"
@@ -343,7 +343,7 @@ hfs_vop_lookup(void *v)
 
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return error;

Index: src/sys/fs/msdosfs/msdosfs_lookup.c
diff -u src/sys/fs/msdosfs/msdosfs_lookup.c:1.40 src/sys/fs/msdosfs/msdosfs_lookup.c:1.41
--- src/sys/fs/msdosfs/msdosfs_lookup.c:1.40	Sat Oct 23 16:58:17 2021
+++ src/sys/fs/msdosfs/msdosfs_lookup.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: msdosfs_lookup.c,v 1.40 2021/10/23 16:58:17 thorpej Exp $	*/
+/*	$NetBSD: msdosfs_lookup.c,v 1.41 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*-
  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -52,7 +52,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.40 2021/10/23 16:58:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.41 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 
@@ -140,7 +140,7 @@ msdosfs_lookup(void *v)
 #endif
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cnp->cn_cred)) != 0)
 		return (error);

Index: src/sys/netinet/sctp_usrreq.c
diff -u src/sys/netinet/sctp_usrreq.c:1.21 src/sys/netinet/sctp_usrreq.c:1.22
--- src/sys/netinet/sctp_usrreq.c:1.21	Sun May 29 10:47:40 2022
+++ src/sys/netinet/sctp_usrreq.c	Sat Aug  6 18:26:42 2022
@@ -1,5 +1,5 @@
 /*	$KAME: sctp_usrreq.c,v 1.50 2005/06/16 20:45:29 jinmei Exp $	*/
-/*	$NetBSD: sctp_usrreq.c,v 1.21 2022/05/29 10:47:40 andvar Exp $	*/
+/*	$NetBSD: sctp_usrreq.c,v 1.22 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc.
@@ -33,7 +33,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sctp_usrreq.c,v 1.21 2022/05/29 10:47:40 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sctp_usrreq.c,v 1.22 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -370,7 +370,7 @@ sctp_notify(struct sctp_inpcb *inp,
 	    (errno == ENOPROTOOPT)	/* SCTP is not present on host */
 		) {
 		/*
-		 * Hmm reachablity problems we must examine closely.
+		 * Hmm reachability problems we must examine closely.
 		 * If its not reachable, we may have lost a network.
 		 * Or if there is NO protocol at the other end named SCTP.
 		 * well we consider it a OOTB abort.

Index: src/sys/ufs/ext2fs/ext2fs_lookup.c
diff -u src/sys/ufs/ext2fs/ext2fs_lookup.c:1.91 src/sys/ufs/ext2fs/ext2fs_lookup.c:1.92
--- src/sys/ufs/ext2fs/ext2fs_lookup.c:1.91	Sat May 16 18:31:53 2020
+++ src/sys/ufs/ext2fs/ext2fs_lookup.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ext2fs_lookup.c,v 1.91 2020/05/16 18:31:53 christos Exp $	*/
+/*	$NetBSD: ext2fs_lookup.c,v 1.92 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*
  * Modified for NetBSD 1.2E
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ext2fs_lookup.c,v 1.91 2020/05/16 18:31:53 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ext2fs_lookup.c,v 1.92 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -313,7 +313,7 @@ ext2fs_lookup(void *v)
 	*vpp = NULL;
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return error;

Index: src/sys/ufs/lfs/ulfs_lookup.c
diff -u src/sys/ufs/lfs/ulfs_lookup.c:1.46 src/sys/ufs/lfs/ulfs_lookup.c:1.47
--- src/sys/ufs/lfs/ulfs_lookup.c:1.46	Sat Sep  5 02:55:38 2020
+++ src/sys/ufs/lfs/ulfs_lookup.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ulfs_lookup.c,v 1.46 2020/09/05 02:55:38 riastradh Exp $	*/
+/*	$NetBSD: ulfs_lookup.c,v 1.47 2022/08/06 18:26:42 andvar Exp $	*/
 /*  from NetBSD: ufs_lookup.c,v 1.135 2015/07/11 11:04:48 mlelstv  */
 
 /*
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ulfs_lookup.c,v 1.46 2020/09/05 02:55:38 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ulfs_lookup.c,v 1.47 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_lfs.h"
@@ -162,7 +162,7 @@ ulfs_lookup(void *v)
 	endsearch = 0; /* silence compiler warning */
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return (error);

Index: src/sys/ufs/ufs/ufs_lookup.c
diff -u src/sys/ufs/ufs/ufs_lookup.c:1.155 src/sys/ufs/ufs/ufs_lookup.c:1.156
--- src/sys/ufs/ufs/ufs_lookup.c:1.155	Sat Sep  5 02:55:39 2020
+++ src/sys/ufs/ufs/ufs_lookup.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ufs_lookup.c,v 1.155 2020/09/05 02:55:39 riastradh Exp $	*/
+/*	$NetBSD: ufs_lookup.c,v 1.156 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.155 2020/09/05 02:55:39 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.156 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ffs.h"
@@ -362,7 +362,7 @@ ufs_lookup(void *v)
 	endsearch = 0; /* silence compiler warning */
 
 	/*
-	 * Check accessiblity of directory.
+	 * Check accessibility of directory.
 	 */
 	if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
 		return (error);

Index: src/tests/dev/audio/audiotest.c
diff -u src/tests/dev/audio/audiotest.c:1.22 src/tests/dev/audio/audiotest.c:1.23
--- src/tests/dev/audio/audiotest.c:1.22	Tue May 31 08:43:16 2022
+++ src/tests/dev/audio/audiotest.c	Sat Aug  6 18:26:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: audiotest.c,v 1.22 2022/05/31 08:43:16 andvar Exp $	*/
+/*	$NetBSD: audiotest.c,v 1.23 2022/08/06 18:26:42 andvar Exp $	*/
 
 /*
  * Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.22 2022/05/31 08:43:16 andvar Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.23 2022/08/06 18:26:42 andvar Exp $");
 
 #include <errno.h>
 #include <fcntl.h>
@@ -2307,7 +2307,7 @@ DEF(rdwr_fallback_RDWR) {
 }
 
 /*
- * On full-duplex hardware, the second descriptor's readablity/writability
+ * On full-duplex hardware, the second descriptor's readability/writability
  * is not depend on the first descriptor('s open mode).
  * On half-duplex hardware, it depends on the first descriptor's open mode.
  */

Index: src/usr.bin/ftp/util.c
diff -u src/usr.bin/ftp/util.c:1.163 src/usr.bin/ftp/util.c:1.164
--- src/usr.bin/ftp/util.c:1.163	Fri Aug 27 17:35:03 2021
+++ src/usr.bin/ftp/util.c	Sat Aug  6 18:26:43 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: util.c,v 1.163 2021/08/27 17:35:03 rillig Exp $	*/
+/*	$NetBSD: util.c,v 1.164 2022/08/06 18:26:43 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997-2020 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: util.c,v 1.163 2021/08/27 17:35:03 rillig Exp $");
+__RCSID("$NetBSD: util.c,v 1.164 2022/08/06 18:26:43 andvar Exp $");
 #endif /* not lint */
 
 /*
@@ -620,7 +620,7 @@ remglob(char *argv[], int doswitch, cons
  * return value. Can't control multiple values being expanded from the
  * expression, we return only the first.
  * Returns NULL on error, or a pointer to a buffer containing the filename
- * that's the caller's responsiblity to free(3) when finished with.
+ * that's the caller's responsibility to free(3) when finished with.
  */
 char *
 globulize(const char *pattern)

Index: src/usr.bin/mail/complete.c
diff -u src/usr.bin/mail/complete.c:1.24 src/usr.bin/mail/complete.c:1.25
--- src/usr.bin/mail/complete.c:1.24	Wed Nov 10 16:42:47 2021
+++ src/usr.bin/mail/complete.c	Sat Aug  6 18:26:43 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: complete.c,v 1.24 2021/11/10 16:42:47 msaitoh Exp $	*/
+/*	$NetBSD: complete.c,v 1.25 2022/08/06 18:26:43 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997-2000,2005,2006 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: complete.c,v 1.24 2021/11/10 16:42:47 msaitoh Exp $");
+__RCSID("$NetBSD: complete.c,v 1.25 2022/08/06 18:26:43 andvar Exp $");
 #endif /* not lint */
 
 /*
@@ -200,7 +200,7 @@ mail_sl_add(StringList *sl, char *i)
  * return value. Can't control multiple values being expanded from the
  * expression, we return only the first.
  * Returns NULL on error, or a pointer to a buffer containing the filename
- * that's the caller's responsiblity to free(3) when finished with.
+ * that's the caller's responsibility to free(3) when finished with.
  */
 static char *
 globulize(const char *pattern)

Index: src/usr.sbin/cpuctl/arch/arm.c
diff -u src/usr.sbin/cpuctl/arch/arm.c:1.5 src/usr.sbin/cpuctl/arch/arm.c:1.6
--- src/usr.sbin/cpuctl/arch/arm.c:1.5	Sun Dec  5 04:25:33 2021
+++ src/usr.sbin/cpuctl/arch/arm.c	Sat Aug  6 18:26:43 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: arm.c,v 1.5 2021/12/05 04:25:33 msaitoh Exp $	*/
+/*	$NetBSD: arm.c,v 1.6 2022/08/06 18:26:43 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: arm.c,v 1.5 2021/12/05 04:25:33 msaitoh Exp $");
+__RCSID("$NetBSD: arm.c,v 1.6 2022/08/06 18:26:43 andvar Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -74,7 +74,7 @@ static const char * const id_mmfr_fieldn
 	{
 		"VMSA-Support",
 		"PMSA-Support",
-		"Outermost-Shareablity",
+		"Outermost-Shareability",
 		"Shareability-Levels",
 		"TCM-Support",
 		"Auxiliary-Registers",

Reply via email to