Skip to content

Commit

Permalink
Increase maximum permitted ACL entries (#249)
Browse files Browse the repository at this point in the history
Allow up to ZFS internal maximum ACL entries

Signed-off-by: Andrew Walker <[email protected]>
  • Loading branch information
anodos325 committed Aug 15, 2024
1 parent e117535 commit e36ac60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/os/linux/zfs/zpl_xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ zpl_permission(struct inode *ip, int mask)
#define ACE4_SPECIAL_OWNER 1
#define ACE4_SPECIAL_GROUP 2
#define ACE4_SPECIAL_EVERYONE 3
#define NFS41ACL_MAX_ACES 128
#define NFS41ACL_MAX_ACES MAX_ACL_ENTRIES
#define NFS41_FLAGS (ACE_DIRECTORY_INHERIT_ACE| \
ACE_FILE_INHERIT_ACE| \
ACE_NO_PROPAGATE_INHERIT_ACE| \
Expand Down

0 comments on commit e36ac60

Please sign in to comment.