summaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2022-01-11 03:14:00 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2022-01-11 03:14:00 +0000
commit2067614a860a05b016f15a7a3c06ed8672da778e (patch)
tree3f9fef36b635f840e8619afec0142b449dae633f /sys/ufs
parent9377443ef864cd8ecd3112c5118356e43f4a7b9f (diff)
spelling
ok jmc@
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ext2fs/ext2fs_lookup.c4
-rw-r--r--sys/ufs/ffs/fs.h4
-rw-r--r--sys/ufs/ufs/dirhash.h4
-rw-r--r--sys/ufs/ufs/ufs_lookup.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_lookup.c b/sys/ufs/ext2fs/ext2fs_lookup.c
index d77f4a3f298..36e182465c5 100644
--- a/sys/ufs/ext2fs/ext2fs_lookup.c
+++ b/sys/ufs/ext2fs/ext2fs_lookup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_lookup.c,v 1.45 2021/03/11 13:31:35 jsg Exp $ */
+/* $OpenBSD: ext2fs_lookup.c,v 1.46 2022/01/11 03:13:59 jsg Exp $ */
/* $NetBSD: ext2fs_lookup.c,v 1.16 2000/08/03 20:29:26 thorpej Exp $ */
/*
@@ -264,7 +264,7 @@ ext2fs_lookup(void *v)
wantparent = flags & (LOCKPARENT|WANTPARENT);
/*
- * Check accessiblity of directory.
+ * Check accessibility of directory.
*/
if ((error = VOP_ACCESS(vdp, VEXEC, cred, cnp->cn_proc)) != 0)
return (error);
diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h
index 059450ed95e..10e89cfd913 100644
--- a/sys/ufs/ffs/fs.h
+++ b/sys/ufs/ffs/fs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fs.h,v 1.43 2020/06/20 07:49:04 otto Exp $ */
+/* $OpenBSD: fs.h,v 1.44 2022/01/11 03:13:59 jsg Exp $ */
/* $NetBSD: fs.h,v 1.6 1995/04/12 21:21:02 mycroft Exp $ */
/*
@@ -73,7 +73,7 @@
* Addresses stored in inodes are capable of addressing fragments
* of `blocks'. File system blocks of at most size MAXBSIZE can
* be optionally broken into 2, 4, or 8 pieces, each of which is
- * addressible; these pieces may be DEV_BSIZE, or some multiple of
+ * addressable; these pieces may be DEV_BSIZE, or some multiple of
* a DEV_BSIZE unit.
*
* Large files consist of exclusively large data blocks. To avoid
diff --git a/sys/ufs/ufs/dirhash.h b/sys/ufs/ufs/dirhash.h
index 63960b69b4d..1bb235894da 100644
--- a/sys/ufs/ufs/dirhash.h
+++ b/sys/ufs/ufs/dirhash.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dirhash.h,v 1.7 2021/03/11 13:31:36 jsg Exp $ */
+/* $OpenBSD: dirhash.h,v 1.8 2022/01/11 03:13:59 jsg Exp $ */
/*
* Copyright (c) 2001 Ian Dowse. All rights reserved.
*
@@ -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 --git a/sys/ufs/ufs/ufs_lookup.c b/sys/ufs/ufs/ufs_lookup.c
index 6f0d6dcaed9..3cf88f30152 100644
--- a/sys/ufs/ufs/ufs_lookup.c
+++ b/sys/ufs/ufs/ufs_lookup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ufs_lookup.c,v 1.58 2020/10/09 08:20:46 mpi Exp $ */
+/* $OpenBSD: ufs_lookup.c,v 1.59 2022/01/11 03:13:59 jsg Exp $ */
/* $NetBSD: ufs_lookup.c,v 1.7 1996/02/09 22:36:06 christos Exp $ */
/*
@@ -141,7 +141,7 @@ ufs_lookup(void *v)
wantparent = flags & (LOCKPARENT|WANTPARENT);
/*
- * Check accessiblity of directory.
+ * Check accessibility of directory.
*/
if ((DIP(dp, mode) & IFMT) != IFDIR)
return (ENOTDIR);