ext4: remove dead code in updating backup sb
authorTanmay Bhushan <007047221b@gmail.com>
Fri, 30 Dec 2022 14:18:58 +0000 (15:18 +0100)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 19 Feb 2023 03:57:25 +0000 (22:57 -0500)
ext4_update_backup_sb checks for err having some value
after unlocking buffer. But err has not been updated
till that point in any code which will lead execution
of the code in question.

Signed-off-by: Tanmay Bhushan <007047221b@gmail.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20221230141858.3828-1-007047221b@gmail.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/ioctl.c

index 8067ccda34e457ed68728751337173ef90c4de49..2e8c340363138630bc17cbe91f72d76797bf187b 100644 (file)
@@ -155,9 +155,6 @@ static int ext4_update_backup_sb(struct super_block *sb,
        set_buffer_uptodate(bh);
        unlock_buffer(bh);
 
-       if (err)
-               goto out_bh;
-
        if (handle) {
                err = ext4_handle_dirty_metadata(handle, NULL, bh);
                if (err)