From: Damien Le Moal Date: Fri, 28 Oct 2016 08:44:59 +0000 (+0900) Subject: f2fs: Add missing break in switch-case X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=487df616dec33231c99294b906d720d256a2de16;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.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;