diff options
author | Christoph Hellwig <hch@lst.de> | 2006-06-09 00:50:37 -0400 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-09 00:50:37 -0400 |
commit | 1d8daf06f67c8920a640eb61b30c3176ecc52405 (patch) | |
tree | b5ee131d524177d05d7f5cacdfd662f65246ca7c /fs/xfs/xfs_dir_leaf.h | |
parent | 8034fff39bb9430d807375ec7a04097efba42cd2 (diff) |
[XFS] endianess annotations for xfs_dir_leaf_entry_t
SGI-PV: 943272
SGI-Modid: xfs-linux-melb:xfs-kern:25808a
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dir_leaf.h')
-rw-r--r-- | fs/xfs/xfs_dir_leaf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_dir_leaf.h b/fs/xfs/xfs_dir_leaf.h index c6979ab829cb..7ca5845195d5 100644 --- a/fs/xfs/xfs_dir_leaf.h +++ b/fs/xfs/xfs_dir_leaf.h | |||
@@ -83,10 +83,10 @@ typedef struct xfs_dir_leaf_hdr { /* constant-structure header block */ | |||
83 | } xfs_dir_leaf_hdr_t; | 83 | } xfs_dir_leaf_hdr_t; |
84 | 84 | ||
85 | typedef struct xfs_dir_leaf_entry { /* sorted on key, not name */ | 85 | typedef struct xfs_dir_leaf_entry { /* sorted on key, not name */ |
86 | xfs_dahash_t hashval; /* hash value of name */ | 86 | __be32 hashval; /* hash value of name */ |
87 | __uint16_t nameidx; /* index into buffer of name */ | 87 | __be16 nameidx; /* index into buffer of name */ |
88 | __uint8_t namelen; /* length of name string */ | 88 | __u8 namelen; /* length of name string */ |
89 | __uint8_t pad2; | 89 | __u8 pad2; |
90 | } xfs_dir_leaf_entry_t; | 90 | } xfs_dir_leaf_entry_t; |
91 | 91 | ||
92 | typedef struct xfs_dir_leaf_name { | 92 | typedef struct xfs_dir_leaf_name { |