diff options
-rw-r--r-- | utils/mount/mount.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/mount/mount.c b/utils/mount/mount.c index 403d6f4..839a329 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -136,6 +136,10 @@ static const struct opt_map opt_map[] = { { "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 } }; |