mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
Ext2: return ENOMEM rather than EIO if sb_getblk fails
As the only reason that sb_getblks fails is that allocation fails. It will be better to use ENOMEM rather than EIO. Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
1b7d76e9b1
commit
ab6a773dbc
@ -665,7 +665,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh,
|
|||||||
if (unlikely(!new_bh)) {
|
if (unlikely(!new_bh)) {
|
||||||
ext2_free_blocks(inode, block, 1);
|
ext2_free_blocks(inode, block, 1);
|
||||||
mark_inode_dirty(inode);
|
mark_inode_dirty(inode);
|
||||||
error = -EIO;
|
error = -ENOMEM;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
lock_buffer(new_bh);
|
lock_buffer(new_bh);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user