diff options
author | Rui Xiang <rui.xiang@huawei.com> | 2013-11-12 18:06:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:00 -0500 |
commit | 7391a294b861bf2c3b762dfdcf61b9c5f1bffa1f (patch) | |
tree | 4c34e441b90db49696fe8dffb9599753c2e26db3 /fs/ocfs2/alloc.c | |
parent | f0cb0f0bca233935ac70707d47f5885419a7fd31 (diff) |
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>
Diffstat (limited to 'fs/ocfs2/alloc.c')
-rw-r--r-- | fs/ocfs2/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index 17e6bdde96c5..dc7411fe185d 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c | |||
@@ -1025,7 +1025,7 @@ static int ocfs2_create_new_meta_bhs(handle_t *handle, | |||
1025 | for(i = count; i < (num_got + count); i++) { | 1025 | for(i = count; i < (num_got + count); i++) { |
1026 | bhs[i] = sb_getblk(osb->sb, first_blkno); | 1026 | bhs[i] = sb_getblk(osb->sb, first_blkno); |
1027 | if (bhs[i] == NULL) { | 1027 | if (bhs[i] == NULL) { |
1028 | status = -EIO; | 1028 | status = -ENOMEM; |
1029 | mlog_errno(status); | 1029 | mlog_errno(status); |
1030 | goto bail; | 1030 | goto bail; |
1031 | } | 1031 | } |