diff options
author | Marcos Paulo de Souza <mpdesouza@suse.com> | 2020-06-16 15:54:29 -0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-07-02 10:18:30 +0200 |
commit | c730ae0c6bb3125ccb776fb2ab6abbdff500c02c (patch) | |
tree | 46c1c1d2da83b25170b4c8a7cecb87e8f09aab44 /fs/btrfs/volumes.h | |
parent | b091f7fede97cc64f7aaad3eeb37965aebee3082 (diff) |
btrfs: convert comments to fallthrough annotations
Convert fall through comments to the pseudo-keyword which is now the
preferred way.
Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.h')
-rw-r--r-- | fs/btrfs/volumes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index f067b5934c46..75af2334b2e3 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -408,7 +408,7 @@ static inline enum btrfs_map_op btrfs_op(struct bio *bio) return BTRFS_MAP_WRITE; default: WARN_ON_ONCE(1); - /* fall through */ + fallthrough; case REQ_OP_READ: return BTRFS_MAP_READ; } |