diff options
author | David Sterba <dsterba@suse.com> | 2019-11-27 18:02:05 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-03-23 19:01:45 +0300 |
commit | 7e8f19e50e3ccf0608133cd76e845c282cd84a55 (patch) | |
tree | ee0adef7b8bfea380092ea5699c1d9e90539e82a /fs/btrfs/super.c | |
parent | 42c9d0b524cf9af180dcb788a938cdc4c678e8cb (diff) | |
download | linux-7e8f19e50e3ccf0608133cd76e845c282cd84a55.tar.xz |
btrfs: adjust message level for unrecognized mount option
An unrecognized option is a failure that should get user/administrator
attention, the info level is often below what gets logged, so make it
error.
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 4969fcce0704..7932d8d07cff 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -873,7 +873,7 @@ int btrfs_parse_options(struct btrfs_fs_info *info, char *options, break; #endif case Opt_err: - btrfs_info(info, "unrecognized mount option '%s'", p); + btrfs_err(info, "unrecognized mount option '%s'", p); ret = -EINVAL; goto out; default: |