diff options
| author | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-08-30 12:30:11 +0000 |
|---|---|---|
| committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-08-30 12:30:11 +0000 |
| commit | 94799b3ff39617722fee808bb100f149c9df9edf (patch) | |
| tree | 9f8a320b4e67b48230fd3fefe26f9bb279c7aba9 | |
| parent | 6fe856b977412f8adbbb6620fb5dfb2eeca7e062 (diff) | |
Notes
| -rw-r--r-- | sys/ufs/ffs/ffs_alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index a92727b67512..76372b4a7a96 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -523,10 +523,12 @@ ffs_reallocblks(ap) dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize); buflist->bs_children[i]->b_blkno = fsbtodb(fs, blkno); -#ifdef DEBUG +#ifdef DIAGNOSTIC if (!ffs_checkblk(ip, dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize)) panic("ffs_reallocblks: unallocated block 3"); +#endif +#ifdef DEBUG if (prtrealloc) printf(" %d,", blkno); #endif |
