aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_dir2_block.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-03-17 01:27:28 -0500
committerNathan Scott <nathans@sgi.com>2006-03-17 01:27:28 -0500
commitafbcb3f91903bcd34d470efe64b3738257178667 (patch)
treee2dbfefdd7c711e8335079096c0f4f713a28630e /fs/xfs/xfs_dir2_block.c
parent68b3a1024a7cda4afaacb3d25e6ac234ddfc0834 (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_block.c')
-rw-r--r--fs/xfs/xfs_dir2_block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_dir2_block.c b/fs/xfs/xfs_dir2_block.c
index e9d298f06ca2..f70640c6b703 100644
--- a/fs/xfs/xfs_dir2_block.c
+++ b/fs/xfs/xfs_dir2_block.c
@@ -914,11 +914,11 @@ xfs_dir2_leaf_to_block(
914 */ 914 */
915 while (dp->i_d.di_size > mp->m_dirblksize) { 915 while (dp->i_d.di_size > mp->m_dirblksize) {
916 bestsp = XFS_DIR2_LEAF_BESTS_P(ltp); 916 bestsp = XFS_DIR2_LEAF_BESTS_P(ltp);
917 if (be16_to_cpu(bestsp[INT_GET(ltp->bestcount, ARCH_CONVERT) - 1]) == 917 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
918 mp->m_dirblksize - (uint)sizeof(block->hdr)) { 918 mp->m_dirblksize - (uint)sizeof(block->hdr)) {
919 if ((error = 919 if ((error =
920 xfs_dir2_leaf_trim_data(args, lbp, 920 xfs_dir2_leaf_trim_data(args, lbp,
921 (xfs_dir2_db_t)(INT_GET(ltp->bestcount, ARCH_CONVERT) - 1)))) 921 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
922 goto out; 922 goto out;
923 } else { 923 } else {
924 error = 0; 924 error = 0;