aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_dir_leaf.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_dir_leaf.h')
-rw-r--r--fs/xfs/xfs_dir_leaf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_dir_leaf.h b/fs/xfs/xfs_dir_leaf.h
index c6979ab829c..7ca5845195d 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
85typedef struct xfs_dir_leaf_entry { /* sorted on key, not name */ 85typedef 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
92typedef struct xfs_dir_leaf_name { 92typedef struct xfs_dir_leaf_name {