diff options
author | Wang Shilong <wangsl-fnst@cn.fujitsu.com> | 2013-01-15 21:20:01 -0800 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-01-21 11:19:57 +0100 |
commit | c04e88e271ab67de1409c3b4a4e80dbe13eac7b0 (patch) | |
tree | 31c46c27fedef5d19cecaaccf2abdd2e0a00c981 /fs/ext3/xattr.c | |
parent | ab6a773dbcbd2bba3ead8676ae21ce5adbbdc035 (diff) | |
download | op-kernel-dev-c04e88e271ab67de1409c3b4a4e80dbe13eac7b0.zip op-kernel-dev-c04e88e271ab67de1409c3b4a4e80dbe13eac7b0.tar.gz |
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 9f57470..b1fc963 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); |