diff options
author | Bart Van Assche <bart.vanassche@wdc.com> | 2018-06-20 10:03:32 -0700 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-08-06 13:12:31 +0200 |
commit | acd43e3cdffcb2e361e8b481c72e057d34fcd780 (patch) | |
tree | 102f641de4799fb3c233d44ee912ec0d6c78a854 /fs/btrfs/super.c | |
parent | bece2e8239331d382f98b381f90e425a11157653 (diff) | |
download | linux-acd43e3cdffcb2e361e8b481c72e057d34fcd780.tar.bz2 |
btrfs: Annotate fall-through when parsing mount option
This patch avoids that the compiler complains that a fall-through
annotation is missing when building with W=1.
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 81107ad49f3a..3e298f26a383 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -760,6 +760,7 @@ int btrfs_parse_options(struct btrfs_fs_info *info, char *options, case Opt_recovery: btrfs_warn(info, "'recovery' is deprecated, use 'usebackuproot' instead"); + /* fall through */ case Opt_usebackuproot: btrfs_info(info, "trying to use backup root at mount time"); |