summaryrefslogtreecommitdiff
path: root/fs/ext4/mballoc.c
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2009-01-05 21:46:04 -0500
committerTheodore Ts'o <tytso@mit.edu>2009-01-05 21:46:04 -0500
commit648f5879f5892dddd3ba71cd0d285599f40f2512 (patch)
treedee22aa9be9e47c9a9a25ce38481079aaf8858c8 /fs/ext4/mballoc.c
parent2ccb5fb9f113dae969d1ae9b6c10e80fa34f8cd3 (diff)
downloadlinux-3.10-648f5879f5892dddd3ba71cd0d285599f40f2512.tar.gz
linux-3.10-648f5879f5892dddd3ba71cd0d285599f40f2512.tar.bz2
linux-3.10-648f5879f5892dddd3ba71cd0d285599f40f2512.zip
ext4: mark the blocks/inode bitmap beyond end of group as used
We need to mark the block/inode bitmap beyond the end of the group with '1'. Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/mballoc.c')
-rw-r--r--fs/ext4/mballoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index 18a52d39d09..7d7f6f91d55 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -3038,8 +3038,8 @@ ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
in_range(block + len - 1, ext4_inode_table(sb, gdp),
EXT4_SB(sb)->s_itb_per_group)) {
ext4_error(sb, __func__,
- "Allocating block in system zone - block = %llu",
- block);
+ "Allocating block %llu in system zone of %d group\n",
+ block, ac->ac_b_ex.fe_group);
/* File system mounted not to panic on error
* Fix the bitmap and repeat the block allocation
* We leak some of the blocks here.