summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2004-10-04 12:03:46 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2004-10-04 12:03:46 +0000
commit53889606dd7dbb60b1e4e740fa4c33bb0532c3df (patch)
treee018395a8bbe2ede81697ea83a3d34ca85b8b129
parentb06e24ba496f53b794db7e570e734c9e8f5a3ce5 (diff)
cacheing -> caching
-rw-r--r--sys/kern/kern_proc.c4
-rw-r--r--sys/kern/vfs_cache.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c
index 5520ee24113..93a576831e4 100644
--- a/sys/kern/kern_proc.c
+++ b/sys/kern/kern_proc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_proc.c,v 1.21 2004/07/25 20:50:51 tedu Exp $ */
+/* $OpenBSD: kern_proc.c,v 1.22 2004/10/04 12:03:45 pedro Exp $ */
/* $NetBSD: kern_proc.c,v 1.14 1996/02/09 18:59:41 christos Exp $ */
/*
@@ -50,7 +50,7 @@
#include <sys/pool.h>
/*
- * Structure associated with user cacheing.
+ * Structure associated with user caching.
*/
struct uidinfo {
LIST_ENTRY(uidinfo) ui_hash;
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c
index 8d139b51be3..1e5fb1924ee 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_cache.c,v 1.11 2003/06/02 23:28:07 millert Exp $ */
+/* $OpenBSD: vfs_cache.c,v 1.12 2004/10/04 12:03:45 pedro Exp $ */
/* $NetBSD: vfs_cache.c,v 1.13 1996/02/04 02:18:09 christos Exp $ */
/*
@@ -62,7 +62,7 @@
*/
/*
- * Structures associated with name cacheing.
+ * Structures associated with name caching.
*/
LIST_HEAD(nchashhead, namecache) *nchashtbl;
u_long nchash; /* size of hash table - 1 */
@@ -88,7 +88,7 @@ u_long nextvnodeid;
* the name. If the lookup succeeds, the vnode is returned in ni_vp
* and a status of 0 is returned. If the locking fails for whatever
* reason, the vnode is unlocked and the error is returned to caller.
- * If the lookup determines that the name does not exist (negative cacheing),
+ * If the lookup determines that the name does not exist (negative caching),
* a status of ENOENT is returned. If the lookup fails, a status of -1
* is returned.
*/