From: Christoph Hellwig Date: Fri, 15 Oct 2010 12:45:00 +0000 (-0700) Subject: hfsplus: fix getxattr return value X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=46bf36ecec79bbe5373ef68f0ed36cbf62e03482;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git hfsplus: fix getxattr return value We need to support -EOPNOTSUPP for attributes that are not supported to match other filesystems and allow userspace to detect if Posix ACLs are supported or not. setxattr already gets this right. Signed-off-by: Christoph Hellwig --- diff --git a/fs/hfsplus/ioctl.c b/fs/hfsplus/ioctl.c index 80eb5b3a5edd..5b4667e08ef7 100644 --- a/fs/hfsplus/ioctl.c +++ b/fs/hfsplus/ioctl.c @@ -192,7 +192,7 @@ ssize_t hfsplus_getxattr(struct dentry *dentry, const char *name, } else res = size ? -ERANGE : 4; } else - res = -ENODATA; + res = -EOPNOTSUPP; out: if (size) hfs_find_exit(&fd);