diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2016-09-27 13:03:23 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-27 21:52:00 -0400 |
commit | bc8bcf3b150a29cd8d3f17a1aeb19a804ea683fa (patch) | |
tree | 8bc2a95170c0debf3b3c58379e00dd876f95f3d6 /include/linux/posix_acl_xattr.h | |
parent | 2211d5ba5c6c4e972ba6dbc912b2897425ea6621 (diff) | |
download | linux-rt-bc8bcf3b150a29cd8d3f17a1aeb19a804ea683fa.tar.gz |
posix_acl: uapi header split
Export the base definitions and the xattr representation of POSIX ACLs
to user space.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/posix_acl_xattr.h')
-rw-r--r-- | include/linux/posix_acl_xattr.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/include/linux/posix_acl_xattr.h b/include/linux/posix_acl_xattr.h index d23d36842322..8b867e3bf3aa 100644 --- a/include/linux/posix_acl_xattr.h +++ b/include/linux/posix_acl_xattr.h @@ -10,25 +10,9 @@ #define _POSIX_ACL_XATTR_H #include <uapi/linux/xattr.h> +#include <uapi/linux/posix_acl_xattr.h> #include <linux/posix_acl.h> -/* Supported ACL a_version fields */ -#define POSIX_ACL_XATTR_VERSION 0x0002 - -/* An undefined entry e_id value */ -#define ACL_UNDEFINED_ID (-1) - -struct posix_acl_xattr_entry { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -}; - -struct posix_acl_xattr_header { - __le32 a_version; -}; - - static inline size_t posix_acl_xattr_size(int count) { |