diff options
author | Nikolay Borisov <nborisov@suse.com> | 2018-11-01 15:09:49 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-12-17 16:51:28 +0300 |
commit | 65a680f6b7d6e83ca3a440588d3581f4a38265bf (patch) | |
tree | c87fba407cac4aa45c7d8ded8579e87e0df78703 /fs/btrfs/extent_io.h | |
parent | 7087a9d8db88ef9b7f8a30ac5706aa396b78e6c9 (diff) | |
download | linux-65a680f6b7d6e83ca3a440588d3581f4a38265bf.tar.xz |
btrfs: Remove extent_io_ops::check_extent_io_range callback
This callback was only used in debug builds by btrfs_leak_debug_check.
A better approach is to move its implementation in
btrfs_leak_debug_check and ensure the latter is only executed for extent
tree which have ->private_data set i.e. relate to a data node and not
the btree one. No functional changes.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.h')
-rw-r--r-- | fs/btrfs/extent_io.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index 415ea7c2b058..3cb84a0fbaab 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h @@ -116,8 +116,6 @@ struct extent_io_ops { struct extent_state *other); void (*split_extent_hook)(void *private_data, struct extent_state *orig, u64 split); - void (*check_extent_io_range)(void *private_data, const char *caller, - u64 start, u64 end); }; struct extent_io_tree { |