aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext3/xattr.c
diff options
context:
space:
mode:
authorWang Shilong <wangsl-fnst@cn.fujitsu.com>2013-01-15 21:20:01 -0800
committerJan Kara <jack@suse.cz>2013-01-21 11:19:57 +0100
commitc04e88e271ab67de1409c3b4a4e80dbe13eac7b0 (patch)
tree31c46c27fedef5d19cecaaccf2abdd2e0a00c981 /fs/ext3/xattr.c
parentExt2: return ENOMEM rather than EIO if sb_getblk fails (diff)
downloadlinux-dev-c04e88e271ab67de1409c3b4a4e80dbe13eac7b0.tar.xz
linux-dev-c04e88e271ab67de1409c3b4a4e80dbe13eac7b0.zip
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.c2
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:
if (unlikely(!new_bh)) {
getblk_failed:
ext3_free_blocks(handle, inode, block, 1);
- error = -EIO;
+ error = -ENOMEM;
goto cleanup;
}
lock_buffer(new_bh);