Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Jul 2018 15:45:11 +0000 (UTC)
From:      Conrad Meyer <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r336280 - head/sys/ufs/ffs
Message-ID:  <201807141545.w6EFjBT0000954@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807141545.w6EFjBT0000954>