From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31844 invoked by alias); 20 Aug 2009 15:49:40 -0000 Received: (qmail 31835 invoked by alias); 20 Aug 2009 15:49:40 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Status: No, hits=-1.4 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: cluster: STABLE3 - The mount -o remount option failed due to new relatime option To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: cluster.git X-Git-Refname: refs/heads/STABLE3 X-Git-Reftype: branch X-Git-Oldrev: 6c4b0ee0886d6105fe8e5ead2db4e192cbc9e20e X-Git-Newrev: 9c8bb17e28ed82886ee837549e4c84196fb7957c From: Bob Peterson Message-Id: <20090820154912.CFDCF1201E7@lists.fedorahosted.org> Date: Thu, 20 Aug 2009 15:49:00 -0000 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 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-q3/txt/msg00228.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=9c8bb17e28ed82886ee837549e4c84196fb7957c Commit: 9c8bb17e28ed82886ee837549e4c84196fb7957c Parent: 6c4b0ee0886d6105fe8e5ead2db4e192cbc9e20e Author: Bob Peterson AuthorDate: Thu Aug 20 10:47:02 2009 -0500 Committer: Bob Peterson CommitterDate: Thu Aug 20 10:47:02 2009 -0500 The mount -o remount option failed due to new relatime option The relatively new "relatime" mount option was not understood as a valid mount option by the gfs2 mount helper (and not passed up to the gfs2 kernel module). Therefore all attempts to remount a gfs2 file system resulted in: error mounting on : Invalid argument with the following dmesg: GFS2: fsid=bob:test.0: invalid mount option: relatime --- gfs2/mount/util.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gfs2/mount/util.c b/gfs2/mount/util.c index fad4032..16fc382 100644 --- a/gfs2/mount/util.c +++ b/gfs2/mount/util.c @@ -90,6 +90,7 @@ static struct opt_map opt_map[] = { { "owner", 0, 0, 0 }, /* Let the owner of the device mount */ { "noowner", 0, 1, 0 }, /* Device owner has no special privs */ { "_netdev", 0, 0, 0 }, /* Network device required (netfs) */ + { "relatime", 0, 1, 0 }, /* Update atime relative to mtime/ctime. */ { NULL, 0, 0, 0 } };