xref: /openbmc/linux/fs/btrfs/relocation.c (revision 84c50ba5)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
25d4f98a2SYan Zheng /*
35d4f98a2SYan Zheng  * Copyright (C) 2009 Oracle.  All rights reserved.
45d4f98a2SYan Zheng  */
55d4f98a2SYan Zheng 
65d4f98a2SYan Zheng #include <linux/sched.h>
75d4f98a2SYan Zheng #include <linux/pagemap.h>
85d4f98a2SYan Zheng #include <linux/writeback.h>
95d4f98a2SYan Zheng #include <linux/blkdev.h>
105d4f98a2SYan Zheng #include <linux/rbtree.h>
115a0e3ad6STejun Heo #include <linux/slab.h>
12726a3421SQu Wenruo #include <linux/error-injection.h>
135d4f98a2SYan Zheng #include "ctree.h"
145d4f98a2SYan Zheng #include "disk-io.h"
155d4f98a2SYan Zheng #include "transaction.h"
165d4f98a2SYan Zheng #include "volumes.h"
175d4f98a2SYan Zheng #include "locking.h"
185d4f98a2SYan Zheng #include "btrfs_inode.h"
195d4f98a2SYan Zheng #include "async-thread.h"
200af3d00bSJosef Bacik #include "free-space-cache.h"
2162b99540SQu Wenruo #include "qgroup.h"
22cdccee99SLiu Bo #include "print-tree.h"
2386736342SJosef Bacik #include "delalloc-space.h"
24aac0023cSJosef Bacik #include "block-group.h"
2519b546d7SQu Wenruo #include "backref.h"
26e9a28dc5SQu Wenruo #include "misc.h"
275d4f98a2SYan Zheng 
285d4f98a2SYan Zheng /*
290c891389SQu Wenruo  * Relocation overview
300c891389SQu Wenruo  *
310c891389SQu Wenruo  * [What does relocation do]
320c891389SQu Wenruo  *
330c891389SQu Wenruo  * The objective of relocation is to relocate all extents of the target block
340c891389SQu Wenruo  * group to other block groups.
350c891389SQu Wenruo  * This is utilized by resize (shrink only), profile converting, compacting
360c891389SQu Wenruo  * space, or balance routine to spread chunks over devices.
370c891389SQu Wenruo  *
380c891389SQu Wenruo  * 		Before		|		After
390c891389SQu Wenruo  * ------------------------------------------------------------------
400c891389SQu Wenruo  *  BG A: 10 data extents	| BG A: deleted
410c891389SQu Wenruo  *  BG B:  2 data extents	| BG B: 10 data extents (2 old + 8 relocated)
420c891389SQu Wenruo  *  BG C:  1 extents		| BG C:  3 data extents (1 old + 2 relocated)
430c891389SQu Wenruo  *
440c891389SQu Wenruo  * [How does relocation work]
450c891389SQu Wenruo  *
460c891389SQu Wenruo  * 1.   Mark the target block group read-only
470c891389SQu Wenruo  *      New extents won't be allocated from the target block group.
480c891389SQu Wenruo  *
490c891389SQu Wenruo  * 2.1  Record each extent in the target block group
500c891389SQu Wenruo  *      To build a proper map of extents to be relocated.
510c891389SQu Wenruo  *
520c891389SQu Wenruo  * 2.2  Build data reloc tree and reloc trees
530c891389SQu Wenruo  *      Data reloc tree will contain an inode, recording all newly relocated
540c891389SQu Wenruo  *      data extents.
550c891389SQu Wenruo  *      There will be only one data reloc tree for one data block group.
560c891389SQu Wenruo  *
570c891389SQu Wenruo  *      Reloc tree will be a special snapshot of its source tree, containing
580c891389SQu Wenruo  *      relocated tree blocks.
590c891389SQu Wenruo  *      Each tree referring to a tree block in target block group will get its
600c891389SQu Wenruo  *      reloc tree built.
610c891389SQu Wenruo  *
620c891389SQu Wenruo  * 2.3  Swap source tree with its corresponding reloc tree
630c891389SQu Wenruo  *      Each involved tree only refers to new extents after swap.
640c891389SQu Wenruo  *
650c891389SQu Wenruo  * 3.   Cleanup reloc trees and data reloc tree.
660c891389SQu Wenruo  *      As old extents in the target block group are still referenced by reloc
670c891389SQu Wenruo  *      trees, we need to clean them up before really freeing the target block
680c891389SQu Wenruo  *      group.
690c891389SQu Wenruo  *
700c891389SQu Wenruo  * The main complexity is in steps 2.2 and 2.3.
710c891389SQu Wenruo  *
720c891389SQu Wenruo  * The entry point of relocation is relocate_block_group() function.
730c891389SQu Wenruo  */
740c891389SQu Wenruo 
750647bf56SWang Shilong #define RELOCATION_RESERVED_NODES	256
762a979612SQu Wenruo /*
775d4f98a2SYan Zheng  * map address of tree root to tree
785d4f98a2SYan Zheng  */
795d4f98a2SYan Zheng struct mapping_node {
80e9a28dc5SQu Wenruo 	struct {
815d4f98a2SYan Zheng 		struct rb_node rb_node;
825d4f98a2SYan Zheng 		u64 bytenr;
83e9a28dc5SQu Wenruo 	}; /* Use rb_simle_node for search/insert */
845d4f98a2SYan Zheng 	void *data;
855d4f98a2SYan Zheng };
865d4f98a2SYan Zheng 
875d4f98a2SYan Zheng struct mapping_tree {
885d4f98a2SYan Zheng 	struct rb_root rb_root;
895d4f98a2SYan Zheng 	spinlock_t lock;
905d4f98a2SYan Zheng };
915d4f98a2SYan Zheng 
925d4f98a2SYan Zheng /*
935d4f98a2SYan Zheng  * present a tree block to process
945d4f98a2SYan Zheng  */
955d4f98a2SYan Zheng struct tree_block {
96e9a28dc5SQu Wenruo 	struct {
975d4f98a2SYan Zheng 		struct rb_node rb_node;
985d4f98a2SYan Zheng 		u64 bytenr;
99e9a28dc5SQu Wenruo 	}; /* Use rb_simple_node for search/insert */
100f7ba2d37SJosef Bacik 	u64 owner;
1015d4f98a2SYan Zheng 	struct btrfs_key key;
1025d4f98a2SYan Zheng 	unsigned int level:8;
1035d4f98a2SYan Zheng 	unsigned int key_ready:1;
1045d4f98a2SYan Zheng };
1055d4f98a2SYan Zheng 
1060257bb82SYan, Zheng #define MAX_EXTENTS 128
1070257bb82SYan, Zheng 
1080257bb82SYan, Zheng struct file_extent_cluster {
1090257bb82SYan, Zheng 	u64 start;
1100257bb82SYan, Zheng 	u64 end;
1110257bb82SYan, Zheng 	u64 boundary[MAX_EXTENTS];
1120257bb82SYan, Zheng 	unsigned int nr;
1130257bb82SYan, Zheng };
1140257bb82SYan, Zheng 
1155d4f98a2SYan Zheng struct reloc_control {
1165d4f98a2SYan Zheng 	/* block group to relocate */
11732da5386SDavid Sterba 	struct btrfs_block_group *block_group;
1185d4f98a2SYan Zheng 	/* extent tree */
1195d4f98a2SYan Zheng 	struct btrfs_root *extent_root;
1205d4f98a2SYan Zheng 	/* inode for moving data */
1215d4f98a2SYan Zheng 	struct inode *data_inode;
1223fd0a558SYan, Zheng 
1233fd0a558SYan, Zheng 	struct btrfs_block_rsv *block_rsv;
1243fd0a558SYan, Zheng 
125a26195a5SQu Wenruo 	struct btrfs_backref_cache backref_cache;
1263fd0a558SYan, Zheng 
1273fd0a558SYan, Zheng 	struct file_extent_cluster cluster;
1285d4f98a2SYan Zheng 	/* tree blocks have been processed */
1295d4f98a2SYan Zheng 	struct extent_io_tree processed_blocks;
1305d4f98a2SYan Zheng 	/* map start of tree root to corresponding reloc tree */
1315d4f98a2SYan Zheng 	struct mapping_tree reloc_root_tree;
1325d4f98a2SYan Zheng 	/* list of reloc trees */
1335d4f98a2SYan Zheng 	struct list_head reloc_roots;
134d2311e69SQu Wenruo 	/* list of subvolume trees that get relocated */
135d2311e69SQu Wenruo 	struct list_head dirty_subvol_roots;
1363fd0a558SYan, Zheng 	/* size of metadata reservation for merging reloc trees */
1373fd0a558SYan, Zheng 	u64 merging_rsv_size;
1383fd0a558SYan, Zheng 	/* size of relocated tree nodes */
1393fd0a558SYan, Zheng 	u64 nodes_relocated;
1400647bf56SWang Shilong 	/* reserved size for block group relocation*/
1410647bf56SWang Shilong 	u64 reserved_bytes;
1423fd0a558SYan, Zheng 
1435d4f98a2SYan Zheng 	u64 search_start;
1445d4f98a2SYan Zheng 	u64 extents_found;
1453fd0a558SYan, Zheng 
1463fd0a558SYan, Zheng 	unsigned int stage:8;
1473fd0a558SYan, Zheng 	unsigned int create_reloc_tree:1;
1483fd0a558SYan, Zheng 	unsigned int merge_reloc_tree:1;
1495d4f98a2SYan Zheng 	unsigned int found_file_extent:1;
1505d4f98a2SYan Zheng };
1515d4f98a2SYan Zheng 
1525d4f98a2SYan Zheng /* stages of data relocation */
1535d4f98a2SYan Zheng #define MOVE_DATA_EXTENTS	0
1545d4f98a2SYan Zheng #define UPDATE_DATA_PTRS	1
1555d4f98a2SYan Zheng 
1569569cc20SQu Wenruo static void mark_block_processed(struct reloc_control *rc,
157a26195a5SQu Wenruo 				 struct btrfs_backref_node *node)
1589569cc20SQu Wenruo {
1599569cc20SQu Wenruo 	u32 blocksize;
1609569cc20SQu Wenruo 
1619569cc20SQu Wenruo 	if (node->level == 0 ||
1629569cc20SQu Wenruo 	    in_range(node->bytenr, rc->block_group->start,
1639569cc20SQu Wenruo 		     rc->block_group->length)) {
1649569cc20SQu Wenruo 		blocksize = rc->extent_root->fs_info->nodesize;
1659569cc20SQu Wenruo 		set_extent_bits(&rc->processed_blocks, node->bytenr,
1669569cc20SQu Wenruo 				node->bytenr + blocksize - 1, EXTENT_DIRTY);
1679569cc20SQu Wenruo 	}
1689569cc20SQu Wenruo 	node->processed = 1;
1699569cc20SQu Wenruo }
1709569cc20SQu Wenruo 
1715d4f98a2SYan Zheng 
1725d4f98a2SYan Zheng static void mapping_tree_init(struct mapping_tree *tree)
1735d4f98a2SYan Zheng {
1746bef4d31SEric Paris 	tree->rb_root = RB_ROOT;
1755d4f98a2SYan Zheng 	spin_lock_init(&tree->lock);
1765d4f98a2SYan Zheng }
1775d4f98a2SYan Zheng 
1785d4f98a2SYan Zheng /*
1795d4f98a2SYan Zheng  * walk up backref nodes until reach node presents tree root
1805d4f98a2SYan Zheng  */
181a26195a5SQu Wenruo static struct btrfs_backref_node *walk_up_backref(
182a26195a5SQu Wenruo 		struct btrfs_backref_node *node,
183a26195a5SQu Wenruo 		struct btrfs_backref_edge *edges[], int *index)
1845d4f98a2SYan Zheng {
185a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
1865d4f98a2SYan Zheng 	int idx = *index;
1875d4f98a2SYan Zheng 
1885d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
1895d4f98a2SYan Zheng 		edge = list_entry(node->upper.next,
190a26195a5SQu Wenruo 				  struct btrfs_backref_edge, list[LOWER]);
1915d4f98a2SYan Zheng 		edges[idx++] = edge;
1925d4f98a2SYan Zheng 		node = edge->node[UPPER];
1935d4f98a2SYan Zheng 	}
1943fd0a558SYan, Zheng 	BUG_ON(node->detached);
1955d4f98a2SYan Zheng 	*index = idx;
1965d4f98a2SYan Zheng 	return node;
1975d4f98a2SYan Zheng }
1985d4f98a2SYan Zheng 
1995d4f98a2SYan Zheng /*
2005d4f98a2SYan Zheng  * walk down backref nodes to find start of next reference path
2015d4f98a2SYan Zheng  */
202a26195a5SQu Wenruo static struct btrfs_backref_node *walk_down_backref(
203a26195a5SQu Wenruo 		struct btrfs_backref_edge *edges[], int *index)
2045d4f98a2SYan Zheng {
205a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
206a26195a5SQu Wenruo 	struct btrfs_backref_node *lower;
2075d4f98a2SYan Zheng 	int idx = *index;
2085d4f98a2SYan Zheng 
2095d4f98a2SYan Zheng 	while (idx > 0) {
2105d4f98a2SYan Zheng 		edge = edges[idx - 1];
2115d4f98a2SYan Zheng 		lower = edge->node[LOWER];
2125d4f98a2SYan Zheng 		if (list_is_last(&edge->list[LOWER], &lower->upper)) {
2135d4f98a2SYan Zheng 			idx--;
2145d4f98a2SYan Zheng 			continue;
2155d4f98a2SYan Zheng 		}
2165d4f98a2SYan Zheng 		edge = list_entry(edge->list[LOWER].next,
217a26195a5SQu Wenruo 				  struct btrfs_backref_edge, list[LOWER]);
2185d4f98a2SYan Zheng 		edges[idx - 1] = edge;
2195d4f98a2SYan Zheng 		*index = idx;
2205d4f98a2SYan Zheng 		return edge->node[UPPER];
2215d4f98a2SYan Zheng 	}
2225d4f98a2SYan Zheng 	*index = 0;
2235d4f98a2SYan Zheng 	return NULL;
2245d4f98a2SYan Zheng }
2255d4f98a2SYan Zheng 
226a26195a5SQu Wenruo static void update_backref_node(struct btrfs_backref_cache *cache,
227a26195a5SQu Wenruo 				struct btrfs_backref_node *node, u64 bytenr)
2283fd0a558SYan, Zheng {
2293fd0a558SYan, Zheng 	struct rb_node *rb_node;
2303fd0a558SYan, Zheng 	rb_erase(&node->rb_node, &cache->rb_root);
2313fd0a558SYan, Zheng 	node->bytenr = bytenr;
232e9a28dc5SQu Wenruo 	rb_node = rb_simple_insert(&cache->rb_root, node->bytenr, &node->rb_node);
23343c04fb1SJeff Mahoney 	if (rb_node)
234982c92cbSQu Wenruo 		btrfs_backref_panic(cache->fs_info, bytenr, -EEXIST);
2353fd0a558SYan, Zheng }
2363fd0a558SYan, Zheng 
2373fd0a558SYan, Zheng /*
2383fd0a558SYan, Zheng  * update backref cache after a transaction commit
2393fd0a558SYan, Zheng  */
2403fd0a558SYan, Zheng static int update_backref_cache(struct btrfs_trans_handle *trans,
241a26195a5SQu Wenruo 				struct btrfs_backref_cache *cache)
2423fd0a558SYan, Zheng {
243a26195a5SQu Wenruo 	struct btrfs_backref_node *node;
2443fd0a558SYan, Zheng 	int level = 0;
2453fd0a558SYan, Zheng 
2463fd0a558SYan, Zheng 	if (cache->last_trans == 0) {
2473fd0a558SYan, Zheng 		cache->last_trans = trans->transid;
2483fd0a558SYan, Zheng 		return 0;
2493fd0a558SYan, Zheng 	}
2503fd0a558SYan, Zheng 
2513fd0a558SYan, Zheng 	if (cache->last_trans == trans->transid)
2523fd0a558SYan, Zheng 		return 0;
2533fd0a558SYan, Zheng 
2543fd0a558SYan, Zheng 	/*
2553fd0a558SYan, Zheng 	 * detached nodes are used to avoid unnecessary backref
2563fd0a558SYan, Zheng 	 * lookup. transaction commit changes the extent tree.
2573fd0a558SYan, Zheng 	 * so the detached nodes are no longer useful.
2583fd0a558SYan, Zheng 	 */
2593fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
2603fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
261a26195a5SQu Wenruo 				  struct btrfs_backref_node, list);
262023acb07SQu Wenruo 		btrfs_backref_cleanup_node(cache, node);
2633fd0a558SYan, Zheng 	}
2643fd0a558SYan, Zheng 
2653fd0a558SYan, Zheng 	while (!list_empty(&cache->changed)) {
2663fd0a558SYan, Zheng 		node = list_entry(cache->changed.next,
267a26195a5SQu Wenruo 				  struct btrfs_backref_node, list);
2683fd0a558SYan, Zheng 		list_del_init(&node->list);
2693fd0a558SYan, Zheng 		BUG_ON(node->pending);
2703fd0a558SYan, Zheng 		update_backref_node(cache, node, node->new_bytenr);
2713fd0a558SYan, Zheng 	}
2723fd0a558SYan, Zheng 
2733fd0a558SYan, Zheng 	/*
2743fd0a558SYan, Zheng 	 * some nodes can be left in the pending list if there were
2753fd0a558SYan, Zheng 	 * errors during processing the pending nodes.
2763fd0a558SYan, Zheng 	 */
2773fd0a558SYan, Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2783fd0a558SYan, Zheng 		list_for_each_entry(node, &cache->pending[level], list) {
2793fd0a558SYan, Zheng 			BUG_ON(!node->pending);
2803fd0a558SYan, Zheng 			if (node->bytenr == node->new_bytenr)
2813fd0a558SYan, Zheng 				continue;
2823fd0a558SYan, Zheng 			update_backref_node(cache, node, node->new_bytenr);
2833fd0a558SYan, Zheng 		}
2843fd0a558SYan, Zheng 	}
2853fd0a558SYan, Zheng 
2863fd0a558SYan, Zheng 	cache->last_trans = 0;
2873fd0a558SYan, Zheng 	return 1;
2883fd0a558SYan, Zheng }
2893fd0a558SYan, Zheng 
2906282675eSQu Wenruo static bool reloc_root_is_dead(struct btrfs_root *root)
2916282675eSQu Wenruo {
2926282675eSQu Wenruo 	/*
2936282675eSQu Wenruo 	 * Pair with set_bit/clear_bit in clean_dirty_subvols and
2946282675eSQu Wenruo 	 * btrfs_update_reloc_root. We need to see the updated bit before
2956282675eSQu Wenruo 	 * trying to access reloc_root
2966282675eSQu Wenruo 	 */
2976282675eSQu Wenruo 	smp_rmb();
2986282675eSQu Wenruo 	if (test_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state))
2996282675eSQu Wenruo 		return true;
3006282675eSQu Wenruo 	return false;
3016282675eSQu Wenruo }
3026282675eSQu Wenruo 
3036282675eSQu Wenruo /*
3046282675eSQu Wenruo  * Check if this subvolume tree has valid reloc tree.
3056282675eSQu Wenruo  *
3066282675eSQu Wenruo  * Reloc tree after swap is considered dead, thus not considered as valid.
3076282675eSQu Wenruo  * This is enough for most callers, as they don't distinguish dead reloc root
30855465730SQu Wenruo  * from no reloc root.  But btrfs_should_ignore_reloc_root() below is a
30955465730SQu Wenruo  * special case.
3106282675eSQu Wenruo  */
3116282675eSQu Wenruo static bool have_reloc_root(struct btrfs_root *root)
3126282675eSQu Wenruo {
3136282675eSQu Wenruo 	if (reloc_root_is_dead(root))
3146282675eSQu Wenruo 		return false;
3156282675eSQu Wenruo 	if (!root->reloc_root)
3166282675eSQu Wenruo 		return false;
3176282675eSQu Wenruo 	return true;
3186282675eSQu Wenruo }
319f2a97a9dSDavid Sterba 
32055465730SQu Wenruo int btrfs_should_ignore_reloc_root(struct btrfs_root *root)
3213fd0a558SYan, Zheng {
3223fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
3233fd0a558SYan, Zheng 
32492a7cc42SQu Wenruo 	if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
3253fd0a558SYan, Zheng 		return 0;
3263fd0a558SYan, Zheng 
3276282675eSQu Wenruo 	/* This root has been merged with its reloc tree, we can ignore it */
3286282675eSQu Wenruo 	if (reloc_root_is_dead(root))
3296282675eSQu Wenruo 		return 1;
3306282675eSQu Wenruo 
3313fd0a558SYan, Zheng 	reloc_root = root->reloc_root;
3323fd0a558SYan, Zheng 	if (!reloc_root)
3333fd0a558SYan, Zheng 		return 0;
3343fd0a558SYan, Zheng 
3354d4225fcSJosef Bacik 	if (btrfs_header_generation(reloc_root->commit_root) ==
3364d4225fcSJosef Bacik 	    root->fs_info->running_transaction->transid)
3373fd0a558SYan, Zheng 		return 0;
3383fd0a558SYan, Zheng 	/*
3393fd0a558SYan, Zheng 	 * if there is reloc tree and it was created in previous
3403fd0a558SYan, Zheng 	 * transaction backref lookup can find the reloc tree,
3413fd0a558SYan, Zheng 	 * so backref node for the fs tree root is useless for
3423fd0a558SYan, Zheng 	 * relocation.
3433fd0a558SYan, Zheng 	 */
3443fd0a558SYan, Zheng 	return 1;
3453fd0a558SYan, Zheng }
34655465730SQu Wenruo 
3475d4f98a2SYan Zheng /*
3485d4f98a2SYan Zheng  * find reloc tree by address of tree root
3495d4f98a2SYan Zheng  */
3502433bea5SQu Wenruo struct btrfs_root *find_reloc_root(struct btrfs_fs_info *fs_info, u64 bytenr)
3515d4f98a2SYan Zheng {
3522433bea5SQu Wenruo 	struct reloc_control *rc = fs_info->reloc_ctl;
3535d4f98a2SYan Zheng 	struct rb_node *rb_node;
3545d4f98a2SYan Zheng 	struct mapping_node *node;
3555d4f98a2SYan Zheng 	struct btrfs_root *root = NULL;
3565d4f98a2SYan Zheng 
3572433bea5SQu Wenruo 	ASSERT(rc);
3585d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
359e9a28dc5SQu Wenruo 	rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root, bytenr);
3605d4f98a2SYan Zheng 	if (rb_node) {
3615d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
3625d4f98a2SYan Zheng 		root = (struct btrfs_root *)node->data;
3635d4f98a2SYan Zheng 	}
3645d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
36500246528SJosef Bacik 	return btrfs_grab_root(root);
3665d4f98a2SYan Zheng }
3675d4f98a2SYan Zheng 
3685d4f98a2SYan Zheng /*
36929db137bSQu Wenruo  * For useless nodes, do two major clean ups:
37029db137bSQu Wenruo  *
37129db137bSQu Wenruo  * - Cleanup the children edges and nodes
37229db137bSQu Wenruo  *   If child node is also orphan (no parent) during cleanup, then the child
37329db137bSQu Wenruo  *   node will also be cleaned up.
37429db137bSQu Wenruo  *
37529db137bSQu Wenruo  * - Freeing up leaves (level 0), keeps nodes detached
37629db137bSQu Wenruo  *   For nodes, the node is still cached as "detached"
37729db137bSQu Wenruo  *
37829db137bSQu Wenruo  * Return false if @node is not in the @useless_nodes list.
37929db137bSQu Wenruo  * Return true if @node is in the @useless_nodes list.
38029db137bSQu Wenruo  */
38129db137bSQu Wenruo static bool handle_useless_nodes(struct reloc_control *rc,
382a26195a5SQu Wenruo 				 struct btrfs_backref_node *node)
38329db137bSQu Wenruo {
384a26195a5SQu Wenruo 	struct btrfs_backref_cache *cache = &rc->backref_cache;
38529db137bSQu Wenruo 	struct list_head *useless_node = &cache->useless_node;
38629db137bSQu Wenruo 	bool ret = false;
38729db137bSQu Wenruo 
38829db137bSQu Wenruo 	while (!list_empty(useless_node)) {
389a26195a5SQu Wenruo 		struct btrfs_backref_node *cur;
39029db137bSQu Wenruo 
391a26195a5SQu Wenruo 		cur = list_first_entry(useless_node, struct btrfs_backref_node,
39229db137bSQu Wenruo 				 list);
39329db137bSQu Wenruo 		list_del_init(&cur->list);
39429db137bSQu Wenruo 
39529db137bSQu Wenruo 		/* Only tree root nodes can be added to @useless_nodes */
39629db137bSQu Wenruo 		ASSERT(list_empty(&cur->upper));
39729db137bSQu Wenruo 
39829db137bSQu Wenruo 		if (cur == node)
39929db137bSQu Wenruo 			ret = true;
40029db137bSQu Wenruo 
40129db137bSQu Wenruo 		/* The node is the lowest node */
40229db137bSQu Wenruo 		if (cur->lowest) {
40329db137bSQu Wenruo 			list_del_init(&cur->lower);
40429db137bSQu Wenruo 			cur->lowest = 0;
40529db137bSQu Wenruo 		}
40629db137bSQu Wenruo 
40729db137bSQu Wenruo 		/* Cleanup the lower edges */
40829db137bSQu Wenruo 		while (!list_empty(&cur->lower)) {
409a26195a5SQu Wenruo 			struct btrfs_backref_edge *edge;
410a26195a5SQu Wenruo 			struct btrfs_backref_node *lower;
41129db137bSQu Wenruo 
41229db137bSQu Wenruo 			edge = list_entry(cur->lower.next,
413a26195a5SQu Wenruo 					struct btrfs_backref_edge, list[UPPER]);
41429db137bSQu Wenruo 			list_del(&edge->list[UPPER]);
41529db137bSQu Wenruo 			list_del(&edge->list[LOWER]);
41629db137bSQu Wenruo 			lower = edge->node[LOWER];
417741188d3SQu Wenruo 			btrfs_backref_free_edge(cache, edge);
41829db137bSQu Wenruo 
41929db137bSQu Wenruo 			/* Child node is also orphan, queue for cleanup */
42029db137bSQu Wenruo 			if (list_empty(&lower->upper))
42129db137bSQu Wenruo 				list_add(&lower->list, useless_node);
42229db137bSQu Wenruo 		}
42329db137bSQu Wenruo 		/* Mark this block processed for relocation */
42429db137bSQu Wenruo 		mark_block_processed(rc, cur);
42529db137bSQu Wenruo 
42629db137bSQu Wenruo 		/*
42729db137bSQu Wenruo 		 * Backref nodes for tree leaves are deleted from the cache.
42829db137bSQu Wenruo 		 * Backref nodes for upper level tree blocks are left in the
42929db137bSQu Wenruo 		 * cache to avoid unnecessary backref lookup.
43029db137bSQu Wenruo 		 */
43129db137bSQu Wenruo 		if (cur->level > 0) {
43229db137bSQu Wenruo 			list_add(&cur->list, &cache->detached);
43329db137bSQu Wenruo 			cur->detached = 1;
43429db137bSQu Wenruo 		} else {
43529db137bSQu Wenruo 			rb_erase(&cur->rb_node, &cache->rb_root);
436741188d3SQu Wenruo 			btrfs_backref_free_node(cache, cur);
43729db137bSQu Wenruo 		}
43829db137bSQu Wenruo 	}
43929db137bSQu Wenruo 	return ret;
44029db137bSQu Wenruo }
44129db137bSQu Wenruo 
44229db137bSQu Wenruo /*
443e7d571c7SQu Wenruo  * Build backref tree for a given tree block. Root of the backref tree
444e7d571c7SQu Wenruo  * corresponds the tree block, leaves of the backref tree correspond roots of
445e7d571c7SQu Wenruo  * b-trees that reference the tree block.
446e7d571c7SQu Wenruo  *
447e7d571c7SQu Wenruo  * The basic idea of this function is check backrefs of a given block to find
448e7d571c7SQu Wenruo  * upper level blocks that reference the block, and then check backrefs of
449e7d571c7SQu Wenruo  * these upper level blocks recursively. The recursion stops when tree root is
450e7d571c7SQu Wenruo  * reached or backrefs for the block is cached.
451e7d571c7SQu Wenruo  *
452e7d571c7SQu Wenruo  * NOTE: if we find that backrefs for a block are cached, we know backrefs for
453e7d571c7SQu Wenruo  * all upper level blocks that directly/indirectly reference the block are also
454e7d571c7SQu Wenruo  * cached.
455e7d571c7SQu Wenruo  */
456a26195a5SQu Wenruo static noinline_for_stack struct btrfs_backref_node *build_backref_tree(
457e7d571c7SQu Wenruo 			struct reloc_control *rc, struct btrfs_key *node_key,
458e7d571c7SQu Wenruo 			int level, u64 bytenr)
459e7d571c7SQu Wenruo {
460e7d571c7SQu Wenruo 	struct btrfs_backref_iter *iter;
461a26195a5SQu Wenruo 	struct btrfs_backref_cache *cache = &rc->backref_cache;
462e7d571c7SQu Wenruo 	/* For searching parent of TREE_BLOCK_REF */
463e7d571c7SQu Wenruo 	struct btrfs_path *path;
464a26195a5SQu Wenruo 	struct btrfs_backref_node *cur;
465a26195a5SQu Wenruo 	struct btrfs_backref_node *node = NULL;
466a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
467e7d571c7SQu Wenruo 	int ret;
468e7d571c7SQu Wenruo 	int err = 0;
469e7d571c7SQu Wenruo 
470e7d571c7SQu Wenruo 	iter = btrfs_backref_iter_alloc(rc->extent_root->fs_info, GFP_NOFS);
471e7d571c7SQu Wenruo 	if (!iter)
472e7d571c7SQu Wenruo 		return ERR_PTR(-ENOMEM);
473e7d571c7SQu Wenruo 	path = btrfs_alloc_path();
474e7d571c7SQu Wenruo 	if (!path) {
475e7d571c7SQu Wenruo 		err = -ENOMEM;
476e7d571c7SQu Wenruo 		goto out;
477e7d571c7SQu Wenruo 	}
478e7d571c7SQu Wenruo 
479b1818dabSQu Wenruo 	node = btrfs_backref_alloc_node(cache, bytenr, level);
480e7d571c7SQu Wenruo 	if (!node) {
481e7d571c7SQu Wenruo 		err = -ENOMEM;
482e7d571c7SQu Wenruo 		goto out;
483e7d571c7SQu Wenruo 	}
484e7d571c7SQu Wenruo 
485e7d571c7SQu Wenruo 	node->lowest = 1;
486e7d571c7SQu Wenruo 	cur = node;
487e7d571c7SQu Wenruo 
488e7d571c7SQu Wenruo 	/* Breadth-first search to build backref cache */
489e7d571c7SQu Wenruo 	do {
4901b60d2ecSQu Wenruo 		ret = btrfs_backref_add_tree_node(cache, path, iter, node_key,
4911b60d2ecSQu Wenruo 						  cur);
492e7d571c7SQu Wenruo 		if (ret < 0) {
493e7d571c7SQu Wenruo 			err = ret;
494e7d571c7SQu Wenruo 			goto out;
495e7d571c7SQu Wenruo 		}
496e7d571c7SQu Wenruo 		edge = list_first_entry_or_null(&cache->pending_edge,
497a26195a5SQu Wenruo 				struct btrfs_backref_edge, list[UPPER]);
498e7d571c7SQu Wenruo 		/*
499e7d571c7SQu Wenruo 		 * The pending list isn't empty, take the first block to
500e7d571c7SQu Wenruo 		 * process
501e7d571c7SQu Wenruo 		 */
502e7d571c7SQu Wenruo 		if (edge) {
5035d4f98a2SYan Zheng 			list_del_init(&edge->list[UPPER]);
5045d4f98a2SYan Zheng 			cur = edge->node[UPPER];
5055d4f98a2SYan Zheng 		}
506e7d571c7SQu Wenruo 	} while (edge);
5075d4f98a2SYan Zheng 
5081f872924SQu Wenruo 	/* Finish the upper linkage of newly added edges/nodes */
509fc997ed0SQu Wenruo 	ret = btrfs_backref_finish_upper_links(cache, node);
5101f872924SQu Wenruo 	if (ret < 0) {
5111f872924SQu Wenruo 		err = ret;
51275bfb9afSJosef Bacik 		goto out;
51375bfb9afSJosef Bacik 	}
51475bfb9afSJosef Bacik 
51529db137bSQu Wenruo 	if (handle_useless_nodes(rc, node))
5163fd0a558SYan, Zheng 		node = NULL;
5175d4f98a2SYan Zheng out:
51871f572a9SQu Wenruo 	btrfs_backref_iter_free(iter);
51971f572a9SQu Wenruo 	btrfs_free_path(path);
5205d4f98a2SYan Zheng 	if (err) {
5211b23ea18SQu Wenruo 		btrfs_backref_error_cleanup(cache, node);
5225d4f98a2SYan Zheng 		return ERR_PTR(err);
5235d4f98a2SYan Zheng 	}
52475bfb9afSJosef Bacik 	ASSERT(!node || !node->detached);
52584780289SQu Wenruo 	ASSERT(list_empty(&cache->useless_node) &&
52684780289SQu Wenruo 	       list_empty(&cache->pending_edge));
5275d4f98a2SYan Zheng 	return node;
5285d4f98a2SYan Zheng }
5295d4f98a2SYan Zheng 
5305d4f98a2SYan Zheng /*
5313fd0a558SYan, Zheng  * helper to add backref node for the newly created snapshot.
5323fd0a558SYan, Zheng  * the backref node is created by cloning backref node that
5333fd0a558SYan, Zheng  * corresponds to root of source tree
5343fd0a558SYan, Zheng  */
5353fd0a558SYan, Zheng static int clone_backref_node(struct btrfs_trans_handle *trans,
5363fd0a558SYan, Zheng 			      struct reloc_control *rc,
5373fd0a558SYan, Zheng 			      struct btrfs_root *src,
5383fd0a558SYan, Zheng 			      struct btrfs_root *dest)
5393fd0a558SYan, Zheng {
5403fd0a558SYan, Zheng 	struct btrfs_root *reloc_root = src->reloc_root;
541a26195a5SQu Wenruo 	struct btrfs_backref_cache *cache = &rc->backref_cache;
542a26195a5SQu Wenruo 	struct btrfs_backref_node *node = NULL;
543a26195a5SQu Wenruo 	struct btrfs_backref_node *new_node;
544a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
545a26195a5SQu Wenruo 	struct btrfs_backref_edge *new_edge;
5463fd0a558SYan, Zheng 	struct rb_node *rb_node;
5473fd0a558SYan, Zheng 
5483fd0a558SYan, Zheng 	if (cache->last_trans > 0)
5493fd0a558SYan, Zheng 		update_backref_cache(trans, cache);
5503fd0a558SYan, Zheng 
551e9a28dc5SQu Wenruo 	rb_node = rb_simple_search(&cache->rb_root, src->commit_root->start);
5523fd0a558SYan, Zheng 	if (rb_node) {
553a26195a5SQu Wenruo 		node = rb_entry(rb_node, struct btrfs_backref_node, rb_node);
5543fd0a558SYan, Zheng 		if (node->detached)
5553fd0a558SYan, Zheng 			node = NULL;
5563fd0a558SYan, Zheng 		else
5573fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr != reloc_root->node->start);
5583fd0a558SYan, Zheng 	}
5593fd0a558SYan, Zheng 
5603fd0a558SYan, Zheng 	if (!node) {
561e9a28dc5SQu Wenruo 		rb_node = rb_simple_search(&cache->rb_root,
5623fd0a558SYan, Zheng 					   reloc_root->commit_root->start);
5633fd0a558SYan, Zheng 		if (rb_node) {
564a26195a5SQu Wenruo 			node = rb_entry(rb_node, struct btrfs_backref_node,
5653fd0a558SYan, Zheng 					rb_node);
5663fd0a558SYan, Zheng 			BUG_ON(node->detached);
5673fd0a558SYan, Zheng 		}
5683fd0a558SYan, Zheng 	}
5693fd0a558SYan, Zheng 
5703fd0a558SYan, Zheng 	if (!node)
5713fd0a558SYan, Zheng 		return 0;
5723fd0a558SYan, Zheng 
573b1818dabSQu Wenruo 	new_node = btrfs_backref_alloc_node(cache, dest->node->start,
574b1818dabSQu Wenruo 					    node->level);
5753fd0a558SYan, Zheng 	if (!new_node)
5763fd0a558SYan, Zheng 		return -ENOMEM;
5773fd0a558SYan, Zheng 
5783fd0a558SYan, Zheng 	new_node->lowest = node->lowest;
5796848ad64SYan, Zheng 	new_node->checked = 1;
58000246528SJosef Bacik 	new_node->root = btrfs_grab_root(dest);
5810b530bc5SJosef Bacik 	ASSERT(new_node->root);
5823fd0a558SYan, Zheng 
5833fd0a558SYan, Zheng 	if (!node->lowest) {
5843fd0a558SYan, Zheng 		list_for_each_entry(edge, &node->lower, list[UPPER]) {
58547254d07SQu Wenruo 			new_edge = btrfs_backref_alloc_edge(cache);
5863fd0a558SYan, Zheng 			if (!new_edge)
5873fd0a558SYan, Zheng 				goto fail;
5883fd0a558SYan, Zheng 
589f39911e5SQu Wenruo 			btrfs_backref_link_edge(new_edge, edge->node[LOWER],
590f39911e5SQu Wenruo 						new_node, LINK_UPPER);
5913fd0a558SYan, Zheng 		}
59276b9e23dSMiao Xie 	} else {
59376b9e23dSMiao Xie 		list_add_tail(&new_node->lower, &cache->leaves);
5943fd0a558SYan, Zheng 	}
5953fd0a558SYan, Zheng 
596e9a28dc5SQu Wenruo 	rb_node = rb_simple_insert(&cache->rb_root, new_node->bytenr,
5973fd0a558SYan, Zheng 				   &new_node->rb_node);
59843c04fb1SJeff Mahoney 	if (rb_node)
599982c92cbSQu Wenruo 		btrfs_backref_panic(trans->fs_info, new_node->bytenr, -EEXIST);
6003fd0a558SYan, Zheng 
6013fd0a558SYan, Zheng 	if (!new_node->lowest) {
6023fd0a558SYan, Zheng 		list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
6033fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[LOWER],
6043fd0a558SYan, Zheng 				      &new_edge->node[LOWER]->upper);
6053fd0a558SYan, Zheng 		}
6063fd0a558SYan, Zheng 	}
6073fd0a558SYan, Zheng 	return 0;
6083fd0a558SYan, Zheng fail:
6093fd0a558SYan, Zheng 	while (!list_empty(&new_node->lower)) {
6103fd0a558SYan, Zheng 		new_edge = list_entry(new_node->lower.next,
611a26195a5SQu Wenruo 				      struct btrfs_backref_edge, list[UPPER]);
6123fd0a558SYan, Zheng 		list_del(&new_edge->list[UPPER]);
613741188d3SQu Wenruo 		btrfs_backref_free_edge(cache, new_edge);
6143fd0a558SYan, Zheng 	}
615741188d3SQu Wenruo 	btrfs_backref_free_node(cache, new_node);
6163fd0a558SYan, Zheng 	return -ENOMEM;
6173fd0a558SYan, Zheng }
6183fd0a558SYan, Zheng 
6193fd0a558SYan, Zheng /*
6205d4f98a2SYan Zheng  * helper to add 'address of tree root -> reloc tree' mapping
6215d4f98a2SYan Zheng  */
622ffd7b339SJeff Mahoney static int __must_check __add_reloc_root(struct btrfs_root *root)
6235d4f98a2SYan Zheng {
6240b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
6255d4f98a2SYan Zheng 	struct rb_node *rb_node;
6265d4f98a2SYan Zheng 	struct mapping_node *node;
6270b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
6285d4f98a2SYan Zheng 
6295d4f98a2SYan Zheng 	node = kmalloc(sizeof(*node), GFP_NOFS);
630ffd7b339SJeff Mahoney 	if (!node)
631ffd7b339SJeff Mahoney 		return -ENOMEM;
6325d4f98a2SYan Zheng 
633ea287ab1SJosef Bacik 	node->bytenr = root->commit_root->start;
6345d4f98a2SYan Zheng 	node->data = root;
6355d4f98a2SYan Zheng 
6365d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
637e9a28dc5SQu Wenruo 	rb_node = rb_simple_insert(&rc->reloc_root_tree.rb_root,
6385d4f98a2SYan Zheng 				   node->bytenr, &node->rb_node);
6395d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
640ffd7b339SJeff Mahoney 	if (rb_node) {
6410b246afaSJeff Mahoney 		btrfs_panic(fs_info, -EEXIST,
6425d163e0eSJeff Mahoney 			    "Duplicate root found for start=%llu while inserting into relocation tree",
6435d163e0eSJeff Mahoney 			    node->bytenr);
644ffd7b339SJeff Mahoney 	}
6455d4f98a2SYan Zheng 
6465d4f98a2SYan Zheng 	list_add_tail(&root->root_list, &rc->reloc_roots);
6475d4f98a2SYan Zheng 	return 0;
6485d4f98a2SYan Zheng }
6495d4f98a2SYan Zheng 
6505d4f98a2SYan Zheng /*
651c974c464SWang Shilong  * helper to delete the 'address of tree root -> reloc tree'
6525d4f98a2SYan Zheng  * mapping
6535d4f98a2SYan Zheng  */
654c974c464SWang Shilong static void __del_reloc_root(struct btrfs_root *root)
6555d4f98a2SYan Zheng {
6560b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
6575d4f98a2SYan Zheng 	struct rb_node *rb_node;
6585d4f98a2SYan Zheng 	struct mapping_node *node = NULL;
6590b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
660f44deb74SJosef Bacik 	bool put_ref = false;
6615d4f98a2SYan Zheng 
66265c6e82bSQu Wenruo 	if (rc && root->node) {
6635d4f98a2SYan Zheng 		spin_lock(&rc->reloc_root_tree.lock);
664e9a28dc5SQu Wenruo 		rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root,
665ea287ab1SJosef Bacik 					   root->commit_root->start);
666c974c464SWang Shilong 		if (rb_node) {
667c974c464SWang Shilong 			node = rb_entry(rb_node, struct mapping_node, rb_node);
668c974c464SWang Shilong 			rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
669ea287ab1SJosef Bacik 			RB_CLEAR_NODE(&node->rb_node);
670c974c464SWang Shilong 		}
671c974c464SWang Shilong 		spin_unlock(&rc->reloc_root_tree.lock);
672c78a10aeSJosef Bacik 		ASSERT(!node || (struct btrfs_root *)node->data == root);
673389305b2SQu Wenruo 	}
674c974c464SWang Shilong 
675f44deb74SJosef Bacik 	/*
676f44deb74SJosef Bacik 	 * We only put the reloc root here if it's on the list.  There's a lot
677f44deb74SJosef Bacik 	 * of places where the pattern is to splice the rc->reloc_roots, process
678f44deb74SJosef Bacik 	 * the reloc roots, and then add the reloc root back onto
679f44deb74SJosef Bacik 	 * rc->reloc_roots.  If we call __del_reloc_root while it's off of the
680f44deb74SJosef Bacik 	 * list we don't want the reference being dropped, because the guy
681f44deb74SJosef Bacik 	 * messing with the list is in charge of the reference.
682f44deb74SJosef Bacik 	 */
6830b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
684f44deb74SJosef Bacik 	if (!list_empty(&root->root_list)) {
685f44deb74SJosef Bacik 		put_ref = true;
686c974c464SWang Shilong 		list_del_init(&root->root_list);
687f44deb74SJosef Bacik 	}
6880b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
689f44deb74SJosef Bacik 	if (put_ref)
690f44deb74SJosef Bacik 		btrfs_put_root(root);
691c974c464SWang Shilong 	kfree(node);
692c974c464SWang Shilong }
693c974c464SWang Shilong 
694c974c464SWang Shilong /*
695c974c464SWang Shilong  * helper to update the 'address of tree root -> reloc tree'
696c974c464SWang Shilong  * mapping
697c974c464SWang Shilong  */
698ea287ab1SJosef Bacik static int __update_reloc_root(struct btrfs_root *root)
699c974c464SWang Shilong {
7000b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
701c974c464SWang Shilong 	struct rb_node *rb_node;
702c974c464SWang Shilong 	struct mapping_node *node = NULL;
7030b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
704c974c464SWang Shilong 
705c974c464SWang Shilong 	spin_lock(&rc->reloc_root_tree.lock);
706e9a28dc5SQu Wenruo 	rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root,
707ea287ab1SJosef Bacik 				   root->commit_root->start);
7085d4f98a2SYan Zheng 	if (rb_node) {
7095d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
7105d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
7115d4f98a2SYan Zheng 	}
7125d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
7135d4f98a2SYan Zheng 
7148f71f3e0SLiu Bo 	if (!node)
7158f71f3e0SLiu Bo 		return 0;
7165d4f98a2SYan Zheng 	BUG_ON((struct btrfs_root *)node->data != root);
7175d4f98a2SYan Zheng 
7185d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
719ea287ab1SJosef Bacik 	node->bytenr = root->node->start;
720e9a28dc5SQu Wenruo 	rb_node = rb_simple_insert(&rc->reloc_root_tree.rb_root,
7215d4f98a2SYan Zheng 				   node->bytenr, &node->rb_node);
7225d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
72343c04fb1SJeff Mahoney 	if (rb_node)
724982c92cbSQu Wenruo 		btrfs_backref_panic(fs_info, node->bytenr, -EEXIST);
7255d4f98a2SYan Zheng 	return 0;
7265d4f98a2SYan Zheng }
7275d4f98a2SYan Zheng 
7283fd0a558SYan, Zheng static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
7293fd0a558SYan, Zheng 					struct btrfs_root *root, u64 objectid)
7305d4f98a2SYan Zheng {
7310b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
7325d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
7335d4f98a2SYan Zheng 	struct extent_buffer *eb;
7345d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
7355d4f98a2SYan Zheng 	struct btrfs_key root_key;
736*84c50ba5SJosef Bacik 	int ret = 0;
737*84c50ba5SJosef Bacik 	bool must_abort = false;
7385d4f98a2SYan Zheng 
7395d4f98a2SYan Zheng 	root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
740*84c50ba5SJosef Bacik 	if (!root_item)
741*84c50ba5SJosef Bacik 		return ERR_PTR(-ENOMEM);
7425d4f98a2SYan Zheng 
7435d4f98a2SYan Zheng 	root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7445d4f98a2SYan Zheng 	root_key.type = BTRFS_ROOT_ITEM_KEY;
7453fd0a558SYan, Zheng 	root_key.offset = objectid;
7465d4f98a2SYan Zheng 
7473fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
748054570a1SFilipe Manana 		u64 commit_root_gen;
749054570a1SFilipe Manana 
7503fd0a558SYan, Zheng 		/* called by btrfs_init_reloc_root */
7515d4f98a2SYan Zheng 		ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
7525d4f98a2SYan Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
753*84c50ba5SJosef Bacik 		if (ret)
754*84c50ba5SJosef Bacik 			goto fail;
755*84c50ba5SJosef Bacik 
756054570a1SFilipe Manana 		/*
757054570a1SFilipe Manana 		 * Set the last_snapshot field to the generation of the commit
758054570a1SFilipe Manana 		 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
759054570a1SFilipe Manana 		 * correctly (returns true) when the relocation root is created
760054570a1SFilipe Manana 		 * either inside the critical section of a transaction commit
761054570a1SFilipe Manana 		 * (through transaction.c:qgroup_account_snapshot()) and when
762054570a1SFilipe Manana 		 * it's created before the transaction commit is started.
763054570a1SFilipe Manana 		 */
764054570a1SFilipe Manana 		commit_root_gen = btrfs_header_generation(root->commit_root);
765054570a1SFilipe Manana 		btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
7663fd0a558SYan, Zheng 	} else {
7673fd0a558SYan, Zheng 		/*
7683fd0a558SYan, Zheng 		 * called by btrfs_reloc_post_snapshot_hook.
7693fd0a558SYan, Zheng 		 * the source tree is a reloc tree, all tree blocks
7703fd0a558SYan, Zheng 		 * modified after it was created have RELOC flag
7713fd0a558SYan, Zheng 		 * set in their headers. so it's OK to not update
7723fd0a558SYan, Zheng 		 * the 'last_snapshot'.
7733fd0a558SYan, Zheng 		 */
7743fd0a558SYan, Zheng 		ret = btrfs_copy_root(trans, root, root->node, &eb,
7753fd0a558SYan, Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
776*84c50ba5SJosef Bacik 		if (ret)
777*84c50ba5SJosef Bacik 			goto fail;
7783fd0a558SYan, Zheng 	}
7793fd0a558SYan, Zheng 
780*84c50ba5SJosef Bacik 	/*
781*84c50ba5SJosef Bacik 	 * We have changed references at this point, we must abort the
782*84c50ba5SJosef Bacik 	 * transaction if anything fails.
783*84c50ba5SJosef Bacik 	 */
784*84c50ba5SJosef Bacik 	must_abort = true;
785*84c50ba5SJosef Bacik 
7865d4f98a2SYan Zheng 	memcpy(root_item, &root->root_item, sizeof(*root_item));
7875d4f98a2SYan Zheng 	btrfs_set_root_bytenr(root_item, eb->start);
7885d4f98a2SYan Zheng 	btrfs_set_root_level(root_item, btrfs_header_level(eb));
7895d4f98a2SYan Zheng 	btrfs_set_root_generation(root_item, trans->transid);
7903fd0a558SYan, Zheng 
7913fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
7923fd0a558SYan, Zheng 		btrfs_set_root_refs(root_item, 0);
7933fd0a558SYan, Zheng 		memset(&root_item->drop_progress, 0,
7943fd0a558SYan, Zheng 		       sizeof(struct btrfs_disk_key));
795c8422684SDavid Sterba 		btrfs_set_root_drop_level(root_item, 0);
7963fd0a558SYan, Zheng 	}
7975d4f98a2SYan Zheng 
7985d4f98a2SYan Zheng 	btrfs_tree_unlock(eb);
7995d4f98a2SYan Zheng 	free_extent_buffer(eb);
8005d4f98a2SYan Zheng 
8010b246afaSJeff Mahoney 	ret = btrfs_insert_root(trans, fs_info->tree_root,
8025d4f98a2SYan Zheng 				&root_key, root_item);
803*84c50ba5SJosef Bacik 	if (ret)
804*84c50ba5SJosef Bacik 		goto fail;
805*84c50ba5SJosef Bacik 
8065d4f98a2SYan Zheng 	kfree(root_item);
8075d4f98a2SYan Zheng 
8083dbf1738SJosef Bacik 	reloc_root = btrfs_read_tree_root(fs_info->tree_root, &root_key);
809*84c50ba5SJosef Bacik 	if (IS_ERR(reloc_root)) {
810*84c50ba5SJosef Bacik 		ret = PTR_ERR(reloc_root);
811*84c50ba5SJosef Bacik 		goto abort;
812*84c50ba5SJosef Bacik 	}
81392a7cc42SQu Wenruo 	set_bit(BTRFS_ROOT_SHAREABLE, &reloc_root->state);
8145d4f98a2SYan Zheng 	reloc_root->last_trans = trans->transid;
8153fd0a558SYan, Zheng 	return reloc_root;
816*84c50ba5SJosef Bacik fail:
817*84c50ba5SJosef Bacik 	kfree(root_item);
818*84c50ba5SJosef Bacik abort:
819*84c50ba5SJosef Bacik 	if (must_abort)
820*84c50ba5SJosef Bacik 		btrfs_abort_transaction(trans, ret);
821*84c50ba5SJosef Bacik 	return ERR_PTR(ret);
8223fd0a558SYan, Zheng }
8233fd0a558SYan, Zheng 
8243fd0a558SYan, Zheng /*
8253fd0a558SYan, Zheng  * create reloc tree for a given fs tree. reloc tree is just a
8263fd0a558SYan, Zheng  * snapshot of the fs tree with special root objectid.
827f44deb74SJosef Bacik  *
828f44deb74SJosef Bacik  * The reloc_root comes out of here with two references, one for
829f44deb74SJosef Bacik  * root->reloc_root, and another for being on the rc->reloc_roots list.
8303fd0a558SYan, Zheng  */
8313fd0a558SYan, Zheng int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
8323fd0a558SYan, Zheng 			  struct btrfs_root *root)
8333fd0a558SYan, Zheng {
8340b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
8353fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
8360b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
83720dd2cbfSMiao Xie 	struct btrfs_block_rsv *rsv;
8383fd0a558SYan, Zheng 	int clear_rsv = 0;
839ffd7b339SJeff Mahoney 	int ret;
8403fd0a558SYan, Zheng 
841aec7db3bSJosef Bacik 	if (!rc)
8422abc726aSJosef Bacik 		return 0;
8432abc726aSJosef Bacik 
8441fac4a54SQu Wenruo 	/*
8451fac4a54SQu Wenruo 	 * The subvolume has reloc tree but the swap is finished, no need to
8461fac4a54SQu Wenruo 	 * create/update the dead reloc tree
8471fac4a54SQu Wenruo 	 */
8486282675eSQu Wenruo 	if (reloc_root_is_dead(root))
8491fac4a54SQu Wenruo 		return 0;
8501fac4a54SQu Wenruo 
851aec7db3bSJosef Bacik 	/*
852aec7db3bSJosef Bacik 	 * This is subtle but important.  We do not do
853aec7db3bSJosef Bacik 	 * record_root_in_transaction for reloc roots, instead we record their
854aec7db3bSJosef Bacik 	 * corresponding fs root, and then here we update the last trans for the
855aec7db3bSJosef Bacik 	 * reloc root.  This means that we have to do this for the entire life
856aec7db3bSJosef Bacik 	 * of the reloc root, regardless of which stage of the relocation we are
857aec7db3bSJosef Bacik 	 * in.
858aec7db3bSJosef Bacik 	 */
8593fd0a558SYan, Zheng 	if (root->reloc_root) {
8603fd0a558SYan, Zheng 		reloc_root = root->reloc_root;
8613fd0a558SYan, Zheng 		reloc_root->last_trans = trans->transid;
8623fd0a558SYan, Zheng 		return 0;
8633fd0a558SYan, Zheng 	}
8643fd0a558SYan, Zheng 
865aec7db3bSJosef Bacik 	/*
866aec7db3bSJosef Bacik 	 * We are merging reloc roots, we do not need new reloc trees.  Also
867aec7db3bSJosef Bacik 	 * reloc trees never need their own reloc tree.
868aec7db3bSJosef Bacik 	 */
869aec7db3bSJosef Bacik 	if (!rc->create_reloc_tree ||
870aec7db3bSJosef Bacik 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
871aec7db3bSJosef Bacik 		return 0;
872aec7db3bSJosef Bacik 
87320dd2cbfSMiao Xie 	if (!trans->reloc_reserved) {
87420dd2cbfSMiao Xie 		rsv = trans->block_rsv;
8753fd0a558SYan, Zheng 		trans->block_rsv = rc->block_rsv;
8763fd0a558SYan, Zheng 		clear_rsv = 1;
8773fd0a558SYan, Zheng 	}
8783fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
8793fd0a558SYan, Zheng 	if (clear_rsv)
88020dd2cbfSMiao Xie 		trans->block_rsv = rsv;
88100bb36a0SJosef Bacik 	if (IS_ERR(reloc_root))
88200bb36a0SJosef Bacik 		return PTR_ERR(reloc_root);
8835d4f98a2SYan Zheng 
884ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
88500bb36a0SJosef Bacik 	if (ret) {
88600bb36a0SJosef Bacik 		/* Pairs with create_reloc_root */
88700bb36a0SJosef Bacik 		btrfs_put_root(reloc_root);
88800bb36a0SJosef Bacik 		return ret;
88900bb36a0SJosef Bacik 	}
890f44deb74SJosef Bacik 	root->reloc_root = btrfs_grab_root(reloc_root);
8915d4f98a2SYan Zheng 	return 0;
8925d4f98a2SYan Zheng }
8935d4f98a2SYan Zheng 
8945d4f98a2SYan Zheng /*
8955d4f98a2SYan Zheng  * update root item of reloc tree
8965d4f98a2SYan Zheng  */
8975d4f98a2SYan Zheng int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
8985d4f98a2SYan Zheng 			    struct btrfs_root *root)
8995d4f98a2SYan Zheng {
9000b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
9015d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
9025d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
9035d4f98a2SYan Zheng 	int ret;
9045d4f98a2SYan Zheng 
9056282675eSQu Wenruo 	if (!have_reloc_root(root))
9067585717fSChris Mason 		goto out;
9075d4f98a2SYan Zheng 
9085d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
9095d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
9105d4f98a2SYan Zheng 
911f44deb74SJosef Bacik 	/*
912f44deb74SJosef Bacik 	 * We are probably ok here, but __del_reloc_root() will drop its ref of
913f44deb74SJosef Bacik 	 * the root.  We have the ref for root->reloc_root, but just in case
914f44deb74SJosef Bacik 	 * hold it while we update the reloc root.
915f44deb74SJosef Bacik 	 */
916f44deb74SJosef Bacik 	btrfs_grab_root(reloc_root);
917f44deb74SJosef Bacik 
918d2311e69SQu Wenruo 	/* root->reloc_root will stay until current relocation finished */
9190b246afaSJeff Mahoney 	if (fs_info->reloc_ctl->merge_reloc_tree &&
9203fd0a558SYan, Zheng 	    btrfs_root_refs(root_item) == 0) {
921d2311e69SQu Wenruo 		set_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
9226282675eSQu Wenruo 		/*
9236282675eSQu Wenruo 		 * Mark the tree as dead before we change reloc_root so
9246282675eSQu Wenruo 		 * have_reloc_root will not touch it from now on.
9256282675eSQu Wenruo 		 */
9266282675eSQu Wenruo 		smp_wmb();
927c974c464SWang Shilong 		__del_reloc_root(reloc_root);
9285d4f98a2SYan Zheng 	}
9295d4f98a2SYan Zheng 
9305d4f98a2SYan Zheng 	if (reloc_root->commit_root != reloc_root->node) {
931ea287ab1SJosef Bacik 		__update_reloc_root(reloc_root);
9325d4f98a2SYan Zheng 		btrfs_set_root_node(root_item, reloc_root->node);
9335d4f98a2SYan Zheng 		free_extent_buffer(reloc_root->commit_root);
9345d4f98a2SYan Zheng 		reloc_root->commit_root = btrfs_root_node(reloc_root);
9355d4f98a2SYan Zheng 	}
9365d4f98a2SYan Zheng 
9370b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
9385d4f98a2SYan Zheng 				&reloc_root->root_key, root_item);
9395d4f98a2SYan Zheng 	BUG_ON(ret);
940f44deb74SJosef Bacik 	btrfs_put_root(reloc_root);
9417585717fSChris Mason out:
9425d4f98a2SYan Zheng 	return 0;
9435d4f98a2SYan Zheng }
9445d4f98a2SYan Zheng 
9455d4f98a2SYan Zheng /*
9465d4f98a2SYan Zheng  * helper to find first cached inode with inode number >= objectid
9475d4f98a2SYan Zheng  * in a subvolume
9485d4f98a2SYan Zheng  */
9495d4f98a2SYan Zheng static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
9505d4f98a2SYan Zheng {
9515d4f98a2SYan Zheng 	struct rb_node *node;
9525d4f98a2SYan Zheng 	struct rb_node *prev;
9535d4f98a2SYan Zheng 	struct btrfs_inode *entry;
9545d4f98a2SYan Zheng 	struct inode *inode;
9555d4f98a2SYan Zheng 
9565d4f98a2SYan Zheng 	spin_lock(&root->inode_lock);
9575d4f98a2SYan Zheng again:
9585d4f98a2SYan Zheng 	node = root->inode_tree.rb_node;
9595d4f98a2SYan Zheng 	prev = NULL;
9605d4f98a2SYan Zheng 	while (node) {
9615d4f98a2SYan Zheng 		prev = node;
9625d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
9635d4f98a2SYan Zheng 
9644a0cc7caSNikolay Borisov 		if (objectid < btrfs_ino(entry))
9655d4f98a2SYan Zheng 			node = node->rb_left;
9664a0cc7caSNikolay Borisov 		else if (objectid > btrfs_ino(entry))
9675d4f98a2SYan Zheng 			node = node->rb_right;
9685d4f98a2SYan Zheng 		else
9695d4f98a2SYan Zheng 			break;
9705d4f98a2SYan Zheng 	}
9715d4f98a2SYan Zheng 	if (!node) {
9725d4f98a2SYan Zheng 		while (prev) {
9735d4f98a2SYan Zheng 			entry = rb_entry(prev, struct btrfs_inode, rb_node);
9744a0cc7caSNikolay Borisov 			if (objectid <= btrfs_ino(entry)) {
9755d4f98a2SYan Zheng 				node = prev;
9765d4f98a2SYan Zheng 				break;
9775d4f98a2SYan Zheng 			}
9785d4f98a2SYan Zheng 			prev = rb_next(prev);
9795d4f98a2SYan Zheng 		}
9805d4f98a2SYan Zheng 	}
9815d4f98a2SYan Zheng 	while (node) {
9825d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
9835d4f98a2SYan Zheng 		inode = igrab(&entry->vfs_inode);
9845d4f98a2SYan Zheng 		if (inode) {
9855d4f98a2SYan Zheng 			spin_unlock(&root->inode_lock);
9865d4f98a2SYan Zheng 			return inode;
9875d4f98a2SYan Zheng 		}
9885d4f98a2SYan Zheng 
9894a0cc7caSNikolay Borisov 		objectid = btrfs_ino(entry) + 1;
9905d4f98a2SYan Zheng 		if (cond_resched_lock(&root->inode_lock))
9915d4f98a2SYan Zheng 			goto again;
9925d4f98a2SYan Zheng 
9935d4f98a2SYan Zheng 		node = rb_next(node);
9945d4f98a2SYan Zheng 	}
9955d4f98a2SYan Zheng 	spin_unlock(&root->inode_lock);
9965d4f98a2SYan Zheng 	return NULL;
9975d4f98a2SYan Zheng }
9985d4f98a2SYan Zheng 
9995d4f98a2SYan Zheng /*
10005d4f98a2SYan Zheng  * get new location of data
10015d4f98a2SYan Zheng  */
10025d4f98a2SYan Zheng static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
10035d4f98a2SYan Zheng 			    u64 bytenr, u64 num_bytes)
10045d4f98a2SYan Zheng {
10055d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
10065d4f98a2SYan Zheng 	struct btrfs_path *path;
10075d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
10085d4f98a2SYan Zheng 	struct extent_buffer *leaf;
10095d4f98a2SYan Zheng 	int ret;
10105d4f98a2SYan Zheng 
10115d4f98a2SYan Zheng 	path = btrfs_alloc_path();
10125d4f98a2SYan Zheng 	if (!path)
10135d4f98a2SYan Zheng 		return -ENOMEM;
10145d4f98a2SYan Zheng 
10155d4f98a2SYan Zheng 	bytenr -= BTRFS_I(reloc_inode)->index_cnt;
1016f85b7379SDavid Sterba 	ret = btrfs_lookup_file_extent(NULL, root, path,
1017f85b7379SDavid Sterba 			btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
10185d4f98a2SYan Zheng 	if (ret < 0)
10195d4f98a2SYan Zheng 		goto out;
10205d4f98a2SYan Zheng 	if (ret > 0) {
10215d4f98a2SYan Zheng 		ret = -ENOENT;
10225d4f98a2SYan Zheng 		goto out;
10235d4f98a2SYan Zheng 	}
10245d4f98a2SYan Zheng 
10255d4f98a2SYan Zheng 	leaf = path->nodes[0];
10265d4f98a2SYan Zheng 	fi = btrfs_item_ptr(leaf, path->slots[0],
10275d4f98a2SYan Zheng 			    struct btrfs_file_extent_item);
10285d4f98a2SYan Zheng 
10295d4f98a2SYan Zheng 	BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
10305d4f98a2SYan Zheng 	       btrfs_file_extent_compression(leaf, fi) ||
10315d4f98a2SYan Zheng 	       btrfs_file_extent_encryption(leaf, fi) ||
10325d4f98a2SYan Zheng 	       btrfs_file_extent_other_encoding(leaf, fi));
10335d4f98a2SYan Zheng 
10345d4f98a2SYan Zheng 	if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
103583d4cfd4SJosef Bacik 		ret = -EINVAL;
10365d4f98a2SYan Zheng 		goto out;
10375d4f98a2SYan Zheng 	}
10385d4f98a2SYan Zheng 
10395d4f98a2SYan Zheng 	*new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
10405d4f98a2SYan Zheng 	ret = 0;
10415d4f98a2SYan Zheng out:
10425d4f98a2SYan Zheng 	btrfs_free_path(path);
10435d4f98a2SYan Zheng 	return ret;
10445d4f98a2SYan Zheng }
10455d4f98a2SYan Zheng 
10465d4f98a2SYan Zheng /*
10475d4f98a2SYan Zheng  * update file extent items in the tree leaf to point to
10485d4f98a2SYan Zheng  * the new locations.
10495d4f98a2SYan Zheng  */
10503fd0a558SYan, Zheng static noinline_for_stack
10513fd0a558SYan, Zheng int replace_file_extents(struct btrfs_trans_handle *trans,
10525d4f98a2SYan Zheng 			 struct reloc_control *rc,
10535d4f98a2SYan Zheng 			 struct btrfs_root *root,
10543fd0a558SYan, Zheng 			 struct extent_buffer *leaf)
10555d4f98a2SYan Zheng {
10560b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
10575d4f98a2SYan Zheng 	struct btrfs_key key;
10585d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
10595d4f98a2SYan Zheng 	struct inode *inode = NULL;
10605d4f98a2SYan Zheng 	u64 parent;
10615d4f98a2SYan Zheng 	u64 bytenr;
10623fd0a558SYan, Zheng 	u64 new_bytenr = 0;
10635d4f98a2SYan Zheng 	u64 num_bytes;
10645d4f98a2SYan Zheng 	u64 end;
10655d4f98a2SYan Zheng 	u32 nritems;
10665d4f98a2SYan Zheng 	u32 i;
106783d4cfd4SJosef Bacik 	int ret = 0;
10685d4f98a2SYan Zheng 	int first = 1;
10695d4f98a2SYan Zheng 	int dirty = 0;
10705d4f98a2SYan Zheng 
10715d4f98a2SYan Zheng 	if (rc->stage != UPDATE_DATA_PTRS)
10725d4f98a2SYan Zheng 		return 0;
10735d4f98a2SYan Zheng 
10745d4f98a2SYan Zheng 	/* reloc trees always use full backref */
10755d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
10765d4f98a2SYan Zheng 		parent = leaf->start;
10775d4f98a2SYan Zheng 	else
10785d4f98a2SYan Zheng 		parent = 0;
10795d4f98a2SYan Zheng 
10805d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
10815d4f98a2SYan Zheng 	for (i = 0; i < nritems; i++) {
108282fa113fSQu Wenruo 		struct btrfs_ref ref = { 0 };
108382fa113fSQu Wenruo 
10845d4f98a2SYan Zheng 		cond_resched();
10855d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, i);
10865d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_DATA_KEY)
10875d4f98a2SYan Zheng 			continue;
10885d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
10895d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
10905d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
10915d4f98a2SYan Zheng 			continue;
10925d4f98a2SYan Zheng 		bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
10935d4f98a2SYan Zheng 		num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
10945d4f98a2SYan Zheng 		if (bytenr == 0)
10955d4f98a2SYan Zheng 			continue;
10969569cc20SQu Wenruo 		if (!in_range(bytenr, rc->block_group->start,
10979569cc20SQu Wenruo 			      rc->block_group->length))
10985d4f98a2SYan Zheng 			continue;
10995d4f98a2SYan Zheng 
11005d4f98a2SYan Zheng 		/*
11015d4f98a2SYan Zheng 		 * if we are modifying block in fs tree, wait for readpage
11025d4f98a2SYan Zheng 		 * to complete and drop the extent cache
11035d4f98a2SYan Zheng 		 */
11045d4f98a2SYan Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
11055d4f98a2SYan Zheng 			if (first) {
11065d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
11075d4f98a2SYan Zheng 				first = 0;
11084a0cc7caSNikolay Borisov 			} else if (inode && btrfs_ino(BTRFS_I(inode)) < key.objectid) {
11093fd0a558SYan, Zheng 				btrfs_add_delayed_iput(inode);
11105d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
11115d4f98a2SYan Zheng 			}
11124a0cc7caSNikolay Borisov 			if (inode && btrfs_ino(BTRFS_I(inode)) == key.objectid) {
11135d4f98a2SYan Zheng 				end = key.offset +
11145d4f98a2SYan Zheng 				      btrfs_file_extent_num_bytes(leaf, fi);
11155d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(key.offset,
11160b246afaSJeff Mahoney 						    fs_info->sectorsize));
11170b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
11185d4f98a2SYan Zheng 				end--;
11195d4f98a2SYan Zheng 				ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
1120d0082371SJeff Mahoney 						      key.offset, end);
11215d4f98a2SYan Zheng 				if (!ret)
11225d4f98a2SYan Zheng 					continue;
11235d4f98a2SYan Zheng 
1124dcdbc059SNikolay Borisov 				btrfs_drop_extent_cache(BTRFS_I(inode),
1125dcdbc059SNikolay Borisov 						key.offset,	end, 1);
11265d4f98a2SYan Zheng 				unlock_extent(&BTRFS_I(inode)->io_tree,
1127d0082371SJeff Mahoney 					      key.offset, end);
11285d4f98a2SYan Zheng 			}
11295d4f98a2SYan Zheng 		}
11305d4f98a2SYan Zheng 
11315d4f98a2SYan Zheng 		ret = get_new_location(rc->data_inode, &new_bytenr,
11325d4f98a2SYan Zheng 				       bytenr, num_bytes);
113383d4cfd4SJosef Bacik 		if (ret) {
113483d4cfd4SJosef Bacik 			/*
113583d4cfd4SJosef Bacik 			 * Don't have to abort since we've not changed anything
113683d4cfd4SJosef Bacik 			 * in the file extent yet.
113783d4cfd4SJosef Bacik 			 */
113883d4cfd4SJosef Bacik 			break;
11393fd0a558SYan, Zheng 		}
11405d4f98a2SYan Zheng 
11415d4f98a2SYan Zheng 		btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
11425d4f98a2SYan Zheng 		dirty = 1;
11435d4f98a2SYan Zheng 
11445d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
114582fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
114682fa113fSQu Wenruo 				       num_bytes, parent);
114782fa113fSQu Wenruo 		ref.real_root = root->root_key.objectid;
114882fa113fSQu Wenruo 		btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1149b06c4bf5SFilipe Manana 				    key.objectid, key.offset);
115082fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
115183d4cfd4SJosef Bacik 		if (ret) {
115266642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
115383d4cfd4SJosef Bacik 			break;
115483d4cfd4SJosef Bacik 		}
11555d4f98a2SYan Zheng 
1156ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1157ffd4bb2aSQu Wenruo 				       num_bytes, parent);
1158ffd4bb2aSQu Wenruo 		ref.real_root = root->root_key.objectid;
1159ffd4bb2aSQu Wenruo 		btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1160b06c4bf5SFilipe Manana 				    key.objectid, key.offset);
1161ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
116283d4cfd4SJosef Bacik 		if (ret) {
116366642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
116483d4cfd4SJosef Bacik 			break;
116583d4cfd4SJosef Bacik 		}
11665d4f98a2SYan Zheng 	}
11675d4f98a2SYan Zheng 	if (dirty)
11685d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(leaf);
11693fd0a558SYan, Zheng 	if (inode)
11703fd0a558SYan, Zheng 		btrfs_add_delayed_iput(inode);
117183d4cfd4SJosef Bacik 	return ret;
11725d4f98a2SYan Zheng }
11735d4f98a2SYan Zheng 
11745d4f98a2SYan Zheng static noinline_for_stack
11755d4f98a2SYan Zheng int memcmp_node_keys(struct extent_buffer *eb, int slot,
11765d4f98a2SYan Zheng 		     struct btrfs_path *path, int level)
11775d4f98a2SYan Zheng {
11785d4f98a2SYan Zheng 	struct btrfs_disk_key key1;
11795d4f98a2SYan Zheng 	struct btrfs_disk_key key2;
11805d4f98a2SYan Zheng 	btrfs_node_key(eb, &key1, slot);
11815d4f98a2SYan Zheng 	btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
11825d4f98a2SYan Zheng 	return memcmp(&key1, &key2, sizeof(key1));
11835d4f98a2SYan Zheng }
11845d4f98a2SYan Zheng 
11855d4f98a2SYan Zheng /*
11865d4f98a2SYan Zheng  * try to replace tree blocks in fs tree with the new blocks
11875d4f98a2SYan Zheng  * in reloc tree. tree blocks haven't been modified since the
11885d4f98a2SYan Zheng  * reloc tree was create can be replaced.
11895d4f98a2SYan Zheng  *
11905d4f98a2SYan Zheng  * if a block was replaced, level of the block + 1 is returned.
11915d4f98a2SYan Zheng  * if no block got replaced, 0 is returned. if there are other
11925d4f98a2SYan Zheng  * errors, a negative error number is returned.
11935d4f98a2SYan Zheng  */
11943fd0a558SYan, Zheng static noinline_for_stack
11953d0174f7SQu Wenruo int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
11965d4f98a2SYan Zheng 		 struct btrfs_root *dest, struct btrfs_root *src,
11975d4f98a2SYan Zheng 		 struct btrfs_path *path, struct btrfs_key *next_key,
11985d4f98a2SYan Zheng 		 int lowest_level, int max_level)
11995d4f98a2SYan Zheng {
12000b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = dest->fs_info;
12015d4f98a2SYan Zheng 	struct extent_buffer *eb;
12025d4f98a2SYan Zheng 	struct extent_buffer *parent;
120382fa113fSQu Wenruo 	struct btrfs_ref ref = { 0 };
12045d4f98a2SYan Zheng 	struct btrfs_key key;
12055d4f98a2SYan Zheng 	u64 old_bytenr;
12065d4f98a2SYan Zheng 	u64 new_bytenr;
12075d4f98a2SYan Zheng 	u64 old_ptr_gen;
12085d4f98a2SYan Zheng 	u64 new_ptr_gen;
12095d4f98a2SYan Zheng 	u64 last_snapshot;
12105d4f98a2SYan Zheng 	u32 blocksize;
12113fd0a558SYan, Zheng 	int cow = 0;
12125d4f98a2SYan Zheng 	int level;
12135d4f98a2SYan Zheng 	int ret;
12145d4f98a2SYan Zheng 	int slot;
12155d4f98a2SYan Zheng 
12165d4f98a2SYan Zheng 	BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
12175d4f98a2SYan Zheng 	BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
12185d4f98a2SYan Zheng 
12195d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&src->root_item);
12203fd0a558SYan, Zheng again:
12215d4f98a2SYan Zheng 	slot = path->slots[lowest_level];
12225d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
12235d4f98a2SYan Zheng 
12245d4f98a2SYan Zheng 	eb = btrfs_lock_root_node(dest);
12255d4f98a2SYan Zheng 	level = btrfs_header_level(eb);
12265d4f98a2SYan Zheng 
12275d4f98a2SYan Zheng 	if (level < lowest_level) {
12285d4f98a2SYan Zheng 		btrfs_tree_unlock(eb);
12295d4f98a2SYan Zheng 		free_extent_buffer(eb);
12305d4f98a2SYan Zheng 		return 0;
12315d4f98a2SYan Zheng 	}
12325d4f98a2SYan Zheng 
12333fd0a558SYan, Zheng 	if (cow) {
12349631e4ccSJosef Bacik 		ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb,
12359631e4ccSJosef Bacik 				      BTRFS_NESTING_COW);
12365d4f98a2SYan Zheng 		BUG_ON(ret);
12373fd0a558SYan, Zheng 	}
12385d4f98a2SYan Zheng 
12395d4f98a2SYan Zheng 	if (next_key) {
12405d4f98a2SYan Zheng 		next_key->objectid = (u64)-1;
12415d4f98a2SYan Zheng 		next_key->type = (u8)-1;
12425d4f98a2SYan Zheng 		next_key->offset = (u64)-1;
12435d4f98a2SYan Zheng 	}
12445d4f98a2SYan Zheng 
12455d4f98a2SYan Zheng 	parent = eb;
12465d4f98a2SYan Zheng 	while (1) {
12475d4f98a2SYan Zheng 		level = btrfs_header_level(parent);
12485d4f98a2SYan Zheng 		BUG_ON(level < lowest_level);
12495d4f98a2SYan Zheng 
1250e3b83361SQu Wenruo 		ret = btrfs_bin_search(parent, &key, &slot);
1251cbca7d59SFilipe Manana 		if (ret < 0)
1252cbca7d59SFilipe Manana 			break;
12535d4f98a2SYan Zheng 		if (ret && slot > 0)
12545d4f98a2SYan Zheng 			slot--;
12555d4f98a2SYan Zheng 
12565d4f98a2SYan Zheng 		if (next_key && slot + 1 < btrfs_header_nritems(parent))
12575d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(parent, next_key, slot + 1);
12585d4f98a2SYan Zheng 
12595d4f98a2SYan Zheng 		old_bytenr = btrfs_node_blockptr(parent, slot);
12600b246afaSJeff Mahoney 		blocksize = fs_info->nodesize;
12615d4f98a2SYan Zheng 		old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
12625d4f98a2SYan Zheng 
12635d4f98a2SYan Zheng 		if (level <= max_level) {
12645d4f98a2SYan Zheng 			eb = path->nodes[level];
12655d4f98a2SYan Zheng 			new_bytenr = btrfs_node_blockptr(eb,
12665d4f98a2SYan Zheng 							path->slots[level]);
12675d4f98a2SYan Zheng 			new_ptr_gen = btrfs_node_ptr_generation(eb,
12685d4f98a2SYan Zheng 							path->slots[level]);
12695d4f98a2SYan Zheng 		} else {
12705d4f98a2SYan Zheng 			new_bytenr = 0;
12715d4f98a2SYan Zheng 			new_ptr_gen = 0;
12725d4f98a2SYan Zheng 		}
12735d4f98a2SYan Zheng 
1274fae7f21cSDulshani Gunawardhana 		if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
12755d4f98a2SYan Zheng 			ret = level;
12765d4f98a2SYan Zheng 			break;
12775d4f98a2SYan Zheng 		}
12785d4f98a2SYan Zheng 
12795d4f98a2SYan Zheng 		if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
12805d4f98a2SYan Zheng 		    memcmp_node_keys(parent, slot, path, level)) {
12813fd0a558SYan, Zheng 			if (level <= lowest_level) {
12825d4f98a2SYan Zheng 				ret = 0;
12835d4f98a2SYan Zheng 				break;
12845d4f98a2SYan Zheng 			}
12855d4f98a2SYan Zheng 
12866b3426beSJosef Bacik 			eb = btrfs_read_node_slot(parent, slot);
128764c043deSLiu Bo 			if (IS_ERR(eb)) {
128864c043deSLiu Bo 				ret = PTR_ERR(eb);
1289264813acSLiu Bo 				break;
1290416bc658SJosef Bacik 			}
12915d4f98a2SYan Zheng 			btrfs_tree_lock(eb);
12923fd0a558SYan, Zheng 			if (cow) {
12935d4f98a2SYan Zheng 				ret = btrfs_cow_block(trans, dest, eb, parent,
12949631e4ccSJosef Bacik 						      slot, &eb,
12959631e4ccSJosef Bacik 						      BTRFS_NESTING_COW);
12965d4f98a2SYan Zheng 				BUG_ON(ret);
12975d4f98a2SYan Zheng 			}
12985d4f98a2SYan Zheng 
12995d4f98a2SYan Zheng 			btrfs_tree_unlock(parent);
13005d4f98a2SYan Zheng 			free_extent_buffer(parent);
13015d4f98a2SYan Zheng 
13025d4f98a2SYan Zheng 			parent = eb;
13035d4f98a2SYan Zheng 			continue;
13045d4f98a2SYan Zheng 		}
13055d4f98a2SYan Zheng 
13063fd0a558SYan, Zheng 		if (!cow) {
13073fd0a558SYan, Zheng 			btrfs_tree_unlock(parent);
13083fd0a558SYan, Zheng 			free_extent_buffer(parent);
13093fd0a558SYan, Zheng 			cow = 1;
13103fd0a558SYan, Zheng 			goto again;
13113fd0a558SYan, Zheng 		}
13123fd0a558SYan, Zheng 
13135d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &key,
13145d4f98a2SYan Zheng 				      path->slots[level]);
1315b3b4aa74SDavid Sterba 		btrfs_release_path(path);
13165d4f98a2SYan Zheng 
13175d4f98a2SYan Zheng 		path->lowest_level = level;
13185d4f98a2SYan Zheng 		ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
13195d4f98a2SYan Zheng 		path->lowest_level = 0;
13205d4f98a2SYan Zheng 		BUG_ON(ret);
13215d4f98a2SYan Zheng 
13225d4f98a2SYan Zheng 		/*
1323824d8dffSQu Wenruo 		 * Info qgroup to trace both subtrees.
1324824d8dffSQu Wenruo 		 *
1325824d8dffSQu Wenruo 		 * We must trace both trees.
1326824d8dffSQu Wenruo 		 * 1) Tree reloc subtree
1327824d8dffSQu Wenruo 		 *    If not traced, we will leak data numbers
1328824d8dffSQu Wenruo 		 * 2) Fs subtree
1329824d8dffSQu Wenruo 		 *    If not traced, we will double count old data
1330f616f5cdSQu Wenruo 		 *
1331f616f5cdSQu Wenruo 		 * We don't scan the subtree right now, but only record
1332f616f5cdSQu Wenruo 		 * the swapped tree blocks.
1333f616f5cdSQu Wenruo 		 * The real subtree rescan is delayed until we have new
1334f616f5cdSQu Wenruo 		 * CoW on the subtree root node before transaction commit.
1335824d8dffSQu Wenruo 		 */
1336370a11b8SQu Wenruo 		ret = btrfs_qgroup_add_swapped_blocks(trans, dest,
1337370a11b8SQu Wenruo 				rc->block_group, parent, slot,
1338370a11b8SQu Wenruo 				path->nodes[level], path->slots[level],
1339370a11b8SQu Wenruo 				last_snapshot);
1340370a11b8SQu Wenruo 		if (ret < 0)
1341370a11b8SQu Wenruo 			break;
1342824d8dffSQu Wenruo 		/*
13435d4f98a2SYan Zheng 		 * swap blocks in fs tree and reloc tree.
13445d4f98a2SYan Zheng 		 */
13455d4f98a2SYan Zheng 		btrfs_set_node_blockptr(parent, slot, new_bytenr);
13465d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
13475d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(parent);
13485d4f98a2SYan Zheng 
13495d4f98a2SYan Zheng 		btrfs_set_node_blockptr(path->nodes[level],
13505d4f98a2SYan Zheng 					path->slots[level], old_bytenr);
13515d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(path->nodes[level],
13525d4f98a2SYan Zheng 					      path->slots[level], old_ptr_gen);
13535d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(path->nodes[level]);
13545d4f98a2SYan Zheng 
135582fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, old_bytenr,
135682fa113fSQu Wenruo 				       blocksize, path->nodes[level]->start);
135782fa113fSQu Wenruo 		ref.skip_qgroup = true;
135882fa113fSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
135982fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
13605d4f98a2SYan Zheng 		BUG_ON(ret);
136182fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
136282fa113fSQu Wenruo 				       blocksize, 0);
136382fa113fSQu Wenruo 		ref.skip_qgroup = true;
136482fa113fSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
136582fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
13665d4f98a2SYan Zheng 		BUG_ON(ret);
13675d4f98a2SYan Zheng 
1368ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, new_bytenr,
1369ffd4bb2aSQu Wenruo 				       blocksize, path->nodes[level]->start);
1370ffd4bb2aSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
1371ffd4bb2aSQu Wenruo 		ref.skip_qgroup = true;
1372ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
13735d4f98a2SYan Zheng 		BUG_ON(ret);
13745d4f98a2SYan Zheng 
1375ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, old_bytenr,
1376ffd4bb2aSQu Wenruo 				       blocksize, 0);
1377ffd4bb2aSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
1378ffd4bb2aSQu Wenruo 		ref.skip_qgroup = true;
1379ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
13805d4f98a2SYan Zheng 		BUG_ON(ret);
13815d4f98a2SYan Zheng 
13825d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
13835d4f98a2SYan Zheng 
13845d4f98a2SYan Zheng 		ret = level;
13855d4f98a2SYan Zheng 		break;
13865d4f98a2SYan Zheng 	}
13875d4f98a2SYan Zheng 	btrfs_tree_unlock(parent);
13885d4f98a2SYan Zheng 	free_extent_buffer(parent);
13895d4f98a2SYan Zheng 	return ret;
13905d4f98a2SYan Zheng }
13915d4f98a2SYan Zheng 
13925d4f98a2SYan Zheng /*
13935d4f98a2SYan Zheng  * helper to find next relocated block in reloc tree
13945d4f98a2SYan Zheng  */
13955d4f98a2SYan Zheng static noinline_for_stack
13965d4f98a2SYan Zheng int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
13975d4f98a2SYan Zheng 		       int *level)
13985d4f98a2SYan Zheng {
13995d4f98a2SYan Zheng 	struct extent_buffer *eb;
14005d4f98a2SYan Zheng 	int i;
14015d4f98a2SYan Zheng 	u64 last_snapshot;
14025d4f98a2SYan Zheng 	u32 nritems;
14035d4f98a2SYan Zheng 
14045d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
14055d4f98a2SYan Zheng 
14065d4f98a2SYan Zheng 	for (i = 0; i < *level; i++) {
14075d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
14085d4f98a2SYan Zheng 		path->nodes[i] = NULL;
14095d4f98a2SYan Zheng 	}
14105d4f98a2SYan Zheng 
14115d4f98a2SYan Zheng 	for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
14125d4f98a2SYan Zheng 		eb = path->nodes[i];
14135d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
14145d4f98a2SYan Zheng 		while (path->slots[i] + 1 < nritems) {
14155d4f98a2SYan Zheng 			path->slots[i]++;
14165d4f98a2SYan Zheng 			if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
14175d4f98a2SYan Zheng 			    last_snapshot)
14185d4f98a2SYan Zheng 				continue;
14195d4f98a2SYan Zheng 
14205d4f98a2SYan Zheng 			*level = i;
14215d4f98a2SYan Zheng 			return 0;
14225d4f98a2SYan Zheng 		}
14235d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
14245d4f98a2SYan Zheng 		path->nodes[i] = NULL;
14255d4f98a2SYan Zheng 	}
14265d4f98a2SYan Zheng 	return 1;
14275d4f98a2SYan Zheng }
14285d4f98a2SYan Zheng 
14295d4f98a2SYan Zheng /*
14305d4f98a2SYan Zheng  * walk down reloc tree to find relocated block of lowest level
14315d4f98a2SYan Zheng  */
14325d4f98a2SYan Zheng static noinline_for_stack
14335d4f98a2SYan Zheng int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
14345d4f98a2SYan Zheng 			 int *level)
14355d4f98a2SYan Zheng {
14365d4f98a2SYan Zheng 	struct extent_buffer *eb = NULL;
14375d4f98a2SYan Zheng 	int i;
14385d4f98a2SYan Zheng 	u64 ptr_gen = 0;
14395d4f98a2SYan Zheng 	u64 last_snapshot;
14405d4f98a2SYan Zheng 	u32 nritems;
14415d4f98a2SYan Zheng 
14425d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
14435d4f98a2SYan Zheng 
14445d4f98a2SYan Zheng 	for (i = *level; i > 0; i--) {
14455d4f98a2SYan Zheng 		eb = path->nodes[i];
14465d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
14475d4f98a2SYan Zheng 		while (path->slots[i] < nritems) {
14485d4f98a2SYan Zheng 			ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
14495d4f98a2SYan Zheng 			if (ptr_gen > last_snapshot)
14505d4f98a2SYan Zheng 				break;
14515d4f98a2SYan Zheng 			path->slots[i]++;
14525d4f98a2SYan Zheng 		}
14535d4f98a2SYan Zheng 		if (path->slots[i] >= nritems) {
14545d4f98a2SYan Zheng 			if (i == *level)
14555d4f98a2SYan Zheng 				break;
14565d4f98a2SYan Zheng 			*level = i + 1;
14575d4f98a2SYan Zheng 			return 0;
14585d4f98a2SYan Zheng 		}
14595d4f98a2SYan Zheng 		if (i == 1) {
14605d4f98a2SYan Zheng 			*level = i;
14615d4f98a2SYan Zheng 			return 0;
14625d4f98a2SYan Zheng 		}
14635d4f98a2SYan Zheng 
14648ef385bbSJosef Bacik 		eb = btrfs_read_node_slot(eb, path->slots[i]);
14658ef385bbSJosef Bacik 		if (IS_ERR(eb))
146664c043deSLiu Bo 			return PTR_ERR(eb);
14675d4f98a2SYan Zheng 		BUG_ON(btrfs_header_level(eb) != i - 1);
14685d4f98a2SYan Zheng 		path->nodes[i - 1] = eb;
14695d4f98a2SYan Zheng 		path->slots[i - 1] = 0;
14705d4f98a2SYan Zheng 	}
14715d4f98a2SYan Zheng 	return 1;
14725d4f98a2SYan Zheng }
14735d4f98a2SYan Zheng 
14745d4f98a2SYan Zheng /*
14755d4f98a2SYan Zheng  * invalidate extent cache for file extents whose key in range of
14765d4f98a2SYan Zheng  * [min_key, max_key)
14775d4f98a2SYan Zheng  */
14785d4f98a2SYan Zheng static int invalidate_extent_cache(struct btrfs_root *root,
14795d4f98a2SYan Zheng 				   struct btrfs_key *min_key,
14805d4f98a2SYan Zheng 				   struct btrfs_key *max_key)
14815d4f98a2SYan Zheng {
14820b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
14835d4f98a2SYan Zheng 	struct inode *inode = NULL;
14845d4f98a2SYan Zheng 	u64 objectid;
14855d4f98a2SYan Zheng 	u64 start, end;
148633345d01SLi Zefan 	u64 ino;
14875d4f98a2SYan Zheng 
14885d4f98a2SYan Zheng 	objectid = min_key->objectid;
14895d4f98a2SYan Zheng 	while (1) {
14905d4f98a2SYan Zheng 		cond_resched();
14915d4f98a2SYan Zheng 		iput(inode);
14925d4f98a2SYan Zheng 
14935d4f98a2SYan Zheng 		if (objectid > max_key->objectid)
14945d4f98a2SYan Zheng 			break;
14955d4f98a2SYan Zheng 
14965d4f98a2SYan Zheng 		inode = find_next_inode(root, objectid);
14975d4f98a2SYan Zheng 		if (!inode)
14985d4f98a2SYan Zheng 			break;
14994a0cc7caSNikolay Borisov 		ino = btrfs_ino(BTRFS_I(inode));
15005d4f98a2SYan Zheng 
150133345d01SLi Zefan 		if (ino > max_key->objectid) {
15025d4f98a2SYan Zheng 			iput(inode);
15035d4f98a2SYan Zheng 			break;
15045d4f98a2SYan Zheng 		}
15055d4f98a2SYan Zheng 
150633345d01SLi Zefan 		objectid = ino + 1;
15075d4f98a2SYan Zheng 		if (!S_ISREG(inode->i_mode))
15085d4f98a2SYan Zheng 			continue;
15095d4f98a2SYan Zheng 
151033345d01SLi Zefan 		if (unlikely(min_key->objectid == ino)) {
15115d4f98a2SYan Zheng 			if (min_key->type > BTRFS_EXTENT_DATA_KEY)
15125d4f98a2SYan Zheng 				continue;
15135d4f98a2SYan Zheng 			if (min_key->type < BTRFS_EXTENT_DATA_KEY)
15145d4f98a2SYan Zheng 				start = 0;
15155d4f98a2SYan Zheng 			else {
15165d4f98a2SYan Zheng 				start = min_key->offset;
15170b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(start, fs_info->sectorsize));
15185d4f98a2SYan Zheng 			}
15195d4f98a2SYan Zheng 		} else {
15205d4f98a2SYan Zheng 			start = 0;
15215d4f98a2SYan Zheng 		}
15225d4f98a2SYan Zheng 
152333345d01SLi Zefan 		if (unlikely(max_key->objectid == ino)) {
15245d4f98a2SYan Zheng 			if (max_key->type < BTRFS_EXTENT_DATA_KEY)
15255d4f98a2SYan Zheng 				continue;
15265d4f98a2SYan Zheng 			if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
15275d4f98a2SYan Zheng 				end = (u64)-1;
15285d4f98a2SYan Zheng 			} else {
15295d4f98a2SYan Zheng 				if (max_key->offset == 0)
15305d4f98a2SYan Zheng 					continue;
15315d4f98a2SYan Zheng 				end = max_key->offset;
15320b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
15335d4f98a2SYan Zheng 				end--;
15345d4f98a2SYan Zheng 			}
15355d4f98a2SYan Zheng 		} else {
15365d4f98a2SYan Zheng 			end = (u64)-1;
15375d4f98a2SYan Zheng 		}
15385d4f98a2SYan Zheng 
15395d4f98a2SYan Zheng 		/* the lock_extent waits for readpage to complete */
1540d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
1541dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 1);
1542d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
15435d4f98a2SYan Zheng 	}
15445d4f98a2SYan Zheng 	return 0;
15455d4f98a2SYan Zheng }
15465d4f98a2SYan Zheng 
15475d4f98a2SYan Zheng static int find_next_key(struct btrfs_path *path, int level,
15485d4f98a2SYan Zheng 			 struct btrfs_key *key)
15495d4f98a2SYan Zheng 
15505d4f98a2SYan Zheng {
15515d4f98a2SYan Zheng 	while (level < BTRFS_MAX_LEVEL) {
15525d4f98a2SYan Zheng 		if (!path->nodes[level])
15535d4f98a2SYan Zheng 			break;
15545d4f98a2SYan Zheng 		if (path->slots[level] + 1 <
15555d4f98a2SYan Zheng 		    btrfs_header_nritems(path->nodes[level])) {
15565d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], key,
15575d4f98a2SYan Zheng 					      path->slots[level] + 1);
15585d4f98a2SYan Zheng 			return 0;
15595d4f98a2SYan Zheng 		}
15605d4f98a2SYan Zheng 		level++;
15615d4f98a2SYan Zheng 	}
15625d4f98a2SYan Zheng 	return 1;
15635d4f98a2SYan Zheng }
15645d4f98a2SYan Zheng 
15655d4f98a2SYan Zheng /*
1566d2311e69SQu Wenruo  * Insert current subvolume into reloc_control::dirty_subvol_roots
1567d2311e69SQu Wenruo  */
1568d2311e69SQu Wenruo static void insert_dirty_subvol(struct btrfs_trans_handle *trans,
1569d2311e69SQu Wenruo 				struct reloc_control *rc,
1570d2311e69SQu Wenruo 				struct btrfs_root *root)
1571d2311e69SQu Wenruo {
1572d2311e69SQu Wenruo 	struct btrfs_root *reloc_root = root->reloc_root;
1573d2311e69SQu Wenruo 	struct btrfs_root_item *reloc_root_item;
1574d2311e69SQu Wenruo 
1575d2311e69SQu Wenruo 	/* @root must be a subvolume tree root with a valid reloc tree */
1576d2311e69SQu Wenruo 	ASSERT(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
1577d2311e69SQu Wenruo 	ASSERT(reloc_root);
1578d2311e69SQu Wenruo 
1579d2311e69SQu Wenruo 	reloc_root_item = &reloc_root->root_item;
1580d2311e69SQu Wenruo 	memset(&reloc_root_item->drop_progress, 0,
1581d2311e69SQu Wenruo 		sizeof(reloc_root_item->drop_progress));
1582c8422684SDavid Sterba 	btrfs_set_root_drop_level(reloc_root_item, 0);
1583d2311e69SQu Wenruo 	btrfs_set_root_refs(reloc_root_item, 0);
1584d2311e69SQu Wenruo 	btrfs_update_reloc_root(trans, root);
1585d2311e69SQu Wenruo 
1586d2311e69SQu Wenruo 	if (list_empty(&root->reloc_dirty_list)) {
158700246528SJosef Bacik 		btrfs_grab_root(root);
1588d2311e69SQu Wenruo 		list_add_tail(&root->reloc_dirty_list, &rc->dirty_subvol_roots);
1589d2311e69SQu Wenruo 	}
1590d2311e69SQu Wenruo }
1591d2311e69SQu Wenruo 
1592d2311e69SQu Wenruo static int clean_dirty_subvols(struct reloc_control *rc)
1593d2311e69SQu Wenruo {
1594d2311e69SQu Wenruo 	struct btrfs_root *root;
1595d2311e69SQu Wenruo 	struct btrfs_root *next;
1596d2311e69SQu Wenruo 	int ret = 0;
159730d40577SQu Wenruo 	int ret2;
1598d2311e69SQu Wenruo 
1599d2311e69SQu Wenruo 	list_for_each_entry_safe(root, next, &rc->dirty_subvol_roots,
1600d2311e69SQu Wenruo 				 reloc_dirty_list) {
160130d40577SQu Wenruo 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
160230d40577SQu Wenruo 			/* Merged subvolume, cleanup its reloc root */
1603d2311e69SQu Wenruo 			struct btrfs_root *reloc_root = root->reloc_root;
1604d2311e69SQu Wenruo 
1605d2311e69SQu Wenruo 			list_del_init(&root->reloc_dirty_list);
1606d2311e69SQu Wenruo 			root->reloc_root = NULL;
16076282675eSQu Wenruo 			/*
16086282675eSQu Wenruo 			 * Need barrier to ensure clear_bit() only happens after
16096282675eSQu Wenruo 			 * root->reloc_root = NULL. Pairs with have_reloc_root.
16106282675eSQu Wenruo 			 */
16116282675eSQu Wenruo 			smp_wmb();
16121fac4a54SQu Wenruo 			clear_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
1613f28de8d8SJosef Bacik 			if (reloc_root) {
1614f44deb74SJosef Bacik 				/*
1615f44deb74SJosef Bacik 				 * btrfs_drop_snapshot drops our ref we hold for
1616f44deb74SJosef Bacik 				 * ->reloc_root.  If it fails however we must
1617f44deb74SJosef Bacik 				 * drop the ref ourselves.
1618f44deb74SJosef Bacik 				 */
1619f28de8d8SJosef Bacik 				ret2 = btrfs_drop_snapshot(reloc_root, 0, 1);
1620f44deb74SJosef Bacik 				if (ret2 < 0) {
1621f44deb74SJosef Bacik 					btrfs_put_root(reloc_root);
1622f44deb74SJosef Bacik 					if (!ret)
1623f28de8d8SJosef Bacik 						ret = ret2;
1624f28de8d8SJosef Bacik 				}
1625f44deb74SJosef Bacik 			}
162600246528SJosef Bacik 			btrfs_put_root(root);
162730d40577SQu Wenruo 		} else {
162830d40577SQu Wenruo 			/* Orphan reloc tree, just clean it up */
16290078a9f9SNikolay Borisov 			ret2 = btrfs_drop_snapshot(root, 0, 1);
1630f44deb74SJosef Bacik 			if (ret2 < 0) {
1631f44deb74SJosef Bacik 				btrfs_put_root(root);
1632f44deb74SJosef Bacik 				if (!ret)
163330d40577SQu Wenruo 					ret = ret2;
163430d40577SQu Wenruo 			}
1635d2311e69SQu Wenruo 		}
1636f44deb74SJosef Bacik 	}
1637d2311e69SQu Wenruo 	return ret;
1638d2311e69SQu Wenruo }
1639d2311e69SQu Wenruo 
1640d2311e69SQu Wenruo /*
16415d4f98a2SYan Zheng  * merge the relocated tree blocks in reloc tree with corresponding
16425d4f98a2SYan Zheng  * fs tree.
16435d4f98a2SYan Zheng  */
16445d4f98a2SYan Zheng static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
16455d4f98a2SYan Zheng 					       struct btrfs_root *root)
16465d4f98a2SYan Zheng {
16470b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
16485d4f98a2SYan Zheng 	struct btrfs_key key;
16495d4f98a2SYan Zheng 	struct btrfs_key next_key;
16509e6a0c52SJosef Bacik 	struct btrfs_trans_handle *trans = NULL;
16515d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
16525d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
16535d4f98a2SYan Zheng 	struct btrfs_path *path;
16543fd0a558SYan, Zheng 	struct extent_buffer *leaf;
1655fca3a45dSJosef Bacik 	int reserve_level;
16565d4f98a2SYan Zheng 	int level;
16575d4f98a2SYan Zheng 	int max_level;
16585d4f98a2SYan Zheng 	int replaced = 0;
1659c6a592f2SNikolay Borisov 	int ret = 0;
16603fd0a558SYan, Zheng 	u32 min_reserved;
16615d4f98a2SYan Zheng 
16625d4f98a2SYan Zheng 	path = btrfs_alloc_path();
16635d4f98a2SYan Zheng 	if (!path)
16645d4f98a2SYan Zheng 		return -ENOMEM;
1665e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
16665d4f98a2SYan Zheng 
16675d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
16685d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
16695d4f98a2SYan Zheng 
16705d4f98a2SYan Zheng 	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
16715d4f98a2SYan Zheng 		level = btrfs_root_level(root_item);
167267439dadSDavid Sterba 		atomic_inc(&reloc_root->node->refs);
16735d4f98a2SYan Zheng 		path->nodes[level] = reloc_root->node;
16745d4f98a2SYan Zheng 		path->slots[level] = 0;
16755d4f98a2SYan Zheng 	} else {
16765d4f98a2SYan Zheng 		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
16775d4f98a2SYan Zheng 
1678c8422684SDavid Sterba 		level = btrfs_root_drop_level(root_item);
16795d4f98a2SYan Zheng 		BUG_ON(level == 0);
16805d4f98a2SYan Zheng 		path->lowest_level = level;
16815d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
168233c66f43SYan Zheng 		path->lowest_level = 0;
16835d4f98a2SYan Zheng 		if (ret < 0) {
16845d4f98a2SYan Zheng 			btrfs_free_path(path);
16855d4f98a2SYan Zheng 			return ret;
16865d4f98a2SYan Zheng 		}
16875d4f98a2SYan Zheng 
16885d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &next_key,
16895d4f98a2SYan Zheng 				      path->slots[level]);
16905d4f98a2SYan Zheng 		WARN_ON(memcmp(&key, &next_key, sizeof(key)));
16915d4f98a2SYan Zheng 
16925d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
16935d4f98a2SYan Zheng 	}
16945d4f98a2SYan Zheng 
169544d354abSQu Wenruo 	/*
169644d354abSQu Wenruo 	 * In merge_reloc_root(), we modify the upper level pointer to swap the
169744d354abSQu Wenruo 	 * tree blocks between reloc tree and subvolume tree.  Thus for tree
169844d354abSQu Wenruo 	 * block COW, we COW at most from level 1 to root level for each tree.
169944d354abSQu Wenruo 	 *
170044d354abSQu Wenruo 	 * Thus the needed metadata size is at most root_level * nodesize,
170144d354abSQu Wenruo 	 * and * 2 since we have two trees to COW.
170244d354abSQu Wenruo 	 */
1703fca3a45dSJosef Bacik 	reserve_level = max_t(int, 1, btrfs_root_level(root_item));
1704fca3a45dSJosef Bacik 	min_reserved = fs_info->nodesize * reserve_level * 2;
17055d4f98a2SYan Zheng 	memset(&next_key, 0, sizeof(next_key));
17065d4f98a2SYan Zheng 
17075d4f98a2SYan Zheng 	while (1) {
170808e007d2SMiao Xie 		ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
170944d354abSQu Wenruo 					     BTRFS_RESERVE_FLUSH_LIMIT);
1710c6a592f2SNikolay Borisov 		if (ret)
17119e6a0c52SJosef Bacik 			goto out;
17129e6a0c52SJosef Bacik 		trans = btrfs_start_transaction(root, 0);
17139e6a0c52SJosef Bacik 		if (IS_ERR(trans)) {
1714c6a592f2SNikolay Borisov 			ret = PTR_ERR(trans);
17159e6a0c52SJosef Bacik 			trans = NULL;
17169e6a0c52SJosef Bacik 			goto out;
17179e6a0c52SJosef Bacik 		}
17182abc726aSJosef Bacik 
17192abc726aSJosef Bacik 		/*
17202abc726aSJosef Bacik 		 * At this point we no longer have a reloc_control, so we can't
17212abc726aSJosef Bacik 		 * depend on btrfs_init_reloc_root to update our last_trans.
17222abc726aSJosef Bacik 		 *
17232abc726aSJosef Bacik 		 * But that's ok, we started the trans handle on our
17242abc726aSJosef Bacik 		 * corresponding fs_root, which means it's been added to the
17252abc726aSJosef Bacik 		 * dirty list.  At commit time we'll still call
17262abc726aSJosef Bacik 		 * btrfs_update_reloc_root() and update our root item
17272abc726aSJosef Bacik 		 * appropriately.
17282abc726aSJosef Bacik 		 */
17292abc726aSJosef Bacik 		reloc_root->last_trans = trans->transid;
17309e6a0c52SJosef Bacik 		trans->block_rsv = rc->block_rsv;
17313fd0a558SYan, Zheng 
17323fd0a558SYan, Zheng 		replaced = 0;
17335d4f98a2SYan Zheng 		max_level = level;
17345d4f98a2SYan Zheng 
17355d4f98a2SYan Zheng 		ret = walk_down_reloc_tree(reloc_root, path, &level);
1736c6a592f2SNikolay Borisov 		if (ret < 0)
17375d4f98a2SYan Zheng 			goto out;
17385d4f98a2SYan Zheng 		if (ret > 0)
17395d4f98a2SYan Zheng 			break;
17405d4f98a2SYan Zheng 
17415d4f98a2SYan Zheng 		if (!find_next_key(path, level, &key) &&
17425d4f98a2SYan Zheng 		    btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
17435d4f98a2SYan Zheng 			ret = 0;
17445d4f98a2SYan Zheng 		} else {
17453d0174f7SQu Wenruo 			ret = replace_path(trans, rc, root, reloc_root, path,
17463fd0a558SYan, Zheng 					   &next_key, level, max_level);
17475d4f98a2SYan Zheng 		}
1748c6a592f2SNikolay Borisov 		if (ret < 0)
17495d4f98a2SYan Zheng 			goto out;
17505d4f98a2SYan Zheng 		if (ret > 0) {
17515d4f98a2SYan Zheng 			level = ret;
17525d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], &key,
17535d4f98a2SYan Zheng 					      path->slots[level]);
17545d4f98a2SYan Zheng 			replaced = 1;
17555d4f98a2SYan Zheng 		}
17565d4f98a2SYan Zheng 
17575d4f98a2SYan Zheng 		ret = walk_up_reloc_tree(reloc_root, path, &level);
17585d4f98a2SYan Zheng 		if (ret > 0)
17595d4f98a2SYan Zheng 			break;
17605d4f98a2SYan Zheng 
17615d4f98a2SYan Zheng 		BUG_ON(level == 0);
17625d4f98a2SYan Zheng 		/*
17635d4f98a2SYan Zheng 		 * save the merging progress in the drop_progress.
17645d4f98a2SYan Zheng 		 * this is OK since root refs == 1 in this case.
17655d4f98a2SYan Zheng 		 */
17665d4f98a2SYan Zheng 		btrfs_node_key(path->nodes[level], &root_item->drop_progress,
17675d4f98a2SYan Zheng 			       path->slots[level]);
1768c8422684SDavid Sterba 		btrfs_set_root_drop_level(root_item, level);
17695d4f98a2SYan Zheng 
17703a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
17719e6a0c52SJosef Bacik 		trans = NULL;
17725d4f98a2SYan Zheng 
17732ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
17745d4f98a2SYan Zheng 
17755d4f98a2SYan Zheng 		if (replaced && rc->stage == UPDATE_DATA_PTRS)
17765d4f98a2SYan Zheng 			invalidate_extent_cache(root, &key, &next_key);
17775d4f98a2SYan Zheng 	}
17785d4f98a2SYan Zheng 
17795d4f98a2SYan Zheng 	/*
17805d4f98a2SYan Zheng 	 * handle the case only one block in the fs tree need to be
17815d4f98a2SYan Zheng 	 * relocated and the block is tree root.
17825d4f98a2SYan Zheng 	 */
17835d4f98a2SYan Zheng 	leaf = btrfs_lock_root_node(root);
17849631e4ccSJosef Bacik 	ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf,
17859631e4ccSJosef Bacik 			      BTRFS_NESTING_COW);
17865d4f98a2SYan Zheng 	btrfs_tree_unlock(leaf);
17875d4f98a2SYan Zheng 	free_extent_buffer(leaf);
17885d4f98a2SYan Zheng out:
17895d4f98a2SYan Zheng 	btrfs_free_path(path);
17905d4f98a2SYan Zheng 
1791c6a592f2SNikolay Borisov 	if (ret == 0)
1792d2311e69SQu Wenruo 		insert_dirty_subvol(trans, rc, root);
17935d4f98a2SYan Zheng 
17949e6a0c52SJosef Bacik 	if (trans)
17953a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
17965d4f98a2SYan Zheng 
17972ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
17985d4f98a2SYan Zheng 
17995d4f98a2SYan Zheng 	if (replaced && rc->stage == UPDATE_DATA_PTRS)
18005d4f98a2SYan Zheng 		invalidate_extent_cache(root, &key, &next_key);
18015d4f98a2SYan Zheng 
1802c6a592f2SNikolay Borisov 	return ret;
18035d4f98a2SYan Zheng }
18045d4f98a2SYan Zheng 
18053fd0a558SYan, Zheng static noinline_for_stack
18063fd0a558SYan, Zheng int prepare_to_merge(struct reloc_control *rc, int err)
18075d4f98a2SYan Zheng {
18083fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
18090b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
18103fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
18115d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
18123fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
18133fd0a558SYan, Zheng 	u64 num_bytes = 0;
18143fd0a558SYan, Zheng 	int ret;
18153fd0a558SYan, Zheng 
18160b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
18170b246afaSJeff Mahoney 	rc->merging_rsv_size += fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
18183fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated * 2;
18190b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
18207585717fSChris Mason 
18213fd0a558SYan, Zheng again:
18223fd0a558SYan, Zheng 	if (!err) {
18233fd0a558SYan, Zheng 		num_bytes = rc->merging_rsv_size;
182408e007d2SMiao Xie 		ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
182508e007d2SMiao Xie 					  BTRFS_RESERVE_FLUSH_ALL);
18263fd0a558SYan, Zheng 		if (ret)
18273fd0a558SYan, Zheng 			err = ret;
18283fd0a558SYan, Zheng 	}
18293fd0a558SYan, Zheng 
18307a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
18313612b495STsutomu Itoh 	if (IS_ERR(trans)) {
18323612b495STsutomu Itoh 		if (!err)
18332ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
183463f018beSNikolay Borisov 						num_bytes, NULL);
18353612b495STsutomu Itoh 		return PTR_ERR(trans);
18363612b495STsutomu Itoh 	}
18373fd0a558SYan, Zheng 
18383fd0a558SYan, Zheng 	if (!err) {
18393fd0a558SYan, Zheng 		if (num_bytes != rc->merging_rsv_size) {
18403a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
18412ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
184263f018beSNikolay Borisov 						num_bytes, NULL);
18433fd0a558SYan, Zheng 			goto again;
18443fd0a558SYan, Zheng 		}
18453fd0a558SYan, Zheng 	}
18463fd0a558SYan, Zheng 
18473fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
18483fd0a558SYan, Zheng 
18493fd0a558SYan, Zheng 	while (!list_empty(&rc->reloc_roots)) {
18503fd0a558SYan, Zheng 		reloc_root = list_entry(rc->reloc_roots.next,
18513fd0a558SYan, Zheng 					struct btrfs_root, root_list);
18523fd0a558SYan, Zheng 		list_del_init(&reloc_root->root_list);
18533fd0a558SYan, Zheng 
1854a820feb5SDavid Sterba 		root = btrfs_get_fs_root(fs_info, reloc_root->root_key.offset,
1855a820feb5SDavid Sterba 				false);
18563fd0a558SYan, Zheng 		BUG_ON(IS_ERR(root));
18573fd0a558SYan, Zheng 		BUG_ON(root->reloc_root != reloc_root);
18583fd0a558SYan, Zheng 
18593fd0a558SYan, Zheng 		/*
18603fd0a558SYan, Zheng 		 * set reference count to 1, so btrfs_recover_relocation
18613fd0a558SYan, Zheng 		 * knows it should resumes merging
18623fd0a558SYan, Zheng 		 */
18633fd0a558SYan, Zheng 		if (!err)
18643fd0a558SYan, Zheng 			btrfs_set_root_refs(&reloc_root->root_item, 1);
18653fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
18663fd0a558SYan, Zheng 
18673fd0a558SYan, Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
186800246528SJosef Bacik 		btrfs_put_root(root);
18693fd0a558SYan, Zheng 	}
18703fd0a558SYan, Zheng 
18713fd0a558SYan, Zheng 	list_splice(&reloc_roots, &rc->reloc_roots);
18723fd0a558SYan, Zheng 
18733fd0a558SYan, Zheng 	if (!err)
18743a45bb20SJeff Mahoney 		btrfs_commit_transaction(trans);
18753fd0a558SYan, Zheng 	else
18763a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
18773fd0a558SYan, Zheng 	return err;
18783fd0a558SYan, Zheng }
18793fd0a558SYan, Zheng 
18803fd0a558SYan, Zheng static noinline_for_stack
1881aca1bba6SLiu Bo void free_reloc_roots(struct list_head *list)
1882aca1bba6SLiu Bo {
1883a7571232SNikolay Borisov 	struct btrfs_root *reloc_root, *tmp;
1884aca1bba6SLiu Bo 
1885a7571232SNikolay Borisov 	list_for_each_entry_safe(reloc_root, tmp, list, root_list)
1886bb166d72SNaohiro Aota 		__del_reloc_root(reloc_root);
1887aca1bba6SLiu Bo }
1888aca1bba6SLiu Bo 
1889aca1bba6SLiu Bo static noinline_for_stack
189094404e82SDavid Sterba void merge_reloc_roots(struct reloc_control *rc)
18913fd0a558SYan, Zheng {
18920b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
18935d4f98a2SYan Zheng 	struct btrfs_root *root;
18945d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
18953fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
18963fd0a558SYan, Zheng 	int found = 0;
1897aca1bba6SLiu Bo 	int ret = 0;
18983fd0a558SYan, Zheng again:
18993fd0a558SYan, Zheng 	root = rc->extent_root;
19007585717fSChris Mason 
19017585717fSChris Mason 	/*
19027585717fSChris Mason 	 * this serializes us with btrfs_record_root_in_transaction,
19037585717fSChris Mason 	 * we have to make sure nobody is in the middle of
19047585717fSChris Mason 	 * adding their roots to the list while we are
19057585717fSChris Mason 	 * doing this splice
19067585717fSChris Mason 	 */
19070b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
19083fd0a558SYan, Zheng 	list_splice_init(&rc->reloc_roots, &reloc_roots);
19090b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
19105d4f98a2SYan Zheng 
19113fd0a558SYan, Zheng 	while (!list_empty(&reloc_roots)) {
19123fd0a558SYan, Zheng 		found = 1;
19133fd0a558SYan, Zheng 		reloc_root = list_entry(reloc_roots.next,
19143fd0a558SYan, Zheng 					struct btrfs_root, root_list);
19155d4f98a2SYan Zheng 
1916a820feb5SDavid Sterba 		root = btrfs_get_fs_root(fs_info, reloc_root->root_key.offset,
1917a820feb5SDavid Sterba 					 false);
19185d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
19195d4f98a2SYan Zheng 			BUG_ON(IS_ERR(root));
19205d4f98a2SYan Zheng 			BUG_ON(root->reloc_root != reloc_root);
19213fd0a558SYan, Zheng 			ret = merge_reloc_root(rc, root);
192200246528SJosef Bacik 			btrfs_put_root(root);
1923b37b39cdSJosef Bacik 			if (ret) {
192425e293c2SWang Shilong 				if (list_empty(&reloc_root->root_list))
192525e293c2SWang Shilong 					list_add_tail(&reloc_root->root_list,
192625e293c2SWang Shilong 						      &reloc_roots);
1927aca1bba6SLiu Bo 				goto out;
1928b37b39cdSJosef Bacik 			}
19293fd0a558SYan, Zheng 		} else {
193051415b6cSQu Wenruo 			if (!IS_ERR(root)) {
193151415b6cSQu Wenruo 				if (root->reloc_root == reloc_root) {
193251415b6cSQu Wenruo 					root->reloc_root = NULL;
193351415b6cSQu Wenruo 					btrfs_put_root(reloc_root);
193451415b6cSQu Wenruo 				}
19351dae7e0eSQu Wenruo 				clear_bit(BTRFS_ROOT_DEAD_RELOC_TREE,
19361dae7e0eSQu Wenruo 					  &root->state);
193751415b6cSQu Wenruo 				btrfs_put_root(root);
193851415b6cSQu Wenruo 			}
193951415b6cSQu Wenruo 
19403fd0a558SYan, Zheng 			list_del_init(&reloc_root->root_list);
194130d40577SQu Wenruo 			/* Don't forget to queue this reloc root for cleanup */
194230d40577SQu Wenruo 			list_add_tail(&reloc_root->reloc_dirty_list,
194330d40577SQu Wenruo 				      &rc->dirty_subvol_roots);
19443fd0a558SYan, Zheng 		}
19455d4f98a2SYan Zheng 	}
19465d4f98a2SYan Zheng 
19473fd0a558SYan, Zheng 	if (found) {
19483fd0a558SYan, Zheng 		found = 0;
19493fd0a558SYan, Zheng 		goto again;
19505d4f98a2SYan Zheng 	}
1951aca1bba6SLiu Bo out:
1952aca1bba6SLiu Bo 	if (ret) {
19530b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret, NULL);
1954aca1bba6SLiu Bo 		free_reloc_roots(&reloc_roots);
1955467bb1d2SWang Shilong 
1956467bb1d2SWang Shilong 		/* new reloc root may be added */
19570b246afaSJeff Mahoney 		mutex_lock(&fs_info->reloc_mutex);
1958467bb1d2SWang Shilong 		list_splice_init(&rc->reloc_roots, &reloc_roots);
19590b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
1960467bb1d2SWang Shilong 		free_reloc_roots(&reloc_roots);
1961aca1bba6SLiu Bo 	}
1962aca1bba6SLiu Bo 
19637b7b7431SJosef Bacik 	/*
19647b7b7431SJosef Bacik 	 * We used to have
19657b7b7431SJosef Bacik 	 *
19667b7b7431SJosef Bacik 	 * BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
19677b7b7431SJosef Bacik 	 *
19687b7b7431SJosef Bacik 	 * here, but it's wrong.  If we fail to start the transaction in
19697b7b7431SJosef Bacik 	 * prepare_to_merge() we will have only 0 ref reloc roots, none of which
19707b7b7431SJosef Bacik 	 * have actually been removed from the reloc_root_tree rb tree.  This is
19717b7b7431SJosef Bacik 	 * fine because we're bailing here, and we hold a reference on the root
19727b7b7431SJosef Bacik 	 * for the list that holds it, so these roots will be cleaned up when we
19737b7b7431SJosef Bacik 	 * do the reloc_dirty_list afterwards.  Meanwhile the root->reloc_root
19747b7b7431SJosef Bacik 	 * will be cleaned up on unmount.
19757b7b7431SJosef Bacik 	 *
19767b7b7431SJosef Bacik 	 * The remaining nodes will be cleaned up by free_reloc_control.
19777b7b7431SJosef Bacik 	 */
19785d4f98a2SYan Zheng }
19795d4f98a2SYan Zheng 
19805d4f98a2SYan Zheng static void free_block_list(struct rb_root *blocks)
19815d4f98a2SYan Zheng {
19825d4f98a2SYan Zheng 	struct tree_block *block;
19835d4f98a2SYan Zheng 	struct rb_node *rb_node;
19845d4f98a2SYan Zheng 	while ((rb_node = rb_first(blocks))) {
19855d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
19865d4f98a2SYan Zheng 		rb_erase(rb_node, blocks);
19875d4f98a2SYan Zheng 		kfree(block);
19885d4f98a2SYan Zheng 	}
19895d4f98a2SYan Zheng }
19905d4f98a2SYan Zheng 
19915d4f98a2SYan Zheng static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
19925d4f98a2SYan Zheng 				      struct btrfs_root *reloc_root)
19935d4f98a2SYan Zheng {
19940b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = reloc_root->fs_info;
19955d4f98a2SYan Zheng 	struct btrfs_root *root;
1996442b1ac5SJosef Bacik 	int ret;
19975d4f98a2SYan Zheng 
19985d4f98a2SYan Zheng 	if (reloc_root->last_trans == trans->transid)
19995d4f98a2SYan Zheng 		return 0;
20005d4f98a2SYan Zheng 
2001a820feb5SDavid Sterba 	root = btrfs_get_fs_root(fs_info, reloc_root->root_key.offset, false);
2002404bccbcSJosef Bacik 
2003404bccbcSJosef Bacik 	/*
2004404bccbcSJosef Bacik 	 * This should succeed, since we can't have a reloc root without having
2005404bccbcSJosef Bacik 	 * already looked up the actual root and created the reloc root for this
2006404bccbcSJosef Bacik 	 * root.
2007404bccbcSJosef Bacik 	 *
2008404bccbcSJosef Bacik 	 * However if there's some sort of corruption where we have a ref to a
2009404bccbcSJosef Bacik 	 * reloc root without a corresponding root this could return ENOENT.
2010404bccbcSJosef Bacik 	 */
2011404bccbcSJosef Bacik 	if (IS_ERR(root)) {
2012404bccbcSJosef Bacik 		ASSERT(0);
2013404bccbcSJosef Bacik 		return PTR_ERR(root);
2014404bccbcSJosef Bacik 	}
2015404bccbcSJosef Bacik 	if (root->reloc_root != reloc_root) {
2016404bccbcSJosef Bacik 		ASSERT(0);
2017404bccbcSJosef Bacik 		btrfs_err(fs_info,
2018404bccbcSJosef Bacik 			  "root %llu has two reloc roots associated with it",
2019404bccbcSJosef Bacik 			  reloc_root->root_key.offset);
2020404bccbcSJosef Bacik 		btrfs_put_root(root);
2021404bccbcSJosef Bacik 		return -EUCLEAN;
2022404bccbcSJosef Bacik 	}
2023442b1ac5SJosef Bacik 	ret = btrfs_record_root_in_trans(trans, root);
202400246528SJosef Bacik 	btrfs_put_root(root);
20255d4f98a2SYan Zheng 
2026442b1ac5SJosef Bacik 	return ret;
20275d4f98a2SYan Zheng }
20285d4f98a2SYan Zheng 
20293fd0a558SYan, Zheng static noinline_for_stack
20303fd0a558SYan, Zheng struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
20313fd0a558SYan, Zheng 				     struct reloc_control *rc,
2032a26195a5SQu Wenruo 				     struct btrfs_backref_node *node,
2033a26195a5SQu Wenruo 				     struct btrfs_backref_edge *edges[])
20345d4f98a2SYan Zheng {
2035a26195a5SQu Wenruo 	struct btrfs_backref_node *next;
20365d4f98a2SYan Zheng 	struct btrfs_root *root;
20373fd0a558SYan, Zheng 	int index = 0;
203892de551bSJosef Bacik 	int ret;
20393fd0a558SYan, Zheng 
20405d4f98a2SYan Zheng 	next = node;
20415d4f98a2SYan Zheng 	while (1) {
20425d4f98a2SYan Zheng 		cond_resched();
20435d4f98a2SYan Zheng 		next = walk_up_backref(next, edges, &index);
20445d4f98a2SYan Zheng 		root = next->root;
20458ee66afeSJosef Bacik 
20468ee66afeSJosef Bacik 		/*
20478ee66afeSJosef Bacik 		 * If there is no root, then our references for this block are
20488ee66afeSJosef Bacik 		 * incomplete, as we should be able to walk all the way up to a
20498ee66afeSJosef Bacik 		 * block that is owned by a root.
20508ee66afeSJosef Bacik 		 *
20518ee66afeSJosef Bacik 		 * This path is only for SHAREABLE roots, so if we come upon a
20528ee66afeSJosef Bacik 		 * non-SHAREABLE root then we have backrefs that resolve
20538ee66afeSJosef Bacik 		 * improperly.
20548ee66afeSJosef Bacik 		 *
20558ee66afeSJosef Bacik 		 * Both of these cases indicate file system corruption, or a bug
20568ee66afeSJosef Bacik 		 * in the backref walking code.
20578ee66afeSJosef Bacik 		 */
20588ee66afeSJosef Bacik 		if (!root) {
20598ee66afeSJosef Bacik 			ASSERT(0);
20608ee66afeSJosef Bacik 			btrfs_err(trans->fs_info,
20618ee66afeSJosef Bacik 		"bytenr %llu doesn't have a backref path ending in a root",
20628ee66afeSJosef Bacik 				  node->bytenr);
20638ee66afeSJosef Bacik 			return ERR_PTR(-EUCLEAN);
20648ee66afeSJosef Bacik 		}
20658ee66afeSJosef Bacik 		if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) {
20668ee66afeSJosef Bacik 			ASSERT(0);
20678ee66afeSJosef Bacik 			btrfs_err(trans->fs_info,
20688ee66afeSJosef Bacik 	"bytenr %llu has multiple refs with one ending in a non-shareable root",
20698ee66afeSJosef Bacik 				  node->bytenr);
20708ee66afeSJosef Bacik 			return ERR_PTR(-EUCLEAN);
20718ee66afeSJosef Bacik 		}
20725d4f98a2SYan Zheng 
20735d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
207492de551bSJosef Bacik 			ret = record_reloc_root_in_trans(trans, root);
207592de551bSJosef Bacik 			if (ret)
207692de551bSJosef Bacik 				return ERR_PTR(ret);
20775d4f98a2SYan Zheng 			break;
20785d4f98a2SYan Zheng 		}
20795d4f98a2SYan Zheng 
208092de551bSJosef Bacik 		ret = btrfs_record_root_in_trans(trans, root);
208192de551bSJosef Bacik 		if (ret)
208292de551bSJosef Bacik 			return ERR_PTR(ret);
20833fd0a558SYan, Zheng 		root = root->reloc_root;
20843fd0a558SYan, Zheng 
20853fd0a558SYan, Zheng 		if (next->new_bytenr != root->node->start) {
20868ee66afeSJosef Bacik 			/*
20878ee66afeSJosef Bacik 			 * We just created the reloc root, so we shouldn't have
20888ee66afeSJosef Bacik 			 * ->new_bytenr set and this shouldn't be in the changed
20898ee66afeSJosef Bacik 			 *  list.  If it is then we have multiple roots pointing
20908ee66afeSJosef Bacik 			 *  at the same bytenr which indicates corruption, or
20918ee66afeSJosef Bacik 			 *  we've made a mistake in the backref walking code.
20928ee66afeSJosef Bacik 			 */
20938ee66afeSJosef Bacik 			ASSERT(next->new_bytenr == 0);
20948ee66afeSJosef Bacik 			ASSERT(list_empty(&next->list));
20958ee66afeSJosef Bacik 			if (next->new_bytenr || !list_empty(&next->list)) {
20968ee66afeSJosef Bacik 				btrfs_err(trans->fs_info,
20978ee66afeSJosef Bacik 	"bytenr %llu possibly has multiple roots pointing at the same bytenr %llu",
20988ee66afeSJosef Bacik 					  node->bytenr, next->bytenr);
20998ee66afeSJosef Bacik 				return ERR_PTR(-EUCLEAN);
21008ee66afeSJosef Bacik 			}
21018ee66afeSJosef Bacik 
21023fd0a558SYan, Zheng 			next->new_bytenr = root->node->start;
210300246528SJosef Bacik 			btrfs_put_root(next->root);
210400246528SJosef Bacik 			next->root = btrfs_grab_root(root);
21050b530bc5SJosef Bacik 			ASSERT(next->root);
21063fd0a558SYan, Zheng 			list_add_tail(&next->list,
21073fd0a558SYan, Zheng 				      &rc->backref_cache.changed);
21089569cc20SQu Wenruo 			mark_block_processed(rc, next);
21095d4f98a2SYan Zheng 			break;
21105d4f98a2SYan Zheng 		}
21115d4f98a2SYan Zheng 
21123fd0a558SYan, Zheng 		WARN_ON(1);
21135d4f98a2SYan Zheng 		root = NULL;
21145d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
21155d4f98a2SYan Zheng 		if (!next || next->level <= node->level)
21165d4f98a2SYan Zheng 			break;
21175d4f98a2SYan Zheng 	}
2118cbdc2ebcSJosef Bacik 	if (!root) {
2119cbdc2ebcSJosef Bacik 		/*
2120cbdc2ebcSJosef Bacik 		 * This can happen if there's fs corruption or if there's a bug
2121cbdc2ebcSJosef Bacik 		 * in the backref lookup code.
2122cbdc2ebcSJosef Bacik 		 */
2123cbdc2ebcSJosef Bacik 		ASSERT(0);
2124cbdc2ebcSJosef Bacik 		return ERR_PTR(-ENOENT);
2125cbdc2ebcSJosef Bacik 	}
21265d4f98a2SYan Zheng 
21273fd0a558SYan, Zheng 	next = node;
21283fd0a558SYan, Zheng 	/* setup backref node path for btrfs_reloc_cow_block */
21293fd0a558SYan, Zheng 	while (1) {
21303fd0a558SYan, Zheng 		rc->backref_cache.path[next->level] = next;
21313fd0a558SYan, Zheng 		if (--index < 0)
21323fd0a558SYan, Zheng 			break;
21333fd0a558SYan, Zheng 		next = edges[index]->node[UPPER];
21343fd0a558SYan, Zheng 	}
21355d4f98a2SYan Zheng 	return root;
21365d4f98a2SYan Zheng }
21375d4f98a2SYan Zheng 
21383fd0a558SYan, Zheng /*
213992a7cc42SQu Wenruo  * Select a tree root for relocation.
214092a7cc42SQu Wenruo  *
214192a7cc42SQu Wenruo  * Return NULL if the block is not shareable. We should use do_relocation() in
214292a7cc42SQu Wenruo  * this case.
214392a7cc42SQu Wenruo  *
214492a7cc42SQu Wenruo  * Return a tree root pointer if the block is shareable.
214592a7cc42SQu Wenruo  * Return -ENOENT if the block is root of reloc tree.
21463fd0a558SYan, Zheng  */
21475d4f98a2SYan Zheng static noinline_for_stack
2148a26195a5SQu Wenruo struct btrfs_root *select_one_root(struct btrfs_backref_node *node)
21495d4f98a2SYan Zheng {
2150a26195a5SQu Wenruo 	struct btrfs_backref_node *next;
21513fd0a558SYan, Zheng 	struct btrfs_root *root;
21523fd0a558SYan, Zheng 	struct btrfs_root *fs_root = NULL;
2153a26195a5SQu Wenruo 	struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
21543fd0a558SYan, Zheng 	int index = 0;
21553fd0a558SYan, Zheng 
21563fd0a558SYan, Zheng 	next = node;
21573fd0a558SYan, Zheng 	while (1) {
21583fd0a558SYan, Zheng 		cond_resched();
21593fd0a558SYan, Zheng 		next = walk_up_backref(next, edges, &index);
21603fd0a558SYan, Zheng 		root = next->root;
21613fd0a558SYan, Zheng 		BUG_ON(!root);
21623fd0a558SYan, Zheng 
216392a7cc42SQu Wenruo 		/* No other choice for non-shareable tree */
216492a7cc42SQu Wenruo 		if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
21653fd0a558SYan, Zheng 			return root;
21663fd0a558SYan, Zheng 
21673fd0a558SYan, Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
21683fd0a558SYan, Zheng 			fs_root = root;
21693fd0a558SYan, Zheng 
21703fd0a558SYan, Zheng 		if (next != node)
21713fd0a558SYan, Zheng 			return NULL;
21723fd0a558SYan, Zheng 
21733fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
21743fd0a558SYan, Zheng 		if (!next || next->level <= node->level)
21753fd0a558SYan, Zheng 			break;
21763fd0a558SYan, Zheng 	}
21773fd0a558SYan, Zheng 
21783fd0a558SYan, Zheng 	if (!fs_root)
21793fd0a558SYan, Zheng 		return ERR_PTR(-ENOENT);
21803fd0a558SYan, Zheng 	return fs_root;
21815d4f98a2SYan Zheng }
21825d4f98a2SYan Zheng 
21835d4f98a2SYan Zheng static noinline_for_stack
21843fd0a558SYan, Zheng u64 calcu_metadata_size(struct reloc_control *rc,
2185a26195a5SQu Wenruo 			struct btrfs_backref_node *node, int reserve)
21865d4f98a2SYan Zheng {
21870b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
2188a26195a5SQu Wenruo 	struct btrfs_backref_node *next = node;
2189a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
2190a26195a5SQu Wenruo 	struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
21913fd0a558SYan, Zheng 	u64 num_bytes = 0;
21923fd0a558SYan, Zheng 	int index = 0;
21935d4f98a2SYan Zheng 
21943fd0a558SYan, Zheng 	BUG_ON(reserve && node->processed);
21953fd0a558SYan, Zheng 
21963fd0a558SYan, Zheng 	while (next) {
21973fd0a558SYan, Zheng 		cond_resched();
21985d4f98a2SYan Zheng 		while (1) {
21993fd0a558SYan, Zheng 			if (next->processed && (reserve || next != node))
22005d4f98a2SYan Zheng 				break;
22015d4f98a2SYan Zheng 
22020b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
22033fd0a558SYan, Zheng 
22043fd0a558SYan, Zheng 			if (list_empty(&next->upper))
22053fd0a558SYan, Zheng 				break;
22063fd0a558SYan, Zheng 
22073fd0a558SYan, Zheng 			edge = list_entry(next->upper.next,
2208a26195a5SQu Wenruo 					struct btrfs_backref_edge, list[LOWER]);
22093fd0a558SYan, Zheng 			edges[index++] = edge;
22103fd0a558SYan, Zheng 			next = edge->node[UPPER];
22115d4f98a2SYan Zheng 		}
22123fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
22133fd0a558SYan, Zheng 	}
22143fd0a558SYan, Zheng 	return num_bytes;
22153fd0a558SYan, Zheng }
22163fd0a558SYan, Zheng 
22173fd0a558SYan, Zheng static int reserve_metadata_space(struct btrfs_trans_handle *trans,
22183fd0a558SYan, Zheng 				  struct reloc_control *rc,
2219a26195a5SQu Wenruo 				  struct btrfs_backref_node *node)
22203fd0a558SYan, Zheng {
22213fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
2222da17066cSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
22233fd0a558SYan, Zheng 	u64 num_bytes;
22243fd0a558SYan, Zheng 	int ret;
22250647bf56SWang Shilong 	u64 tmp;
22263fd0a558SYan, Zheng 
22273fd0a558SYan, Zheng 	num_bytes = calcu_metadata_size(rc, node, 1) * 2;
22283fd0a558SYan, Zheng 
22293fd0a558SYan, Zheng 	trans->block_rsv = rc->block_rsv;
22300647bf56SWang Shilong 	rc->reserved_bytes += num_bytes;
22318ca17f0fSJosef Bacik 
22328ca17f0fSJosef Bacik 	/*
22338ca17f0fSJosef Bacik 	 * We are under a transaction here so we can only do limited flushing.
22348ca17f0fSJosef Bacik 	 * If we get an enospc just kick back -EAGAIN so we know to drop the
22358ca17f0fSJosef Bacik 	 * transaction and try to refill when we can flush all the things.
22368ca17f0fSJosef Bacik 	 */
22370647bf56SWang Shilong 	ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
22388ca17f0fSJosef Bacik 				BTRFS_RESERVE_FLUSH_LIMIT);
22393fd0a558SYan, Zheng 	if (ret) {
2240da17066cSJeff Mahoney 		tmp = fs_info->nodesize * RELOCATION_RESERVED_NODES;
22410647bf56SWang Shilong 		while (tmp <= rc->reserved_bytes)
22420647bf56SWang Shilong 			tmp <<= 1;
22430647bf56SWang Shilong 		/*
22440647bf56SWang Shilong 		 * only one thread can access block_rsv at this point,
22450647bf56SWang Shilong 		 * so we don't need hold lock to protect block_rsv.
22460647bf56SWang Shilong 		 * we expand more reservation size here to allow enough
224752042d8eSAndrea Gelmini 		 * space for relocation and we will return earlier in
22480647bf56SWang Shilong 		 * enospc case.
22490647bf56SWang Shilong 		 */
2250da17066cSJeff Mahoney 		rc->block_rsv->size = tmp + fs_info->nodesize *
22510647bf56SWang Shilong 				      RELOCATION_RESERVED_NODES;
22528ca17f0fSJosef Bacik 		return -EAGAIN;
22533fd0a558SYan, Zheng 	}
22543fd0a558SYan, Zheng 
22553fd0a558SYan, Zheng 	return 0;
22563fd0a558SYan, Zheng }
22573fd0a558SYan, Zheng 
22585d4f98a2SYan Zheng /*
22595d4f98a2SYan Zheng  * relocate a block tree, and then update pointers in upper level
22605d4f98a2SYan Zheng  * blocks that reference the block to point to the new location.
22615d4f98a2SYan Zheng  *
22625d4f98a2SYan Zheng  * if called by link_to_upper, the block has already been relocated.
22635d4f98a2SYan Zheng  * in that case this function just updates pointers.
22645d4f98a2SYan Zheng  */
22655d4f98a2SYan Zheng static int do_relocation(struct btrfs_trans_handle *trans,
22663fd0a558SYan, Zheng 			 struct reloc_control *rc,
2267a26195a5SQu Wenruo 			 struct btrfs_backref_node *node,
22685d4f98a2SYan Zheng 			 struct btrfs_key *key,
22695d4f98a2SYan Zheng 			 struct btrfs_path *path, int lowest)
22705d4f98a2SYan Zheng {
2271a26195a5SQu Wenruo 	struct btrfs_backref_node *upper;
2272a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
2273a26195a5SQu Wenruo 	struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
22745d4f98a2SYan Zheng 	struct btrfs_root *root;
22755d4f98a2SYan Zheng 	struct extent_buffer *eb;
22765d4f98a2SYan Zheng 	u32 blocksize;
22775d4f98a2SYan Zheng 	u64 bytenr;
22785d4f98a2SYan Zheng 	int slot;
22798df01fddSNikolay Borisov 	int ret = 0;
22805d4f98a2SYan Zheng 
2281ffe30dd8SJosef Bacik 	/*
2282ffe30dd8SJosef Bacik 	 * If we are lowest then this is the first time we're processing this
2283ffe30dd8SJosef Bacik 	 * block, and thus shouldn't have an eb associated with it yet.
2284ffe30dd8SJosef Bacik 	 */
2285ffe30dd8SJosef Bacik 	ASSERT(!lowest || !node->eb);
22865d4f98a2SYan Zheng 
22875d4f98a2SYan Zheng 	path->lowest_level = node->level + 1;
22883fd0a558SYan, Zheng 	rc->backref_cache.path[node->level] = node;
22895d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER]) {
229082fa113fSQu Wenruo 		struct btrfs_ref ref = { 0 };
2291581c1760SQu Wenruo 
22925d4f98a2SYan Zheng 		cond_resched();
22935d4f98a2SYan Zheng 
22945d4f98a2SYan Zheng 		upper = edge->node[UPPER];
2295dc4103f9SWang Shilong 		root = select_reloc_root(trans, rc, upper, edges);
2296cbdc2ebcSJosef Bacik 		if (IS_ERR(root)) {
2297cbdc2ebcSJosef Bacik 			ret = PTR_ERR(root);
2298cbdc2ebcSJosef Bacik 			goto next;
2299cbdc2ebcSJosef Bacik 		}
23005d4f98a2SYan Zheng 
23013fd0a558SYan, Zheng 		if (upper->eb && !upper->locked) {
23023fd0a558SYan, Zheng 			if (!lowest) {
2303e3b83361SQu Wenruo 				ret = btrfs_bin_search(upper->eb, key, &slot);
23048df01fddSNikolay Borisov 				if (ret < 0)
2305cbca7d59SFilipe Manana 					goto next;
23063fd0a558SYan, Zheng 				BUG_ON(ret);
23073fd0a558SYan, Zheng 				bytenr = btrfs_node_blockptr(upper->eb, slot);
23083fd0a558SYan, Zheng 				if (node->eb->start == bytenr)
23093fd0a558SYan, Zheng 					goto next;
23103fd0a558SYan, Zheng 			}
2311b0fe7078SQu Wenruo 			btrfs_backref_drop_node_buffer(upper);
23123fd0a558SYan, Zheng 		}
23135d4f98a2SYan Zheng 
23145d4f98a2SYan Zheng 		if (!upper->eb) {
23155d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
23163561b9dbSLiu Bo 			if (ret) {
23178df01fddSNikolay Borisov 				if (ret > 0)
23188df01fddSNikolay Borisov 					ret = -ENOENT;
23193561b9dbSLiu Bo 
23203561b9dbSLiu Bo 				btrfs_release_path(path);
23215d4f98a2SYan Zheng 				break;
23225d4f98a2SYan Zheng 			}
23235d4f98a2SYan Zheng 
23243fd0a558SYan, Zheng 			if (!upper->eb) {
23253fd0a558SYan, Zheng 				upper->eb = path->nodes[upper->level];
23263fd0a558SYan, Zheng 				path->nodes[upper->level] = NULL;
23273fd0a558SYan, Zheng 			} else {
23283fd0a558SYan, Zheng 				BUG_ON(upper->eb != path->nodes[upper->level]);
23293fd0a558SYan, Zheng 			}
23303fd0a558SYan, Zheng 
23313fd0a558SYan, Zheng 			upper->locked = 1;
23323fd0a558SYan, Zheng 			path->locks[upper->level] = 0;
23333fd0a558SYan, Zheng 
23345d4f98a2SYan Zheng 			slot = path->slots[upper->level];
2335b3b4aa74SDavid Sterba 			btrfs_release_path(path);
23365d4f98a2SYan Zheng 		} else {
2337e3b83361SQu Wenruo 			ret = btrfs_bin_search(upper->eb, key, &slot);
23388df01fddSNikolay Borisov 			if (ret < 0)
2339cbca7d59SFilipe Manana 				goto next;
23405d4f98a2SYan Zheng 			BUG_ON(ret);
23415d4f98a2SYan Zheng 		}
23425d4f98a2SYan Zheng 
23435d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(upper->eb, slot);
23443fd0a558SYan, Zheng 		if (lowest) {
23454547f4d8SLiu Bo 			if (bytenr != node->bytenr) {
23464547f4d8SLiu Bo 				btrfs_err(root->fs_info,
23474547f4d8SLiu Bo 		"lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
23484547f4d8SLiu Bo 					  bytenr, node->bytenr, slot,
23494547f4d8SLiu Bo 					  upper->eb->start);
23508df01fddSNikolay Borisov 				ret = -EIO;
23514547f4d8SLiu Bo 				goto next;
23524547f4d8SLiu Bo 			}
23535d4f98a2SYan Zheng 		} else {
23543fd0a558SYan, Zheng 			if (node->eb->start == bytenr)
23553fd0a558SYan, Zheng 				goto next;
23565d4f98a2SYan Zheng 		}
23575d4f98a2SYan Zheng 
2358da17066cSJeff Mahoney 		blocksize = root->fs_info->nodesize;
2359c9752536SJosef Bacik 		eb = btrfs_read_node_slot(upper->eb, slot);
236064c043deSLiu Bo 		if (IS_ERR(eb)) {
23618df01fddSNikolay Borisov 			ret = PTR_ERR(eb);
236264c043deSLiu Bo 			goto next;
236397d9a8a4STsutomu Itoh 		}
23645d4f98a2SYan Zheng 		btrfs_tree_lock(eb);
23655d4f98a2SYan Zheng 
23665d4f98a2SYan Zheng 		if (!node->eb) {
23675d4f98a2SYan Zheng 			ret = btrfs_cow_block(trans, root, eb, upper->eb,
23689631e4ccSJosef Bacik 					      slot, &eb, BTRFS_NESTING_COW);
23693fd0a558SYan, Zheng 			btrfs_tree_unlock(eb);
23703fd0a558SYan, Zheng 			free_extent_buffer(eb);
23718df01fddSNikolay Borisov 			if (ret < 0)
23723fd0a558SYan, Zheng 				goto next;
2373ffe30dd8SJosef Bacik 			/*
2374ffe30dd8SJosef Bacik 			 * We've just COWed this block, it should have updated
2375ffe30dd8SJosef Bacik 			 * the correct backref node entry.
2376ffe30dd8SJosef Bacik 			 */
2377ffe30dd8SJosef Bacik 			ASSERT(node->eb == eb);
23785d4f98a2SYan Zheng 		} else {
23795d4f98a2SYan Zheng 			btrfs_set_node_blockptr(upper->eb, slot,
23805d4f98a2SYan Zheng 						node->eb->start);
23815d4f98a2SYan Zheng 			btrfs_set_node_ptr_generation(upper->eb, slot,
23825d4f98a2SYan Zheng 						      trans->transid);
23835d4f98a2SYan Zheng 			btrfs_mark_buffer_dirty(upper->eb);
23845d4f98a2SYan Zheng 
238582fa113fSQu Wenruo 			btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
23865d4f98a2SYan Zheng 					       node->eb->start, blocksize,
238782fa113fSQu Wenruo 					       upper->eb->start);
238882fa113fSQu Wenruo 			ref.real_root = root->root_key.objectid;
238982fa113fSQu Wenruo 			btrfs_init_tree_ref(&ref, node->level,
239082fa113fSQu Wenruo 					    btrfs_header_owner(upper->eb));
239182fa113fSQu Wenruo 			ret = btrfs_inc_extent_ref(trans, &ref);
23925d4f98a2SYan Zheng 			BUG_ON(ret);
23935d4f98a2SYan Zheng 
23945d4f98a2SYan Zheng 			ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
23955d4f98a2SYan Zheng 			BUG_ON(ret);
23965d4f98a2SYan Zheng 		}
23973fd0a558SYan, Zheng next:
23983fd0a558SYan, Zheng 		if (!upper->pending)
2399b0fe7078SQu Wenruo 			btrfs_backref_drop_node_buffer(upper);
24003fd0a558SYan, Zheng 		else
2401b0fe7078SQu Wenruo 			btrfs_backref_unlock_node_buffer(upper);
24028df01fddSNikolay Borisov 		if (ret)
24033fd0a558SYan, Zheng 			break;
24045d4f98a2SYan Zheng 	}
24053fd0a558SYan, Zheng 
24068df01fddSNikolay Borisov 	if (!ret && node->pending) {
2407b0fe7078SQu Wenruo 		btrfs_backref_drop_node_buffer(node);
24083fd0a558SYan, Zheng 		list_move_tail(&node->list, &rc->backref_cache.changed);
24093fd0a558SYan, Zheng 		node->pending = 0;
24105d4f98a2SYan Zheng 	}
24113fd0a558SYan, Zheng 
24125d4f98a2SYan Zheng 	path->lowest_level = 0;
2413ffe30dd8SJosef Bacik 
2414ffe30dd8SJosef Bacik 	/*
2415ffe30dd8SJosef Bacik 	 * We should have allocated all of our space in the block rsv and thus
2416ffe30dd8SJosef Bacik 	 * shouldn't ENOSPC.
2417ffe30dd8SJosef Bacik 	 */
2418ffe30dd8SJosef Bacik 	ASSERT(ret != -ENOSPC);
24198df01fddSNikolay Borisov 	return ret;
24205d4f98a2SYan Zheng }
24215d4f98a2SYan Zheng 
24225d4f98a2SYan Zheng static int link_to_upper(struct btrfs_trans_handle *trans,
24233fd0a558SYan, Zheng 			 struct reloc_control *rc,
2424a26195a5SQu Wenruo 			 struct btrfs_backref_node *node,
24255d4f98a2SYan Zheng 			 struct btrfs_path *path)
24265d4f98a2SYan Zheng {
24275d4f98a2SYan Zheng 	struct btrfs_key key;
24285d4f98a2SYan Zheng 
24295d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(node->eb, &key, 0);
24303fd0a558SYan, Zheng 	return do_relocation(trans, rc, node, &key, path, 0);
24315d4f98a2SYan Zheng }
24325d4f98a2SYan Zheng 
24335d4f98a2SYan Zheng static int finish_pending_nodes(struct btrfs_trans_handle *trans,
24343fd0a558SYan, Zheng 				struct reloc_control *rc,
24353fd0a558SYan, Zheng 				struct btrfs_path *path, int err)
24365d4f98a2SYan Zheng {
24373fd0a558SYan, Zheng 	LIST_HEAD(list);
2438a26195a5SQu Wenruo 	struct btrfs_backref_cache *cache = &rc->backref_cache;
2439a26195a5SQu Wenruo 	struct btrfs_backref_node *node;
24405d4f98a2SYan Zheng 	int level;
24415d4f98a2SYan Zheng 	int ret;
24425d4f98a2SYan Zheng 
24435d4f98a2SYan Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
24445d4f98a2SYan Zheng 		while (!list_empty(&cache->pending[level])) {
24455d4f98a2SYan Zheng 			node = list_entry(cache->pending[level].next,
2446a26195a5SQu Wenruo 					  struct btrfs_backref_node, list);
24473fd0a558SYan, Zheng 			list_move_tail(&node->list, &list);
24483fd0a558SYan, Zheng 			BUG_ON(!node->pending);
24495d4f98a2SYan Zheng 
24503fd0a558SYan, Zheng 			if (!err) {
24513fd0a558SYan, Zheng 				ret = link_to_upper(trans, rc, node, path);
24525d4f98a2SYan Zheng 				if (ret < 0)
24535d4f98a2SYan Zheng 					err = ret;
24545d4f98a2SYan Zheng 			}
24555d4f98a2SYan Zheng 		}
24563fd0a558SYan, Zheng 		list_splice_init(&list, &cache->pending[level]);
24573fd0a558SYan, Zheng 	}
24585d4f98a2SYan Zheng 	return err;
24595d4f98a2SYan Zheng }
24605d4f98a2SYan Zheng 
24615d4f98a2SYan Zheng /*
24625d4f98a2SYan Zheng  * mark a block and all blocks directly/indirectly reference the block
24635d4f98a2SYan Zheng  * as processed.
24645d4f98a2SYan Zheng  */
24655d4f98a2SYan Zheng static void update_processed_blocks(struct reloc_control *rc,
2466a26195a5SQu Wenruo 				    struct btrfs_backref_node *node)
24675d4f98a2SYan Zheng {
2468a26195a5SQu Wenruo 	struct btrfs_backref_node *next = node;
2469a26195a5SQu Wenruo 	struct btrfs_backref_edge *edge;
2470a26195a5SQu Wenruo 	struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
24715d4f98a2SYan Zheng 	int index = 0;
24725d4f98a2SYan Zheng 
24735d4f98a2SYan Zheng 	while (next) {
24745d4f98a2SYan Zheng 		cond_resched();
24755d4f98a2SYan Zheng 		while (1) {
24765d4f98a2SYan Zheng 			if (next->processed)
24775d4f98a2SYan Zheng 				break;
24785d4f98a2SYan Zheng 
24799569cc20SQu Wenruo 			mark_block_processed(rc, next);
24805d4f98a2SYan Zheng 
24815d4f98a2SYan Zheng 			if (list_empty(&next->upper))
24825d4f98a2SYan Zheng 				break;
24835d4f98a2SYan Zheng 
24845d4f98a2SYan Zheng 			edge = list_entry(next->upper.next,
2485a26195a5SQu Wenruo 					struct btrfs_backref_edge, list[LOWER]);
24865d4f98a2SYan Zheng 			edges[index++] = edge;
24875d4f98a2SYan Zheng 			next = edge->node[UPPER];
24885d4f98a2SYan Zheng 		}
24895d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
24905d4f98a2SYan Zheng 	}
24915d4f98a2SYan Zheng }
24925d4f98a2SYan Zheng 
24937476dfdaSDavid Sterba static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
24945d4f98a2SYan Zheng {
2495da17066cSJeff Mahoney 	u32 blocksize = rc->extent_root->fs_info->nodesize;
24967476dfdaSDavid Sterba 
24975d4f98a2SYan Zheng 	if (test_range_bit(&rc->processed_blocks, bytenr,
24989655d298SChris Mason 			   bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
24995d4f98a2SYan Zheng 		return 1;
25005d4f98a2SYan Zheng 	return 0;
25015d4f98a2SYan Zheng }
25025d4f98a2SYan Zheng 
25032ff7e61eSJeff Mahoney static int get_tree_block_key(struct btrfs_fs_info *fs_info,
25045d4f98a2SYan Zheng 			      struct tree_block *block)
25055d4f98a2SYan Zheng {
25065d4f98a2SYan Zheng 	struct extent_buffer *eb;
25075d4f98a2SYan Zheng 
2508f7ba2d37SJosef Bacik 	eb = read_tree_block(fs_info, block->bytenr, block->owner,
2509f7ba2d37SJosef Bacik 			     block->key.offset, block->level, NULL);
251064c043deSLiu Bo 	if (IS_ERR(eb)) {
251164c043deSLiu Bo 		return PTR_ERR(eb);
251264c043deSLiu Bo 	} else if (!extent_buffer_uptodate(eb)) {
2513416bc658SJosef Bacik 		free_extent_buffer(eb);
2514416bc658SJosef Bacik 		return -EIO;
2515416bc658SJosef Bacik 	}
25165d4f98a2SYan Zheng 	if (block->level == 0)
25175d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &block->key, 0);
25185d4f98a2SYan Zheng 	else
25195d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(eb, &block->key, 0);
25205d4f98a2SYan Zheng 	free_extent_buffer(eb);
25215d4f98a2SYan Zheng 	block->key_ready = 1;
25225d4f98a2SYan Zheng 	return 0;
25235d4f98a2SYan Zheng }
25245d4f98a2SYan Zheng 
25255d4f98a2SYan Zheng /*
25265d4f98a2SYan Zheng  * helper function to relocate a tree block
25275d4f98a2SYan Zheng  */
25285d4f98a2SYan Zheng static int relocate_tree_block(struct btrfs_trans_handle *trans,
25295d4f98a2SYan Zheng 				struct reloc_control *rc,
2530a26195a5SQu Wenruo 				struct btrfs_backref_node *node,
25315d4f98a2SYan Zheng 				struct btrfs_key *key,
25325d4f98a2SYan Zheng 				struct btrfs_path *path)
25335d4f98a2SYan Zheng {
25345d4f98a2SYan Zheng 	struct btrfs_root *root;
25353fd0a558SYan, Zheng 	int ret = 0;
25365d4f98a2SYan Zheng 
25373fd0a558SYan, Zheng 	if (!node)
25385d4f98a2SYan Zheng 		return 0;
25393fd0a558SYan, Zheng 
25405f6b2e5cSJosef Bacik 	/*
25415f6b2e5cSJosef Bacik 	 * If we fail here we want to drop our backref_node because we are going
25425f6b2e5cSJosef Bacik 	 * to start over and regenerate the tree for it.
25435f6b2e5cSJosef Bacik 	 */
25445f6b2e5cSJosef Bacik 	ret = reserve_metadata_space(trans, rc, node);
25455f6b2e5cSJosef Bacik 	if (ret)
25465f6b2e5cSJosef Bacik 		goto out;
25475f6b2e5cSJosef Bacik 
25483fd0a558SYan, Zheng 	BUG_ON(node->processed);
2549147d256eSZhaolei 	root = select_one_root(node);
25503fd0a558SYan, Zheng 	if (root == ERR_PTR(-ENOENT)) {
25513fd0a558SYan, Zheng 		update_processed_blocks(rc, node);
25523fd0a558SYan, Zheng 		goto out;
25535d4f98a2SYan Zheng 	}
25545d4f98a2SYan Zheng 
25553fd0a558SYan, Zheng 	if (root) {
255692a7cc42SQu Wenruo 		if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) {
25571c7bfa15SJosef Bacik 			/*
25581c7bfa15SJosef Bacik 			 * This block was the root block of a root, and this is
25591c7bfa15SJosef Bacik 			 * the first time we're processing the block and thus it
25601c7bfa15SJosef Bacik 			 * should not have had the ->new_bytenr modified and
25611c7bfa15SJosef Bacik 			 * should have not been included on the changed list.
25621c7bfa15SJosef Bacik 			 *
25631c7bfa15SJosef Bacik 			 * However in the case of corruption we could have
25641c7bfa15SJosef Bacik 			 * multiple refs pointing to the same block improperly,
25651c7bfa15SJosef Bacik 			 * and thus we would trip over these checks.  ASSERT()
25661c7bfa15SJosef Bacik 			 * for the developer case, because it could indicate a
25671c7bfa15SJosef Bacik 			 * bug in the backref code, however error out for a
25681c7bfa15SJosef Bacik 			 * normal user in the case of corruption.
25691c7bfa15SJosef Bacik 			 */
25701c7bfa15SJosef Bacik 			ASSERT(node->new_bytenr == 0);
25711c7bfa15SJosef Bacik 			ASSERT(list_empty(&node->list));
25721c7bfa15SJosef Bacik 			if (node->new_bytenr || !list_empty(&node->list)) {
25731c7bfa15SJosef Bacik 				btrfs_err(root->fs_info,
25741c7bfa15SJosef Bacik 				  "bytenr %llu has improper references to it",
25751c7bfa15SJosef Bacik 					  node->bytenr);
25761c7bfa15SJosef Bacik 				ret = -EUCLEAN;
25771c7bfa15SJosef Bacik 				goto out;
25781c7bfa15SJosef Bacik 			}
2579d18c7bd9SJosef Bacik 			ret = btrfs_record_root_in_trans(trans, root);
2580d18c7bd9SJosef Bacik 			if (ret)
2581d18c7bd9SJosef Bacik 				goto out;
25823fd0a558SYan, Zheng 			root = root->reloc_root;
25833fd0a558SYan, Zheng 			node->new_bytenr = root->node->start;
258400246528SJosef Bacik 			btrfs_put_root(node->root);
258500246528SJosef Bacik 			node->root = btrfs_grab_root(root);
25860b530bc5SJosef Bacik 			ASSERT(node->root);
25873fd0a558SYan, Zheng 			list_add_tail(&node->list, &rc->backref_cache.changed);
25883fd0a558SYan, Zheng 		} else {
25895d4f98a2SYan Zheng 			path->lowest_level = node->level;
25905d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
2591b3b4aa74SDavid Sterba 			btrfs_release_path(path);
25923fd0a558SYan, Zheng 			if (ret > 0)
25935d4f98a2SYan Zheng 				ret = 0;
25943fd0a558SYan, Zheng 		}
25953fd0a558SYan, Zheng 		if (!ret)
25963fd0a558SYan, Zheng 			update_processed_blocks(rc, node);
25973fd0a558SYan, Zheng 	} else {
25983fd0a558SYan, Zheng 		ret = do_relocation(trans, rc, node, key, path, 1);
25993fd0a558SYan, Zheng 	}
26005d4f98a2SYan Zheng out:
26010647bf56SWang Shilong 	if (ret || node->level == 0 || node->cowonly)
2602023acb07SQu Wenruo 		btrfs_backref_cleanup_node(&rc->backref_cache, node);
26035d4f98a2SYan Zheng 	return ret;
26045d4f98a2SYan Zheng }
26055d4f98a2SYan Zheng 
26065d4f98a2SYan Zheng /*
26075d4f98a2SYan Zheng  * relocate a list of blocks
26085d4f98a2SYan Zheng  */
26095d4f98a2SYan Zheng static noinline_for_stack
26105d4f98a2SYan Zheng int relocate_tree_blocks(struct btrfs_trans_handle *trans,
26115d4f98a2SYan Zheng 			 struct reloc_control *rc, struct rb_root *blocks)
26125d4f98a2SYan Zheng {
26132ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
2614a26195a5SQu Wenruo 	struct btrfs_backref_node *node;
26155d4f98a2SYan Zheng 	struct btrfs_path *path;
26165d4f98a2SYan Zheng 	struct tree_block *block;
261798ff7b94SQu Wenruo 	struct tree_block *next;
26185d4f98a2SYan Zheng 	int ret;
26195d4f98a2SYan Zheng 	int err = 0;
26205d4f98a2SYan Zheng 
26215d4f98a2SYan Zheng 	path = btrfs_alloc_path();
2622e1a12670SLiu Bo 	if (!path) {
2623e1a12670SLiu Bo 		err = -ENOMEM;
262434c2b290SDavid Sterba 		goto out_free_blocks;
2625e1a12670SLiu Bo 	}
26265d4f98a2SYan Zheng 
262798ff7b94SQu Wenruo 	/* Kick in readahead for tree blocks with missing keys */
262898ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
26295d4f98a2SYan Zheng 		if (!block->key_ready)
2630f7ba2d37SJosef Bacik 			btrfs_readahead_tree_block(fs_info, block->bytenr,
2631f7ba2d37SJosef Bacik 						   block->owner, 0,
26323fbaf258SJosef Bacik 						   block->level);
26335d4f98a2SYan Zheng 	}
26345d4f98a2SYan Zheng 
263598ff7b94SQu Wenruo 	/* Get first keys */
263698ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
263734c2b290SDavid Sterba 		if (!block->key_ready) {
26382ff7e61eSJeff Mahoney 			err = get_tree_block_key(fs_info, block);
263934c2b290SDavid Sterba 			if (err)
264034c2b290SDavid Sterba 				goto out_free_path;
264134c2b290SDavid Sterba 		}
26425d4f98a2SYan Zheng 	}
26435d4f98a2SYan Zheng 
264498ff7b94SQu Wenruo 	/* Do tree relocation */
264598ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
26463fd0a558SYan, Zheng 		node = build_backref_tree(rc, &block->key,
26475d4f98a2SYan Zheng 					  block->level, block->bytenr);
26485d4f98a2SYan Zheng 		if (IS_ERR(node)) {
26495d4f98a2SYan Zheng 			err = PTR_ERR(node);
26505d4f98a2SYan Zheng 			goto out;
26515d4f98a2SYan Zheng 		}
26525d4f98a2SYan Zheng 
26535d4f98a2SYan Zheng 		ret = relocate_tree_block(trans, rc, node, &block->key,
26545d4f98a2SYan Zheng 					  path);
26555d4f98a2SYan Zheng 		if (ret < 0) {
26565d4f98a2SYan Zheng 			err = ret;
265750dbbb71SJosef Bacik 			break;
26585d4f98a2SYan Zheng 		}
26595d4f98a2SYan Zheng 	}
26605d4f98a2SYan Zheng out:
26613fd0a558SYan, Zheng 	err = finish_pending_nodes(trans, rc, path, err);
26625d4f98a2SYan Zheng 
266334c2b290SDavid Sterba out_free_path:
26645d4f98a2SYan Zheng 	btrfs_free_path(path);
266534c2b290SDavid Sterba out_free_blocks:
2666e1a12670SLiu Bo 	free_block_list(blocks);
26675d4f98a2SYan Zheng 	return err;
26685d4f98a2SYan Zheng }
26695d4f98a2SYan Zheng 
2670056d9becSNikolay Borisov static noinline_for_stack int prealloc_file_extent_cluster(
2671056d9becSNikolay Borisov 				struct btrfs_inode *inode,
2672efa56464SYan, Zheng 				struct file_extent_cluster *cluster)
2673efa56464SYan, Zheng {
2674efa56464SYan, Zheng 	u64 alloc_hint = 0;
2675efa56464SYan, Zheng 	u64 start;
2676efa56464SYan, Zheng 	u64 end;
2677056d9becSNikolay Borisov 	u64 offset = inode->index_cnt;
2678efa56464SYan, Zheng 	u64 num_bytes;
26794e9d0d01SNikolay Borisov 	int nr;
2680efa56464SYan, Zheng 	int ret = 0;
2681dcb40c19SWang Xiaoguang 	u64 prealloc_start = cluster->start - offset;
2682dcb40c19SWang Xiaoguang 	u64 prealloc_end = cluster->end - offset;
2683214e61d0SNikolay Borisov 	u64 cur_offset = prealloc_start;
2684efa56464SYan, Zheng 
2685efa56464SYan, Zheng 	BUG_ON(cluster->start != cluster->boundary[0]);
2686056d9becSNikolay Borisov 	ret = btrfs_alloc_data_chunk_ondemand(inode,
2687dcb40c19SWang Xiaoguang 					      prealloc_end + 1 - prealloc_start);
2688efa56464SYan, Zheng 	if (ret)
2689214e61d0SNikolay Borisov 		return ret;
2690efa56464SYan, Zheng 
269132430c61SNaohiro Aota 	/*
269232430c61SNaohiro Aota 	 * On a zoned filesystem, we cannot preallocate the file region.
269332430c61SNaohiro Aota 	 * Instead, we dirty and fiemap_write the region.
269432430c61SNaohiro Aota 	 */
269532430c61SNaohiro Aota 	if (btrfs_is_zoned(inode->root->fs_info)) {
269632430c61SNaohiro Aota 		struct btrfs_root *root = inode->root;
269732430c61SNaohiro Aota 		struct btrfs_trans_handle *trans;
269832430c61SNaohiro Aota 
269932430c61SNaohiro Aota 		end = cluster->end - offset + 1;
270032430c61SNaohiro Aota 		trans = btrfs_start_transaction(root, 1);
270132430c61SNaohiro Aota 		if (IS_ERR(trans))
270232430c61SNaohiro Aota 			return PTR_ERR(trans);
270332430c61SNaohiro Aota 
270432430c61SNaohiro Aota 		inode->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
270532430c61SNaohiro Aota 		i_size_write(&inode->vfs_inode, end);
270632430c61SNaohiro Aota 		ret = btrfs_update_inode(trans, root, inode);
270732430c61SNaohiro Aota 		if (ret) {
270832430c61SNaohiro Aota 			btrfs_abort_transaction(trans, ret);
270932430c61SNaohiro Aota 			btrfs_end_transaction(trans);
271032430c61SNaohiro Aota 			return ret;
271132430c61SNaohiro Aota 		}
271232430c61SNaohiro Aota 
271332430c61SNaohiro Aota 		return btrfs_end_transaction(trans);
271432430c61SNaohiro Aota 	}
271532430c61SNaohiro Aota 
271664708539SJosef Bacik 	btrfs_inode_lock(&inode->vfs_inode, 0);
27174e9d0d01SNikolay Borisov 	for (nr = 0; nr < cluster->nr; nr++) {
2718efa56464SYan, Zheng 		start = cluster->boundary[nr] - offset;
2719efa56464SYan, Zheng 		if (nr + 1 < cluster->nr)
2720efa56464SYan, Zheng 			end = cluster->boundary[nr + 1] - 1 - offset;
2721efa56464SYan, Zheng 		else
2722efa56464SYan, Zheng 			end = cluster->end - offset;
2723efa56464SYan, Zheng 
2724056d9becSNikolay Borisov 		lock_extent(&inode->io_tree, start, end);
2725efa56464SYan, Zheng 		num_bytes = end + 1 - start;
2726056d9becSNikolay Borisov 		ret = btrfs_prealloc_file_range(&inode->vfs_inode, 0, start,
2727efa56464SYan, Zheng 						num_bytes, num_bytes,
2728efa56464SYan, Zheng 						end + 1, &alloc_hint);
272918513091SWang Xiaoguang 		cur_offset = end + 1;
2730056d9becSNikolay Borisov 		unlock_extent(&inode->io_tree, start, end);
2731efa56464SYan, Zheng 		if (ret)
2732efa56464SYan, Zheng 			break;
2733efa56464SYan, Zheng 	}
273464708539SJosef Bacik 	btrfs_inode_unlock(&inode->vfs_inode, 0);
2735214e61d0SNikolay Borisov 
273618513091SWang Xiaoguang 	if (cur_offset < prealloc_end)
2737056d9becSNikolay Borisov 		btrfs_free_reserved_data_space_noquota(inode->root->fs_info,
2738a89ef455SFilipe Manana 					       prealloc_end + 1 - cur_offset);
2739efa56464SYan, Zheng 	return ret;
2740efa56464SYan, Zheng }
2741efa56464SYan, Zheng 
2742efa56464SYan, Zheng static noinline_for_stack
27430257bb82SYan, Zheng int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
27440257bb82SYan, Zheng 			 u64 block_start)
27455d4f98a2SYan Zheng {
27465d4f98a2SYan Zheng 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
27475d4f98a2SYan Zheng 	struct extent_map *em;
27480257bb82SYan, Zheng 	int ret = 0;
27495d4f98a2SYan Zheng 
2750172ddd60SDavid Sterba 	em = alloc_extent_map();
27510257bb82SYan, Zheng 	if (!em)
27520257bb82SYan, Zheng 		return -ENOMEM;
27530257bb82SYan, Zheng 
27545d4f98a2SYan Zheng 	em->start = start;
27550257bb82SYan, Zheng 	em->len = end + 1 - start;
27560257bb82SYan, Zheng 	em->block_len = em->len;
27570257bb82SYan, Zheng 	em->block_start = block_start;
27585d4f98a2SYan Zheng 	set_bit(EXTENT_FLAG_PINNED, &em->flags);
27595d4f98a2SYan Zheng 
2760d0082371SJeff Mahoney 	lock_extent(&BTRFS_I(inode)->io_tree, start, end);
27615d4f98a2SYan Zheng 	while (1) {
2762890871beSChris Mason 		write_lock(&em_tree->lock);
276309a2a8f9SJosef Bacik 		ret = add_extent_mapping(em_tree, em, 0);
2764890871beSChris Mason 		write_unlock(&em_tree->lock);
27655d4f98a2SYan Zheng 		if (ret != -EEXIST) {
27665d4f98a2SYan Zheng 			free_extent_map(em);
27675d4f98a2SYan Zheng 			break;
27685d4f98a2SYan Zheng 		}
2769dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
27705d4f98a2SYan Zheng 	}
2771d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
27720257bb82SYan, Zheng 	return ret;
27730257bb82SYan, Zheng }
27745d4f98a2SYan Zheng 
2775726a3421SQu Wenruo /*
2776726a3421SQu Wenruo  * Allow error injection to test balance cancellation
2777726a3421SQu Wenruo  */
27781fec12a5SJosef Bacik noinline int btrfs_should_cancel_balance(struct btrfs_fs_info *fs_info)
2779726a3421SQu Wenruo {
27805cb502f4SQu Wenruo 	return atomic_read(&fs_info->balance_cancel_req) ||
27815cb502f4SQu Wenruo 		fatal_signal_pending(current);
2782726a3421SQu Wenruo }
2783726a3421SQu Wenruo ALLOW_ERROR_INJECTION(btrfs_should_cancel_balance, TRUE);
2784726a3421SQu Wenruo 
27850257bb82SYan, Zheng static int relocate_file_extent_cluster(struct inode *inode,
27860257bb82SYan, Zheng 					struct file_extent_cluster *cluster)
27870257bb82SYan, Zheng {
27882ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
27890257bb82SYan, Zheng 	u64 page_start;
27900257bb82SYan, Zheng 	u64 page_end;
27910257bb82SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
27920257bb82SYan, Zheng 	unsigned long index;
27930257bb82SYan, Zheng 	unsigned long last_index;
27940257bb82SYan, Zheng 	struct page *page;
27950257bb82SYan, Zheng 	struct file_ra_state *ra;
27963b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
27970257bb82SYan, Zheng 	int nr = 0;
27980257bb82SYan, Zheng 	int ret = 0;
27990257bb82SYan, Zheng 
28000257bb82SYan, Zheng 	if (!cluster->nr)
28010257bb82SYan, Zheng 		return 0;
28020257bb82SYan, Zheng 
28030257bb82SYan, Zheng 	ra = kzalloc(sizeof(*ra), GFP_NOFS);
28040257bb82SYan, Zheng 	if (!ra)
28050257bb82SYan, Zheng 		return -ENOMEM;
28060257bb82SYan, Zheng 
2807056d9becSNikolay Borisov 	ret = prealloc_file_extent_cluster(BTRFS_I(inode), cluster);
28080257bb82SYan, Zheng 	if (ret)
2809efa56464SYan, Zheng 		goto out;
28100257bb82SYan, Zheng 
28110257bb82SYan, Zheng 	file_ra_state_init(ra, inode->i_mapping);
28120257bb82SYan, Zheng 
2813efa56464SYan, Zheng 	ret = setup_extent_mapping(inode, cluster->start - offset,
2814efa56464SYan, Zheng 				   cluster->end - offset, cluster->start);
2815efa56464SYan, Zheng 	if (ret)
2816efa56464SYan, Zheng 		goto out;
2817efa56464SYan, Zheng 
281809cbfeafSKirill A. Shutemov 	index = (cluster->start - offset) >> PAGE_SHIFT;
281909cbfeafSKirill A. Shutemov 	last_index = (cluster->end - offset) >> PAGE_SHIFT;
28200257bb82SYan, Zheng 	while (index <= last_index) {
28219f3db423SNikolay Borisov 		ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
28229f3db423SNikolay Borisov 				PAGE_SIZE);
2823efa56464SYan, Zheng 		if (ret)
2824efa56464SYan, Zheng 			goto out;
2825efa56464SYan, Zheng 
28260257bb82SYan, Zheng 		page = find_lock_page(inode->i_mapping, index);
28270257bb82SYan, Zheng 		if (!page) {
28280257bb82SYan, Zheng 			page_cache_sync_readahead(inode->i_mapping,
28290257bb82SYan, Zheng 						  ra, NULL, index,
28300257bb82SYan, Zheng 						  last_index + 1 - index);
2831a94733d0SJosef Bacik 			page = find_or_create_page(inode->i_mapping, index,
28323b16a4e3SJosef Bacik 						   mask);
28330257bb82SYan, Zheng 			if (!page) {
2834691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
283543b18595SQu Wenruo 							PAGE_SIZE, true);
283644db1216SFilipe Manana 				btrfs_delalloc_release_extents(BTRFS_I(inode),
28378702ba93SQu Wenruo 							PAGE_SIZE);
28380257bb82SYan, Zheng 				ret = -ENOMEM;
2839efa56464SYan, Zheng 				goto out;
28400257bb82SYan, Zheng 			}
28410257bb82SYan, Zheng 		}
284232443de3SQu Wenruo 		ret = set_page_extent_mapped(page);
284332443de3SQu Wenruo 		if (ret < 0) {
284432443de3SQu Wenruo 			btrfs_delalloc_release_metadata(BTRFS_I(inode),
284532443de3SQu Wenruo 							PAGE_SIZE, true);
284632443de3SQu Wenruo 			btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
284732443de3SQu Wenruo 			unlock_page(page);
284832443de3SQu Wenruo 			put_page(page);
284932443de3SQu Wenruo 			goto out;
285032443de3SQu Wenruo 		}
28510257bb82SYan, Zheng 
28520257bb82SYan, Zheng 		if (PageReadahead(page)) {
28530257bb82SYan, Zheng 			page_cache_async_readahead(inode->i_mapping,
28540257bb82SYan, Zheng 						   ra, NULL, page, index,
28550257bb82SYan, Zheng 						   last_index + 1 - index);
28560257bb82SYan, Zheng 		}
28570257bb82SYan, Zheng 
28580257bb82SYan, Zheng 		if (!PageUptodate(page)) {
28590257bb82SYan, Zheng 			btrfs_readpage(NULL, page);
28600257bb82SYan, Zheng 			lock_page(page);
28610257bb82SYan, Zheng 			if (!PageUptodate(page)) {
28620257bb82SYan, Zheng 				unlock_page(page);
286309cbfeafSKirill A. Shutemov 				put_page(page);
2864691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
286543b18595SQu Wenruo 							PAGE_SIZE, true);
28668b62f87bSJosef Bacik 				btrfs_delalloc_release_extents(BTRFS_I(inode),
28678702ba93SQu Wenruo 							       PAGE_SIZE);
28680257bb82SYan, Zheng 				ret = -EIO;
2869efa56464SYan, Zheng 				goto out;
28700257bb82SYan, Zheng 			}
28710257bb82SYan, Zheng 		}
28720257bb82SYan, Zheng 
28734eee4fa4SMiao Xie 		page_start = page_offset(page);
287409cbfeafSKirill A. Shutemov 		page_end = page_start + PAGE_SIZE - 1;
28750257bb82SYan, Zheng 
2876d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
28770257bb82SYan, Zheng 
28780257bb82SYan, Zheng 		if (nr < cluster->nr &&
28790257bb82SYan, Zheng 		    page_start + offset == cluster->boundary[nr]) {
28800257bb82SYan, Zheng 			set_extent_bits(&BTRFS_I(inode)->io_tree,
28810257bb82SYan, Zheng 					page_start, page_end,
2882ceeb0ae7SDavid Sterba 					EXTENT_BOUNDARY);
28830257bb82SYan, Zheng 			nr++;
28840257bb82SYan, Zheng 		}
28850257bb82SYan, Zheng 
2886c2566f22SNikolay Borisov 		ret = btrfs_set_extent_delalloc(BTRFS_I(inode), page_start,
2887c2566f22SNikolay Borisov 						page_end, 0, NULL);
2888765f3cebSNikolay Borisov 		if (ret) {
2889765f3cebSNikolay Borisov 			unlock_page(page);
2890765f3cebSNikolay Borisov 			put_page(page);
2891765f3cebSNikolay Borisov 			btrfs_delalloc_release_metadata(BTRFS_I(inode),
289243b18595SQu Wenruo 							 PAGE_SIZE, true);
2893765f3cebSNikolay Borisov 			btrfs_delalloc_release_extents(BTRFS_I(inode),
28948702ba93SQu Wenruo 			                               PAGE_SIZE);
2895765f3cebSNikolay Borisov 
2896765f3cebSNikolay Borisov 			clear_extent_bits(&BTRFS_I(inode)->io_tree,
2897765f3cebSNikolay Borisov 					  page_start, page_end,
2898765f3cebSNikolay Borisov 					  EXTENT_LOCKED | EXTENT_BOUNDARY);
2899765f3cebSNikolay Borisov 			goto out;
2900765f3cebSNikolay Borisov 
2901765f3cebSNikolay Borisov 		}
29020257bb82SYan, Zheng 		set_page_dirty(page);
29030257bb82SYan, Zheng 
29040257bb82SYan, Zheng 		unlock_extent(&BTRFS_I(inode)->io_tree,
2905d0082371SJeff Mahoney 			      page_start, page_end);
29060257bb82SYan, Zheng 		unlock_page(page);
290709cbfeafSKirill A. Shutemov 		put_page(page);
29080257bb82SYan, Zheng 
29090257bb82SYan, Zheng 		index++;
29108702ba93SQu Wenruo 		btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
2911efa56464SYan, Zheng 		balance_dirty_pages_ratelimited(inode->i_mapping);
29122ff7e61eSJeff Mahoney 		btrfs_throttle(fs_info);
29137f913c7cSQu Wenruo 		if (btrfs_should_cancel_balance(fs_info)) {
29147f913c7cSQu Wenruo 			ret = -ECANCELED;
29157f913c7cSQu Wenruo 			goto out;
29167f913c7cSQu Wenruo 		}
29170257bb82SYan, Zheng 	}
29180257bb82SYan, Zheng 	WARN_ON(nr != cluster->nr);
291932430c61SNaohiro Aota 	if (btrfs_is_zoned(fs_info) && !ret)
292032430c61SNaohiro Aota 		ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
2921efa56464SYan, Zheng out:
29220257bb82SYan, Zheng 	kfree(ra);
29230257bb82SYan, Zheng 	return ret;
29240257bb82SYan, Zheng }
29250257bb82SYan, Zheng 
29260257bb82SYan, Zheng static noinline_for_stack
29270257bb82SYan, Zheng int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
29280257bb82SYan, Zheng 			 struct file_extent_cluster *cluster)
29290257bb82SYan, Zheng {
29300257bb82SYan, Zheng 	int ret;
29310257bb82SYan, Zheng 
29320257bb82SYan, Zheng 	if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
29330257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
29340257bb82SYan, Zheng 		if (ret)
29350257bb82SYan, Zheng 			return ret;
29360257bb82SYan, Zheng 		cluster->nr = 0;
29370257bb82SYan, Zheng 	}
29380257bb82SYan, Zheng 
29390257bb82SYan, Zheng 	if (!cluster->nr)
29400257bb82SYan, Zheng 		cluster->start = extent_key->objectid;
29410257bb82SYan, Zheng 	else
29420257bb82SYan, Zheng 		BUG_ON(cluster->nr >= MAX_EXTENTS);
29430257bb82SYan, Zheng 	cluster->end = extent_key->objectid + extent_key->offset - 1;
29440257bb82SYan, Zheng 	cluster->boundary[cluster->nr] = extent_key->objectid;
29450257bb82SYan, Zheng 	cluster->nr++;
29460257bb82SYan, Zheng 
29470257bb82SYan, Zheng 	if (cluster->nr >= MAX_EXTENTS) {
29480257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
29490257bb82SYan, Zheng 		if (ret)
29500257bb82SYan, Zheng 			return ret;
29510257bb82SYan, Zheng 		cluster->nr = 0;
29520257bb82SYan, Zheng 	}
29530257bb82SYan, Zheng 	return 0;
29545d4f98a2SYan Zheng }
29555d4f98a2SYan Zheng 
29565d4f98a2SYan Zheng /*
29575d4f98a2SYan Zheng  * helper to add a tree block to the list.
29585d4f98a2SYan Zheng  * the major work is getting the generation and level of the block
29595d4f98a2SYan Zheng  */
29605d4f98a2SYan Zheng static int add_tree_block(struct reloc_control *rc,
29615d4f98a2SYan Zheng 			  struct btrfs_key *extent_key,
29625d4f98a2SYan Zheng 			  struct btrfs_path *path,
29635d4f98a2SYan Zheng 			  struct rb_root *blocks)
29645d4f98a2SYan Zheng {
29655d4f98a2SYan Zheng 	struct extent_buffer *eb;
29665d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
29675d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
29685d4f98a2SYan Zheng 	struct tree_block *block;
29695d4f98a2SYan Zheng 	struct rb_node *rb_node;
29705d4f98a2SYan Zheng 	u32 item_size;
29715d4f98a2SYan Zheng 	int level = -1;
29727fdf4b60SWang Shilong 	u64 generation;
2973f7ba2d37SJosef Bacik 	u64 owner = 0;
29745d4f98a2SYan Zheng 
29755d4f98a2SYan Zheng 	eb =  path->nodes[0];
29765d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(eb, path->slots[0]);
29775d4f98a2SYan Zheng 
29783173a18fSJosef Bacik 	if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
29793173a18fSJosef Bacik 	    item_size >= sizeof(*ei) + sizeof(*bi)) {
2980f7ba2d37SJosef Bacik 		unsigned long ptr = 0, end;
2981f7ba2d37SJosef Bacik 
29825d4f98a2SYan Zheng 		ei = btrfs_item_ptr(eb, path->slots[0],
29835d4f98a2SYan Zheng 				struct btrfs_extent_item);
2984f7ba2d37SJosef Bacik 		end = (unsigned long)ei + item_size;
29853173a18fSJosef Bacik 		if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
29865d4f98a2SYan Zheng 			bi = (struct btrfs_tree_block_info *)(ei + 1);
29875d4f98a2SYan Zheng 			level = btrfs_tree_block_level(eb, bi);
2988f7ba2d37SJosef Bacik 			ptr = (unsigned long)(bi + 1);
29895d4f98a2SYan Zheng 		} else {
29903173a18fSJosef Bacik 			level = (int)extent_key->offset;
2991f7ba2d37SJosef Bacik 			ptr = (unsigned long)(ei + 1);
29923173a18fSJosef Bacik 		}
29933173a18fSJosef Bacik 		generation = btrfs_extent_generation(eb, ei);
2994f7ba2d37SJosef Bacik 
2995f7ba2d37SJosef Bacik 		/*
2996f7ba2d37SJosef Bacik 		 * We're reading random blocks without knowing their owner ahead
2997f7ba2d37SJosef Bacik 		 * of time.  This is ok most of the time, as all reloc roots and
2998f7ba2d37SJosef Bacik 		 * fs roots have the same lock type.  However normal trees do
2999f7ba2d37SJosef Bacik 		 * not, and the only way to know ahead of time is to read the
3000f7ba2d37SJosef Bacik 		 * inline ref offset.  We know it's an fs root if
3001f7ba2d37SJosef Bacik 		 *
3002f7ba2d37SJosef Bacik 		 * 1. There's more than one ref.
3003f7ba2d37SJosef Bacik 		 * 2. There's a SHARED_DATA_REF_KEY set.
3004f7ba2d37SJosef Bacik 		 * 3. FULL_BACKREF is set on the flags.
3005f7ba2d37SJosef Bacik 		 *
3006f7ba2d37SJosef Bacik 		 * Otherwise it's safe to assume that the ref offset == the
3007f7ba2d37SJosef Bacik 		 * owner of this block, so we can use that when calling
3008f7ba2d37SJosef Bacik 		 * read_tree_block.
3009f7ba2d37SJosef Bacik 		 */
3010f7ba2d37SJosef Bacik 		if (btrfs_extent_refs(eb, ei) == 1 &&
3011f7ba2d37SJosef Bacik 		    !(btrfs_extent_flags(eb, ei) &
3012f7ba2d37SJosef Bacik 		      BTRFS_BLOCK_FLAG_FULL_BACKREF) &&
3013f7ba2d37SJosef Bacik 		    ptr < end) {
3014f7ba2d37SJosef Bacik 			struct btrfs_extent_inline_ref *iref;
3015f7ba2d37SJosef Bacik 			int type;
3016f7ba2d37SJosef Bacik 
3017f7ba2d37SJosef Bacik 			iref = (struct btrfs_extent_inline_ref *)ptr;
3018f7ba2d37SJosef Bacik 			type = btrfs_get_extent_inline_ref_type(eb, iref,
3019f7ba2d37SJosef Bacik 							BTRFS_REF_TYPE_BLOCK);
3020f7ba2d37SJosef Bacik 			if (type == BTRFS_REF_TYPE_INVALID)
3021f7ba2d37SJosef Bacik 				return -EINVAL;
3022f7ba2d37SJosef Bacik 			if (type == BTRFS_TREE_BLOCK_REF_KEY)
3023f7ba2d37SJosef Bacik 				owner = btrfs_extent_inline_ref_offset(eb, iref);
3024f7ba2d37SJosef Bacik 		}
30256d8ff4e4SDavid Sterba 	} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
3026ba3c2b19SNikolay Borisov 		btrfs_print_v0_err(eb->fs_info);
3027ba3c2b19SNikolay Borisov 		btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3028ba3c2b19SNikolay Borisov 		return -EINVAL;
30293173a18fSJosef Bacik 	} else {
30305d4f98a2SYan Zheng 		BUG();
30315d4f98a2SYan Zheng 	}
30325d4f98a2SYan Zheng 
3033b3b4aa74SDavid Sterba 	btrfs_release_path(path);
30345d4f98a2SYan Zheng 
30355d4f98a2SYan Zheng 	BUG_ON(level == -1);
30365d4f98a2SYan Zheng 
30375d4f98a2SYan Zheng 	block = kmalloc(sizeof(*block), GFP_NOFS);
30385d4f98a2SYan Zheng 	if (!block)
30395d4f98a2SYan Zheng 		return -ENOMEM;
30405d4f98a2SYan Zheng 
30415d4f98a2SYan Zheng 	block->bytenr = extent_key->objectid;
3042da17066cSJeff Mahoney 	block->key.objectid = rc->extent_root->fs_info->nodesize;
30435d4f98a2SYan Zheng 	block->key.offset = generation;
30445d4f98a2SYan Zheng 	block->level = level;
30455d4f98a2SYan Zheng 	block->key_ready = 0;
3046f7ba2d37SJosef Bacik 	block->owner = owner;
30475d4f98a2SYan Zheng 
3048e9a28dc5SQu Wenruo 	rb_node = rb_simple_insert(blocks, block->bytenr, &block->rb_node);
304943c04fb1SJeff Mahoney 	if (rb_node)
3050982c92cbSQu Wenruo 		btrfs_backref_panic(rc->extent_root->fs_info, block->bytenr,
3051982c92cbSQu Wenruo 				    -EEXIST);
30525d4f98a2SYan Zheng 
30535d4f98a2SYan Zheng 	return 0;
30545d4f98a2SYan Zheng }
30555d4f98a2SYan Zheng 
30565d4f98a2SYan Zheng /*
30575d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
30585d4f98a2SYan Zheng  */
30595d4f98a2SYan Zheng static int __add_tree_block(struct reloc_control *rc,
30605d4f98a2SYan Zheng 			    u64 bytenr, u32 blocksize,
30615d4f98a2SYan Zheng 			    struct rb_root *blocks)
30625d4f98a2SYan Zheng {
30630b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
30645d4f98a2SYan Zheng 	struct btrfs_path *path;
30655d4f98a2SYan Zheng 	struct btrfs_key key;
30665d4f98a2SYan Zheng 	int ret;
30670b246afaSJeff Mahoney 	bool skinny = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
30685d4f98a2SYan Zheng 
30697476dfdaSDavid Sterba 	if (tree_block_processed(bytenr, rc))
30705d4f98a2SYan Zheng 		return 0;
30715d4f98a2SYan Zheng 
3072e9a28dc5SQu Wenruo 	if (rb_simple_search(blocks, bytenr))
30735d4f98a2SYan Zheng 		return 0;
30745d4f98a2SYan Zheng 
30755d4f98a2SYan Zheng 	path = btrfs_alloc_path();
30765d4f98a2SYan Zheng 	if (!path)
30775d4f98a2SYan Zheng 		return -ENOMEM;
3078aee68ee5SJosef Bacik again:
30795d4f98a2SYan Zheng 	key.objectid = bytenr;
3080aee68ee5SJosef Bacik 	if (skinny) {
3081aee68ee5SJosef Bacik 		key.type = BTRFS_METADATA_ITEM_KEY;
3082aee68ee5SJosef Bacik 		key.offset = (u64)-1;
3083aee68ee5SJosef Bacik 	} else {
30845d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
30855d4f98a2SYan Zheng 		key.offset = blocksize;
3086aee68ee5SJosef Bacik 	}
30875d4f98a2SYan Zheng 
30885d4f98a2SYan Zheng 	path->search_commit_root = 1;
30895d4f98a2SYan Zheng 	path->skip_locking = 1;
30905d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
30915d4f98a2SYan Zheng 	if (ret < 0)
30925d4f98a2SYan Zheng 		goto out;
30935d4f98a2SYan Zheng 
3094aee68ee5SJosef Bacik 	if (ret > 0 && skinny) {
3095aee68ee5SJosef Bacik 		if (path->slots[0]) {
3096aee68ee5SJosef Bacik 			path->slots[0]--;
3097aee68ee5SJosef Bacik 			btrfs_item_key_to_cpu(path->nodes[0], &key,
3098aee68ee5SJosef Bacik 					      path->slots[0]);
30993173a18fSJosef Bacik 			if (key.objectid == bytenr &&
3100aee68ee5SJosef Bacik 			    (key.type == BTRFS_METADATA_ITEM_KEY ||
3101aee68ee5SJosef Bacik 			     (key.type == BTRFS_EXTENT_ITEM_KEY &&
3102aee68ee5SJosef Bacik 			      key.offset == blocksize)))
31033173a18fSJosef Bacik 				ret = 0;
31043173a18fSJosef Bacik 		}
3105aee68ee5SJosef Bacik 
3106aee68ee5SJosef Bacik 		if (ret) {
3107aee68ee5SJosef Bacik 			skinny = false;
3108aee68ee5SJosef Bacik 			btrfs_release_path(path);
3109aee68ee5SJosef Bacik 			goto again;
3110aee68ee5SJosef Bacik 		}
3111aee68ee5SJosef Bacik 	}
3112cdccee99SLiu Bo 	if (ret) {
3113cdccee99SLiu Bo 		ASSERT(ret == 1);
3114cdccee99SLiu Bo 		btrfs_print_leaf(path->nodes[0]);
3115cdccee99SLiu Bo 		btrfs_err(fs_info,
3116cdccee99SLiu Bo 	     "tree block extent item (%llu) is not found in extent tree",
3117cdccee99SLiu Bo 		     bytenr);
3118cdccee99SLiu Bo 		WARN_ON(1);
3119cdccee99SLiu Bo 		ret = -EINVAL;
3120cdccee99SLiu Bo 		goto out;
3121cdccee99SLiu Bo 	}
31223173a18fSJosef Bacik 
31235d4f98a2SYan Zheng 	ret = add_tree_block(rc, &key, path, blocks);
31245d4f98a2SYan Zheng out:
31255d4f98a2SYan Zheng 	btrfs_free_path(path);
31265d4f98a2SYan Zheng 	return ret;
31275d4f98a2SYan Zheng }
31285d4f98a2SYan Zheng 
31290af3d00bSJosef Bacik static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
313032da5386SDavid Sterba 				    struct btrfs_block_group *block_group,
31311bbc621eSChris Mason 				    struct inode *inode,
31321bbc621eSChris Mason 				    u64 ino)
31330af3d00bSJosef Bacik {
31340af3d00bSJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
31350af3d00bSJosef Bacik 	struct btrfs_trans_handle *trans;
31360af3d00bSJosef Bacik 	int ret = 0;
31370af3d00bSJosef Bacik 
31380af3d00bSJosef Bacik 	if (inode)
31390af3d00bSJosef Bacik 		goto truncate;
31400af3d00bSJosef Bacik 
31410202e83fSDavid Sterba 	inode = btrfs_iget(fs_info->sb, ino, root);
31422e19f1f9SAl Viro 	if (IS_ERR(inode))
31430af3d00bSJosef Bacik 		return -ENOENT;
31440af3d00bSJosef Bacik 
31450af3d00bSJosef Bacik truncate:
31462ff7e61eSJeff Mahoney 	ret = btrfs_check_trunc_cache_free_space(fs_info,
31477b61cd92SMiao Xie 						 &fs_info->global_block_rsv);
31487b61cd92SMiao Xie 	if (ret)
31497b61cd92SMiao Xie 		goto out;
31507b61cd92SMiao Xie 
31517a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
31520af3d00bSJosef Bacik 	if (IS_ERR(trans)) {
31533612b495STsutomu Itoh 		ret = PTR_ERR(trans);
31540af3d00bSJosef Bacik 		goto out;
31550af3d00bSJosef Bacik 	}
31560af3d00bSJosef Bacik 
315777ab86bfSJeff Mahoney 	ret = btrfs_truncate_free_space_cache(trans, block_group, inode);
31580af3d00bSJosef Bacik 
31593a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
31602ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
31610af3d00bSJosef Bacik out:
31620af3d00bSJosef Bacik 	iput(inode);
31630af3d00bSJosef Bacik 	return ret;
31640af3d00bSJosef Bacik }
31650af3d00bSJosef Bacik 
31665d4f98a2SYan Zheng /*
316719b546d7SQu Wenruo  * Locate the free space cache EXTENT_DATA in root tree leaf and delete the
316819b546d7SQu Wenruo  * cache inode, to avoid free space cache data extent blocking data relocation.
31695d4f98a2SYan Zheng  */
317019b546d7SQu Wenruo static int delete_v1_space_cache(struct extent_buffer *leaf,
317119b546d7SQu Wenruo 				 struct btrfs_block_group *block_group,
317219b546d7SQu Wenruo 				 u64 data_bytenr)
31735d4f98a2SYan Zheng {
317419b546d7SQu Wenruo 	u64 space_cache_ino;
317519b546d7SQu Wenruo 	struct btrfs_file_extent_item *ei;
31765d4f98a2SYan Zheng 	struct btrfs_key key;
317719b546d7SQu Wenruo 	bool found = false;
317819b546d7SQu Wenruo 	int i;
31795d4f98a2SYan Zheng 	int ret;
31805d4f98a2SYan Zheng 
318119b546d7SQu Wenruo 	if (btrfs_header_owner(leaf) != BTRFS_ROOT_TREE_OBJECTID)
318219b546d7SQu Wenruo 		return 0;
31835d4f98a2SYan Zheng 
318419b546d7SQu Wenruo 	for (i = 0; i < btrfs_header_nritems(leaf); i++) {
318550e31ef4SQu Wenruo 		u8 type;
318650e31ef4SQu Wenruo 
318719b546d7SQu Wenruo 		btrfs_item_key_to_cpu(leaf, &key, i);
318819b546d7SQu Wenruo 		if (key.type != BTRFS_EXTENT_DATA_KEY)
318919b546d7SQu Wenruo 			continue;
319019b546d7SQu Wenruo 		ei = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
319150e31ef4SQu Wenruo 		type = btrfs_file_extent_type(leaf, ei);
319250e31ef4SQu Wenruo 
319350e31ef4SQu Wenruo 		if ((type == BTRFS_FILE_EXTENT_REG ||
319450e31ef4SQu Wenruo 		     type == BTRFS_FILE_EXTENT_PREALLOC) &&
319519b546d7SQu Wenruo 		    btrfs_file_extent_disk_bytenr(leaf, ei) == data_bytenr) {
319619b546d7SQu Wenruo 			found = true;
319719b546d7SQu Wenruo 			space_cache_ino = key.objectid;
319819b546d7SQu Wenruo 			break;
319919b546d7SQu Wenruo 		}
320019b546d7SQu Wenruo 	}
320119b546d7SQu Wenruo 	if (!found)
320219b546d7SQu Wenruo 		return -ENOENT;
320319b546d7SQu Wenruo 	ret = delete_block_group_cache(leaf->fs_info, block_group, NULL,
320419b546d7SQu Wenruo 					space_cache_ino);
32050af3d00bSJosef Bacik 	return ret;
32065d4f98a2SYan Zheng }
32075d4f98a2SYan Zheng 
32085d4f98a2SYan Zheng /*
32092c016dc2SLiu Bo  * helper to find all tree blocks that reference a given data extent
32105d4f98a2SYan Zheng  */
32115d4f98a2SYan Zheng static noinline_for_stack
32125d4f98a2SYan Zheng int add_data_references(struct reloc_control *rc,
32135d4f98a2SYan Zheng 			struct btrfs_key *extent_key,
32145d4f98a2SYan Zheng 			struct btrfs_path *path,
32155d4f98a2SYan Zheng 			struct rb_root *blocks)
32165d4f98a2SYan Zheng {
321719b546d7SQu Wenruo 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
321819b546d7SQu Wenruo 	struct ulist *leaves = NULL;
321919b546d7SQu Wenruo 	struct ulist_iterator leaf_uiter;
322019b546d7SQu Wenruo 	struct ulist_node *ref_node = NULL;
322119b546d7SQu Wenruo 	const u32 blocksize = fs_info->nodesize;
3222647f63bdSFilipe David Borba Manana 	int ret = 0;
32235d4f98a2SYan Zheng 
3224b3b4aa74SDavid Sterba 	btrfs_release_path(path);
322519b546d7SQu Wenruo 	ret = btrfs_find_all_leafs(NULL, fs_info, extent_key->objectid,
322619b546d7SQu Wenruo 				   0, &leaves, NULL, true);
322719b546d7SQu Wenruo 	if (ret < 0)
322819b546d7SQu Wenruo 		return ret;
322919b546d7SQu Wenruo 
323019b546d7SQu Wenruo 	ULIST_ITER_INIT(&leaf_uiter);
323119b546d7SQu Wenruo 	while ((ref_node = ulist_next(leaves, &leaf_uiter))) {
323219b546d7SQu Wenruo 		struct extent_buffer *eb;
323319b546d7SQu Wenruo 
32341b7ec85eSJosef Bacik 		eb = read_tree_block(fs_info, ref_node->val, 0, 0, 0, NULL);
323519b546d7SQu Wenruo 		if (IS_ERR(eb)) {
323619b546d7SQu Wenruo 			ret = PTR_ERR(eb);
323719b546d7SQu Wenruo 			break;
323819b546d7SQu Wenruo 		}
323919b546d7SQu Wenruo 		ret = delete_v1_space_cache(eb, rc->block_group,
324019b546d7SQu Wenruo 					    extent_key->objectid);
324119b546d7SQu Wenruo 		free_extent_buffer(eb);
324219b546d7SQu Wenruo 		if (ret < 0)
324319b546d7SQu Wenruo 			break;
324419b546d7SQu Wenruo 		ret = __add_tree_block(rc, ref_node->val, blocksize, blocks);
324519b546d7SQu Wenruo 		if (ret < 0)
324619b546d7SQu Wenruo 			break;
324719b546d7SQu Wenruo 	}
324819b546d7SQu Wenruo 	if (ret < 0)
32495d4f98a2SYan Zheng 		free_block_list(blocks);
325019b546d7SQu Wenruo 	ulist_free(leaves);
325119b546d7SQu Wenruo 	return ret;
32525d4f98a2SYan Zheng }
32535d4f98a2SYan Zheng 
32545d4f98a2SYan Zheng /*
32552c016dc2SLiu Bo  * helper to find next unprocessed extent
32565d4f98a2SYan Zheng  */
32575d4f98a2SYan Zheng static noinline_for_stack
3258147d256eSZhaolei int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
32593fd0a558SYan, Zheng 		     struct btrfs_key *extent_key)
32605d4f98a2SYan Zheng {
32610b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
32625d4f98a2SYan Zheng 	struct btrfs_key key;
32635d4f98a2SYan Zheng 	struct extent_buffer *leaf;
32645d4f98a2SYan Zheng 	u64 start, end, last;
32655d4f98a2SYan Zheng 	int ret;
32665d4f98a2SYan Zheng 
3267b3470b5dSDavid Sterba 	last = rc->block_group->start + rc->block_group->length;
32685d4f98a2SYan Zheng 	while (1) {
32695d4f98a2SYan Zheng 		cond_resched();
32705d4f98a2SYan Zheng 		if (rc->search_start >= last) {
32715d4f98a2SYan Zheng 			ret = 1;
32725d4f98a2SYan Zheng 			break;
32735d4f98a2SYan Zheng 		}
32745d4f98a2SYan Zheng 
32755d4f98a2SYan Zheng 		key.objectid = rc->search_start;
32765d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
32775d4f98a2SYan Zheng 		key.offset = 0;
32785d4f98a2SYan Zheng 
32795d4f98a2SYan Zheng 		path->search_commit_root = 1;
32805d4f98a2SYan Zheng 		path->skip_locking = 1;
32815d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
32825d4f98a2SYan Zheng 					0, 0);
32835d4f98a2SYan Zheng 		if (ret < 0)
32845d4f98a2SYan Zheng 			break;
32855d4f98a2SYan Zheng next:
32865d4f98a2SYan Zheng 		leaf = path->nodes[0];
32875d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(leaf)) {
32885d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
32895d4f98a2SYan Zheng 			if (ret != 0)
32905d4f98a2SYan Zheng 				break;
32915d4f98a2SYan Zheng 			leaf = path->nodes[0];
32925d4f98a2SYan Zheng 		}
32935d4f98a2SYan Zheng 
32945d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
32955d4f98a2SYan Zheng 		if (key.objectid >= last) {
32965d4f98a2SYan Zheng 			ret = 1;
32975d4f98a2SYan Zheng 			break;
32985d4f98a2SYan Zheng 		}
32995d4f98a2SYan Zheng 
33003173a18fSJosef Bacik 		if (key.type != BTRFS_EXTENT_ITEM_KEY &&
33013173a18fSJosef Bacik 		    key.type != BTRFS_METADATA_ITEM_KEY) {
33023173a18fSJosef Bacik 			path->slots[0]++;
33033173a18fSJosef Bacik 			goto next;
33043173a18fSJosef Bacik 		}
33053173a18fSJosef Bacik 
33063173a18fSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY &&
33075d4f98a2SYan Zheng 		    key.objectid + key.offset <= rc->search_start) {
33085d4f98a2SYan Zheng 			path->slots[0]++;
33095d4f98a2SYan Zheng 			goto next;
33105d4f98a2SYan Zheng 		}
33115d4f98a2SYan Zheng 
33123173a18fSJosef Bacik 		if (key.type == BTRFS_METADATA_ITEM_KEY &&
33130b246afaSJeff Mahoney 		    key.objectid + fs_info->nodesize <=
33143173a18fSJosef Bacik 		    rc->search_start) {
33153173a18fSJosef Bacik 			path->slots[0]++;
33163173a18fSJosef Bacik 			goto next;
33173173a18fSJosef Bacik 		}
33183173a18fSJosef Bacik 
33195d4f98a2SYan Zheng 		ret = find_first_extent_bit(&rc->processed_blocks,
33205d4f98a2SYan Zheng 					    key.objectid, &start, &end,
3321e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
33225d4f98a2SYan Zheng 
33235d4f98a2SYan Zheng 		if (ret == 0 && start <= key.objectid) {
3324b3b4aa74SDavid Sterba 			btrfs_release_path(path);
33255d4f98a2SYan Zheng 			rc->search_start = end + 1;
33265d4f98a2SYan Zheng 		} else {
33273173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY)
33285d4f98a2SYan Zheng 				rc->search_start = key.objectid + key.offset;
33293173a18fSJosef Bacik 			else
33303173a18fSJosef Bacik 				rc->search_start = key.objectid +
33310b246afaSJeff Mahoney 					fs_info->nodesize;
33323fd0a558SYan, Zheng 			memcpy(extent_key, &key, sizeof(key));
33335d4f98a2SYan Zheng 			return 0;
33345d4f98a2SYan Zheng 		}
33355d4f98a2SYan Zheng 	}
3336b3b4aa74SDavid Sterba 	btrfs_release_path(path);
33375d4f98a2SYan Zheng 	return ret;
33385d4f98a2SYan Zheng }
33395d4f98a2SYan Zheng 
33405d4f98a2SYan Zheng static void set_reloc_control(struct reloc_control *rc)
33415d4f98a2SYan Zheng {
33425d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
33437585717fSChris Mason 
33447585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
33455d4f98a2SYan Zheng 	fs_info->reloc_ctl = rc;
33467585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
33475d4f98a2SYan Zheng }
33485d4f98a2SYan Zheng 
33495d4f98a2SYan Zheng static void unset_reloc_control(struct reloc_control *rc)
33505d4f98a2SYan Zheng {
33515d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
33527585717fSChris Mason 
33537585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
33545d4f98a2SYan Zheng 	fs_info->reloc_ctl = NULL;
33557585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
33565d4f98a2SYan Zheng }
33575d4f98a2SYan Zheng 
33585d4f98a2SYan Zheng static int check_extent_flags(u64 flags)
33595d4f98a2SYan Zheng {
33605d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
33615d4f98a2SYan Zheng 	    (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
33625d4f98a2SYan Zheng 		return 1;
33635d4f98a2SYan Zheng 	if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
33645d4f98a2SYan Zheng 	    !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
33655d4f98a2SYan Zheng 		return 1;
33665d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
33675d4f98a2SYan Zheng 	    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
33685d4f98a2SYan Zheng 		return 1;
33695d4f98a2SYan Zheng 	return 0;
33705d4f98a2SYan Zheng }
33715d4f98a2SYan Zheng 
33723fd0a558SYan, Zheng static noinline_for_stack
33733fd0a558SYan, Zheng int prepare_to_relocate(struct reloc_control *rc)
33743fd0a558SYan, Zheng {
33753fd0a558SYan, Zheng 	struct btrfs_trans_handle *trans;
3376ac2fabacSJosef Bacik 	int ret;
33773fd0a558SYan, Zheng 
33782ff7e61eSJeff Mahoney 	rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root->fs_info,
337966d8f3ddSMiao Xie 					      BTRFS_BLOCK_RSV_TEMP);
33803fd0a558SYan, Zheng 	if (!rc->block_rsv)
33813fd0a558SYan, Zheng 		return -ENOMEM;
33823fd0a558SYan, Zheng 
33833fd0a558SYan, Zheng 	memset(&rc->cluster, 0, sizeof(rc->cluster));
3384b3470b5dSDavid Sterba 	rc->search_start = rc->block_group->start;
33853fd0a558SYan, Zheng 	rc->extents_found = 0;
33863fd0a558SYan, Zheng 	rc->nodes_relocated = 0;
33873fd0a558SYan, Zheng 	rc->merging_rsv_size = 0;
33880647bf56SWang Shilong 	rc->reserved_bytes = 0;
3389da17066cSJeff Mahoney 	rc->block_rsv->size = rc->extent_root->fs_info->nodesize *
33900647bf56SWang Shilong 			      RELOCATION_RESERVED_NODES;
3391ac2fabacSJosef Bacik 	ret = btrfs_block_rsv_refill(rc->extent_root,
3392ac2fabacSJosef Bacik 				     rc->block_rsv, rc->block_rsv->size,
3393ac2fabacSJosef Bacik 				     BTRFS_RESERVE_FLUSH_ALL);
3394ac2fabacSJosef Bacik 	if (ret)
3395ac2fabacSJosef Bacik 		return ret;
33963fd0a558SYan, Zheng 
33973fd0a558SYan, Zheng 	rc->create_reloc_tree = 1;
33983fd0a558SYan, Zheng 	set_reloc_control(rc);
33993fd0a558SYan, Zheng 
34007a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
340128818947SLiu Bo 	if (IS_ERR(trans)) {
340228818947SLiu Bo 		unset_reloc_control(rc);
340328818947SLiu Bo 		/*
340428818947SLiu Bo 		 * extent tree is not a ref_cow tree and has no reloc_root to
340528818947SLiu Bo 		 * cleanup.  And callers are responsible to free the above
340628818947SLiu Bo 		 * block rsv.
340728818947SLiu Bo 		 */
340828818947SLiu Bo 		return PTR_ERR(trans);
340928818947SLiu Bo 	}
34103a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
34113fd0a558SYan, Zheng 	return 0;
34123fd0a558SYan, Zheng }
341376dda93cSYan, Zheng 
34145d4f98a2SYan Zheng static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
34155d4f98a2SYan Zheng {
34162ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
34175d4f98a2SYan Zheng 	struct rb_root blocks = RB_ROOT;
34185d4f98a2SYan Zheng 	struct btrfs_key key;
34195d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans = NULL;
34205d4f98a2SYan Zheng 	struct btrfs_path *path;
34215d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
34225d4f98a2SYan Zheng 	u64 flags;
34235d4f98a2SYan Zheng 	u32 item_size;
34245d4f98a2SYan Zheng 	int ret;
34255d4f98a2SYan Zheng 	int err = 0;
3426c87f08caSChris Mason 	int progress = 0;
34275d4f98a2SYan Zheng 
34285d4f98a2SYan Zheng 	path = btrfs_alloc_path();
34293fd0a558SYan, Zheng 	if (!path)
34305d4f98a2SYan Zheng 		return -ENOMEM;
3431e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
34323fd0a558SYan, Zheng 
34333fd0a558SYan, Zheng 	ret = prepare_to_relocate(rc);
34343fd0a558SYan, Zheng 	if (ret) {
34353fd0a558SYan, Zheng 		err = ret;
34363fd0a558SYan, Zheng 		goto out_free;
34372423fdfbSJiri Slaby 	}
34385d4f98a2SYan Zheng 
34395d4f98a2SYan Zheng 	while (1) {
34400647bf56SWang Shilong 		rc->reserved_bytes = 0;
34410647bf56SWang Shilong 		ret = btrfs_block_rsv_refill(rc->extent_root,
34420647bf56SWang Shilong 					rc->block_rsv, rc->block_rsv->size,
34430647bf56SWang Shilong 					BTRFS_RESERVE_FLUSH_ALL);
34440647bf56SWang Shilong 		if (ret) {
34450647bf56SWang Shilong 			err = ret;
34460647bf56SWang Shilong 			break;
34470647bf56SWang Shilong 		}
3448c87f08caSChris Mason 		progress++;
3449a22285a6SYan, Zheng 		trans = btrfs_start_transaction(rc->extent_root, 0);
34500f788c58SLiu Bo 		if (IS_ERR(trans)) {
34510f788c58SLiu Bo 			err = PTR_ERR(trans);
34520f788c58SLiu Bo 			trans = NULL;
34530f788c58SLiu Bo 			break;
34540f788c58SLiu Bo 		}
3455c87f08caSChris Mason restart:
34563fd0a558SYan, Zheng 		if (update_backref_cache(trans, &rc->backref_cache)) {
34573a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
345842a657f5SPan Bian 			trans = NULL;
34593fd0a558SYan, Zheng 			continue;
34603fd0a558SYan, Zheng 		}
34613fd0a558SYan, Zheng 
3462147d256eSZhaolei 		ret = find_next_extent(rc, path, &key);
34635d4f98a2SYan Zheng 		if (ret < 0)
34645d4f98a2SYan Zheng 			err = ret;
34655d4f98a2SYan Zheng 		if (ret != 0)
34665d4f98a2SYan Zheng 			break;
34675d4f98a2SYan Zheng 
34685d4f98a2SYan Zheng 		rc->extents_found++;
34695d4f98a2SYan Zheng 
34705d4f98a2SYan Zheng 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
34715d4f98a2SYan Zheng 				    struct btrfs_extent_item);
34723fd0a558SYan, Zheng 		item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
34735d4f98a2SYan Zheng 		if (item_size >= sizeof(*ei)) {
34745d4f98a2SYan Zheng 			flags = btrfs_extent_flags(path->nodes[0], ei);
34755d4f98a2SYan Zheng 			ret = check_extent_flags(flags);
34765d4f98a2SYan Zheng 			BUG_ON(ret);
34776d8ff4e4SDavid Sterba 		} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
3478ba3c2b19SNikolay Borisov 			err = -EINVAL;
3479ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(trans->fs_info);
3480ba3c2b19SNikolay Borisov 			btrfs_abort_transaction(trans, err);
3481ba3c2b19SNikolay Borisov 			break;
34825d4f98a2SYan Zheng 		} else {
34835d4f98a2SYan Zheng 			BUG();
34845d4f98a2SYan Zheng 		}
34855d4f98a2SYan Zheng 
34865d4f98a2SYan Zheng 		if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
34875d4f98a2SYan Zheng 			ret = add_tree_block(rc, &key, path, &blocks);
34885d4f98a2SYan Zheng 		} else if (rc->stage == UPDATE_DATA_PTRS &&
34895d4f98a2SYan Zheng 			   (flags & BTRFS_EXTENT_FLAG_DATA)) {
34905d4f98a2SYan Zheng 			ret = add_data_references(rc, &key, path, &blocks);
34915d4f98a2SYan Zheng 		} else {
3492b3b4aa74SDavid Sterba 			btrfs_release_path(path);
34935d4f98a2SYan Zheng 			ret = 0;
34945d4f98a2SYan Zheng 		}
34955d4f98a2SYan Zheng 		if (ret < 0) {
34963fd0a558SYan, Zheng 			err = ret;
34975d4f98a2SYan Zheng 			break;
34985d4f98a2SYan Zheng 		}
34995d4f98a2SYan Zheng 
35005d4f98a2SYan Zheng 		if (!RB_EMPTY_ROOT(&blocks)) {
35015d4f98a2SYan Zheng 			ret = relocate_tree_blocks(trans, rc, &blocks);
35025d4f98a2SYan Zheng 			if (ret < 0) {
35033fd0a558SYan, Zheng 				if (ret != -EAGAIN) {
35045d4f98a2SYan Zheng 					err = ret;
35055d4f98a2SYan Zheng 					break;
35065d4f98a2SYan Zheng 				}
35073fd0a558SYan, Zheng 				rc->extents_found--;
35083fd0a558SYan, Zheng 				rc->search_start = key.objectid;
35093fd0a558SYan, Zheng 			}
35105d4f98a2SYan Zheng 		}
35115d4f98a2SYan Zheng 
35123a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
35132ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
35143fd0a558SYan, Zheng 		trans = NULL;
35155d4f98a2SYan Zheng 
35165d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS &&
35175d4f98a2SYan Zheng 		    (flags & BTRFS_EXTENT_FLAG_DATA)) {
35185d4f98a2SYan Zheng 			rc->found_file_extent = 1;
35190257bb82SYan, Zheng 			ret = relocate_data_extent(rc->data_inode,
35203fd0a558SYan, Zheng 						   &key, &rc->cluster);
35215d4f98a2SYan Zheng 			if (ret < 0) {
35225d4f98a2SYan Zheng 				err = ret;
35235d4f98a2SYan Zheng 				break;
35245d4f98a2SYan Zheng 			}
35255d4f98a2SYan Zheng 		}
3526f31ea088SQu Wenruo 		if (btrfs_should_cancel_balance(fs_info)) {
3527f31ea088SQu Wenruo 			err = -ECANCELED;
3528f31ea088SQu Wenruo 			break;
3529f31ea088SQu Wenruo 		}
35305d4f98a2SYan Zheng 	}
3531c87f08caSChris Mason 	if (trans && progress && err == -ENOSPC) {
353243a7e99dSNikolay Borisov 		ret = btrfs_force_chunk_alloc(trans, rc->block_group->flags);
35339689457bSShilong Wang 		if (ret == 1) {
3534c87f08caSChris Mason 			err = 0;
3535c87f08caSChris Mason 			progress = 0;
3536c87f08caSChris Mason 			goto restart;
3537c87f08caSChris Mason 		}
3538c87f08caSChris Mason 	}
35393fd0a558SYan, Zheng 
3540b3b4aa74SDavid Sterba 	btrfs_release_path(path);
354191166212SDavid Sterba 	clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
35425d4f98a2SYan Zheng 
35435d4f98a2SYan Zheng 	if (trans) {
35443a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
35452ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
35465d4f98a2SYan Zheng 	}
35475d4f98a2SYan Zheng 
35480257bb82SYan, Zheng 	if (!err) {
35493fd0a558SYan, Zheng 		ret = relocate_file_extent_cluster(rc->data_inode,
35503fd0a558SYan, Zheng 						   &rc->cluster);
35510257bb82SYan, Zheng 		if (ret < 0)
35520257bb82SYan, Zheng 			err = ret;
35530257bb82SYan, Zheng 	}
35540257bb82SYan, Zheng 
35553fd0a558SYan, Zheng 	rc->create_reloc_tree = 0;
35563fd0a558SYan, Zheng 	set_reloc_control(rc);
35570257bb82SYan, Zheng 
355813fe1bdbSQu Wenruo 	btrfs_backref_release_cache(&rc->backref_cache);
355963f018beSNikolay Borisov 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
35605d4f98a2SYan Zheng 
35617f913c7cSQu Wenruo 	/*
35627f913c7cSQu Wenruo 	 * Even in the case when the relocation is cancelled, we should all go
35637f913c7cSQu Wenruo 	 * through prepare_to_merge() and merge_reloc_roots().
35647f913c7cSQu Wenruo 	 *
35657f913c7cSQu Wenruo 	 * For error (including cancelled balance), prepare_to_merge() will
35667f913c7cSQu Wenruo 	 * mark all reloc trees orphan, then queue them for cleanup in
35677f913c7cSQu Wenruo 	 * merge_reloc_roots()
35687f913c7cSQu Wenruo 	 */
35693fd0a558SYan, Zheng 	err = prepare_to_merge(rc, err);
35705d4f98a2SYan Zheng 
35715d4f98a2SYan Zheng 	merge_reloc_roots(rc);
35725d4f98a2SYan Zheng 
35733fd0a558SYan, Zheng 	rc->merge_reloc_tree = 0;
35745d4f98a2SYan Zheng 	unset_reloc_control(rc);
357563f018beSNikolay Borisov 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
35765d4f98a2SYan Zheng 
35775d4f98a2SYan Zheng 	/* get rid of pinned extents */
35787a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
357962b99540SQu Wenruo 	if (IS_ERR(trans)) {
35803612b495STsutomu Itoh 		err = PTR_ERR(trans);
358162b99540SQu Wenruo 		goto out_free;
358262b99540SQu Wenruo 	}
35833a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
35846217b0faSJosef Bacik out_free:
3585d2311e69SQu Wenruo 	ret = clean_dirty_subvols(rc);
3586d2311e69SQu Wenruo 	if (ret < 0 && !err)
3587d2311e69SQu Wenruo 		err = ret;
35882ff7e61eSJeff Mahoney 	btrfs_free_block_rsv(fs_info, rc->block_rsv);
35893fd0a558SYan, Zheng 	btrfs_free_path(path);
35905d4f98a2SYan Zheng 	return err;
35915d4f98a2SYan Zheng }
35925d4f98a2SYan Zheng 
35935d4f98a2SYan Zheng static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
35940257bb82SYan, Zheng 				 struct btrfs_root *root, u64 objectid)
35955d4f98a2SYan Zheng {
35965d4f98a2SYan Zheng 	struct btrfs_path *path;
35975d4f98a2SYan Zheng 	struct btrfs_inode_item *item;
35985d4f98a2SYan Zheng 	struct extent_buffer *leaf;
359932430c61SNaohiro Aota 	u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
36005d4f98a2SYan Zheng 	int ret;
36015d4f98a2SYan Zheng 
360232430c61SNaohiro Aota 	if (btrfs_is_zoned(trans->fs_info))
360332430c61SNaohiro Aota 		flags &= ~BTRFS_INODE_PREALLOC;
360432430c61SNaohiro Aota 
36055d4f98a2SYan Zheng 	path = btrfs_alloc_path();
36065d4f98a2SYan Zheng 	if (!path)
36075d4f98a2SYan Zheng 		return -ENOMEM;
36085d4f98a2SYan Zheng 
36095d4f98a2SYan Zheng 	ret = btrfs_insert_empty_inode(trans, root, path, objectid);
36105d4f98a2SYan Zheng 	if (ret)
36115d4f98a2SYan Zheng 		goto out;
36125d4f98a2SYan Zheng 
36135d4f98a2SYan Zheng 	leaf = path->nodes[0];
36145d4f98a2SYan Zheng 	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
3615b159fa28SDavid Sterba 	memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
36165d4f98a2SYan Zheng 	btrfs_set_inode_generation(leaf, item, 1);
36170257bb82SYan, Zheng 	btrfs_set_inode_size(leaf, item, 0);
36185d4f98a2SYan Zheng 	btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
361932430c61SNaohiro Aota 	btrfs_set_inode_flags(leaf, item, flags);
36205d4f98a2SYan Zheng 	btrfs_mark_buffer_dirty(leaf);
36215d4f98a2SYan Zheng out:
36225d4f98a2SYan Zheng 	btrfs_free_path(path);
36235d4f98a2SYan Zheng 	return ret;
36245d4f98a2SYan Zheng }
36255d4f98a2SYan Zheng 
36265d4f98a2SYan Zheng /*
36275d4f98a2SYan Zheng  * helper to create inode for data relocation.
36285d4f98a2SYan Zheng  * the inode is in data relocation tree and its link count is 0
36295d4f98a2SYan Zheng  */
36303fd0a558SYan, Zheng static noinline_for_stack
36313fd0a558SYan, Zheng struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
363232da5386SDavid Sterba 				 struct btrfs_block_group *group)
36335d4f98a2SYan Zheng {
36345d4f98a2SYan Zheng 	struct inode *inode = NULL;
36355d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
36365d4f98a2SYan Zheng 	struct btrfs_root *root;
36374624900dSZhaolei 	u64 objectid;
36385d4f98a2SYan Zheng 	int err = 0;
36395d4f98a2SYan Zheng 
3640aeb935a4SQu Wenruo 	root = btrfs_grab_root(fs_info->data_reloc_root);
3641a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
364276deacf0SJosef Bacik 	if (IS_ERR(trans)) {
364300246528SJosef Bacik 		btrfs_put_root(root);
36443fd0a558SYan, Zheng 		return ERR_CAST(trans);
364576deacf0SJosef Bacik 	}
36465d4f98a2SYan Zheng 
3647543068a2SNikolay Borisov 	err = btrfs_get_free_objectid(root, &objectid);
36485d4f98a2SYan Zheng 	if (err)
36495d4f98a2SYan Zheng 		goto out;
36505d4f98a2SYan Zheng 
36510257bb82SYan, Zheng 	err = __insert_orphan_inode(trans, root, objectid);
36525d4f98a2SYan Zheng 	BUG_ON(err);
36535d4f98a2SYan Zheng 
36540202e83fSDavid Sterba 	inode = btrfs_iget(fs_info->sb, objectid, root);
36552e19f1f9SAl Viro 	BUG_ON(IS_ERR(inode));
3656b3470b5dSDavid Sterba 	BTRFS_I(inode)->index_cnt = group->start;
36575d4f98a2SYan Zheng 
365873f2e545SNikolay Borisov 	err = btrfs_orphan_add(trans, BTRFS_I(inode));
36595d4f98a2SYan Zheng out:
366000246528SJosef Bacik 	btrfs_put_root(root);
36613a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
36622ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
36635d4f98a2SYan Zheng 	if (err) {
36645d4f98a2SYan Zheng 		if (inode)
36655d4f98a2SYan Zheng 			iput(inode);
36665d4f98a2SYan Zheng 		inode = ERR_PTR(err);
36675d4f98a2SYan Zheng 	}
36685d4f98a2SYan Zheng 	return inode;
36695d4f98a2SYan Zheng }
36705d4f98a2SYan Zheng 
3671c258d6e3SQu Wenruo static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
36723fd0a558SYan, Zheng {
36733fd0a558SYan, Zheng 	struct reloc_control *rc;
36743fd0a558SYan, Zheng 
36753fd0a558SYan, Zheng 	rc = kzalloc(sizeof(*rc), GFP_NOFS);
36763fd0a558SYan, Zheng 	if (!rc)
36773fd0a558SYan, Zheng 		return NULL;
36783fd0a558SYan, Zheng 
36793fd0a558SYan, Zheng 	INIT_LIST_HEAD(&rc->reloc_roots);
3680d2311e69SQu Wenruo 	INIT_LIST_HEAD(&rc->dirty_subvol_roots);
3681584fb121SQu Wenruo 	btrfs_backref_init_cache(fs_info, &rc->backref_cache, 1);
36823fd0a558SYan, Zheng 	mapping_tree_init(&rc->reloc_root_tree);
368343eb5f29SQu Wenruo 	extent_io_tree_init(fs_info, &rc->processed_blocks,
368443eb5f29SQu Wenruo 			    IO_TREE_RELOC_BLOCKS, NULL);
36853fd0a558SYan, Zheng 	return rc;
36863fd0a558SYan, Zheng }
36873fd0a558SYan, Zheng 
36881a0afa0eSJosef Bacik static void free_reloc_control(struct reloc_control *rc)
36891a0afa0eSJosef Bacik {
36901a0afa0eSJosef Bacik 	struct mapping_node *node, *tmp;
36911a0afa0eSJosef Bacik 
36921a0afa0eSJosef Bacik 	free_reloc_roots(&rc->reloc_roots);
36931a0afa0eSJosef Bacik 	rbtree_postorder_for_each_entry_safe(node, tmp,
36941a0afa0eSJosef Bacik 			&rc->reloc_root_tree.rb_root, rb_node)
36951a0afa0eSJosef Bacik 		kfree(node);
36961a0afa0eSJosef Bacik 
36971a0afa0eSJosef Bacik 	kfree(rc);
36981a0afa0eSJosef Bacik }
36991a0afa0eSJosef Bacik 
37005d4f98a2SYan Zheng /*
3701ebce0e01SAdam Borowski  * Print the block group being relocated
3702ebce0e01SAdam Borowski  */
3703ebce0e01SAdam Borowski static void describe_relocation(struct btrfs_fs_info *fs_info,
370432da5386SDavid Sterba 				struct btrfs_block_group *block_group)
3705ebce0e01SAdam Borowski {
3706f89e09cfSAnand Jain 	char buf[128] = {'\0'};
3707ebce0e01SAdam Borowski 
3708f89e09cfSAnand Jain 	btrfs_describe_block_groups(block_group->flags, buf, sizeof(buf));
3709ebce0e01SAdam Borowski 
3710ebce0e01SAdam Borowski 	btrfs_info(fs_info,
3711ebce0e01SAdam Borowski 		   "relocating block group %llu flags %s",
3712b3470b5dSDavid Sterba 		   block_group->start, buf);
3713ebce0e01SAdam Borowski }
3714ebce0e01SAdam Borowski 
3715430640e3SQu Wenruo static const char *stage_to_string(int stage)
3716430640e3SQu Wenruo {
3717430640e3SQu Wenruo 	if (stage == MOVE_DATA_EXTENTS)
3718430640e3SQu Wenruo 		return "move data extents";
3719430640e3SQu Wenruo 	if (stage == UPDATE_DATA_PTRS)
3720430640e3SQu Wenruo 		return "update data pointers";
3721430640e3SQu Wenruo 	return "unknown";
3722430640e3SQu Wenruo }
3723430640e3SQu Wenruo 
3724ebce0e01SAdam Borowski /*
37255d4f98a2SYan Zheng  * function to relocate all extents in a block group.
37265d4f98a2SYan Zheng  */
37276bccf3abSJeff Mahoney int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
37285d4f98a2SYan Zheng {
372932da5386SDavid Sterba 	struct btrfs_block_group *bg;
37306bccf3abSJeff Mahoney 	struct btrfs_root *extent_root = fs_info->extent_root;
37315d4f98a2SYan Zheng 	struct reloc_control *rc;
37320af3d00bSJosef Bacik 	struct inode *inode;
37330af3d00bSJosef Bacik 	struct btrfs_path *path;
37345d4f98a2SYan Zheng 	int ret;
3735f0486c68SYan, Zheng 	int rw = 0;
37365d4f98a2SYan Zheng 	int err = 0;
37375d4f98a2SYan Zheng 
3738eede2bf3SOmar Sandoval 	bg = btrfs_lookup_block_group(fs_info, group_start);
3739eede2bf3SOmar Sandoval 	if (!bg)
3740eede2bf3SOmar Sandoval 		return -ENOENT;
3741eede2bf3SOmar Sandoval 
3742eede2bf3SOmar Sandoval 	if (btrfs_pinned_by_swapfile(fs_info, bg)) {
3743eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
3744eede2bf3SOmar Sandoval 		return -ETXTBSY;
3745eede2bf3SOmar Sandoval 	}
3746eede2bf3SOmar Sandoval 
3747c258d6e3SQu Wenruo 	rc = alloc_reloc_control(fs_info);
3748eede2bf3SOmar Sandoval 	if (!rc) {
3749eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
37505d4f98a2SYan Zheng 		return -ENOMEM;
3751eede2bf3SOmar Sandoval 	}
37525d4f98a2SYan Zheng 
3753f0486c68SYan, Zheng 	rc->extent_root = extent_root;
3754eede2bf3SOmar Sandoval 	rc->block_group = bg;
37555d4f98a2SYan Zheng 
3756b12de528SQu Wenruo 	ret = btrfs_inc_block_group_ro(rc->block_group, true);
3757f0486c68SYan, Zheng 	if (ret) {
3758f0486c68SYan, Zheng 		err = ret;
3759f0486c68SYan, Zheng 		goto out;
3760f0486c68SYan, Zheng 	}
3761f0486c68SYan, Zheng 	rw = 1;
3762f0486c68SYan, Zheng 
37630af3d00bSJosef Bacik 	path = btrfs_alloc_path();
37640af3d00bSJosef Bacik 	if (!path) {
37650af3d00bSJosef Bacik 		err = -ENOMEM;
37660af3d00bSJosef Bacik 		goto out;
37670af3d00bSJosef Bacik 	}
37680af3d00bSJosef Bacik 
37697949f339SDavid Sterba 	inode = lookup_free_space_inode(rc->block_group, path);
37700af3d00bSJosef Bacik 	btrfs_free_path(path);
37710af3d00bSJosef Bacik 
37720af3d00bSJosef Bacik 	if (!IS_ERR(inode))
37731bbc621eSChris Mason 		ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
37740af3d00bSJosef Bacik 	else
37750af3d00bSJosef Bacik 		ret = PTR_ERR(inode);
37760af3d00bSJosef Bacik 
37770af3d00bSJosef Bacik 	if (ret && ret != -ENOENT) {
37780af3d00bSJosef Bacik 		err = ret;
37790af3d00bSJosef Bacik 		goto out;
37800af3d00bSJosef Bacik 	}
37810af3d00bSJosef Bacik 
37825d4f98a2SYan Zheng 	rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
37835d4f98a2SYan Zheng 	if (IS_ERR(rc->data_inode)) {
37845d4f98a2SYan Zheng 		err = PTR_ERR(rc->data_inode);
37855d4f98a2SYan Zheng 		rc->data_inode = NULL;
37865d4f98a2SYan Zheng 		goto out;
37875d4f98a2SYan Zheng 	}
37885d4f98a2SYan Zheng 
37890b246afaSJeff Mahoney 	describe_relocation(fs_info, rc->block_group);
37905d4f98a2SYan Zheng 
37919cfa3e34SFilipe Manana 	btrfs_wait_block_group_reservations(rc->block_group);
3792f78c436cSFilipe Manana 	btrfs_wait_nocow_writers(rc->block_group);
37936374e57aSChris Mason 	btrfs_wait_ordered_roots(fs_info, U64_MAX,
3794b3470b5dSDavid Sterba 				 rc->block_group->start,
3795b3470b5dSDavid Sterba 				 rc->block_group->length);
37965d4f98a2SYan Zheng 
37975d4f98a2SYan Zheng 	while (1) {
3798430640e3SQu Wenruo 		int finishes_stage;
3799430640e3SQu Wenruo 
380076dda93cSYan, Zheng 		mutex_lock(&fs_info->cleaner_mutex);
38015d4f98a2SYan Zheng 		ret = relocate_block_group(rc);
380276dda93cSYan, Zheng 		mutex_unlock(&fs_info->cleaner_mutex);
3803ff612ba7SJosef Bacik 		if (ret < 0)
38045d4f98a2SYan Zheng 			err = ret;
3805ff612ba7SJosef Bacik 
3806430640e3SQu Wenruo 		finishes_stage = rc->stage;
3807ff612ba7SJosef Bacik 		/*
3808ff612ba7SJosef Bacik 		 * We may have gotten ENOSPC after we already dirtied some
3809ff612ba7SJosef Bacik 		 * extents.  If writeout happens while we're relocating a
3810ff612ba7SJosef Bacik 		 * different block group we could end up hitting the
3811ff612ba7SJosef Bacik 		 * BUG_ON(rc->stage == UPDATE_DATA_PTRS) in
3812ff612ba7SJosef Bacik 		 * btrfs_reloc_cow_block.  Make sure we write everything out
3813ff612ba7SJosef Bacik 		 * properly so we don't trip over this problem, and then break
3814ff612ba7SJosef Bacik 		 * out of the loop if we hit an error.
3815ff612ba7SJosef Bacik 		 */
3816ff612ba7SJosef Bacik 		if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
3817ff612ba7SJosef Bacik 			ret = btrfs_wait_ordered_range(rc->data_inode, 0,
3818ff612ba7SJosef Bacik 						       (u64)-1);
3819ff612ba7SJosef Bacik 			if (ret)
3820ff612ba7SJosef Bacik 				err = ret;
3821ff612ba7SJosef Bacik 			invalidate_mapping_pages(rc->data_inode->i_mapping,
3822ff612ba7SJosef Bacik 						 0, -1);
3823ff612ba7SJosef Bacik 			rc->stage = UPDATE_DATA_PTRS;
38245d4f98a2SYan Zheng 		}
38255d4f98a2SYan Zheng 
3826ff612ba7SJosef Bacik 		if (err < 0)
3827ff612ba7SJosef Bacik 			goto out;
3828ff612ba7SJosef Bacik 
38295d4f98a2SYan Zheng 		if (rc->extents_found == 0)
38305d4f98a2SYan Zheng 			break;
38315d4f98a2SYan Zheng 
3832430640e3SQu Wenruo 		btrfs_info(fs_info, "found %llu extents, stage: %s",
3833430640e3SQu Wenruo 			   rc->extents_found, stage_to_string(finishes_stage));
38345d4f98a2SYan Zheng 	}
38355d4f98a2SYan Zheng 
38365d4f98a2SYan Zheng 	WARN_ON(rc->block_group->pinned > 0);
38375d4f98a2SYan Zheng 	WARN_ON(rc->block_group->reserved > 0);
3838bf38be65SDavid Sterba 	WARN_ON(rc->block_group->used > 0);
38395d4f98a2SYan Zheng out:
3840f0486c68SYan, Zheng 	if (err && rw)
38412ff7e61eSJeff Mahoney 		btrfs_dec_block_group_ro(rc->block_group);
38425d4f98a2SYan Zheng 	iput(rc->data_inode);
38435d4f98a2SYan Zheng 	btrfs_put_block_group(rc->block_group);
38441a0afa0eSJosef Bacik 	free_reloc_control(rc);
38455d4f98a2SYan Zheng 	return err;
38465d4f98a2SYan Zheng }
38475d4f98a2SYan Zheng 
384876dda93cSYan, Zheng static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
384976dda93cSYan, Zheng {
38500b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
385176dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
385279787eaaSJeff Mahoney 	int ret, err;
385376dda93cSYan, Zheng 
38540b246afaSJeff Mahoney 	trans = btrfs_start_transaction(fs_info->tree_root, 0);
385579787eaaSJeff Mahoney 	if (IS_ERR(trans))
385679787eaaSJeff Mahoney 		return PTR_ERR(trans);
385776dda93cSYan, Zheng 
385876dda93cSYan, Zheng 	memset(&root->root_item.drop_progress, 0,
385976dda93cSYan, Zheng 		sizeof(root->root_item.drop_progress));
3860c8422684SDavid Sterba 	btrfs_set_root_drop_level(&root->root_item, 0);
386176dda93cSYan, Zheng 	btrfs_set_root_refs(&root->root_item, 0);
38620b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
386376dda93cSYan, Zheng 				&root->root_key, &root->root_item);
386476dda93cSYan, Zheng 
38653a45bb20SJeff Mahoney 	err = btrfs_end_transaction(trans);
386679787eaaSJeff Mahoney 	if (err)
386779787eaaSJeff Mahoney 		return err;
386879787eaaSJeff Mahoney 	return ret;
386976dda93cSYan, Zheng }
387076dda93cSYan, Zheng 
38715d4f98a2SYan Zheng /*
38725d4f98a2SYan Zheng  * recover relocation interrupted by system crash.
38735d4f98a2SYan Zheng  *
38745d4f98a2SYan Zheng  * this function resumes merging reloc trees with corresponding fs trees.
38755d4f98a2SYan Zheng  * this is important for keeping the sharing of tree blocks
38765d4f98a2SYan Zheng  */
38775d4f98a2SYan Zheng int btrfs_recover_relocation(struct btrfs_root *root)
38785d4f98a2SYan Zheng {
38790b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
38805d4f98a2SYan Zheng 	LIST_HEAD(reloc_roots);
38815d4f98a2SYan Zheng 	struct btrfs_key key;
38825d4f98a2SYan Zheng 	struct btrfs_root *fs_root;
38835d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
38845d4f98a2SYan Zheng 	struct btrfs_path *path;
38855d4f98a2SYan Zheng 	struct extent_buffer *leaf;
38865d4f98a2SYan Zheng 	struct reloc_control *rc = NULL;
38875d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
38885d4f98a2SYan Zheng 	int ret;
38895d4f98a2SYan Zheng 	int err = 0;
38905d4f98a2SYan Zheng 
38915d4f98a2SYan Zheng 	path = btrfs_alloc_path();
38925d4f98a2SYan Zheng 	if (!path)
38935d4f98a2SYan Zheng 		return -ENOMEM;
3894e4058b54SDavid Sterba 	path->reada = READA_BACK;
38955d4f98a2SYan Zheng 
38965d4f98a2SYan Zheng 	key.objectid = BTRFS_TREE_RELOC_OBJECTID;
38975d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
38985d4f98a2SYan Zheng 	key.offset = (u64)-1;
38995d4f98a2SYan Zheng 
39005d4f98a2SYan Zheng 	while (1) {
39010b246afaSJeff Mahoney 		ret = btrfs_search_slot(NULL, fs_info->tree_root, &key,
39025d4f98a2SYan Zheng 					path, 0, 0);
39035d4f98a2SYan Zheng 		if (ret < 0) {
39045d4f98a2SYan Zheng 			err = ret;
39055d4f98a2SYan Zheng 			goto out;
39065d4f98a2SYan Zheng 		}
39075d4f98a2SYan Zheng 		if (ret > 0) {
39085d4f98a2SYan Zheng 			if (path->slots[0] == 0)
39095d4f98a2SYan Zheng 				break;
39105d4f98a2SYan Zheng 			path->slots[0]--;
39115d4f98a2SYan Zheng 		}
39125d4f98a2SYan Zheng 		leaf = path->nodes[0];
39135d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3914b3b4aa74SDavid Sterba 		btrfs_release_path(path);
39155d4f98a2SYan Zheng 
39165d4f98a2SYan Zheng 		if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
39175d4f98a2SYan Zheng 		    key.type != BTRFS_ROOT_ITEM_KEY)
39185d4f98a2SYan Zheng 			break;
39195d4f98a2SYan Zheng 
39203dbf1738SJosef Bacik 		reloc_root = btrfs_read_tree_root(root, &key);
39215d4f98a2SYan Zheng 		if (IS_ERR(reloc_root)) {
39225d4f98a2SYan Zheng 			err = PTR_ERR(reloc_root);
39235d4f98a2SYan Zheng 			goto out;
39245d4f98a2SYan Zheng 		}
39255d4f98a2SYan Zheng 
392692a7cc42SQu Wenruo 		set_bit(BTRFS_ROOT_SHAREABLE, &reloc_root->state);
39275d4f98a2SYan Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
39285d4f98a2SYan Zheng 
39295d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
3930a820feb5SDavid Sterba 			fs_root = btrfs_get_fs_root(fs_info,
3931a820feb5SDavid Sterba 					reloc_root->root_key.offset, false);
39325d4f98a2SYan Zheng 			if (IS_ERR(fs_root)) {
393376dda93cSYan, Zheng 				ret = PTR_ERR(fs_root);
393476dda93cSYan, Zheng 				if (ret != -ENOENT) {
393576dda93cSYan, Zheng 					err = ret;
39365d4f98a2SYan Zheng 					goto out;
39375d4f98a2SYan Zheng 				}
393879787eaaSJeff Mahoney 				ret = mark_garbage_root(reloc_root);
393979787eaaSJeff Mahoney 				if (ret < 0) {
394079787eaaSJeff Mahoney 					err = ret;
394179787eaaSJeff Mahoney 					goto out;
394279787eaaSJeff Mahoney 				}
3943932fd26dSJosef Bacik 			} else {
394400246528SJosef Bacik 				btrfs_put_root(fs_root);
394576dda93cSYan, Zheng 			}
39465d4f98a2SYan Zheng 		}
39475d4f98a2SYan Zheng 
39485d4f98a2SYan Zheng 		if (key.offset == 0)
39495d4f98a2SYan Zheng 			break;
39505d4f98a2SYan Zheng 
39515d4f98a2SYan Zheng 		key.offset--;
39525d4f98a2SYan Zheng 	}
3953b3b4aa74SDavid Sterba 	btrfs_release_path(path);
39545d4f98a2SYan Zheng 
39555d4f98a2SYan Zheng 	if (list_empty(&reloc_roots))
39565d4f98a2SYan Zheng 		goto out;
39575d4f98a2SYan Zheng 
3958c258d6e3SQu Wenruo 	rc = alloc_reloc_control(fs_info);
39595d4f98a2SYan Zheng 	if (!rc) {
39605d4f98a2SYan Zheng 		err = -ENOMEM;
39615d4f98a2SYan Zheng 		goto out;
39625d4f98a2SYan Zheng 	}
39635d4f98a2SYan Zheng 
39640b246afaSJeff Mahoney 	rc->extent_root = fs_info->extent_root;
39655d4f98a2SYan Zheng 
39665d4f98a2SYan Zheng 	set_reloc_control(rc);
39675d4f98a2SYan Zheng 
39687a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
39693612b495STsutomu Itoh 	if (IS_ERR(trans)) {
39703612b495STsutomu Itoh 		err = PTR_ERR(trans);
3971fb2d83eeSJosef Bacik 		goto out_unset;
39723612b495STsutomu Itoh 	}
39733fd0a558SYan, Zheng 
39743fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
39753fd0a558SYan, Zheng 
39765d4f98a2SYan Zheng 	while (!list_empty(&reloc_roots)) {
39775d4f98a2SYan Zheng 		reloc_root = list_entry(reloc_roots.next,
39785d4f98a2SYan Zheng 					struct btrfs_root, root_list);
39795d4f98a2SYan Zheng 		list_del(&reloc_root->root_list);
39805d4f98a2SYan Zheng 
39815d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) == 0) {
39825d4f98a2SYan Zheng 			list_add_tail(&reloc_root->root_list,
39835d4f98a2SYan Zheng 				      &rc->reloc_roots);
39845d4f98a2SYan Zheng 			continue;
39855d4f98a2SYan Zheng 		}
39865d4f98a2SYan Zheng 
3987a820feb5SDavid Sterba 		fs_root = btrfs_get_fs_root(fs_info, reloc_root->root_key.offset,
3988a820feb5SDavid Sterba 					    false);
398979787eaaSJeff Mahoney 		if (IS_ERR(fs_root)) {
399079787eaaSJeff Mahoney 			err = PTR_ERR(fs_root);
3991ca1aa281SJosef Bacik 			list_add_tail(&reloc_root->root_list, &reloc_roots);
39921402d17dSXiyu Yang 			btrfs_end_transaction(trans);
3993fb2d83eeSJosef Bacik 			goto out_unset;
399479787eaaSJeff Mahoney 		}
39955d4f98a2SYan Zheng 
3996ffd7b339SJeff Mahoney 		err = __add_reloc_root(reloc_root);
399779787eaaSJeff Mahoney 		BUG_ON(err < 0); /* -ENOMEM or logic error */
3998f44deb74SJosef Bacik 		fs_root->reloc_root = btrfs_grab_root(reloc_root);
399900246528SJosef Bacik 		btrfs_put_root(fs_root);
40005d4f98a2SYan Zheng 	}
40015d4f98a2SYan Zheng 
40023a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
400379787eaaSJeff Mahoney 	if (err)
4004fb2d83eeSJosef Bacik 		goto out_unset;
40055d4f98a2SYan Zheng 
40065d4f98a2SYan Zheng 	merge_reloc_roots(rc);
40075d4f98a2SYan Zheng 
40085d4f98a2SYan Zheng 	unset_reloc_control(rc);
40095d4f98a2SYan Zheng 
40107a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
401162b99540SQu Wenruo 	if (IS_ERR(trans)) {
40123612b495STsutomu Itoh 		err = PTR_ERR(trans);
40136217b0faSJosef Bacik 		goto out_clean;
401462b99540SQu Wenruo 	}
40153a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
40166217b0faSJosef Bacik out_clean:
4017d2311e69SQu Wenruo 	ret = clean_dirty_subvols(rc);
4018d2311e69SQu Wenruo 	if (ret < 0 && !err)
4019d2311e69SQu Wenruo 		err = ret;
4020fb2d83eeSJosef Bacik out_unset:
4021fb2d83eeSJosef Bacik 	unset_reloc_control(rc);
40221a0afa0eSJosef Bacik 	free_reloc_control(rc);
40233612b495STsutomu Itoh out:
4024aca1bba6SLiu Bo 	free_reloc_roots(&reloc_roots);
4025aca1bba6SLiu Bo 
40265d4f98a2SYan Zheng 	btrfs_free_path(path);
40275d4f98a2SYan Zheng 
40285d4f98a2SYan Zheng 	if (err == 0) {
40295d4f98a2SYan Zheng 		/* cleanup orphan inode in data relocation tree */
4030aeb935a4SQu Wenruo 		fs_root = btrfs_grab_root(fs_info->data_reloc_root);
4031aeb935a4SQu Wenruo 		ASSERT(fs_root);
403266b4ffd1SJosef Bacik 		err = btrfs_orphan_cleanup(fs_root);
403300246528SJosef Bacik 		btrfs_put_root(fs_root);
4034932fd26dSJosef Bacik 	}
40355d4f98a2SYan Zheng 	return err;
40365d4f98a2SYan Zheng }
40375d4f98a2SYan Zheng 
40385d4f98a2SYan Zheng /*
40395d4f98a2SYan Zheng  * helper to add ordered checksum for data relocation.
40405d4f98a2SYan Zheng  *
40415d4f98a2SYan Zheng  * cloning checksum properly handles the nodatasum extents.
40425d4f98a2SYan Zheng  * it also saves CPU time to re-calculate the checksum.
40435d4f98a2SYan Zheng  */
40447bfa9535SNikolay Borisov int btrfs_reloc_clone_csums(struct btrfs_inode *inode, u64 file_pos, u64 len)
40455d4f98a2SYan Zheng {
40467bfa9535SNikolay Borisov 	struct btrfs_fs_info *fs_info = inode->root->fs_info;
40475d4f98a2SYan Zheng 	struct btrfs_ordered_sum *sums;
40485d4f98a2SYan Zheng 	struct btrfs_ordered_extent *ordered;
40495d4f98a2SYan Zheng 	int ret;
40505d4f98a2SYan Zheng 	u64 disk_bytenr;
40514577b014SJosef Bacik 	u64 new_bytenr;
40525d4f98a2SYan Zheng 	LIST_HEAD(list);
40535d4f98a2SYan Zheng 
40547bfa9535SNikolay Borisov 	ordered = btrfs_lookup_ordered_extent(inode, file_pos);
4055bffe633eSOmar Sandoval 	BUG_ON(ordered->file_offset != file_pos || ordered->num_bytes != len);
40565d4f98a2SYan Zheng 
40577bfa9535SNikolay Borisov 	disk_bytenr = file_pos + inode->index_cnt;
40580b246afaSJeff Mahoney 	ret = btrfs_lookup_csums_range(fs_info->csum_root, disk_bytenr,
4059a2de733cSArne Jansen 				       disk_bytenr + len - 1, &list, 0);
406079787eaaSJeff Mahoney 	if (ret)
406179787eaaSJeff Mahoney 		goto out;
40625d4f98a2SYan Zheng 
40635d4f98a2SYan Zheng 	while (!list_empty(&list)) {
40645d4f98a2SYan Zheng 		sums = list_entry(list.next, struct btrfs_ordered_sum, list);
40655d4f98a2SYan Zheng 		list_del_init(&sums->list);
40665d4f98a2SYan Zheng 
40674577b014SJosef Bacik 		/*
40684577b014SJosef Bacik 		 * We need to offset the new_bytenr based on where the csum is.
40694577b014SJosef Bacik 		 * We need to do this because we will read in entire prealloc
40704577b014SJosef Bacik 		 * extents but we may have written to say the middle of the
40714577b014SJosef Bacik 		 * prealloc extent, so we need to make sure the csum goes with
40724577b014SJosef Bacik 		 * the right disk offset.
40734577b014SJosef Bacik 		 *
40744577b014SJosef Bacik 		 * We can do this because the data reloc inode refers strictly
40754577b014SJosef Bacik 		 * to the on disk bytes, so we don't have to worry about
40764577b014SJosef Bacik 		 * disk_len vs real len like with real inodes since it's all
40774577b014SJosef Bacik 		 * disk length.
40784577b014SJosef Bacik 		 */
4079bffe633eSOmar Sandoval 		new_bytenr = ordered->disk_bytenr + sums->bytenr - disk_bytenr;
40804577b014SJosef Bacik 		sums->bytenr = new_bytenr;
40815d4f98a2SYan Zheng 
4082f9756261SNikolay Borisov 		btrfs_add_ordered_sum(ordered, sums);
40835d4f98a2SYan Zheng 	}
408479787eaaSJeff Mahoney out:
40855d4f98a2SYan Zheng 	btrfs_put_ordered_extent(ordered);
4086411fc6bcSAndi Kleen 	return ret;
40875d4f98a2SYan Zheng }
40883fd0a558SYan, Zheng 
408983d4cfd4SJosef Bacik int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
40903fd0a558SYan, Zheng 			  struct btrfs_root *root, struct extent_buffer *buf,
40913fd0a558SYan, Zheng 			  struct extent_buffer *cow)
40923fd0a558SYan, Zheng {
40930b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
40943fd0a558SYan, Zheng 	struct reloc_control *rc;
4095a26195a5SQu Wenruo 	struct btrfs_backref_node *node;
40963fd0a558SYan, Zheng 	int first_cow = 0;
40973fd0a558SYan, Zheng 	int level;
409883d4cfd4SJosef Bacik 	int ret = 0;
40993fd0a558SYan, Zheng 
41000b246afaSJeff Mahoney 	rc = fs_info->reloc_ctl;
41013fd0a558SYan, Zheng 	if (!rc)
410283d4cfd4SJosef Bacik 		return 0;
41033fd0a558SYan, Zheng 
41043fd0a558SYan, Zheng 	BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
41053fd0a558SYan, Zheng 	       root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
41063fd0a558SYan, Zheng 
41073fd0a558SYan, Zheng 	level = btrfs_header_level(buf);
41083fd0a558SYan, Zheng 	if (btrfs_header_generation(buf) <=
41093fd0a558SYan, Zheng 	    btrfs_root_last_snapshot(&root->root_item))
41103fd0a558SYan, Zheng 		first_cow = 1;
41113fd0a558SYan, Zheng 
41123fd0a558SYan, Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
41133fd0a558SYan, Zheng 	    rc->create_reloc_tree) {
41143fd0a558SYan, Zheng 		WARN_ON(!first_cow && level == 0);
41153fd0a558SYan, Zheng 
41163fd0a558SYan, Zheng 		node = rc->backref_cache.path[level];
41173fd0a558SYan, Zheng 		BUG_ON(node->bytenr != buf->start &&
41183fd0a558SYan, Zheng 		       node->new_bytenr != buf->start);
41193fd0a558SYan, Zheng 
4120b0fe7078SQu Wenruo 		btrfs_backref_drop_node_buffer(node);
412167439dadSDavid Sterba 		atomic_inc(&cow->refs);
41223fd0a558SYan, Zheng 		node->eb = cow;
41233fd0a558SYan, Zheng 		node->new_bytenr = cow->start;
41243fd0a558SYan, Zheng 
41253fd0a558SYan, Zheng 		if (!node->pending) {
41263fd0a558SYan, Zheng 			list_move_tail(&node->list,
41273fd0a558SYan, Zheng 				       &rc->backref_cache.pending[level]);
41283fd0a558SYan, Zheng 			node->pending = 1;
41293fd0a558SYan, Zheng 		}
41303fd0a558SYan, Zheng 
41313fd0a558SYan, Zheng 		if (first_cow)
41329569cc20SQu Wenruo 			mark_block_processed(rc, node);
41333fd0a558SYan, Zheng 
41343fd0a558SYan, Zheng 		if (first_cow && level > 0)
41353fd0a558SYan, Zheng 			rc->nodes_relocated += buf->len;
41363fd0a558SYan, Zheng 	}
41373fd0a558SYan, Zheng 
413883d4cfd4SJosef Bacik 	if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
41393fd0a558SYan, Zheng 		ret = replace_file_extents(trans, rc, root, cow);
414083d4cfd4SJosef Bacik 	return ret;
41413fd0a558SYan, Zheng }
41423fd0a558SYan, Zheng 
41433fd0a558SYan, Zheng /*
41443fd0a558SYan, Zheng  * called before creating snapshot. it calculates metadata reservation
414501327610SNicholas D Steeves  * required for relocating tree blocks in the snapshot
41463fd0a558SYan, Zheng  */
4147147d256eSZhaolei void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
41483fd0a558SYan, Zheng 			      u64 *bytes_to_reserve)
41493fd0a558SYan, Zheng {
415010995c04SQu Wenruo 	struct btrfs_root *root = pending->root;
415110995c04SQu Wenruo 	struct reloc_control *rc = root->fs_info->reloc_ctl;
41523fd0a558SYan, Zheng 
41536282675eSQu Wenruo 	if (!rc || !have_reloc_root(root))
41543fd0a558SYan, Zheng 		return;
41553fd0a558SYan, Zheng 
41563fd0a558SYan, Zheng 	if (!rc->merge_reloc_tree)
41573fd0a558SYan, Zheng 		return;
41583fd0a558SYan, Zheng 
41593fd0a558SYan, Zheng 	root = root->reloc_root;
41603fd0a558SYan, Zheng 	BUG_ON(btrfs_root_refs(&root->root_item) == 0);
41613fd0a558SYan, Zheng 	/*
41623fd0a558SYan, Zheng 	 * relocation is in the stage of merging trees. the space
41633fd0a558SYan, Zheng 	 * used by merging a reloc tree is twice the size of
41643fd0a558SYan, Zheng 	 * relocated tree nodes in the worst case. half for cowing
41653fd0a558SYan, Zheng 	 * the reloc tree, half for cowing the fs tree. the space
41663fd0a558SYan, Zheng 	 * used by cowing the reloc tree will be freed after the
41673fd0a558SYan, Zheng 	 * tree is dropped. if we create snapshot, cowing the fs
41683fd0a558SYan, Zheng 	 * tree may use more space than it frees. so we need
41693fd0a558SYan, Zheng 	 * reserve extra space.
41703fd0a558SYan, Zheng 	 */
41713fd0a558SYan, Zheng 	*bytes_to_reserve += rc->nodes_relocated;
41723fd0a558SYan, Zheng }
41733fd0a558SYan, Zheng 
41743fd0a558SYan, Zheng /*
41753fd0a558SYan, Zheng  * called after snapshot is created. migrate block reservation
41763fd0a558SYan, Zheng  * and create reloc root for the newly created snapshot
4177f44deb74SJosef Bacik  *
4178f44deb74SJosef Bacik  * This is similar to btrfs_init_reloc_root(), we come out of here with two
4179f44deb74SJosef Bacik  * references held on the reloc_root, one for root->reloc_root and one for
4180f44deb74SJosef Bacik  * rc->reloc_roots.
41813fd0a558SYan, Zheng  */
418249b25e05SJeff Mahoney int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
41833fd0a558SYan, Zheng 			       struct btrfs_pending_snapshot *pending)
41843fd0a558SYan, Zheng {
41853fd0a558SYan, Zheng 	struct btrfs_root *root = pending->root;
41863fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
41873fd0a558SYan, Zheng 	struct btrfs_root *new_root;
418810995c04SQu Wenruo 	struct reloc_control *rc = root->fs_info->reloc_ctl;
41893fd0a558SYan, Zheng 	int ret;
41903fd0a558SYan, Zheng 
41916282675eSQu Wenruo 	if (!rc || !have_reloc_root(root))
419249b25e05SJeff Mahoney 		return 0;
41933fd0a558SYan, Zheng 
41943fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
41953fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated;
41963fd0a558SYan, Zheng 
41973fd0a558SYan, Zheng 	if (rc->merge_reloc_tree) {
41983fd0a558SYan, Zheng 		ret = btrfs_block_rsv_migrate(&pending->block_rsv,
41993fd0a558SYan, Zheng 					      rc->block_rsv,
42003a584174SLu Fengqi 					      rc->nodes_relocated, true);
420149b25e05SJeff Mahoney 		if (ret)
420249b25e05SJeff Mahoney 			return ret;
42033fd0a558SYan, Zheng 	}
42043fd0a558SYan, Zheng 
42053fd0a558SYan, Zheng 	new_root = pending->snap;
42063fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root->reloc_root,
42073fd0a558SYan, Zheng 				       new_root->root_key.objectid);
420849b25e05SJeff Mahoney 	if (IS_ERR(reloc_root))
420949b25e05SJeff Mahoney 		return PTR_ERR(reloc_root);
42103fd0a558SYan, Zheng 
4211ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
4212ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
4213f44deb74SJosef Bacik 	new_root->reloc_root = btrfs_grab_root(reloc_root);
42143fd0a558SYan, Zheng 
421549b25e05SJeff Mahoney 	if (rc->create_reloc_tree)
42163fd0a558SYan, Zheng 		ret = clone_backref_node(trans, rc, root, reloc_root);
421749b25e05SJeff Mahoney 	return ret;
42183fd0a558SYan, Zheng }
4219