[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>
This commit is contained in:
Christoph Hellwig 2005-06-23 00:10:19 -07:00 committed by Linus Torvalds
parent 30aaa80885
commit f9fd27a253

View file

@ -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;