diff options
-rw-r--r-- | include/linux/posix_acl_xattr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/posix_acl_xattr.h b/include/linux/posix_acl_xattr.h index 5efd0a6dad94..fe271c1947b2 100644 --- a/include/linux/posix_acl_xattr.h +++ b/include/linux/posix_acl_xattr.h | |||
@@ -23,13 +23,13 @@ | |||
23 | #define ACL_UNDEFINED_ID (-1) | 23 | #define ACL_UNDEFINED_ID (-1) |
24 | 24 | ||
25 | typedef struct { | 25 | typedef struct { |
26 | __u16 e_tag; | 26 | __le16 e_tag; |
27 | __u16 e_perm; | 27 | __le16 e_perm; |
28 | __u32 e_id; | 28 | __le32 e_id; |
29 | } posix_acl_xattr_entry; | 29 | } posix_acl_xattr_entry; |
30 | 30 | ||
31 | typedef struct { | 31 | typedef struct { |
32 | __u32 a_version; | 32 | __le32 a_version; |
33 | posix_acl_xattr_entry a_entries[0]; | 33 | posix_acl_xattr_entry a_entries[0]; |
34 | } posix_acl_xattr_header; | 34 | } posix_acl_xattr_header; |
35 | 35 | ||