diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-04-21 00:09:02 +0200 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2021-04-21 00:10:04 +0200 |
commit | be962b2f077e96533ed3080127fcbe60b224638a (patch) | |
tree | 2e14846419fc5c1e2dce80d4f7749215ce79a0cc /drivers/md | |
parent | dm clone metadata: remove unused function (diff) | |
download | linux-be962b2f077e96533ed3080127fcbe60b224638a.tar.xz linux-be962b2f077e96533ed3080127fcbe60b224638a.zip |
dm raid: fix fall-through warning in rs_check_takeover() for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
by explicitly adding a break statement instead of letting the code fall
through to the next case.
Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-raid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c index cab12b2251ba..59d2150e130d 100644 --- a/drivers/md/dm-raid.c +++ b/drivers/md/dm-raid.c @@ -1853,6 +1853,7 @@ static int rs_check_takeover(struct raid_set *rs) ((mddev->layout == ALGORITHM_PARITY_N && mddev->new_layout == ALGORITHM_PARITY_N) || __within_range(mddev->new_layout, ALGORITHM_LEFT_ASYMMETRIC, ALGORITHM_RIGHT_SYMMETRIC))) return 0; + break; default: break; |