From owner-svn-src-stable-9@FreeBSD.ORG Thu Oct 25 03:24:24 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA998D05; Thu, 25 Oct 2012 03:24:24 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B1A258FC08; Thu, 25 Oct 2012 03:24:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9P3OOR6060827; Thu, 25 Oct 2012 03:24:24 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9P3OOuE060825; Thu, 25 Oct 2012 03:24:24 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210250324.q9P3OOuE060825@svn.freebsd.org> From: Eitan Adler Date: Thu, 25 Oct 2012 03:24:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r242051 - stable/9/sbin/dumpfs X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 03:24:24 -0000 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 */