diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-09-05 14:13:12 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-09-05 14:13:12 +0000 |
| commit | 0375c9f2b8da45ea302124b97c1eedd91064c49d (patch) | |
| tree | 9e649e64de7f2336f9e8fcb99e532d8f1624086f /sys/ufs | |
| parent | a8b8bc073081a4518546a5adbb50db5493c120a8 (diff) | |
Notes
Diffstat (limited to 'sys/ufs')
| -rw-r--r-- | sys/ufs/ffs/ffs_alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 6a57a2652317..e73638d1c106 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_alloc.c 8.18 (Berkeley) 5/26/95 - * $Id: ffs_alloc.c,v 1.50 1998/07/11 07:46:04 bde Exp $ + * $Id: ffs_alloc.c,v 1.51 1998/08/17 19:09:36 bde Exp $ */ #include "opt_quota.h" @@ -1300,6 +1300,7 @@ ffs_blkfree(ip, bno, size) int i, error, cg, blk, frags, bbase; fs = ip->i_fs; + VOP_FREEBLKS(ip->i_devvp, fsbtodb(fs, bno), size); if ((u_int)size > fs->fs_bsize || fragoff(fs, size) != 0 || fragnum(fs, bno) + numfrags(fs, size) > fs->fs_frag) { printf("dev=0x%lx, bno = %d, bsize = %d, size = %ld, fs = %s\n", |
