diff options
author | Brian Behlendorf <[email protected]> | 2016-08-02 10:50:52 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-08-08 11:46:32 -0700 |
commit | e85a6396b0f7f3cb5a76cf88e47fc1334f9162b7 (patch) | |
tree | e6d18dd2f7fbe837442671db4b211309a9e481dc /module | |
parent | 64aefee1b847b747147016c039f5b0e276a9e1b7 (diff) |
Retire HAVE_CURRENT_UMASK and HAVE_POSIX_ACL_CACHING
Remove ZFS_AC_KERNEL_CURRENT_UMASK and ZFS_AC_KERNEL_POSIX_ACL_CACHING
configure checks, all supported kernel provide this functionality.
Signed-off-by: Brian Behlendorf <[email protected]>
Signed-off-by: Nikolay Borisov <[email protected]>
Signed-off-by: Chunwei Chen <[email protected]>
Closes #4922
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/zpl_xattr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/module/zfs/zpl_xattr.c b/module/zfs/zpl_xattr.c index 23c63a587..6dab895e0 100644 --- a/module/zfs/zpl_xattr.c +++ b/module/zfs/zpl_xattr.c @@ -1017,11 +1017,9 @@ zpl_get_acl(struct inode *ip, int type) char *name; int size; -#ifdef HAVE_POSIX_ACL_CACHING acl = get_cached_acl(ip, type); if (acl != ACL_NOT_CACHED) return (acl); -#endif /* HAVE_POSIX_ACL_CACHING */ switch (type) { case ACL_TYPE_ACCESS: |