diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2009-01-05 22:20:24 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-01-05 22:20:24 -0500 |
commit | 560671a0d3c9ad2d647fa6d09375a262e1f19c4f (patch) | |
tree | a52673326726062d53b35643d51a16739cd804fc /fs/ext4/resize.c | |
parent | e8134b27e351e813414da3b95aa8eac6d3908088 (diff) |
ext4: Use high 16 bits of the block group descriptor's free counts fields
Rename the lower bits with suffix _lo and add helper
to access the values. Also rename bg_itable_unused_hi
to bg_pad as in e2fsprogs.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/resize.c')
-rw-r--r-- | fs/ext4/resize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 92034d2c8a73..2d24f423fd83 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c | |||
@@ -866,8 +866,8 @@ int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input) | |||
866 | ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */ | 866 | ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */ |
867 | ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */ | 867 | ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */ |
868 | ext4_inode_table_set(sb, gdp, input->inode_table); /* LV FIXME */ | 868 | ext4_inode_table_set(sb, gdp, input->inode_table); /* LV FIXME */ |
869 | gdp->bg_free_blocks_count = cpu_to_le16(input->free_blocks_count); | 869 | ext4_free_blks_set(sb, gdp, input->free_blocks_count); |
870 | gdp->bg_free_inodes_count = cpu_to_le16(EXT4_INODES_PER_GROUP(sb)); | 870 | ext4_free_inodes_set(sb, gdp, EXT4_INODES_PER_GROUP(sb)); |
871 | gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED); | 871 | gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED); |
872 | gdp->bg_checksum = ext4_group_desc_csum(sbi, input->group, gdp); | 872 | gdp->bg_checksum = ext4_group_desc_csum(sbi, input->group, gdp); |
873 | 873 | ||