ext2: remove redundant assignment to variable desc and variable best_desc
authorColin Ian King <colin.i.king@gmail.com>
Fri, 30 Jun 2023 16:54:58 +0000 (17:54 +0100)
committerJan Kara <jack@suse.cz>
Mon, 3 Jul 2023 12:44:45 +0000 (14:44 +0200)
Variable desc is being assigned a value that is never read, the exit
via label found immeditely returns with no access to desc. The
assignment is redundant and can be removed. Also remove variable best_desc
since this is not used. Cleans up clang scan muild warning:

fs/ext2/ialloc.c:297:4: warning: Value stored to 'desc' is never
read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20230630165458.166238-1-colin.i.king@gmail.com>

fs/ext2/ialloc.c

index a4e1d7a..34cd5dc 100644 (file)
@@ -273,7 +273,6 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent)
 
        if ((parent == d_inode(sb->s_root)) ||
            (EXT2_I(parent)->i_flags & EXT2_TOPDIR_FL)) {
-               struct ext2_group_desc *best_desc = NULL;
                int best_ndir = inodes_per_group;
                int best_group = -1;
 
@@ -291,10 +290,8 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent)
                                continue;
                        best_group = group;
                        best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
-                       best_desc = desc;
                }
                if (best_group >= 0) {
-                       desc = best_desc;
                        group = best_group;
                        goto found;
                }