From: Damien Le Moal Date: Fri, 28 Oct 2016 08:44:59 +0000 (+0900) Subject: f2fs: Add missing break in switch-case X-Git-Tag: rel_imx_4.19.35_1.1.0~13566^2~40 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=487df616dec33231c99294b906d720d256a2de16;p=linux.git f2fs: Add missing break in switch-case Signed-off-by: Damien Le Moal Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 72603f1d8c2e..82af510b3bcc 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -420,6 +420,7 @@ static int parse_options(struct super_block *sb, char *options) break; case Opt_nodiscard: clear_opt(sbi, DISCARD); + break; case Opt_noheap: set_opt(sbi, NOHEAP); break;