diff options
author | Josef Bacik <josef@toxicpanda.com> | 2019-09-23 16:05:19 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-11-18 12:46:47 +0100 |
commit | 9c7d3a548331e72ba3613eaa5c8a74839462b764 (patch) | |
tree | 6e3e7a011b1085121feb1cda159c4074492895c5 /fs/btrfs/extent_io.c | |
parent | btrfs: separate out the extent io init function (diff) | |
download | linux-9c7d3a548331e72ba3613eaa5c8a74839462b764.tar.xz linux-9c7d3a548331e72ba3613eaa5c8a74839462b764.zip |
btrfs: move extent_io_tree defs to their own header
extent_io.c/h are huge, encompassing a bunch of different things. The
extent_io_tree code can live on its own, so separate this out.
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.c')
-rw-r--r-- | fs/btrfs/extent_io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index dffa7c6373e1..09fd5e740fa5 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -14,6 +14,7 @@ #include <linux/prefetch.h> #include <linux/cleancache.h> #include "extent_io.h" +#include "extent-io-tree.h" #include "extent_map.h" #include "ctree.h" #include "btrfs_inode.h" |