diff options
author | Alexandre Ratchov <alexandre.ratchov@bull.net> | 2006-10-11 04:21:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:14:18 -0400 |
commit | 8fadc14323684c547f74cf2f4d13517c6c264731 (patch) | |
tree | 2b3eedf241a0d7c86f6b808f76e267ded28506ed /fs/ext4/resize.c | |
parent | 0d1ee42f27d30eed1659f3e85bcbbc7b3711f61f (diff) |
[PATCH] ext4: move block number hi bits
move '_hi' bits of block numbers in the larger part of the
block group descriptor structure
Signed-off-by: Alexandre Ratchov <alexandre.ratchov@bull.net>
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext4/resize.c')
-rw-r--r-- | fs/ext4/resize.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 3e960677c2f2..1e9578052cd3 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c | |||
@@ -834,9 +834,9 @@ int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input) | |||
834 | /* Update group descriptor block for new group */ | 834 | /* Update group descriptor block for new group */ |
835 | gdp = (struct ext4_group_desc *)primary->b_data + gdb_off; | 835 | gdp = (struct ext4_group_desc *)primary->b_data + gdb_off; |
836 | 836 | ||
837 | ext4_block_bitmap_set(gdp, input->block_bitmap); /* LV FIXME */ | 837 | ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */ |
838 | ext4_inode_bitmap_set(gdp, input->inode_bitmap); /* LV FIXME */ | 838 | ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */ |
839 | ext4_inode_table_set(gdp, input->inode_table); /* LV FIXME */ | 839 | ext4_inode_table_set(sb, gdp, input->inode_table); /* LV FIXME */ |
840 | gdp->bg_free_blocks_count = cpu_to_le16(input->free_blocks_count); | 840 | gdp->bg_free_blocks_count = cpu_to_le16(input->free_blocks_count); |
841 | gdp->bg_free_inodes_count = cpu_to_le16(EXT4_INODES_PER_GROUP(sb)); | 841 | gdp->bg_free_inodes_count = cpu_to_le16(EXT4_INODES_PER_GROUP(sb)); |
842 | 842 | ||