svn commit: r215112 - head/sys/ufs/ffs

Konstantin Belousov kib at FreeBSD.org
Thu Nov 11 11:26:59 UTC 2010


Author: kib
Date: Thu Nov 11 11:26:59 2010
New Revision: 215112
URL: http://svn.freebsd.org/changeset/base/215112

Log:
  Fix typo. Function is called ffs_blkfree.

Modified:
  head/sys/ufs/ffs/ffs_softdep.c

Modified: head/sys/ufs/ffs/ffs_softdep.c
==============================================================================
--- head/sys/ufs/ffs/ffs_softdep.c	Thu Nov 11 08:15:12 2010	(r215111)
+++ head/sys/ufs/ffs/ffs_softdep.c	Thu Nov 11 11:26:59 2010	(r215112)
@@ -5488,7 +5488,7 @@ cancel_allocdirect(adphead, adp, freeblk
 	newblk = (struct newblk *)adp;
 	/*
 	 * If the journal hasn't been written the jnewblk must be passed
-	 * to the call to ffs_freeblk that reclaims the space.  We accomplish
+	 * to the call to ffs_blkfree that reclaims the space.  We accomplish
 	 * this by linking the journal dependency into the freework to be
 	 * freed when freework_freeblock() is called.  If the journal has
 	 * been written we can simply reclaim the journal space when the
@@ -6273,7 +6273,7 @@ cancel_allocindir(aip, inodedep, freeblk
 
 	/*
 	 * If the journal hasn't been written the jnewblk must be passed
-	 * to the call to ffs_freeblk that reclaims the space.  We accomplish
+	 * to the call to ffs_blkfree that reclaims the space.  We accomplish
 	 * this by linking the journal dependency into the indirdep to be
 	 * freed when indir_trunc() is called.  If the journal has already
 	 * been written we can simply reclaim the journal space when the


More information about the svn-src-all mailing list