diff options
author | David Sterba <dsterba@suse.cz> | 2014-06-15 04:24:21 +0400 |
---|---|---|
committer | David Sterba <dsterba@suse.cz> | 2014-12-12 20:07:20 +0300 |
commit | c0dcaa4d7b66b788b315c418bda3cca75c5938dc (patch) | |
tree | e803cd49e551c29b5457457146657c5df1a5312e /fs/btrfs/disk-io.c | |
parent | b6ae40ec76dc7589d9f77bd281515be3ad58c533 (diff) | |
download | linux-c0dcaa4d7b66b788b315c418bda3cca75c5938dc.tar.xz |
btrfs: sink blocksize parameter to reada_tree_block_flagged
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index be9d7c612489..8123b03b1f9d 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -1086,7 +1086,7 @@ void readahead_tree_block(struct btrfs_root *root, u64 bytenr) free_extent_buffer(buf); } -int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize, +int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, int mirror_num, struct extent_buffer **eb) { struct extent_buffer *buf = NULL; @@ -1094,7 +1094,7 @@ int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize, struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree; int ret; - buf = btrfs_find_create_tree_block(root, bytenr, blocksize); + buf = btrfs_find_create_tree_block(root, bytenr, root->nodesize); if (!buf) return 0; |