summaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_softdep.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/ufs/ffs/ffs_softdep.c b/sys/ufs/ffs/ffs_softdep.c
index 9e347cf6f38a..8ed68c329524 100644
--- a/sys/ufs/ffs/ffs_softdep.c
+++ b/sys/ufs/ffs/ffs_softdep.c
@@ -6024,11 +6024,12 @@ handle_complete_freeblocks(freeblks)
vput(vp);
}
- KASSERT(freeblks->fb_chkcnt == 0 ||
- ((fs->fs_flags & FS_UNCLEAN) != 0 && (flags & LK_NOWAIT) == 0),
- ("handle_workitem_freeblocks: inode %ju block count %jd\n",
- (uintmax_t)freeblks->fb_previousinum,
- (intmax_t)freeblks->fb_chkcnt));
+ if (!(freeblks->fb_chkcnt == 0 ||
+ ((fs->fs_flags & FS_UNCLEAN) != 0 && (flags & LK_NOWAIT) == 0)))
+ printf(
+ "handle_workitem_freeblocks: inode %ju block count %jd\n",
+ (uintmax_t)freeblks->fb_previousinum,
+ (intmax_t)freeblks->fb_chkcnt);
ACQUIRE_LOCK(&lk);
/*