svn commit: r242051 - stable/9/sbin/dumpfs

Eitan Adler eadler at FreeBSD.org
Thu Oct 25 03:24:24 UTC 2012


Author: eadler
Date: Thu Oct 25 03:24:24 2012
New Revision: 242051
URL: http://svn.freebsd.org/changeset/base/242051

Log:
  MFC r241842:
  	Add support for gjournal to dumpfs
  
  PR:		165821
  Approved by:	cperciva (implicit)

Modified:
  stable/9/sbin/dumpfs/dumpfs.c
Directory Properties:
  stable/9/sbin/dumpfs/   (props changed)

Modified: stable/9/sbin/dumpfs/dumpfs.c
==============================================================================
--- stable/9/sbin/dumpfs/dumpfs.c	Thu Oct 25 03:21:46 2012	(r242050)
+++ stable/9/sbin/dumpfs/dumpfs.c	Thu Oct 25 03:24:24 2012	(r242051)
@@ -419,6 +419,8 @@ marshal(const char *name)
 	/* -i is dumb */
 	if (fs->fs_flags & FS_SUJ)
 		printf("-j ");
+	if (fs->fs_flags & FS_GJOURNAL)
+		printf("-J ");
 	/* -k..l unimplemented */
 	printf("-m %d ", fs->fs_minfree);
 	/* -n unimplemented */


More information about the svn-src-all mailing list