diff options
author | Joel Becker <joel.becker@oracle.com> | 2008-10-20 18:24:03 -0700 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-11-10 09:51:45 -0800 |
commit | b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99 (patch) | |
tree | c9a709970deb2dfdb2b4d9340f682e966da19b83 /fs/ocfs2 | |
parent | f6087fb799e097e7c9d912daa75701de9d62dc53 (diff) | |
download | op-kernel-dev-b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99.zip op-kernel-dev-b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99.tar.gz |
ocfs2: Don't return -EFAULT from a corrupt xattr entry.
If the xattr disk structures are corrupt, return -EIO, not -EFAULT.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c index 151ba62..41a6ca0 100644 --- a/fs/ocfs2/xattr.c +++ b/fs/ocfs2/xattr.c @@ -1239,7 +1239,7 @@ static int ocfs2_xattr_set_entry(struct inode *inode, free = min_offs - ((void *)last - xs->base) - sizeof(__u32); if (free < 0) - return -EFAULT; + return -EIO; if (!xs->not_found) { size_t size = 0; |