diff mbox series

[v2,10/13] btrfs: tweak extent/chunk allocation for space_info sub-space

Message ID a56b3607591af4c7ad9cd2f289e22c56ed7df8bf.1742364593.git.naohiro.aota@wdc.com (mailing list archive)
State New
Headers show
Series btrfs: zoned: split out space_info for dedicated block groups | expand

Commit Message

Naohiro Aota March 19, 2025, 6:14 a.m. UTC
Make the extent allocator and the chunk allocator aware of the sub-space.
It now uses SUB_GROUP_DATA_RELOC sub-space for data relocation block group,
and uses SUB_GROUP_METADATA_TREELOG for metadata tree-log block group.

And, it needs to check the space_info is the right one when a block group
candidate is given. Also, new block group should now belong to the
specified one.

Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
---
 fs/btrfs/extent-tree.c | 18 ++++++++++++++----
 fs/btrfs/space-info.c  |  4 +++-
 2 files changed, 17 insertions(+), 5 deletions(-)

Comments

Johannes Thumshirn March 20, 2025, 4:21 p.m. UTC | #1
Looks good,
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
diff mbox series

Patch

diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index 062f860ec379..5767a9ef39c7 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -4353,7 +4353,7 @@  static noinline int find_free_extent(struct btrfs_root *root,
 	int ret = 0;
 	int cache_block_group_error = 0;
 	struct btrfs_block_group *block_group = NULL;
-	struct btrfs_space_info *space_info;
+	struct btrfs_space_info *space_info = NULL;
 	bool full_search = false;
 
 	WARN_ON(ffe_ctl->num_bytes < fs_info->sectorsize);
@@ -4384,10 +4384,19 @@  static noinline int find_free_extent(struct btrfs_root *root,
 
 	trace_find_free_extent(root, ffe_ctl);
 
-	space_info = btrfs_find_space_info(fs_info, ffe_ctl->flags);
+	if (btrfs_is_zoned(fs_info)) {
+		/* Use dedicated sub-space_info for dedicated block group users. */
+		if (ffe_ctl->for_data_reloc)
+			space_info = space_info->sub_group[SUB_GROUP_DATA_RELOC];
+		else if (ffe_ctl->for_treelog)
+			space_info = space_info->sub_group[SUB_GROUP_METADATA_TREELOG];
+	}
 	if (!space_info) {
-		btrfs_err(fs_info, "No space info for %llu", ffe_ctl->flags);
-		return -ENOSPC;
+		space_info = btrfs_find_space_info(fs_info, ffe_ctl->flags);
+		if (!space_info) {
+			btrfs_err(fs_info, "No space info for %llu", ffe_ctl->flags);
+			return -ENOSPC;
+		}
 	}
 
 	ret = prepare_allocation(fs_info, ffe_ctl, space_info, ins);
@@ -4408,6 +4417,7 @@  static noinline int find_free_extent(struct btrfs_root *root,
 		 * picked out then we don't care that the block group is cached.
 		 */
 		if (block_group && block_group_bits(block_group, ffe_ctl->flags) &&
+		    block_group->space_info == space_info &&
 		    block_group->cached != BTRFS_CACHE_NO) {
 			down_read(&space_info->groups_sem);
 			if (list_empty(&block_group->list) ||
diff --git a/fs/btrfs/space-info.c b/fs/btrfs/space-info.c
index 3c775c76e2af..730763be4276 100644
--- a/fs/btrfs/space-info.c
+++ b/fs/btrfs/space-info.c
@@ -351,7 +351,9 @@  void btrfs_add_bg_to_space_info(struct btrfs_fs_info *info,
 
 	factor = btrfs_bg_type_to_factor(block_group->flags);
 
-	found = btrfs_find_space_info(info, block_group->flags);
+	found = block_group->space_info;
+	if (!found)
+		found = btrfs_find_space_info(info, block_group->flags);
 	ASSERT(found);
 	spin_lock(&found->lock);
 	found->total_bytes += block_group->length;