Re: [PATCH v1 8/9] ext4: small cleanup in ext4_commit_super

From: Jan Kara
Date: Thu Mar 22 2012 - 06:12:21 EST


On Tue 20-03-12 16:41:28, Artem Bityutskiy wrote:
> From: Artem Bityutskiy <artem.bityutskiy@xxxxxxxxxxxxxxx>
>
> We have many 'EXT4_SB(sb)' references in 'ext4_commit_super()' and I am going
> to add another one, so I think the function will be a bit tidier if I introduce
> a separate 'sbi' pointer for the ext4 superblock.
>
> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@xxxxxxxxxxxxxxx>
Good cleanup.
Reviewed-by: Jan Kara <jack@xxxxxxx>

Honza
> ---
> fs/ext4/super.c | 18 +++++++++---------
> 1 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index 7d453f7..64f3a6a 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -4132,8 +4132,9 @@ static int ext4_load_journal(struct super_block *sb,
>
> static int ext4_commit_super(struct super_block *sb, int sync)
> {
> - struct ext4_super_block *es = EXT4_SB(sb)->s_es;
> - struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
> + struct ext4_sb_info *sbi = EXT4_SB(sb);
> + struct ext4_super_block *es = sbi->s_es;
> + struct buffer_head *sbh = sbi->s_sbh;
> int error = 0;
>
> if (!sbh || block_device_ejected(sb))
> @@ -4174,18 +4175,17 @@ static int ext4_commit_super(struct super_block *sb, int sync)
> es->s_wtime = cpu_to_le32(get_seconds());
> if (sb->s_bdev->bd_part)
> es->s_kbytes_written =
> - cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
> + cpu_to_le64(sbi->s_kbytes_written +
> ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
> - EXT4_SB(sb)->s_sectors_written_start) >> 1));
> + sbi->s_sectors_written_start) >> 1));
> else
> - es->s_kbytes_written =
> - cpu_to_le64(EXT4_SB(sb)->s_kbytes_written);
> + es->s_kbytes_written = cpu_to_le64(sbi->s_kbytes_written);
> ext4_free_blocks_count_set(es,
> - EXT4_C2B(EXT4_SB(sb), percpu_counter_sum_positive(
> - &EXT4_SB(sb)->s_freeclusters_counter)));
> + EXT4_C2B(sbi, percpu_counter_sum_positive(
> + &sbi->s_freeclusters_counter)));
> es->s_free_inodes_count =
> cpu_to_le32(percpu_counter_sum_positive(
> - &EXT4_SB(sb)->s_freeinodes_counter));
> + &sbi->s_freeinodes_counter));
> BUFFER_TRACE(sbh, "marking dirty");
> mark_buffer_dirty(sbh);
> if (sync) {
> --
> 1.7.7.6
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/