summaryrefslogtreecommitdiffstats
path: root/fs/f2fs
diff options
context:
space:
mode:
authorDamien Le Moal <damien.lemoal@wdc.com>2016-10-28 10:44:59 +0200
committerJaegeuk Kim <jaegeuk@kernel.org>2016-11-23 21:11:14 +0100
commit487df616dec33231c99294b906d720d256a2de16 (patch)
treee4c465fa87d906d0e755327d583d7690d49b870e /fs/f2fs
parentf2fs: avoid infinite loop in the EIO case on recover_orphan_inodes (diff)
downloadlinux-487df616dec33231c99294b906d720d256a2de16.tar.xz
linux-487df616dec33231c99294b906d720d256a2de16.zip
f2fs: Add missing break in switch-case
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/super.c1
1 files changed, 1 insertions, 0 deletions
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;