diff options
author | Christoph Hellwig <hch@lst.de> | 2005-06-23 00:10:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 09:45:33 -0700 |
commit | f9fd27a253d5e0b23531d12ce7ad15b6535d4486 (patch) | |
tree | 1ff92c3b1ec8c707f71154313ce98e73423b6d54 /include | |
parent | 30aaa80885df5d1518d498a450e73282cea8d8b1 (diff) | |
download | linux-3.10-f9fd27a253d5e0b23531d12ce7ad15b6535d4486.tar.gz linux-3.10-f9fd27a253d5e0b23531d12ce7ad15b6535d4486.tar.bz2 linux-3.10-f9fd27a253d5e0b23531d12ce7ad15b6535d4486.zip |
[PATCH] acl endianess annotations
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-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 5efd0a6dad9..fe271c1947b 100644 --- a/include/linux/posix_acl_xattr.h +++ b/include/linux/posix_acl_xattr.h @@ -23,13 +23,13 @@ #define ACL_UNDEFINED_ID (-1) typedef struct { - __u16 e_tag; - __u16 e_perm; - __u32 e_id; + __le16 e_tag; + __le16 e_perm; + __le32 e_id; } posix_acl_xattr_entry; typedef struct { - __u32 a_version; + __le32 a_version; posix_acl_xattr_entry a_entries[0]; } posix_acl_xattr_header; |