Commit 813f8a0e authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba

btrfs: raid56: remove out label in __raid56_parity_recover

There's no cleanup that occurs so we can simply return 0 directly.
Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent f37c563b
...@@ -2083,7 +2083,7 @@ static int __raid56_parity_recover(struct btrfs_raid_bio *rbio) ...@@ -2083,7 +2083,7 @@ static int __raid56_parity_recover(struct btrfs_raid_bio *rbio)
*/ */
if (atomic_read(&rbio->error) <= rbio->bbio->max_errors) { if (atomic_read(&rbio->error) <= rbio->bbio->max_errors) {
__raid_recover_end_io(rbio); __raid_recover_end_io(rbio);
goto out; return 0;
} else { } else {
goto cleanup; goto cleanup;
} }
...@@ -2103,7 +2103,7 @@ static int __raid56_parity_recover(struct btrfs_raid_bio *rbio) ...@@ -2103,7 +2103,7 @@ static int __raid56_parity_recover(struct btrfs_raid_bio *rbio)
submit_bio(bio); submit_bio(bio);
} }
out:
return 0; return 0;
cleanup: cleanup:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment