aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLachlan McIlroy <lachlan@sgi.com>2007-02-10 18:35:27 +1100
committerTim Shimmin <tes@sgi.com>2007-02-10 18:35:27 +1100
commit1c91ad3aedba82a64ae06a5a0a5651105d378112 (patch)
tree47eef142ac5a8ff00876b603e1156c2fcb719c54 /fs
parent[XFS] use struct kvec in struct uio (diff)
downloadlinux-dev-1c91ad3aedba82a64ae06a5a0a5651105d378112.tar.xz
linux-dev-1c91ad3aedba82a64ae06a5a0a5651105d378112.zip
[XFS] fix sparse warning in xfs_da_btree.c
SGI-PV: 954580 SGI-Modid: xfs-linux-melb:xfs-kern:27702a Signed-off-by: Lachlan McIlroy <lachlan@sgi.com> Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/xfs_da_btree.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c
index a68bc1f1a313..cccf69edb81b 100644
--- a/fs/xfs/xfs_da_btree.c
+++ b/fs/xfs/xfs_da_btree.c
@@ -1090,8 +1090,7 @@ xfs_da_node_lookup_int(xfs_da_state_t *state, int *result)
if (blk->magic == XFS_DA_NODE_MAGIC) {
node = blk->bp->data;
max = be16_to_cpu(node->hdr.count);
- btreehashval = node->btree[max-1].hashval;
- blk->hashval = be32_to_cpu(btreehashval);
+ blk->hashval = be32_to_cpu(node->btree[max-1].hashval);
/*
* Binary search. (note: small blocks will skip loop)