Commit 16708a88 authored by Josef Bacik's avatar Josef Bacik Committed by David Sterba

btrfs: move btrfs_caching_type to block-group.h

This is a block group related definition, move it into block-group.h.
Reviewed-by: default avatarJohannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarJosef Bacik <josef@toxicpanda.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent bd86a532
...@@ -57,6 +57,13 @@ enum btrfs_block_group_flags { ...@@ -57,6 +57,13 @@ enum btrfs_block_group_flags {
BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, BLOCK_GROUP_FLAG_ZONED_DATA_RELOC,
}; };
enum btrfs_caching_type {
BTRFS_CACHE_NO,
BTRFS_CACHE_STARTED,
BTRFS_CACHE_FINISHED,
BTRFS_CACHE_ERROR,
};
struct btrfs_caching_control { struct btrfs_caching_control {
struct list_head list; struct list_head list;
struct mutex mutex; struct mutex mutex;
......
...@@ -497,13 +497,6 @@ struct btrfs_free_cluster { ...@@ -497,13 +497,6 @@ struct btrfs_free_cluster {
struct list_head block_group_list; struct list_head block_group_list;
}; };
enum btrfs_caching_type {
BTRFS_CACHE_NO,
BTRFS_CACHE_STARTED,
BTRFS_CACHE_FINISHED,
BTRFS_CACHE_ERROR,
};
/* /*
* Tree to record all locked full stripes of a RAID5/6 block group * Tree to record all locked full stripes of a RAID5/6 block group
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment