diff options
author | Nathan Scott <nathans@sgi.com> | 2006-03-17 01:26:52 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-17 01:26:52 -0500 |
commit | 70e73f59755867383edf563d5a5cbea614c0fd49 (patch) | |
tree | 6850f22b47754078b1695aad1ade7bf9705dc52a /fs/xfs/xfs_da_btree.c | |
parent | 9cea236492ebabb9545564eb039aa0f477a05c96 (diff) |
[XFS] endianess annotations for xfs_dir2_data_hdr structure.
SGI-PV: 943272
SGI-Modid: xfs-linux-melb:xfs-kern:25484a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_da_btree.c')
-rw-r--r-- | fs/xfs/xfs_da_btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c index 473671fa5c13..96517d29e22c 100644 --- a/fs/xfs/xfs_da_btree.c +++ b/fs/xfs/xfs_da_btree.c | |||
@@ -2204,7 +2204,7 @@ xfs_da_do_buf( | |||
2204 | data = rbp->data; | 2204 | data = rbp->data; |
2205 | free = rbp->data; | 2205 | free = rbp->data; |
2206 | magic = INT_GET(info->magic, ARCH_CONVERT); | 2206 | magic = INT_GET(info->magic, ARCH_CONVERT); |
2207 | magic1 = INT_GET(data->hdr.magic, ARCH_CONVERT); | 2207 | magic1 = be32_to_cpu(data->hdr.magic); |
2208 | if (unlikely( | 2208 | if (unlikely( |
2209 | XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) && | 2209 | XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) && |
2210 | (magic != XFS_DIR_LEAF_MAGIC) && | 2210 | (magic != XFS_DIR_LEAF_MAGIC) && |