diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/balloc.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 9568a57c607c..ff3428e195b4 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c | |||
@@ -587,11 +587,13 @@ do_more: | |||
587 | in_range(ext4_inode_bitmap(sb, desc), block, count) || | 587 | in_range(ext4_inode_bitmap(sb, desc), block, count) || |
588 | in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) || | 588 | in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) || |
589 | in_range(block + count - 1, ext4_inode_table(sb, desc), | 589 | in_range(block + count - 1, ext4_inode_table(sb, desc), |
590 | sbi->s_itb_per_group)) | 590 | sbi->s_itb_per_group)) { |
591 | ext4_error (sb, "ext4_free_blocks", | 591 | ext4_error (sb, "ext4_free_blocks", |
592 | "Freeing blocks in system zones - " | 592 | "Freeing blocks in system zones - " |
593 | "Block = %llu, count = %lu", | 593 | "Block = %llu, count = %lu", |
594 | block, count); | 594 | block, count); |
595 | goto error_return; | ||
596 | } | ||
595 | 597 | ||
596 | /* | 598 | /* |
597 | * We are about to start releasing blocks in the bitmap, | 599 | * We are about to start releasing blocks in the bitmap, |
@@ -1690,11 +1692,13 @@ allocated: | |||
1690 | in_range(ret_block, ext4_inode_table(sb, gdp), | 1692 | in_range(ret_block, ext4_inode_table(sb, gdp), |
1691 | EXT4_SB(sb)->s_itb_per_group) || | 1693 | EXT4_SB(sb)->s_itb_per_group) || |
1692 | in_range(ret_block + num - 1, ext4_inode_table(sb, gdp), | 1694 | in_range(ret_block + num - 1, ext4_inode_table(sb, gdp), |
1693 | EXT4_SB(sb)->s_itb_per_group)) | 1695 | EXT4_SB(sb)->s_itb_per_group)) { |
1694 | ext4_error(sb, "ext4_new_block", | 1696 | ext4_error(sb, "ext4_new_block", |
1695 | "Allocating block in system zone - " | 1697 | "Allocating block in system zone - " |
1696 | "blocks from %llu, length %lu", | 1698 | "blocks from %llu, length %lu", |
1697 | ret_block, num); | 1699 | ret_block, num); |
1700 | goto out; | ||
1701 | } | ||
1698 | 1702 | ||
1699 | performed_allocation = 1; | 1703 | performed_allocation = 1; |
1700 | 1704 | ||