aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorYan <yanzheng@21cn.com>2007-08-27 15:17:54 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-08-27 15:17:54 -0400
commit320206112895c72f98e57570ae194689dcd7fe56 (patch)
tree5b87e58572cb2df8bf7bec8445a9b4fb72423c1a /fs
parent6d626f65041e3f99d2ec78c8437dd2195210d6b2 (diff)
fix block readahead in btrfs_next_leaf
Send the correct slot down to reada_for_search Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/ctree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 7cf43da5e78..51eea5ccb64 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -2120,7 +2120,7 @@ int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
if (!level)
break;
if (path->reada)
- reada_for_search(root, path, level, slot);
+ reada_for_search(root, path, level, 0);
next = read_tree_block(root,
btrfs_node_blockptr(btrfs_buffer_node(next), 0));
}