summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGvozden Neskovic <[email protected]>2016-11-09 22:53:13 +0100
committerBrian Behlendorf <[email protected]>2017-02-03 10:25:15 -0800
commit9dd467a2715df0c7b1484d29b7486b4c6ed39bf8 (patch)
treefe3bc2d03fa59c7bb2a5469558ba308147842791
parent6ebfe58117d478a369bea929973f4ac381aa6dea (diff)
Fix ZFS_AC_KERNEL_SET_CACHED_ACL_USABLE check
Pass `ACL_TYPE_ACCESS` for type parameter of `set_cached_acl()` and `forget_cached_acl()` to avoid removal of dead code after BUG() in compile time. Tested on 3.2.0 kernel. Introduced in 3779913 Reviewed-by: Massimo Maggi <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Chunwei Chen <[email protected]> Signed-off-by: Gvozden Neskovic <[email protected]> Closes #5378
-rw-r--r--config/kernel-acl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config/kernel-acl.m4 b/config/kernel-acl.m4
index f5af7c2f4..b2c33f1c4 100644
--- a/config/kernel-acl.m4
+++ b/config/kernel-acl.m4
@@ -57,8 +57,8 @@ AC_DEFUN([ZFS_AC_KERNEL_SET_CACHED_ACL_USABLE], [
],[
struct inode *ip = NULL;
struct posix_acl *acl = posix_acl_alloc(1, 0);
- set_cached_acl(ip, 0, acl);
- forget_cached_acl(ip, 0);
+ set_cached_acl(ip, ACL_TYPE_ACCESS, acl);
+ forget_cached_acl(ip, ACL_TYPE_ACCESS);
],[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SET_CACHED_ACL_USABLE, 1,