vserver 1.9.5.x5
[linux-2.6.git] / fs / jfs / jfs_xattr.h
index acc196e..a1052f3 100644 (file)
 struct jfs_ea {
        u8 flag;        /* Unused? */
        u8 namelen;     /* Length of name */
-       u16 valuelen;   /* Length of value */
+       __le16 valuelen;        /* Length of value */
        char name[0];   /* Attribute name (includes null-terminator) */
 };                     /* Value immediately follows name */
 
 struct jfs_ea_list {
-       u32 size;               /* overall size */
+       __le32 size;            /* overall size */
        struct jfs_ea ea[0];    /* Variable length list */
 };