X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmount%2Fmount.c;h=839a3296214ac654aa5738bc33f004ba5003dc31;hp=ea47cb48e4e17e3bebf0d44983efc77c127a92d4;hb=00511ee5c97793fa8bf3f463ac07cbb4029ca149;hpb=abb00ff7cff3c6540978d9b463dee3d4fdda15f4 diff --git a/utils/mount/mount.c b/utils/mount/mount.c index ea47cb4..839a329 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -130,6 +130,16 @@ static const struct opt_map opt_map[] = { { "diratime", 0, 1, MS_NODIRATIME }, /* Update dir access times */ { "nodiratime", 0, 0, MS_NODIRATIME },/* Do not update dir access times */ #endif +#ifdef MS_RELATIME + { "relatime", 0, 0, MS_RELATIME }, /* Update access times relative to + mtime/ctime */ + { "norelatime", 0, 1, MS_RELATIME }, /* Update access time without regard + to mtime/ctime */ +#endif + { "noquota", 0, 0, MS_DUMMY }, /* Don't enforce quota */ + { "quota", 0, 0, MS_DUMMY }, /* Enforce user quota */ + { "usrquota", 0, 0, MS_DUMMY }, /* Enforce user quota */ + { "grpquota", 0, 0, MS_DUMMY }, /* Enforce group quota */ { NULL, 0, 0, 0 } };