btrfs: sink blocksize parameter to tree_block_processed
Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
parent
a83fffb75d
commit
7476dfdaad
|
@ -2855,9 +2855,10 @@ static void update_processed_blocks(struct reloc_control *rc,
|
|||
}
|
||||
}
|
||||
|
||||
static int tree_block_processed(u64 bytenr, u32 blocksize,
|
||||
struct reloc_control *rc)
|
||||
static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
|
||||
{
|
||||
u32 blocksize = rc->extent_root->nodesize;
|
||||
|
||||
if (test_range_bit(&rc->processed_blocks, bytenr,
|
||||
bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
|
||||
return 1;
|
||||
|
@ -3352,7 +3353,7 @@ static int __add_tree_block(struct reloc_control *rc,
|
|||
bool skinny = btrfs_fs_incompat(rc->extent_root->fs_info,
|
||||
SKINNY_METADATA);
|
||||
|
||||
if (tree_block_processed(bytenr, blocksize, rc))
|
||||
if (tree_block_processed(bytenr, rc))
|
||||
return 0;
|
||||
|
||||
if (tree_search(blocks, bytenr))
|
||||
|
@ -3610,7 +3611,7 @@ static int find_data_references(struct reloc_control *rc,
|
|||
if (added)
|
||||
goto next;
|
||||
|
||||
if (!tree_block_processed(leaf->start, leaf->len, rc)) {
|
||||
if (!tree_block_processed(leaf->start, rc)) {
|
||||
block = kmalloc(sizeof(*block), GFP_NOFS);
|
||||
if (!block) {
|
||||
err = -ENOMEM;
|
||||
|
|
Loading…
Reference in New Issue