ffs_syncvnode: Remove unhelpful print

It can occur during ordinary use of softupdates, or perhaps if writes to the
underlying media fail (causing bufs to be redirtied).  Either way, it is not
particularly actionable.

Reviewed by:	imp, kib
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D16258
This commit is contained in:
Conrad Meyer 2018-07-14 15:45:11 +00:00
parent 32ece669c2
commit 9c9c01e43b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336280

View File

@ -377,10 +377,6 @@ ffs_syncvnode(struct vnode *vp, int waitfor, int flags)
wait = !wait;
if (wait || ++passes < UFS_NIADDR + 2)
goto loop;
#ifdef INVARIANTS
if (!vn_isdisk(vp, NULL))
vn_printf(vp, "ffs_fsync: dirty ");
#endif
}
}
BO_UNLOCK(bo);