mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-02 20:44:00 +00:00
btrfs: sink blocksize parameter to readahead_tree_block
All callers pass nodesize. Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
parent
9627aeee3e
commit
d3e46fea1b
5 changed files with 8 additions and 11 deletions
|
@ -2282,7 +2282,7 @@ static void reada_for_search(struct btrfs_root *root,
|
||||||
if ((search <= target && target - search <= 65536) ||
|
if ((search <= target && target - search <= 65536) ||
|
||||||
(search > target && search - target <= 65536)) {
|
(search > target && search - target <= 65536)) {
|
||||||
gen = btrfs_node_ptr_generation(node, nr);
|
gen = btrfs_node_ptr_generation(node, nr);
|
||||||
readahead_tree_block(root, search, blocksize);
|
readahead_tree_block(root, search);
|
||||||
nread += blocksize;
|
nread += blocksize;
|
||||||
}
|
}
|
||||||
nscan++;
|
nscan++;
|
||||||
|
@ -2301,7 +2301,6 @@ static noinline void reada_for_balance(struct btrfs_root *root,
|
||||||
u64 gen;
|
u64 gen;
|
||||||
u64 block1 = 0;
|
u64 block1 = 0;
|
||||||
u64 block2 = 0;
|
u64 block2 = 0;
|
||||||
int blocksize;
|
|
||||||
|
|
||||||
parent = path->nodes[level + 1];
|
parent = path->nodes[level + 1];
|
||||||
if (!parent)
|
if (!parent)
|
||||||
|
@ -2309,7 +2308,6 @@ static noinline void reada_for_balance(struct btrfs_root *root,
|
||||||
|
|
||||||
nritems = btrfs_header_nritems(parent);
|
nritems = btrfs_header_nritems(parent);
|
||||||
slot = path->slots[level + 1];
|
slot = path->slots[level + 1];
|
||||||
blocksize = root->nodesize;
|
|
||||||
|
|
||||||
if (slot > 0) {
|
if (slot > 0) {
|
||||||
block1 = btrfs_node_blockptr(parent, slot - 1);
|
block1 = btrfs_node_blockptr(parent, slot - 1);
|
||||||
|
@ -2334,9 +2332,9 @@ static noinline void reada_for_balance(struct btrfs_root *root,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (block1)
|
if (block1)
|
||||||
readahead_tree_block(root, block1, blocksize);
|
readahead_tree_block(root, block1);
|
||||||
if (block2)
|
if (block2)
|
||||||
readahead_tree_block(root, block2, blocksize);
|
readahead_tree_block(root, block2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1073,12 +1073,12 @@ static const struct address_space_operations btree_aops = {
|
||||||
.set_page_dirty = btree_set_page_dirty,
|
.set_page_dirty = btree_set_page_dirty,
|
||||||
};
|
};
|
||||||
|
|
||||||
void readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
|
void readahead_tree_block(struct btrfs_root *root, u64 bytenr)
|
||||||
{
|
{
|
||||||
struct extent_buffer *buf = NULL;
|
struct extent_buffer *buf = NULL;
|
||||||
struct inode *btree_inode = root->fs_info->btree_inode;
|
struct inode *btree_inode = root->fs_info->btree_inode;
|
||||||
|
|
||||||
buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
|
buf = btrfs_find_create_tree_block(root, bytenr, root->nodesize);
|
||||||
if (!buf)
|
if (!buf)
|
||||||
return;
|
return;
|
||||||
read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
|
read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
|
||||||
|
|
|
@ -46,7 +46,7 @@ struct btrfs_fs_devices;
|
||||||
|
|
||||||
struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
|
struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
|
||||||
u64 parent_transid);
|
u64 parent_transid);
|
||||||
void readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize);
|
void readahead_tree_block(struct btrfs_root *root, u64 bytenr);
|
||||||
int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize,
|
int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize,
|
||||||
int mirror_num, struct extent_buffer **eb);
|
int mirror_num, struct extent_buffer **eb);
|
||||||
struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
|
struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
|
||||||
|
|
|
@ -7485,7 +7485,7 @@ static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
reada:
|
reada:
|
||||||
readahead_tree_block(root, bytenr, blocksize);
|
readahead_tree_block(root, bytenr);
|
||||||
nread++;
|
nread++;
|
||||||
}
|
}
|
||||||
wc->reada_slot = slot;
|
wc->reada_slot = slot;
|
||||||
|
|
|
@ -2965,8 +2965,7 @@ int relocate_tree_blocks(struct btrfs_trans_handle *trans,
|
||||||
while (rb_node) {
|
while (rb_node) {
|
||||||
block = rb_entry(rb_node, struct tree_block, rb_node);
|
block = rb_entry(rb_node, struct tree_block, rb_node);
|
||||||
if (!block->key_ready)
|
if (!block->key_ready)
|
||||||
readahead_tree_block(rc->extent_root, block->bytenr,
|
readahead_tree_block(rc->extent_root, block->bytenr);
|
||||||
block->key.objectid);
|
|
||||||
rb_node = rb_next(rb_node);
|
rb_node = rb_next(rb_node);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue