diff options
author | kib <kib@FreeBSD.org> | 2010-11-11 11:26:59 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2010-11-11 11:26:59 +0000 |
commit | 57488f7bec4f78caa44c6ca4996fadd288d89bfb (patch) | |
tree | 47f1d94d989f1675ea68e91b8f1e00a1270dbb87 /sys/ufs | |
parent | 92dd16e4dd03a9b4d1d698562ed22e473eb9cfa3 (diff) | |
download | FreeBSD-src-57488f7bec4f78caa44c6ca4996fadd288d89bfb.zip FreeBSD-src-57488f7bec4f78caa44c6ca4996fadd288d89bfb.tar.gz |
Fix typo. Function is called ffs_blkfree.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/ffs_softdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_softdep.c b/sys/ufs/ffs/ffs_softdep.c index ca4ea0b..90534fb 100644 --- a/sys/ufs/ffs/ffs_softdep.c +++ b/sys/ufs/ffs/ffs_softdep.c @@ -5488,7 +5488,7 @@ cancel_allocdirect(adphead, adp, freeblks, delay) 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, freeblks) /* * 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 |