linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] posix_acl_xattr: fix endianness warnings
@ 2005-02-16 21:19 Alexey Dobriyan
  0 siblings, 0 replies; only message in thread
From: Alexey Dobriyan @ 2005-02-16 21:19 UTC (permalink / raw)
  To: Al Viro; +Cc: linux-kernel

Fix endianness warnings in fs/xattr_acl.c, fs/xfs/xfs_acl.c. Adds some in
fs/cifs/cifssmb.c ("21 insertions(+), 39 deletions(-)").

Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru>

Index: linux-warnings/include/linux/posix_acl_xattr.h
===================================================================
--- linux-warnings/include/linux/posix_acl_xattr.h	(revision 6)
+++ linux-warnings/include/linux/posix_acl_xattr.h	(revision 7)
@@ -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;
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-02-16 20:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-16 21:19 [PATCH] posix_acl_xattr: fix endianness warnings Alexey Dobriyan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).