From: Namjae Jeon Date: Tue, 18 Dec 2012 00:02:56 +0000 (-0800) Subject: fat: notify when discard is not supported X-Git-Tag: upstream/snapshot3+hdmi~6031^2~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f562146a3daf6aa0bbf2a1bc4b6b7da031ed5dcd;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git fat: notify when discard is not supported Change fatfs so that a warning is emitted when an attempt is made to mount a filesystem with the unsupported `discard' option. ext4 aready does this: http://patchwork.ozlabs.org/patch/192668/ Signed-off-by: Namjae Jeon Signed-off-by: Amit Sahrawat Acked-by: OGAWA Hirofumi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 5bafaad..7b186a5 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include "fat.h" @@ -1431,6 +1432,14 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, goto out_fail; } + if (sbi->options.discard) { + struct request_queue *q = bdev_get_queue(sb->s_bdev); + if (!blk_queue_discard(q)) + fat_msg(sb, KERN_WARNING, + "mounting with \"discard\" option, but " + "the device does not support discard"); + } + return 0; out_invalid: