diff options
author | 2007-08-27 15:17:54 -0400 | |
---|---|---|
committer | 2007-08-27 15:17:54 -0400 | |
commit | 320206112895c72f98e57570ae194689dcd7fe56 (patch) | |
tree | 5b87e58572cb2df8bf7bec8445a9b4fb72423c1a | |
parent | Btrfs: Added tag v0.7 for changeset 6125224d77d0 (diff) | |
download | linux-dev-320206112895c72f98e57570ae194689dcd7fe56.tar.xz linux-dev-320206112895c72f98e57570ae194689dcd7fe56.zip |
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>
-rw-r--r-- | fs/btrfs/ctree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 7cf43da5e78e..51eea5ccb645 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)); } |