Josef Bacik
2010-Oct-06 20:21 UTC
[PATCH] Btrfs: add support for mixed data+metadata block groups V2
There are just a few things that need to be fixed in the kernel to support mixed data+metadata block groups. Mostly we just need to make sure that if we are using mixed block groups that we continue to allocate mixed block groups as we need them. Also we need to make sure __find_space_info will find our space info if we search for DATA or METADATA only. Tested this with xfstests and it works nicely. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com> --- V1->V2: In do_chunk_alloc I was changing flags to == space_info->flags, which isn''t right since space_info doesn''t carry the RAID profiles anymore, so instead check to see if the space info has DATA and METADATA set and if so set that in the flags as well. fs/btrfs/extent-tree.c | 26 +++++++++++++++++++++++--- 1 files changed, 23 insertions(+), 3 deletions(-) diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 91a0a41..27eddb3 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c @@ -547,7 +547,7 @@ static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, rcu_read_lock(); list_for_each_entry_rcu(found, head, list) { - if (found->flags == flags) { + if (found->flags & flags) { rcu_read_unlock(); return found; } @@ -3267,6 +3267,15 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, spin_unlock(&space_info->lock); /* + * If we have mixed data/metadata chunks we want to make sure we keep + * allocating mixed chunks instead of individual chunks. + */ + if ((space_info->flags & (BTRFS_BLOCK_GROUP_DATA | + BTRFS_BLOCK_GROUP_METADATA)) =+ (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA)) + flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); + + /* * if we''re doing a data chunk, go ahead and make sure that * we keep a reasonable number of metadata chunks allocated in the * FS as well. @@ -4793,6 +4802,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, bool found_uncached_bg = false; bool failed_cluster_refill = false; bool failed_alloc = false; + bool use_cluster = true; u64 ideal_cache_percent = 0; u64 ideal_cache_offset = 0; @@ -4807,16 +4817,26 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, return -ENOSPC; } + /* + * If the space info is for both data and metadata it means we have a + * small filesystem and we can''t use the clustering stuff. + */ + if ((space_info->flags & (BTRFS_BLOCK_GROUP_METADATA | + BTRFS_BLOCK_GROUP_DATA)) =+ ((BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA))) + use_cluster = false; + if (orig_root->ref_cows || empty_size) allowed_chunk_alloc = 1; - if (data & BTRFS_BLOCK_GROUP_METADATA) { + if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { last_ptr = &root->fs_info->meta_alloc_cluster; if (!btrfs_test_opt(root, SSD)) empty_cluster = 64 * 1024; } - if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) { + if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster && + btrfs_test_opt(root, SSD)) { last_ptr = &root->fs_info->data_alloc_cluster; } -- 1.6.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Ian Kent
2010-Oct-07 08:10 UTC
Re: [PATCH] Btrfs: add support for mixed data+metadata block groups V2
On Wed, 2010-10-06 at 16:21 -0400, Josef Bacik wrote:> There are just a few things that need to be fixed in the kernel to support mixed > data+metadata block groups. Mostly we just need to make sure that if we are > using mixed block groups that we continue to allocate mixed block groups as we > need them. Also we need to make sure __find_space_info will find our space info > if we search for DATA or METADATA only. Tested this with xfstests and it works > nicely. Thanks, > > Signed-off-by: Josef Bacik <josef@redhat.com> > --- > V1->V2: In do_chunk_alloc I was changing flags to == space_info->flags, which > isn''t right since space_info doesn''t carry the RAID profiles anymore, so instead > check to see if the space info has DATA and METADATA set and if so set that in > the flags as well. > > fs/btrfs/extent-tree.c | 26 +++++++++++++++++++++++--- > 1 files changed, 23 insertions(+), 3 deletions(-) > > diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c > index 91a0a41..27eddb3 100644 > --- a/fs/btrfs/extent-tree.c > +++ b/fs/btrfs/extent-tree.c > @@ -547,7 +547,7 @@ static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, > > rcu_read_lock(); > list_for_each_entry_rcu(found, head, list) { > - if (found->flags == flags) { > + if (found->flags & flags) { > rcu_read_unlock(); > return found; > } > @@ -3267,6 +3267,15 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, > spin_unlock(&space_info->lock); > > /* > + * If we have mixed data/metadata chunks we want to make sure we keep > + * allocating mixed chunks instead of individual chunks. > + */ > + if ((space_info->flags & (BTRFS_BLOCK_GROUP_DATA | > + BTRFS_BLOCK_GROUP_METADATA)) => + (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA)) > + flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);This sort of construct appears a few times. Personally, I prefer a macroish (read ''inline function'') construct, perhaps with a longish name if needed, than multiple line breaks within a logical expression. IMHO, having multiple line breaks makes the code somewhat harder to read.> + > + /* > * if we''re doing a data chunk, go ahead and make sure that > * we keep a reasonable number of metadata chunks allocated in the > * FS as well. > @@ -4793,6 +4802,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, > bool found_uncached_bg = false; > bool failed_cluster_refill = false; > bool failed_alloc = false; > + bool use_cluster = true; > u64 ideal_cache_percent = 0; > u64 ideal_cache_offset = 0; > > @@ -4807,16 +4817,26 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, > return -ENOSPC; > } > > + /* > + * If the space info is for both data and metadata it means we have a > + * small filesystem and we can''t use the clustering stuff. > + */ > + if ((space_info->flags & (BTRFS_BLOCK_GROUP_METADATA | > + BTRFS_BLOCK_GROUP_DATA)) => + ((BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA))) > + use_cluster = false; > + > if (orig_root->ref_cows || empty_size) > allowed_chunk_alloc = 1; > > - if (data & BTRFS_BLOCK_GROUP_METADATA) { > + if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { > last_ptr = &root->fs_info->meta_alloc_cluster; > if (!btrfs_test_opt(root, SSD)) > empty_cluster = 64 * 1024; > } > > - if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) { > + if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster && > + btrfs_test_opt(root, SSD)) { > last_ptr = &root->fs_info->data_alloc_cluster; > } >-- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Josef Bacik
2010-Oct-07 11:27 UTC
Re: [PATCH] Btrfs: add support for mixed data+metadata block groups V2
On Thu, Oct 07, 2010 at 04:10:50PM +0800, Ian Kent wrote:> On Wed, 2010-10-06 at 16:21 -0400, Josef Bacik wrote: > > There are just a few things that need to be fixed in the kernel to support mixed > > data+metadata block groups. Mostly we just need to make sure that if we are > > using mixed block groups that we continue to allocate mixed block groups as we > > need them. Also we need to make sure __find_space_info will find our space info > > if we search for DATA or METADATA only. Tested this with xfstests and it works > > nicely. Thanks, > > > > Signed-off-by: Josef Bacik <josef@redhat.com> > > --- > > V1->V2: In do_chunk_alloc I was changing flags to == space_info->flags, which > > isn''t right since space_info doesn''t carry the RAID profiles anymore, so instead > > check to see if the space info has DATA and METADATA set and if so set that in > > the flags as well. > > > > fs/btrfs/extent-tree.c | 26 +++++++++++++++++++++++--- > > 1 files changed, 23 insertions(+), 3 deletions(-) > > > > diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c > > index 91a0a41..27eddb3 100644 > > --- a/fs/btrfs/extent-tree.c > > +++ b/fs/btrfs/extent-tree.c > > @@ -547,7 +547,7 @@ static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, > > > > rcu_read_lock(); > > list_for_each_entry_rcu(found, head, list) { > > - if (found->flags == flags) { > > + if (found->flags & flags) { > > rcu_read_unlock(); > > return found; > > } > > @@ -3267,6 +3267,15 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, > > spin_unlock(&space_info->lock); > > > > /* > > + * If we have mixed data/metadata chunks we want to make sure we keep > > + * allocating mixed chunks instead of individual chunks. > > + */ > > + if ((space_info->flags & (BTRFS_BLOCK_GROUP_DATA | > > + BTRFS_BLOCK_GROUP_METADATA)) => > + (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA)) > > + flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); > > This sort of construct appears a few times. > Personally, I prefer a macroish (read ''inline function'') construct, > perhaps with a longish name if needed, than multiple line breaks within > a logical expression. IMHO, having multiple line breaks makes the code > somewhat harder to read. >Agreed I thought of that after I hit send. I''ll clean this up and resend, thanks, Josef -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Josef Bacik
2010-Oct-27 18:44 UTC
[PATCH] Btrfs: add support for mixed data+metadata block groups V2
There are just a few things that need to be fixed in the kernel to support mixed data+metadata block groups. Mostly we just need to make sure that if we are using mixed block groups that we continue to allocate mixed block groups as we need them. Also we need to make sure __find_space_info will find our space info if we search for DATA or METADATA only. Tested this with xfstests and it works nicely. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com> --- V1->V2: Add the incompat flag so we know we can handle mixed block groups. fs/btrfs/ctree.h | 10 +++++++++- fs/btrfs/extent-tree.c | 22 +++++++++++++++++++--- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 89f7099..c0505a7 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -396,13 +396,15 @@ struct btrfs_super_block { #define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF (1ULL << 0) #define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL (1ULL << 1) #define BTRFS_FEATURE_INCOMPAT_SPACE_CACHE (1ULL << 2) +#define BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS (1ULL << 3) #define BTRFS_FEATURE_COMPAT_SUPP 0ULL #define BTRFS_FEATURE_COMPAT_RO_SUPP 0ULL #define BTRFS_FEATURE_INCOMPAT_SUPP \ (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \ BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \ - BTRFS_FEATURE_INCOMPAT_SPACE_CACHE) + BTRFS_FEATURE_INCOMPAT_SPACE_CACHE | \ + BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) /* * A leaf is full of items. offset and size tell us where to find @@ -2043,6 +2045,12 @@ static inline struct dentry *fdentry(struct file *file) return file->f_path.dentry; } +static inline bool btrfs_mixed_space_info(struct btrfs_space_info *space_info) +{ + return ((space_info->flags & BTRFS_BLOCK_GROUP_METADATA) && + (space_info->flags & BTRFS_BLOCK_GROUP_DATA)); +} + /* extent-tree.c */ void btrfs_put_block_group(struct btrfs_block_group_cache *cache); int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 2382db9..18a2884 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c @@ -547,7 +547,7 @@ static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, rcu_read_lock(); list_for_each_entry_rcu(found, head, list) { - if (found->flags == flags) { + if (found->flags & flags) { rcu_read_unlock(); return found; } @@ -3267,6 +3267,13 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, spin_unlock(&space_info->lock); /* + * If we have mixed data/metadata chunks we want to make sure we keep + * allocating mixed chunks instead of individual chunks. + */ + if (btrfs_mixed_space_info(space_info)) + flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); + + /* * if we''re doing a data chunk, go ahead and make sure that * we keep a reasonable number of metadata chunks allocated in the * FS as well. @@ -4793,6 +4800,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, bool found_uncached_bg = false; bool failed_cluster_refill = false; bool failed_alloc = false; + bool use_cluster = true; u64 ideal_cache_percent = 0; u64 ideal_cache_offset = 0; @@ -4807,16 +4815,24 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, return -ENOSPC; } + /* + * If the space info is for both data and metadata it means we have a + * small filesystem and we can''t use the clustering stuff. + */ + if (btrfs_mixed_space_info(space_info)) + use_cluster = false; + if (orig_root->ref_cows || empty_size) allowed_chunk_alloc = 1; - if (data & BTRFS_BLOCK_GROUP_METADATA) { + if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) { last_ptr = &root->fs_info->meta_alloc_cluster; if (!btrfs_test_opt(root, SSD)) empty_cluster = 64 * 1024; } - if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) { + if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster && + btrfs_test_opt(root, SSD)) { last_ptr = &root->fs_info->data_alloc_cluster; } -- 1.6.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html