On 11.06.2018 07:55, Qu Wenruo wrote:
>
>
> On 2018年06月08日 20:47, Nikolay Borisov wrote:
>> They are not really needed, what free_extent_hook wants is really a
>> pointer to fs_info so give it to it directly. This is in preparation
>> of delayed refs code.
>
> Looks good, since free_extent_hook is only used by original mode and it
> doesn't involve any tree operation at all, it's a valid modification.
>
> Although I can't really see the relationship with delayed refs, hopes I
> could find it out when reviewing the rest patches.
I guess I failed to explain that in the cover letter, for more details
see my previous reply to your comments regarding 2/15. In short - I
wanted to remove the root argument from __free_extent in order to do
that I first had to remove it from its callees.
>
>>
>> Signed-off-by: Nikolay Borisov <nbori...@suse.com>
>
> Reviewed-by: Qu Wenruo <w...@suse.com>
>
> Thanks,
> Qu
>
>> ---
>> check/main.c | 5 ++---
>> ctree.h | 3 +--
>> extent-tree.c | 4 ++--
>> 3 files changed, 5 insertions(+), 7 deletions(-)
>>
>> diff --git a/check/main.c b/check/main.c
>> index 9a1f238800b0..b84903acdb25 100644
>> --- a/check/main.c
>> +++ b/check/main.c
>> @@ -6234,8 +6234,7 @@ static int add_root_to_pending(struct extent_buffer
>> *buf,
>> * we're tracking for repair. This hook makes sure we
>> * remove any backrefs for blocks as we are fixing them.
>> */
>> -static int free_extent_hook(struct btrfs_trans_handle *trans,
>> - struct btrfs_root *root,
>> +static int free_extent_hook(struct btrfs_fs_info *fs_info,
>> u64 bytenr, u64 num_bytes, u64 parent,
>> u64 root_objectid, u64 owner, u64 offset,
>> int refs_to_drop)
>> @@ -6243,7 +6242,7 @@ static int free_extent_hook(struct btrfs_trans_handle
>> *trans,
>> struct extent_record *rec;
>> struct cache_extent *cache;
>> int is_data;
>> - struct cache_tree *extent_cache = root->fs_info->fsck_extent_cache;
>> + struct cache_tree *extent_cache = fs_info->fsck_extent_cache;
>>
>> is_data = owner >= BTRFS_FIRST_FREE_OBJECTID;
>> cache = lookup_cache_extent(extent_cache, bytenr, num_bytes);
>> diff --git a/ctree.h b/ctree.h
>> index 082726238b91..b30a946658ce 100644
>> --- a/ctree.h
>> +++ b/ctree.h
>> @@ -1143,8 +1143,7 @@ struct btrfs_fs_info {
>>
>> int transaction_aborted;
>>
>> - int (*free_extent_hook)(struct btrfs_trans_handle *trans,
>> - struct btrfs_root *root,
>> + int (*free_extent_hook)(struct btrfs_fs_info *fs_info,
>> u64 bytenr, u64 num_bytes, u64 parent,
>> u64 root_objectid, u64 owner, u64 offset,
>> int refs_to_drop);
>> diff --git a/extent-tree.c b/extent-tree.c
>> index 6e7a19323efc..9132cb3f8e15 100644
>> --- a/extent-tree.c
>> +++ b/extent-tree.c
>> @@ -2163,8 +2163,8 @@ static int __free_extent(struct btrfs_trans_handle
>> *trans,
>> int skinny_metadata =
>> btrfs_fs_incompat(extent_root->fs_info, SKINNY_METADATA);
>>
>> - if (root->fs_info->free_extent_hook) {
>> - root->fs_info->free_extent_hook(trans, root, bytenr, num_bytes,
>> + if (trans->fs_info->free_extent_hook) {
>> + trans->fs_info->free_extent_hook(trans->fs_info, bytenr,
>> num_bytes,
>> parent, root_objectid,
>> owner_objectid,
>> owner_offset, refs_to_drop);
>>
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html