[<prev] [next>] [day] [month] [year] [list]
Message-ID: <46685ED1.5050100@redhat.com>
Date: Thu, 07 Jun 2007 14:38:57 -0500
From: Eric Sandeen <sandeen@...hat.com>
To: ext4 development <linux-ext4@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: [PATCH 2/2] ext2: remove pointless vars in inode allocators
ext2's find_group_dir tests whether best_desc is not set and if
so returns -1. But if it was not set, best_group was not set either,
and it was initialized to -1. So may as well just return best_group.
This matches ext3/4 too.
In find_group_orlov, best_desc is updated in a loop and eventually
assigned to "desc" but then we return without using either. Looks like
it can just be removed.
Compiled & booted & lightly tested.
Signed-off-by: Eric Sandeen <sandeen@...hat.com>
Index: linux-2.6.22-rc3/fs/ext2/ialloc.c
===================================================================
--- linux-2.6.22-rc3.orig/fs/ext2/ialloc.c
+++ linux-2.6.22-rc3/fs/ext2/ialloc.c
@@ -224,16 +224,13 @@ static int find_group_dir(struct super_b
continue;
if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
continue;
- if (!best_desc ||
+ if (!best_desc ||
(le16_to_cpu(desc->bg_free_blocks_count) >
le16_to_cpu(best_desc->bg_free_blocks_count))) {
best_group = group;
best_desc = desc;
}
}
- if (!best_desc)
- return -1;
-
return best_group;
}
@@ -290,7 +287,6 @@ static int find_group_orlov(struct super
if ((parent == sb->s_root->d_inode) ||
(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;
@@ -309,10 +305,8 @@ static int find_group_orlov(struct super
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;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists