diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2020-05-14 16:44:25 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2020-05-14 16:44:25 +0200 |
commit | 55923e4d7d195a34d3b1faaba57a5a6551e88b36 (patch) | |
tree | 8ee2399094c06545e7f0e66e7a253816d89d9f87 /fs/fs_context.c | |
parent | caaef1ba8c9ee7a54b53dd8bf4bb7e8658185583 (diff) | |
download | linux-55923e4d7d195a34d3b1faaba57a5a6551e88b36.tar.bz2 |
vfs: don't parse "silent" option
Parsing "silent" and clearing SB_SILENT makes zero sense.
Parsing "silent" and setting SB_SILENT would make a bit more sense, but
apparently nobody cares.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/fs_context.c')
-rw-r--r-- | fs/fs_context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/fs_context.c b/fs/fs_context.c index 82019569d493..7d5c5dd2b1d5 100644 --- a/fs/fs_context.c +++ b/fs/fs_context.c @@ -52,7 +52,6 @@ static const struct constant_table common_clear_sb_flag[] = { { "nolazytime", SB_LAZYTIME }, { "nomand", SB_MANDLOCK }, { "rw", SB_RDONLY }, - { "silent", SB_SILENT }, { }, }; |