svn commit: r366985 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Sat Oct 24 01:13:16 UTC 2020


Author: mjg
Date: Sat Oct 24 01:13:16 2020
New Revision: 366985
URL: https://svnweb.freebsd.org/changeset/base/366985

Log:
  cache: fix some typos

Modified:
  head/sys/kern/vfs_cache.c

Modified: head/sys/kern/vfs_cache.c
==============================================================================
--- head/sys/kern/vfs_cache.c	Sat Oct 24 01:13:02 2020	(r366984)
+++ head/sys/kern/vfs_cache.c	Sat Oct 24 01:13:16 2020	(r366985)
@@ -305,7 +305,7 @@ SYSCTL_ULONG(_vfs_cache_param, OID_AUTO, negfactor, CT
     "Ratio of negative namecache entries");
 
 /*
- * Negative entry % of namecahe capacity above which automatic eviction is allowed.
+ * Negative entry % of namecache capacity above which automatic eviction is allowed.
  *
  * Check cache_neg_evict_cond for details.
  */
@@ -750,7 +750,7 @@ sysctl_negminpct(SYSCTL_HANDLER_ARGS)
 
 SYSCTL_PROC(_vfs_cache_param, OID_AUTO, negminpct,
     CTLTYPE_INT | CTLFLAG_MPSAFE | CTLFLAG_RW, NULL, 0, sysctl_negminpct,
-    "I", "Negative entry \% of namecahe capacity above which automatic eviction is allowed");
+    "I", "Negative entry \% of namecache capacity above which automatic eviction is allowed");
 
 #ifdef DIAGNOSTIC
 /*


More information about the svn-src-head mailing list