diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-09-09 18:15:56 +0800 |
---|---|---|
committer | Dave Kleikamp <dave.kleikamp@oracle.com> | 2018-09-10 15:36:40 -0500 |
commit | 02645bcdfcc2d51f79d87ad346f07ef64ad1ea55 (patch) | |
tree | 7622e18f22843ace09677ea1c91faa540cfb309e | |
parent | e8d4ceeb34a58d47cc031ec023d61198ec8c4a80 (diff) | |
download | linux-next-02645bcdfcc2d51f79d87ad346f07ef64ad1ea55.tar.gz |
jfs: remove quota option from ignore list
We treat quota option as usrquota, so remove quota option from ignore
list.
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
-rw-r--r-- | fs/jfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 09da5cf14e27..65d8fc87ab11 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -247,7 +247,7 @@ static const match_table_t tokens = { {Opt_resize_nosize, "resize"}, {Opt_errors, "errors=%s"}, {Opt_ignore, "noquota"}, - {Opt_ignore, "quota"}, + {Opt_quota, "quota"}, {Opt_usrquota, "usrquota"}, {Opt_grpquota, "grpquota"}, {Opt_uid, "uid=%u"}, |