diff options
Diffstat (limited to 'fs/jffs2/xattr.h')
-rw-r--r-- | fs/jffs2/xattr.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/jffs2/xattr.h b/fs/jffs2/xattr.h index e2aa2394ab64..2c199856c582 100644 --- a/fs/jffs2/xattr.h +++ b/fs/jffs2/xattr.h | |||
@@ -20,11 +20,11 @@ | |||
20 | struct jffs2_xattr_datum | 20 | struct jffs2_xattr_datum |
21 | { | 21 | { |
22 | void *always_null; | 22 | void *always_null; |
23 | u8 class; | ||
24 | u8 flags; | ||
25 | u16 xprefix; /* see JFFS2_XATTR_PREFIX_* */ | ||
26 | |||
27 | struct jffs2_raw_node_ref *node; | 23 | struct jffs2_raw_node_ref *node; |
24 | uint8_t class; | ||
25 | uint8_t flags; | ||
26 | uint16_t xprefix; /* see JFFS2_XATTR_PREFIX_* */ | ||
27 | |||
28 | struct list_head xindex; /* chained from c->xattrindex[n] */ | 28 | struct list_head xindex; /* chained from c->xattrindex[n] */ |
29 | uint32_t refcnt; /* # of xattr_ref refers this */ | 29 | uint32_t refcnt; /* # of xattr_ref refers this */ |
30 | uint32_t xid; | 30 | uint32_t xid; |
@@ -42,11 +42,11 @@ struct jffs2_inode_cache; | |||
42 | struct jffs2_xattr_ref | 42 | struct jffs2_xattr_ref |
43 | { | 43 | { |
44 | void *always_null; | 44 | void *always_null; |
45 | u8 class; | 45 | struct jffs2_raw_node_ref *node; |
46 | u8 flags; /* Currently unused */ | 46 | uint8_t class; |
47 | uint8_t flags; /* Currently unused */ | ||
47 | u16 unused; | 48 | u16 unused; |
48 | 49 | ||
49 | struct jffs2_raw_node_ref *node; | ||
50 | union { | 50 | union { |
51 | struct jffs2_inode_cache *ic; /* reference to jffs2_inode_cache */ | 51 | struct jffs2_inode_cache *ic; /* reference to jffs2_inode_cache */ |
52 | uint32_t ino; /* only used in scanning/building */ | 52 | uint32_t ino; /* only used in scanning/building */ |