ocfs2: return ENOMEM when sb_getblk() fails
The only reason for sb_getblk() failing is if it can't allocate the buffer_head. So return ENOMEM instead when it fails. [joseph.qi@huawei.com: ocfs2_symlink_get_block() and ocfs2_read_blocks_sync() and ocfs2_read_blocks() need the same change] Signed-off-by: Rui Xiang <rui.xiang@huawei.com> Reviewed-by: Jie Liu <jeff.liu@oracle.com> Reviewed-by: Mark Fasheh <mfasheh@suse.de> Cc: Joel Becker <jlbec@evilplan.org> Cc: Joseph Qi <joseph.qi@huawei.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f0cb0f0bca
commit
7391a294b8
9 changed files with 18 additions and 16 deletions
|
@ -1025,7 +1025,7 @@ static int ocfs2_create_new_meta_bhs(handle_t *handle,
|
||||||
for(i = count; i < (num_got + count); i++) {
|
for(i = count; i < (num_got + count); i++) {
|
||||||
bhs[i] = sb_getblk(osb->sb, first_blkno);
|
bhs[i] = sb_getblk(osb->sb, first_blkno);
|
||||||
if (bhs[i] == NULL) {
|
if (bhs[i] == NULL) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,6 +80,7 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
|
||||||
|
|
||||||
if ((u64)iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
|
if ((u64)iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
|
||||||
le32_to_cpu(fe->i_clusters))) {
|
le32_to_cpu(fe->i_clusters))) {
|
||||||
|
err = -ENOMEM;
|
||||||
mlog(ML_ERROR, "block offset is outside the allocated size: "
|
mlog(ML_ERROR, "block offset is outside the allocated size: "
|
||||||
"%llu\n", (unsigned long long)iblock);
|
"%llu\n", (unsigned long long)iblock);
|
||||||
goto bail;
|
goto bail;
|
||||||
|
@ -92,6 +93,7 @@ static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
|
||||||
iblock;
|
iblock;
|
||||||
buffer_cache_bh = sb_getblk(osb->sb, blkno);
|
buffer_cache_bh = sb_getblk(osb->sb, blkno);
|
||||||
if (!buffer_cache_bh) {
|
if (!buffer_cache_bh) {
|
||||||
|
err = -ENOMEM;
|
||||||
mlog(ML_ERROR, "couldn't getblock for symlink!\n");
|
mlog(ML_ERROR, "couldn't getblock for symlink!\n");
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,7 +115,7 @@ int ocfs2_read_blocks_sync(struct ocfs2_super *osb, u64 block,
|
||||||
if (bhs[i] == NULL) {
|
if (bhs[i] == NULL) {
|
||||||
bhs[i] = sb_getblk(osb->sb, block++);
|
bhs[i] = sb_getblk(osb->sb, block++);
|
||||||
if (bhs[i] == NULL) {
|
if (bhs[i] == NULL) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
@ -214,7 +214,7 @@ int ocfs2_read_blocks(struct ocfs2_caching_info *ci, u64 block, int nr,
|
||||||
bhs[i] = sb_getblk(sb, block++);
|
bhs[i] = sb_getblk(sb, block++);
|
||||||
if (bhs[i] == NULL) {
|
if (bhs[i] == NULL) {
|
||||||
ocfs2_metadata_cache_io_unlock(ci);
|
ocfs2_metadata_cache_io_unlock(ci);
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2349,7 +2349,7 @@ static int ocfs2_dx_dir_attach_index(struct ocfs2_super *osb,
|
||||||
|
|
||||||
dx_root_bh = sb_getblk(osb->sb, dr_blkno);
|
dx_root_bh = sb_getblk(osb->sb, dr_blkno);
|
||||||
if (dx_root_bh == NULL) {
|
if (dx_root_bh == NULL) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh);
|
ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh);
|
||||||
|
@ -2422,7 +2422,7 @@ static int ocfs2_dx_dir_format_cluster(struct ocfs2_super *osb,
|
||||||
for (i = 0; i < num_dx_leaves; i++) {
|
for (i = 0; i < num_dx_leaves; i++) {
|
||||||
bh = sb_getblk(osb->sb, start_blk + i);
|
bh = sb_getblk(osb->sb, start_blk + i);
|
||||||
if (bh == NULL) {
|
if (bh == NULL) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
dx_leaves[i] = bh;
|
dx_leaves[i] = bh;
|
||||||
|
@ -2929,7 +2929,7 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
|
||||||
blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
|
blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
|
||||||
dirdata_bh = sb_getblk(sb, blkno);
|
dirdata_bh = sb_getblk(sb, blkno);
|
||||||
if (!dirdata_bh) {
|
if (!dirdata_bh) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
mlog_errno(ret);
|
mlog_errno(ret);
|
||||||
goto out_commit;
|
goto out_commit;
|
||||||
}
|
}
|
||||||
|
@ -3159,7 +3159,7 @@ static int ocfs2_do_extend_dir(struct super_block *sb,
|
||||||
|
|
||||||
*new_bh = sb_getblk(sb, p_blkno);
|
*new_bh = sb_getblk(sb, p_blkno);
|
||||||
if (!*new_bh) {
|
if (!*new_bh) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
|
@ -489,7 +489,7 @@ static int __ocfs2_mknod_locked(struct inode *dir,
|
||||||
|
|
||||||
*new_fe_bh = sb_getblk(osb->sb, fe_blkno);
|
*new_fe_bh = sb_getblk(osb->sb, fe_blkno);
|
||||||
if (!*new_fe_bh) {
|
if (!*new_fe_bh) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1310,7 +1310,7 @@ static int ocfs2_expand_inline_ref_root(handle_t *handle,
|
||||||
|
|
||||||
new_bh = sb_getblk(sb, blkno);
|
new_bh = sb_getblk(sb, blkno);
|
||||||
if (new_bh == NULL) {
|
if (new_bh == NULL) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
mlog_errno(ret);
|
mlog_errno(ret);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -1561,7 +1561,7 @@ static int ocfs2_new_leaf_refcount_block(handle_t *handle,
|
||||||
|
|
||||||
new_bh = sb_getblk(sb, blkno);
|
new_bh = sb_getblk(sb, blkno);
|
||||||
if (new_bh == NULL) {
|
if (new_bh == NULL) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
mlog_errno(ret);
|
mlog_errno(ret);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -3029,7 +3029,7 @@ int ocfs2_duplicate_clusters_by_jbd(handle_t *handle,
|
||||||
for (i = 0; i < blocks; i++, old_block++, new_block++) {
|
for (i = 0; i < blocks; i++, old_block++, new_block++) {
|
||||||
new_bh = sb_getblk(osb->sb, new_block);
|
new_bh = sb_getblk(osb->sb, new_block);
|
||||||
if (new_bh == NULL) {
|
if (new_bh == NULL) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
mlog_errno(ret);
|
mlog_errno(ret);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -481,7 +481,7 @@ ocfs2_block_group_alloc_contig(struct ocfs2_super *osb, handle_t *handle,
|
||||||
|
|
||||||
bg_bh = sb_getblk(osb->sb, bg_blkno);
|
bg_bh = sb_getblk(osb->sb, bg_blkno);
|
||||||
if (!bg_bh) {
|
if (!bg_bh) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
@ -661,7 +661,7 @@ ocfs2_block_group_alloc_discontig(handle_t *handle,
|
||||||
|
|
||||||
bg_bh = sb_getblk(osb->sb, bg_blkno);
|
bg_bh = sb_getblk(osb->sb, bg_blkno);
|
||||||
if (!bg_bh) {
|
if (!bg_bh) {
|
||||||
status = -EIO;
|
status = -ENOMEM;
|
||||||
mlog_errno(status);
|
mlog_errno(status);
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1848,8 +1848,8 @@ static int ocfs2_get_sector(struct super_block *sb,
|
||||||
|
|
||||||
*bh = sb_getblk(sb, block);
|
*bh = sb_getblk(sb, block);
|
||||||
if (!*bh) {
|
if (!*bh) {
|
||||||
mlog_errno(-EIO);
|
mlog_errno(-ENOMEM);
|
||||||
return -EIO;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
lock_buffer(*bh);
|
lock_buffer(*bh);
|
||||||
if (!buffer_dirty(*bh))
|
if (!buffer_dirty(*bh))
|
||||||
|
|
|
@ -377,7 +377,7 @@ static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
|
||||||
bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
|
bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
|
||||||
xb_blkno + i);
|
xb_blkno + i);
|
||||||
if (!bucket->bu_bhs[i]) {
|
if (!bucket->bu_bhs[i]) {
|
||||||
rc = -EIO;
|
rc = -ENOMEM;
|
||||||
mlog_errno(rc);
|
mlog_errno(rc);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue