diff options
author | Nathan Scott <nathans@sgi.com> | 2006-03-17 01:27:28 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-17 01:27:28 -0500 |
commit | afbcb3f91903bcd34d470efe64b3738257178667 (patch) | |
tree | e2dbfefdd7c711e8335079096c0f4f713a28630e /fs/xfs/xfs_dir2_leaf.h | |
parent | 68b3a1024a7cda4afaacb3d25e6ac234ddfc0834 (diff) |
[XFS] endianess annotations for xfs_dir2_leaf_tail_t
SGI-PV: 943272
SGI-Modid: xfs-linux-melb:xfs-kern:25487a
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dir2_leaf.h')
-rw-r--r-- | fs/xfs/xfs_dir2_leaf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_dir2_leaf.h b/fs/xfs/xfs_dir2_leaf.h index 7fb32e954ce3..fcd3b7dea0f6 100644 --- a/fs/xfs/xfs_dir2_leaf.h +++ b/fs/xfs/xfs_dir2_leaf.h | |||
@@ -62,7 +62,7 @@ typedef struct xfs_dir2_leaf_entry { | |||
62 | * Leaf block tail. | 62 | * Leaf block tail. |
63 | */ | 63 | */ |
64 | typedef struct xfs_dir2_leaf_tail { | 64 | typedef struct xfs_dir2_leaf_tail { |
65 | __uint32_t bestcount; | 65 | __be32 bestcount; |
66 | } xfs_dir2_leaf_tail_t; | 66 | } xfs_dir2_leaf_tail_t; |
67 | 67 | ||
68 | /* | 68 | /* |
@@ -108,7 +108,7 @@ xfs_dir2_leaf_tail_p(struct xfs_mount *mp, xfs_dir2_leaf_t *lp) | |||
108 | static inline __be16 * | 108 | static inline __be16 * |
109 | xfs_dir2_leaf_bests_p(xfs_dir2_leaf_tail_t *ltp) | 109 | xfs_dir2_leaf_bests_p(xfs_dir2_leaf_tail_t *ltp) |
110 | { | 110 | { |
111 | return (__be16 *)(ltp) - INT_GET((ltp)->bestcount, ARCH_CONVERT); | 111 | return (__be16 *)ltp - be32_to_cpu(ltp->bestcount); |
112 | } | 112 | } |
113 | 113 | ||
114 | /* | 114 | /* |