diff options
author | Christoph Hellwig <hch@lst.de> | 2006-09-27 20:57:52 -0400 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2006-09-27 20:57:52 -0400 |
commit | 397b5208d5609e2f01b171a34ab690f325253492 (patch) | |
tree | 5ca1934ecc40839cf66b609209a72ec89f58c165 /fs | |
parent | b113bcb83efb411f3cc6c7692fbf933ed01b67d8 (diff) |
[XFS] endianess annotations for xfs_bmbt_ptr_t/xfs_bmdr_ptr_t
SGI-PV: 954580
SGI-Modid: xfs-linux-melb:xfs-kern:26559a
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/xfs_bmap_btree.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap_btree.h b/fs/xfs/xfs_bmap_btree.h index 6478cfa0e539..9137ec7e5512 100644 --- a/fs/xfs/xfs_bmap_btree.h +++ b/fs/xfs/xfs_bmap_btree.h | |||
@@ -168,8 +168,10 @@ typedef struct xfs_bmbt_key | |||
168 | xfs_dfiloff_t br_startoff; /* starting file offset */ | 168 | xfs_dfiloff_t br_startoff; /* starting file offset */ |
169 | } xfs_bmbt_key_t, xfs_bmdr_key_t; | 169 | } xfs_bmbt_key_t, xfs_bmdr_key_t; |
170 | 170 | ||
171 | typedef xfs_dfsbno_t xfs_bmbt_ptr_t, xfs_bmdr_ptr_t; /* btree pointer type */ | 171 | /* btree pointer type */ |
172 | /* btree block header type */ | 172 | typedef __be64 xfs_bmbt_ptr_t, xfs_bmdr_ptr_t; |
173 | |||
174 | /* btree block header type */ | ||
173 | typedef struct xfs_btree_lblock xfs_bmbt_block_t; | 175 | typedef struct xfs_btree_lblock xfs_bmbt_block_t; |
174 | 176 | ||
175 | #define XFS_BUF_TO_BMBT_BLOCK(bp) ((xfs_bmbt_block_t *)XFS_BUF_PTR(bp)) | 177 | #define XFS_BUF_TO_BMBT_BLOCK(bp) ((xfs_bmbt_block_t *)XFS_BUF_PTR(bp)) |