On Tue 15-01-13 21:19:06, Wang Shilong wrote: > From: Wang Shilong <wangsl-fnst@xxxxxxxxxxxxxx> > > As the only reason that sb_getblks fails is that allocation fails. > It will be better to use ENOMEM rather than EIO. Thanks, I've merged the patch to my tree. Honza > > Signed-off-by: Wang Shilong <wangsl-fnst@xxxxxxxxxxxxxx> > --- > fs/ext2/xattr.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c > index 06209ec..2d7557d 100644 > --- a/fs/ext2/xattr.c > +++ b/fs/ext2/xattr.c > @@ -665,7 +665,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh, > if (unlikely(!new_bh)) { > ext2_free_blocks(inode, block, 1); > mark_inode_dirty(inode); > - error = -EIO; > + error = -ENOMEM; > goto cleanup; > } > lock_buffer(new_bh); > -- 1.7.7.6 > -- Jan Kara <jack@xxxxxxx> SUSE Labs, CR -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html