diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-04-12 20:52:30 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-04-15 17:50:25 +0200 |
commit | 58457f1c355545c468b8aed5c431d8a6bb71d35d (patch) | |
tree | a32f4840a1b93017393721f82381a9917c7c2fba /fs/f2fs/xattr.c | |
parent | f2fs: remove redundant condition check (diff) | |
download | linux-58457f1c355545c468b8aed5c431d8a6bb71d35d.tar.xz linux-58457f1c355545c468b8aed5c431d8a6bb71d35d.zip |
f2fs: give -E2BIG for no space in xattr
This patch returns -E2BIG if there is no space to add an xattr entry.
This should fix generic/026 in xfstests as well.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | fs/f2fs/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c index 06a72dc0191a..152971243ad8 100644 --- a/fs/f2fs/xattr.c +++ b/fs/f2fs/xattr.c @@ -500,7 +500,7 @@ static int __f2fs_setxattr(struct inode *inode, int index, free = free + ENTRY_SIZE(here); if (unlikely(free < newsize)) { - error = -ENOSPC; + error = -E2BIG; goto exit; } } |