summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
authorJoel Becker2008-10-21 03:24:03 +0200
committerMark Fasheh2008-11-10 18:51:45 +0100
commitb37c4d84e9d16fd5b6f31197f02ea0a112fc9e99 (patch)
treec9a709970deb2dfdb2b4d9340f682e966da19b83 /fs/ocfs2
parentocfs2: Check xattr block signatures properly. (diff)
downloadkernel-qcow2-linux-b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99.tar.gz
kernel-qcow2-linux-b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99.tar.xz
kernel-qcow2-linux-b37c4d84e9d16fd5b6f31197f02ea0a112fc9e99.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c
index 151ba6257fbb..41a6ca004ae3 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;