This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gfs2-utils: master - The mount -o remount option failed due to newrelatime option


Gitweb:        http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=37933701519ee6efd4259214bc717e978e135510
Commit:        37933701519ee6efd4259214bc717e978e135510
Parent:        22a5586fdee349775822cf64bc7580c1c6e94713
Author:        Bob Peterson <rpeterso@redhat.com>
AuthorDate:    Thu Aug 20 10:47:02 2009 -0500
Committer:     Bob Peterson <rpeterso@redhat.com>
CommitterDate: Thu Aug 20 10:57:55 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 <device> on <mntpt>: 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 cb1a860..42cd8f0 100644
--- a/gfs2/mount/util.c
+++ b/gfs2/mount/util.c
@@ -92,6 +92,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	 }
 };
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]