diff options
Diffstat (limited to 'fs/ext4/ialloc.c')
| -rw-r--r-- | fs/ext4/ialloc.c | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 5b87fc36aab8..ac644c31ca67 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -887,6 +887,10 @@ got:  		struct buffer_head *block_bitmap_bh;  		block_bitmap_bh = ext4_read_block_bitmap(sb, group); +		if (!block_bitmap_bh) { +			err = -EIO; +			goto out; +		}  		BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");  		err = ext4_journal_get_write_access(handle, block_bitmap_bh);  		if (err) { @@ -1011,8 +1015,7 @@ got:  	spin_unlock(&sbi->s_next_gen_lock);  	/* Precompute checksum seed for inode metadata */ -	if (EXT4_HAS_RO_COMPAT_FEATURE(sb, -			EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) { +	if (ext4_has_metadata_csum(sb)) {  		__u32 csum;  		__le32 inum = cpu_to_le32(inode->i_ino);  		__le32 gen = cpu_to_le32(inode->i_generation);  |