diff options
author | Josef Bacik <josef@toxicpanda.com> | 2022-10-24 20:46:57 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-12-05 18:00:44 +0100 |
commit | a0231804affe78d27264811559ee31bd341c2bff (patch) | |
tree | 7e4b073c593234afa289ff9aceb7c194a17e8729 /fs/btrfs/inode.c | |
parent | btrfs: move btrfs_account_ro_block_groups_free_space into space-info.c (diff) | |
download | linux-a0231804affe78d27264811559ee31bd341c2bff.tar.xz linux-a0231804affe78d27264811559ee31bd341c2bff.zip |
btrfs: move extent-tree helpers into their own header file
Move all the extent tree related prototypes to extent-tree.h out of
ctree.h, and then go include it everywhere needed so everything
compiles.
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/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 78867a084428..cb2a35b19c75 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -57,6 +57,7 @@ #include "inode-item.h" #include "fs.h" #include "accessors.h" +#include "extent-tree.h" struct btrfs_iget_args { u64 ino; |