svn commit: r241842 - head/sbin/dumpfs
Eitan Adler
eadler at FreeBSD.org
Mon Oct 22 03:00:21 UTC 2012
Author: eadler
Date: Mon Oct 22 03:00:20 2012
New Revision: 241842
URL: http://svn.freebsd.org/changeset/base/241842
Log:
Add support for gjournal to dumpfs
PR: 165821
Submitted by: Andreas Longwitz <longwitz at incore.de>
Approved by: cperciva
MFC after: 3 days
Modified:
head/sbin/dumpfs/dumpfs.c
Modified: head/sbin/dumpfs/dumpfs.c
==============================================================================
--- head/sbin/dumpfs/dumpfs.c Mon Oct 22 03:00:15 2012 (r241841)
+++ head/sbin/dumpfs/dumpfs.c Mon Oct 22 03:00:20 2012 (r241842)
@@ -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