xref: /linux/fs/btrfs/block-group.c (revision 40cdc509877bacb438213b83c7541c5e24a1d9ec)
12e405ad8SJosef Bacik // SPDX-License-Identifier: GPL-2.0
22e405ad8SJosef Bacik 
32ca0ec77SJohannes Thumshirn #include <linux/list_sort.h>
4784352feSDavid Sterba #include "misc.h"
52e405ad8SJosef Bacik #include "ctree.h"
62e405ad8SJosef Bacik #include "block-group.h"
73eeb3226SJosef Bacik #include "space-info.h"
89f21246dSJosef Bacik #include "disk-io.h"
99f21246dSJosef Bacik #include "free-space-cache.h"
109f21246dSJosef Bacik #include "free-space-tree.h"
11e3e0520bSJosef Bacik #include "volumes.h"
12e3e0520bSJosef Bacik #include "transaction.h"
13e3e0520bSJosef Bacik #include "ref-verify.h"
144358d963SJosef Bacik #include "sysfs.h"
154358d963SJosef Bacik #include "tree-log.h"
1677745c05SJosef Bacik #include "delalloc-space.h"
17b0643e59SDennis Zhou #include "discard.h"
1896a14336SNikolay Borisov #include "raid56.h"
1908e11a3dSNaohiro Aota #include "zoned.h"
202e405ad8SJosef Bacik 
21878d7b67SJosef Bacik /*
22878d7b67SJosef Bacik  * Return target flags in extended format or 0 if restripe for this chunk_type
23878d7b67SJosef Bacik  * is not in progress
24878d7b67SJosef Bacik  *
25878d7b67SJosef Bacik  * Should be called with balance_lock held
26878d7b67SJosef Bacik  */
27e11c0406SJosef Bacik static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
28878d7b67SJosef Bacik {
29878d7b67SJosef Bacik 	struct btrfs_balance_control *bctl = fs_info->balance_ctl;
30878d7b67SJosef Bacik 	u64 target = 0;
31878d7b67SJosef Bacik 
32878d7b67SJosef Bacik 	if (!bctl)
33878d7b67SJosef Bacik 		return 0;
34878d7b67SJosef Bacik 
35878d7b67SJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_DATA &&
36878d7b67SJosef Bacik 	    bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
37878d7b67SJosef Bacik 		target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
38878d7b67SJosef Bacik 	} else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
39878d7b67SJosef Bacik 		   bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
40878d7b67SJosef Bacik 		target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
41878d7b67SJosef Bacik 	} else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
42878d7b67SJosef Bacik 		   bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
43878d7b67SJosef Bacik 		target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
44878d7b67SJosef Bacik 	}
45878d7b67SJosef Bacik 
46878d7b67SJosef Bacik 	return target;
47878d7b67SJosef Bacik }
48878d7b67SJosef Bacik 
49878d7b67SJosef Bacik /*
50878d7b67SJosef Bacik  * @flags: available profiles in extended format (see ctree.h)
51878d7b67SJosef Bacik  *
52878d7b67SJosef Bacik  * Return reduced profile in chunk format.  If profile changing is in progress
53878d7b67SJosef Bacik  * (either running or paused) picks the target profile (if it's already
54878d7b67SJosef Bacik  * available), otherwise falls back to plain reducing.
55878d7b67SJosef Bacik  */
56878d7b67SJosef Bacik static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
57878d7b67SJosef Bacik {
58878d7b67SJosef Bacik 	u64 num_devices = fs_info->fs_devices->rw_devices;
59878d7b67SJosef Bacik 	u64 target;
60878d7b67SJosef Bacik 	u64 raid_type;
61878d7b67SJosef Bacik 	u64 allowed = 0;
62878d7b67SJosef Bacik 
63878d7b67SJosef Bacik 	/*
64878d7b67SJosef Bacik 	 * See if restripe for this chunk_type is in progress, if so try to
65878d7b67SJosef Bacik 	 * reduce to the target profile
66878d7b67SJosef Bacik 	 */
67878d7b67SJosef Bacik 	spin_lock(&fs_info->balance_lock);
68e11c0406SJosef Bacik 	target = get_restripe_target(fs_info, flags);
69878d7b67SJosef Bacik 	if (target) {
70878d7b67SJosef Bacik 		spin_unlock(&fs_info->balance_lock);
71878d7b67SJosef Bacik 		return extended_to_chunk(target);
72878d7b67SJosef Bacik 	}
73878d7b67SJosef Bacik 	spin_unlock(&fs_info->balance_lock);
74878d7b67SJosef Bacik 
75878d7b67SJosef Bacik 	/* First, mask out the RAID levels which aren't possible */
76878d7b67SJosef Bacik 	for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
77878d7b67SJosef Bacik 		if (num_devices >= btrfs_raid_array[raid_type].devs_min)
78878d7b67SJosef Bacik 			allowed |= btrfs_raid_array[raid_type].bg_flag;
79878d7b67SJosef Bacik 	}
80878d7b67SJosef Bacik 	allowed &= flags;
81878d7b67SJosef Bacik 
82878d7b67SJosef Bacik 	if (allowed & BTRFS_BLOCK_GROUP_RAID6)
83878d7b67SJosef Bacik 		allowed = BTRFS_BLOCK_GROUP_RAID6;
84878d7b67SJosef Bacik 	else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
85878d7b67SJosef Bacik 		allowed = BTRFS_BLOCK_GROUP_RAID5;
86878d7b67SJosef Bacik 	else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
87878d7b67SJosef Bacik 		allowed = BTRFS_BLOCK_GROUP_RAID10;
88878d7b67SJosef Bacik 	else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
89878d7b67SJosef Bacik 		allowed = BTRFS_BLOCK_GROUP_RAID1;
90878d7b67SJosef Bacik 	else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
91878d7b67SJosef Bacik 		allowed = BTRFS_BLOCK_GROUP_RAID0;
92878d7b67SJosef Bacik 
93878d7b67SJosef Bacik 	flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
94878d7b67SJosef Bacik 
95878d7b67SJosef Bacik 	return extended_to_chunk(flags | allowed);
96878d7b67SJosef Bacik }
97878d7b67SJosef Bacik 
98ef0a82daSJohannes Thumshirn u64 btrfs_get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
99878d7b67SJosef Bacik {
100878d7b67SJosef Bacik 	unsigned seq;
101878d7b67SJosef Bacik 	u64 flags;
102878d7b67SJosef Bacik 
103878d7b67SJosef Bacik 	do {
104878d7b67SJosef Bacik 		flags = orig_flags;
105878d7b67SJosef Bacik 		seq = read_seqbegin(&fs_info->profiles_lock);
106878d7b67SJosef Bacik 
107878d7b67SJosef Bacik 		if (flags & BTRFS_BLOCK_GROUP_DATA)
108878d7b67SJosef Bacik 			flags |= fs_info->avail_data_alloc_bits;
109878d7b67SJosef Bacik 		else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
110878d7b67SJosef Bacik 			flags |= fs_info->avail_system_alloc_bits;
111878d7b67SJosef Bacik 		else if (flags & BTRFS_BLOCK_GROUP_METADATA)
112878d7b67SJosef Bacik 			flags |= fs_info->avail_metadata_alloc_bits;
113878d7b67SJosef Bacik 	} while (read_seqretry(&fs_info->profiles_lock, seq));
114878d7b67SJosef Bacik 
115878d7b67SJosef Bacik 	return btrfs_reduce_alloc_profile(fs_info, flags);
116878d7b67SJosef Bacik }
117878d7b67SJosef Bacik 
11832da5386SDavid Sterba void btrfs_get_block_group(struct btrfs_block_group *cache)
1193cad1284SJosef Bacik {
12048aaeebeSJosef Bacik 	refcount_inc(&cache->refs);
1213cad1284SJosef Bacik }
1223cad1284SJosef Bacik 
12332da5386SDavid Sterba void btrfs_put_block_group(struct btrfs_block_group *cache)
1243cad1284SJosef Bacik {
12548aaeebeSJosef Bacik 	if (refcount_dec_and_test(&cache->refs)) {
1263cad1284SJosef Bacik 		WARN_ON(cache->pinned > 0);
127*40cdc509SFilipe Manana 		/*
128*40cdc509SFilipe Manana 		 * If there was a failure to cleanup a log tree, very likely due
129*40cdc509SFilipe Manana 		 * to an IO failure on a writeback attempt of one or more of its
130*40cdc509SFilipe Manana 		 * extent buffers, we could not do proper (and cheap) unaccounting
131*40cdc509SFilipe Manana 		 * of their reserved space, so don't warn on reserved > 0 in that
132*40cdc509SFilipe Manana 		 * case.
133*40cdc509SFilipe Manana 		 */
134*40cdc509SFilipe Manana 		if (!(cache->flags & BTRFS_BLOCK_GROUP_METADATA) ||
135*40cdc509SFilipe Manana 		    !BTRFS_FS_LOG_CLEANUP_ERROR(cache->fs_info))
1363cad1284SJosef Bacik 			WARN_ON(cache->reserved > 0);
1373cad1284SJosef Bacik 
1383cad1284SJosef Bacik 		/*
139b0643e59SDennis Zhou 		 * A block_group shouldn't be on the discard_list anymore.
140b0643e59SDennis Zhou 		 * Remove the block_group from the discard_list to prevent us
141b0643e59SDennis Zhou 		 * from causing a panic due to NULL pointer dereference.
142b0643e59SDennis Zhou 		 */
143b0643e59SDennis Zhou 		if (WARN_ON(!list_empty(&cache->discard_list)))
144b0643e59SDennis Zhou 			btrfs_discard_cancel_work(&cache->fs_info->discard_ctl,
145b0643e59SDennis Zhou 						  cache);
146b0643e59SDennis Zhou 
147b0643e59SDennis Zhou 		/*
1483cad1284SJosef Bacik 		 * If not empty, someone is still holding mutex of
1493cad1284SJosef Bacik 		 * full_stripe_lock, which can only be released by caller.
1503cad1284SJosef Bacik 		 * And it will definitely cause use-after-free when caller
1513cad1284SJosef Bacik 		 * tries to release full stripe lock.
1523cad1284SJosef Bacik 		 *
1533cad1284SJosef Bacik 		 * No better way to resolve, but only to warn.
1543cad1284SJosef Bacik 		 */
1553cad1284SJosef Bacik 		WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
1563cad1284SJosef Bacik 		kfree(cache->free_space_ctl);
157dafc340dSNaohiro Aota 		kfree(cache->physical_map);
1583cad1284SJosef Bacik 		kfree(cache);
1593cad1284SJosef Bacik 	}
1603cad1284SJosef Bacik }
1613cad1284SJosef Bacik 
1622e405ad8SJosef Bacik /*
1634358d963SJosef Bacik  * This adds the block group to the fs_info rb tree for the block group cache
1644358d963SJosef Bacik  */
1654358d963SJosef Bacik static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
16632da5386SDavid Sterba 				       struct btrfs_block_group *block_group)
1674358d963SJosef Bacik {
1684358d963SJosef Bacik 	struct rb_node **p;
1694358d963SJosef Bacik 	struct rb_node *parent = NULL;
17032da5386SDavid Sterba 	struct btrfs_block_group *cache;
1714358d963SJosef Bacik 
1729afc6649SQu Wenruo 	ASSERT(block_group->length != 0);
1739afc6649SQu Wenruo 
1744358d963SJosef Bacik 	spin_lock(&info->block_group_cache_lock);
1754358d963SJosef Bacik 	p = &info->block_group_cache_tree.rb_node;
1764358d963SJosef Bacik 
1774358d963SJosef Bacik 	while (*p) {
1784358d963SJosef Bacik 		parent = *p;
17932da5386SDavid Sterba 		cache = rb_entry(parent, struct btrfs_block_group, cache_node);
180b3470b5dSDavid Sterba 		if (block_group->start < cache->start) {
1814358d963SJosef Bacik 			p = &(*p)->rb_left;
182b3470b5dSDavid Sterba 		} else if (block_group->start > cache->start) {
1834358d963SJosef Bacik 			p = &(*p)->rb_right;
1844358d963SJosef Bacik 		} else {
1854358d963SJosef Bacik 			spin_unlock(&info->block_group_cache_lock);
1864358d963SJosef Bacik 			return -EEXIST;
1874358d963SJosef Bacik 		}
1884358d963SJosef Bacik 	}
1894358d963SJosef Bacik 
1904358d963SJosef Bacik 	rb_link_node(&block_group->cache_node, parent, p);
1914358d963SJosef Bacik 	rb_insert_color(&block_group->cache_node,
1924358d963SJosef Bacik 			&info->block_group_cache_tree);
1934358d963SJosef Bacik 
194b3470b5dSDavid Sterba 	if (info->first_logical_byte > block_group->start)
195b3470b5dSDavid Sterba 		info->first_logical_byte = block_group->start;
1964358d963SJosef Bacik 
1974358d963SJosef Bacik 	spin_unlock(&info->block_group_cache_lock);
1984358d963SJosef Bacik 
1994358d963SJosef Bacik 	return 0;
2004358d963SJosef Bacik }
2014358d963SJosef Bacik 
2024358d963SJosef Bacik /*
2032e405ad8SJosef Bacik  * This will return the block group at or after bytenr if contains is 0, else
2042e405ad8SJosef Bacik  * it will return the block group that contains the bytenr
2052e405ad8SJosef Bacik  */
20632da5386SDavid Sterba static struct btrfs_block_group *block_group_cache_tree_search(
2072e405ad8SJosef Bacik 		struct btrfs_fs_info *info, u64 bytenr, int contains)
2082e405ad8SJosef Bacik {
20932da5386SDavid Sterba 	struct btrfs_block_group *cache, *ret = NULL;
2102e405ad8SJosef Bacik 	struct rb_node *n;
2112e405ad8SJosef Bacik 	u64 end, start;
2122e405ad8SJosef Bacik 
2132e405ad8SJosef Bacik 	spin_lock(&info->block_group_cache_lock);
2142e405ad8SJosef Bacik 	n = info->block_group_cache_tree.rb_node;
2152e405ad8SJosef Bacik 
2162e405ad8SJosef Bacik 	while (n) {
21732da5386SDavid Sterba 		cache = rb_entry(n, struct btrfs_block_group, cache_node);
218b3470b5dSDavid Sterba 		end = cache->start + cache->length - 1;
219b3470b5dSDavid Sterba 		start = cache->start;
2202e405ad8SJosef Bacik 
2212e405ad8SJosef Bacik 		if (bytenr < start) {
222b3470b5dSDavid Sterba 			if (!contains && (!ret || start < ret->start))
2232e405ad8SJosef Bacik 				ret = cache;
2242e405ad8SJosef Bacik 			n = n->rb_left;
2252e405ad8SJosef Bacik 		} else if (bytenr > start) {
2262e405ad8SJosef Bacik 			if (contains && bytenr <= end) {
2272e405ad8SJosef Bacik 				ret = cache;
2282e405ad8SJosef Bacik 				break;
2292e405ad8SJosef Bacik 			}
2302e405ad8SJosef Bacik 			n = n->rb_right;
2312e405ad8SJosef Bacik 		} else {
2322e405ad8SJosef Bacik 			ret = cache;
2332e405ad8SJosef Bacik 			break;
2342e405ad8SJosef Bacik 		}
2352e405ad8SJosef Bacik 	}
2362e405ad8SJosef Bacik 	if (ret) {
2372e405ad8SJosef Bacik 		btrfs_get_block_group(ret);
238b3470b5dSDavid Sterba 		if (bytenr == 0 && info->first_logical_byte > ret->start)
239b3470b5dSDavid Sterba 			info->first_logical_byte = ret->start;
2402e405ad8SJosef Bacik 	}
2412e405ad8SJosef Bacik 	spin_unlock(&info->block_group_cache_lock);
2422e405ad8SJosef Bacik 
2432e405ad8SJosef Bacik 	return ret;
2442e405ad8SJosef Bacik }
2452e405ad8SJosef Bacik 
2462e405ad8SJosef Bacik /*
2472e405ad8SJosef Bacik  * Return the block group that starts at or after bytenr
2482e405ad8SJosef Bacik  */
24932da5386SDavid Sterba struct btrfs_block_group *btrfs_lookup_first_block_group(
2502e405ad8SJosef Bacik 		struct btrfs_fs_info *info, u64 bytenr)
2512e405ad8SJosef Bacik {
2522e405ad8SJosef Bacik 	return block_group_cache_tree_search(info, bytenr, 0);
2532e405ad8SJosef Bacik }
2542e405ad8SJosef Bacik 
2552e405ad8SJosef Bacik /*
2562e405ad8SJosef Bacik  * Return the block group that contains the given bytenr
2572e405ad8SJosef Bacik  */
25832da5386SDavid Sterba struct btrfs_block_group *btrfs_lookup_block_group(
2592e405ad8SJosef Bacik 		struct btrfs_fs_info *info, u64 bytenr)
2602e405ad8SJosef Bacik {
2612e405ad8SJosef Bacik 	return block_group_cache_tree_search(info, bytenr, 1);
2622e405ad8SJosef Bacik }
2632e405ad8SJosef Bacik 
26432da5386SDavid Sterba struct btrfs_block_group *btrfs_next_block_group(
26532da5386SDavid Sterba 		struct btrfs_block_group *cache)
2662e405ad8SJosef Bacik {
2672e405ad8SJosef Bacik 	struct btrfs_fs_info *fs_info = cache->fs_info;
2682e405ad8SJosef Bacik 	struct rb_node *node;
2692e405ad8SJosef Bacik 
2702e405ad8SJosef Bacik 	spin_lock(&fs_info->block_group_cache_lock);
2712e405ad8SJosef Bacik 
2722e405ad8SJosef Bacik 	/* If our block group was removed, we need a full search. */
2732e405ad8SJosef Bacik 	if (RB_EMPTY_NODE(&cache->cache_node)) {
274b3470b5dSDavid Sterba 		const u64 next_bytenr = cache->start + cache->length;
2752e405ad8SJosef Bacik 
2762e405ad8SJosef Bacik 		spin_unlock(&fs_info->block_group_cache_lock);
2772e405ad8SJosef Bacik 		btrfs_put_block_group(cache);
2782e405ad8SJosef Bacik 		cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
2792e405ad8SJosef Bacik 	}
2802e405ad8SJosef Bacik 	node = rb_next(&cache->cache_node);
2812e405ad8SJosef Bacik 	btrfs_put_block_group(cache);
2822e405ad8SJosef Bacik 	if (node) {
28332da5386SDavid Sterba 		cache = rb_entry(node, struct btrfs_block_group, cache_node);
2842e405ad8SJosef Bacik 		btrfs_get_block_group(cache);
2852e405ad8SJosef Bacik 	} else
2862e405ad8SJosef Bacik 		cache = NULL;
2872e405ad8SJosef Bacik 	spin_unlock(&fs_info->block_group_cache_lock);
2882e405ad8SJosef Bacik 	return cache;
2892e405ad8SJosef Bacik }
2903eeb3226SJosef Bacik 
2913eeb3226SJosef Bacik bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
2923eeb3226SJosef Bacik {
29332da5386SDavid Sterba 	struct btrfs_block_group *bg;
2943eeb3226SJosef Bacik 	bool ret = true;
2953eeb3226SJosef Bacik 
2963eeb3226SJosef Bacik 	bg = btrfs_lookup_block_group(fs_info, bytenr);
2973eeb3226SJosef Bacik 	if (!bg)
2983eeb3226SJosef Bacik 		return false;
2993eeb3226SJosef Bacik 
3003eeb3226SJosef Bacik 	spin_lock(&bg->lock);
3013eeb3226SJosef Bacik 	if (bg->ro)
3023eeb3226SJosef Bacik 		ret = false;
3033eeb3226SJosef Bacik 	else
3043eeb3226SJosef Bacik 		atomic_inc(&bg->nocow_writers);
3053eeb3226SJosef Bacik 	spin_unlock(&bg->lock);
3063eeb3226SJosef Bacik 
3073eeb3226SJosef Bacik 	/* No put on block group, done by btrfs_dec_nocow_writers */
3083eeb3226SJosef Bacik 	if (!ret)
3093eeb3226SJosef Bacik 		btrfs_put_block_group(bg);
3103eeb3226SJosef Bacik 
3113eeb3226SJosef Bacik 	return ret;
3123eeb3226SJosef Bacik }
3133eeb3226SJosef Bacik 
3143eeb3226SJosef Bacik void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3153eeb3226SJosef Bacik {
31632da5386SDavid Sterba 	struct btrfs_block_group *bg;
3173eeb3226SJosef Bacik 
3183eeb3226SJosef Bacik 	bg = btrfs_lookup_block_group(fs_info, bytenr);
3193eeb3226SJosef Bacik 	ASSERT(bg);
3203eeb3226SJosef Bacik 	if (atomic_dec_and_test(&bg->nocow_writers))
3213eeb3226SJosef Bacik 		wake_up_var(&bg->nocow_writers);
3223eeb3226SJosef Bacik 	/*
3233eeb3226SJosef Bacik 	 * Once for our lookup and once for the lookup done by a previous call
3243eeb3226SJosef Bacik 	 * to btrfs_inc_nocow_writers()
3253eeb3226SJosef Bacik 	 */
3263eeb3226SJosef Bacik 	btrfs_put_block_group(bg);
3273eeb3226SJosef Bacik 	btrfs_put_block_group(bg);
3283eeb3226SJosef Bacik }
3293eeb3226SJosef Bacik 
33032da5386SDavid Sterba void btrfs_wait_nocow_writers(struct btrfs_block_group *bg)
3313eeb3226SJosef Bacik {
3323eeb3226SJosef Bacik 	wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
3333eeb3226SJosef Bacik }
3343eeb3226SJosef Bacik 
3353eeb3226SJosef Bacik void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
3363eeb3226SJosef Bacik 					const u64 start)
3373eeb3226SJosef Bacik {
33832da5386SDavid Sterba 	struct btrfs_block_group *bg;
3393eeb3226SJosef Bacik 
3403eeb3226SJosef Bacik 	bg = btrfs_lookup_block_group(fs_info, start);
3413eeb3226SJosef Bacik 	ASSERT(bg);
3423eeb3226SJosef Bacik 	if (atomic_dec_and_test(&bg->reservations))
3433eeb3226SJosef Bacik 		wake_up_var(&bg->reservations);
3443eeb3226SJosef Bacik 	btrfs_put_block_group(bg);
3453eeb3226SJosef Bacik }
3463eeb3226SJosef Bacik 
34732da5386SDavid Sterba void btrfs_wait_block_group_reservations(struct btrfs_block_group *bg)
3483eeb3226SJosef Bacik {
3493eeb3226SJosef Bacik 	struct btrfs_space_info *space_info = bg->space_info;
3503eeb3226SJosef Bacik 
3513eeb3226SJosef Bacik 	ASSERT(bg->ro);
3523eeb3226SJosef Bacik 
3533eeb3226SJosef Bacik 	if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
3543eeb3226SJosef Bacik 		return;
3553eeb3226SJosef Bacik 
3563eeb3226SJosef Bacik 	/*
3573eeb3226SJosef Bacik 	 * Our block group is read only but before we set it to read only,
3583eeb3226SJosef Bacik 	 * some task might have had allocated an extent from it already, but it
3593eeb3226SJosef Bacik 	 * has not yet created a respective ordered extent (and added it to a
3603eeb3226SJosef Bacik 	 * root's list of ordered extents).
3613eeb3226SJosef Bacik 	 * Therefore wait for any task currently allocating extents, since the
3623eeb3226SJosef Bacik 	 * block group's reservations counter is incremented while a read lock
3633eeb3226SJosef Bacik 	 * on the groups' semaphore is held and decremented after releasing
3643eeb3226SJosef Bacik 	 * the read access on that semaphore and creating the ordered extent.
3653eeb3226SJosef Bacik 	 */
3663eeb3226SJosef Bacik 	down_write(&space_info->groups_sem);
3673eeb3226SJosef Bacik 	up_write(&space_info->groups_sem);
3683eeb3226SJosef Bacik 
3693eeb3226SJosef Bacik 	wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
3703eeb3226SJosef Bacik }
3719f21246dSJosef Bacik 
3729f21246dSJosef Bacik struct btrfs_caching_control *btrfs_get_caching_control(
37332da5386SDavid Sterba 		struct btrfs_block_group *cache)
3749f21246dSJosef Bacik {
3759f21246dSJosef Bacik 	struct btrfs_caching_control *ctl;
3769f21246dSJosef Bacik 
3779f21246dSJosef Bacik 	spin_lock(&cache->lock);
3789f21246dSJosef Bacik 	if (!cache->caching_ctl) {
3799f21246dSJosef Bacik 		spin_unlock(&cache->lock);
3809f21246dSJosef Bacik 		return NULL;
3819f21246dSJosef Bacik 	}
3829f21246dSJosef Bacik 
3839f21246dSJosef Bacik 	ctl = cache->caching_ctl;
3849f21246dSJosef Bacik 	refcount_inc(&ctl->count);
3859f21246dSJosef Bacik 	spin_unlock(&cache->lock);
3869f21246dSJosef Bacik 	return ctl;
3879f21246dSJosef Bacik }
3889f21246dSJosef Bacik 
3899f21246dSJosef Bacik void btrfs_put_caching_control(struct btrfs_caching_control *ctl)
3909f21246dSJosef Bacik {
3919f21246dSJosef Bacik 	if (refcount_dec_and_test(&ctl->count))
3929f21246dSJosef Bacik 		kfree(ctl);
3939f21246dSJosef Bacik }
3949f21246dSJosef Bacik 
3959f21246dSJosef Bacik /*
3969f21246dSJosef Bacik  * When we wait for progress in the block group caching, its because our
3979f21246dSJosef Bacik  * allocation attempt failed at least once.  So, we must sleep and let some
3989f21246dSJosef Bacik  * progress happen before we try again.
3999f21246dSJosef Bacik  *
4009f21246dSJosef Bacik  * This function will sleep at least once waiting for new free space to show
4019f21246dSJosef Bacik  * up, and then it will check the block group free space numbers for our min
4029f21246dSJosef Bacik  * num_bytes.  Another option is to have it go ahead and look in the rbtree for
4039f21246dSJosef Bacik  * a free extent of a given size, but this is a good start.
4049f21246dSJosef Bacik  *
4059f21246dSJosef Bacik  * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
4069f21246dSJosef Bacik  * any of the information in this block group.
4079f21246dSJosef Bacik  */
40832da5386SDavid Sterba void btrfs_wait_block_group_cache_progress(struct btrfs_block_group *cache,
4099f21246dSJosef Bacik 					   u64 num_bytes)
4109f21246dSJosef Bacik {
4119f21246dSJosef Bacik 	struct btrfs_caching_control *caching_ctl;
4129f21246dSJosef Bacik 
4139f21246dSJosef Bacik 	caching_ctl = btrfs_get_caching_control(cache);
4149f21246dSJosef Bacik 	if (!caching_ctl)
4159f21246dSJosef Bacik 		return;
4169f21246dSJosef Bacik 
41732da5386SDavid Sterba 	wait_event(caching_ctl->wait, btrfs_block_group_done(cache) ||
4189f21246dSJosef Bacik 		   (cache->free_space_ctl->free_space >= num_bytes));
4199f21246dSJosef Bacik 
4209f21246dSJosef Bacik 	btrfs_put_caching_control(caching_ctl);
4219f21246dSJosef Bacik }
4229f21246dSJosef Bacik 
42332da5386SDavid Sterba int btrfs_wait_block_group_cache_done(struct btrfs_block_group *cache)
4249f21246dSJosef Bacik {
4259f21246dSJosef Bacik 	struct btrfs_caching_control *caching_ctl;
4269f21246dSJosef Bacik 	int ret = 0;
4279f21246dSJosef Bacik 
4289f21246dSJosef Bacik 	caching_ctl = btrfs_get_caching_control(cache);
4299f21246dSJosef Bacik 	if (!caching_ctl)
4309f21246dSJosef Bacik 		return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
4319f21246dSJosef Bacik 
43232da5386SDavid Sterba 	wait_event(caching_ctl->wait, btrfs_block_group_done(cache));
4339f21246dSJosef Bacik 	if (cache->cached == BTRFS_CACHE_ERROR)
4349f21246dSJosef Bacik 		ret = -EIO;
4359f21246dSJosef Bacik 	btrfs_put_caching_control(caching_ctl);
4369f21246dSJosef Bacik 	return ret;
4379f21246dSJosef Bacik }
4389f21246dSJosef Bacik 
439e747853cSJosef Bacik static bool space_cache_v1_done(struct btrfs_block_group *cache)
440e747853cSJosef Bacik {
441e747853cSJosef Bacik 	bool ret;
442e747853cSJosef Bacik 
443e747853cSJosef Bacik 	spin_lock(&cache->lock);
444e747853cSJosef Bacik 	ret = cache->cached != BTRFS_CACHE_FAST;
445e747853cSJosef Bacik 	spin_unlock(&cache->lock);
446e747853cSJosef Bacik 
447e747853cSJosef Bacik 	return ret;
448e747853cSJosef Bacik }
449e747853cSJosef Bacik 
450e747853cSJosef Bacik void btrfs_wait_space_cache_v1_finished(struct btrfs_block_group *cache,
451e747853cSJosef Bacik 				struct btrfs_caching_control *caching_ctl)
452e747853cSJosef Bacik {
453e747853cSJosef Bacik 	wait_event(caching_ctl->wait, space_cache_v1_done(cache));
454e747853cSJosef Bacik }
455e747853cSJosef Bacik 
4569f21246dSJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
45732da5386SDavid Sterba static void fragment_free_space(struct btrfs_block_group *block_group)
4589f21246dSJosef Bacik {
4599f21246dSJosef Bacik 	struct btrfs_fs_info *fs_info = block_group->fs_info;
460b3470b5dSDavid Sterba 	u64 start = block_group->start;
461b3470b5dSDavid Sterba 	u64 len = block_group->length;
4629f21246dSJosef Bacik 	u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
4639f21246dSJosef Bacik 		fs_info->nodesize : fs_info->sectorsize;
4649f21246dSJosef Bacik 	u64 step = chunk << 1;
4659f21246dSJosef Bacik 
4669f21246dSJosef Bacik 	while (len > chunk) {
4679f21246dSJosef Bacik 		btrfs_remove_free_space(block_group, start, chunk);
4689f21246dSJosef Bacik 		start += step;
4699f21246dSJosef Bacik 		if (len < step)
4709f21246dSJosef Bacik 			len = 0;
4719f21246dSJosef Bacik 		else
4729f21246dSJosef Bacik 			len -= step;
4739f21246dSJosef Bacik 	}
4749f21246dSJosef Bacik }
4759f21246dSJosef Bacik #endif
4769f21246dSJosef Bacik 
4779f21246dSJosef Bacik /*
4789f21246dSJosef Bacik  * This is only called by btrfs_cache_block_group, since we could have freed
4799f21246dSJosef Bacik  * extents we need to check the pinned_extents for any extents that can't be
4809f21246dSJosef Bacik  * used yet since their free space will be released as soon as the transaction
4819f21246dSJosef Bacik  * commits.
4829f21246dSJosef Bacik  */
48332da5386SDavid Sterba u64 add_new_free_space(struct btrfs_block_group *block_group, u64 start, u64 end)
4849f21246dSJosef Bacik {
4859f21246dSJosef Bacik 	struct btrfs_fs_info *info = block_group->fs_info;
4869f21246dSJosef Bacik 	u64 extent_start, extent_end, size, total_added = 0;
4879f21246dSJosef Bacik 	int ret;
4889f21246dSJosef Bacik 
4899f21246dSJosef Bacik 	while (start < end) {
490fe119a6eSNikolay Borisov 		ret = find_first_extent_bit(&info->excluded_extents, start,
4919f21246dSJosef Bacik 					    &extent_start, &extent_end,
4929f21246dSJosef Bacik 					    EXTENT_DIRTY | EXTENT_UPTODATE,
4939f21246dSJosef Bacik 					    NULL);
4949f21246dSJosef Bacik 		if (ret)
4959f21246dSJosef Bacik 			break;
4969f21246dSJosef Bacik 
4979f21246dSJosef Bacik 		if (extent_start <= start) {
4989f21246dSJosef Bacik 			start = extent_end + 1;
4999f21246dSJosef Bacik 		} else if (extent_start > start && extent_start < end) {
5009f21246dSJosef Bacik 			size = extent_start - start;
5019f21246dSJosef Bacik 			total_added += size;
502b0643e59SDennis Zhou 			ret = btrfs_add_free_space_async_trimmed(block_group,
503b0643e59SDennis Zhou 								 start, size);
5049f21246dSJosef Bacik 			BUG_ON(ret); /* -ENOMEM or logic error */
5059f21246dSJosef Bacik 			start = extent_end + 1;
5069f21246dSJosef Bacik 		} else {
5079f21246dSJosef Bacik 			break;
5089f21246dSJosef Bacik 		}
5099f21246dSJosef Bacik 	}
5109f21246dSJosef Bacik 
5119f21246dSJosef Bacik 	if (start < end) {
5129f21246dSJosef Bacik 		size = end - start;
5139f21246dSJosef Bacik 		total_added += size;
514b0643e59SDennis Zhou 		ret = btrfs_add_free_space_async_trimmed(block_group, start,
515b0643e59SDennis Zhou 							 size);
5169f21246dSJosef Bacik 		BUG_ON(ret); /* -ENOMEM or logic error */
5179f21246dSJosef Bacik 	}
5189f21246dSJosef Bacik 
5199f21246dSJosef Bacik 	return total_added;
5209f21246dSJosef Bacik }
5219f21246dSJosef Bacik 
5229f21246dSJosef Bacik static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
5239f21246dSJosef Bacik {
52432da5386SDavid Sterba 	struct btrfs_block_group *block_group = caching_ctl->block_group;
5259f21246dSJosef Bacik 	struct btrfs_fs_info *fs_info = block_group->fs_info;
52629cbcf40SJosef Bacik 	struct btrfs_root *extent_root;
5279f21246dSJosef Bacik 	struct btrfs_path *path;
5289f21246dSJosef Bacik 	struct extent_buffer *leaf;
5299f21246dSJosef Bacik 	struct btrfs_key key;
5309f21246dSJosef Bacik 	u64 total_found = 0;
5319f21246dSJosef Bacik 	u64 last = 0;
5329f21246dSJosef Bacik 	u32 nritems;
5339f21246dSJosef Bacik 	int ret;
5349f21246dSJosef Bacik 	bool wakeup = true;
5359f21246dSJosef Bacik 
5369f21246dSJosef Bacik 	path = btrfs_alloc_path();
5379f21246dSJosef Bacik 	if (!path)
5389f21246dSJosef Bacik 		return -ENOMEM;
5399f21246dSJosef Bacik 
540b3470b5dSDavid Sterba 	last = max_t(u64, block_group->start, BTRFS_SUPER_INFO_OFFSET);
54129cbcf40SJosef Bacik 	extent_root = btrfs_extent_root(fs_info, last);
5429f21246dSJosef Bacik 
5439f21246dSJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
5449f21246dSJosef Bacik 	/*
5459f21246dSJosef Bacik 	 * If we're fragmenting we don't want to make anybody think we can
5469f21246dSJosef Bacik 	 * allocate from this block group until we've had a chance to fragment
5479f21246dSJosef Bacik 	 * the free space.
5489f21246dSJosef Bacik 	 */
5499f21246dSJosef Bacik 	if (btrfs_should_fragment_free_space(block_group))
5509f21246dSJosef Bacik 		wakeup = false;
5519f21246dSJosef Bacik #endif
5529f21246dSJosef Bacik 	/*
5539f21246dSJosef Bacik 	 * We don't want to deadlock with somebody trying to allocate a new
5549f21246dSJosef Bacik 	 * extent for the extent root while also trying to search the extent
5559f21246dSJosef Bacik 	 * root to add free space.  So we skip locking and search the commit
5569f21246dSJosef Bacik 	 * root, since its read-only
5579f21246dSJosef Bacik 	 */
5589f21246dSJosef Bacik 	path->skip_locking = 1;
5599f21246dSJosef Bacik 	path->search_commit_root = 1;
5609f21246dSJosef Bacik 	path->reada = READA_FORWARD;
5619f21246dSJosef Bacik 
5629f21246dSJosef Bacik 	key.objectid = last;
5639f21246dSJosef Bacik 	key.offset = 0;
5649f21246dSJosef Bacik 	key.type = BTRFS_EXTENT_ITEM_KEY;
5659f21246dSJosef Bacik 
5669f21246dSJosef Bacik next:
5679f21246dSJosef Bacik 	ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
5689f21246dSJosef Bacik 	if (ret < 0)
5699f21246dSJosef Bacik 		goto out;
5709f21246dSJosef Bacik 
5719f21246dSJosef Bacik 	leaf = path->nodes[0];
5729f21246dSJosef Bacik 	nritems = btrfs_header_nritems(leaf);
5739f21246dSJosef Bacik 
5749f21246dSJosef Bacik 	while (1) {
5759f21246dSJosef Bacik 		if (btrfs_fs_closing(fs_info) > 1) {
5769f21246dSJosef Bacik 			last = (u64)-1;
5779f21246dSJosef Bacik 			break;
5789f21246dSJosef Bacik 		}
5799f21246dSJosef Bacik 
5809f21246dSJosef Bacik 		if (path->slots[0] < nritems) {
5819f21246dSJosef Bacik 			btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5829f21246dSJosef Bacik 		} else {
5839f21246dSJosef Bacik 			ret = btrfs_find_next_key(extent_root, path, &key, 0, 0);
5849f21246dSJosef Bacik 			if (ret)
5859f21246dSJosef Bacik 				break;
5869f21246dSJosef Bacik 
5879f21246dSJosef Bacik 			if (need_resched() ||
5889f21246dSJosef Bacik 			    rwsem_is_contended(&fs_info->commit_root_sem)) {
5899f21246dSJosef Bacik 				if (wakeup)
5909f21246dSJosef Bacik 					caching_ctl->progress = last;
5919f21246dSJosef Bacik 				btrfs_release_path(path);
5929f21246dSJosef Bacik 				up_read(&fs_info->commit_root_sem);
5939f21246dSJosef Bacik 				mutex_unlock(&caching_ctl->mutex);
5949f21246dSJosef Bacik 				cond_resched();
5959f21246dSJosef Bacik 				mutex_lock(&caching_ctl->mutex);
5969f21246dSJosef Bacik 				down_read(&fs_info->commit_root_sem);
5979f21246dSJosef Bacik 				goto next;
5989f21246dSJosef Bacik 			}
5999f21246dSJosef Bacik 
6009f21246dSJosef Bacik 			ret = btrfs_next_leaf(extent_root, path);
6019f21246dSJosef Bacik 			if (ret < 0)
6029f21246dSJosef Bacik 				goto out;
6039f21246dSJosef Bacik 			if (ret)
6049f21246dSJosef Bacik 				break;
6059f21246dSJosef Bacik 			leaf = path->nodes[0];
6069f21246dSJosef Bacik 			nritems = btrfs_header_nritems(leaf);
6079f21246dSJosef Bacik 			continue;
6089f21246dSJosef Bacik 		}
6099f21246dSJosef Bacik 
6109f21246dSJosef Bacik 		if (key.objectid < last) {
6119f21246dSJosef Bacik 			key.objectid = last;
6129f21246dSJosef Bacik 			key.offset = 0;
6139f21246dSJosef Bacik 			key.type = BTRFS_EXTENT_ITEM_KEY;
6149f21246dSJosef Bacik 
6159f21246dSJosef Bacik 			if (wakeup)
6169f21246dSJosef Bacik 				caching_ctl->progress = last;
6179f21246dSJosef Bacik 			btrfs_release_path(path);
6189f21246dSJosef Bacik 			goto next;
6199f21246dSJosef Bacik 		}
6209f21246dSJosef Bacik 
621b3470b5dSDavid Sterba 		if (key.objectid < block_group->start) {
6229f21246dSJosef Bacik 			path->slots[0]++;
6239f21246dSJosef Bacik 			continue;
6249f21246dSJosef Bacik 		}
6259f21246dSJosef Bacik 
626b3470b5dSDavid Sterba 		if (key.objectid >= block_group->start + block_group->length)
6279f21246dSJosef Bacik 			break;
6289f21246dSJosef Bacik 
6299f21246dSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY ||
6309f21246dSJosef Bacik 		    key.type == BTRFS_METADATA_ITEM_KEY) {
6319f21246dSJosef Bacik 			total_found += add_new_free_space(block_group, last,
6329f21246dSJosef Bacik 							  key.objectid);
6339f21246dSJosef Bacik 			if (key.type == BTRFS_METADATA_ITEM_KEY)
6349f21246dSJosef Bacik 				last = key.objectid +
6359f21246dSJosef Bacik 					fs_info->nodesize;
6369f21246dSJosef Bacik 			else
6379f21246dSJosef Bacik 				last = key.objectid + key.offset;
6389f21246dSJosef Bacik 
6399f21246dSJosef Bacik 			if (total_found > CACHING_CTL_WAKE_UP) {
6409f21246dSJosef Bacik 				total_found = 0;
6419f21246dSJosef Bacik 				if (wakeup)
6429f21246dSJosef Bacik 					wake_up(&caching_ctl->wait);
6439f21246dSJosef Bacik 			}
6449f21246dSJosef Bacik 		}
6459f21246dSJosef Bacik 		path->slots[0]++;
6469f21246dSJosef Bacik 	}
6479f21246dSJosef Bacik 	ret = 0;
6489f21246dSJosef Bacik 
6499f21246dSJosef Bacik 	total_found += add_new_free_space(block_group, last,
650b3470b5dSDavid Sterba 				block_group->start + block_group->length);
6519f21246dSJosef Bacik 	caching_ctl->progress = (u64)-1;
6529f21246dSJosef Bacik 
6539f21246dSJosef Bacik out:
6549f21246dSJosef Bacik 	btrfs_free_path(path);
6559f21246dSJosef Bacik 	return ret;
6569f21246dSJosef Bacik }
6579f21246dSJosef Bacik 
6589f21246dSJosef Bacik static noinline void caching_thread(struct btrfs_work *work)
6599f21246dSJosef Bacik {
66032da5386SDavid Sterba 	struct btrfs_block_group *block_group;
6619f21246dSJosef Bacik 	struct btrfs_fs_info *fs_info;
6629f21246dSJosef Bacik 	struct btrfs_caching_control *caching_ctl;
6639f21246dSJosef Bacik 	int ret;
6649f21246dSJosef Bacik 
6659f21246dSJosef Bacik 	caching_ctl = container_of(work, struct btrfs_caching_control, work);
6669f21246dSJosef Bacik 	block_group = caching_ctl->block_group;
6679f21246dSJosef Bacik 	fs_info = block_group->fs_info;
6689f21246dSJosef Bacik 
6699f21246dSJosef Bacik 	mutex_lock(&caching_ctl->mutex);
6709f21246dSJosef Bacik 	down_read(&fs_info->commit_root_sem);
6719f21246dSJosef Bacik 
672e747853cSJosef Bacik 	if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
673e747853cSJosef Bacik 		ret = load_free_space_cache(block_group);
674e747853cSJosef Bacik 		if (ret == 1) {
675e747853cSJosef Bacik 			ret = 0;
676e747853cSJosef Bacik 			goto done;
677e747853cSJosef Bacik 		}
678e747853cSJosef Bacik 
679e747853cSJosef Bacik 		/*
680e747853cSJosef Bacik 		 * We failed to load the space cache, set ourselves to
681e747853cSJosef Bacik 		 * CACHE_STARTED and carry on.
682e747853cSJosef Bacik 		 */
683e747853cSJosef Bacik 		spin_lock(&block_group->lock);
684e747853cSJosef Bacik 		block_group->cached = BTRFS_CACHE_STARTED;
685e747853cSJosef Bacik 		spin_unlock(&block_group->lock);
686e747853cSJosef Bacik 		wake_up(&caching_ctl->wait);
687e747853cSJosef Bacik 	}
688e747853cSJosef Bacik 
6892f96e402SJosef Bacik 	/*
6902f96e402SJosef Bacik 	 * If we are in the transaction that populated the free space tree we
6912f96e402SJosef Bacik 	 * can't actually cache from the free space tree as our commit root and
6922f96e402SJosef Bacik 	 * real root are the same, so we could change the contents of the blocks
6932f96e402SJosef Bacik 	 * while caching.  Instead do the slow caching in this case, and after
6942f96e402SJosef Bacik 	 * the transaction has committed we will be safe.
6952f96e402SJosef Bacik 	 */
6962f96e402SJosef Bacik 	if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) &&
6972f96e402SJosef Bacik 	    !(test_bit(BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED, &fs_info->flags)))
6989f21246dSJosef Bacik 		ret = load_free_space_tree(caching_ctl);
6999f21246dSJosef Bacik 	else
7009f21246dSJosef Bacik 		ret = load_extent_tree_free(caching_ctl);
701e747853cSJosef Bacik done:
7029f21246dSJosef Bacik 	spin_lock(&block_group->lock);
7039f21246dSJosef Bacik 	block_group->caching_ctl = NULL;
7049f21246dSJosef Bacik 	block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
7059f21246dSJosef Bacik 	spin_unlock(&block_group->lock);
7069f21246dSJosef Bacik 
7079f21246dSJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
7089f21246dSJosef Bacik 	if (btrfs_should_fragment_free_space(block_group)) {
7099f21246dSJosef Bacik 		u64 bytes_used;
7109f21246dSJosef Bacik 
7119f21246dSJosef Bacik 		spin_lock(&block_group->space_info->lock);
7129f21246dSJosef Bacik 		spin_lock(&block_group->lock);
713b3470b5dSDavid Sterba 		bytes_used = block_group->length - block_group->used;
7149f21246dSJosef Bacik 		block_group->space_info->bytes_used += bytes_used >> 1;
7159f21246dSJosef Bacik 		spin_unlock(&block_group->lock);
7169f21246dSJosef Bacik 		spin_unlock(&block_group->space_info->lock);
717e11c0406SJosef Bacik 		fragment_free_space(block_group);
7189f21246dSJosef Bacik 	}
7199f21246dSJosef Bacik #endif
7209f21246dSJosef Bacik 
7219f21246dSJosef Bacik 	caching_ctl->progress = (u64)-1;
7229f21246dSJosef Bacik 
7239f21246dSJosef Bacik 	up_read(&fs_info->commit_root_sem);
7249f21246dSJosef Bacik 	btrfs_free_excluded_extents(block_group);
7259f21246dSJosef Bacik 	mutex_unlock(&caching_ctl->mutex);
7269f21246dSJosef Bacik 
7279f21246dSJosef Bacik 	wake_up(&caching_ctl->wait);
7289f21246dSJosef Bacik 
7299f21246dSJosef Bacik 	btrfs_put_caching_control(caching_ctl);
7309f21246dSJosef Bacik 	btrfs_put_block_group(block_group);
7319f21246dSJosef Bacik }
7329f21246dSJosef Bacik 
73332da5386SDavid Sterba int btrfs_cache_block_group(struct btrfs_block_group *cache, int load_cache_only)
7349f21246dSJosef Bacik {
7359f21246dSJosef Bacik 	DEFINE_WAIT(wait);
7369f21246dSJosef Bacik 	struct btrfs_fs_info *fs_info = cache->fs_info;
737e747853cSJosef Bacik 	struct btrfs_caching_control *caching_ctl = NULL;
7389f21246dSJosef Bacik 	int ret = 0;
7399f21246dSJosef Bacik 
7402eda5708SNaohiro Aota 	/* Allocator for zoned filesystems does not use the cache at all */
7412eda5708SNaohiro Aota 	if (btrfs_is_zoned(fs_info))
7422eda5708SNaohiro Aota 		return 0;
7432eda5708SNaohiro Aota 
7449f21246dSJosef Bacik 	caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
7459f21246dSJosef Bacik 	if (!caching_ctl)
7469f21246dSJosef Bacik 		return -ENOMEM;
7479f21246dSJosef Bacik 
7489f21246dSJosef Bacik 	INIT_LIST_HEAD(&caching_ctl->list);
7499f21246dSJosef Bacik 	mutex_init(&caching_ctl->mutex);
7509f21246dSJosef Bacik 	init_waitqueue_head(&caching_ctl->wait);
7519f21246dSJosef Bacik 	caching_ctl->block_group = cache;
752b3470b5dSDavid Sterba 	caching_ctl->progress = cache->start;
753e747853cSJosef Bacik 	refcount_set(&caching_ctl->count, 2);
754a0cac0ecSOmar Sandoval 	btrfs_init_work(&caching_ctl->work, caching_thread, NULL, NULL);
7559f21246dSJosef Bacik 
7569f21246dSJosef Bacik 	spin_lock(&cache->lock);
7579f21246dSJosef Bacik 	if (cache->cached != BTRFS_CACHE_NO) {
7589f21246dSJosef Bacik 		kfree(caching_ctl);
759e747853cSJosef Bacik 
760e747853cSJosef Bacik 		caching_ctl = cache->caching_ctl;
761e747853cSJosef Bacik 		if (caching_ctl)
762e747853cSJosef Bacik 			refcount_inc(&caching_ctl->count);
763e747853cSJosef Bacik 		spin_unlock(&cache->lock);
764e747853cSJosef Bacik 		goto out;
7659f21246dSJosef Bacik 	}
7669f21246dSJosef Bacik 	WARN_ON(cache->caching_ctl);
7679f21246dSJosef Bacik 	cache->caching_ctl = caching_ctl;
768e747853cSJosef Bacik 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
7699f21246dSJosef Bacik 		cache->cached = BTRFS_CACHE_FAST;
770e747853cSJosef Bacik 	else
7719f21246dSJosef Bacik 		cache->cached = BTRFS_CACHE_STARTED;
7729f21246dSJosef Bacik 	cache->has_caching_ctl = 1;
7739f21246dSJosef Bacik 	spin_unlock(&cache->lock);
7749f21246dSJosef Bacik 
775bbb86a37SJosef Bacik 	spin_lock(&fs_info->block_group_cache_lock);
7769f21246dSJosef Bacik 	refcount_inc(&caching_ctl->count);
7779f21246dSJosef Bacik 	list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
778bbb86a37SJosef Bacik 	spin_unlock(&fs_info->block_group_cache_lock);
7799f21246dSJosef Bacik 
7809f21246dSJosef Bacik 	btrfs_get_block_group(cache);
7819f21246dSJosef Bacik 
7829f21246dSJosef Bacik 	btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
783e747853cSJosef Bacik out:
784e747853cSJosef Bacik 	if (load_cache_only && caching_ctl)
785e747853cSJosef Bacik 		btrfs_wait_space_cache_v1_finished(cache, caching_ctl);
786e747853cSJosef Bacik 	if (caching_ctl)
787e747853cSJosef Bacik 		btrfs_put_caching_control(caching_ctl);
7889f21246dSJosef Bacik 
7899f21246dSJosef Bacik 	return ret;
7909f21246dSJosef Bacik }
791e3e0520bSJosef Bacik 
792e3e0520bSJosef Bacik static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
793e3e0520bSJosef Bacik {
794e3e0520bSJosef Bacik 	u64 extra_flags = chunk_to_extended(flags) &
795e3e0520bSJosef Bacik 				BTRFS_EXTENDED_PROFILE_MASK;
796e3e0520bSJosef Bacik 
797e3e0520bSJosef Bacik 	write_seqlock(&fs_info->profiles_lock);
798e3e0520bSJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_DATA)
799e3e0520bSJosef Bacik 		fs_info->avail_data_alloc_bits &= ~extra_flags;
800e3e0520bSJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_METADATA)
801e3e0520bSJosef Bacik 		fs_info->avail_metadata_alloc_bits &= ~extra_flags;
802e3e0520bSJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
803e3e0520bSJosef Bacik 		fs_info->avail_system_alloc_bits &= ~extra_flags;
804e3e0520bSJosef Bacik 	write_sequnlock(&fs_info->profiles_lock);
805e3e0520bSJosef Bacik }
806e3e0520bSJosef Bacik 
807e3e0520bSJosef Bacik /*
808e3e0520bSJosef Bacik  * Clear incompat bits for the following feature(s):
809e3e0520bSJosef Bacik  *
810e3e0520bSJosef Bacik  * - RAID56 - in case there's neither RAID5 nor RAID6 profile block group
811e3e0520bSJosef Bacik  *            in the whole filesystem
8129c907446SDavid Sterba  *
8139c907446SDavid Sterba  * - RAID1C34 - same as above for RAID1C3 and RAID1C4 block groups
814e3e0520bSJosef Bacik  */
815e3e0520bSJosef Bacik static void clear_incompat_bg_bits(struct btrfs_fs_info *fs_info, u64 flags)
816e3e0520bSJosef Bacik {
8179c907446SDavid Sterba 	bool found_raid56 = false;
8189c907446SDavid Sterba 	bool found_raid1c34 = false;
8199c907446SDavid Sterba 
8209c907446SDavid Sterba 	if ((flags & BTRFS_BLOCK_GROUP_RAID56_MASK) ||
8219c907446SDavid Sterba 	    (flags & BTRFS_BLOCK_GROUP_RAID1C3) ||
8229c907446SDavid Sterba 	    (flags & BTRFS_BLOCK_GROUP_RAID1C4)) {
823e3e0520bSJosef Bacik 		struct list_head *head = &fs_info->space_info;
824e3e0520bSJosef Bacik 		struct btrfs_space_info *sinfo;
825e3e0520bSJosef Bacik 
826e3e0520bSJosef Bacik 		list_for_each_entry_rcu(sinfo, head, list) {
827e3e0520bSJosef Bacik 			down_read(&sinfo->groups_sem);
828e3e0520bSJosef Bacik 			if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID5]))
8299c907446SDavid Sterba 				found_raid56 = true;
830e3e0520bSJosef Bacik 			if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID6]))
8319c907446SDavid Sterba 				found_raid56 = true;
8329c907446SDavid Sterba 			if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID1C3]))
8339c907446SDavid Sterba 				found_raid1c34 = true;
8349c907446SDavid Sterba 			if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID1C4]))
8359c907446SDavid Sterba 				found_raid1c34 = true;
836e3e0520bSJosef Bacik 			up_read(&sinfo->groups_sem);
837e3e0520bSJosef Bacik 		}
838d8e6fd5cSFilipe Manana 		if (!found_raid56)
839e3e0520bSJosef Bacik 			btrfs_clear_fs_incompat(fs_info, RAID56);
840d8e6fd5cSFilipe Manana 		if (!found_raid1c34)
8419c907446SDavid Sterba 			btrfs_clear_fs_incompat(fs_info, RAID1C34);
842e3e0520bSJosef Bacik 	}
843e3e0520bSJosef Bacik }
844e3e0520bSJosef Bacik 
8457357623aSQu Wenruo static int remove_block_group_item(struct btrfs_trans_handle *trans,
8467357623aSQu Wenruo 				   struct btrfs_path *path,
8477357623aSQu Wenruo 				   struct btrfs_block_group *block_group)
8487357623aSQu Wenruo {
8497357623aSQu Wenruo 	struct btrfs_fs_info *fs_info = trans->fs_info;
8507357623aSQu Wenruo 	struct btrfs_root *root;
8517357623aSQu Wenruo 	struct btrfs_key key;
8527357623aSQu Wenruo 	int ret;
8537357623aSQu Wenruo 
854dfe8aec4SJosef Bacik 	root = btrfs_block_group_root(fs_info);
8557357623aSQu Wenruo 	key.objectid = block_group->start;
8567357623aSQu Wenruo 	key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
8577357623aSQu Wenruo 	key.offset = block_group->length;
8587357623aSQu Wenruo 
8597357623aSQu Wenruo 	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8607357623aSQu Wenruo 	if (ret > 0)
8617357623aSQu Wenruo 		ret = -ENOENT;
8627357623aSQu Wenruo 	if (ret < 0)
8637357623aSQu Wenruo 		return ret;
8647357623aSQu Wenruo 
8657357623aSQu Wenruo 	ret = btrfs_del_item(trans, root, path);
8667357623aSQu Wenruo 	return ret;
8677357623aSQu Wenruo }
8687357623aSQu Wenruo 
869e3e0520bSJosef Bacik int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
870e3e0520bSJosef Bacik 			     u64 group_start, struct extent_map *em)
871e3e0520bSJosef Bacik {
872e3e0520bSJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
873e3e0520bSJosef Bacik 	struct btrfs_path *path;
87432da5386SDavid Sterba 	struct btrfs_block_group *block_group;
875e3e0520bSJosef Bacik 	struct btrfs_free_cluster *cluster;
876e3e0520bSJosef Bacik 	struct inode *inode;
877e3e0520bSJosef Bacik 	struct kobject *kobj = NULL;
878e3e0520bSJosef Bacik 	int ret;
879e3e0520bSJosef Bacik 	int index;
880e3e0520bSJosef Bacik 	int factor;
881e3e0520bSJosef Bacik 	struct btrfs_caching_control *caching_ctl = NULL;
882e3e0520bSJosef Bacik 	bool remove_em;
883e3e0520bSJosef Bacik 	bool remove_rsv = false;
884e3e0520bSJosef Bacik 
885e3e0520bSJosef Bacik 	block_group = btrfs_lookup_block_group(fs_info, group_start);
886e3e0520bSJosef Bacik 	BUG_ON(!block_group);
887e3e0520bSJosef Bacik 	BUG_ON(!block_group->ro);
888e3e0520bSJosef Bacik 
889e3e0520bSJosef Bacik 	trace_btrfs_remove_block_group(block_group);
890e3e0520bSJosef Bacik 	/*
891e3e0520bSJosef Bacik 	 * Free the reserved super bytes from this block group before
892e3e0520bSJosef Bacik 	 * remove it.
893e3e0520bSJosef Bacik 	 */
894e3e0520bSJosef Bacik 	btrfs_free_excluded_extents(block_group);
895b3470b5dSDavid Sterba 	btrfs_free_ref_tree_range(fs_info, block_group->start,
896b3470b5dSDavid Sterba 				  block_group->length);
897e3e0520bSJosef Bacik 
898e3e0520bSJosef Bacik 	index = btrfs_bg_flags_to_raid_index(block_group->flags);
899e3e0520bSJosef Bacik 	factor = btrfs_bg_type_to_factor(block_group->flags);
900e3e0520bSJosef Bacik 
901e3e0520bSJosef Bacik 	/* make sure this block group isn't part of an allocation cluster */
902e3e0520bSJosef Bacik 	cluster = &fs_info->data_alloc_cluster;
903e3e0520bSJosef Bacik 	spin_lock(&cluster->refill_lock);
904e3e0520bSJosef Bacik 	btrfs_return_cluster_to_free_space(block_group, cluster);
905e3e0520bSJosef Bacik 	spin_unlock(&cluster->refill_lock);
906e3e0520bSJosef Bacik 
907e3e0520bSJosef Bacik 	/*
908e3e0520bSJosef Bacik 	 * make sure this block group isn't part of a metadata
909e3e0520bSJosef Bacik 	 * allocation cluster
910e3e0520bSJosef Bacik 	 */
911e3e0520bSJosef Bacik 	cluster = &fs_info->meta_alloc_cluster;
912e3e0520bSJosef Bacik 	spin_lock(&cluster->refill_lock);
913e3e0520bSJosef Bacik 	btrfs_return_cluster_to_free_space(block_group, cluster);
914e3e0520bSJosef Bacik 	spin_unlock(&cluster->refill_lock);
915e3e0520bSJosef Bacik 
91640ab3be1SNaohiro Aota 	btrfs_clear_treelog_bg(block_group);
917c2707a25SJohannes Thumshirn 	btrfs_clear_data_reloc_bg(block_group);
91840ab3be1SNaohiro Aota 
919e3e0520bSJosef Bacik 	path = btrfs_alloc_path();
920e3e0520bSJosef Bacik 	if (!path) {
921e3e0520bSJosef Bacik 		ret = -ENOMEM;
9229fecd132SFilipe Manana 		goto out;
923e3e0520bSJosef Bacik 	}
924e3e0520bSJosef Bacik 
925e3e0520bSJosef Bacik 	/*
926e3e0520bSJosef Bacik 	 * get the inode first so any iput calls done for the io_list
927e3e0520bSJosef Bacik 	 * aren't the final iput (no unlinks allowed now)
928e3e0520bSJosef Bacik 	 */
929e3e0520bSJosef Bacik 	inode = lookup_free_space_inode(block_group, path);
930e3e0520bSJosef Bacik 
931e3e0520bSJosef Bacik 	mutex_lock(&trans->transaction->cache_write_mutex);
932e3e0520bSJosef Bacik 	/*
933e3e0520bSJosef Bacik 	 * Make sure our free space cache IO is done before removing the
934e3e0520bSJosef Bacik 	 * free space inode
935e3e0520bSJosef Bacik 	 */
936e3e0520bSJosef Bacik 	spin_lock(&trans->transaction->dirty_bgs_lock);
937e3e0520bSJosef Bacik 	if (!list_empty(&block_group->io_list)) {
938e3e0520bSJosef Bacik 		list_del_init(&block_group->io_list);
939e3e0520bSJosef Bacik 
940e3e0520bSJosef Bacik 		WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
941e3e0520bSJosef Bacik 
942e3e0520bSJosef Bacik 		spin_unlock(&trans->transaction->dirty_bgs_lock);
943e3e0520bSJosef Bacik 		btrfs_wait_cache_io(trans, block_group, path);
944e3e0520bSJosef Bacik 		btrfs_put_block_group(block_group);
945e3e0520bSJosef Bacik 		spin_lock(&trans->transaction->dirty_bgs_lock);
946e3e0520bSJosef Bacik 	}
947e3e0520bSJosef Bacik 
948e3e0520bSJosef Bacik 	if (!list_empty(&block_group->dirty_list)) {
949e3e0520bSJosef Bacik 		list_del_init(&block_group->dirty_list);
950e3e0520bSJosef Bacik 		remove_rsv = true;
951e3e0520bSJosef Bacik 		btrfs_put_block_group(block_group);
952e3e0520bSJosef Bacik 	}
953e3e0520bSJosef Bacik 	spin_unlock(&trans->transaction->dirty_bgs_lock);
954e3e0520bSJosef Bacik 	mutex_unlock(&trans->transaction->cache_write_mutex);
955e3e0520bSJosef Bacik 
95636b216c8SBoris Burkov 	ret = btrfs_remove_free_space_inode(trans, inode, block_group);
957e3e0520bSJosef Bacik 	if (ret)
9589fecd132SFilipe Manana 		goto out;
959e3e0520bSJosef Bacik 
960e3e0520bSJosef Bacik 	spin_lock(&fs_info->block_group_cache_lock);
961e3e0520bSJosef Bacik 	rb_erase(&block_group->cache_node,
962e3e0520bSJosef Bacik 		 &fs_info->block_group_cache_tree);
963e3e0520bSJosef Bacik 	RB_CLEAR_NODE(&block_group->cache_node);
964e3e0520bSJosef Bacik 
9659fecd132SFilipe Manana 	/* Once for the block groups rbtree */
9669fecd132SFilipe Manana 	btrfs_put_block_group(block_group);
9679fecd132SFilipe Manana 
968b3470b5dSDavid Sterba 	if (fs_info->first_logical_byte == block_group->start)
969e3e0520bSJosef Bacik 		fs_info->first_logical_byte = (u64)-1;
970e3e0520bSJosef Bacik 	spin_unlock(&fs_info->block_group_cache_lock);
971e3e0520bSJosef Bacik 
972e3e0520bSJosef Bacik 	down_write(&block_group->space_info->groups_sem);
973e3e0520bSJosef Bacik 	/*
974e3e0520bSJosef Bacik 	 * we must use list_del_init so people can check to see if they
975e3e0520bSJosef Bacik 	 * are still on the list after taking the semaphore
976e3e0520bSJosef Bacik 	 */
977e3e0520bSJosef Bacik 	list_del_init(&block_group->list);
978e3e0520bSJosef Bacik 	if (list_empty(&block_group->space_info->block_groups[index])) {
979e3e0520bSJosef Bacik 		kobj = block_group->space_info->block_group_kobjs[index];
980e3e0520bSJosef Bacik 		block_group->space_info->block_group_kobjs[index] = NULL;
981e3e0520bSJosef Bacik 		clear_avail_alloc_bits(fs_info, block_group->flags);
982e3e0520bSJosef Bacik 	}
983e3e0520bSJosef Bacik 	up_write(&block_group->space_info->groups_sem);
984e3e0520bSJosef Bacik 	clear_incompat_bg_bits(fs_info, block_group->flags);
985e3e0520bSJosef Bacik 	if (kobj) {
986e3e0520bSJosef Bacik 		kobject_del(kobj);
987e3e0520bSJosef Bacik 		kobject_put(kobj);
988e3e0520bSJosef Bacik 	}
989e3e0520bSJosef Bacik 
990e3e0520bSJosef Bacik 	if (block_group->has_caching_ctl)
991e3e0520bSJosef Bacik 		caching_ctl = btrfs_get_caching_control(block_group);
992e3e0520bSJosef Bacik 	if (block_group->cached == BTRFS_CACHE_STARTED)
993e3e0520bSJosef Bacik 		btrfs_wait_block_group_cache_done(block_group);
994e3e0520bSJosef Bacik 	if (block_group->has_caching_ctl) {
995bbb86a37SJosef Bacik 		spin_lock(&fs_info->block_group_cache_lock);
996e3e0520bSJosef Bacik 		if (!caching_ctl) {
997e3e0520bSJosef Bacik 			struct btrfs_caching_control *ctl;
998e3e0520bSJosef Bacik 
999e3e0520bSJosef Bacik 			list_for_each_entry(ctl,
1000e3e0520bSJosef Bacik 				    &fs_info->caching_block_groups, list)
1001e3e0520bSJosef Bacik 				if (ctl->block_group == block_group) {
1002e3e0520bSJosef Bacik 					caching_ctl = ctl;
1003e3e0520bSJosef Bacik 					refcount_inc(&caching_ctl->count);
1004e3e0520bSJosef Bacik 					break;
1005e3e0520bSJosef Bacik 				}
1006e3e0520bSJosef Bacik 		}
1007e3e0520bSJosef Bacik 		if (caching_ctl)
1008e3e0520bSJosef Bacik 			list_del_init(&caching_ctl->list);
1009bbb86a37SJosef Bacik 		spin_unlock(&fs_info->block_group_cache_lock);
1010e3e0520bSJosef Bacik 		if (caching_ctl) {
1011e3e0520bSJosef Bacik 			/* Once for the caching bgs list and once for us. */
1012e3e0520bSJosef Bacik 			btrfs_put_caching_control(caching_ctl);
1013e3e0520bSJosef Bacik 			btrfs_put_caching_control(caching_ctl);
1014e3e0520bSJosef Bacik 		}
1015e3e0520bSJosef Bacik 	}
1016e3e0520bSJosef Bacik 
1017e3e0520bSJosef Bacik 	spin_lock(&trans->transaction->dirty_bgs_lock);
1018e3e0520bSJosef Bacik 	WARN_ON(!list_empty(&block_group->dirty_list));
1019e3e0520bSJosef Bacik 	WARN_ON(!list_empty(&block_group->io_list));
1020e3e0520bSJosef Bacik 	spin_unlock(&trans->transaction->dirty_bgs_lock);
1021e3e0520bSJosef Bacik 
1022e3e0520bSJosef Bacik 	btrfs_remove_free_space_cache(block_group);
1023e3e0520bSJosef Bacik 
1024e3e0520bSJosef Bacik 	spin_lock(&block_group->space_info->lock);
1025e3e0520bSJosef Bacik 	list_del_init(&block_group->ro_list);
1026e3e0520bSJosef Bacik 
1027e3e0520bSJosef Bacik 	if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
1028e3e0520bSJosef Bacik 		WARN_ON(block_group->space_info->total_bytes
1029b3470b5dSDavid Sterba 			< block_group->length);
1030e3e0520bSJosef Bacik 		WARN_ON(block_group->space_info->bytes_readonly
1031169e0da9SNaohiro Aota 			< block_group->length - block_group->zone_unusable);
1032169e0da9SNaohiro Aota 		WARN_ON(block_group->space_info->bytes_zone_unusable
1033169e0da9SNaohiro Aota 			< block_group->zone_unusable);
1034e3e0520bSJosef Bacik 		WARN_ON(block_group->space_info->disk_total
1035b3470b5dSDavid Sterba 			< block_group->length * factor);
1036e3e0520bSJosef Bacik 	}
1037b3470b5dSDavid Sterba 	block_group->space_info->total_bytes -= block_group->length;
1038169e0da9SNaohiro Aota 	block_group->space_info->bytes_readonly -=
1039169e0da9SNaohiro Aota 		(block_group->length - block_group->zone_unusable);
1040169e0da9SNaohiro Aota 	block_group->space_info->bytes_zone_unusable -=
1041169e0da9SNaohiro Aota 		block_group->zone_unusable;
1042b3470b5dSDavid Sterba 	block_group->space_info->disk_total -= block_group->length * factor;
1043e3e0520bSJosef Bacik 
1044e3e0520bSJosef Bacik 	spin_unlock(&block_group->space_info->lock);
1045e3e0520bSJosef Bacik 
1046ffcb9d44SFilipe Manana 	/*
1047ffcb9d44SFilipe Manana 	 * Remove the free space for the block group from the free space tree
1048ffcb9d44SFilipe Manana 	 * and the block group's item from the extent tree before marking the
1049ffcb9d44SFilipe Manana 	 * block group as removed. This is to prevent races with tasks that
1050ffcb9d44SFilipe Manana 	 * freeze and unfreeze a block group, this task and another task
1051ffcb9d44SFilipe Manana 	 * allocating a new block group - the unfreeze task ends up removing
1052ffcb9d44SFilipe Manana 	 * the block group's extent map before the task calling this function
1053ffcb9d44SFilipe Manana 	 * deletes the block group item from the extent tree, allowing for
1054ffcb9d44SFilipe Manana 	 * another task to attempt to create another block group with the same
1055ffcb9d44SFilipe Manana 	 * item key (and failing with -EEXIST and a transaction abort).
1056ffcb9d44SFilipe Manana 	 */
1057ffcb9d44SFilipe Manana 	ret = remove_block_group_free_space(trans, block_group);
1058ffcb9d44SFilipe Manana 	if (ret)
1059ffcb9d44SFilipe Manana 		goto out;
1060ffcb9d44SFilipe Manana 
1061ffcb9d44SFilipe Manana 	ret = remove_block_group_item(trans, path, block_group);
1062ffcb9d44SFilipe Manana 	if (ret < 0)
1063ffcb9d44SFilipe Manana 		goto out;
1064ffcb9d44SFilipe Manana 
1065e3e0520bSJosef Bacik 	spin_lock(&block_group->lock);
1066e3e0520bSJosef Bacik 	block_group->removed = 1;
1067e3e0520bSJosef Bacik 	/*
10686b7304afSFilipe Manana 	 * At this point trimming or scrub can't start on this block group,
10696b7304afSFilipe Manana 	 * because we removed the block group from the rbtree
10706b7304afSFilipe Manana 	 * fs_info->block_group_cache_tree so no one can't find it anymore and
10716b7304afSFilipe Manana 	 * even if someone already got this block group before we removed it
10726b7304afSFilipe Manana 	 * from the rbtree, they have already incremented block_group->frozen -
10736b7304afSFilipe Manana 	 * if they didn't, for the trimming case they won't find any free space
10746b7304afSFilipe Manana 	 * entries because we already removed them all when we called
10756b7304afSFilipe Manana 	 * btrfs_remove_free_space_cache().
1076e3e0520bSJosef Bacik 	 *
1077e3e0520bSJosef Bacik 	 * And we must not remove the extent map from the fs_info->mapping_tree
1078e3e0520bSJosef Bacik 	 * to prevent the same logical address range and physical device space
10796b7304afSFilipe Manana 	 * ranges from being reused for a new block group. This is needed to
10806b7304afSFilipe Manana 	 * avoid races with trimming and scrub.
10816b7304afSFilipe Manana 	 *
10826b7304afSFilipe Manana 	 * An fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
1083e3e0520bSJosef Bacik 	 * completely transactionless, so while it is trimming a range the
1084e3e0520bSJosef Bacik 	 * currently running transaction might finish and a new one start,
1085e3e0520bSJosef Bacik 	 * allowing for new block groups to be created that can reuse the same
1086e3e0520bSJosef Bacik 	 * physical device locations unless we take this special care.
1087e3e0520bSJosef Bacik 	 *
1088e3e0520bSJosef Bacik 	 * There may also be an implicit trim operation if the file system
1089e3e0520bSJosef Bacik 	 * is mounted with -odiscard. The same protections must remain
1090e3e0520bSJosef Bacik 	 * in place until the extents have been discarded completely when
1091e3e0520bSJosef Bacik 	 * the transaction commit has completed.
1092e3e0520bSJosef Bacik 	 */
10936b7304afSFilipe Manana 	remove_em = (atomic_read(&block_group->frozen) == 0);
1094e3e0520bSJosef Bacik 	spin_unlock(&block_group->lock);
1095e3e0520bSJosef Bacik 
1096e3e0520bSJosef Bacik 	if (remove_em) {
1097e3e0520bSJosef Bacik 		struct extent_map_tree *em_tree;
1098e3e0520bSJosef Bacik 
1099e3e0520bSJosef Bacik 		em_tree = &fs_info->mapping_tree;
1100e3e0520bSJosef Bacik 		write_lock(&em_tree->lock);
1101e3e0520bSJosef Bacik 		remove_extent_mapping(em_tree, em);
1102e3e0520bSJosef Bacik 		write_unlock(&em_tree->lock);
1103e3e0520bSJosef Bacik 		/* once for the tree */
1104e3e0520bSJosef Bacik 		free_extent_map(em);
1105e3e0520bSJosef Bacik 	}
1106f6033c5eSXiyu Yang 
11079fecd132SFilipe Manana out:
1108f6033c5eSXiyu Yang 	/* Once for the lookup reference */
1109f6033c5eSXiyu Yang 	btrfs_put_block_group(block_group);
1110e3e0520bSJosef Bacik 	if (remove_rsv)
1111e3e0520bSJosef Bacik 		btrfs_delayed_refs_rsv_release(fs_info, 1);
1112e3e0520bSJosef Bacik 	btrfs_free_path(path);
1113e3e0520bSJosef Bacik 	return ret;
1114e3e0520bSJosef Bacik }
1115e3e0520bSJosef Bacik 
1116e3e0520bSJosef Bacik struct btrfs_trans_handle *btrfs_start_trans_remove_block_group(
1117e3e0520bSJosef Bacik 		struct btrfs_fs_info *fs_info, const u64 chunk_offset)
1118e3e0520bSJosef Bacik {
1119dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(fs_info);
1120e3e0520bSJosef Bacik 	struct extent_map_tree *em_tree = &fs_info->mapping_tree;
1121e3e0520bSJosef Bacik 	struct extent_map *em;
1122e3e0520bSJosef Bacik 	struct map_lookup *map;
1123e3e0520bSJosef Bacik 	unsigned int num_items;
1124e3e0520bSJosef Bacik 
1125e3e0520bSJosef Bacik 	read_lock(&em_tree->lock);
1126e3e0520bSJosef Bacik 	em = lookup_extent_mapping(em_tree, chunk_offset, 1);
1127e3e0520bSJosef Bacik 	read_unlock(&em_tree->lock);
1128e3e0520bSJosef Bacik 	ASSERT(em && em->start == chunk_offset);
1129e3e0520bSJosef Bacik 
1130e3e0520bSJosef Bacik 	/*
1131e3e0520bSJosef Bacik 	 * We need to reserve 3 + N units from the metadata space info in order
1132e3e0520bSJosef Bacik 	 * to remove a block group (done at btrfs_remove_chunk() and at
1133e3e0520bSJosef Bacik 	 * btrfs_remove_block_group()), which are used for:
1134e3e0520bSJosef Bacik 	 *
1135e3e0520bSJosef Bacik 	 * 1 unit for adding the free space inode's orphan (located in the tree
1136e3e0520bSJosef Bacik 	 * of tree roots).
1137e3e0520bSJosef Bacik 	 * 1 unit for deleting the block group item (located in the extent
1138e3e0520bSJosef Bacik 	 * tree).
1139e3e0520bSJosef Bacik 	 * 1 unit for deleting the free space item (located in tree of tree
1140e3e0520bSJosef Bacik 	 * roots).
1141e3e0520bSJosef Bacik 	 * N units for deleting N device extent items corresponding to each
1142e3e0520bSJosef Bacik 	 * stripe (located in the device tree).
1143e3e0520bSJosef Bacik 	 *
1144e3e0520bSJosef Bacik 	 * In order to remove a block group we also need to reserve units in the
1145e3e0520bSJosef Bacik 	 * system space info in order to update the chunk tree (update one or
1146e3e0520bSJosef Bacik 	 * more device items and remove one chunk item), but this is done at
1147e3e0520bSJosef Bacik 	 * btrfs_remove_chunk() through a call to check_system_chunk().
1148e3e0520bSJosef Bacik 	 */
1149e3e0520bSJosef Bacik 	map = em->map_lookup;
1150e3e0520bSJosef Bacik 	num_items = 3 + map->num_stripes;
1151e3e0520bSJosef Bacik 	free_extent_map(em);
1152e3e0520bSJosef Bacik 
1153dfe8aec4SJosef Bacik 	return btrfs_start_transaction_fallback_global_rsv(root, num_items);
1154e3e0520bSJosef Bacik }
1155e3e0520bSJosef Bacik 
1156e3e0520bSJosef Bacik /*
115726ce2095SJosef Bacik  * Mark block group @cache read-only, so later write won't happen to block
115826ce2095SJosef Bacik  * group @cache.
115926ce2095SJosef Bacik  *
116026ce2095SJosef Bacik  * If @force is not set, this function will only mark the block group readonly
116126ce2095SJosef Bacik  * if we have enough free space (1M) in other metadata/system block groups.
116226ce2095SJosef Bacik  * If @force is not set, this function will mark the block group readonly
116326ce2095SJosef Bacik  * without checking free space.
116426ce2095SJosef Bacik  *
116526ce2095SJosef Bacik  * NOTE: This function doesn't care if other block groups can contain all the
116626ce2095SJosef Bacik  * data in this block group. That check should be done by relocation routine,
116726ce2095SJosef Bacik  * not this function.
116826ce2095SJosef Bacik  */
116932da5386SDavid Sterba static int inc_block_group_ro(struct btrfs_block_group *cache, int force)
117026ce2095SJosef Bacik {
117126ce2095SJosef Bacik 	struct btrfs_space_info *sinfo = cache->space_info;
117226ce2095SJosef Bacik 	u64 num_bytes;
117326ce2095SJosef Bacik 	int ret = -ENOSPC;
117426ce2095SJosef Bacik 
117526ce2095SJosef Bacik 	spin_lock(&sinfo->lock);
117626ce2095SJosef Bacik 	spin_lock(&cache->lock);
117726ce2095SJosef Bacik 
1178195a49eaSFilipe Manana 	if (cache->swap_extents) {
1179195a49eaSFilipe Manana 		ret = -ETXTBSY;
1180195a49eaSFilipe Manana 		goto out;
1181195a49eaSFilipe Manana 	}
1182195a49eaSFilipe Manana 
118326ce2095SJosef Bacik 	if (cache->ro) {
118426ce2095SJosef Bacik 		cache->ro++;
118526ce2095SJosef Bacik 		ret = 0;
118626ce2095SJosef Bacik 		goto out;
118726ce2095SJosef Bacik 	}
118826ce2095SJosef Bacik 
1189b3470b5dSDavid Sterba 	num_bytes = cache->length - cache->reserved - cache->pinned -
1190169e0da9SNaohiro Aota 		    cache->bytes_super - cache->zone_unusable - cache->used;
119126ce2095SJosef Bacik 
119226ce2095SJosef Bacik 	/*
1193a30a3d20SJosef Bacik 	 * Data never overcommits, even in mixed mode, so do just the straight
1194a30a3d20SJosef Bacik 	 * check of left over space in how much we have allocated.
1195a30a3d20SJosef Bacik 	 */
1196a30a3d20SJosef Bacik 	if (force) {
1197a30a3d20SJosef Bacik 		ret = 0;
1198a30a3d20SJosef Bacik 	} else if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA) {
1199a30a3d20SJosef Bacik 		u64 sinfo_used = btrfs_space_info_used(sinfo, true);
1200a30a3d20SJosef Bacik 
1201a30a3d20SJosef Bacik 		/*
120226ce2095SJosef Bacik 		 * Here we make sure if we mark this bg RO, we still have enough
1203f8935566SJosef Bacik 		 * free space as buffer.
120426ce2095SJosef Bacik 		 */
1205a30a3d20SJosef Bacik 		if (sinfo_used + num_bytes <= sinfo->total_bytes)
1206a30a3d20SJosef Bacik 			ret = 0;
1207a30a3d20SJosef Bacik 	} else {
1208a30a3d20SJosef Bacik 		/*
1209a30a3d20SJosef Bacik 		 * We overcommit metadata, so we need to do the
1210a30a3d20SJosef Bacik 		 * btrfs_can_overcommit check here, and we need to pass in
1211a30a3d20SJosef Bacik 		 * BTRFS_RESERVE_NO_FLUSH to give ourselves the most amount of
1212a30a3d20SJosef Bacik 		 * leeway to allow us to mark this block group as read only.
1213a30a3d20SJosef Bacik 		 */
1214a30a3d20SJosef Bacik 		if (btrfs_can_overcommit(cache->fs_info, sinfo, num_bytes,
1215a30a3d20SJosef Bacik 					 BTRFS_RESERVE_NO_FLUSH))
1216a30a3d20SJosef Bacik 			ret = 0;
1217a30a3d20SJosef Bacik 	}
1218a30a3d20SJosef Bacik 
1219a30a3d20SJosef Bacik 	if (!ret) {
122026ce2095SJosef Bacik 		sinfo->bytes_readonly += num_bytes;
1221169e0da9SNaohiro Aota 		if (btrfs_is_zoned(cache->fs_info)) {
1222169e0da9SNaohiro Aota 			/* Migrate zone_unusable bytes to readonly */
1223169e0da9SNaohiro Aota 			sinfo->bytes_readonly += cache->zone_unusable;
1224169e0da9SNaohiro Aota 			sinfo->bytes_zone_unusable -= cache->zone_unusable;
1225169e0da9SNaohiro Aota 			cache->zone_unusable = 0;
1226169e0da9SNaohiro Aota 		}
122726ce2095SJosef Bacik 		cache->ro++;
122826ce2095SJosef Bacik 		list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
122926ce2095SJosef Bacik 	}
123026ce2095SJosef Bacik out:
123126ce2095SJosef Bacik 	spin_unlock(&cache->lock);
123226ce2095SJosef Bacik 	spin_unlock(&sinfo->lock);
123326ce2095SJosef Bacik 	if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
123426ce2095SJosef Bacik 		btrfs_info(cache->fs_info,
1235b3470b5dSDavid Sterba 			"unable to make block group %llu ro", cache->start);
123626ce2095SJosef Bacik 		btrfs_dump_space_info(cache->fs_info, cache->space_info, 0, 0);
123726ce2095SJosef Bacik 	}
123826ce2095SJosef Bacik 	return ret;
123926ce2095SJosef Bacik }
124026ce2095SJosef Bacik 
1241fe119a6eSNikolay Borisov static bool clean_pinned_extents(struct btrfs_trans_handle *trans,
1242fe119a6eSNikolay Borisov 				 struct btrfs_block_group *bg)
124345bb5d6aSNikolay Borisov {
124445bb5d6aSNikolay Borisov 	struct btrfs_fs_info *fs_info = bg->fs_info;
1245fe119a6eSNikolay Borisov 	struct btrfs_transaction *prev_trans = NULL;
124645bb5d6aSNikolay Borisov 	const u64 start = bg->start;
124745bb5d6aSNikolay Borisov 	const u64 end = start + bg->length - 1;
124845bb5d6aSNikolay Borisov 	int ret;
124945bb5d6aSNikolay Borisov 
1250fe119a6eSNikolay Borisov 	spin_lock(&fs_info->trans_lock);
1251fe119a6eSNikolay Borisov 	if (trans->transaction->list.prev != &fs_info->trans_list) {
1252fe119a6eSNikolay Borisov 		prev_trans = list_last_entry(&trans->transaction->list,
1253fe119a6eSNikolay Borisov 					     struct btrfs_transaction, list);
1254fe119a6eSNikolay Borisov 		refcount_inc(&prev_trans->use_count);
1255fe119a6eSNikolay Borisov 	}
1256fe119a6eSNikolay Borisov 	spin_unlock(&fs_info->trans_lock);
1257fe119a6eSNikolay Borisov 
125845bb5d6aSNikolay Borisov 	/*
125945bb5d6aSNikolay Borisov 	 * Hold the unused_bg_unpin_mutex lock to avoid racing with
126045bb5d6aSNikolay Borisov 	 * btrfs_finish_extent_commit(). If we are at transaction N, another
126145bb5d6aSNikolay Borisov 	 * task might be running finish_extent_commit() for the previous
126245bb5d6aSNikolay Borisov 	 * transaction N - 1, and have seen a range belonging to the block
1263fe119a6eSNikolay Borisov 	 * group in pinned_extents before we were able to clear the whole block
1264fe119a6eSNikolay Borisov 	 * group range from pinned_extents. This means that task can lookup for
1265fe119a6eSNikolay Borisov 	 * the block group after we unpinned it from pinned_extents and removed
1266fe119a6eSNikolay Borisov 	 * it, leading to a BUG_ON() at unpin_extent_range().
126745bb5d6aSNikolay Borisov 	 */
126845bb5d6aSNikolay Borisov 	mutex_lock(&fs_info->unused_bg_unpin_mutex);
1269fe119a6eSNikolay Borisov 	if (prev_trans) {
1270fe119a6eSNikolay Borisov 		ret = clear_extent_bits(&prev_trans->pinned_extents, start, end,
127145bb5d6aSNikolay Borisov 					EXTENT_DIRTY);
127245bb5d6aSNikolay Borisov 		if (ret)
1273534cf531SFilipe Manana 			goto out;
1274fe119a6eSNikolay Borisov 	}
127545bb5d6aSNikolay Borisov 
1276fe119a6eSNikolay Borisov 	ret = clear_extent_bits(&trans->transaction->pinned_extents, start, end,
127745bb5d6aSNikolay Borisov 				EXTENT_DIRTY);
1278534cf531SFilipe Manana out:
127945bb5d6aSNikolay Borisov 	mutex_unlock(&fs_info->unused_bg_unpin_mutex);
12805150bf19SFilipe Manana 	if (prev_trans)
12815150bf19SFilipe Manana 		btrfs_put_transaction(prev_trans);
128245bb5d6aSNikolay Borisov 
1283534cf531SFilipe Manana 	return ret == 0;
128445bb5d6aSNikolay Borisov }
128545bb5d6aSNikolay Borisov 
128626ce2095SJosef Bacik /*
1287e3e0520bSJosef Bacik  * Process the unused_bgs list and remove any that don't have any allocated
1288e3e0520bSJosef Bacik  * space inside of them.
1289e3e0520bSJosef Bacik  */
1290e3e0520bSJosef Bacik void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
1291e3e0520bSJosef Bacik {
129232da5386SDavid Sterba 	struct btrfs_block_group *block_group;
1293e3e0520bSJosef Bacik 	struct btrfs_space_info *space_info;
1294e3e0520bSJosef Bacik 	struct btrfs_trans_handle *trans;
12956e80d4f8SDennis Zhou 	const bool async_trim_enabled = btrfs_test_opt(fs_info, DISCARD_ASYNC);
1296e3e0520bSJosef Bacik 	int ret = 0;
1297e3e0520bSJosef Bacik 
1298e3e0520bSJosef Bacik 	if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
1299e3e0520bSJosef Bacik 		return;
1300e3e0520bSJosef Bacik 
1301ddfd08cbSJosef Bacik 	/*
1302ddfd08cbSJosef Bacik 	 * Long running balances can keep us blocked here for eternity, so
1303ddfd08cbSJosef Bacik 	 * simply skip deletion if we're unable to get the mutex.
1304ddfd08cbSJosef Bacik 	 */
1305f3372065SJohannes Thumshirn 	if (!mutex_trylock(&fs_info->reclaim_bgs_lock))
1306ddfd08cbSJosef Bacik 		return;
1307ddfd08cbSJosef Bacik 
1308e3e0520bSJosef Bacik 	spin_lock(&fs_info->unused_bgs_lock);
1309e3e0520bSJosef Bacik 	while (!list_empty(&fs_info->unused_bgs)) {
1310e3e0520bSJosef Bacik 		int trimming;
1311e3e0520bSJosef Bacik 
1312e3e0520bSJosef Bacik 		block_group = list_first_entry(&fs_info->unused_bgs,
131332da5386SDavid Sterba 					       struct btrfs_block_group,
1314e3e0520bSJosef Bacik 					       bg_list);
1315e3e0520bSJosef Bacik 		list_del_init(&block_group->bg_list);
1316e3e0520bSJosef Bacik 
1317e3e0520bSJosef Bacik 		space_info = block_group->space_info;
1318e3e0520bSJosef Bacik 
1319e3e0520bSJosef Bacik 		if (ret || btrfs_mixed_space_info(space_info)) {
1320e3e0520bSJosef Bacik 			btrfs_put_block_group(block_group);
1321e3e0520bSJosef Bacik 			continue;
1322e3e0520bSJosef Bacik 		}
1323e3e0520bSJosef Bacik 		spin_unlock(&fs_info->unused_bgs_lock);
1324e3e0520bSJosef Bacik 
1325b0643e59SDennis Zhou 		btrfs_discard_cancel_work(&fs_info->discard_ctl, block_group);
1326b0643e59SDennis Zhou 
1327e3e0520bSJosef Bacik 		/* Don't want to race with allocators so take the groups_sem */
1328e3e0520bSJosef Bacik 		down_write(&space_info->groups_sem);
13296e80d4f8SDennis Zhou 
13306e80d4f8SDennis Zhou 		/*
13316e80d4f8SDennis Zhou 		 * Async discard moves the final block group discard to be prior
13326e80d4f8SDennis Zhou 		 * to the unused_bgs code path.  Therefore, if it's not fully
13336e80d4f8SDennis Zhou 		 * trimmed, punt it back to the async discard lists.
13346e80d4f8SDennis Zhou 		 */
13356e80d4f8SDennis Zhou 		if (btrfs_test_opt(fs_info, DISCARD_ASYNC) &&
13366e80d4f8SDennis Zhou 		    !btrfs_is_free_space_trimmed(block_group)) {
13376e80d4f8SDennis Zhou 			trace_btrfs_skip_unused_block_group(block_group);
13386e80d4f8SDennis Zhou 			up_write(&space_info->groups_sem);
13396e80d4f8SDennis Zhou 			/* Requeue if we failed because of async discard */
13406e80d4f8SDennis Zhou 			btrfs_discard_queue_work(&fs_info->discard_ctl,
13416e80d4f8SDennis Zhou 						 block_group);
13426e80d4f8SDennis Zhou 			goto next;
13436e80d4f8SDennis Zhou 		}
13446e80d4f8SDennis Zhou 
1345e3e0520bSJosef Bacik 		spin_lock(&block_group->lock);
1346e3e0520bSJosef Bacik 		if (block_group->reserved || block_group->pinned ||
1347bf38be65SDavid Sterba 		    block_group->used || block_group->ro ||
1348e3e0520bSJosef Bacik 		    list_is_singular(&block_group->list)) {
1349e3e0520bSJosef Bacik 			/*
1350e3e0520bSJosef Bacik 			 * We want to bail if we made new allocations or have
1351e3e0520bSJosef Bacik 			 * outstanding allocations in this block group.  We do
1352e3e0520bSJosef Bacik 			 * the ro check in case balance is currently acting on
1353e3e0520bSJosef Bacik 			 * this block group.
1354e3e0520bSJosef Bacik 			 */
1355e3e0520bSJosef Bacik 			trace_btrfs_skip_unused_block_group(block_group);
1356e3e0520bSJosef Bacik 			spin_unlock(&block_group->lock);
1357e3e0520bSJosef Bacik 			up_write(&space_info->groups_sem);
1358e3e0520bSJosef Bacik 			goto next;
1359e3e0520bSJosef Bacik 		}
1360e3e0520bSJosef Bacik 		spin_unlock(&block_group->lock);
1361e3e0520bSJosef Bacik 
1362e3e0520bSJosef Bacik 		/* We don't want to force the issue, only flip if it's ok. */
1363e11c0406SJosef Bacik 		ret = inc_block_group_ro(block_group, 0);
1364e3e0520bSJosef Bacik 		up_write(&space_info->groups_sem);
1365e3e0520bSJosef Bacik 		if (ret < 0) {
1366e3e0520bSJosef Bacik 			ret = 0;
1367e3e0520bSJosef Bacik 			goto next;
1368e3e0520bSJosef Bacik 		}
1369e3e0520bSJosef Bacik 
1370e3e0520bSJosef Bacik 		/*
1371e3e0520bSJosef Bacik 		 * Want to do this before we do anything else so we can recover
1372e3e0520bSJosef Bacik 		 * properly if we fail to join the transaction.
1373e3e0520bSJosef Bacik 		 */
1374e3e0520bSJosef Bacik 		trans = btrfs_start_trans_remove_block_group(fs_info,
1375b3470b5dSDavid Sterba 						     block_group->start);
1376e3e0520bSJosef Bacik 		if (IS_ERR(trans)) {
1377e3e0520bSJosef Bacik 			btrfs_dec_block_group_ro(block_group);
1378e3e0520bSJosef Bacik 			ret = PTR_ERR(trans);
1379e3e0520bSJosef Bacik 			goto next;
1380e3e0520bSJosef Bacik 		}
1381e3e0520bSJosef Bacik 
1382e3e0520bSJosef Bacik 		/*
1383e3e0520bSJosef Bacik 		 * We could have pending pinned extents for this block group,
1384e3e0520bSJosef Bacik 		 * just delete them, we don't care about them anymore.
1385e3e0520bSJosef Bacik 		 */
1386534cf531SFilipe Manana 		if (!clean_pinned_extents(trans, block_group)) {
1387534cf531SFilipe Manana 			btrfs_dec_block_group_ro(block_group);
1388e3e0520bSJosef Bacik 			goto end_trans;
1389534cf531SFilipe Manana 		}
1390e3e0520bSJosef Bacik 
1391b0643e59SDennis Zhou 		/*
1392b0643e59SDennis Zhou 		 * At this point, the block_group is read only and should fail
1393b0643e59SDennis Zhou 		 * new allocations.  However, btrfs_finish_extent_commit() can
1394b0643e59SDennis Zhou 		 * cause this block_group to be placed back on the discard
1395b0643e59SDennis Zhou 		 * lists because now the block_group isn't fully discarded.
1396b0643e59SDennis Zhou 		 * Bail here and try again later after discarding everything.
1397b0643e59SDennis Zhou 		 */
1398b0643e59SDennis Zhou 		spin_lock(&fs_info->discard_ctl.lock);
1399b0643e59SDennis Zhou 		if (!list_empty(&block_group->discard_list)) {
1400b0643e59SDennis Zhou 			spin_unlock(&fs_info->discard_ctl.lock);
1401b0643e59SDennis Zhou 			btrfs_dec_block_group_ro(block_group);
1402b0643e59SDennis Zhou 			btrfs_discard_queue_work(&fs_info->discard_ctl,
1403b0643e59SDennis Zhou 						 block_group);
1404b0643e59SDennis Zhou 			goto end_trans;
1405b0643e59SDennis Zhou 		}
1406b0643e59SDennis Zhou 		spin_unlock(&fs_info->discard_ctl.lock);
1407b0643e59SDennis Zhou 
1408e3e0520bSJosef Bacik 		/* Reset pinned so btrfs_put_block_group doesn't complain */
1409e3e0520bSJosef Bacik 		spin_lock(&space_info->lock);
1410e3e0520bSJosef Bacik 		spin_lock(&block_group->lock);
1411e3e0520bSJosef Bacik 
1412e3e0520bSJosef Bacik 		btrfs_space_info_update_bytes_pinned(fs_info, space_info,
1413e3e0520bSJosef Bacik 						     -block_group->pinned);
1414e3e0520bSJosef Bacik 		space_info->bytes_readonly += block_group->pinned;
1415e3e0520bSJosef Bacik 		block_group->pinned = 0;
1416e3e0520bSJosef Bacik 
1417e3e0520bSJosef Bacik 		spin_unlock(&block_group->lock);
1418e3e0520bSJosef Bacik 		spin_unlock(&space_info->lock);
1419e3e0520bSJosef Bacik 
14206e80d4f8SDennis Zhou 		/*
14216e80d4f8SDennis Zhou 		 * The normal path here is an unused block group is passed here,
14226e80d4f8SDennis Zhou 		 * then trimming is handled in the transaction commit path.
14236e80d4f8SDennis Zhou 		 * Async discard interposes before this to do the trimming
14246e80d4f8SDennis Zhou 		 * before coming down the unused block group path as trimming
14256e80d4f8SDennis Zhou 		 * will no longer be done later in the transaction commit path.
14266e80d4f8SDennis Zhou 		 */
14276e80d4f8SDennis Zhou 		if (!async_trim_enabled && btrfs_test_opt(fs_info, DISCARD_ASYNC))
14286e80d4f8SDennis Zhou 			goto flip_async;
14296e80d4f8SDennis Zhou 
1430dcba6e48SNaohiro Aota 		/*
1431dcba6e48SNaohiro Aota 		 * DISCARD can flip during remount. On zoned filesystems, we
1432dcba6e48SNaohiro Aota 		 * need to reset sequential-required zones.
1433dcba6e48SNaohiro Aota 		 */
1434dcba6e48SNaohiro Aota 		trimming = btrfs_test_opt(fs_info, DISCARD_SYNC) ||
1435dcba6e48SNaohiro Aota 				btrfs_is_zoned(fs_info);
1436e3e0520bSJosef Bacik 
1437e3e0520bSJosef Bacik 		/* Implicit trim during transaction commit. */
1438e3e0520bSJosef Bacik 		if (trimming)
14396b7304afSFilipe Manana 			btrfs_freeze_block_group(block_group);
1440e3e0520bSJosef Bacik 
1441e3e0520bSJosef Bacik 		/*
1442e3e0520bSJosef Bacik 		 * Btrfs_remove_chunk will abort the transaction if things go
1443e3e0520bSJosef Bacik 		 * horribly wrong.
1444e3e0520bSJosef Bacik 		 */
1445b3470b5dSDavid Sterba 		ret = btrfs_remove_chunk(trans, block_group->start);
1446e3e0520bSJosef Bacik 
1447e3e0520bSJosef Bacik 		if (ret) {
1448e3e0520bSJosef Bacik 			if (trimming)
14496b7304afSFilipe Manana 				btrfs_unfreeze_block_group(block_group);
1450e3e0520bSJosef Bacik 			goto end_trans;
1451e3e0520bSJosef Bacik 		}
1452e3e0520bSJosef Bacik 
1453e3e0520bSJosef Bacik 		/*
1454e3e0520bSJosef Bacik 		 * If we're not mounted with -odiscard, we can just forget
1455e3e0520bSJosef Bacik 		 * about this block group. Otherwise we'll need to wait
1456e3e0520bSJosef Bacik 		 * until transaction commit to do the actual discard.
1457e3e0520bSJosef Bacik 		 */
1458e3e0520bSJosef Bacik 		if (trimming) {
1459e3e0520bSJosef Bacik 			spin_lock(&fs_info->unused_bgs_lock);
1460e3e0520bSJosef Bacik 			/*
1461e3e0520bSJosef Bacik 			 * A concurrent scrub might have added us to the list
1462e3e0520bSJosef Bacik 			 * fs_info->unused_bgs, so use a list_move operation
1463e3e0520bSJosef Bacik 			 * to add the block group to the deleted_bgs list.
1464e3e0520bSJosef Bacik 			 */
1465e3e0520bSJosef Bacik 			list_move(&block_group->bg_list,
1466e3e0520bSJosef Bacik 				  &trans->transaction->deleted_bgs);
1467e3e0520bSJosef Bacik 			spin_unlock(&fs_info->unused_bgs_lock);
1468e3e0520bSJosef Bacik 			btrfs_get_block_group(block_group);
1469e3e0520bSJosef Bacik 		}
1470e3e0520bSJosef Bacik end_trans:
1471e3e0520bSJosef Bacik 		btrfs_end_transaction(trans);
1472e3e0520bSJosef Bacik next:
1473e3e0520bSJosef Bacik 		btrfs_put_block_group(block_group);
1474e3e0520bSJosef Bacik 		spin_lock(&fs_info->unused_bgs_lock);
1475e3e0520bSJosef Bacik 	}
1476e3e0520bSJosef Bacik 	spin_unlock(&fs_info->unused_bgs_lock);
1477f3372065SJohannes Thumshirn 	mutex_unlock(&fs_info->reclaim_bgs_lock);
14786e80d4f8SDennis Zhou 	return;
14796e80d4f8SDennis Zhou 
14806e80d4f8SDennis Zhou flip_async:
14816e80d4f8SDennis Zhou 	btrfs_end_transaction(trans);
1482f3372065SJohannes Thumshirn 	mutex_unlock(&fs_info->reclaim_bgs_lock);
14836e80d4f8SDennis Zhou 	btrfs_put_block_group(block_group);
14846e80d4f8SDennis Zhou 	btrfs_discard_punt_unused_bgs_list(fs_info);
1485e3e0520bSJosef Bacik }
1486e3e0520bSJosef Bacik 
148732da5386SDavid Sterba void btrfs_mark_bg_unused(struct btrfs_block_group *bg)
1488e3e0520bSJosef Bacik {
1489e3e0520bSJosef Bacik 	struct btrfs_fs_info *fs_info = bg->fs_info;
1490e3e0520bSJosef Bacik 
1491e3e0520bSJosef Bacik 	spin_lock(&fs_info->unused_bgs_lock);
1492e3e0520bSJosef Bacik 	if (list_empty(&bg->bg_list)) {
1493e3e0520bSJosef Bacik 		btrfs_get_block_group(bg);
1494e3e0520bSJosef Bacik 		trace_btrfs_add_unused_block_group(bg);
1495e3e0520bSJosef Bacik 		list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
1496e3e0520bSJosef Bacik 	}
1497e3e0520bSJosef Bacik 	spin_unlock(&fs_info->unused_bgs_lock);
1498e3e0520bSJosef Bacik }
14994358d963SJosef Bacik 
15002ca0ec77SJohannes Thumshirn /*
15012ca0ec77SJohannes Thumshirn  * We want block groups with a low number of used bytes to be in the beginning
15022ca0ec77SJohannes Thumshirn  * of the list, so they will get reclaimed first.
15032ca0ec77SJohannes Thumshirn  */
15042ca0ec77SJohannes Thumshirn static int reclaim_bgs_cmp(void *unused, const struct list_head *a,
15052ca0ec77SJohannes Thumshirn 			   const struct list_head *b)
15062ca0ec77SJohannes Thumshirn {
15072ca0ec77SJohannes Thumshirn 	const struct btrfs_block_group *bg1, *bg2;
15082ca0ec77SJohannes Thumshirn 
15092ca0ec77SJohannes Thumshirn 	bg1 = list_entry(a, struct btrfs_block_group, bg_list);
15102ca0ec77SJohannes Thumshirn 	bg2 = list_entry(b, struct btrfs_block_group, bg_list);
15112ca0ec77SJohannes Thumshirn 
15122ca0ec77SJohannes Thumshirn 	return bg1->used > bg2->used;
15132ca0ec77SJohannes Thumshirn }
15142ca0ec77SJohannes Thumshirn 
151518bb8bbfSJohannes Thumshirn void btrfs_reclaim_bgs_work(struct work_struct *work)
151618bb8bbfSJohannes Thumshirn {
151718bb8bbfSJohannes Thumshirn 	struct btrfs_fs_info *fs_info =
151818bb8bbfSJohannes Thumshirn 		container_of(work, struct btrfs_fs_info, reclaim_bgs_work);
151918bb8bbfSJohannes Thumshirn 	struct btrfs_block_group *bg;
152018bb8bbfSJohannes Thumshirn 	struct btrfs_space_info *space_info;
152118bb8bbfSJohannes Thumshirn 
152218bb8bbfSJohannes Thumshirn 	if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
152318bb8bbfSJohannes Thumshirn 		return;
152418bb8bbfSJohannes Thumshirn 
152518bb8bbfSJohannes Thumshirn 	if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE))
152618bb8bbfSJohannes Thumshirn 		return;
152718bb8bbfSJohannes Thumshirn 
15289cc0b837SJohannes Thumshirn 	/*
15299cc0b837SJohannes Thumshirn 	 * Long running balances can keep us blocked here for eternity, so
15309cc0b837SJohannes Thumshirn 	 * simply skip reclaim if we're unable to get the mutex.
15319cc0b837SJohannes Thumshirn 	 */
15329cc0b837SJohannes Thumshirn 	if (!mutex_trylock(&fs_info->reclaim_bgs_lock)) {
15339cc0b837SJohannes Thumshirn 		btrfs_exclop_finish(fs_info);
15349cc0b837SJohannes Thumshirn 		return;
15359cc0b837SJohannes Thumshirn 	}
15369cc0b837SJohannes Thumshirn 
153718bb8bbfSJohannes Thumshirn 	spin_lock(&fs_info->unused_bgs_lock);
15382ca0ec77SJohannes Thumshirn 	/*
15392ca0ec77SJohannes Thumshirn 	 * Sort happens under lock because we can't simply splice it and sort.
15402ca0ec77SJohannes Thumshirn 	 * The block groups might still be in use and reachable via bg_list,
15412ca0ec77SJohannes Thumshirn 	 * and their presence in the reclaim_bgs list must be preserved.
15422ca0ec77SJohannes Thumshirn 	 */
15432ca0ec77SJohannes Thumshirn 	list_sort(NULL, &fs_info->reclaim_bgs, reclaim_bgs_cmp);
154418bb8bbfSJohannes Thumshirn 	while (!list_empty(&fs_info->reclaim_bgs)) {
15455f93e776SJohannes Thumshirn 		u64 zone_unusable;
15461cea5cf0SFilipe Manana 		int ret = 0;
15471cea5cf0SFilipe Manana 
154818bb8bbfSJohannes Thumshirn 		bg = list_first_entry(&fs_info->reclaim_bgs,
154918bb8bbfSJohannes Thumshirn 				      struct btrfs_block_group,
155018bb8bbfSJohannes Thumshirn 				      bg_list);
155118bb8bbfSJohannes Thumshirn 		list_del_init(&bg->bg_list);
155218bb8bbfSJohannes Thumshirn 
155318bb8bbfSJohannes Thumshirn 		space_info = bg->space_info;
155418bb8bbfSJohannes Thumshirn 		spin_unlock(&fs_info->unused_bgs_lock);
155518bb8bbfSJohannes Thumshirn 
155618bb8bbfSJohannes Thumshirn 		/* Don't race with allocators so take the groups_sem */
155718bb8bbfSJohannes Thumshirn 		down_write(&space_info->groups_sem);
155818bb8bbfSJohannes Thumshirn 
155918bb8bbfSJohannes Thumshirn 		spin_lock(&bg->lock);
156018bb8bbfSJohannes Thumshirn 		if (bg->reserved || bg->pinned || bg->ro) {
156118bb8bbfSJohannes Thumshirn 			/*
156218bb8bbfSJohannes Thumshirn 			 * We want to bail if we made new allocations or have
156318bb8bbfSJohannes Thumshirn 			 * outstanding allocations in this block group.  We do
156418bb8bbfSJohannes Thumshirn 			 * the ro check in case balance is currently acting on
156518bb8bbfSJohannes Thumshirn 			 * this block group.
156618bb8bbfSJohannes Thumshirn 			 */
156718bb8bbfSJohannes Thumshirn 			spin_unlock(&bg->lock);
156818bb8bbfSJohannes Thumshirn 			up_write(&space_info->groups_sem);
156918bb8bbfSJohannes Thumshirn 			goto next;
157018bb8bbfSJohannes Thumshirn 		}
157118bb8bbfSJohannes Thumshirn 		spin_unlock(&bg->lock);
157218bb8bbfSJohannes Thumshirn 
157318bb8bbfSJohannes Thumshirn 		/* Get out fast, in case we're unmounting the filesystem */
157418bb8bbfSJohannes Thumshirn 		if (btrfs_fs_closing(fs_info)) {
157518bb8bbfSJohannes Thumshirn 			up_write(&space_info->groups_sem);
157618bb8bbfSJohannes Thumshirn 			goto next;
157718bb8bbfSJohannes Thumshirn 		}
157818bb8bbfSJohannes Thumshirn 
15795f93e776SJohannes Thumshirn 		/*
15805f93e776SJohannes Thumshirn 		 * Cache the zone_unusable value before turning the block group
15815f93e776SJohannes Thumshirn 		 * to read only. As soon as the blog group is read only it's
15825f93e776SJohannes Thumshirn 		 * zone_unusable value gets moved to the block group's read-only
15835f93e776SJohannes Thumshirn 		 * bytes and isn't available for calculations anymore.
15845f93e776SJohannes Thumshirn 		 */
15855f93e776SJohannes Thumshirn 		zone_unusable = bg->zone_unusable;
158618bb8bbfSJohannes Thumshirn 		ret = inc_block_group_ro(bg, 0);
158718bb8bbfSJohannes Thumshirn 		up_write(&space_info->groups_sem);
158818bb8bbfSJohannes Thumshirn 		if (ret < 0)
158918bb8bbfSJohannes Thumshirn 			goto next;
159018bb8bbfSJohannes Thumshirn 
15915f93e776SJohannes Thumshirn 		btrfs_info(fs_info,
15925f93e776SJohannes Thumshirn 			"reclaiming chunk %llu with %llu%% used %llu%% unusable",
15935f93e776SJohannes Thumshirn 				bg->start, div_u64(bg->used * 100, bg->length),
15945f93e776SJohannes Thumshirn 				div64_u64(zone_unusable * 100, bg->length));
159518bb8bbfSJohannes Thumshirn 		trace_btrfs_reclaim_block_group(bg);
159618bb8bbfSJohannes Thumshirn 		ret = btrfs_relocate_chunk(fs_info, bg->start);
1597d96b3424SFilipe Manana 		if (ret)
159818bb8bbfSJohannes Thumshirn 			btrfs_err(fs_info, "error relocating chunk %llu",
159918bb8bbfSJohannes Thumshirn 				  bg->start);
160018bb8bbfSJohannes Thumshirn 
160118bb8bbfSJohannes Thumshirn next:
16021cea5cf0SFilipe Manana 		btrfs_put_block_group(bg);
1603d96b3424SFilipe Manana 		spin_lock(&fs_info->unused_bgs_lock);
160418bb8bbfSJohannes Thumshirn 	}
160518bb8bbfSJohannes Thumshirn 	spin_unlock(&fs_info->unused_bgs_lock);
160618bb8bbfSJohannes Thumshirn 	mutex_unlock(&fs_info->reclaim_bgs_lock);
160718bb8bbfSJohannes Thumshirn 	btrfs_exclop_finish(fs_info);
160818bb8bbfSJohannes Thumshirn }
160918bb8bbfSJohannes Thumshirn 
161018bb8bbfSJohannes Thumshirn void btrfs_reclaim_bgs(struct btrfs_fs_info *fs_info)
161118bb8bbfSJohannes Thumshirn {
161218bb8bbfSJohannes Thumshirn 	spin_lock(&fs_info->unused_bgs_lock);
161318bb8bbfSJohannes Thumshirn 	if (!list_empty(&fs_info->reclaim_bgs))
161418bb8bbfSJohannes Thumshirn 		queue_work(system_unbound_wq, &fs_info->reclaim_bgs_work);
161518bb8bbfSJohannes Thumshirn 	spin_unlock(&fs_info->unused_bgs_lock);
161618bb8bbfSJohannes Thumshirn }
161718bb8bbfSJohannes Thumshirn 
161818bb8bbfSJohannes Thumshirn void btrfs_mark_bg_to_reclaim(struct btrfs_block_group *bg)
161918bb8bbfSJohannes Thumshirn {
162018bb8bbfSJohannes Thumshirn 	struct btrfs_fs_info *fs_info = bg->fs_info;
162118bb8bbfSJohannes Thumshirn 
162218bb8bbfSJohannes Thumshirn 	spin_lock(&fs_info->unused_bgs_lock);
162318bb8bbfSJohannes Thumshirn 	if (list_empty(&bg->bg_list)) {
162418bb8bbfSJohannes Thumshirn 		btrfs_get_block_group(bg);
162518bb8bbfSJohannes Thumshirn 		trace_btrfs_add_reclaim_block_group(bg);
162618bb8bbfSJohannes Thumshirn 		list_add_tail(&bg->bg_list, &fs_info->reclaim_bgs);
162718bb8bbfSJohannes Thumshirn 	}
162818bb8bbfSJohannes Thumshirn 	spin_unlock(&fs_info->unused_bgs_lock);
162918bb8bbfSJohannes Thumshirn }
163018bb8bbfSJohannes Thumshirn 
1631e3ba67a1SJohannes Thumshirn static int read_bg_from_eb(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
1632e3ba67a1SJohannes Thumshirn 			   struct btrfs_path *path)
1633e3ba67a1SJohannes Thumshirn {
1634e3ba67a1SJohannes Thumshirn 	struct extent_map_tree *em_tree;
1635e3ba67a1SJohannes Thumshirn 	struct extent_map *em;
1636e3ba67a1SJohannes Thumshirn 	struct btrfs_block_group_item bg;
1637e3ba67a1SJohannes Thumshirn 	struct extent_buffer *leaf;
1638e3ba67a1SJohannes Thumshirn 	int slot;
1639e3ba67a1SJohannes Thumshirn 	u64 flags;
1640e3ba67a1SJohannes Thumshirn 	int ret = 0;
1641e3ba67a1SJohannes Thumshirn 
1642e3ba67a1SJohannes Thumshirn 	slot = path->slots[0];
1643e3ba67a1SJohannes Thumshirn 	leaf = path->nodes[0];
1644e3ba67a1SJohannes Thumshirn 
1645e3ba67a1SJohannes Thumshirn 	em_tree = &fs_info->mapping_tree;
1646e3ba67a1SJohannes Thumshirn 	read_lock(&em_tree->lock);
1647e3ba67a1SJohannes Thumshirn 	em = lookup_extent_mapping(em_tree, key->objectid, key->offset);
1648e3ba67a1SJohannes Thumshirn 	read_unlock(&em_tree->lock);
1649e3ba67a1SJohannes Thumshirn 	if (!em) {
1650e3ba67a1SJohannes Thumshirn 		btrfs_err(fs_info,
1651e3ba67a1SJohannes Thumshirn 			  "logical %llu len %llu found bg but no related chunk",
1652e3ba67a1SJohannes Thumshirn 			  key->objectid, key->offset);
1653e3ba67a1SJohannes Thumshirn 		return -ENOENT;
1654e3ba67a1SJohannes Thumshirn 	}
1655e3ba67a1SJohannes Thumshirn 
1656e3ba67a1SJohannes Thumshirn 	if (em->start != key->objectid || em->len != key->offset) {
1657e3ba67a1SJohannes Thumshirn 		btrfs_err(fs_info,
1658e3ba67a1SJohannes Thumshirn 			"block group %llu len %llu mismatch with chunk %llu len %llu",
1659e3ba67a1SJohannes Thumshirn 			key->objectid, key->offset, em->start, em->len);
1660e3ba67a1SJohannes Thumshirn 		ret = -EUCLEAN;
1661e3ba67a1SJohannes Thumshirn 		goto out_free_em;
1662e3ba67a1SJohannes Thumshirn 	}
1663e3ba67a1SJohannes Thumshirn 
1664e3ba67a1SJohannes Thumshirn 	read_extent_buffer(leaf, &bg, btrfs_item_ptr_offset(leaf, slot),
1665e3ba67a1SJohannes Thumshirn 			   sizeof(bg));
1666e3ba67a1SJohannes Thumshirn 	flags = btrfs_stack_block_group_flags(&bg) &
1667e3ba67a1SJohannes Thumshirn 		BTRFS_BLOCK_GROUP_TYPE_MASK;
1668e3ba67a1SJohannes Thumshirn 
1669e3ba67a1SJohannes Thumshirn 	if (flags != (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
1670e3ba67a1SJohannes Thumshirn 		btrfs_err(fs_info,
1671e3ba67a1SJohannes Thumshirn "block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
1672e3ba67a1SJohannes Thumshirn 			  key->objectid, key->offset, flags,
1673e3ba67a1SJohannes Thumshirn 			  (BTRFS_BLOCK_GROUP_TYPE_MASK & em->map_lookup->type));
1674e3ba67a1SJohannes Thumshirn 		ret = -EUCLEAN;
1675e3ba67a1SJohannes Thumshirn 	}
1676e3ba67a1SJohannes Thumshirn 
1677e3ba67a1SJohannes Thumshirn out_free_em:
1678e3ba67a1SJohannes Thumshirn 	free_extent_map(em);
1679e3ba67a1SJohannes Thumshirn 	return ret;
1680e3ba67a1SJohannes Thumshirn }
1681e3ba67a1SJohannes Thumshirn 
16824358d963SJosef Bacik static int find_first_block_group(struct btrfs_fs_info *fs_info,
16834358d963SJosef Bacik 				  struct btrfs_path *path,
16844358d963SJosef Bacik 				  struct btrfs_key *key)
16854358d963SJosef Bacik {
1686dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(fs_info);
1687e3ba67a1SJohannes Thumshirn 	int ret;
16884358d963SJosef Bacik 	struct btrfs_key found_key;
16894358d963SJosef Bacik 	struct extent_buffer *leaf;
16904358d963SJosef Bacik 	int slot;
16914358d963SJosef Bacik 
16924358d963SJosef Bacik 	ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
16934358d963SJosef Bacik 	if (ret < 0)
1694e3ba67a1SJohannes Thumshirn 		return ret;
16954358d963SJosef Bacik 
16964358d963SJosef Bacik 	while (1) {
16974358d963SJosef Bacik 		slot = path->slots[0];
16984358d963SJosef Bacik 		leaf = path->nodes[0];
16994358d963SJosef Bacik 		if (slot >= btrfs_header_nritems(leaf)) {
17004358d963SJosef Bacik 			ret = btrfs_next_leaf(root, path);
17014358d963SJosef Bacik 			if (ret == 0)
17024358d963SJosef Bacik 				continue;
17034358d963SJosef Bacik 			if (ret < 0)
17044358d963SJosef Bacik 				goto out;
17054358d963SJosef Bacik 			break;
17064358d963SJosef Bacik 		}
17074358d963SJosef Bacik 		btrfs_item_key_to_cpu(leaf, &found_key, slot);
17084358d963SJosef Bacik 
17094358d963SJosef Bacik 		if (found_key.objectid >= key->objectid &&
17104358d963SJosef Bacik 		    found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
1711e3ba67a1SJohannes Thumshirn 			ret = read_bg_from_eb(fs_info, &found_key, path);
1712e3ba67a1SJohannes Thumshirn 			break;
1713e3ba67a1SJohannes Thumshirn 		}
17144358d963SJosef Bacik 
17154358d963SJosef Bacik 		path->slots[0]++;
17164358d963SJosef Bacik 	}
17174358d963SJosef Bacik out:
17184358d963SJosef Bacik 	return ret;
17194358d963SJosef Bacik }
17204358d963SJosef Bacik 
17214358d963SJosef Bacik static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
17224358d963SJosef Bacik {
17234358d963SJosef Bacik 	u64 extra_flags = chunk_to_extended(flags) &
17244358d963SJosef Bacik 				BTRFS_EXTENDED_PROFILE_MASK;
17254358d963SJosef Bacik 
17264358d963SJosef Bacik 	write_seqlock(&fs_info->profiles_lock);
17274358d963SJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_DATA)
17284358d963SJosef Bacik 		fs_info->avail_data_alloc_bits |= extra_flags;
17294358d963SJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_METADATA)
17304358d963SJosef Bacik 		fs_info->avail_metadata_alloc_bits |= extra_flags;
17314358d963SJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
17324358d963SJosef Bacik 		fs_info->avail_system_alloc_bits |= extra_flags;
17334358d963SJosef Bacik 	write_sequnlock(&fs_info->profiles_lock);
17344358d963SJosef Bacik }
17354358d963SJosef Bacik 
173696a14336SNikolay Borisov /**
17379ee9b979SNikolay Borisov  * Map a physical disk address to a list of logical addresses
17389ee9b979SNikolay Borisov  *
17399ee9b979SNikolay Borisov  * @fs_info:       the filesystem
174096a14336SNikolay Borisov  * @chunk_start:   logical address of block group
1741138082f3SNaohiro Aota  * @bdev:	   physical device to resolve, can be NULL to indicate any device
174296a14336SNikolay Borisov  * @physical:	   physical address to map to logical addresses
174396a14336SNikolay Borisov  * @logical:	   return array of logical addresses which map to @physical
174496a14336SNikolay Borisov  * @naddrs:	   length of @logical
174596a14336SNikolay Borisov  * @stripe_len:    size of IO stripe for the given block group
174696a14336SNikolay Borisov  *
174796a14336SNikolay Borisov  * Maps a particular @physical disk address to a list of @logical addresses.
174896a14336SNikolay Borisov  * Used primarily to exclude those portions of a block group that contain super
174996a14336SNikolay Borisov  * block copies.
175096a14336SNikolay Borisov  */
175196a14336SNikolay Borisov int btrfs_rmap_block(struct btrfs_fs_info *fs_info, u64 chunk_start,
1752138082f3SNaohiro Aota 		     struct block_device *bdev, u64 physical, u64 **logical,
1753138082f3SNaohiro Aota 		     int *naddrs, int *stripe_len)
175496a14336SNikolay Borisov {
175596a14336SNikolay Borisov 	struct extent_map *em;
175696a14336SNikolay Borisov 	struct map_lookup *map;
175796a14336SNikolay Borisov 	u64 *buf;
175896a14336SNikolay Borisov 	u64 bytenr;
17591776ad17SNikolay Borisov 	u64 data_stripe_length;
17601776ad17SNikolay Borisov 	u64 io_stripe_size;
17611776ad17SNikolay Borisov 	int i, nr = 0;
17621776ad17SNikolay Borisov 	int ret = 0;
176396a14336SNikolay Borisov 
176496a14336SNikolay Borisov 	em = btrfs_get_chunk_map(fs_info, chunk_start, 1);
176596a14336SNikolay Borisov 	if (IS_ERR(em))
176696a14336SNikolay Borisov 		return -EIO;
176796a14336SNikolay Borisov 
176896a14336SNikolay Borisov 	map = em->map_lookup;
17699e22b925SNikolay Borisov 	data_stripe_length = em->orig_block_len;
17701776ad17SNikolay Borisov 	io_stripe_size = map->stripe_len;
1771138082f3SNaohiro Aota 	chunk_start = em->start;
177296a14336SNikolay Borisov 
17739e22b925SNikolay Borisov 	/* For RAID5/6 adjust to a full IO stripe length */
17749e22b925SNikolay Borisov 	if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
17751776ad17SNikolay Borisov 		io_stripe_size = map->stripe_len * nr_data_stripes(map);
177696a14336SNikolay Borisov 
177796a14336SNikolay Borisov 	buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
17781776ad17SNikolay Borisov 	if (!buf) {
17791776ad17SNikolay Borisov 		ret = -ENOMEM;
17801776ad17SNikolay Borisov 		goto out;
17811776ad17SNikolay Borisov 	}
178296a14336SNikolay Borisov 
178396a14336SNikolay Borisov 	for (i = 0; i < map->num_stripes; i++) {
17841776ad17SNikolay Borisov 		bool already_inserted = false;
17851776ad17SNikolay Borisov 		u64 stripe_nr;
1786138082f3SNaohiro Aota 		u64 offset;
17871776ad17SNikolay Borisov 		int j;
17881776ad17SNikolay Borisov 
17891776ad17SNikolay Borisov 		if (!in_range(physical, map->stripes[i].physical,
17901776ad17SNikolay Borisov 			      data_stripe_length))
179196a14336SNikolay Borisov 			continue;
179296a14336SNikolay Borisov 
1793138082f3SNaohiro Aota 		if (bdev && map->stripes[i].dev->bdev != bdev)
1794138082f3SNaohiro Aota 			continue;
1795138082f3SNaohiro Aota 
179696a14336SNikolay Borisov 		stripe_nr = physical - map->stripes[i].physical;
1797138082f3SNaohiro Aota 		stripe_nr = div64_u64_rem(stripe_nr, map->stripe_len, &offset);
179896a14336SNikolay Borisov 
179996a14336SNikolay Borisov 		if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
180096a14336SNikolay Borisov 			stripe_nr = stripe_nr * map->num_stripes + i;
180196a14336SNikolay Borisov 			stripe_nr = div_u64(stripe_nr, map->sub_stripes);
180296a14336SNikolay Borisov 		} else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
180396a14336SNikolay Borisov 			stripe_nr = stripe_nr * map->num_stripes + i;
180496a14336SNikolay Borisov 		}
180596a14336SNikolay Borisov 		/*
180696a14336SNikolay Borisov 		 * The remaining case would be for RAID56, multiply by
180796a14336SNikolay Borisov 		 * nr_data_stripes().  Alternatively, just use rmap_len below
180896a14336SNikolay Borisov 		 * instead of map->stripe_len
180996a14336SNikolay Borisov 		 */
181096a14336SNikolay Borisov 
1811138082f3SNaohiro Aota 		bytenr = chunk_start + stripe_nr * io_stripe_size + offset;
18121776ad17SNikolay Borisov 
18131776ad17SNikolay Borisov 		/* Ensure we don't add duplicate addresses */
181496a14336SNikolay Borisov 		for (j = 0; j < nr; j++) {
18151776ad17SNikolay Borisov 			if (buf[j] == bytenr) {
18161776ad17SNikolay Borisov 				already_inserted = true;
181796a14336SNikolay Borisov 				break;
181896a14336SNikolay Borisov 			}
181996a14336SNikolay Borisov 		}
18201776ad17SNikolay Borisov 
18211776ad17SNikolay Borisov 		if (!already_inserted)
18221776ad17SNikolay Borisov 			buf[nr++] = bytenr;
182396a14336SNikolay Borisov 	}
182496a14336SNikolay Borisov 
182596a14336SNikolay Borisov 	*logical = buf;
182696a14336SNikolay Borisov 	*naddrs = nr;
18271776ad17SNikolay Borisov 	*stripe_len = io_stripe_size;
18281776ad17SNikolay Borisov out:
182996a14336SNikolay Borisov 	free_extent_map(em);
18301776ad17SNikolay Borisov 	return ret;
183196a14336SNikolay Borisov }
183296a14336SNikolay Borisov 
183332da5386SDavid Sterba static int exclude_super_stripes(struct btrfs_block_group *cache)
18344358d963SJosef Bacik {
18354358d963SJosef Bacik 	struct btrfs_fs_info *fs_info = cache->fs_info;
183612659251SNaohiro Aota 	const bool zoned = btrfs_is_zoned(fs_info);
18374358d963SJosef Bacik 	u64 bytenr;
18384358d963SJosef Bacik 	u64 *logical;
18394358d963SJosef Bacik 	int stripe_len;
18404358d963SJosef Bacik 	int i, nr, ret;
18414358d963SJosef Bacik 
1842b3470b5dSDavid Sterba 	if (cache->start < BTRFS_SUPER_INFO_OFFSET) {
1843b3470b5dSDavid Sterba 		stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->start;
18444358d963SJosef Bacik 		cache->bytes_super += stripe_len;
1845b3470b5dSDavid Sterba 		ret = btrfs_add_excluded_extent(fs_info, cache->start,
18464358d963SJosef Bacik 						stripe_len);
18474358d963SJosef Bacik 		if (ret)
18484358d963SJosef Bacik 			return ret;
18494358d963SJosef Bacik 	}
18504358d963SJosef Bacik 
18514358d963SJosef Bacik 	for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
18524358d963SJosef Bacik 		bytenr = btrfs_sb_offset(i);
1853138082f3SNaohiro Aota 		ret = btrfs_rmap_block(fs_info, cache->start, NULL,
18544358d963SJosef Bacik 				       bytenr, &logical, &nr, &stripe_len);
18554358d963SJosef Bacik 		if (ret)
18564358d963SJosef Bacik 			return ret;
18574358d963SJosef Bacik 
185812659251SNaohiro Aota 		/* Shouldn't have super stripes in sequential zones */
185912659251SNaohiro Aota 		if (zoned && nr) {
186012659251SNaohiro Aota 			btrfs_err(fs_info,
186112659251SNaohiro Aota 			"zoned: block group %llu must not contain super block",
186212659251SNaohiro Aota 				  cache->start);
186312659251SNaohiro Aota 			return -EUCLEAN;
186412659251SNaohiro Aota 		}
186512659251SNaohiro Aota 
18664358d963SJosef Bacik 		while (nr--) {
186796f9b0f2SNikolay Borisov 			u64 len = min_t(u64, stripe_len,
186896f9b0f2SNikolay Borisov 				cache->start + cache->length - logical[nr]);
18694358d963SJosef Bacik 
18704358d963SJosef Bacik 			cache->bytes_super += len;
187196f9b0f2SNikolay Borisov 			ret = btrfs_add_excluded_extent(fs_info, logical[nr],
187296f9b0f2SNikolay Borisov 							len);
18734358d963SJosef Bacik 			if (ret) {
18744358d963SJosef Bacik 				kfree(logical);
18754358d963SJosef Bacik 				return ret;
18764358d963SJosef Bacik 			}
18774358d963SJosef Bacik 		}
18784358d963SJosef Bacik 
18794358d963SJosef Bacik 		kfree(logical);
18804358d963SJosef Bacik 	}
18814358d963SJosef Bacik 	return 0;
18824358d963SJosef Bacik }
18834358d963SJosef Bacik 
188432da5386SDavid Sterba static void link_block_group(struct btrfs_block_group *cache)
18854358d963SJosef Bacik {
18864358d963SJosef Bacik 	struct btrfs_space_info *space_info = cache->space_info;
18874358d963SJosef Bacik 	int index = btrfs_bg_flags_to_raid_index(cache->flags);
18884358d963SJosef Bacik 
18894358d963SJosef Bacik 	down_write(&space_info->groups_sem);
18904358d963SJosef Bacik 	list_add_tail(&cache->list, &space_info->block_groups[index]);
18914358d963SJosef Bacik 	up_write(&space_info->groups_sem);
18924358d963SJosef Bacik }
18934358d963SJosef Bacik 
189432da5386SDavid Sterba static struct btrfs_block_group *btrfs_create_block_group_cache(
18959afc6649SQu Wenruo 		struct btrfs_fs_info *fs_info, u64 start)
18964358d963SJosef Bacik {
189732da5386SDavid Sterba 	struct btrfs_block_group *cache;
18984358d963SJosef Bacik 
18994358d963SJosef Bacik 	cache = kzalloc(sizeof(*cache), GFP_NOFS);
19004358d963SJosef Bacik 	if (!cache)
19014358d963SJosef Bacik 		return NULL;
19024358d963SJosef Bacik 
19034358d963SJosef Bacik 	cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
19044358d963SJosef Bacik 					GFP_NOFS);
19054358d963SJosef Bacik 	if (!cache->free_space_ctl) {
19064358d963SJosef Bacik 		kfree(cache);
19074358d963SJosef Bacik 		return NULL;
19084358d963SJosef Bacik 	}
19094358d963SJosef Bacik 
1910b3470b5dSDavid Sterba 	cache->start = start;
19114358d963SJosef Bacik 
19124358d963SJosef Bacik 	cache->fs_info = fs_info;
19134358d963SJosef Bacik 	cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
19144358d963SJosef Bacik 
19156e80d4f8SDennis Zhou 	cache->discard_index = BTRFS_DISCARD_INDEX_UNUSED;
19166e80d4f8SDennis Zhou 
191748aaeebeSJosef Bacik 	refcount_set(&cache->refs, 1);
19184358d963SJosef Bacik 	spin_lock_init(&cache->lock);
19194358d963SJosef Bacik 	init_rwsem(&cache->data_rwsem);
19204358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->list);
19214358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->cluster_list);
19224358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->bg_list);
19234358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->ro_list);
1924b0643e59SDennis Zhou 	INIT_LIST_HEAD(&cache->discard_list);
19254358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->dirty_list);
19264358d963SJosef Bacik 	INIT_LIST_HEAD(&cache->io_list);
1927afba2bc0SNaohiro Aota 	INIT_LIST_HEAD(&cache->active_bg_list);
1928cd79909bSJosef Bacik 	btrfs_init_free_space_ctl(cache, cache->free_space_ctl);
19296b7304afSFilipe Manana 	atomic_set(&cache->frozen, 0);
19304358d963SJosef Bacik 	mutex_init(&cache->free_space_lock);
19314358d963SJosef Bacik 	btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
19324358d963SJosef Bacik 
19334358d963SJosef Bacik 	return cache;
19344358d963SJosef Bacik }
19354358d963SJosef Bacik 
19364358d963SJosef Bacik /*
19374358d963SJosef Bacik  * Iterate all chunks and verify that each of them has the corresponding block
19384358d963SJosef Bacik  * group
19394358d963SJosef Bacik  */
19404358d963SJosef Bacik static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
19414358d963SJosef Bacik {
19424358d963SJosef Bacik 	struct extent_map_tree *map_tree = &fs_info->mapping_tree;
19434358d963SJosef Bacik 	struct extent_map *em;
194432da5386SDavid Sterba 	struct btrfs_block_group *bg;
19454358d963SJosef Bacik 	u64 start = 0;
19464358d963SJosef Bacik 	int ret = 0;
19474358d963SJosef Bacik 
19484358d963SJosef Bacik 	while (1) {
19494358d963SJosef Bacik 		read_lock(&map_tree->lock);
19504358d963SJosef Bacik 		/*
19514358d963SJosef Bacik 		 * lookup_extent_mapping will return the first extent map
19524358d963SJosef Bacik 		 * intersecting the range, so setting @len to 1 is enough to
19534358d963SJosef Bacik 		 * get the first chunk.
19544358d963SJosef Bacik 		 */
19554358d963SJosef Bacik 		em = lookup_extent_mapping(map_tree, start, 1);
19564358d963SJosef Bacik 		read_unlock(&map_tree->lock);
19574358d963SJosef Bacik 		if (!em)
19584358d963SJosef Bacik 			break;
19594358d963SJosef Bacik 
19604358d963SJosef Bacik 		bg = btrfs_lookup_block_group(fs_info, em->start);
19614358d963SJosef Bacik 		if (!bg) {
19624358d963SJosef Bacik 			btrfs_err(fs_info,
19634358d963SJosef Bacik 	"chunk start=%llu len=%llu doesn't have corresponding block group",
19644358d963SJosef Bacik 				     em->start, em->len);
19654358d963SJosef Bacik 			ret = -EUCLEAN;
19664358d963SJosef Bacik 			free_extent_map(em);
19674358d963SJosef Bacik 			break;
19684358d963SJosef Bacik 		}
1969b3470b5dSDavid Sterba 		if (bg->start != em->start || bg->length != em->len ||
19704358d963SJosef Bacik 		    (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
19714358d963SJosef Bacik 		    (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
19724358d963SJosef Bacik 			btrfs_err(fs_info,
19734358d963SJosef Bacik "chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
19744358d963SJosef Bacik 				em->start, em->len,
19754358d963SJosef Bacik 				em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
1976b3470b5dSDavid Sterba 				bg->start, bg->length,
19774358d963SJosef Bacik 				bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
19784358d963SJosef Bacik 			ret = -EUCLEAN;
19794358d963SJosef Bacik 			free_extent_map(em);
19804358d963SJosef Bacik 			btrfs_put_block_group(bg);
19814358d963SJosef Bacik 			break;
19824358d963SJosef Bacik 		}
19834358d963SJosef Bacik 		start = em->start + em->len;
19844358d963SJosef Bacik 		free_extent_map(em);
19854358d963SJosef Bacik 		btrfs_put_block_group(bg);
19864358d963SJosef Bacik 	}
19874358d963SJosef Bacik 	return ret;
19884358d963SJosef Bacik }
19894358d963SJosef Bacik 
1990ffb9e0f0SQu Wenruo static int read_one_block_group(struct btrfs_fs_info *info,
19914afd2fe8SJohannes Thumshirn 				struct btrfs_block_group_item *bgi,
1992d49a2ddbSQu Wenruo 				const struct btrfs_key *key,
1993ffb9e0f0SQu Wenruo 				int need_clear)
1994ffb9e0f0SQu Wenruo {
199532da5386SDavid Sterba 	struct btrfs_block_group *cache;
1996ffb9e0f0SQu Wenruo 	struct btrfs_space_info *space_info;
1997ffb9e0f0SQu Wenruo 	const bool mixed = btrfs_fs_incompat(info, MIXED_GROUPS);
1998ffb9e0f0SQu Wenruo 	int ret;
1999ffb9e0f0SQu Wenruo 
2000d49a2ddbSQu Wenruo 	ASSERT(key->type == BTRFS_BLOCK_GROUP_ITEM_KEY);
2001ffb9e0f0SQu Wenruo 
20029afc6649SQu Wenruo 	cache = btrfs_create_block_group_cache(info, key->objectid);
2003ffb9e0f0SQu Wenruo 	if (!cache)
2004ffb9e0f0SQu Wenruo 		return -ENOMEM;
2005ffb9e0f0SQu Wenruo 
20064afd2fe8SJohannes Thumshirn 	cache->length = key->offset;
20074afd2fe8SJohannes Thumshirn 	cache->used = btrfs_stack_block_group_used(bgi);
20084afd2fe8SJohannes Thumshirn 	cache->flags = btrfs_stack_block_group_flags(bgi);
20099afc6649SQu Wenruo 
2010e3e39c72SMarcos Paulo de Souza 	set_free_space_tree_thresholds(cache);
2011e3e39c72SMarcos Paulo de Souza 
2012ffb9e0f0SQu Wenruo 	if (need_clear) {
2013ffb9e0f0SQu Wenruo 		/*
2014ffb9e0f0SQu Wenruo 		 * When we mount with old space cache, we need to
2015ffb9e0f0SQu Wenruo 		 * set BTRFS_DC_CLEAR and set dirty flag.
2016ffb9e0f0SQu Wenruo 		 *
2017ffb9e0f0SQu Wenruo 		 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
2018ffb9e0f0SQu Wenruo 		 *    truncate the old free space cache inode and
2019ffb9e0f0SQu Wenruo 		 *    setup a new one.
2020ffb9e0f0SQu Wenruo 		 * b) Setting 'dirty flag' makes sure that we flush
2021ffb9e0f0SQu Wenruo 		 *    the new space cache info onto disk.
2022ffb9e0f0SQu Wenruo 		 */
2023ffb9e0f0SQu Wenruo 		if (btrfs_test_opt(info, SPACE_CACHE))
2024ffb9e0f0SQu Wenruo 			cache->disk_cache_state = BTRFS_DC_CLEAR;
2025ffb9e0f0SQu Wenruo 	}
2026ffb9e0f0SQu Wenruo 	if (!mixed && ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
2027ffb9e0f0SQu Wenruo 	    (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
2028ffb9e0f0SQu Wenruo 			btrfs_err(info,
2029ffb9e0f0SQu Wenruo "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
2030ffb9e0f0SQu Wenruo 				  cache->start);
2031ffb9e0f0SQu Wenruo 			ret = -EINVAL;
2032ffb9e0f0SQu Wenruo 			goto error;
2033ffb9e0f0SQu Wenruo 	}
2034ffb9e0f0SQu Wenruo 
2035a94794d5SNaohiro Aota 	ret = btrfs_load_block_group_zone_info(cache, false);
203608e11a3dSNaohiro Aota 	if (ret) {
203708e11a3dSNaohiro Aota 		btrfs_err(info, "zoned: failed to load zone info of bg %llu",
203808e11a3dSNaohiro Aota 			  cache->start);
203908e11a3dSNaohiro Aota 		goto error;
204008e11a3dSNaohiro Aota 	}
204108e11a3dSNaohiro Aota 
2042ffb9e0f0SQu Wenruo 	/*
2043ffb9e0f0SQu Wenruo 	 * We need to exclude the super stripes now so that the space info has
2044ffb9e0f0SQu Wenruo 	 * super bytes accounted for, otherwise we'll think we have more space
2045ffb9e0f0SQu Wenruo 	 * than we actually do.
2046ffb9e0f0SQu Wenruo 	 */
2047ffb9e0f0SQu Wenruo 	ret = exclude_super_stripes(cache);
2048ffb9e0f0SQu Wenruo 	if (ret) {
2049ffb9e0f0SQu Wenruo 		/* We may have excluded something, so call this just in case. */
2050ffb9e0f0SQu Wenruo 		btrfs_free_excluded_extents(cache);
2051ffb9e0f0SQu Wenruo 		goto error;
2052ffb9e0f0SQu Wenruo 	}
2053ffb9e0f0SQu Wenruo 
2054ffb9e0f0SQu Wenruo 	/*
2055169e0da9SNaohiro Aota 	 * For zoned filesystem, space after the allocation offset is the only
2056169e0da9SNaohiro Aota 	 * free space for a block group. So, we don't need any caching work.
2057169e0da9SNaohiro Aota 	 * btrfs_calc_zone_unusable() will set the amount of free space and
2058169e0da9SNaohiro Aota 	 * zone_unusable space.
2059169e0da9SNaohiro Aota 	 *
2060169e0da9SNaohiro Aota 	 * For regular filesystem, check for two cases, either we are full, and
2061169e0da9SNaohiro Aota 	 * therefore don't need to bother with the caching work since we won't
2062169e0da9SNaohiro Aota 	 * find any space, or we are empty, and we can just add all the space
2063169e0da9SNaohiro Aota 	 * in and be done with it.  This saves us _a_lot_ of time, particularly
2064169e0da9SNaohiro Aota 	 * in the full case.
2065ffb9e0f0SQu Wenruo 	 */
2066169e0da9SNaohiro Aota 	if (btrfs_is_zoned(info)) {
2067169e0da9SNaohiro Aota 		btrfs_calc_zone_unusable(cache);
2068c46c4247SNaohiro Aota 		/* Should not have any excluded extents. Just in case, though. */
2069c46c4247SNaohiro Aota 		btrfs_free_excluded_extents(cache);
2070169e0da9SNaohiro Aota 	} else if (cache->length == cache->used) {
2071ffb9e0f0SQu Wenruo 		cache->last_byte_to_unpin = (u64)-1;
2072ffb9e0f0SQu Wenruo 		cache->cached = BTRFS_CACHE_FINISHED;
2073ffb9e0f0SQu Wenruo 		btrfs_free_excluded_extents(cache);
2074ffb9e0f0SQu Wenruo 	} else if (cache->used == 0) {
2075ffb9e0f0SQu Wenruo 		cache->last_byte_to_unpin = (u64)-1;
2076ffb9e0f0SQu Wenruo 		cache->cached = BTRFS_CACHE_FINISHED;
20779afc6649SQu Wenruo 		add_new_free_space(cache, cache->start,
20789afc6649SQu Wenruo 				   cache->start + cache->length);
2079ffb9e0f0SQu Wenruo 		btrfs_free_excluded_extents(cache);
2080ffb9e0f0SQu Wenruo 	}
2081ffb9e0f0SQu Wenruo 
2082ffb9e0f0SQu Wenruo 	ret = btrfs_add_block_group_cache(info, cache);
2083ffb9e0f0SQu Wenruo 	if (ret) {
2084ffb9e0f0SQu Wenruo 		btrfs_remove_free_space_cache(cache);
2085ffb9e0f0SQu Wenruo 		goto error;
2086ffb9e0f0SQu Wenruo 	}
2087ffb9e0f0SQu Wenruo 	trace_btrfs_add_block_group(info, cache, 0);
20889afc6649SQu Wenruo 	btrfs_update_space_info(info, cache->flags, cache->length,
2089169e0da9SNaohiro Aota 				cache->used, cache->bytes_super,
2090169e0da9SNaohiro Aota 				cache->zone_unusable, &space_info);
2091ffb9e0f0SQu Wenruo 
2092ffb9e0f0SQu Wenruo 	cache->space_info = space_info;
2093ffb9e0f0SQu Wenruo 
2094ffb9e0f0SQu Wenruo 	link_block_group(cache);
2095ffb9e0f0SQu Wenruo 
2096ffb9e0f0SQu Wenruo 	set_avail_alloc_bits(info, cache->flags);
2097a09f23c3SAnand Jain 	if (btrfs_chunk_writeable(info, cache->start)) {
2098a09f23c3SAnand Jain 		if (cache->used == 0) {
2099ffb9e0f0SQu Wenruo 			ASSERT(list_empty(&cache->bg_list));
21006e80d4f8SDennis Zhou 			if (btrfs_test_opt(info, DISCARD_ASYNC))
21016e80d4f8SDennis Zhou 				btrfs_discard_queue_work(&info->discard_ctl, cache);
21026e80d4f8SDennis Zhou 			else
2103ffb9e0f0SQu Wenruo 				btrfs_mark_bg_unused(cache);
2104ffb9e0f0SQu Wenruo 		}
2105a09f23c3SAnand Jain 	} else {
2106a09f23c3SAnand Jain 		inc_block_group_ro(cache, 1);
2107a09f23c3SAnand Jain 	}
2108a09f23c3SAnand Jain 
2109ffb9e0f0SQu Wenruo 	return 0;
2110ffb9e0f0SQu Wenruo error:
2111ffb9e0f0SQu Wenruo 	btrfs_put_block_group(cache);
2112ffb9e0f0SQu Wenruo 	return ret;
2113ffb9e0f0SQu Wenruo }
2114ffb9e0f0SQu Wenruo 
211542437a63SJosef Bacik static int fill_dummy_bgs(struct btrfs_fs_info *fs_info)
211642437a63SJosef Bacik {
211742437a63SJosef Bacik 	struct extent_map_tree *em_tree = &fs_info->mapping_tree;
211842437a63SJosef Bacik 	struct btrfs_space_info *space_info;
211942437a63SJosef Bacik 	struct rb_node *node;
212042437a63SJosef Bacik 	int ret = 0;
212142437a63SJosef Bacik 
212242437a63SJosef Bacik 	for (node = rb_first_cached(&em_tree->map); node; node = rb_next(node)) {
212342437a63SJosef Bacik 		struct extent_map *em;
212442437a63SJosef Bacik 		struct map_lookup *map;
212542437a63SJosef Bacik 		struct btrfs_block_group *bg;
212642437a63SJosef Bacik 
212742437a63SJosef Bacik 		em = rb_entry(node, struct extent_map, rb_node);
212842437a63SJosef Bacik 		map = em->map_lookup;
212942437a63SJosef Bacik 		bg = btrfs_create_block_group_cache(fs_info, em->start);
213042437a63SJosef Bacik 		if (!bg) {
213142437a63SJosef Bacik 			ret = -ENOMEM;
213242437a63SJosef Bacik 			break;
213342437a63SJosef Bacik 		}
213442437a63SJosef Bacik 
213542437a63SJosef Bacik 		/* Fill dummy cache as FULL */
213642437a63SJosef Bacik 		bg->length = em->len;
213742437a63SJosef Bacik 		bg->flags = map->type;
213842437a63SJosef Bacik 		bg->last_byte_to_unpin = (u64)-1;
213942437a63SJosef Bacik 		bg->cached = BTRFS_CACHE_FINISHED;
214042437a63SJosef Bacik 		bg->used = em->len;
214142437a63SJosef Bacik 		bg->flags = map->type;
214242437a63SJosef Bacik 		ret = btrfs_add_block_group_cache(fs_info, bg);
21432b29726cSQu Wenruo 		/*
21442b29726cSQu Wenruo 		 * We may have some valid block group cache added already, in
21452b29726cSQu Wenruo 		 * that case we skip to the next one.
21462b29726cSQu Wenruo 		 */
21472b29726cSQu Wenruo 		if (ret == -EEXIST) {
21482b29726cSQu Wenruo 			ret = 0;
21492b29726cSQu Wenruo 			btrfs_put_block_group(bg);
21502b29726cSQu Wenruo 			continue;
21512b29726cSQu Wenruo 		}
21522b29726cSQu Wenruo 
215342437a63SJosef Bacik 		if (ret) {
215442437a63SJosef Bacik 			btrfs_remove_free_space_cache(bg);
215542437a63SJosef Bacik 			btrfs_put_block_group(bg);
215642437a63SJosef Bacik 			break;
215742437a63SJosef Bacik 		}
21582b29726cSQu Wenruo 
215942437a63SJosef Bacik 		btrfs_update_space_info(fs_info, bg->flags, em->len, em->len,
2160169e0da9SNaohiro Aota 					0, 0, &space_info);
216142437a63SJosef Bacik 		bg->space_info = space_info;
216242437a63SJosef Bacik 		link_block_group(bg);
216342437a63SJosef Bacik 
216442437a63SJosef Bacik 		set_avail_alloc_bits(fs_info, bg->flags);
216542437a63SJosef Bacik 	}
216642437a63SJosef Bacik 	if (!ret)
216742437a63SJosef Bacik 		btrfs_init_global_block_rsv(fs_info);
216842437a63SJosef Bacik 	return ret;
216942437a63SJosef Bacik }
217042437a63SJosef Bacik 
21714358d963SJosef Bacik int btrfs_read_block_groups(struct btrfs_fs_info *info)
21724358d963SJosef Bacik {
2173dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(info);
21744358d963SJosef Bacik 	struct btrfs_path *path;
21754358d963SJosef Bacik 	int ret;
217632da5386SDavid Sterba 	struct btrfs_block_group *cache;
21774358d963SJosef Bacik 	struct btrfs_space_info *space_info;
21784358d963SJosef Bacik 	struct btrfs_key key;
21794358d963SJosef Bacik 	int need_clear = 0;
21804358d963SJosef Bacik 	u64 cache_gen;
21814358d963SJosef Bacik 
2182dfe8aec4SJosef Bacik 	if (!root)
218342437a63SJosef Bacik 		return fill_dummy_bgs(info);
218442437a63SJosef Bacik 
21854358d963SJosef Bacik 	key.objectid = 0;
21864358d963SJosef Bacik 	key.offset = 0;
21874358d963SJosef Bacik 	key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
21884358d963SJosef Bacik 	path = btrfs_alloc_path();
21894358d963SJosef Bacik 	if (!path)
21904358d963SJosef Bacik 		return -ENOMEM;
21914358d963SJosef Bacik 
21924358d963SJosef Bacik 	cache_gen = btrfs_super_cache_generation(info->super_copy);
21934358d963SJosef Bacik 	if (btrfs_test_opt(info, SPACE_CACHE) &&
21944358d963SJosef Bacik 	    btrfs_super_generation(info->super_copy) != cache_gen)
21954358d963SJosef Bacik 		need_clear = 1;
21964358d963SJosef Bacik 	if (btrfs_test_opt(info, CLEAR_CACHE))
21974358d963SJosef Bacik 		need_clear = 1;
21984358d963SJosef Bacik 
21994358d963SJosef Bacik 	while (1) {
22004afd2fe8SJohannes Thumshirn 		struct btrfs_block_group_item bgi;
22014afd2fe8SJohannes Thumshirn 		struct extent_buffer *leaf;
22024afd2fe8SJohannes Thumshirn 		int slot;
22034afd2fe8SJohannes Thumshirn 
22044358d963SJosef Bacik 		ret = find_first_block_group(info, path, &key);
22054358d963SJosef Bacik 		if (ret > 0)
22064358d963SJosef Bacik 			break;
22074358d963SJosef Bacik 		if (ret != 0)
22084358d963SJosef Bacik 			goto error;
22094358d963SJosef Bacik 
22104afd2fe8SJohannes Thumshirn 		leaf = path->nodes[0];
22114afd2fe8SJohannes Thumshirn 		slot = path->slots[0];
22124afd2fe8SJohannes Thumshirn 
22134afd2fe8SJohannes Thumshirn 		read_extent_buffer(leaf, &bgi, btrfs_item_ptr_offset(leaf, slot),
22144afd2fe8SJohannes Thumshirn 				   sizeof(bgi));
22154afd2fe8SJohannes Thumshirn 
22164afd2fe8SJohannes Thumshirn 		btrfs_item_key_to_cpu(leaf, &key, slot);
22174afd2fe8SJohannes Thumshirn 		btrfs_release_path(path);
22184afd2fe8SJohannes Thumshirn 		ret = read_one_block_group(info, &bgi, &key, need_clear);
2219ffb9e0f0SQu Wenruo 		if (ret < 0)
22204358d963SJosef Bacik 			goto error;
2221ffb9e0f0SQu Wenruo 		key.objectid += key.offset;
2222ffb9e0f0SQu Wenruo 		key.offset = 0;
22234358d963SJosef Bacik 	}
22247837fa88SJosef Bacik 	btrfs_release_path(path);
22254358d963SJosef Bacik 
222672804905SJosef Bacik 	list_for_each_entry(space_info, &info->space_info, list) {
222749ea112dSJosef Bacik 		int i;
222849ea112dSJosef Bacik 
222949ea112dSJosef Bacik 		for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
223049ea112dSJosef Bacik 			if (list_empty(&space_info->block_groups[i]))
223149ea112dSJosef Bacik 				continue;
223249ea112dSJosef Bacik 			cache = list_first_entry(&space_info->block_groups[i],
223349ea112dSJosef Bacik 						 struct btrfs_block_group,
223449ea112dSJosef Bacik 						 list);
223549ea112dSJosef Bacik 			btrfs_sysfs_add_block_group_type(cache);
223649ea112dSJosef Bacik 		}
223749ea112dSJosef Bacik 
22384358d963SJosef Bacik 		if (!(btrfs_get_alloc_profile(info, space_info->flags) &
22394358d963SJosef Bacik 		      (BTRFS_BLOCK_GROUP_RAID10 |
22404358d963SJosef Bacik 		       BTRFS_BLOCK_GROUP_RAID1_MASK |
22414358d963SJosef Bacik 		       BTRFS_BLOCK_GROUP_RAID56_MASK |
22424358d963SJosef Bacik 		       BTRFS_BLOCK_GROUP_DUP)))
22434358d963SJosef Bacik 			continue;
22444358d963SJosef Bacik 		/*
22454358d963SJosef Bacik 		 * Avoid allocating from un-mirrored block group if there are
22464358d963SJosef Bacik 		 * mirrored block groups.
22474358d963SJosef Bacik 		 */
22484358d963SJosef Bacik 		list_for_each_entry(cache,
22494358d963SJosef Bacik 				&space_info->block_groups[BTRFS_RAID_RAID0],
22504358d963SJosef Bacik 				list)
2251e11c0406SJosef Bacik 			inc_block_group_ro(cache, 1);
22524358d963SJosef Bacik 		list_for_each_entry(cache,
22534358d963SJosef Bacik 				&space_info->block_groups[BTRFS_RAID_SINGLE],
22544358d963SJosef Bacik 				list)
2255e11c0406SJosef Bacik 			inc_block_group_ro(cache, 1);
22564358d963SJosef Bacik 	}
22574358d963SJosef Bacik 
22584358d963SJosef Bacik 	btrfs_init_global_block_rsv(info);
22594358d963SJosef Bacik 	ret = check_chunk_block_group_mappings(info);
22604358d963SJosef Bacik error:
22614358d963SJosef Bacik 	btrfs_free_path(path);
22622b29726cSQu Wenruo 	/*
22632b29726cSQu Wenruo 	 * We've hit some error while reading the extent tree, and have
22642b29726cSQu Wenruo 	 * rescue=ibadroots mount option.
22652b29726cSQu Wenruo 	 * Try to fill the tree using dummy block groups so that the user can
22662b29726cSQu Wenruo 	 * continue to mount and grab their data.
22672b29726cSQu Wenruo 	 */
22682b29726cSQu Wenruo 	if (ret && btrfs_test_opt(info, IGNOREBADROOTS))
22692b29726cSQu Wenruo 		ret = fill_dummy_bgs(info);
22704358d963SJosef Bacik 	return ret;
22714358d963SJosef Bacik }
22724358d963SJosef Bacik 
227379bd3712SFilipe Manana /*
227479bd3712SFilipe Manana  * This function, insert_block_group_item(), belongs to the phase 2 of chunk
227579bd3712SFilipe Manana  * allocation.
227679bd3712SFilipe Manana  *
227779bd3712SFilipe Manana  * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
227879bd3712SFilipe Manana  * phases.
227979bd3712SFilipe Manana  */
228097f4728aSQu Wenruo static int insert_block_group_item(struct btrfs_trans_handle *trans,
228197f4728aSQu Wenruo 				   struct btrfs_block_group *block_group)
228297f4728aSQu Wenruo {
228397f4728aSQu Wenruo 	struct btrfs_fs_info *fs_info = trans->fs_info;
228497f4728aSQu Wenruo 	struct btrfs_block_group_item bgi;
2285dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(fs_info);
228697f4728aSQu Wenruo 	struct btrfs_key key;
228797f4728aSQu Wenruo 
228897f4728aSQu Wenruo 	spin_lock(&block_group->lock);
228997f4728aSQu Wenruo 	btrfs_set_stack_block_group_used(&bgi, block_group->used);
229097f4728aSQu Wenruo 	btrfs_set_stack_block_group_chunk_objectid(&bgi,
229197f4728aSQu Wenruo 				BTRFS_FIRST_CHUNK_TREE_OBJECTID);
229297f4728aSQu Wenruo 	btrfs_set_stack_block_group_flags(&bgi, block_group->flags);
229397f4728aSQu Wenruo 	key.objectid = block_group->start;
229497f4728aSQu Wenruo 	key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
229597f4728aSQu Wenruo 	key.offset = block_group->length;
229697f4728aSQu Wenruo 	spin_unlock(&block_group->lock);
229797f4728aSQu Wenruo 
229897f4728aSQu Wenruo 	return btrfs_insert_item(trans, root, &key, &bgi, sizeof(bgi));
229997f4728aSQu Wenruo }
230097f4728aSQu Wenruo 
23012eadb9e7SNikolay Borisov static int insert_dev_extent(struct btrfs_trans_handle *trans,
23022eadb9e7SNikolay Borisov 			    struct btrfs_device *device, u64 chunk_offset,
23032eadb9e7SNikolay Borisov 			    u64 start, u64 num_bytes)
23042eadb9e7SNikolay Borisov {
23052eadb9e7SNikolay Borisov 	struct btrfs_fs_info *fs_info = device->fs_info;
23062eadb9e7SNikolay Borisov 	struct btrfs_root *root = fs_info->dev_root;
23072eadb9e7SNikolay Borisov 	struct btrfs_path *path;
23082eadb9e7SNikolay Borisov 	struct btrfs_dev_extent *extent;
23092eadb9e7SNikolay Borisov 	struct extent_buffer *leaf;
23102eadb9e7SNikolay Borisov 	struct btrfs_key key;
23112eadb9e7SNikolay Borisov 	int ret;
23122eadb9e7SNikolay Borisov 
23132eadb9e7SNikolay Borisov 	WARN_ON(!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &device->dev_state));
23142eadb9e7SNikolay Borisov 	WARN_ON(test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state));
23152eadb9e7SNikolay Borisov 	path = btrfs_alloc_path();
23162eadb9e7SNikolay Borisov 	if (!path)
23172eadb9e7SNikolay Borisov 		return -ENOMEM;
23182eadb9e7SNikolay Borisov 
23192eadb9e7SNikolay Borisov 	key.objectid = device->devid;
23202eadb9e7SNikolay Borisov 	key.type = BTRFS_DEV_EXTENT_KEY;
23212eadb9e7SNikolay Borisov 	key.offset = start;
23222eadb9e7SNikolay Borisov 	ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*extent));
23232eadb9e7SNikolay Borisov 	if (ret)
23242eadb9e7SNikolay Borisov 		goto out;
23252eadb9e7SNikolay Borisov 
23262eadb9e7SNikolay Borisov 	leaf = path->nodes[0];
23272eadb9e7SNikolay Borisov 	extent = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_extent);
23282eadb9e7SNikolay Borisov 	btrfs_set_dev_extent_chunk_tree(leaf, extent, BTRFS_CHUNK_TREE_OBJECTID);
23292eadb9e7SNikolay Borisov 	btrfs_set_dev_extent_chunk_objectid(leaf, extent,
23302eadb9e7SNikolay Borisov 					    BTRFS_FIRST_CHUNK_TREE_OBJECTID);
23312eadb9e7SNikolay Borisov 	btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
23322eadb9e7SNikolay Borisov 
23332eadb9e7SNikolay Borisov 	btrfs_set_dev_extent_length(leaf, extent, num_bytes);
23342eadb9e7SNikolay Borisov 	btrfs_mark_buffer_dirty(leaf);
23352eadb9e7SNikolay Borisov out:
23362eadb9e7SNikolay Borisov 	btrfs_free_path(path);
23372eadb9e7SNikolay Borisov 	return ret;
23382eadb9e7SNikolay Borisov }
23392eadb9e7SNikolay Borisov 
23402eadb9e7SNikolay Borisov /*
23412eadb9e7SNikolay Borisov  * This function belongs to phase 2.
23422eadb9e7SNikolay Borisov  *
23432eadb9e7SNikolay Borisov  * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
23442eadb9e7SNikolay Borisov  * phases.
23452eadb9e7SNikolay Borisov  */
23462eadb9e7SNikolay Borisov static int insert_dev_extents(struct btrfs_trans_handle *trans,
23472eadb9e7SNikolay Borisov 				   u64 chunk_offset, u64 chunk_size)
23482eadb9e7SNikolay Borisov {
23492eadb9e7SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
23502eadb9e7SNikolay Borisov 	struct btrfs_device *device;
23512eadb9e7SNikolay Borisov 	struct extent_map *em;
23522eadb9e7SNikolay Borisov 	struct map_lookup *map;
23532eadb9e7SNikolay Borisov 	u64 dev_offset;
23542eadb9e7SNikolay Borisov 	u64 stripe_size;
23552eadb9e7SNikolay Borisov 	int i;
23562eadb9e7SNikolay Borisov 	int ret = 0;
23572eadb9e7SNikolay Borisov 
23582eadb9e7SNikolay Borisov 	em = btrfs_get_chunk_map(fs_info, chunk_offset, chunk_size);
23592eadb9e7SNikolay Borisov 	if (IS_ERR(em))
23602eadb9e7SNikolay Borisov 		return PTR_ERR(em);
23612eadb9e7SNikolay Borisov 
23622eadb9e7SNikolay Borisov 	map = em->map_lookup;
23632eadb9e7SNikolay Borisov 	stripe_size = em->orig_block_len;
23642eadb9e7SNikolay Borisov 
23652eadb9e7SNikolay Borisov 	/*
23662eadb9e7SNikolay Borisov 	 * Take the device list mutex to prevent races with the final phase of
23672eadb9e7SNikolay Borisov 	 * a device replace operation that replaces the device object associated
23682eadb9e7SNikolay Borisov 	 * with the map's stripes, because the device object's id can change
23692eadb9e7SNikolay Borisov 	 * at any time during that final phase of the device replace operation
23702eadb9e7SNikolay Borisov 	 * (dev-replace.c:btrfs_dev_replace_finishing()), so we could grab the
23712eadb9e7SNikolay Borisov 	 * replaced device and then see it with an ID of BTRFS_DEV_REPLACE_DEVID,
23722eadb9e7SNikolay Borisov 	 * resulting in persisting a device extent item with such ID.
23732eadb9e7SNikolay Borisov 	 */
23742eadb9e7SNikolay Borisov 	mutex_lock(&fs_info->fs_devices->device_list_mutex);
23752eadb9e7SNikolay Borisov 	for (i = 0; i < map->num_stripes; i++) {
23762eadb9e7SNikolay Borisov 		device = map->stripes[i].dev;
23772eadb9e7SNikolay Borisov 		dev_offset = map->stripes[i].physical;
23782eadb9e7SNikolay Borisov 
23792eadb9e7SNikolay Borisov 		ret = insert_dev_extent(trans, device, chunk_offset, dev_offset,
23802eadb9e7SNikolay Borisov 				       stripe_size);
23812eadb9e7SNikolay Borisov 		if (ret)
23822eadb9e7SNikolay Borisov 			break;
23832eadb9e7SNikolay Borisov 	}
23842eadb9e7SNikolay Borisov 	mutex_unlock(&fs_info->fs_devices->device_list_mutex);
23852eadb9e7SNikolay Borisov 
23862eadb9e7SNikolay Borisov 	free_extent_map(em);
23872eadb9e7SNikolay Borisov 	return ret;
23882eadb9e7SNikolay Borisov }
23892eadb9e7SNikolay Borisov 
239079bd3712SFilipe Manana /*
239179bd3712SFilipe Manana  * This function, btrfs_create_pending_block_groups(), belongs to the phase 2 of
239279bd3712SFilipe Manana  * chunk allocation.
239379bd3712SFilipe Manana  *
239479bd3712SFilipe Manana  * See the comment at btrfs_chunk_alloc() for details about the chunk allocation
239579bd3712SFilipe Manana  * phases.
239679bd3712SFilipe Manana  */
23974358d963SJosef Bacik void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
23984358d963SJosef Bacik {
23994358d963SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
240032da5386SDavid Sterba 	struct btrfs_block_group *block_group;
24014358d963SJosef Bacik 	int ret = 0;
24024358d963SJosef Bacik 
24034358d963SJosef Bacik 	while (!list_empty(&trans->new_bgs)) {
240449ea112dSJosef Bacik 		int index;
240549ea112dSJosef Bacik 
24064358d963SJosef Bacik 		block_group = list_first_entry(&trans->new_bgs,
240732da5386SDavid Sterba 					       struct btrfs_block_group,
24084358d963SJosef Bacik 					       bg_list);
24094358d963SJosef Bacik 		if (ret)
24104358d963SJosef Bacik 			goto next;
24114358d963SJosef Bacik 
241249ea112dSJosef Bacik 		index = btrfs_bg_flags_to_raid_index(block_group->flags);
241349ea112dSJosef Bacik 
241497f4728aSQu Wenruo 		ret = insert_block_group_item(trans, block_group);
24154358d963SJosef Bacik 		if (ret)
24164358d963SJosef Bacik 			btrfs_abort_transaction(trans, ret);
241779bd3712SFilipe Manana 		if (!block_group->chunk_item_inserted) {
241879bd3712SFilipe Manana 			mutex_lock(&fs_info->chunk_mutex);
241979bd3712SFilipe Manana 			ret = btrfs_chunk_alloc_add_chunk_item(trans, block_group);
242079bd3712SFilipe Manana 			mutex_unlock(&fs_info->chunk_mutex);
242179bd3712SFilipe Manana 			if (ret)
242279bd3712SFilipe Manana 				btrfs_abort_transaction(trans, ret);
242379bd3712SFilipe Manana 		}
24242eadb9e7SNikolay Borisov 		ret = insert_dev_extents(trans, block_group->start,
242597f4728aSQu Wenruo 					 block_group->length);
24264358d963SJosef Bacik 		if (ret)
24274358d963SJosef Bacik 			btrfs_abort_transaction(trans, ret);
24284358d963SJosef Bacik 		add_block_group_free_space(trans, block_group);
242949ea112dSJosef Bacik 
243049ea112dSJosef Bacik 		/*
243149ea112dSJosef Bacik 		 * If we restriped during balance, we may have added a new raid
243249ea112dSJosef Bacik 		 * type, so now add the sysfs entries when it is safe to do so.
243349ea112dSJosef Bacik 		 * We don't have to worry about locking here as it's handled in
243449ea112dSJosef Bacik 		 * btrfs_sysfs_add_block_group_type.
243549ea112dSJosef Bacik 		 */
243649ea112dSJosef Bacik 		if (block_group->space_info->block_group_kobjs[index] == NULL)
243749ea112dSJosef Bacik 			btrfs_sysfs_add_block_group_type(block_group);
243849ea112dSJosef Bacik 
24394358d963SJosef Bacik 		/* Already aborted the transaction if it failed. */
24404358d963SJosef Bacik next:
24414358d963SJosef Bacik 		btrfs_delayed_refs_rsv_release(fs_info, 1);
24424358d963SJosef Bacik 		list_del_init(&block_group->bg_list);
24434358d963SJosef Bacik 	}
24444358d963SJosef Bacik 	btrfs_trans_release_chunk_metadata(trans);
24454358d963SJosef Bacik }
24464358d963SJosef Bacik 
244779bd3712SFilipe Manana struct btrfs_block_group *btrfs_make_block_group(struct btrfs_trans_handle *trans,
244879bd3712SFilipe Manana 						 u64 bytes_used, u64 type,
244979bd3712SFilipe Manana 						 u64 chunk_offset, u64 size)
24504358d963SJosef Bacik {
24514358d963SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
245232da5386SDavid Sterba 	struct btrfs_block_group *cache;
24534358d963SJosef Bacik 	int ret;
24544358d963SJosef Bacik 
24554358d963SJosef Bacik 	btrfs_set_log_full_commit(trans);
24564358d963SJosef Bacik 
24579afc6649SQu Wenruo 	cache = btrfs_create_block_group_cache(fs_info, chunk_offset);
24584358d963SJosef Bacik 	if (!cache)
245979bd3712SFilipe Manana 		return ERR_PTR(-ENOMEM);
24604358d963SJosef Bacik 
24619afc6649SQu Wenruo 	cache->length = size;
2462e3e39c72SMarcos Paulo de Souza 	set_free_space_tree_thresholds(cache);
2463bf38be65SDavid Sterba 	cache->used = bytes_used;
24644358d963SJosef Bacik 	cache->flags = type;
24654358d963SJosef Bacik 	cache->last_byte_to_unpin = (u64)-1;
24664358d963SJosef Bacik 	cache->cached = BTRFS_CACHE_FINISHED;
2467997e3e2eSBoris Burkov 	if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
24684358d963SJosef Bacik 		cache->needs_free_space = 1;
246908e11a3dSNaohiro Aota 
2470a94794d5SNaohiro Aota 	ret = btrfs_load_block_group_zone_info(cache, true);
247108e11a3dSNaohiro Aota 	if (ret) {
247208e11a3dSNaohiro Aota 		btrfs_put_block_group(cache);
247379bd3712SFilipe Manana 		return ERR_PTR(ret);
247408e11a3dSNaohiro Aota 	}
247508e11a3dSNaohiro Aota 
2476eb66a010SNaohiro Aota 	/*
2477eb66a010SNaohiro Aota 	 * New block group is likely to be used soon. Try to activate it now.
2478eb66a010SNaohiro Aota 	 * Failure is OK for now.
2479eb66a010SNaohiro Aota 	 */
2480eb66a010SNaohiro Aota 	btrfs_zone_activate(cache);
2481eb66a010SNaohiro Aota 
24824358d963SJosef Bacik 	ret = exclude_super_stripes(cache);
24834358d963SJosef Bacik 	if (ret) {
24844358d963SJosef Bacik 		/* We may have excluded something, so call this just in case */
24854358d963SJosef Bacik 		btrfs_free_excluded_extents(cache);
24864358d963SJosef Bacik 		btrfs_put_block_group(cache);
248779bd3712SFilipe Manana 		return ERR_PTR(ret);
24884358d963SJosef Bacik 	}
24894358d963SJosef Bacik 
24904358d963SJosef Bacik 	add_new_free_space(cache, chunk_offset, chunk_offset + size);
24914358d963SJosef Bacik 
24924358d963SJosef Bacik 	btrfs_free_excluded_extents(cache);
24934358d963SJosef Bacik 
24944358d963SJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
24954358d963SJosef Bacik 	if (btrfs_should_fragment_free_space(cache)) {
24964358d963SJosef Bacik 		u64 new_bytes_used = size - bytes_used;
24974358d963SJosef Bacik 
24984358d963SJosef Bacik 		bytes_used += new_bytes_used >> 1;
2499e11c0406SJosef Bacik 		fragment_free_space(cache);
25004358d963SJosef Bacik 	}
25014358d963SJosef Bacik #endif
25024358d963SJosef Bacik 	/*
25034358d963SJosef Bacik 	 * Ensure the corresponding space_info object is created and
25044358d963SJosef Bacik 	 * assigned to our block group. We want our bg to be added to the rbtree
25054358d963SJosef Bacik 	 * with its ->space_info set.
25064358d963SJosef Bacik 	 */
25074358d963SJosef Bacik 	cache->space_info = btrfs_find_space_info(fs_info, cache->flags);
25084358d963SJosef Bacik 	ASSERT(cache->space_info);
25094358d963SJosef Bacik 
25104358d963SJosef Bacik 	ret = btrfs_add_block_group_cache(fs_info, cache);
25114358d963SJosef Bacik 	if (ret) {
25124358d963SJosef Bacik 		btrfs_remove_free_space_cache(cache);
25134358d963SJosef Bacik 		btrfs_put_block_group(cache);
251479bd3712SFilipe Manana 		return ERR_PTR(ret);
25154358d963SJosef Bacik 	}
25164358d963SJosef Bacik 
25174358d963SJosef Bacik 	/*
25184358d963SJosef Bacik 	 * Now that our block group has its ->space_info set and is inserted in
25194358d963SJosef Bacik 	 * the rbtree, update the space info's counters.
25204358d963SJosef Bacik 	 */
25214358d963SJosef Bacik 	trace_btrfs_add_block_group(fs_info, cache, 1);
25224358d963SJosef Bacik 	btrfs_update_space_info(fs_info, cache->flags, size, bytes_used,
252398173255SNaohiro Aota 				cache->bytes_super, cache->zone_unusable,
252498173255SNaohiro Aota 				&cache->space_info);
25254358d963SJosef Bacik 	btrfs_update_global_block_rsv(fs_info);
25264358d963SJosef Bacik 
25274358d963SJosef Bacik 	link_block_group(cache);
25284358d963SJosef Bacik 
25294358d963SJosef Bacik 	list_add_tail(&cache->bg_list, &trans->new_bgs);
25304358d963SJosef Bacik 	trans->delayed_ref_updates++;
25314358d963SJosef Bacik 	btrfs_update_delayed_refs_rsv(trans);
25324358d963SJosef Bacik 
25334358d963SJosef Bacik 	set_avail_alloc_bits(fs_info, type);
253479bd3712SFilipe Manana 	return cache;
25354358d963SJosef Bacik }
253626ce2095SJosef Bacik 
2537b12de528SQu Wenruo /*
2538b12de528SQu Wenruo  * Mark one block group RO, can be called several times for the same block
2539b12de528SQu Wenruo  * group.
2540b12de528SQu Wenruo  *
2541b12de528SQu Wenruo  * @cache:		the destination block group
2542b12de528SQu Wenruo  * @do_chunk_alloc:	whether need to do chunk pre-allocation, this is to
2543b12de528SQu Wenruo  * 			ensure we still have some free space after marking this
2544b12de528SQu Wenruo  * 			block group RO.
2545b12de528SQu Wenruo  */
2546b12de528SQu Wenruo int btrfs_inc_block_group_ro(struct btrfs_block_group *cache,
2547b12de528SQu Wenruo 			     bool do_chunk_alloc)
254826ce2095SJosef Bacik {
254926ce2095SJosef Bacik 	struct btrfs_fs_info *fs_info = cache->fs_info;
255026ce2095SJosef Bacik 	struct btrfs_trans_handle *trans;
2551dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(fs_info);
255226ce2095SJosef Bacik 	u64 alloc_flags;
255326ce2095SJosef Bacik 	int ret;
2554b6e9f16cSNikolay Borisov 	bool dirty_bg_running;
255526ce2095SJosef Bacik 
25562d192fc4SQu Wenruo 	/*
25572d192fc4SQu Wenruo 	 * This can only happen when we are doing read-only scrub on read-only
25582d192fc4SQu Wenruo 	 * mount.
25592d192fc4SQu Wenruo 	 * In that case we should not start a new transaction on read-only fs.
25602d192fc4SQu Wenruo 	 * Thus here we skip all chunk allocations.
25612d192fc4SQu Wenruo 	 */
25622d192fc4SQu Wenruo 	if (sb_rdonly(fs_info->sb)) {
25632d192fc4SQu Wenruo 		mutex_lock(&fs_info->ro_block_group_mutex);
25642d192fc4SQu Wenruo 		ret = inc_block_group_ro(cache, 0);
25652d192fc4SQu Wenruo 		mutex_unlock(&fs_info->ro_block_group_mutex);
25662d192fc4SQu Wenruo 		return ret;
25672d192fc4SQu Wenruo 	}
25682d192fc4SQu Wenruo 
2569b6e9f16cSNikolay Borisov 	do {
2570dfe8aec4SJosef Bacik 		trans = btrfs_join_transaction(root);
257126ce2095SJosef Bacik 		if (IS_ERR(trans))
257226ce2095SJosef Bacik 			return PTR_ERR(trans);
257326ce2095SJosef Bacik 
2574b6e9f16cSNikolay Borisov 		dirty_bg_running = false;
2575b6e9f16cSNikolay Borisov 
257626ce2095SJosef Bacik 		/*
2577b6e9f16cSNikolay Borisov 		 * We're not allowed to set block groups readonly after the dirty
2578b6e9f16cSNikolay Borisov 		 * block group cache has started writing.  If it already started,
2579b6e9f16cSNikolay Borisov 		 * back off and let this transaction commit.
258026ce2095SJosef Bacik 		 */
258126ce2095SJosef Bacik 		mutex_lock(&fs_info->ro_block_group_mutex);
258226ce2095SJosef Bacik 		if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
258326ce2095SJosef Bacik 			u64 transid = trans->transid;
258426ce2095SJosef Bacik 
258526ce2095SJosef Bacik 			mutex_unlock(&fs_info->ro_block_group_mutex);
258626ce2095SJosef Bacik 			btrfs_end_transaction(trans);
258726ce2095SJosef Bacik 
258826ce2095SJosef Bacik 			ret = btrfs_wait_for_commit(fs_info, transid);
258926ce2095SJosef Bacik 			if (ret)
259026ce2095SJosef Bacik 				return ret;
2591b6e9f16cSNikolay Borisov 			dirty_bg_running = true;
259226ce2095SJosef Bacik 		}
2593b6e9f16cSNikolay Borisov 	} while (dirty_bg_running);
259426ce2095SJosef Bacik 
2595b12de528SQu Wenruo 	if (do_chunk_alloc) {
259626ce2095SJosef Bacik 		/*
2597b12de528SQu Wenruo 		 * If we are changing raid levels, try to allocate a
2598b12de528SQu Wenruo 		 * corresponding block group with the new raid level.
259926ce2095SJosef Bacik 		 */
2600349e120eSJosef Bacik 		alloc_flags = btrfs_get_alloc_profile(fs_info, cache->flags);
260126ce2095SJosef Bacik 		if (alloc_flags != cache->flags) {
2602b12de528SQu Wenruo 			ret = btrfs_chunk_alloc(trans, alloc_flags,
2603b12de528SQu Wenruo 						CHUNK_ALLOC_FORCE);
260426ce2095SJosef Bacik 			/*
260526ce2095SJosef Bacik 			 * ENOSPC is allowed here, we may have enough space
2606b12de528SQu Wenruo 			 * already allocated at the new raid level to carry on
260726ce2095SJosef Bacik 			 */
260826ce2095SJosef Bacik 			if (ret == -ENOSPC)
260926ce2095SJosef Bacik 				ret = 0;
261026ce2095SJosef Bacik 			if (ret < 0)
261126ce2095SJosef Bacik 				goto out;
261226ce2095SJosef Bacik 		}
2613b12de528SQu Wenruo 	}
261426ce2095SJosef Bacik 
2615a7a63accSJosef Bacik 	ret = inc_block_group_ro(cache, 0);
2616195a49eaSFilipe Manana 	if (!do_chunk_alloc || ret == -ETXTBSY)
2617b12de528SQu Wenruo 		goto unlock_out;
261826ce2095SJosef Bacik 	if (!ret)
261926ce2095SJosef Bacik 		goto out;
262026ce2095SJosef Bacik 	alloc_flags = btrfs_get_alloc_profile(fs_info, cache->space_info->flags);
262126ce2095SJosef Bacik 	ret = btrfs_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
262226ce2095SJosef Bacik 	if (ret < 0)
262326ce2095SJosef Bacik 		goto out;
2624e11c0406SJosef Bacik 	ret = inc_block_group_ro(cache, 0);
2625195a49eaSFilipe Manana 	if (ret == -ETXTBSY)
2626195a49eaSFilipe Manana 		goto unlock_out;
262726ce2095SJosef Bacik out:
262826ce2095SJosef Bacik 	if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2629349e120eSJosef Bacik 		alloc_flags = btrfs_get_alloc_profile(fs_info, cache->flags);
263026ce2095SJosef Bacik 		mutex_lock(&fs_info->chunk_mutex);
263126ce2095SJosef Bacik 		check_system_chunk(trans, alloc_flags);
263226ce2095SJosef Bacik 		mutex_unlock(&fs_info->chunk_mutex);
263326ce2095SJosef Bacik 	}
2634b12de528SQu Wenruo unlock_out:
263526ce2095SJosef Bacik 	mutex_unlock(&fs_info->ro_block_group_mutex);
263626ce2095SJosef Bacik 
263726ce2095SJosef Bacik 	btrfs_end_transaction(trans);
263826ce2095SJosef Bacik 	return ret;
263926ce2095SJosef Bacik }
264026ce2095SJosef Bacik 
264132da5386SDavid Sterba void btrfs_dec_block_group_ro(struct btrfs_block_group *cache)
264226ce2095SJosef Bacik {
264326ce2095SJosef Bacik 	struct btrfs_space_info *sinfo = cache->space_info;
264426ce2095SJosef Bacik 	u64 num_bytes;
264526ce2095SJosef Bacik 
264626ce2095SJosef Bacik 	BUG_ON(!cache->ro);
264726ce2095SJosef Bacik 
264826ce2095SJosef Bacik 	spin_lock(&sinfo->lock);
264926ce2095SJosef Bacik 	spin_lock(&cache->lock);
265026ce2095SJosef Bacik 	if (!--cache->ro) {
2651169e0da9SNaohiro Aota 		if (btrfs_is_zoned(cache->fs_info)) {
2652169e0da9SNaohiro Aota 			/* Migrate zone_unusable bytes back */
265398173255SNaohiro Aota 			cache->zone_unusable =
265498173255SNaohiro Aota 				(cache->alloc_offset - cache->used) +
265598173255SNaohiro Aota 				(cache->length - cache->zone_capacity);
2656169e0da9SNaohiro Aota 			sinfo->bytes_zone_unusable += cache->zone_unusable;
2657169e0da9SNaohiro Aota 			sinfo->bytes_readonly -= cache->zone_unusable;
2658169e0da9SNaohiro Aota 		}
2659f9f28e5bSNaohiro Aota 		num_bytes = cache->length - cache->reserved -
2660f9f28e5bSNaohiro Aota 			    cache->pinned - cache->bytes_super -
2661f9f28e5bSNaohiro Aota 			    cache->zone_unusable - cache->used;
2662f9f28e5bSNaohiro Aota 		sinfo->bytes_readonly -= num_bytes;
266326ce2095SJosef Bacik 		list_del_init(&cache->ro_list);
266426ce2095SJosef Bacik 	}
266526ce2095SJosef Bacik 	spin_unlock(&cache->lock);
266626ce2095SJosef Bacik 	spin_unlock(&sinfo->lock);
266726ce2095SJosef Bacik }
266877745c05SJosef Bacik 
26693be4d8efSQu Wenruo static int update_block_group_item(struct btrfs_trans_handle *trans,
267077745c05SJosef Bacik 				   struct btrfs_path *path,
267132da5386SDavid Sterba 				   struct btrfs_block_group *cache)
267277745c05SJosef Bacik {
267377745c05SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
267477745c05SJosef Bacik 	int ret;
2675dfe8aec4SJosef Bacik 	struct btrfs_root *root = btrfs_block_group_root(fs_info);
267677745c05SJosef Bacik 	unsigned long bi;
267777745c05SJosef Bacik 	struct extent_buffer *leaf;
2678bf38be65SDavid Sterba 	struct btrfs_block_group_item bgi;
2679b3470b5dSDavid Sterba 	struct btrfs_key key;
268077745c05SJosef Bacik 
2681b3470b5dSDavid Sterba 	key.objectid = cache->start;
2682b3470b5dSDavid Sterba 	key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
2683b3470b5dSDavid Sterba 	key.offset = cache->length;
2684b3470b5dSDavid Sterba 
26853be4d8efSQu Wenruo 	ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
268677745c05SJosef Bacik 	if (ret) {
268777745c05SJosef Bacik 		if (ret > 0)
268877745c05SJosef Bacik 			ret = -ENOENT;
268977745c05SJosef Bacik 		goto fail;
269077745c05SJosef Bacik 	}
269177745c05SJosef Bacik 
269277745c05SJosef Bacik 	leaf = path->nodes[0];
269377745c05SJosef Bacik 	bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2694de0dc456SDavid Sterba 	btrfs_set_stack_block_group_used(&bgi, cache->used);
2695de0dc456SDavid Sterba 	btrfs_set_stack_block_group_chunk_objectid(&bgi,
26963d976388SDavid Sterba 			BTRFS_FIRST_CHUNK_TREE_OBJECTID);
2697de0dc456SDavid Sterba 	btrfs_set_stack_block_group_flags(&bgi, cache->flags);
2698bf38be65SDavid Sterba 	write_extent_buffer(leaf, &bgi, bi, sizeof(bgi));
269977745c05SJosef Bacik 	btrfs_mark_buffer_dirty(leaf);
270077745c05SJosef Bacik fail:
270177745c05SJosef Bacik 	btrfs_release_path(path);
270277745c05SJosef Bacik 	return ret;
270377745c05SJosef Bacik 
270477745c05SJosef Bacik }
270577745c05SJosef Bacik 
270632da5386SDavid Sterba static int cache_save_setup(struct btrfs_block_group *block_group,
270777745c05SJosef Bacik 			    struct btrfs_trans_handle *trans,
270877745c05SJosef Bacik 			    struct btrfs_path *path)
270977745c05SJosef Bacik {
271077745c05SJosef Bacik 	struct btrfs_fs_info *fs_info = block_group->fs_info;
271177745c05SJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
271277745c05SJosef Bacik 	struct inode *inode = NULL;
271377745c05SJosef Bacik 	struct extent_changeset *data_reserved = NULL;
271477745c05SJosef Bacik 	u64 alloc_hint = 0;
271577745c05SJosef Bacik 	int dcs = BTRFS_DC_ERROR;
27160044ae11SQu Wenruo 	u64 cache_size = 0;
271777745c05SJosef Bacik 	int retries = 0;
271877745c05SJosef Bacik 	int ret = 0;
271977745c05SJosef Bacik 
2720af456a2cSBoris Burkov 	if (!btrfs_test_opt(fs_info, SPACE_CACHE))
2721af456a2cSBoris Burkov 		return 0;
2722af456a2cSBoris Burkov 
272377745c05SJosef Bacik 	/*
272477745c05SJosef Bacik 	 * If this block group is smaller than 100 megs don't bother caching the
272577745c05SJosef Bacik 	 * block group.
272677745c05SJosef Bacik 	 */
2727b3470b5dSDavid Sterba 	if (block_group->length < (100 * SZ_1M)) {
272877745c05SJosef Bacik 		spin_lock(&block_group->lock);
272977745c05SJosef Bacik 		block_group->disk_cache_state = BTRFS_DC_WRITTEN;
273077745c05SJosef Bacik 		spin_unlock(&block_group->lock);
273177745c05SJosef Bacik 		return 0;
273277745c05SJosef Bacik 	}
273377745c05SJosef Bacik 
2734bf31f87fSDavid Sterba 	if (TRANS_ABORTED(trans))
273577745c05SJosef Bacik 		return 0;
273677745c05SJosef Bacik again:
273777745c05SJosef Bacik 	inode = lookup_free_space_inode(block_group, path);
273877745c05SJosef Bacik 	if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
273977745c05SJosef Bacik 		ret = PTR_ERR(inode);
274077745c05SJosef Bacik 		btrfs_release_path(path);
274177745c05SJosef Bacik 		goto out;
274277745c05SJosef Bacik 	}
274377745c05SJosef Bacik 
274477745c05SJosef Bacik 	if (IS_ERR(inode)) {
274577745c05SJosef Bacik 		BUG_ON(retries);
274677745c05SJosef Bacik 		retries++;
274777745c05SJosef Bacik 
274877745c05SJosef Bacik 		if (block_group->ro)
274977745c05SJosef Bacik 			goto out_free;
275077745c05SJosef Bacik 
275177745c05SJosef Bacik 		ret = create_free_space_inode(trans, block_group, path);
275277745c05SJosef Bacik 		if (ret)
275377745c05SJosef Bacik 			goto out_free;
275477745c05SJosef Bacik 		goto again;
275577745c05SJosef Bacik 	}
275677745c05SJosef Bacik 
275777745c05SJosef Bacik 	/*
275877745c05SJosef Bacik 	 * We want to set the generation to 0, that way if anything goes wrong
275977745c05SJosef Bacik 	 * from here on out we know not to trust this cache when we load up next
276077745c05SJosef Bacik 	 * time.
276177745c05SJosef Bacik 	 */
276277745c05SJosef Bacik 	BTRFS_I(inode)->generation = 0;
27639a56fcd1SNikolay Borisov 	ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
276477745c05SJosef Bacik 	if (ret) {
276577745c05SJosef Bacik 		/*
276677745c05SJosef Bacik 		 * So theoretically we could recover from this, simply set the
276777745c05SJosef Bacik 		 * super cache generation to 0 so we know to invalidate the
276877745c05SJosef Bacik 		 * cache, but then we'd have to keep track of the block groups
276977745c05SJosef Bacik 		 * that fail this way so we know we _have_ to reset this cache
277077745c05SJosef Bacik 		 * before the next commit or risk reading stale cache.  So to
277177745c05SJosef Bacik 		 * limit our exposure to horrible edge cases lets just abort the
277277745c05SJosef Bacik 		 * transaction, this only happens in really bad situations
277377745c05SJosef Bacik 		 * anyway.
277477745c05SJosef Bacik 		 */
277577745c05SJosef Bacik 		btrfs_abort_transaction(trans, ret);
277677745c05SJosef Bacik 		goto out_put;
277777745c05SJosef Bacik 	}
277877745c05SJosef Bacik 	WARN_ON(ret);
277977745c05SJosef Bacik 
278077745c05SJosef Bacik 	/* We've already setup this transaction, go ahead and exit */
278177745c05SJosef Bacik 	if (block_group->cache_generation == trans->transid &&
278277745c05SJosef Bacik 	    i_size_read(inode)) {
278377745c05SJosef Bacik 		dcs = BTRFS_DC_SETUP;
278477745c05SJosef Bacik 		goto out_put;
278577745c05SJosef Bacik 	}
278677745c05SJosef Bacik 
278777745c05SJosef Bacik 	if (i_size_read(inode) > 0) {
278877745c05SJosef Bacik 		ret = btrfs_check_trunc_cache_free_space(fs_info,
278977745c05SJosef Bacik 					&fs_info->global_block_rsv);
279077745c05SJosef Bacik 		if (ret)
279177745c05SJosef Bacik 			goto out_put;
279277745c05SJosef Bacik 
279377745c05SJosef Bacik 		ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
279477745c05SJosef Bacik 		if (ret)
279577745c05SJosef Bacik 			goto out_put;
279677745c05SJosef Bacik 	}
279777745c05SJosef Bacik 
279877745c05SJosef Bacik 	spin_lock(&block_group->lock);
279977745c05SJosef Bacik 	if (block_group->cached != BTRFS_CACHE_FINISHED ||
280077745c05SJosef Bacik 	    !btrfs_test_opt(fs_info, SPACE_CACHE)) {
280177745c05SJosef Bacik 		/*
280277745c05SJosef Bacik 		 * don't bother trying to write stuff out _if_
280377745c05SJosef Bacik 		 * a) we're not cached,
280477745c05SJosef Bacik 		 * b) we're with nospace_cache mount option,
280577745c05SJosef Bacik 		 * c) we're with v2 space_cache (FREE_SPACE_TREE).
280677745c05SJosef Bacik 		 */
280777745c05SJosef Bacik 		dcs = BTRFS_DC_WRITTEN;
280877745c05SJosef Bacik 		spin_unlock(&block_group->lock);
280977745c05SJosef Bacik 		goto out_put;
281077745c05SJosef Bacik 	}
281177745c05SJosef Bacik 	spin_unlock(&block_group->lock);
281277745c05SJosef Bacik 
281377745c05SJosef Bacik 	/*
281477745c05SJosef Bacik 	 * We hit an ENOSPC when setting up the cache in this transaction, just
281577745c05SJosef Bacik 	 * skip doing the setup, we've already cleared the cache so we're safe.
281677745c05SJosef Bacik 	 */
281777745c05SJosef Bacik 	if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
281877745c05SJosef Bacik 		ret = -ENOSPC;
281977745c05SJosef Bacik 		goto out_put;
282077745c05SJosef Bacik 	}
282177745c05SJosef Bacik 
282277745c05SJosef Bacik 	/*
282377745c05SJosef Bacik 	 * Try to preallocate enough space based on how big the block group is.
282477745c05SJosef Bacik 	 * Keep in mind this has to include any pinned space which could end up
282577745c05SJosef Bacik 	 * taking up quite a bit since it's not folded into the other space
282677745c05SJosef Bacik 	 * cache.
282777745c05SJosef Bacik 	 */
28280044ae11SQu Wenruo 	cache_size = div_u64(block_group->length, SZ_256M);
28290044ae11SQu Wenruo 	if (!cache_size)
28300044ae11SQu Wenruo 		cache_size = 1;
283177745c05SJosef Bacik 
28320044ae11SQu Wenruo 	cache_size *= 16;
28330044ae11SQu Wenruo 	cache_size *= fs_info->sectorsize;
283477745c05SJosef Bacik 
283536ea6f3eSNikolay Borisov 	ret = btrfs_check_data_free_space(BTRFS_I(inode), &data_reserved, 0,
28360044ae11SQu Wenruo 					  cache_size);
283777745c05SJosef Bacik 	if (ret)
283877745c05SJosef Bacik 		goto out_put;
283977745c05SJosef Bacik 
28400044ae11SQu Wenruo 	ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, cache_size,
28410044ae11SQu Wenruo 					      cache_size, cache_size,
284277745c05SJosef Bacik 					      &alloc_hint);
284377745c05SJosef Bacik 	/*
284477745c05SJosef Bacik 	 * Our cache requires contiguous chunks so that we don't modify a bunch
284577745c05SJosef Bacik 	 * of metadata or split extents when writing the cache out, which means
284677745c05SJosef Bacik 	 * we can enospc if we are heavily fragmented in addition to just normal
284777745c05SJosef Bacik 	 * out of space conditions.  So if we hit this just skip setting up any
284877745c05SJosef Bacik 	 * other block groups for this transaction, maybe we'll unpin enough
284977745c05SJosef Bacik 	 * space the next time around.
285077745c05SJosef Bacik 	 */
285177745c05SJosef Bacik 	if (!ret)
285277745c05SJosef Bacik 		dcs = BTRFS_DC_SETUP;
285377745c05SJosef Bacik 	else if (ret == -ENOSPC)
285477745c05SJosef Bacik 		set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
285577745c05SJosef Bacik 
285677745c05SJosef Bacik out_put:
285777745c05SJosef Bacik 	iput(inode);
285877745c05SJosef Bacik out_free:
285977745c05SJosef Bacik 	btrfs_release_path(path);
286077745c05SJosef Bacik out:
286177745c05SJosef Bacik 	spin_lock(&block_group->lock);
286277745c05SJosef Bacik 	if (!ret && dcs == BTRFS_DC_SETUP)
286377745c05SJosef Bacik 		block_group->cache_generation = trans->transid;
286477745c05SJosef Bacik 	block_group->disk_cache_state = dcs;
286577745c05SJosef Bacik 	spin_unlock(&block_group->lock);
286677745c05SJosef Bacik 
286777745c05SJosef Bacik 	extent_changeset_free(data_reserved);
286877745c05SJosef Bacik 	return ret;
286977745c05SJosef Bacik }
287077745c05SJosef Bacik 
287177745c05SJosef Bacik int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
287277745c05SJosef Bacik {
287377745c05SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
287432da5386SDavid Sterba 	struct btrfs_block_group *cache, *tmp;
287577745c05SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
287677745c05SJosef Bacik 	struct btrfs_path *path;
287777745c05SJosef Bacik 
287877745c05SJosef Bacik 	if (list_empty(&cur_trans->dirty_bgs) ||
287977745c05SJosef Bacik 	    !btrfs_test_opt(fs_info, SPACE_CACHE))
288077745c05SJosef Bacik 		return 0;
288177745c05SJosef Bacik 
288277745c05SJosef Bacik 	path = btrfs_alloc_path();
288377745c05SJosef Bacik 	if (!path)
288477745c05SJosef Bacik 		return -ENOMEM;
288577745c05SJosef Bacik 
288677745c05SJosef Bacik 	/* Could add new block groups, use _safe just in case */
288777745c05SJosef Bacik 	list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
288877745c05SJosef Bacik 				 dirty_list) {
288977745c05SJosef Bacik 		if (cache->disk_cache_state == BTRFS_DC_CLEAR)
289077745c05SJosef Bacik 			cache_save_setup(cache, trans, path);
289177745c05SJosef Bacik 	}
289277745c05SJosef Bacik 
289377745c05SJosef Bacik 	btrfs_free_path(path);
289477745c05SJosef Bacik 	return 0;
289577745c05SJosef Bacik }
289677745c05SJosef Bacik 
289777745c05SJosef Bacik /*
289877745c05SJosef Bacik  * Transaction commit does final block group cache writeback during a critical
289977745c05SJosef Bacik  * section where nothing is allowed to change the FS.  This is required in
290077745c05SJosef Bacik  * order for the cache to actually match the block group, but can introduce a
290177745c05SJosef Bacik  * lot of latency into the commit.
290277745c05SJosef Bacik  *
290377745c05SJosef Bacik  * So, btrfs_start_dirty_block_groups is here to kick off block group cache IO.
290477745c05SJosef Bacik  * There's a chance we'll have to redo some of it if the block group changes
290577745c05SJosef Bacik  * again during the commit, but it greatly reduces the commit latency by
290677745c05SJosef Bacik  * getting rid of the easy block groups while we're still allowing others to
290777745c05SJosef Bacik  * join the commit.
290877745c05SJosef Bacik  */
290977745c05SJosef Bacik int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
291077745c05SJosef Bacik {
291177745c05SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
291232da5386SDavid Sterba 	struct btrfs_block_group *cache;
291377745c05SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
291477745c05SJosef Bacik 	int ret = 0;
291577745c05SJosef Bacik 	int should_put;
291677745c05SJosef Bacik 	struct btrfs_path *path = NULL;
291777745c05SJosef Bacik 	LIST_HEAD(dirty);
291877745c05SJosef Bacik 	struct list_head *io = &cur_trans->io_bgs;
291977745c05SJosef Bacik 	int num_started = 0;
292077745c05SJosef Bacik 	int loops = 0;
292177745c05SJosef Bacik 
292277745c05SJosef Bacik 	spin_lock(&cur_trans->dirty_bgs_lock);
292377745c05SJosef Bacik 	if (list_empty(&cur_trans->dirty_bgs)) {
292477745c05SJosef Bacik 		spin_unlock(&cur_trans->dirty_bgs_lock);
292577745c05SJosef Bacik 		return 0;
292677745c05SJosef Bacik 	}
292777745c05SJosef Bacik 	list_splice_init(&cur_trans->dirty_bgs, &dirty);
292877745c05SJosef Bacik 	spin_unlock(&cur_trans->dirty_bgs_lock);
292977745c05SJosef Bacik 
293077745c05SJosef Bacik again:
293177745c05SJosef Bacik 	/* Make sure all the block groups on our dirty list actually exist */
293277745c05SJosef Bacik 	btrfs_create_pending_block_groups(trans);
293377745c05SJosef Bacik 
293477745c05SJosef Bacik 	if (!path) {
293577745c05SJosef Bacik 		path = btrfs_alloc_path();
2936938fcbfbSJosef Bacik 		if (!path) {
2937938fcbfbSJosef Bacik 			ret = -ENOMEM;
2938938fcbfbSJosef Bacik 			goto out;
2939938fcbfbSJosef Bacik 		}
294077745c05SJosef Bacik 	}
294177745c05SJosef Bacik 
294277745c05SJosef Bacik 	/*
294377745c05SJosef Bacik 	 * cache_write_mutex is here only to save us from balance or automatic
294477745c05SJosef Bacik 	 * removal of empty block groups deleting this block group while we are
294577745c05SJosef Bacik 	 * writing out the cache
294677745c05SJosef Bacik 	 */
294777745c05SJosef Bacik 	mutex_lock(&trans->transaction->cache_write_mutex);
294877745c05SJosef Bacik 	while (!list_empty(&dirty)) {
294977745c05SJosef Bacik 		bool drop_reserve = true;
295077745c05SJosef Bacik 
295132da5386SDavid Sterba 		cache = list_first_entry(&dirty, struct btrfs_block_group,
295277745c05SJosef Bacik 					 dirty_list);
295377745c05SJosef Bacik 		/*
295477745c05SJosef Bacik 		 * This can happen if something re-dirties a block group that
295577745c05SJosef Bacik 		 * is already under IO.  Just wait for it to finish and then do
295677745c05SJosef Bacik 		 * it all again
295777745c05SJosef Bacik 		 */
295877745c05SJosef Bacik 		if (!list_empty(&cache->io_list)) {
295977745c05SJosef Bacik 			list_del_init(&cache->io_list);
296077745c05SJosef Bacik 			btrfs_wait_cache_io(trans, cache, path);
296177745c05SJosef Bacik 			btrfs_put_block_group(cache);
296277745c05SJosef Bacik 		}
296377745c05SJosef Bacik 
296477745c05SJosef Bacik 
296577745c05SJosef Bacik 		/*
296677745c05SJosef Bacik 		 * btrfs_wait_cache_io uses the cache->dirty_list to decide if
296777745c05SJosef Bacik 		 * it should update the cache_state.  Don't delete until after
296877745c05SJosef Bacik 		 * we wait.
296977745c05SJosef Bacik 		 *
297077745c05SJosef Bacik 		 * Since we're not running in the commit critical section
297177745c05SJosef Bacik 		 * we need the dirty_bgs_lock to protect from update_block_group
297277745c05SJosef Bacik 		 */
297377745c05SJosef Bacik 		spin_lock(&cur_trans->dirty_bgs_lock);
297477745c05SJosef Bacik 		list_del_init(&cache->dirty_list);
297577745c05SJosef Bacik 		spin_unlock(&cur_trans->dirty_bgs_lock);
297677745c05SJosef Bacik 
297777745c05SJosef Bacik 		should_put = 1;
297877745c05SJosef Bacik 
297977745c05SJosef Bacik 		cache_save_setup(cache, trans, path);
298077745c05SJosef Bacik 
298177745c05SJosef Bacik 		if (cache->disk_cache_state == BTRFS_DC_SETUP) {
298277745c05SJosef Bacik 			cache->io_ctl.inode = NULL;
298377745c05SJosef Bacik 			ret = btrfs_write_out_cache(trans, cache, path);
298477745c05SJosef Bacik 			if (ret == 0 && cache->io_ctl.inode) {
298577745c05SJosef Bacik 				num_started++;
298677745c05SJosef Bacik 				should_put = 0;
298777745c05SJosef Bacik 
298877745c05SJosef Bacik 				/*
298977745c05SJosef Bacik 				 * The cache_write_mutex is protecting the
299077745c05SJosef Bacik 				 * io_list, also refer to the definition of
299177745c05SJosef Bacik 				 * btrfs_transaction::io_bgs for more details
299277745c05SJosef Bacik 				 */
299377745c05SJosef Bacik 				list_add_tail(&cache->io_list, io);
299477745c05SJosef Bacik 			} else {
299577745c05SJosef Bacik 				/*
299677745c05SJosef Bacik 				 * If we failed to write the cache, the
299777745c05SJosef Bacik 				 * generation will be bad and life goes on
299877745c05SJosef Bacik 				 */
299977745c05SJosef Bacik 				ret = 0;
300077745c05SJosef Bacik 			}
300177745c05SJosef Bacik 		}
300277745c05SJosef Bacik 		if (!ret) {
30033be4d8efSQu Wenruo 			ret = update_block_group_item(trans, path, cache);
300477745c05SJosef Bacik 			/*
300577745c05SJosef Bacik 			 * Our block group might still be attached to the list
300677745c05SJosef Bacik 			 * of new block groups in the transaction handle of some
300777745c05SJosef Bacik 			 * other task (struct btrfs_trans_handle->new_bgs). This
300877745c05SJosef Bacik 			 * means its block group item isn't yet in the extent
300977745c05SJosef Bacik 			 * tree. If this happens ignore the error, as we will
301077745c05SJosef Bacik 			 * try again later in the critical section of the
301177745c05SJosef Bacik 			 * transaction commit.
301277745c05SJosef Bacik 			 */
301377745c05SJosef Bacik 			if (ret == -ENOENT) {
301477745c05SJosef Bacik 				ret = 0;
301577745c05SJosef Bacik 				spin_lock(&cur_trans->dirty_bgs_lock);
301677745c05SJosef Bacik 				if (list_empty(&cache->dirty_list)) {
301777745c05SJosef Bacik 					list_add_tail(&cache->dirty_list,
301877745c05SJosef Bacik 						      &cur_trans->dirty_bgs);
301977745c05SJosef Bacik 					btrfs_get_block_group(cache);
302077745c05SJosef Bacik 					drop_reserve = false;
302177745c05SJosef Bacik 				}
302277745c05SJosef Bacik 				spin_unlock(&cur_trans->dirty_bgs_lock);
302377745c05SJosef Bacik 			} else if (ret) {
302477745c05SJosef Bacik 				btrfs_abort_transaction(trans, ret);
302577745c05SJosef Bacik 			}
302677745c05SJosef Bacik 		}
302777745c05SJosef Bacik 
302877745c05SJosef Bacik 		/* If it's not on the io list, we need to put the block group */
302977745c05SJosef Bacik 		if (should_put)
303077745c05SJosef Bacik 			btrfs_put_block_group(cache);
303177745c05SJosef Bacik 		if (drop_reserve)
303277745c05SJosef Bacik 			btrfs_delayed_refs_rsv_release(fs_info, 1);
303377745c05SJosef Bacik 		/*
303477745c05SJosef Bacik 		 * Avoid blocking other tasks for too long. It might even save
303577745c05SJosef Bacik 		 * us from writing caches for block groups that are going to be
303677745c05SJosef Bacik 		 * removed.
303777745c05SJosef Bacik 		 */
303877745c05SJosef Bacik 		mutex_unlock(&trans->transaction->cache_write_mutex);
3039938fcbfbSJosef Bacik 		if (ret)
3040938fcbfbSJosef Bacik 			goto out;
304177745c05SJosef Bacik 		mutex_lock(&trans->transaction->cache_write_mutex);
304277745c05SJosef Bacik 	}
304377745c05SJosef Bacik 	mutex_unlock(&trans->transaction->cache_write_mutex);
304477745c05SJosef Bacik 
304577745c05SJosef Bacik 	/*
304677745c05SJosef Bacik 	 * Go through delayed refs for all the stuff we've just kicked off
304777745c05SJosef Bacik 	 * and then loop back (just once)
304877745c05SJosef Bacik 	 */
304934d1eb0eSJosef Bacik 	if (!ret)
305077745c05SJosef Bacik 		ret = btrfs_run_delayed_refs(trans, 0);
305177745c05SJosef Bacik 	if (!ret && loops == 0) {
305277745c05SJosef Bacik 		loops++;
305377745c05SJosef Bacik 		spin_lock(&cur_trans->dirty_bgs_lock);
305477745c05SJosef Bacik 		list_splice_init(&cur_trans->dirty_bgs, &dirty);
305577745c05SJosef Bacik 		/*
305677745c05SJosef Bacik 		 * dirty_bgs_lock protects us from concurrent block group
305777745c05SJosef Bacik 		 * deletes too (not just cache_write_mutex).
305877745c05SJosef Bacik 		 */
305977745c05SJosef Bacik 		if (!list_empty(&dirty)) {
306077745c05SJosef Bacik 			spin_unlock(&cur_trans->dirty_bgs_lock);
306177745c05SJosef Bacik 			goto again;
306277745c05SJosef Bacik 		}
306377745c05SJosef Bacik 		spin_unlock(&cur_trans->dirty_bgs_lock);
3064938fcbfbSJosef Bacik 	}
3065938fcbfbSJosef Bacik out:
3066938fcbfbSJosef Bacik 	if (ret < 0) {
3067938fcbfbSJosef Bacik 		spin_lock(&cur_trans->dirty_bgs_lock);
3068938fcbfbSJosef Bacik 		list_splice_init(&dirty, &cur_trans->dirty_bgs);
3069938fcbfbSJosef Bacik 		spin_unlock(&cur_trans->dirty_bgs_lock);
307077745c05SJosef Bacik 		btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
307177745c05SJosef Bacik 	}
307277745c05SJosef Bacik 
307377745c05SJosef Bacik 	btrfs_free_path(path);
307477745c05SJosef Bacik 	return ret;
307577745c05SJosef Bacik }
307677745c05SJosef Bacik 
307777745c05SJosef Bacik int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
307877745c05SJosef Bacik {
307977745c05SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
308032da5386SDavid Sterba 	struct btrfs_block_group *cache;
308177745c05SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
308277745c05SJosef Bacik 	int ret = 0;
308377745c05SJosef Bacik 	int should_put;
308477745c05SJosef Bacik 	struct btrfs_path *path;
308577745c05SJosef Bacik 	struct list_head *io = &cur_trans->io_bgs;
308677745c05SJosef Bacik 	int num_started = 0;
308777745c05SJosef Bacik 
308877745c05SJosef Bacik 	path = btrfs_alloc_path();
308977745c05SJosef Bacik 	if (!path)
309077745c05SJosef Bacik 		return -ENOMEM;
309177745c05SJosef Bacik 
309277745c05SJosef Bacik 	/*
309377745c05SJosef Bacik 	 * Even though we are in the critical section of the transaction commit,
309477745c05SJosef Bacik 	 * we can still have concurrent tasks adding elements to this
309577745c05SJosef Bacik 	 * transaction's list of dirty block groups. These tasks correspond to
309677745c05SJosef Bacik 	 * endio free space workers started when writeback finishes for a
309777745c05SJosef Bacik 	 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
309877745c05SJosef Bacik 	 * allocate new block groups as a result of COWing nodes of the root
309977745c05SJosef Bacik 	 * tree when updating the free space inode. The writeback for the space
310077745c05SJosef Bacik 	 * caches is triggered by an earlier call to
310177745c05SJosef Bacik 	 * btrfs_start_dirty_block_groups() and iterations of the following
310277745c05SJosef Bacik 	 * loop.
310377745c05SJosef Bacik 	 * Also we want to do the cache_save_setup first and then run the
310477745c05SJosef Bacik 	 * delayed refs to make sure we have the best chance at doing this all
310577745c05SJosef Bacik 	 * in one shot.
310677745c05SJosef Bacik 	 */
310777745c05SJosef Bacik 	spin_lock(&cur_trans->dirty_bgs_lock);
310877745c05SJosef Bacik 	while (!list_empty(&cur_trans->dirty_bgs)) {
310977745c05SJosef Bacik 		cache = list_first_entry(&cur_trans->dirty_bgs,
311032da5386SDavid Sterba 					 struct btrfs_block_group,
311177745c05SJosef Bacik 					 dirty_list);
311277745c05SJosef Bacik 
311377745c05SJosef Bacik 		/*
311477745c05SJosef Bacik 		 * This can happen if cache_save_setup re-dirties a block group
311577745c05SJosef Bacik 		 * that is already under IO.  Just wait for it to finish and
311677745c05SJosef Bacik 		 * then do it all again
311777745c05SJosef Bacik 		 */
311877745c05SJosef Bacik 		if (!list_empty(&cache->io_list)) {
311977745c05SJosef Bacik 			spin_unlock(&cur_trans->dirty_bgs_lock);
312077745c05SJosef Bacik 			list_del_init(&cache->io_list);
312177745c05SJosef Bacik 			btrfs_wait_cache_io(trans, cache, path);
312277745c05SJosef Bacik 			btrfs_put_block_group(cache);
312377745c05SJosef Bacik 			spin_lock(&cur_trans->dirty_bgs_lock);
312477745c05SJosef Bacik 		}
312577745c05SJosef Bacik 
312677745c05SJosef Bacik 		/*
312777745c05SJosef Bacik 		 * Don't remove from the dirty list until after we've waited on
312877745c05SJosef Bacik 		 * any pending IO
312977745c05SJosef Bacik 		 */
313077745c05SJosef Bacik 		list_del_init(&cache->dirty_list);
313177745c05SJosef Bacik 		spin_unlock(&cur_trans->dirty_bgs_lock);
313277745c05SJosef Bacik 		should_put = 1;
313377745c05SJosef Bacik 
313477745c05SJosef Bacik 		cache_save_setup(cache, trans, path);
313577745c05SJosef Bacik 
313677745c05SJosef Bacik 		if (!ret)
313777745c05SJosef Bacik 			ret = btrfs_run_delayed_refs(trans,
313877745c05SJosef Bacik 						     (unsigned long) -1);
313977745c05SJosef Bacik 
314077745c05SJosef Bacik 		if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
314177745c05SJosef Bacik 			cache->io_ctl.inode = NULL;
314277745c05SJosef Bacik 			ret = btrfs_write_out_cache(trans, cache, path);
314377745c05SJosef Bacik 			if (ret == 0 && cache->io_ctl.inode) {
314477745c05SJosef Bacik 				num_started++;
314577745c05SJosef Bacik 				should_put = 0;
314677745c05SJosef Bacik 				list_add_tail(&cache->io_list, io);
314777745c05SJosef Bacik 			} else {
314877745c05SJosef Bacik 				/*
314977745c05SJosef Bacik 				 * If we failed to write the cache, the
315077745c05SJosef Bacik 				 * generation will be bad and life goes on
315177745c05SJosef Bacik 				 */
315277745c05SJosef Bacik 				ret = 0;
315377745c05SJosef Bacik 			}
315477745c05SJosef Bacik 		}
315577745c05SJosef Bacik 		if (!ret) {
31563be4d8efSQu Wenruo 			ret = update_block_group_item(trans, path, cache);
315777745c05SJosef Bacik 			/*
315877745c05SJosef Bacik 			 * One of the free space endio workers might have
315977745c05SJosef Bacik 			 * created a new block group while updating a free space
316077745c05SJosef Bacik 			 * cache's inode (at inode.c:btrfs_finish_ordered_io())
316177745c05SJosef Bacik 			 * and hasn't released its transaction handle yet, in
316277745c05SJosef Bacik 			 * which case the new block group is still attached to
316377745c05SJosef Bacik 			 * its transaction handle and its creation has not
316477745c05SJosef Bacik 			 * finished yet (no block group item in the extent tree
316577745c05SJosef Bacik 			 * yet, etc). If this is the case, wait for all free
316677745c05SJosef Bacik 			 * space endio workers to finish and retry. This is a
3167260db43cSRandy Dunlap 			 * very rare case so no need for a more efficient and
316877745c05SJosef Bacik 			 * complex approach.
316977745c05SJosef Bacik 			 */
317077745c05SJosef Bacik 			if (ret == -ENOENT) {
317177745c05SJosef Bacik 				wait_event(cur_trans->writer_wait,
317277745c05SJosef Bacik 				   atomic_read(&cur_trans->num_writers) == 1);
31733be4d8efSQu Wenruo 				ret = update_block_group_item(trans, path, cache);
317477745c05SJosef Bacik 			}
317577745c05SJosef Bacik 			if (ret)
317677745c05SJosef Bacik 				btrfs_abort_transaction(trans, ret);
317777745c05SJosef Bacik 		}
317877745c05SJosef Bacik 
317977745c05SJosef Bacik 		/* If its not on the io list, we need to put the block group */
318077745c05SJosef Bacik 		if (should_put)
318177745c05SJosef Bacik 			btrfs_put_block_group(cache);
318277745c05SJosef Bacik 		btrfs_delayed_refs_rsv_release(fs_info, 1);
318377745c05SJosef Bacik 		spin_lock(&cur_trans->dirty_bgs_lock);
318477745c05SJosef Bacik 	}
318577745c05SJosef Bacik 	spin_unlock(&cur_trans->dirty_bgs_lock);
318677745c05SJosef Bacik 
318777745c05SJosef Bacik 	/*
318877745c05SJosef Bacik 	 * Refer to the definition of io_bgs member for details why it's safe
318977745c05SJosef Bacik 	 * to use it without any locking
319077745c05SJosef Bacik 	 */
319177745c05SJosef Bacik 	while (!list_empty(io)) {
319232da5386SDavid Sterba 		cache = list_first_entry(io, struct btrfs_block_group,
319377745c05SJosef Bacik 					 io_list);
319477745c05SJosef Bacik 		list_del_init(&cache->io_list);
319577745c05SJosef Bacik 		btrfs_wait_cache_io(trans, cache, path);
319677745c05SJosef Bacik 		btrfs_put_block_group(cache);
319777745c05SJosef Bacik 	}
319877745c05SJosef Bacik 
319977745c05SJosef Bacik 	btrfs_free_path(path);
320077745c05SJosef Bacik 	return ret;
320177745c05SJosef Bacik }
3202606d1bf1SJosef Bacik 
3203606d1bf1SJosef Bacik int btrfs_update_block_group(struct btrfs_trans_handle *trans,
320411b66fa6SAnand Jain 			     u64 bytenr, u64 num_bytes, bool alloc)
3205606d1bf1SJosef Bacik {
3206606d1bf1SJosef Bacik 	struct btrfs_fs_info *info = trans->fs_info;
320732da5386SDavid Sterba 	struct btrfs_block_group *cache = NULL;
3208606d1bf1SJosef Bacik 	u64 total = num_bytes;
3209606d1bf1SJosef Bacik 	u64 old_val;
3210606d1bf1SJosef Bacik 	u64 byte_in_group;
3211606d1bf1SJosef Bacik 	int factor;
3212606d1bf1SJosef Bacik 	int ret = 0;
3213606d1bf1SJosef Bacik 
3214606d1bf1SJosef Bacik 	/* Block accounting for super block */
3215606d1bf1SJosef Bacik 	spin_lock(&info->delalloc_root_lock);
3216606d1bf1SJosef Bacik 	old_val = btrfs_super_bytes_used(info->super_copy);
3217606d1bf1SJosef Bacik 	if (alloc)
3218606d1bf1SJosef Bacik 		old_val += num_bytes;
3219606d1bf1SJosef Bacik 	else
3220606d1bf1SJosef Bacik 		old_val -= num_bytes;
3221606d1bf1SJosef Bacik 	btrfs_set_super_bytes_used(info->super_copy, old_val);
3222606d1bf1SJosef Bacik 	spin_unlock(&info->delalloc_root_lock);
3223606d1bf1SJosef Bacik 
3224606d1bf1SJosef Bacik 	while (total) {
3225606d1bf1SJosef Bacik 		cache = btrfs_lookup_block_group(info, bytenr);
3226606d1bf1SJosef Bacik 		if (!cache) {
3227606d1bf1SJosef Bacik 			ret = -ENOENT;
3228606d1bf1SJosef Bacik 			break;
3229606d1bf1SJosef Bacik 		}
3230606d1bf1SJosef Bacik 		factor = btrfs_bg_type_to_factor(cache->flags);
3231606d1bf1SJosef Bacik 
3232606d1bf1SJosef Bacik 		/*
3233606d1bf1SJosef Bacik 		 * If this block group has free space cache written out, we
3234606d1bf1SJosef Bacik 		 * need to make sure to load it if we are removing space.  This
3235606d1bf1SJosef Bacik 		 * is because we need the unpinning stage to actually add the
3236606d1bf1SJosef Bacik 		 * space back to the block group, otherwise we will leak space.
3237606d1bf1SJosef Bacik 		 */
323832da5386SDavid Sterba 		if (!alloc && !btrfs_block_group_done(cache))
3239606d1bf1SJosef Bacik 			btrfs_cache_block_group(cache, 1);
3240606d1bf1SJosef Bacik 
3241b3470b5dSDavid Sterba 		byte_in_group = bytenr - cache->start;
3242b3470b5dSDavid Sterba 		WARN_ON(byte_in_group > cache->length);
3243606d1bf1SJosef Bacik 
3244606d1bf1SJosef Bacik 		spin_lock(&cache->space_info->lock);
3245606d1bf1SJosef Bacik 		spin_lock(&cache->lock);
3246606d1bf1SJosef Bacik 
3247606d1bf1SJosef Bacik 		if (btrfs_test_opt(info, SPACE_CACHE) &&
3248606d1bf1SJosef Bacik 		    cache->disk_cache_state < BTRFS_DC_CLEAR)
3249606d1bf1SJosef Bacik 			cache->disk_cache_state = BTRFS_DC_CLEAR;
3250606d1bf1SJosef Bacik 
3251bf38be65SDavid Sterba 		old_val = cache->used;
3252b3470b5dSDavid Sterba 		num_bytes = min(total, cache->length - byte_in_group);
3253606d1bf1SJosef Bacik 		if (alloc) {
3254606d1bf1SJosef Bacik 			old_val += num_bytes;
3255bf38be65SDavid Sterba 			cache->used = old_val;
3256606d1bf1SJosef Bacik 			cache->reserved -= num_bytes;
3257606d1bf1SJosef Bacik 			cache->space_info->bytes_reserved -= num_bytes;
3258606d1bf1SJosef Bacik 			cache->space_info->bytes_used += num_bytes;
3259606d1bf1SJosef Bacik 			cache->space_info->disk_used += num_bytes * factor;
3260606d1bf1SJosef Bacik 			spin_unlock(&cache->lock);
3261606d1bf1SJosef Bacik 			spin_unlock(&cache->space_info->lock);
3262606d1bf1SJosef Bacik 		} else {
3263606d1bf1SJosef Bacik 			old_val -= num_bytes;
3264bf38be65SDavid Sterba 			cache->used = old_val;
3265606d1bf1SJosef Bacik 			cache->pinned += num_bytes;
3266606d1bf1SJosef Bacik 			btrfs_space_info_update_bytes_pinned(info,
3267606d1bf1SJosef Bacik 					cache->space_info, num_bytes);
3268606d1bf1SJosef Bacik 			cache->space_info->bytes_used -= num_bytes;
3269606d1bf1SJosef Bacik 			cache->space_info->disk_used -= num_bytes * factor;
3270606d1bf1SJosef Bacik 			spin_unlock(&cache->lock);
3271606d1bf1SJosef Bacik 			spin_unlock(&cache->space_info->lock);
3272606d1bf1SJosef Bacik 
3273fe119a6eSNikolay Borisov 			set_extent_dirty(&trans->transaction->pinned_extents,
3274606d1bf1SJosef Bacik 					 bytenr, bytenr + num_bytes - 1,
3275606d1bf1SJosef Bacik 					 GFP_NOFS | __GFP_NOFAIL);
3276606d1bf1SJosef Bacik 		}
3277606d1bf1SJosef Bacik 
3278606d1bf1SJosef Bacik 		spin_lock(&trans->transaction->dirty_bgs_lock);
3279606d1bf1SJosef Bacik 		if (list_empty(&cache->dirty_list)) {
3280606d1bf1SJosef Bacik 			list_add_tail(&cache->dirty_list,
3281606d1bf1SJosef Bacik 				      &trans->transaction->dirty_bgs);
3282606d1bf1SJosef Bacik 			trans->delayed_ref_updates++;
3283606d1bf1SJosef Bacik 			btrfs_get_block_group(cache);
3284606d1bf1SJosef Bacik 		}
3285606d1bf1SJosef Bacik 		spin_unlock(&trans->transaction->dirty_bgs_lock);
3286606d1bf1SJosef Bacik 
3287606d1bf1SJosef Bacik 		/*
3288606d1bf1SJosef Bacik 		 * No longer have used bytes in this block group, queue it for
3289606d1bf1SJosef Bacik 		 * deletion. We do this after adding the block group to the
3290606d1bf1SJosef Bacik 		 * dirty list to avoid races between cleaner kthread and space
3291606d1bf1SJosef Bacik 		 * cache writeout.
3292606d1bf1SJosef Bacik 		 */
32936e80d4f8SDennis Zhou 		if (!alloc && old_val == 0) {
32946e80d4f8SDennis Zhou 			if (!btrfs_test_opt(info, DISCARD_ASYNC))
3295606d1bf1SJosef Bacik 				btrfs_mark_bg_unused(cache);
32966e80d4f8SDennis Zhou 		}
3297606d1bf1SJosef Bacik 
3298606d1bf1SJosef Bacik 		btrfs_put_block_group(cache);
3299606d1bf1SJosef Bacik 		total -= num_bytes;
3300606d1bf1SJosef Bacik 		bytenr += num_bytes;
3301606d1bf1SJosef Bacik 	}
3302606d1bf1SJosef Bacik 
3303606d1bf1SJosef Bacik 	/* Modified block groups are accounted for in the delayed_refs_rsv. */
3304606d1bf1SJosef Bacik 	btrfs_update_delayed_refs_rsv(trans);
3305606d1bf1SJosef Bacik 	return ret;
3306606d1bf1SJosef Bacik }
3307606d1bf1SJosef Bacik 
3308606d1bf1SJosef Bacik /**
3309606d1bf1SJosef Bacik  * btrfs_add_reserved_bytes - update the block_group and space info counters
3310606d1bf1SJosef Bacik  * @cache:	The cache we are manipulating
3311606d1bf1SJosef Bacik  * @ram_bytes:  The number of bytes of file content, and will be same to
3312606d1bf1SJosef Bacik  *              @num_bytes except for the compress path.
3313606d1bf1SJosef Bacik  * @num_bytes:	The number of bytes in question
3314606d1bf1SJosef Bacik  * @delalloc:   The blocks are allocated for the delalloc write
3315606d1bf1SJosef Bacik  *
3316606d1bf1SJosef Bacik  * This is called by the allocator when it reserves space. If this is a
3317606d1bf1SJosef Bacik  * reservation and the block group has become read only we cannot make the
3318606d1bf1SJosef Bacik  * reservation and return -EAGAIN, otherwise this function always succeeds.
3319606d1bf1SJosef Bacik  */
332032da5386SDavid Sterba int btrfs_add_reserved_bytes(struct btrfs_block_group *cache,
3321606d1bf1SJosef Bacik 			     u64 ram_bytes, u64 num_bytes, int delalloc)
3322606d1bf1SJosef Bacik {
3323606d1bf1SJosef Bacik 	struct btrfs_space_info *space_info = cache->space_info;
3324606d1bf1SJosef Bacik 	int ret = 0;
3325606d1bf1SJosef Bacik 
3326606d1bf1SJosef Bacik 	spin_lock(&space_info->lock);
3327606d1bf1SJosef Bacik 	spin_lock(&cache->lock);
3328606d1bf1SJosef Bacik 	if (cache->ro) {
3329606d1bf1SJosef Bacik 		ret = -EAGAIN;
3330606d1bf1SJosef Bacik 	} else {
3331606d1bf1SJosef Bacik 		cache->reserved += num_bytes;
3332606d1bf1SJosef Bacik 		space_info->bytes_reserved += num_bytes;
3333a43c3835SJosef Bacik 		trace_btrfs_space_reservation(cache->fs_info, "space_info",
3334a43c3835SJosef Bacik 					      space_info->flags, num_bytes, 1);
3335606d1bf1SJosef Bacik 		btrfs_space_info_update_bytes_may_use(cache->fs_info,
3336606d1bf1SJosef Bacik 						      space_info, -ram_bytes);
3337606d1bf1SJosef Bacik 		if (delalloc)
3338606d1bf1SJosef Bacik 			cache->delalloc_bytes += num_bytes;
333999ffb43eSJosef Bacik 
334099ffb43eSJosef Bacik 		/*
334199ffb43eSJosef Bacik 		 * Compression can use less space than we reserved, so wake
334299ffb43eSJosef Bacik 		 * tickets if that happens
334399ffb43eSJosef Bacik 		 */
334499ffb43eSJosef Bacik 		if (num_bytes < ram_bytes)
334599ffb43eSJosef Bacik 			btrfs_try_granting_tickets(cache->fs_info, space_info);
3346606d1bf1SJosef Bacik 	}
3347606d1bf1SJosef Bacik 	spin_unlock(&cache->lock);
3348606d1bf1SJosef Bacik 	spin_unlock(&space_info->lock);
3349606d1bf1SJosef Bacik 	return ret;
3350606d1bf1SJosef Bacik }
3351606d1bf1SJosef Bacik 
3352606d1bf1SJosef Bacik /**
3353606d1bf1SJosef Bacik  * btrfs_free_reserved_bytes - update the block_group and space info counters
3354606d1bf1SJosef Bacik  * @cache:      The cache we are manipulating
3355606d1bf1SJosef Bacik  * @num_bytes:  The number of bytes in question
3356606d1bf1SJosef Bacik  * @delalloc:   The blocks are allocated for the delalloc write
3357606d1bf1SJosef Bacik  *
3358606d1bf1SJosef Bacik  * This is called by somebody who is freeing space that was never actually used
3359606d1bf1SJosef Bacik  * on disk.  For example if you reserve some space for a new leaf in transaction
3360606d1bf1SJosef Bacik  * A and before transaction A commits you free that leaf, you call this with
3361606d1bf1SJosef Bacik  * reserve set to 0 in order to clear the reservation.
3362606d1bf1SJosef Bacik  */
336332da5386SDavid Sterba void btrfs_free_reserved_bytes(struct btrfs_block_group *cache,
3364606d1bf1SJosef Bacik 			       u64 num_bytes, int delalloc)
3365606d1bf1SJosef Bacik {
3366606d1bf1SJosef Bacik 	struct btrfs_space_info *space_info = cache->space_info;
3367606d1bf1SJosef Bacik 
3368606d1bf1SJosef Bacik 	spin_lock(&space_info->lock);
3369606d1bf1SJosef Bacik 	spin_lock(&cache->lock);
3370606d1bf1SJosef Bacik 	if (cache->ro)
3371606d1bf1SJosef Bacik 		space_info->bytes_readonly += num_bytes;
3372606d1bf1SJosef Bacik 	cache->reserved -= num_bytes;
3373606d1bf1SJosef Bacik 	space_info->bytes_reserved -= num_bytes;
3374606d1bf1SJosef Bacik 	space_info->max_extent_size = 0;
3375606d1bf1SJosef Bacik 
3376606d1bf1SJosef Bacik 	if (delalloc)
3377606d1bf1SJosef Bacik 		cache->delalloc_bytes -= num_bytes;
3378606d1bf1SJosef Bacik 	spin_unlock(&cache->lock);
33793308234aSJosef Bacik 
33803308234aSJosef Bacik 	btrfs_try_granting_tickets(cache->fs_info, space_info);
3381606d1bf1SJosef Bacik 	spin_unlock(&space_info->lock);
3382606d1bf1SJosef Bacik }
338307730d87SJosef Bacik 
338407730d87SJosef Bacik static void force_metadata_allocation(struct btrfs_fs_info *info)
338507730d87SJosef Bacik {
338607730d87SJosef Bacik 	struct list_head *head = &info->space_info;
338707730d87SJosef Bacik 	struct btrfs_space_info *found;
338807730d87SJosef Bacik 
338972804905SJosef Bacik 	list_for_each_entry(found, head, list) {
339007730d87SJosef Bacik 		if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
339107730d87SJosef Bacik 			found->force_alloc = CHUNK_ALLOC_FORCE;
339207730d87SJosef Bacik 	}
339307730d87SJosef Bacik }
339407730d87SJosef Bacik 
339507730d87SJosef Bacik static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
339607730d87SJosef Bacik 			      struct btrfs_space_info *sinfo, int force)
339707730d87SJosef Bacik {
339807730d87SJosef Bacik 	u64 bytes_used = btrfs_space_info_used(sinfo, false);
339907730d87SJosef Bacik 	u64 thresh;
340007730d87SJosef Bacik 
340107730d87SJosef Bacik 	if (force == CHUNK_ALLOC_FORCE)
340207730d87SJosef Bacik 		return 1;
340307730d87SJosef Bacik 
340407730d87SJosef Bacik 	/*
340507730d87SJosef Bacik 	 * in limited mode, we want to have some free space up to
340607730d87SJosef Bacik 	 * about 1% of the FS size.
340707730d87SJosef Bacik 	 */
340807730d87SJosef Bacik 	if (force == CHUNK_ALLOC_LIMITED) {
340907730d87SJosef Bacik 		thresh = btrfs_super_total_bytes(fs_info->super_copy);
341007730d87SJosef Bacik 		thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
341107730d87SJosef Bacik 
341207730d87SJosef Bacik 		if (sinfo->total_bytes - bytes_used < thresh)
341307730d87SJosef Bacik 			return 1;
341407730d87SJosef Bacik 	}
341507730d87SJosef Bacik 
341607730d87SJosef Bacik 	if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
341707730d87SJosef Bacik 		return 0;
341807730d87SJosef Bacik 	return 1;
341907730d87SJosef Bacik }
342007730d87SJosef Bacik 
342107730d87SJosef Bacik int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
342207730d87SJosef Bacik {
342307730d87SJosef Bacik 	u64 alloc_flags = btrfs_get_alloc_profile(trans->fs_info, type);
342407730d87SJosef Bacik 
342507730d87SJosef Bacik 	return btrfs_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
342607730d87SJosef Bacik }
342707730d87SJosef Bacik 
342879bd3712SFilipe Manana static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags)
342979bd3712SFilipe Manana {
343079bd3712SFilipe Manana 	struct btrfs_block_group *bg;
343179bd3712SFilipe Manana 	int ret;
343279bd3712SFilipe Manana 
343307730d87SJosef Bacik 	/*
343479bd3712SFilipe Manana 	 * Check if we have enough space in the system space info because we
343579bd3712SFilipe Manana 	 * will need to update device items in the chunk btree and insert a new
343679bd3712SFilipe Manana 	 * chunk item in the chunk btree as well. This will allocate a new
343779bd3712SFilipe Manana 	 * system block group if needed.
343879bd3712SFilipe Manana 	 */
343979bd3712SFilipe Manana 	check_system_chunk(trans, flags);
344079bd3712SFilipe Manana 
3441f6f39f7aSNikolay Borisov 	bg = btrfs_create_chunk(trans, flags);
344279bd3712SFilipe Manana 	if (IS_ERR(bg)) {
344379bd3712SFilipe Manana 		ret = PTR_ERR(bg);
344479bd3712SFilipe Manana 		goto out;
344579bd3712SFilipe Manana 	}
344679bd3712SFilipe Manana 
344779bd3712SFilipe Manana 	ret = btrfs_chunk_alloc_add_chunk_item(trans, bg);
344879bd3712SFilipe Manana 	/*
344979bd3712SFilipe Manana 	 * Normally we are not expected to fail with -ENOSPC here, since we have
345079bd3712SFilipe Manana 	 * previously reserved space in the system space_info and allocated one
3451ecd84d54SFilipe Manana 	 * new system chunk if necessary. However there are three exceptions:
345279bd3712SFilipe Manana 	 *
345379bd3712SFilipe Manana 	 * 1) We may have enough free space in the system space_info but all the
345479bd3712SFilipe Manana 	 *    existing system block groups have a profile which can not be used
345579bd3712SFilipe Manana 	 *    for extent allocation.
345679bd3712SFilipe Manana 	 *
345779bd3712SFilipe Manana 	 *    This happens when mounting in degraded mode. For example we have a
345879bd3712SFilipe Manana 	 *    RAID1 filesystem with 2 devices, lose one device and mount the fs
345979bd3712SFilipe Manana 	 *    using the other device in degraded mode. If we then allocate a chunk,
346079bd3712SFilipe Manana 	 *    we may have enough free space in the existing system space_info, but
346179bd3712SFilipe Manana 	 *    none of the block groups can be used for extent allocation since they
346279bd3712SFilipe Manana 	 *    have a RAID1 profile, and because we are in degraded mode with a
346379bd3712SFilipe Manana 	 *    single device, we are forced to allocate a new system chunk with a
346479bd3712SFilipe Manana 	 *    SINGLE profile. Making check_system_chunk() iterate over all system
346579bd3712SFilipe Manana 	 *    block groups and check if they have a usable profile and enough space
346679bd3712SFilipe Manana 	 *    can be slow on very large filesystems, so we tolerate the -ENOSPC and
346779bd3712SFilipe Manana 	 *    try again after forcing allocation of a new system chunk. Like this
346879bd3712SFilipe Manana 	 *    we avoid paying the cost of that search in normal circumstances, when
346979bd3712SFilipe Manana 	 *    we were not mounted in degraded mode;
347079bd3712SFilipe Manana 	 *
347179bd3712SFilipe Manana 	 * 2) We had enough free space info the system space_info, and one suitable
347279bd3712SFilipe Manana 	 *    block group to allocate from when we called check_system_chunk()
347379bd3712SFilipe Manana 	 *    above. However right after we called it, the only system block group
347479bd3712SFilipe Manana 	 *    with enough free space got turned into RO mode by a running scrub,
347579bd3712SFilipe Manana 	 *    and in this case we have to allocate a new one and retry. We only
347679bd3712SFilipe Manana 	 *    need do this allocate and retry once, since we have a transaction
3477ecd84d54SFilipe Manana 	 *    handle and scrub uses the commit root to search for block groups;
3478ecd84d54SFilipe Manana 	 *
3479ecd84d54SFilipe Manana 	 * 3) We had one system block group with enough free space when we called
3480ecd84d54SFilipe Manana 	 *    check_system_chunk(), but after that, right before we tried to
3481ecd84d54SFilipe Manana 	 *    allocate the last extent buffer we needed, a discard operation came
3482ecd84d54SFilipe Manana 	 *    in and it temporarily removed the last free space entry from the
3483ecd84d54SFilipe Manana 	 *    block group (discard removes a free space entry, discards it, and
3484ecd84d54SFilipe Manana 	 *    then adds back the entry to the block group cache).
348579bd3712SFilipe Manana 	 */
348679bd3712SFilipe Manana 	if (ret == -ENOSPC) {
348779bd3712SFilipe Manana 		const u64 sys_flags = btrfs_system_alloc_profile(trans->fs_info);
348879bd3712SFilipe Manana 		struct btrfs_block_group *sys_bg;
348979bd3712SFilipe Manana 
3490f6f39f7aSNikolay Borisov 		sys_bg = btrfs_create_chunk(trans, sys_flags);
349179bd3712SFilipe Manana 		if (IS_ERR(sys_bg)) {
349279bd3712SFilipe Manana 			ret = PTR_ERR(sys_bg);
349379bd3712SFilipe Manana 			btrfs_abort_transaction(trans, ret);
349479bd3712SFilipe Manana 			goto out;
349579bd3712SFilipe Manana 		}
349679bd3712SFilipe Manana 
349779bd3712SFilipe Manana 		ret = btrfs_chunk_alloc_add_chunk_item(trans, sys_bg);
349879bd3712SFilipe Manana 		if (ret) {
349979bd3712SFilipe Manana 			btrfs_abort_transaction(trans, ret);
350079bd3712SFilipe Manana 			goto out;
350179bd3712SFilipe Manana 		}
350279bd3712SFilipe Manana 
350379bd3712SFilipe Manana 		ret = btrfs_chunk_alloc_add_chunk_item(trans, bg);
350479bd3712SFilipe Manana 		if (ret) {
350579bd3712SFilipe Manana 			btrfs_abort_transaction(trans, ret);
350679bd3712SFilipe Manana 			goto out;
350779bd3712SFilipe Manana 		}
350879bd3712SFilipe Manana 	} else if (ret) {
350979bd3712SFilipe Manana 		btrfs_abort_transaction(trans, ret);
351079bd3712SFilipe Manana 		goto out;
351179bd3712SFilipe Manana 	}
351279bd3712SFilipe Manana out:
351379bd3712SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
351479bd3712SFilipe Manana 
351579bd3712SFilipe Manana 	return ret;
351679bd3712SFilipe Manana }
351779bd3712SFilipe Manana 
351879bd3712SFilipe Manana /*
351979bd3712SFilipe Manana  * Chunk allocation is done in 2 phases:
352079bd3712SFilipe Manana  *
352179bd3712SFilipe Manana  * 1) Phase 1 - through btrfs_chunk_alloc() we allocate device extents for
352279bd3712SFilipe Manana  *    the chunk, the chunk mapping, create its block group and add the items
352379bd3712SFilipe Manana  *    that belong in the chunk btree to it - more specifically, we need to
352479bd3712SFilipe Manana  *    update device items in the chunk btree and add a new chunk item to it.
352579bd3712SFilipe Manana  *
352679bd3712SFilipe Manana  * 2) Phase 2 - through btrfs_create_pending_block_groups(), we add the block
352779bd3712SFilipe Manana  *    group item to the extent btree and the device extent items to the devices
352879bd3712SFilipe Manana  *    btree.
352979bd3712SFilipe Manana  *
353079bd3712SFilipe Manana  * This is done to prevent deadlocks. For example when COWing a node from the
353179bd3712SFilipe Manana  * extent btree we are holding a write lock on the node's parent and if we
353279bd3712SFilipe Manana  * trigger chunk allocation and attempted to insert the new block group item
353379bd3712SFilipe Manana  * in the extent btree right way, we could deadlock because the path for the
353479bd3712SFilipe Manana  * insertion can include that parent node. At first glance it seems impossible
353579bd3712SFilipe Manana  * to trigger chunk allocation after starting a transaction since tasks should
353679bd3712SFilipe Manana  * reserve enough transaction units (metadata space), however while that is true
353779bd3712SFilipe Manana  * most of the time, chunk allocation may still be triggered for several reasons:
353879bd3712SFilipe Manana  *
353979bd3712SFilipe Manana  * 1) When reserving metadata, we check if there is enough free space in the
354079bd3712SFilipe Manana  *    metadata space_info and therefore don't trigger allocation of a new chunk.
354179bd3712SFilipe Manana  *    However later when the task actually tries to COW an extent buffer from
354279bd3712SFilipe Manana  *    the extent btree or from the device btree for example, it is forced to
354379bd3712SFilipe Manana  *    allocate a new block group (chunk) because the only one that had enough
354479bd3712SFilipe Manana  *    free space was just turned to RO mode by a running scrub for example (or
354579bd3712SFilipe Manana  *    device replace, block group reclaim thread, etc), so we can not use it
354679bd3712SFilipe Manana  *    for allocating an extent and end up being forced to allocate a new one;
354779bd3712SFilipe Manana  *
354879bd3712SFilipe Manana  * 2) Because we only check that the metadata space_info has enough free bytes,
354979bd3712SFilipe Manana  *    we end up not allocating a new metadata chunk in that case. However if
355079bd3712SFilipe Manana  *    the filesystem was mounted in degraded mode, none of the existing block
355179bd3712SFilipe Manana  *    groups might be suitable for extent allocation due to their incompatible
355279bd3712SFilipe Manana  *    profile (for e.g. mounting a 2 devices filesystem, where all block groups
355379bd3712SFilipe Manana  *    use a RAID1 profile, in degraded mode using a single device). In this case
355479bd3712SFilipe Manana  *    when the task attempts to COW some extent buffer of the extent btree for
355579bd3712SFilipe Manana  *    example, it will trigger allocation of a new metadata block group with a
355679bd3712SFilipe Manana  *    suitable profile (SINGLE profile in the example of the degraded mount of
355779bd3712SFilipe Manana  *    the RAID1 filesystem);
355879bd3712SFilipe Manana  *
355979bd3712SFilipe Manana  * 3) The task has reserved enough transaction units / metadata space, but when
356079bd3712SFilipe Manana  *    it attempts to COW an extent buffer from the extent or device btree for
356179bd3712SFilipe Manana  *    example, it does not find any free extent in any metadata block group,
356279bd3712SFilipe Manana  *    therefore forced to try to allocate a new metadata block group.
356379bd3712SFilipe Manana  *    This is because some other task allocated all available extents in the
356479bd3712SFilipe Manana  *    meanwhile - this typically happens with tasks that don't reserve space
356579bd3712SFilipe Manana  *    properly, either intentionally or as a bug. One example where this is
356679bd3712SFilipe Manana  *    done intentionally is fsync, as it does not reserve any transaction units
356779bd3712SFilipe Manana  *    and ends up allocating a variable number of metadata extents for log
3568ecd84d54SFilipe Manana  *    tree extent buffers;
3569ecd84d54SFilipe Manana  *
3570ecd84d54SFilipe Manana  * 4) The task has reserved enough transaction units / metadata space, but right
3571ecd84d54SFilipe Manana  *    before it tries to allocate the last extent buffer it needs, a discard
3572ecd84d54SFilipe Manana  *    operation comes in and, temporarily, removes the last free space entry from
3573ecd84d54SFilipe Manana  *    the only metadata block group that had free space (discard starts by
3574ecd84d54SFilipe Manana  *    removing a free space entry from a block group, then does the discard
3575ecd84d54SFilipe Manana  *    operation and, once it's done, it adds back the free space entry to the
3576ecd84d54SFilipe Manana  *    block group).
357779bd3712SFilipe Manana  *
357879bd3712SFilipe Manana  * We also need this 2 phases setup when adding a device to a filesystem with
357979bd3712SFilipe Manana  * a seed device - we must create new metadata and system chunks without adding
358079bd3712SFilipe Manana  * any of the block group items to the chunk, extent and device btrees. If we
358179bd3712SFilipe Manana  * did not do it this way, we would get ENOSPC when attempting to update those
358279bd3712SFilipe Manana  * btrees, since all the chunks from the seed device are read-only.
358379bd3712SFilipe Manana  *
358479bd3712SFilipe Manana  * Phase 1 does the updates and insertions to the chunk btree because if we had
358579bd3712SFilipe Manana  * it done in phase 2 and have a thundering herd of tasks allocating chunks in
358679bd3712SFilipe Manana  * parallel, we risk having too many system chunks allocated by many tasks if
358779bd3712SFilipe Manana  * many tasks reach phase 1 without the previous ones completing phase 2. In the
358879bd3712SFilipe Manana  * extreme case this leads to exhaustion of the system chunk array in the
358979bd3712SFilipe Manana  * superblock. This is easier to trigger if using a btree node/leaf size of 64K
359079bd3712SFilipe Manana  * and with RAID filesystems (so we have more device items in the chunk btree).
359179bd3712SFilipe Manana  * This has happened before and commit eafa4fd0ad0607 ("btrfs: fix exhaustion of
359279bd3712SFilipe Manana  * the system chunk array due to concurrent allocations") provides more details.
359379bd3712SFilipe Manana  *
35942bb2e00eSFilipe Manana  * Allocation of system chunks does not happen through this function. A task that
35952bb2e00eSFilipe Manana  * needs to update the chunk btree (the only btree that uses system chunks), must
35962bb2e00eSFilipe Manana  * preallocate chunk space by calling either check_system_chunk() or
35972bb2e00eSFilipe Manana  * btrfs_reserve_chunk_metadata() - the former is used when allocating a data or
35982bb2e00eSFilipe Manana  * metadata chunk or when removing a chunk, while the later is used before doing
35992bb2e00eSFilipe Manana  * a modification to the chunk btree - use cases for the later are adding,
36002bb2e00eSFilipe Manana  * removing and resizing a device as well as relocation of a system chunk.
36012bb2e00eSFilipe Manana  * See the comment below for more details.
360279bd3712SFilipe Manana  *
360379bd3712SFilipe Manana  * The reservation of system space, done through check_system_chunk(), as well
360479bd3712SFilipe Manana  * as all the updates and insertions into the chunk btree must be done while
360579bd3712SFilipe Manana  * holding fs_info->chunk_mutex. This is important to guarantee that while COWing
360679bd3712SFilipe Manana  * an extent buffer from the chunks btree we never trigger allocation of a new
360779bd3712SFilipe Manana  * system chunk, which would result in a deadlock (trying to lock twice an
360879bd3712SFilipe Manana  * extent buffer of the chunk btree, first time before triggering the chunk
360979bd3712SFilipe Manana  * allocation and the second time during chunk allocation while attempting to
361079bd3712SFilipe Manana  * update the chunks btree). The system chunk array is also updated while holding
361179bd3712SFilipe Manana  * that mutex. The same logic applies to removing chunks - we must reserve system
361279bd3712SFilipe Manana  * space, update the chunk btree and the system chunk array in the superblock
361379bd3712SFilipe Manana  * while holding fs_info->chunk_mutex.
361479bd3712SFilipe Manana  *
361579bd3712SFilipe Manana  * This function, btrfs_chunk_alloc(), belongs to phase 1.
361679bd3712SFilipe Manana  *
361779bd3712SFilipe Manana  * If @force is CHUNK_ALLOC_FORCE:
361807730d87SJosef Bacik  *    - return 1 if it successfully allocates a chunk,
361907730d87SJosef Bacik  *    - return errors including -ENOSPC otherwise.
362079bd3712SFilipe Manana  * If @force is NOT CHUNK_ALLOC_FORCE:
362107730d87SJosef Bacik  *    - return 0 if it doesn't need to allocate a new chunk,
362207730d87SJosef Bacik  *    - return 1 if it successfully allocates a chunk,
362307730d87SJosef Bacik  *    - return errors including -ENOSPC otherwise.
362407730d87SJosef Bacik  */
362507730d87SJosef Bacik int btrfs_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
362607730d87SJosef Bacik 		      enum btrfs_chunk_alloc_enum force)
362707730d87SJosef Bacik {
362807730d87SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
362907730d87SJosef Bacik 	struct btrfs_space_info *space_info;
363007730d87SJosef Bacik 	bool wait_for_alloc = false;
363107730d87SJosef Bacik 	bool should_alloc = false;
363207730d87SJosef Bacik 	int ret = 0;
363307730d87SJosef Bacik 
363407730d87SJosef Bacik 	/* Don't re-enter if we're already allocating a chunk */
363507730d87SJosef Bacik 	if (trans->allocating_chunk)
363607730d87SJosef Bacik 		return -ENOSPC;
363779bd3712SFilipe Manana 	/*
36382bb2e00eSFilipe Manana 	 * Allocation of system chunks can not happen through this path, as we
36392bb2e00eSFilipe Manana 	 * could end up in a deadlock if we are allocating a data or metadata
36402bb2e00eSFilipe Manana 	 * chunk and there is another task modifying the chunk btree.
36412bb2e00eSFilipe Manana 	 *
36422bb2e00eSFilipe Manana 	 * This is because while we are holding the chunk mutex, we will attempt
36432bb2e00eSFilipe Manana 	 * to add the new chunk item to the chunk btree or update an existing
36442bb2e00eSFilipe Manana 	 * device item in the chunk btree, while the other task that is modifying
36452bb2e00eSFilipe Manana 	 * the chunk btree is attempting to COW an extent buffer while holding a
36462bb2e00eSFilipe Manana 	 * lock on it and on its parent - if the COW operation triggers a system
36472bb2e00eSFilipe Manana 	 * chunk allocation, then we can deadlock because we are holding the
36482bb2e00eSFilipe Manana 	 * chunk mutex and we may need to access that extent buffer or its parent
36492bb2e00eSFilipe Manana 	 * in order to add the chunk item or update a device item.
36502bb2e00eSFilipe Manana 	 *
36512bb2e00eSFilipe Manana 	 * Tasks that want to modify the chunk tree should reserve system space
36522bb2e00eSFilipe Manana 	 * before updating the chunk btree, by calling either
36532bb2e00eSFilipe Manana 	 * btrfs_reserve_chunk_metadata() or check_system_chunk().
36542bb2e00eSFilipe Manana 	 * It's possible that after a task reserves the space, it still ends up
36552bb2e00eSFilipe Manana 	 * here - this happens in the cases described above at do_chunk_alloc().
36562bb2e00eSFilipe Manana 	 * The task will have to either retry or fail.
365779bd3712SFilipe Manana 	 */
36582bb2e00eSFilipe Manana 	if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
365979bd3712SFilipe Manana 		return -ENOSPC;
366007730d87SJosef Bacik 
366107730d87SJosef Bacik 	space_info = btrfs_find_space_info(fs_info, flags);
366207730d87SJosef Bacik 	ASSERT(space_info);
366307730d87SJosef Bacik 
366407730d87SJosef Bacik 	do {
366507730d87SJosef Bacik 		spin_lock(&space_info->lock);
366607730d87SJosef Bacik 		if (force < space_info->force_alloc)
366707730d87SJosef Bacik 			force = space_info->force_alloc;
366807730d87SJosef Bacik 		should_alloc = should_alloc_chunk(fs_info, space_info, force);
366907730d87SJosef Bacik 		if (space_info->full) {
367007730d87SJosef Bacik 			/* No more free physical space */
367107730d87SJosef Bacik 			if (should_alloc)
367207730d87SJosef Bacik 				ret = -ENOSPC;
367307730d87SJosef Bacik 			else
367407730d87SJosef Bacik 				ret = 0;
367507730d87SJosef Bacik 			spin_unlock(&space_info->lock);
367607730d87SJosef Bacik 			return ret;
367707730d87SJosef Bacik 		} else if (!should_alloc) {
367807730d87SJosef Bacik 			spin_unlock(&space_info->lock);
367907730d87SJosef Bacik 			return 0;
368007730d87SJosef Bacik 		} else if (space_info->chunk_alloc) {
368107730d87SJosef Bacik 			/*
368207730d87SJosef Bacik 			 * Someone is already allocating, so we need to block
368307730d87SJosef Bacik 			 * until this someone is finished and then loop to
368407730d87SJosef Bacik 			 * recheck if we should continue with our allocation
368507730d87SJosef Bacik 			 * attempt.
368607730d87SJosef Bacik 			 */
368707730d87SJosef Bacik 			wait_for_alloc = true;
368807730d87SJosef Bacik 			spin_unlock(&space_info->lock);
368907730d87SJosef Bacik 			mutex_lock(&fs_info->chunk_mutex);
369007730d87SJosef Bacik 			mutex_unlock(&fs_info->chunk_mutex);
369107730d87SJosef Bacik 		} else {
369207730d87SJosef Bacik 			/* Proceed with allocation */
369307730d87SJosef Bacik 			space_info->chunk_alloc = 1;
369407730d87SJosef Bacik 			wait_for_alloc = false;
369507730d87SJosef Bacik 			spin_unlock(&space_info->lock);
369607730d87SJosef Bacik 		}
369707730d87SJosef Bacik 
369807730d87SJosef Bacik 		cond_resched();
369907730d87SJosef Bacik 	} while (wait_for_alloc);
370007730d87SJosef Bacik 
370107730d87SJosef Bacik 	mutex_lock(&fs_info->chunk_mutex);
370207730d87SJosef Bacik 	trans->allocating_chunk = true;
370307730d87SJosef Bacik 
370407730d87SJosef Bacik 	/*
370507730d87SJosef Bacik 	 * If we have mixed data/metadata chunks we want to make sure we keep
370607730d87SJosef Bacik 	 * allocating mixed chunks instead of individual chunks.
370707730d87SJosef Bacik 	 */
370807730d87SJosef Bacik 	if (btrfs_mixed_space_info(space_info))
370907730d87SJosef Bacik 		flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
371007730d87SJosef Bacik 
371107730d87SJosef Bacik 	/*
371207730d87SJosef Bacik 	 * if we're doing a data chunk, go ahead and make sure that
371307730d87SJosef Bacik 	 * we keep a reasonable number of metadata chunks allocated in the
371407730d87SJosef Bacik 	 * FS as well.
371507730d87SJosef Bacik 	 */
371607730d87SJosef Bacik 	if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
371707730d87SJosef Bacik 		fs_info->data_chunk_allocations++;
371807730d87SJosef Bacik 		if (!(fs_info->data_chunk_allocations %
371907730d87SJosef Bacik 		      fs_info->metadata_ratio))
372007730d87SJosef Bacik 			force_metadata_allocation(fs_info);
372107730d87SJosef Bacik 	}
372207730d87SJosef Bacik 
372379bd3712SFilipe Manana 	ret = do_chunk_alloc(trans, flags);
372407730d87SJosef Bacik 	trans->allocating_chunk = false;
372507730d87SJosef Bacik 
372607730d87SJosef Bacik 	spin_lock(&space_info->lock);
372707730d87SJosef Bacik 	if (ret < 0) {
372807730d87SJosef Bacik 		if (ret == -ENOSPC)
372907730d87SJosef Bacik 			space_info->full = 1;
373007730d87SJosef Bacik 		else
373107730d87SJosef Bacik 			goto out;
373207730d87SJosef Bacik 	} else {
373307730d87SJosef Bacik 		ret = 1;
373407730d87SJosef Bacik 		space_info->max_extent_size = 0;
373507730d87SJosef Bacik 	}
373607730d87SJosef Bacik 
373707730d87SJosef Bacik 	space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
373807730d87SJosef Bacik out:
373907730d87SJosef Bacik 	space_info->chunk_alloc = 0;
374007730d87SJosef Bacik 	spin_unlock(&space_info->lock);
374107730d87SJosef Bacik 	mutex_unlock(&fs_info->chunk_mutex);
374207730d87SJosef Bacik 
374307730d87SJosef Bacik 	return ret;
374407730d87SJosef Bacik }
374507730d87SJosef Bacik 
374607730d87SJosef Bacik static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
374707730d87SJosef Bacik {
374807730d87SJosef Bacik 	u64 num_dev;
374907730d87SJosef Bacik 
375007730d87SJosef Bacik 	num_dev = btrfs_raid_array[btrfs_bg_flags_to_raid_index(type)].devs_max;
375107730d87SJosef Bacik 	if (!num_dev)
375207730d87SJosef Bacik 		num_dev = fs_info->fs_devices->rw_devices;
375307730d87SJosef Bacik 
375407730d87SJosef Bacik 	return num_dev;
375507730d87SJosef Bacik }
375607730d87SJosef Bacik 
37572bb2e00eSFilipe Manana static void reserve_chunk_space(struct btrfs_trans_handle *trans,
37582bb2e00eSFilipe Manana 				u64 bytes,
37592bb2e00eSFilipe Manana 				u64 type)
376007730d87SJosef Bacik {
376107730d87SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
376207730d87SJosef Bacik 	struct btrfs_space_info *info;
376307730d87SJosef Bacik 	u64 left;
376407730d87SJosef Bacik 	int ret = 0;
376507730d87SJosef Bacik 
376607730d87SJosef Bacik 	/*
376707730d87SJosef Bacik 	 * Needed because we can end up allocating a system chunk and for an
376807730d87SJosef Bacik 	 * atomic and race free space reservation in the chunk block reserve.
376907730d87SJosef Bacik 	 */
377007730d87SJosef Bacik 	lockdep_assert_held(&fs_info->chunk_mutex);
377107730d87SJosef Bacik 
377207730d87SJosef Bacik 	info = btrfs_find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
377307730d87SJosef Bacik 	spin_lock(&info->lock);
377407730d87SJosef Bacik 	left = info->total_bytes - btrfs_space_info_used(info, true);
377507730d87SJosef Bacik 	spin_unlock(&info->lock);
377607730d87SJosef Bacik 
37772bb2e00eSFilipe Manana 	if (left < bytes && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
377807730d87SJosef Bacik 		btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
37792bb2e00eSFilipe Manana 			   left, bytes, type);
378007730d87SJosef Bacik 		btrfs_dump_space_info(fs_info, info, 0, 0);
378107730d87SJosef Bacik 	}
378207730d87SJosef Bacik 
37832bb2e00eSFilipe Manana 	if (left < bytes) {
378407730d87SJosef Bacik 		u64 flags = btrfs_system_alloc_profile(fs_info);
378579bd3712SFilipe Manana 		struct btrfs_block_group *bg;
378607730d87SJosef Bacik 
378707730d87SJosef Bacik 		/*
378807730d87SJosef Bacik 		 * Ignore failure to create system chunk. We might end up not
378907730d87SJosef Bacik 		 * needing it, as we might not need to COW all nodes/leafs from
379007730d87SJosef Bacik 		 * the paths we visit in the chunk tree (they were already COWed
379107730d87SJosef Bacik 		 * or created in the current transaction for example).
379207730d87SJosef Bacik 		 */
3793f6f39f7aSNikolay Borisov 		bg = btrfs_create_chunk(trans, flags);
379479bd3712SFilipe Manana 		if (IS_ERR(bg)) {
379579bd3712SFilipe Manana 			ret = PTR_ERR(bg);
37962bb2e00eSFilipe Manana 		} else {
379779bd3712SFilipe Manana 			/*
379879bd3712SFilipe Manana 			 * If we fail to add the chunk item here, we end up
379979bd3712SFilipe Manana 			 * trying again at phase 2 of chunk allocation, at
380079bd3712SFilipe Manana 			 * btrfs_create_pending_block_groups(). So ignore
38012bb2e00eSFilipe Manana 			 * any error here. An ENOSPC here could happen, due to
38022bb2e00eSFilipe Manana 			 * the cases described at do_chunk_alloc() - the system
38032bb2e00eSFilipe Manana 			 * block group we just created was just turned into RO
38042bb2e00eSFilipe Manana 			 * mode by a scrub for example, or a running discard
38052bb2e00eSFilipe Manana 			 * temporarily removed its free space entries, etc.
380679bd3712SFilipe Manana 			 */
380779bd3712SFilipe Manana 			btrfs_chunk_alloc_add_chunk_item(trans, bg);
380879bd3712SFilipe Manana 		}
380907730d87SJosef Bacik 	}
381007730d87SJosef Bacik 
381107730d87SJosef Bacik 	if (!ret) {
38129270501cSJosef Bacik 		ret = btrfs_block_rsv_add(fs_info,
381307730d87SJosef Bacik 					  &fs_info->chunk_block_rsv,
38142bb2e00eSFilipe Manana 					  bytes, BTRFS_RESERVE_NO_FLUSH);
38151cb3db1cSFilipe Manana 		if (!ret)
38162bb2e00eSFilipe Manana 			trans->chunk_bytes_reserved += bytes;
381707730d87SJosef Bacik 	}
381807730d87SJosef Bacik }
381907730d87SJosef Bacik 
38202bb2e00eSFilipe Manana /*
38212bb2e00eSFilipe Manana  * Reserve space in the system space for allocating or removing a chunk.
38222bb2e00eSFilipe Manana  * The caller must be holding fs_info->chunk_mutex.
38232bb2e00eSFilipe Manana  */
38242bb2e00eSFilipe Manana void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
38252bb2e00eSFilipe Manana {
38262bb2e00eSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
38272bb2e00eSFilipe Manana 	const u64 num_devs = get_profile_num_devs(fs_info, type);
38282bb2e00eSFilipe Manana 	u64 bytes;
38292bb2e00eSFilipe Manana 
38302bb2e00eSFilipe Manana 	/* num_devs device items to update and 1 chunk item to add or remove. */
38312bb2e00eSFilipe Manana 	bytes = btrfs_calc_metadata_size(fs_info, num_devs) +
38322bb2e00eSFilipe Manana 		btrfs_calc_insert_metadata_size(fs_info, 1);
38332bb2e00eSFilipe Manana 
38342bb2e00eSFilipe Manana 	reserve_chunk_space(trans, bytes, type);
38352bb2e00eSFilipe Manana }
38362bb2e00eSFilipe Manana 
38372bb2e00eSFilipe Manana /*
38382bb2e00eSFilipe Manana  * Reserve space in the system space, if needed, for doing a modification to the
38392bb2e00eSFilipe Manana  * chunk btree.
38402bb2e00eSFilipe Manana  *
38412bb2e00eSFilipe Manana  * @trans:		A transaction handle.
38422bb2e00eSFilipe Manana  * @is_item_insertion:	Indicate if the modification is for inserting a new item
38432bb2e00eSFilipe Manana  *			in the chunk btree or if it's for the deletion or update
38442bb2e00eSFilipe Manana  *			of an existing item.
38452bb2e00eSFilipe Manana  *
38462bb2e00eSFilipe Manana  * This is used in a context where we need to update the chunk btree outside
38472bb2e00eSFilipe Manana  * block group allocation and removal, to avoid a deadlock with a concurrent
38482bb2e00eSFilipe Manana  * task that is allocating a metadata or data block group and therefore needs to
38492bb2e00eSFilipe Manana  * update the chunk btree while holding the chunk mutex. After the update to the
38502bb2e00eSFilipe Manana  * chunk btree is done, btrfs_trans_release_chunk_metadata() should be called.
38512bb2e00eSFilipe Manana  *
38522bb2e00eSFilipe Manana  */
38532bb2e00eSFilipe Manana void btrfs_reserve_chunk_metadata(struct btrfs_trans_handle *trans,
38542bb2e00eSFilipe Manana 				  bool is_item_insertion)
38552bb2e00eSFilipe Manana {
38562bb2e00eSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
38572bb2e00eSFilipe Manana 	u64 bytes;
38582bb2e00eSFilipe Manana 
38592bb2e00eSFilipe Manana 	if (is_item_insertion)
38602bb2e00eSFilipe Manana 		bytes = btrfs_calc_insert_metadata_size(fs_info, 1);
38612bb2e00eSFilipe Manana 	else
38622bb2e00eSFilipe Manana 		bytes = btrfs_calc_metadata_size(fs_info, 1);
38632bb2e00eSFilipe Manana 
38642bb2e00eSFilipe Manana 	mutex_lock(&fs_info->chunk_mutex);
38652bb2e00eSFilipe Manana 	reserve_chunk_space(trans, bytes, BTRFS_BLOCK_GROUP_SYSTEM);
38662bb2e00eSFilipe Manana 	mutex_unlock(&fs_info->chunk_mutex);
38672bb2e00eSFilipe Manana }
38682bb2e00eSFilipe Manana 
38693e43c279SJosef Bacik void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
38703e43c279SJosef Bacik {
387132da5386SDavid Sterba 	struct btrfs_block_group *block_group;
38723e43c279SJosef Bacik 	u64 last = 0;
38733e43c279SJosef Bacik 
38743e43c279SJosef Bacik 	while (1) {
38753e43c279SJosef Bacik 		struct inode *inode;
38763e43c279SJosef Bacik 
38773e43c279SJosef Bacik 		block_group = btrfs_lookup_first_block_group(info, last);
38783e43c279SJosef Bacik 		while (block_group) {
38793e43c279SJosef Bacik 			btrfs_wait_block_group_cache_done(block_group);
38803e43c279SJosef Bacik 			spin_lock(&block_group->lock);
38813e43c279SJosef Bacik 			if (block_group->iref)
38823e43c279SJosef Bacik 				break;
38833e43c279SJosef Bacik 			spin_unlock(&block_group->lock);
38843e43c279SJosef Bacik 			block_group = btrfs_next_block_group(block_group);
38853e43c279SJosef Bacik 		}
38863e43c279SJosef Bacik 		if (!block_group) {
38873e43c279SJosef Bacik 			if (last == 0)
38883e43c279SJosef Bacik 				break;
38893e43c279SJosef Bacik 			last = 0;
38903e43c279SJosef Bacik 			continue;
38913e43c279SJosef Bacik 		}
38923e43c279SJosef Bacik 
38933e43c279SJosef Bacik 		inode = block_group->inode;
38943e43c279SJosef Bacik 		block_group->iref = 0;
38953e43c279SJosef Bacik 		block_group->inode = NULL;
38963e43c279SJosef Bacik 		spin_unlock(&block_group->lock);
38973e43c279SJosef Bacik 		ASSERT(block_group->io_ctl.inode == NULL);
38983e43c279SJosef Bacik 		iput(inode);
3899b3470b5dSDavid Sterba 		last = block_group->start + block_group->length;
39003e43c279SJosef Bacik 		btrfs_put_block_group(block_group);
39013e43c279SJosef Bacik 	}
39023e43c279SJosef Bacik }
39033e43c279SJosef Bacik 
39043e43c279SJosef Bacik /*
39053e43c279SJosef Bacik  * Must be called only after stopping all workers, since we could have block
39063e43c279SJosef Bacik  * group caching kthreads running, and therefore they could race with us if we
39073e43c279SJosef Bacik  * freed the block groups before stopping them.
39083e43c279SJosef Bacik  */
39093e43c279SJosef Bacik int btrfs_free_block_groups(struct btrfs_fs_info *info)
39103e43c279SJosef Bacik {
391132da5386SDavid Sterba 	struct btrfs_block_group *block_group;
39123e43c279SJosef Bacik 	struct btrfs_space_info *space_info;
39133e43c279SJosef Bacik 	struct btrfs_caching_control *caching_ctl;
39143e43c279SJosef Bacik 	struct rb_node *n;
39153e43c279SJosef Bacik 
3916bbb86a37SJosef Bacik 	spin_lock(&info->block_group_cache_lock);
39173e43c279SJosef Bacik 	while (!list_empty(&info->caching_block_groups)) {
39183e43c279SJosef Bacik 		caching_ctl = list_entry(info->caching_block_groups.next,
39193e43c279SJosef Bacik 					 struct btrfs_caching_control, list);
39203e43c279SJosef Bacik 		list_del(&caching_ctl->list);
39213e43c279SJosef Bacik 		btrfs_put_caching_control(caching_ctl);
39223e43c279SJosef Bacik 	}
3923bbb86a37SJosef Bacik 	spin_unlock(&info->block_group_cache_lock);
39243e43c279SJosef Bacik 
39253e43c279SJosef Bacik 	spin_lock(&info->unused_bgs_lock);
39263e43c279SJosef Bacik 	while (!list_empty(&info->unused_bgs)) {
39273e43c279SJosef Bacik 		block_group = list_first_entry(&info->unused_bgs,
392832da5386SDavid Sterba 					       struct btrfs_block_group,
39293e43c279SJosef Bacik 					       bg_list);
39303e43c279SJosef Bacik 		list_del_init(&block_group->bg_list);
39313e43c279SJosef Bacik 		btrfs_put_block_group(block_group);
39323e43c279SJosef Bacik 	}
39333e43c279SJosef Bacik 
393418bb8bbfSJohannes Thumshirn 	while (!list_empty(&info->reclaim_bgs)) {
393518bb8bbfSJohannes Thumshirn 		block_group = list_first_entry(&info->reclaim_bgs,
393618bb8bbfSJohannes Thumshirn 					       struct btrfs_block_group,
393718bb8bbfSJohannes Thumshirn 					       bg_list);
393818bb8bbfSJohannes Thumshirn 		list_del_init(&block_group->bg_list);
393918bb8bbfSJohannes Thumshirn 		btrfs_put_block_group(block_group);
394018bb8bbfSJohannes Thumshirn 	}
394118bb8bbfSJohannes Thumshirn 	spin_unlock(&info->unused_bgs_lock);
394218bb8bbfSJohannes Thumshirn 
3943afba2bc0SNaohiro Aota 	spin_lock(&info->zone_active_bgs_lock);
3944afba2bc0SNaohiro Aota 	while (!list_empty(&info->zone_active_bgs)) {
3945afba2bc0SNaohiro Aota 		block_group = list_first_entry(&info->zone_active_bgs,
3946afba2bc0SNaohiro Aota 					       struct btrfs_block_group,
3947afba2bc0SNaohiro Aota 					       active_bg_list);
3948afba2bc0SNaohiro Aota 		list_del_init(&block_group->active_bg_list);
3949afba2bc0SNaohiro Aota 		btrfs_put_block_group(block_group);
3950afba2bc0SNaohiro Aota 	}
3951afba2bc0SNaohiro Aota 	spin_unlock(&info->zone_active_bgs_lock);
3952afba2bc0SNaohiro Aota 
39533e43c279SJosef Bacik 	spin_lock(&info->block_group_cache_lock);
39543e43c279SJosef Bacik 	while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
395532da5386SDavid Sterba 		block_group = rb_entry(n, struct btrfs_block_group,
39563e43c279SJosef Bacik 				       cache_node);
39573e43c279SJosef Bacik 		rb_erase(&block_group->cache_node,
39583e43c279SJosef Bacik 			 &info->block_group_cache_tree);
39593e43c279SJosef Bacik 		RB_CLEAR_NODE(&block_group->cache_node);
39603e43c279SJosef Bacik 		spin_unlock(&info->block_group_cache_lock);
39613e43c279SJosef Bacik 
39623e43c279SJosef Bacik 		down_write(&block_group->space_info->groups_sem);
39633e43c279SJosef Bacik 		list_del(&block_group->list);
39643e43c279SJosef Bacik 		up_write(&block_group->space_info->groups_sem);
39653e43c279SJosef Bacik 
39663e43c279SJosef Bacik 		/*
39673e43c279SJosef Bacik 		 * We haven't cached this block group, which means we could
39683e43c279SJosef Bacik 		 * possibly have excluded extents on this block group.
39693e43c279SJosef Bacik 		 */
39703e43c279SJosef Bacik 		if (block_group->cached == BTRFS_CACHE_NO ||
39713e43c279SJosef Bacik 		    block_group->cached == BTRFS_CACHE_ERROR)
39723e43c279SJosef Bacik 			btrfs_free_excluded_extents(block_group);
39733e43c279SJosef Bacik 
39743e43c279SJosef Bacik 		btrfs_remove_free_space_cache(block_group);
39753e43c279SJosef Bacik 		ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
39763e43c279SJosef Bacik 		ASSERT(list_empty(&block_group->dirty_list));
39773e43c279SJosef Bacik 		ASSERT(list_empty(&block_group->io_list));
39783e43c279SJosef Bacik 		ASSERT(list_empty(&block_group->bg_list));
397948aaeebeSJosef Bacik 		ASSERT(refcount_read(&block_group->refs) == 1);
3980195a49eaSFilipe Manana 		ASSERT(block_group->swap_extents == 0);
39813e43c279SJosef Bacik 		btrfs_put_block_group(block_group);
39823e43c279SJosef Bacik 
39833e43c279SJosef Bacik 		spin_lock(&info->block_group_cache_lock);
39843e43c279SJosef Bacik 	}
39853e43c279SJosef Bacik 	spin_unlock(&info->block_group_cache_lock);
39863e43c279SJosef Bacik 
39873e43c279SJosef Bacik 	btrfs_release_global_block_rsv(info);
39883e43c279SJosef Bacik 
39893e43c279SJosef Bacik 	while (!list_empty(&info->space_info)) {
39903e43c279SJosef Bacik 		space_info = list_entry(info->space_info.next,
39913e43c279SJosef Bacik 					struct btrfs_space_info,
39923e43c279SJosef Bacik 					list);
39933e43c279SJosef Bacik 
39943e43c279SJosef Bacik 		/*
39953e43c279SJosef Bacik 		 * Do not hide this behind enospc_debug, this is actually
39963e43c279SJosef Bacik 		 * important and indicates a real bug if this happens.
39973e43c279SJosef Bacik 		 */
39983e43c279SJosef Bacik 		if (WARN_ON(space_info->bytes_pinned > 0 ||
39993e43c279SJosef Bacik 			    space_info->bytes_may_use > 0))
40003e43c279SJosef Bacik 			btrfs_dump_space_info(info, space_info, 0, 0);
4001*40cdc509SFilipe Manana 
4002*40cdc509SFilipe Manana 		/*
4003*40cdc509SFilipe Manana 		 * If there was a failure to cleanup a log tree, very likely due
4004*40cdc509SFilipe Manana 		 * to an IO failure on a writeback attempt of one or more of its
4005*40cdc509SFilipe Manana 		 * extent buffers, we could not do proper (and cheap) unaccounting
4006*40cdc509SFilipe Manana 		 * of their reserved space, so don't warn on bytes_reserved > 0 in
4007*40cdc509SFilipe Manana 		 * that case.
4008*40cdc509SFilipe Manana 		 */
4009*40cdc509SFilipe Manana 		if (!(space_info->flags & BTRFS_BLOCK_GROUP_METADATA) ||
4010*40cdc509SFilipe Manana 		    !BTRFS_FS_LOG_CLEANUP_ERROR(info)) {
4011*40cdc509SFilipe Manana 			if (WARN_ON(space_info->bytes_reserved > 0))
4012*40cdc509SFilipe Manana 				btrfs_dump_space_info(info, space_info, 0, 0);
4013*40cdc509SFilipe Manana 		}
4014*40cdc509SFilipe Manana 
4015d611add4SFilipe Manana 		WARN_ON(space_info->reclaim_size > 0);
40163e43c279SJosef Bacik 		list_del(&space_info->list);
40173e43c279SJosef Bacik 		btrfs_sysfs_remove_space_info(space_info);
40183e43c279SJosef Bacik 	}
40193e43c279SJosef Bacik 	return 0;
40203e43c279SJosef Bacik }
4021684b752bSFilipe Manana 
4022684b752bSFilipe Manana void btrfs_freeze_block_group(struct btrfs_block_group *cache)
4023684b752bSFilipe Manana {
4024684b752bSFilipe Manana 	atomic_inc(&cache->frozen);
4025684b752bSFilipe Manana }
4026684b752bSFilipe Manana 
4027684b752bSFilipe Manana void btrfs_unfreeze_block_group(struct btrfs_block_group *block_group)
4028684b752bSFilipe Manana {
4029684b752bSFilipe Manana 	struct btrfs_fs_info *fs_info = block_group->fs_info;
4030684b752bSFilipe Manana 	struct extent_map_tree *em_tree;
4031684b752bSFilipe Manana 	struct extent_map *em;
4032684b752bSFilipe Manana 	bool cleanup;
4033684b752bSFilipe Manana 
4034684b752bSFilipe Manana 	spin_lock(&block_group->lock);
4035684b752bSFilipe Manana 	cleanup = (atomic_dec_and_test(&block_group->frozen) &&
4036684b752bSFilipe Manana 		   block_group->removed);
4037684b752bSFilipe Manana 	spin_unlock(&block_group->lock);
4038684b752bSFilipe Manana 
4039684b752bSFilipe Manana 	if (cleanup) {
4040684b752bSFilipe Manana 		em_tree = &fs_info->mapping_tree;
4041684b752bSFilipe Manana 		write_lock(&em_tree->lock);
4042684b752bSFilipe Manana 		em = lookup_extent_mapping(em_tree, block_group->start,
4043684b752bSFilipe Manana 					   1);
4044684b752bSFilipe Manana 		BUG_ON(!em); /* logic error, can't happen */
4045684b752bSFilipe Manana 		remove_extent_mapping(em_tree, em);
4046684b752bSFilipe Manana 		write_unlock(&em_tree->lock);
4047684b752bSFilipe Manana 
4048684b752bSFilipe Manana 		/* once for us and once for the tree */
4049684b752bSFilipe Manana 		free_extent_map(em);
4050684b752bSFilipe Manana 		free_extent_map(em);
4051684b752bSFilipe Manana 
4052684b752bSFilipe Manana 		/*
4053684b752bSFilipe Manana 		 * We may have left one free space entry and other possible
4054684b752bSFilipe Manana 		 * tasks trimming this block group have left 1 entry each one.
4055684b752bSFilipe Manana 		 * Free them if any.
4056684b752bSFilipe Manana 		 */
4057684b752bSFilipe Manana 		__btrfs_remove_free_space_cache(block_group->free_space_ctl);
4058684b752bSFilipe Manana 	}
4059684b752bSFilipe Manana }
4060195a49eaSFilipe Manana 
4061195a49eaSFilipe Manana bool btrfs_inc_block_group_swap_extents(struct btrfs_block_group *bg)
4062195a49eaSFilipe Manana {
4063195a49eaSFilipe Manana 	bool ret = true;
4064195a49eaSFilipe Manana 
4065195a49eaSFilipe Manana 	spin_lock(&bg->lock);
4066195a49eaSFilipe Manana 	if (bg->ro)
4067195a49eaSFilipe Manana 		ret = false;
4068195a49eaSFilipe Manana 	else
4069195a49eaSFilipe Manana 		bg->swap_extents++;
4070195a49eaSFilipe Manana 	spin_unlock(&bg->lock);
4071195a49eaSFilipe Manana 
4072195a49eaSFilipe Manana 	return ret;
4073195a49eaSFilipe Manana }
4074195a49eaSFilipe Manana 
4075195a49eaSFilipe Manana void btrfs_dec_block_group_swap_extents(struct btrfs_block_group *bg, int amount)
4076195a49eaSFilipe Manana {
4077195a49eaSFilipe Manana 	spin_lock(&bg->lock);
4078195a49eaSFilipe Manana 	ASSERT(!bg->ro);
4079195a49eaSFilipe Manana 	ASSERT(bg->swap_extents >= amount);
4080195a49eaSFilipe Manana 	bg->swap_extents -= amount;
4081195a49eaSFilipe Manana 	spin_unlock(&bg->lock);
4082195a49eaSFilipe Manana }
4083