diff options
author | Jon Ernst <jonernst07@gmx.com> | 2013-06-17 08:56:26 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-06-17 08:56:26 -0400 |
commit | 03b40e349695dc700582568e5b410a89058f707e (patch) | |
tree | 0b029fd2f30b33f0fcdc0a68b4941fb7b1531cdd /fs/ext4/super.c | |
parent | 72dac95d4403ee7231e094e1735ecb96032e6117 (diff) |
ext4: delete unused variables
This patch removed several unused variables.
Signed-off-by: Jon Ernst <jonernst07@gmx.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index eb52a7be1fc1..54701fca4515 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1924,7 +1924,6 @@ static int ext4_fill_flex_info(struct super_block *sb) struct ext4_sb_info *sbi = EXT4_SB(sb); struct ext4_group_desc *gdp = NULL; ext4_group_t flex_group; - unsigned int groups_per_flex = 0; int i, err; sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex; @@ -1932,7 +1931,6 @@ static int ext4_fill_flex_info(struct super_block *sb) sbi->s_log_groups_per_flex = 0; return 1; } - groups_per_flex = 1U << sbi->s_log_groups_per_flex; err = ext4_alloc_flex_bg_array(sb, sbi->s_groups_count); if (err) |