From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32358 invoked by alias); 5 Jun 2009 15:25:48 -0000 Received: (qmail 32342 invoked by alias); 5 Jun 2009 15:25:48 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bastion2.fedora.phx.redhat.com Subject: gfs2-utils: master - libgfs2: Use -o meta rather than gfs2meta fs type To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: gfs2-utils.git X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 0a50d9f93327d506868856d43f0350975c6e5b84 X-Git-Newrev: 1bbc8aa0eb4afd4fb01ccca17266576152bba004 From: Steven Whitehouse Message-Id: <20090605152520.1E3F71201BC@lists.fedorahosted.org> Date: Fri, 05 Jun 2009 15:25:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2009-q2/txt/msg00468.txt.bz2 Gitweb: http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=1bbc8aa0eb4afd4fb01ccca17266576152bba004 Commit: 1bbc8aa0eb4afd4fb01ccca17266576152bba004 Parent: 0a50d9f93327d506868856d43f0350975c6e5b84 Author: Steven Whitehouse AuthorDate: Fri Jun 5 15:17:37 2009 +0100 Committer: Steven Whitehouse CommitterDate: Fri Jun 5 15:17:37 2009 +0100 libgfs2: Use -o meta rather than gfs2meta fs type This moved the tools onto the more modern method of mounting the meta fs. Signed-off-by: Steven Whitehouse --- gfs2/libgfs2/misc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gfs2/libgfs2/misc.c b/gfs2/libgfs2/misc.c index ae30725..0d831d3 100644 --- a/gfs2/libgfs2/misc.c +++ b/gfs2/libgfs2/misc.c @@ -180,7 +180,7 @@ int mount_gfs2_meta(struct gfs2_sbd *sdp) if(!mkdtemp(sdp->metafs_path)) return -1; - ret = mount(sdp->path_name, sdp->metafs_path, "gfs2meta", 0, NULL); + ret = mount(sdp->path_name, sdp->metafs_path, "gfs2", 0, "meta"); if (ret) { rmdir(sdp->metafs_path); return -1;