diff options
author | Damien Le Moal <damien.lemoal@wdc.com> | 2020-07-16 07:38:13 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2020-08-04 22:48:48 +0300 |
commit | 04dc5330e5deebde2c88f8422c446e8212090ba3 (patch) | |
tree | 629d8c258369065345f0170547f74859fc73f203 /drivers/md | |
parent | a84c4308333a2cbd54593649a8b144df95c68227 (diff) | |
download | linux-04dc5330e5deebde2c88f8422c446e8212090ba3.tar.xz |
dm raid: Remove empty if statement
In super_init_validation(), remove a body-less if statement testing only
variables to avoid a compilation warning when compiling with W=1.
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-raid.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c index 10e8b2fe787b..08023c50aaa0 100644 --- a/drivers/md/dm-raid.c +++ b/drivers/md/dm-raid.c @@ -2345,8 +2345,6 @@ static int super_init_validation(struct raid_set *rs, struct md_rdev *rdev) if (new_devs == rs->raid_disks || !rebuilds) { /* Replace a broken device */ - if (new_devs == 1 && !rs->delta_disks) - ; if (new_devs == rs->raid_disks) { DMINFO("Superblocks created for new raid set"); set_bit(MD_ARRAY_FIRST_USE, &mddev->flags); |