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

Konstantin Belousov kib at FreeBSD.org
Wed Mar 28 14:16:16 UTC 2012


Author: kib
Date: Wed Mar 28 14:16:15 2012
New Revision: 233610
URL: http://svn.freebsd.org/changeset/base/233610

Log:
  Do trivial reformatting of the comment to record the missed commit
  message for r233609:
  Restore the writes of atimes, quotas and superblock from syncer vnode.
  
  Noted by:   rdivacky

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

Modified: head/sys/ufs/ffs/ffs_vfsops.c
==============================================================================
--- head/sys/ufs/ffs/ffs_vfsops.c	Wed Mar 28 14:06:47 2012	(r233609)
+++ head/sys/ufs/ffs/ffs_vfsops.c	Wed Mar 28 14:16:15 2012	(r233610)
@@ -1443,10 +1443,9 @@ ffs_sync_lazy(mp)
 		/*
 		 * The IN_ACCESS flag is converted to IN_MODIFIED by
 		 * ufs_close() and ufs_getattr() by the calls to
-		 * ufs_itimes_locked(), without subsequent
-		 * UFS_UPDATE().  Test also all the other timestamp
-		 * flags too, to pick up any other cases that could be
-		 * missed.
+		 * ufs_itimes_locked(), without subsequent UFS_UPDATE().
+		 * Test also all the other timestamp flags too, to pick up
+		 * any other cases that could be missed.
 		 */
 		if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED |
 		    IN_UPDATE)) == 0) {


More information about the svn-src-head mailing list