Przeglądaj źródła

btrfs: Replace -ENOENT by -ERANGE in btrfs_get_acl()

size contains the value returned by posix_acl_from_xattr(), which
returns -ERANGE, -ENODATA, zero, or an integer greater than zero. So
replace -ENOENT by -ERANGE.

Signed-off-by: Salah Triki <salah.triki@gmail.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Salah Triki 9 lat temu
rodzic
commit
a60617d0ae
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      fs/btrfs/acl.c

+ 1 - 2
fs/btrfs/acl.c

@@ -55,8 +55,7 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
 	}
 	}
 	if (size > 0) {
 	if (size > 0) {
 		acl = posix_acl_from_xattr(&init_user_ns, value, size);
 		acl = posix_acl_from_xattr(&init_user_ns, value, size);
-	} else if (size == -ENOENT || size == -ENODATA || size == 0) {
-		/* FIXME, who returns -ENOENT?  I think nobody */
+	} else if (size == -ERANGE || size == -ENODATA || size == 0) {
 		acl = NULL;
 		acl = NULL;
 	} else {
 	} else {
 		acl = ERR_PTR(-EIO);
 		acl = ERR_PTR(-EIO);