diff options
author | Wang Shilong <wangsl-fnst@cn.fujitsu.com> | 2013-01-16 00:20:01 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-01-21 05:19:57 -0500 |
commit | c04e88e271ab67de1409c3b4a4e80dbe13eac7b0 (patch) | |
tree | 31c46c27fedef5d19cecaaccf2abdd2e0a00c981 /fs/ext3/xattr.c | |
parent | ab6a773dbcbd2bba3ead8676ae21ce5adbbdc035 (diff) |
Ext3: return ENOMEM rather than EIO if sb_getblk fails
It will be better to use ENOMEM rather than EIO, because the only
reason that sb_getblk fails is that allocation fails.
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext3/xattr.c')
-rw-r--r-- | fs/ext3/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/xattr.c b/fs/ext3/xattr.c index 9f57470b1727..b1fc96383e08 100644 --- a/fs/ext3/xattr.c +++ b/fs/ext3/xattr.c | |||
@@ -816,7 +816,7 @@ inserted: | |||
816 | if (unlikely(!new_bh)) { | 816 | if (unlikely(!new_bh)) { |
817 | getblk_failed: | 817 | getblk_failed: |
818 | ext3_free_blocks(handle, inode, block, 1); | 818 | ext3_free_blocks(handle, inode, block, 1); |
819 | error = -EIO; | 819 | error = -ENOMEM; |
820 | goto cleanup; | 820 | goto cleanup; |
821 | } | 821 | } |
822 | lock_buffer(new_bh); | 822 | lock_buffer(new_bh); |