Whamcloud - gitweb
resize2fs: remove unused variable from adjust_superblock()
authorEric Biggers <ebiggers@google.com>
Sat, 21 Jan 2023 20:32:29 +0000 (12:32 -0800)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 27 Jan 2023 17:39:19 +0000 (12:39 -0500)
In adjust_superblock(), the 'group_block' variable is declared and set,
but it is never actually used.  Remove it.

This addresses the following compiler warning with clang -Wall:

        blk64_t         group_block;
                        ^

resize2fs.c:1119:11: warning: variable 'group_block' set but not used [-Wunused-but-set-variable]
Reviewed-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
resize/resize2fs.c

index 243cd77..5eeb7d4 100644 (file)
@@ -1116,7 +1116,6 @@ static errcode_t adjust_superblock(ext2_resize_t rfs, blk64_t new_size)
        ext2_filsys     fs = rfs->new_fs;
        int             adj = 0;
        errcode_t       retval;
-       blk64_t         group_block;
        unsigned long   i;
        unsigned long   max_group;
 
@@ -1181,8 +1180,6 @@ static errcode_t adjust_superblock(ext2_resize_t rfs, blk64_t new_size)
                goto errout;
 
        memset(rfs->itable_buf, 0, fs->blocksize * fs->inode_blocks_per_group);
-       group_block = ext2fs_group_first_block2(fs,
-                                               rfs->old_fs->group_desc_count);
        adj = rfs->old_fs->group_desc_count;
        max_group = fs->group_desc_count - adj;
        if (rfs->progress) {
@@ -1209,7 +1206,6 @@ static errcode_t adjust_superblock(ext2_resize_t rfs, blk64_t new_size)
                        if (retval)
                                goto errout;
                }
-               group_block += fs->super->s_blocks_per_group;
        }
        io_channel_flush(fs->io);
        retval = 0;