btrfs: remove unnecessary -ERANGE check in btrfs_get_acl
[sfrench/cifs-2.6.git] / fs / btrfs / acl.c
index 15e1dfef56a5915a5979c3b74c513a714cc310c6..a1d7211c88846fa5e4ace5acf01ff4499c309ce4 100644 (file)
@@ -30,10 +30,10 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
                name = XATTR_NAME_POSIX_ACL_DEFAULT;
                break;
        default:
-               BUG();
+               return ERR_PTR(-EINVAL);
        }
 
-       size = btrfs_getxattr(inode, name, "", 0);
+       size = btrfs_getxattr(inode, name, NULL, 0);
        if (size > 0) {
                value = kzalloc(size, GFP_KERNEL);
                if (!value)
@@ -42,7 +42,7 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
        }
        if (size > 0) {
                acl = posix_acl_from_xattr(&init_user_ns, value, size);
-       } else if (size == -ERANGE || size == -ENODATA || size == 0) {
+       } else if (size == -ENODATA || size == 0) {
                acl = NULL;
        } else {
                acl = ERR_PTR(-EIO);