diff options
author | 2008-06-23 11:00:26 +0200 | |
---|---|---|
committer | 2008-06-23 11:00:26 +0200 | |
commit | 198bb971e256e4167e45e7df643c13ea66f67e3a (patch) | |
tree | 85b8b2bf6cc78bf0e53a2187ed5796f076922334 /fs | |
parent | sched: refactor wait_for_completion_timeout() (diff) | |
parent | Slab: Fix memory leak in fallback_alloc() (diff) | |
download | linux-dev-198bb971e256e4167e45e7df643c13ea66f67e3a.tar.xz linux-dev-198bb971e256e4167e45e7df643c13ea66f67e3a.zip |
Merge branch 'linus' into sched/urgent
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/resize.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 9ecb92f68543..9ff7b1c04239 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -855,7 +855,8 @@ int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input) */ /* Update group descriptor block for new group */ - gdp = (struct ext4_group_desc *)primary->b_data + gdb_off; + gdp = (struct ext4_group_desc *)((char *)primary->b_data + + gdb_off * EXT4_DESC_SIZE(sb)); ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */ ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */ |