aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRob Norris <[email protected]>2024-08-04 09:42:35 +1000
committerBrian Behlendorf <[email protected]>2024-09-18 11:23:50 -0700
commit3d37b1d6d49df47d02ff86f7a531c2f305043535 (patch)
tree5a1c832fef212e9c804e2164b71b34acaa2cf83d /include
parent67b0c883dff164a8b5713f78f26d9624ac5f57ba (diff)
config: remove HAVE_POSIX_ACL_RELEASE and HAVE_POSIX_ACL_RELEASE_GPL_ONLY
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Tony Hutter <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Signed-off-by: Rob Norris <[email protected]> Closes #16479
Diffstat (limited to 'include')
-rw-r--r--include/os/linux/kernel/linux/vfs_compat.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/os/linux/kernel/linux/vfs_compat.h b/include/os/linux/kernel/linux/vfs_compat.h
index 9f7bce424..4a5dc957c 100644
--- a/include/os/linux/kernel/linux/vfs_compat.h
+++ b/include/os/linux/kernel/linux/vfs_compat.h
@@ -174,9 +174,6 @@ lseek_execute(
#include <linux/posix_acl.h>
-#if defined(HAVE_POSIX_ACL_RELEASE) && !defined(HAVE_POSIX_ACL_RELEASE_GPL_ONLY)
-#define zpl_posix_acl_release(arg) posix_acl_release(arg)
-#else
void zpl_posix_acl_release_impl(struct posix_acl *);
static inline void
@@ -192,7 +189,6 @@ zpl_posix_acl_release(struct posix_acl *acl)
zpl_posix_acl_release_impl(acl);
#endif
}
-#endif /* HAVE_POSIX_ACL_RELEASE */
#ifdef HAVE_SET_CACHED_ACL_USABLE
#define zpl_set_cached_acl(ip, ty, n) set_cached_acl(ip, ty, n)