svn commit: r336280 - head/sys/ufs/ffs

Conrad Meyer cem at FreeBSD.org
Sat Jul 14 15:45:12 UTC 2018


Author: cem
Date: Sat Jul 14 15:45:11 2018
New Revision: 336280
URL: https://svnweb.freebsd.org/changeset/base/336280

Log:
  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

Modified:
  head/sys/ufs/ffs/ffs_vnops.c

Modified: head/sys/ufs/ffs/ffs_vnops.c
==============================================================================
--- head/sys/ufs/ffs/ffs_vnops.c	Sat Jul 14 15:32:36 2018	(r336279)
+++ head/sys/ufs/ffs/ffs_vnops.c	Sat Jul 14 15:45:11 2018	(r336280)
@@ -377,10 +377,6 @@ next:
 			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);


More information about the svn-src-head mailing list