]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ext4: remove redundant assignment to node
authorColin Ian King <colin.king@canonical.com>
Thu, 20 Jun 2019 04:10:10 +0000 (00:10 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 20 Jun 2019 04:10:10 +0000 (00:10 -0400)
Pointer 'node' is assigned a value that is never read, node is
later overwritten when it re-assigned a different value inside
the while-loop.  The assignment is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.cz>
fs/ext4/extents_status.c

index 023a3eb3afa30541d2d4d1fa1b0066697d79b331..7521de2dcf3aebd710af8da53bdcc18798f0f522 100644 (file)
@@ -1317,7 +1317,6 @@ static int es_do_reclaim_extents(struct ext4_inode_info *ei, ext4_lblk_t end,
        es = __es_tree_search(&tree->root, ei->i_es_shrink_lblk);
        if (!es)
                goto out_wrap;
-       node = &es->rb_node;
        while (*nr_to_scan > 0) {
                if (es->es_lblk > end) {
                        ei->i_es_shrink_lblk = end + 1;