Whamcloud - gitweb
LU-14291 lustre: clean up lustre_eacl.h and make server-only
[fs/lustre-release.git] / lustre / include / lustre_eacl.h
index 347a8dc..68062dc 100644 (file)
 # include <linux/fs.h>
 # include <lustre_compat.h>
 
-typedef struct {
-        __u16                   e_tag;
-        __u16                   e_perm;
-        __u32                   e_id;
-        __u32                   e_stat;
-} ext_acl_xattr_entry;
-
-typedef struct {
-        __u32                   a_count;
-        ext_acl_xattr_entry     a_entries[0];
-} ext_acl_xattr_header;
-
-#define CFS_ACL_XATTR_SIZE(count, prefix) \
-        (sizeof(prefix ## _header) + (count) * sizeof(prefix ## _entry))
-
-#define CFS_ACL_XATTR_COUNT(size, prefix) \
-        (((size) - sizeof(prefix ## _header)) / sizeof(prefix ## _entry))
-
 #ifdef HAVE_SERVER_SUPPORT
 struct lu_ucred;
 struct lu_attr;
@@ -77,7 +59,8 @@ struct lustre_idmap_table;
 #endif
 
 extern int lustre_posix_acl_permission(struct lu_ucred *mu,
-                                       const struct lu_attr *la, int want,
+                                       const struct lu_attr *la,
+                                       unsigned int may_mask,
                                        posix_acl_xattr_entry *entry,
                                        int count);
 extern int lustre_posix_acl_chmod_masq(posix_acl_xattr_entry *entry,