From: Namjae Jeon Date: Sun, 17 Mar 2013 08:26:14 +0000 (+0900) Subject: f2fs: notify when discard is not supported X-Git-Tag: upstream/snapshot3+hdmi~5143^2~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3ee456dfbed1992bcaa0096d9bc76a691b0e700;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git f2fs: notify when discard is not supported Change f2fs so that a warning is emitted when an attempt is made to mount a filesystem with the unsupported discard option. Signed-off-by: Namjae Jeon Signed-off-by: Amit Sahrawat Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 1c7f595..022b32a 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "f2fs.h" @@ -650,6 +651,14 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent) if (err) goto fail; + if (test_opt(sbi, DISCARD)) { + struct request_queue *q = bdev_get_queue(sb->s_bdev); + if (!blk_queue_discard(q)) + f2fs_msg(sb, KERN_WARNING, + "mounting with \"discard\" option, but " + "the device does not support discard"); + } + return 0; fail: stop_gc_thread(sbi);