diff options
author | David Sterba <dsterba@suse.com> | 2019-08-21 19:57:04 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-09-09 14:59:15 +0200 |
commit | 67b61aefcef3842a360e6c603860a785fd971c7a (patch) | |
tree | 8473d83a10d61a4bc2da39f42a4dd005ed3276a9 /fs/btrfs/ctree.h | |
parent | btrfs: move functions for tree compare to send.c (diff) | |
download | linux-67b61aefcef3842a360e6c603860a785fd971c7a.tar.xz linux-67b61aefcef3842a360e6c603860a785fd971c7a.zip |
btrfs: move struct io_ctl to free-space-cache.h
The io_ctl structure is used for free space management, and used only by
the v1 space cache code, but unfortunatlly the full definition is
required by block-group.h so it can't be moved to free-space-cache.c
without additional changes.
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 17cd88521ad2..0b6eca746fd4 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -434,20 +434,6 @@ enum btrfs_caching_type { BTRFS_CACHE_ERROR, }; -struct btrfs_io_ctl { - void *cur, *orig; - struct page *page; - struct page **pages; - struct btrfs_fs_info *fs_info; - struct inode *inode; - unsigned long size; - int index; - int num_pages; - int entries; - int bitmaps; - unsigned check_crcs:1; -}; - /* * Tree to record all locked full stripes of a RAID5/6 block group */ |