diff options
author | Damien Le Moal <damien.lemoal@wdc.com> | 2016-10-28 17:45:02 +0900 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-11-23 12:11:18 -0800 |
commit | 0ab0299835738cd407569401da1fef4c97b4419c (patch) | |
tree | ff28ae9a267a1e028f6ecaddc2ae0f9990cf030d /fs/f2fs/super.c | |
parent | d1b959c8770260b611b9a1f0c5e8b12b7cb5b9d2 (diff) | |
download | linux-0ab0299835738cd407569401da1fef4c97b4419c.tar.bz2 |
f2fs: Suppress discard warning message for zoned block devices
For zoned block devices, discard is replaced by zone reset. So
do not warn if the device does not supports discard.
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index ea3752f1668d..56b0d2a5a590 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -412,7 +412,7 @@ static int parse_options(struct super_block *sb, char *options) q = bdev_get_queue(sb->s_bdev); if (blk_queue_discard(q)) { set_opt(sbi, DISCARD); - } else { + } else if (!f2fs_sb_mounted_blkzoned(sb)) { f2fs_msg(sb, KERN_WARNING, "mounting with \"discard\" option, but " "the device does not support discard"); |