diff options
author | Nikolay Borisov <nborisov@suse.com> | 2018-11-01 14:09:53 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-12-17 14:51:29 +0100 |
commit | abbb55f4cd56dffb20ba7dd8dfc53154c79934f1 (patch) | |
tree | c0ce69c4035be9e1468856bf7ef5de7314b3cfc7 /fs/btrfs/extent_io.h | |
parent | 5c848198aad3ad1c68309aa7002fa571a540568c (diff) | |
download | linux-next-abbb55f4cd56dffb20ba7dd8dfc53154c79934f1.tar.gz |
btrfs: Remove extent_io_ops::split_extent_hook callback
This is the counterpart to merge_extent_hook, similarly, it's used only
for data/freespace inodes so let's remove it, rename it and call it
directly where necessary. 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 | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index 7d181a378d90..d96fd534f144 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h @@ -102,12 +102,6 @@ struct extent_io_ops { struct page *page, u64 start, u64 end, int mirror); int (*readpage_io_failed_hook)(struct page *page, int failed_mirror); - - /* - * Optional hooks, called if the pointer is not NULL - */ - void (*split_extent_hook)(void *private_data, - struct extent_state *orig, u64 split); }; struct extent_io_tree { |