svn commit: r206671 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Thu Apr 15 17:17:03 UTC 2010


Author: kib
Date: Thu Apr 15 17:17:02 2010
New Revision: 206671
URL: http://svn.freebsd.org/changeset/base/206671

Log:
  Fix typo.
  
  MFC after:	3 days

Modified:
  head/sys/kern/vfs_cache.c

Modified: head/sys/kern/vfs_cache.c
==============================================================================
--- head/sys/kern/vfs_cache.c	Thu Apr 15 17:10:46 2010	(r206670)
+++ head/sys/kern/vfs_cache.c	Thu Apr 15 17:17:02 2010	(r206671)
@@ -610,7 +610,7 @@ cache_enter(dvp, vp, cnp)
 
 	CTR3(KTR_VFS, "cache_enter(%p, %p, %s)", dvp, vp, cnp->cn_nameptr);
 	VNASSERT(vp == NULL || (vp->v_iflag & VI_DOOMED) == 0, vp,
-	    ("cahe_enter: Adding a doomed vnode"));
+	    ("cache_enter: Adding a doomed vnode"));
 
 	if (!doingcache)
 		return;


More information about the svn-src-head mailing list