From 47fbbfae81c46be0bbb065d68c8b549d5ce18228 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Thu, 4 Jul 2002 00:16:05 +0000 Subject: [PATCH] sync with kernel changes, noop for userspace. --- include/xfs_acl.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/xfs_acl.h b/include/xfs_acl.h index b91d36358..f32d5db7c 100644 --- a/include/xfs_acl.h +++ b/include/xfs_acl.h @@ -97,9 +97,8 @@ extern struct xfs_zone *xfs_acl_zone; #define _ACL_ACCESS_EXISTS xfs_acl_vhasacl_access #define _ACL_DEFAULT_EXISTS xfs_acl_vhasacl_default #define _ACL_XFS_IACCESS(i,m,c) (XFS_IFORK_Q(i) ? xfs_acl_iaccess(i,m,c) : -1) - -#define set_acl_flag(inode) ((inode)->i_flags |= S_POSIXACL) -#define clear_acl_flag(inode) ((inode)->i_flags &= ~S_POSIXACL) +#define _ACL_SET_IFLAG(inode) ((inode)->i_flags |= S_POSIXACL) +#define _ACL_CLEAR_IFLAG(inode) ((inode)->i_flags &= ~S_POSIXACL) #else #define xfs_acl_vset(v,p,sz,t) (-ENOTSUP) @@ -116,8 +115,8 @@ extern struct xfs_zone *xfs_acl_zone; #define _ACL_ACCESS_EXISTS (NULL) #define _ACL_DEFAULT_EXISTS (NULL) #define _ACL_XFS_IACCESS(i,m,c) (-1) -#define set_acl_flag(inode) do { } while (0) -#define clear_acl_flag(inode) do { } while (0) +#define _ACL_SET_IFLAG(inode) do { } while (0) +#define _ACL_CLEAR_IFLAG(inode) do { } while (0) #endif #endif /* __KERNEL__ */ -- 2.47.2