xref: /openbmc/linux/fs/btrfs/relocation.c (revision 50dbbb71)
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"
21581bb050SLi Zefan #include "inode-map.h"
2262b99540SQu Wenruo #include "qgroup.h"
23cdccee99SLiu Bo #include "print-tree.h"
2486736342SJosef Bacik #include "delalloc-space.h"
25aac0023cSJosef Bacik #include "block-group.h"
2619b546d7SQu Wenruo #include "backref.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 
750c891389SQu Wenruo /*
765d4f98a2SYan Zheng  * backref_node, mapping_node and tree_block start with this
775d4f98a2SYan Zheng  */
785d4f98a2SYan Zheng struct tree_entry {
795d4f98a2SYan Zheng 	struct rb_node rb_node;
805d4f98a2SYan Zheng 	u64 bytenr;
815d4f98a2SYan Zheng };
825d4f98a2SYan Zheng 
835d4f98a2SYan Zheng /*
845d4f98a2SYan Zheng  * present a tree block in the backref cache
855d4f98a2SYan Zheng  */
865d4f98a2SYan Zheng struct backref_node {
875d4f98a2SYan Zheng 	struct rb_node rb_node;
885d4f98a2SYan Zheng 	u64 bytenr;
893fd0a558SYan, Zheng 
903fd0a558SYan, Zheng 	u64 new_bytenr;
913fd0a558SYan, Zheng 	/* objectid of tree block owner, can be not uptodate */
925d4f98a2SYan Zheng 	u64 owner;
933fd0a558SYan, Zheng 	/* link to pending, changed or detached list */
943fd0a558SYan, Zheng 	struct list_head list;
955d4f98a2SYan Zheng 	/* list of upper level blocks reference this block */
965d4f98a2SYan Zheng 	struct list_head upper;
975d4f98a2SYan Zheng 	/* list of child blocks in the cache */
985d4f98a2SYan Zheng 	struct list_head lower;
995d4f98a2SYan Zheng 	/* NULL if this node is not tree root */
1005d4f98a2SYan Zheng 	struct btrfs_root *root;
1015d4f98a2SYan Zheng 	/* extent buffer got by COW the block */
1025d4f98a2SYan Zheng 	struct extent_buffer *eb;
1035d4f98a2SYan Zheng 	/* level of tree block */
1045d4f98a2SYan Zheng 	unsigned int level:8;
1053fd0a558SYan, Zheng 	/* is the block in non-reference counted tree */
1063fd0a558SYan, Zheng 	unsigned int cowonly:1;
1073fd0a558SYan, Zheng 	/* 1 if no child node in the cache */
1085d4f98a2SYan Zheng 	unsigned int lowest:1;
1095d4f98a2SYan Zheng 	/* is the extent buffer locked */
1105d4f98a2SYan Zheng 	unsigned int locked:1;
1115d4f98a2SYan Zheng 	/* has the block been processed */
1125d4f98a2SYan Zheng 	unsigned int processed:1;
1135d4f98a2SYan Zheng 	/* have backrefs of this block been checked */
1145d4f98a2SYan Zheng 	unsigned int checked:1;
1153fd0a558SYan, Zheng 	/*
1163fd0a558SYan, Zheng 	 * 1 if corresponding block has been cowed but some upper
1173fd0a558SYan, Zheng 	 * level block pointers may not point to the new location
1183fd0a558SYan, Zheng 	 */
1193fd0a558SYan, Zheng 	unsigned int pending:1;
1203fd0a558SYan, Zheng 	/*
1213fd0a558SYan, Zheng 	 * 1 if the backref node isn't connected to any other
1223fd0a558SYan, Zheng 	 * backref node.
1233fd0a558SYan, Zheng 	 */
1243fd0a558SYan, Zheng 	unsigned int detached:1;
1255d4f98a2SYan Zheng };
1265d4f98a2SYan Zheng 
1275d4f98a2SYan Zheng /*
1285d4f98a2SYan Zheng  * present a block pointer in the backref cache
1295d4f98a2SYan Zheng  */
1305d4f98a2SYan Zheng struct backref_edge {
1315d4f98a2SYan Zheng 	struct list_head list[2];
1325d4f98a2SYan Zheng 	struct backref_node *node[2];
1335d4f98a2SYan Zheng };
1345d4f98a2SYan Zheng 
1355d4f98a2SYan Zheng #define LOWER	0
1365d4f98a2SYan Zheng #define UPPER	1
1370647bf56SWang Shilong #define RELOCATION_RESERVED_NODES	256
1385d4f98a2SYan Zheng 
1395d4f98a2SYan Zheng struct backref_cache {
1405d4f98a2SYan Zheng 	/* red black tree of all backref nodes in the cache */
1415d4f98a2SYan Zheng 	struct rb_root rb_root;
1423fd0a558SYan, Zheng 	/* for passing backref nodes to btrfs_reloc_cow_block */
1433fd0a558SYan, Zheng 	struct backref_node *path[BTRFS_MAX_LEVEL];
1443fd0a558SYan, Zheng 	/*
1453fd0a558SYan, Zheng 	 * list of blocks that have been cowed but some block
1463fd0a558SYan, Zheng 	 * pointers in upper level blocks may not reflect the
1473fd0a558SYan, Zheng 	 * new location
1483fd0a558SYan, Zheng 	 */
1495d4f98a2SYan Zheng 	struct list_head pending[BTRFS_MAX_LEVEL];
1503fd0a558SYan, Zheng 	/* list of backref nodes with no child node */
1513fd0a558SYan, Zheng 	struct list_head leaves;
1523fd0a558SYan, Zheng 	/* list of blocks that have been cowed in current transaction */
1533fd0a558SYan, Zheng 	struct list_head changed;
1543fd0a558SYan, Zheng 	/* list of detached backref node. */
1553fd0a558SYan, Zheng 	struct list_head detached;
1563fd0a558SYan, Zheng 
1573fd0a558SYan, Zheng 	u64 last_trans;
1583fd0a558SYan, Zheng 
1593fd0a558SYan, Zheng 	int nr_nodes;
1603fd0a558SYan, Zheng 	int nr_edges;
1615d4f98a2SYan Zheng };
1625d4f98a2SYan Zheng 
1635d4f98a2SYan Zheng /*
1645d4f98a2SYan Zheng  * map address of tree root to tree
1655d4f98a2SYan Zheng  */
1665d4f98a2SYan Zheng struct mapping_node {
1675d4f98a2SYan Zheng 	struct rb_node rb_node;
1685d4f98a2SYan Zheng 	u64 bytenr;
1695d4f98a2SYan Zheng 	void *data;
1705d4f98a2SYan Zheng };
1715d4f98a2SYan Zheng 
1725d4f98a2SYan Zheng struct mapping_tree {
1735d4f98a2SYan Zheng 	struct rb_root rb_root;
1745d4f98a2SYan Zheng 	spinlock_t lock;
1755d4f98a2SYan Zheng };
1765d4f98a2SYan Zheng 
1775d4f98a2SYan Zheng /*
1785d4f98a2SYan Zheng  * present a tree block to process
1795d4f98a2SYan Zheng  */
1805d4f98a2SYan Zheng struct tree_block {
1815d4f98a2SYan Zheng 	struct rb_node rb_node;
1825d4f98a2SYan Zheng 	u64 bytenr;
1835d4f98a2SYan Zheng 	struct btrfs_key key;
1845d4f98a2SYan Zheng 	unsigned int level:8;
1855d4f98a2SYan Zheng 	unsigned int key_ready:1;
1865d4f98a2SYan Zheng };
1875d4f98a2SYan Zheng 
1880257bb82SYan, Zheng #define MAX_EXTENTS 128
1890257bb82SYan, Zheng 
1900257bb82SYan, Zheng struct file_extent_cluster {
1910257bb82SYan, Zheng 	u64 start;
1920257bb82SYan, Zheng 	u64 end;
1930257bb82SYan, Zheng 	u64 boundary[MAX_EXTENTS];
1940257bb82SYan, Zheng 	unsigned int nr;
1950257bb82SYan, Zheng };
1960257bb82SYan, Zheng 
1975d4f98a2SYan Zheng struct reloc_control {
1985d4f98a2SYan Zheng 	/* block group to relocate */
19932da5386SDavid Sterba 	struct btrfs_block_group *block_group;
2005d4f98a2SYan Zheng 	/* extent tree */
2015d4f98a2SYan Zheng 	struct btrfs_root *extent_root;
2025d4f98a2SYan Zheng 	/* inode for moving data */
2035d4f98a2SYan Zheng 	struct inode *data_inode;
2043fd0a558SYan, Zheng 
2053fd0a558SYan, Zheng 	struct btrfs_block_rsv *block_rsv;
2063fd0a558SYan, Zheng 
2073fd0a558SYan, Zheng 	struct backref_cache backref_cache;
2083fd0a558SYan, Zheng 
2093fd0a558SYan, Zheng 	struct file_extent_cluster cluster;
2105d4f98a2SYan Zheng 	/* tree blocks have been processed */
2115d4f98a2SYan Zheng 	struct extent_io_tree processed_blocks;
2125d4f98a2SYan Zheng 	/* map start of tree root to corresponding reloc tree */
2135d4f98a2SYan Zheng 	struct mapping_tree reloc_root_tree;
2145d4f98a2SYan Zheng 	/* list of reloc trees */
2155d4f98a2SYan Zheng 	struct list_head reloc_roots;
216d2311e69SQu Wenruo 	/* list of subvolume trees that get relocated */
217d2311e69SQu Wenruo 	struct list_head dirty_subvol_roots;
2183fd0a558SYan, Zheng 	/* size of metadata reservation for merging reloc trees */
2193fd0a558SYan, Zheng 	u64 merging_rsv_size;
2203fd0a558SYan, Zheng 	/* size of relocated tree nodes */
2213fd0a558SYan, Zheng 	u64 nodes_relocated;
2220647bf56SWang Shilong 	/* reserved size for block group relocation*/
2230647bf56SWang Shilong 	u64 reserved_bytes;
2243fd0a558SYan, Zheng 
2255d4f98a2SYan Zheng 	u64 search_start;
2265d4f98a2SYan Zheng 	u64 extents_found;
2273fd0a558SYan, Zheng 
2283fd0a558SYan, Zheng 	unsigned int stage:8;
2293fd0a558SYan, Zheng 	unsigned int create_reloc_tree:1;
2303fd0a558SYan, Zheng 	unsigned int merge_reloc_tree:1;
2315d4f98a2SYan Zheng 	unsigned int found_file_extent:1;
2325d4f98a2SYan Zheng };
2335d4f98a2SYan Zheng 
2345d4f98a2SYan Zheng /* stages of data relocation */
2355d4f98a2SYan Zheng #define MOVE_DATA_EXTENTS	0
2365d4f98a2SYan Zheng #define UPDATE_DATA_PTRS	1
2375d4f98a2SYan Zheng 
2383fd0a558SYan, Zheng static void remove_backref_node(struct backref_cache *cache,
2393fd0a558SYan, Zheng 				struct backref_node *node);
2403fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
2413fd0a558SYan, Zheng 				   struct backref_node *node);
2425d4f98a2SYan Zheng 
2435d4f98a2SYan Zheng static void mapping_tree_init(struct mapping_tree *tree)
2445d4f98a2SYan Zheng {
2456bef4d31SEric Paris 	tree->rb_root = RB_ROOT;
2465d4f98a2SYan Zheng 	spin_lock_init(&tree->lock);
2475d4f98a2SYan Zheng }
2485d4f98a2SYan Zheng 
2495d4f98a2SYan Zheng static void backref_cache_init(struct backref_cache *cache)
2505d4f98a2SYan Zheng {
2515d4f98a2SYan Zheng 	int i;
2526bef4d31SEric Paris 	cache->rb_root = RB_ROOT;
2535d4f98a2SYan Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2545d4f98a2SYan Zheng 		INIT_LIST_HEAD(&cache->pending[i]);
2553fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->changed);
2563fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->detached);
2573fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->leaves);
2585d4f98a2SYan Zheng }
2595d4f98a2SYan Zheng 
2603fd0a558SYan, Zheng static void backref_cache_cleanup(struct backref_cache *cache)
2615d4f98a2SYan Zheng {
2623fd0a558SYan, Zheng 	struct backref_node *node;
2633fd0a558SYan, Zheng 	int i;
2643fd0a558SYan, Zheng 
2653fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
2663fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
2673fd0a558SYan, Zheng 				  struct backref_node, list);
2683fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2693fd0a558SYan, Zheng 	}
2703fd0a558SYan, Zheng 
2713fd0a558SYan, Zheng 	while (!list_empty(&cache->leaves)) {
2723fd0a558SYan, Zheng 		node = list_entry(cache->leaves.next,
2733fd0a558SYan, Zheng 				  struct backref_node, lower);
2743fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2753fd0a558SYan, Zheng 	}
2763fd0a558SYan, Zheng 
2773fd0a558SYan, Zheng 	cache->last_trans = 0;
2783fd0a558SYan, Zheng 
2793fd0a558SYan, Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
280f4907095SLiu Bo 		ASSERT(list_empty(&cache->pending[i]));
281f4907095SLiu Bo 	ASSERT(list_empty(&cache->changed));
282f4907095SLiu Bo 	ASSERT(list_empty(&cache->detached));
283f4907095SLiu Bo 	ASSERT(RB_EMPTY_ROOT(&cache->rb_root));
284f4907095SLiu Bo 	ASSERT(!cache->nr_nodes);
285f4907095SLiu Bo 	ASSERT(!cache->nr_edges);
2863fd0a558SYan, Zheng }
2873fd0a558SYan, Zheng 
2883fd0a558SYan, Zheng static struct backref_node *alloc_backref_node(struct backref_cache *cache)
2893fd0a558SYan, Zheng {
2903fd0a558SYan, Zheng 	struct backref_node *node;
2913fd0a558SYan, Zheng 
2923fd0a558SYan, Zheng 	node = kzalloc(sizeof(*node), GFP_NOFS);
2933fd0a558SYan, Zheng 	if (node) {
2943fd0a558SYan, Zheng 		INIT_LIST_HEAD(&node->list);
2955d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->upper);
2965d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->lower);
2975d4f98a2SYan Zheng 		RB_CLEAR_NODE(&node->rb_node);
2983fd0a558SYan, Zheng 		cache->nr_nodes++;
2993fd0a558SYan, Zheng 	}
3003fd0a558SYan, Zheng 	return node;
3013fd0a558SYan, Zheng }
3023fd0a558SYan, Zheng 
3033fd0a558SYan, Zheng static void free_backref_node(struct backref_cache *cache,
3043fd0a558SYan, Zheng 			      struct backref_node *node)
3053fd0a558SYan, Zheng {
3063fd0a558SYan, Zheng 	if (node) {
3073fd0a558SYan, Zheng 		cache->nr_nodes--;
30800246528SJosef Bacik 		btrfs_put_root(node->root);
3093fd0a558SYan, Zheng 		kfree(node);
3103fd0a558SYan, Zheng 	}
3113fd0a558SYan, Zheng }
3123fd0a558SYan, Zheng 
3133fd0a558SYan, Zheng static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
3143fd0a558SYan, Zheng {
3153fd0a558SYan, Zheng 	struct backref_edge *edge;
3163fd0a558SYan, Zheng 
3173fd0a558SYan, Zheng 	edge = kzalloc(sizeof(*edge), GFP_NOFS);
3183fd0a558SYan, Zheng 	if (edge)
3193fd0a558SYan, Zheng 		cache->nr_edges++;
3203fd0a558SYan, Zheng 	return edge;
3213fd0a558SYan, Zheng }
3223fd0a558SYan, Zheng 
3233fd0a558SYan, Zheng static void free_backref_edge(struct backref_cache *cache,
3243fd0a558SYan, Zheng 			      struct backref_edge *edge)
3253fd0a558SYan, Zheng {
3263fd0a558SYan, Zheng 	if (edge) {
3273fd0a558SYan, Zheng 		cache->nr_edges--;
3283fd0a558SYan, Zheng 		kfree(edge);
3293fd0a558SYan, Zheng 	}
3305d4f98a2SYan Zheng }
3315d4f98a2SYan Zheng 
3325d4f98a2SYan Zheng static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
3335d4f98a2SYan Zheng 				   struct rb_node *node)
3345d4f98a2SYan Zheng {
3355d4f98a2SYan Zheng 	struct rb_node **p = &root->rb_node;
3365d4f98a2SYan Zheng 	struct rb_node *parent = NULL;
3375d4f98a2SYan Zheng 	struct tree_entry *entry;
3385d4f98a2SYan Zheng 
3395d4f98a2SYan Zheng 	while (*p) {
3405d4f98a2SYan Zheng 		parent = *p;
3415d4f98a2SYan Zheng 		entry = rb_entry(parent, struct tree_entry, rb_node);
3425d4f98a2SYan Zheng 
3435d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3445d4f98a2SYan Zheng 			p = &(*p)->rb_left;
3455d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3465d4f98a2SYan Zheng 			p = &(*p)->rb_right;
3475d4f98a2SYan Zheng 		else
3485d4f98a2SYan Zheng 			return parent;
3495d4f98a2SYan Zheng 	}
3505d4f98a2SYan Zheng 
3515d4f98a2SYan Zheng 	rb_link_node(node, parent, p);
3525d4f98a2SYan Zheng 	rb_insert_color(node, root);
3535d4f98a2SYan Zheng 	return NULL;
3545d4f98a2SYan Zheng }
3555d4f98a2SYan Zheng 
3565d4f98a2SYan Zheng static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
3575d4f98a2SYan Zheng {
3585d4f98a2SYan Zheng 	struct rb_node *n = root->rb_node;
3595d4f98a2SYan Zheng 	struct tree_entry *entry;
3605d4f98a2SYan Zheng 
3615d4f98a2SYan Zheng 	while (n) {
3625d4f98a2SYan Zheng 		entry = rb_entry(n, struct tree_entry, rb_node);
3635d4f98a2SYan Zheng 
3645d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3655d4f98a2SYan Zheng 			n = n->rb_left;
3665d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3675d4f98a2SYan Zheng 			n = n->rb_right;
3685d4f98a2SYan Zheng 		else
3695d4f98a2SYan Zheng 			return n;
3705d4f98a2SYan Zheng 	}
3715d4f98a2SYan Zheng 	return NULL;
3725d4f98a2SYan Zheng }
3735d4f98a2SYan Zheng 
37448a3b636SEric Sandeen static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
37543c04fb1SJeff Mahoney {
37643c04fb1SJeff Mahoney 
37743c04fb1SJeff Mahoney 	struct btrfs_fs_info *fs_info = NULL;
37843c04fb1SJeff Mahoney 	struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
37943c04fb1SJeff Mahoney 					      rb_node);
38043c04fb1SJeff Mahoney 	if (bnode->root)
38143c04fb1SJeff Mahoney 		fs_info = bnode->root->fs_info;
3825d163e0eSJeff Mahoney 	btrfs_panic(fs_info, errno,
3835d163e0eSJeff Mahoney 		    "Inconsistency in backref cache found at offset %llu",
3845d163e0eSJeff Mahoney 		    bytenr);
38543c04fb1SJeff Mahoney }
38643c04fb1SJeff Mahoney 
3875d4f98a2SYan Zheng /*
3885d4f98a2SYan Zheng  * walk up backref nodes until reach node presents tree root
3895d4f98a2SYan Zheng  */
3905d4f98a2SYan Zheng static struct backref_node *walk_up_backref(struct backref_node *node,
3915d4f98a2SYan Zheng 					    struct backref_edge *edges[],
3925d4f98a2SYan Zheng 					    int *index)
3935d4f98a2SYan Zheng {
3945d4f98a2SYan Zheng 	struct backref_edge *edge;
3955d4f98a2SYan Zheng 	int idx = *index;
3965d4f98a2SYan Zheng 
3975d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
3985d4f98a2SYan Zheng 		edge = list_entry(node->upper.next,
3995d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
4005d4f98a2SYan Zheng 		edges[idx++] = edge;
4015d4f98a2SYan Zheng 		node = edge->node[UPPER];
4025d4f98a2SYan Zheng 	}
4033fd0a558SYan, Zheng 	BUG_ON(node->detached);
4045d4f98a2SYan Zheng 	*index = idx;
4055d4f98a2SYan Zheng 	return node;
4065d4f98a2SYan Zheng }
4075d4f98a2SYan Zheng 
4085d4f98a2SYan Zheng /*
4095d4f98a2SYan Zheng  * walk down backref nodes to find start of next reference path
4105d4f98a2SYan Zheng  */
4115d4f98a2SYan Zheng static struct backref_node *walk_down_backref(struct backref_edge *edges[],
4125d4f98a2SYan Zheng 					      int *index)
4135d4f98a2SYan Zheng {
4145d4f98a2SYan Zheng 	struct backref_edge *edge;
4155d4f98a2SYan Zheng 	struct backref_node *lower;
4165d4f98a2SYan Zheng 	int idx = *index;
4175d4f98a2SYan Zheng 
4185d4f98a2SYan Zheng 	while (idx > 0) {
4195d4f98a2SYan Zheng 		edge = edges[idx - 1];
4205d4f98a2SYan Zheng 		lower = edge->node[LOWER];
4215d4f98a2SYan Zheng 		if (list_is_last(&edge->list[LOWER], &lower->upper)) {
4225d4f98a2SYan Zheng 			idx--;
4235d4f98a2SYan Zheng 			continue;
4245d4f98a2SYan Zheng 		}
4255d4f98a2SYan Zheng 		edge = list_entry(edge->list[LOWER].next,
4265d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
4275d4f98a2SYan Zheng 		edges[idx - 1] = edge;
4285d4f98a2SYan Zheng 		*index = idx;
4295d4f98a2SYan Zheng 		return edge->node[UPPER];
4305d4f98a2SYan Zheng 	}
4315d4f98a2SYan Zheng 	*index = 0;
4325d4f98a2SYan Zheng 	return NULL;
4335d4f98a2SYan Zheng }
4345d4f98a2SYan Zheng 
4353fd0a558SYan, Zheng static void unlock_node_buffer(struct backref_node *node)
4365d4f98a2SYan Zheng {
4375d4f98a2SYan Zheng 	if (node->locked) {
4385d4f98a2SYan Zheng 		btrfs_tree_unlock(node->eb);
4395d4f98a2SYan Zheng 		node->locked = 0;
4405d4f98a2SYan Zheng 	}
4413fd0a558SYan, Zheng }
4423fd0a558SYan, Zheng 
4433fd0a558SYan, Zheng static void drop_node_buffer(struct backref_node *node)
4443fd0a558SYan, Zheng {
4453fd0a558SYan, Zheng 	if (node->eb) {
4463fd0a558SYan, Zheng 		unlock_node_buffer(node);
4475d4f98a2SYan Zheng 		free_extent_buffer(node->eb);
4485d4f98a2SYan Zheng 		node->eb = NULL;
4495d4f98a2SYan Zheng 	}
4505d4f98a2SYan Zheng }
4515d4f98a2SYan Zheng 
4525d4f98a2SYan Zheng static void drop_backref_node(struct backref_cache *tree,
4535d4f98a2SYan Zheng 			      struct backref_node *node)
4545d4f98a2SYan Zheng {
4555d4f98a2SYan Zheng 	BUG_ON(!list_empty(&node->upper));
4565d4f98a2SYan Zheng 
4575d4f98a2SYan Zheng 	drop_node_buffer(node);
4583fd0a558SYan, Zheng 	list_del(&node->list);
4595d4f98a2SYan Zheng 	list_del(&node->lower);
4603fd0a558SYan, Zheng 	if (!RB_EMPTY_NODE(&node->rb_node))
4615d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &tree->rb_root);
4623fd0a558SYan, Zheng 	free_backref_node(tree, node);
4635d4f98a2SYan Zheng }
4645d4f98a2SYan Zheng 
4655d4f98a2SYan Zheng /*
4665d4f98a2SYan Zheng  * remove a backref node from the backref cache
4675d4f98a2SYan Zheng  */
4685d4f98a2SYan Zheng static void remove_backref_node(struct backref_cache *cache,
4695d4f98a2SYan Zheng 				struct backref_node *node)
4705d4f98a2SYan Zheng {
4715d4f98a2SYan Zheng 	struct backref_node *upper;
4725d4f98a2SYan Zheng 	struct backref_edge *edge;
4735d4f98a2SYan Zheng 
4745d4f98a2SYan Zheng 	if (!node)
4755d4f98a2SYan Zheng 		return;
4765d4f98a2SYan Zheng 
4773fd0a558SYan, Zheng 	BUG_ON(!node->lowest && !node->detached);
4785d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
4795d4f98a2SYan Zheng 		edge = list_entry(node->upper.next, struct backref_edge,
4805d4f98a2SYan Zheng 				  list[LOWER]);
4815d4f98a2SYan Zheng 		upper = edge->node[UPPER];
4825d4f98a2SYan Zheng 		list_del(&edge->list[LOWER]);
4835d4f98a2SYan Zheng 		list_del(&edge->list[UPPER]);
4843fd0a558SYan, Zheng 		free_backref_edge(cache, edge);
4853fd0a558SYan, Zheng 
4863fd0a558SYan, Zheng 		if (RB_EMPTY_NODE(&upper->rb_node)) {
4873fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->upper));
4883fd0a558SYan, Zheng 			drop_backref_node(cache, node);
4893fd0a558SYan, Zheng 			node = upper;
4903fd0a558SYan, Zheng 			node->lowest = 1;
4913fd0a558SYan, Zheng 			continue;
4923fd0a558SYan, Zheng 		}
4935d4f98a2SYan Zheng 		/*
4943fd0a558SYan, Zheng 		 * add the node to leaf node list if no other
4955d4f98a2SYan Zheng 		 * child block cached.
4965d4f98a2SYan Zheng 		 */
4975d4f98a2SYan Zheng 		if (list_empty(&upper->lower)) {
4983fd0a558SYan, Zheng 			list_add_tail(&upper->lower, &cache->leaves);
4995d4f98a2SYan Zheng 			upper->lowest = 1;
5005d4f98a2SYan Zheng 		}
5015d4f98a2SYan Zheng 	}
5023fd0a558SYan, Zheng 
5035d4f98a2SYan Zheng 	drop_backref_node(cache, node);
5045d4f98a2SYan Zheng }
5055d4f98a2SYan Zheng 
5063fd0a558SYan, Zheng static void update_backref_node(struct backref_cache *cache,
5073fd0a558SYan, Zheng 				struct backref_node *node, u64 bytenr)
5083fd0a558SYan, Zheng {
5093fd0a558SYan, Zheng 	struct rb_node *rb_node;
5103fd0a558SYan, Zheng 	rb_erase(&node->rb_node, &cache->rb_root);
5113fd0a558SYan, Zheng 	node->bytenr = bytenr;
5123fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
51343c04fb1SJeff Mahoney 	if (rb_node)
51443c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, bytenr);
5153fd0a558SYan, Zheng }
5163fd0a558SYan, Zheng 
5173fd0a558SYan, Zheng /*
5183fd0a558SYan, Zheng  * update backref cache after a transaction commit
5193fd0a558SYan, Zheng  */
5203fd0a558SYan, Zheng static int update_backref_cache(struct btrfs_trans_handle *trans,
5213fd0a558SYan, Zheng 				struct backref_cache *cache)
5223fd0a558SYan, Zheng {
5233fd0a558SYan, Zheng 	struct backref_node *node;
5243fd0a558SYan, Zheng 	int level = 0;
5253fd0a558SYan, Zheng 
5263fd0a558SYan, Zheng 	if (cache->last_trans == 0) {
5273fd0a558SYan, Zheng 		cache->last_trans = trans->transid;
5283fd0a558SYan, Zheng 		return 0;
5293fd0a558SYan, Zheng 	}
5303fd0a558SYan, Zheng 
5313fd0a558SYan, Zheng 	if (cache->last_trans == trans->transid)
5323fd0a558SYan, Zheng 		return 0;
5333fd0a558SYan, Zheng 
5343fd0a558SYan, Zheng 	/*
5353fd0a558SYan, Zheng 	 * detached nodes are used to avoid unnecessary backref
5363fd0a558SYan, Zheng 	 * lookup. transaction commit changes the extent tree.
5373fd0a558SYan, Zheng 	 * so the detached nodes are no longer useful.
5383fd0a558SYan, Zheng 	 */
5393fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
5403fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
5413fd0a558SYan, Zheng 				  struct backref_node, list);
5423fd0a558SYan, Zheng 		remove_backref_node(cache, node);
5433fd0a558SYan, Zheng 	}
5443fd0a558SYan, Zheng 
5453fd0a558SYan, Zheng 	while (!list_empty(&cache->changed)) {
5463fd0a558SYan, Zheng 		node = list_entry(cache->changed.next,
5473fd0a558SYan, Zheng 				  struct backref_node, list);
5483fd0a558SYan, Zheng 		list_del_init(&node->list);
5493fd0a558SYan, Zheng 		BUG_ON(node->pending);
5503fd0a558SYan, Zheng 		update_backref_node(cache, node, node->new_bytenr);
5513fd0a558SYan, Zheng 	}
5523fd0a558SYan, Zheng 
5533fd0a558SYan, Zheng 	/*
5543fd0a558SYan, Zheng 	 * some nodes can be left in the pending list if there were
5553fd0a558SYan, Zheng 	 * errors during processing the pending nodes.
5563fd0a558SYan, Zheng 	 */
5573fd0a558SYan, Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
5583fd0a558SYan, Zheng 		list_for_each_entry(node, &cache->pending[level], list) {
5593fd0a558SYan, Zheng 			BUG_ON(!node->pending);
5603fd0a558SYan, Zheng 			if (node->bytenr == node->new_bytenr)
5613fd0a558SYan, Zheng 				continue;
5623fd0a558SYan, Zheng 			update_backref_node(cache, node, node->new_bytenr);
5633fd0a558SYan, Zheng 		}
5643fd0a558SYan, Zheng 	}
5653fd0a558SYan, Zheng 
5663fd0a558SYan, Zheng 	cache->last_trans = 0;
5673fd0a558SYan, Zheng 	return 1;
5683fd0a558SYan, Zheng }
5693fd0a558SYan, Zheng 
5706282675eSQu Wenruo static bool reloc_root_is_dead(struct btrfs_root *root)
5716282675eSQu Wenruo {
5726282675eSQu Wenruo 	/*
5736282675eSQu Wenruo 	 * Pair with set_bit/clear_bit in clean_dirty_subvols and
5746282675eSQu Wenruo 	 * btrfs_update_reloc_root. We need to see the updated bit before
5756282675eSQu Wenruo 	 * trying to access reloc_root
5766282675eSQu Wenruo 	 */
5776282675eSQu Wenruo 	smp_rmb();
5786282675eSQu Wenruo 	if (test_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state))
5796282675eSQu Wenruo 		return true;
5806282675eSQu Wenruo 	return false;
5816282675eSQu Wenruo }
5826282675eSQu Wenruo 
5836282675eSQu Wenruo /*
5846282675eSQu Wenruo  * Check if this subvolume tree has valid reloc tree.
5856282675eSQu Wenruo  *
5866282675eSQu Wenruo  * Reloc tree after swap is considered dead, thus not considered as valid.
5876282675eSQu Wenruo  * This is enough for most callers, as they don't distinguish dead reloc root
5886282675eSQu Wenruo  * from no reloc root.  But should_ignore_root() below is a special case.
5896282675eSQu Wenruo  */
5906282675eSQu Wenruo static bool have_reloc_root(struct btrfs_root *root)
5916282675eSQu Wenruo {
5926282675eSQu Wenruo 	if (reloc_root_is_dead(root))
5936282675eSQu Wenruo 		return false;
5946282675eSQu Wenruo 	if (!root->reloc_root)
5956282675eSQu Wenruo 		return false;
5966282675eSQu Wenruo 	return true;
5976282675eSQu Wenruo }
598f2a97a9dSDavid Sterba 
5993fd0a558SYan, Zheng static int should_ignore_root(struct btrfs_root *root)
6003fd0a558SYan, Zheng {
6013fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
6023fd0a558SYan, Zheng 
60327cdeb70SMiao Xie 	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
6043fd0a558SYan, Zheng 		return 0;
6053fd0a558SYan, Zheng 
6066282675eSQu Wenruo 	/* This root has been merged with its reloc tree, we can ignore it */
6076282675eSQu Wenruo 	if (reloc_root_is_dead(root))
6086282675eSQu Wenruo 		return 1;
6096282675eSQu Wenruo 
6103fd0a558SYan, Zheng 	reloc_root = root->reloc_root;
6113fd0a558SYan, Zheng 	if (!reloc_root)
6123fd0a558SYan, Zheng 		return 0;
6133fd0a558SYan, Zheng 
6143fd0a558SYan, Zheng 	if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
6153fd0a558SYan, Zheng 	    root->fs_info->running_transaction->transid - 1)
6163fd0a558SYan, Zheng 		return 0;
6173fd0a558SYan, Zheng 	/*
6183fd0a558SYan, Zheng 	 * if there is reloc tree and it was created in previous
6193fd0a558SYan, Zheng 	 * transaction backref lookup can find the reloc tree,
6203fd0a558SYan, Zheng 	 * so backref node for the fs tree root is useless for
6213fd0a558SYan, Zheng 	 * relocation.
6223fd0a558SYan, Zheng 	 */
6233fd0a558SYan, Zheng 	return 1;
6243fd0a558SYan, Zheng }
6255d4f98a2SYan Zheng /*
6265d4f98a2SYan Zheng  * find reloc tree by address of tree root
6275d4f98a2SYan Zheng  */
6285d4f98a2SYan Zheng static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
6295d4f98a2SYan Zheng 					  u64 bytenr)
6305d4f98a2SYan Zheng {
6315d4f98a2SYan Zheng 	struct rb_node *rb_node;
6325d4f98a2SYan Zheng 	struct mapping_node *node;
6335d4f98a2SYan Zheng 	struct btrfs_root *root = NULL;
6345d4f98a2SYan Zheng 
6355d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
6365d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
6375d4f98a2SYan Zheng 	if (rb_node) {
6385d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
6395d4f98a2SYan Zheng 		root = (struct btrfs_root *)node->data;
6405d4f98a2SYan Zheng 	}
6415d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
64200246528SJosef Bacik 	return btrfs_grab_root(root);
6435d4f98a2SYan Zheng }
6445d4f98a2SYan Zheng 
6455d4f98a2SYan Zheng static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
6465d4f98a2SYan Zheng 					u64 root_objectid)
6475d4f98a2SYan Zheng {
6485d4f98a2SYan Zheng 	struct btrfs_key key;
6495d4f98a2SYan Zheng 
6505d4f98a2SYan Zheng 	key.objectid = root_objectid;
6515d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
6525d4f98a2SYan Zheng 	key.offset = (u64)-1;
6535d4f98a2SYan Zheng 
654bc44d7c4SJosef Bacik 	return btrfs_get_fs_root(fs_info, &key, false);
6555d4f98a2SYan Zheng }
6565d4f98a2SYan Zheng 
6575d4f98a2SYan Zheng static noinline_for_stack
6585d4f98a2SYan Zheng int find_inline_backref(struct extent_buffer *leaf, int slot,
6595d4f98a2SYan Zheng 			unsigned long *ptr, unsigned long *end)
6605d4f98a2SYan Zheng {
6613173a18fSJosef Bacik 	struct btrfs_key key;
6625d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
6635d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
6645d4f98a2SYan Zheng 	u32 item_size;
6655d4f98a2SYan Zheng 
6663173a18fSJosef Bacik 	btrfs_item_key_to_cpu(leaf, &key, slot);
6673173a18fSJosef Bacik 
6685d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(leaf, slot);
669ba3c2b19SNikolay Borisov 	if (item_size < sizeof(*ei)) {
670ba3c2b19SNikolay Borisov 		btrfs_print_v0_err(leaf->fs_info);
671ba3c2b19SNikolay Borisov 		btrfs_handle_fs_error(leaf->fs_info, -EINVAL, NULL);
672ba3c2b19SNikolay Borisov 		return 1;
673ba3c2b19SNikolay Borisov 	}
6745d4f98a2SYan Zheng 	ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
6755d4f98a2SYan Zheng 	WARN_ON(!(btrfs_extent_flags(leaf, ei) &
6765d4f98a2SYan Zheng 		  BTRFS_EXTENT_FLAG_TREE_BLOCK));
6775d4f98a2SYan Zheng 
6783173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6793173a18fSJosef Bacik 	    item_size <= sizeof(*ei) + sizeof(*bi)) {
6805d4f98a2SYan Zheng 		WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
6815d4f98a2SYan Zheng 		return 1;
6825d4f98a2SYan Zheng 	}
683d062d13cSJosef Bacik 	if (key.type == BTRFS_METADATA_ITEM_KEY &&
684d062d13cSJosef Bacik 	    item_size <= sizeof(*ei)) {
685d062d13cSJosef Bacik 		WARN_ON(item_size < sizeof(*ei));
686d062d13cSJosef Bacik 		return 1;
687d062d13cSJosef Bacik 	}
6885d4f98a2SYan Zheng 
6893173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY) {
6905d4f98a2SYan Zheng 		bi = (struct btrfs_tree_block_info *)(ei + 1);
6915d4f98a2SYan Zheng 		*ptr = (unsigned long)(bi + 1);
6923173a18fSJosef Bacik 	} else {
6933173a18fSJosef Bacik 		*ptr = (unsigned long)(ei + 1);
6943173a18fSJosef Bacik 	}
6955d4f98a2SYan Zheng 	*end = (unsigned long)ei + item_size;
6965d4f98a2SYan Zheng 	return 0;
6975d4f98a2SYan Zheng }
6985d4f98a2SYan Zheng 
6995d4f98a2SYan Zheng /*
7005d4f98a2SYan Zheng  * build backref tree for a given tree block. root of the backref tree
7015d4f98a2SYan Zheng  * corresponds the tree block, leaves of the backref tree correspond
7025d4f98a2SYan Zheng  * roots of b-trees that reference the tree block.
7035d4f98a2SYan Zheng  *
7045d4f98a2SYan Zheng  * the basic idea of this function is check backrefs of a given block
70501327610SNicholas D Steeves  * to find upper level blocks that reference the block, and then check
70601327610SNicholas D Steeves  * backrefs of these upper level blocks recursively. the recursion stop
7075d4f98a2SYan Zheng  * when tree root is reached or backrefs for the block is cached.
7085d4f98a2SYan Zheng  *
7095d4f98a2SYan Zheng  * NOTE: if we find backrefs for a block are cached, we know backrefs
7105d4f98a2SYan Zheng  * for all upper level blocks that directly/indirectly reference the
7115d4f98a2SYan Zheng  * block are also cached.
7125d4f98a2SYan Zheng  */
7133fd0a558SYan, Zheng static noinline_for_stack
7143fd0a558SYan, Zheng struct backref_node *build_backref_tree(struct reloc_control *rc,
7155d4f98a2SYan Zheng 					struct btrfs_key *node_key,
7165d4f98a2SYan Zheng 					int level, u64 bytenr)
7175d4f98a2SYan Zheng {
7183fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
719fa6ac715SQu Wenruo 	struct btrfs_path *path1; /* For searching extent root */
720fa6ac715SQu Wenruo 	struct btrfs_path *path2; /* For searching parent of TREE_BLOCK_REF */
7215d4f98a2SYan Zheng 	struct extent_buffer *eb;
7225d4f98a2SYan Zheng 	struct btrfs_root *root;
7235d4f98a2SYan Zheng 	struct backref_node *cur;
7245d4f98a2SYan Zheng 	struct backref_node *upper;
7255d4f98a2SYan Zheng 	struct backref_node *lower;
7265d4f98a2SYan Zheng 	struct backref_node *node = NULL;
7275d4f98a2SYan Zheng 	struct backref_node *exist = NULL;
7285d4f98a2SYan Zheng 	struct backref_edge *edge;
7295d4f98a2SYan Zheng 	struct rb_node *rb_node;
7305d4f98a2SYan Zheng 	struct btrfs_key key;
7315d4f98a2SYan Zheng 	unsigned long end;
7325d4f98a2SYan Zheng 	unsigned long ptr;
733fa6ac715SQu Wenruo 	LIST_HEAD(list); /* Pending edge list, upper node needs to be checked */
7343fd0a558SYan, Zheng 	LIST_HEAD(useless);
7353fd0a558SYan, Zheng 	int cowonly;
7365d4f98a2SYan Zheng 	int ret;
7375d4f98a2SYan Zheng 	int err = 0;
738b6c60c80SJosef Bacik 	bool need_check = true;
7395d4f98a2SYan Zheng 
7405d4f98a2SYan Zheng 	path1 = btrfs_alloc_path();
7415d4f98a2SYan Zheng 	path2 = btrfs_alloc_path();
7425d4f98a2SYan Zheng 	if (!path1 || !path2) {
7435d4f98a2SYan Zheng 		err = -ENOMEM;
7445d4f98a2SYan Zheng 		goto out;
7455d4f98a2SYan Zheng 	}
7465d4f98a2SYan Zheng 
7473fd0a558SYan, Zheng 	node = alloc_backref_node(cache);
7485d4f98a2SYan Zheng 	if (!node) {
7495d4f98a2SYan Zheng 		err = -ENOMEM;
7505d4f98a2SYan Zheng 		goto out;
7515d4f98a2SYan Zheng 	}
7525d4f98a2SYan Zheng 
7535d4f98a2SYan Zheng 	node->bytenr = bytenr;
7545d4f98a2SYan Zheng 	node->level = level;
7555d4f98a2SYan Zheng 	node->lowest = 1;
7565d4f98a2SYan Zheng 	cur = node;
7575d4f98a2SYan Zheng again:
7585d4f98a2SYan Zheng 	end = 0;
7595d4f98a2SYan Zheng 	ptr = 0;
7605d4f98a2SYan Zheng 	key.objectid = cur->bytenr;
7613173a18fSJosef Bacik 	key.type = BTRFS_METADATA_ITEM_KEY;
7625d4f98a2SYan Zheng 	key.offset = (u64)-1;
7635d4f98a2SYan Zheng 
7645d4f98a2SYan Zheng 	path1->search_commit_root = 1;
7655d4f98a2SYan Zheng 	path1->skip_locking = 1;
7665d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
7675d4f98a2SYan Zheng 				0, 0);
7685d4f98a2SYan Zheng 	if (ret < 0) {
7695d4f98a2SYan Zheng 		err = ret;
7705d4f98a2SYan Zheng 		goto out;
7715d4f98a2SYan Zheng 	}
77275bfb9afSJosef Bacik 	ASSERT(ret);
77375bfb9afSJosef Bacik 	ASSERT(path1->slots[0]);
7745d4f98a2SYan Zheng 
7755d4f98a2SYan Zheng 	path1->slots[0]--;
7765d4f98a2SYan Zheng 
7775d4f98a2SYan Zheng 	WARN_ON(cur->checked);
7785d4f98a2SYan Zheng 	if (!list_empty(&cur->upper)) {
7795d4f98a2SYan Zheng 		/*
78070f23fd6SJustin P. Mattock 		 * the backref was added previously when processing
7815d4f98a2SYan Zheng 		 * backref of type BTRFS_TREE_BLOCK_REF_KEY
7825d4f98a2SYan Zheng 		 */
78375bfb9afSJosef Bacik 		ASSERT(list_is_singular(&cur->upper));
7845d4f98a2SYan Zheng 		edge = list_entry(cur->upper.next, struct backref_edge,
7855d4f98a2SYan Zheng 				  list[LOWER]);
78675bfb9afSJosef Bacik 		ASSERT(list_empty(&edge->list[UPPER]));
7875d4f98a2SYan Zheng 		exist = edge->node[UPPER];
7885d4f98a2SYan Zheng 		/*
7895d4f98a2SYan Zheng 		 * add the upper level block to pending list if we need
7905d4f98a2SYan Zheng 		 * check its backrefs
7915d4f98a2SYan Zheng 		 */
7925d4f98a2SYan Zheng 		if (!exist->checked)
7935d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
7945d4f98a2SYan Zheng 	} else {
7955d4f98a2SYan Zheng 		exist = NULL;
7965d4f98a2SYan Zheng 	}
7975d4f98a2SYan Zheng 
7985d4f98a2SYan Zheng 	while (1) {
7995d4f98a2SYan Zheng 		cond_resched();
8005d4f98a2SYan Zheng 		eb = path1->nodes[0];
8015d4f98a2SYan Zheng 
8025d4f98a2SYan Zheng 		if (ptr >= end) {
8035d4f98a2SYan Zheng 			if (path1->slots[0] >= btrfs_header_nritems(eb)) {
8045d4f98a2SYan Zheng 				ret = btrfs_next_leaf(rc->extent_root, path1);
8055d4f98a2SYan Zheng 				if (ret < 0) {
8065d4f98a2SYan Zheng 					err = ret;
8075d4f98a2SYan Zheng 					goto out;
8085d4f98a2SYan Zheng 				}
8095d4f98a2SYan Zheng 				if (ret > 0)
8105d4f98a2SYan Zheng 					break;
8115d4f98a2SYan Zheng 				eb = path1->nodes[0];
8125d4f98a2SYan Zheng 			}
8135d4f98a2SYan Zheng 
8145d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
8155d4f98a2SYan Zheng 			if (key.objectid != cur->bytenr) {
8165d4f98a2SYan Zheng 				WARN_ON(exist);
8175d4f98a2SYan Zheng 				break;
8185d4f98a2SYan Zheng 			}
8195d4f98a2SYan Zheng 
8203173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY ||
8213173a18fSJosef Bacik 			    key.type == BTRFS_METADATA_ITEM_KEY) {
8225d4f98a2SYan Zheng 				ret = find_inline_backref(eb, path1->slots[0],
8235d4f98a2SYan Zheng 							  &ptr, &end);
8245d4f98a2SYan Zheng 				if (ret)
8255d4f98a2SYan Zheng 					goto next;
8265d4f98a2SYan Zheng 			}
8275d4f98a2SYan Zheng 		}
8285d4f98a2SYan Zheng 
8295d4f98a2SYan Zheng 		if (ptr < end) {
8305d4f98a2SYan Zheng 			/* update key for inline back ref */
8315d4f98a2SYan Zheng 			struct btrfs_extent_inline_ref *iref;
8323de28d57SLiu Bo 			int type;
8335d4f98a2SYan Zheng 			iref = (struct btrfs_extent_inline_ref *)ptr;
8343de28d57SLiu Bo 			type = btrfs_get_extent_inline_ref_type(eb, iref,
8353de28d57SLiu Bo 							BTRFS_REF_TYPE_BLOCK);
8363de28d57SLiu Bo 			if (type == BTRFS_REF_TYPE_INVALID) {
837af431dcbSSu Yue 				err = -EUCLEAN;
8383de28d57SLiu Bo 				goto out;
8393de28d57SLiu Bo 			}
8403de28d57SLiu Bo 			key.type = type;
8415d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
8423de28d57SLiu Bo 
8435d4f98a2SYan Zheng 			WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
8445d4f98a2SYan Zheng 				key.type != BTRFS_SHARED_BLOCK_REF_KEY);
8455d4f98a2SYan Zheng 		}
8465d4f98a2SYan Zheng 
847fa6ac715SQu Wenruo 		/*
848fa6ac715SQu Wenruo 		 * Parent node found and matches current inline ref, no need to
849fa6ac715SQu Wenruo 		 * rebuild this node for this inline ref.
850fa6ac715SQu Wenruo 		 */
8515d4f98a2SYan Zheng 		if (exist &&
8525d4f98a2SYan Zheng 		    ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
8535d4f98a2SYan Zheng 		      exist->owner == key.offset) ||
8545d4f98a2SYan Zheng 		     (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
8555d4f98a2SYan Zheng 		      exist->bytenr == key.offset))) {
8565d4f98a2SYan Zheng 			exist = NULL;
8575d4f98a2SYan Zheng 			goto next;
8585d4f98a2SYan Zheng 		}
8595d4f98a2SYan Zheng 
860fa6ac715SQu Wenruo 		/* SHARED_BLOCK_REF means key.offset is the parent bytenr */
8615d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
8625d4f98a2SYan Zheng 			if (key.objectid == key.offset) {
8635d4f98a2SYan Zheng 				/*
864fa6ac715SQu Wenruo 				 * Only root blocks of reloc trees use backref
865fa6ac715SQu Wenruo 				 * pointing to itself.
8665d4f98a2SYan Zheng 				 */
8675d4f98a2SYan Zheng 				root = find_reloc_root(rc, cur->bytenr);
86875bfb9afSJosef Bacik 				ASSERT(root);
8695d4f98a2SYan Zheng 				cur->root = root;
8705d4f98a2SYan Zheng 				break;
8715d4f98a2SYan Zheng 			}
8725d4f98a2SYan Zheng 
8733fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
8745d4f98a2SYan Zheng 			if (!edge) {
8755d4f98a2SYan Zheng 				err = -ENOMEM;
8765d4f98a2SYan Zheng 				goto out;
8775d4f98a2SYan Zheng 			}
8785d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, key.offset);
8795d4f98a2SYan Zheng 			if (!rb_node) {
8803fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
8815d4f98a2SYan Zheng 				if (!upper) {
8823fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
8835d4f98a2SYan Zheng 					err = -ENOMEM;
8845d4f98a2SYan Zheng 					goto out;
8855d4f98a2SYan Zheng 				}
8865d4f98a2SYan Zheng 				upper->bytenr = key.offset;
8875d4f98a2SYan Zheng 				upper->level = cur->level + 1;
8885d4f98a2SYan Zheng 				/*
8895d4f98a2SYan Zheng 				 *  backrefs for the upper level block isn't
8905d4f98a2SYan Zheng 				 *  cached, add the block to pending list
8915d4f98a2SYan Zheng 				 */
8925d4f98a2SYan Zheng 				list_add_tail(&edge->list[UPPER], &list);
8935d4f98a2SYan Zheng 			} else {
8945d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
8955d4f98a2SYan Zheng 						 rb_node);
89675bfb9afSJosef Bacik 				ASSERT(upper->checked);
8975d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
8985d4f98a2SYan Zheng 			}
8993fd0a558SYan, Zheng 			list_add_tail(&edge->list[LOWER], &cur->upper);
9005d4f98a2SYan Zheng 			edge->node[LOWER] = cur;
9013fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
9025d4f98a2SYan Zheng 
9035d4f98a2SYan Zheng 			goto next;
9046d8ff4e4SDavid Sterba 		} else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
905ba3c2b19SNikolay Borisov 			err = -EINVAL;
906ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(rc->extent_root->fs_info);
907ba3c2b19SNikolay Borisov 			btrfs_handle_fs_error(rc->extent_root->fs_info, err,
908ba3c2b19SNikolay Borisov 					      NULL);
909ba3c2b19SNikolay Borisov 			goto out;
9105d4f98a2SYan Zheng 		} else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
9115d4f98a2SYan Zheng 			goto next;
9125d4f98a2SYan Zheng 		}
9135d4f98a2SYan Zheng 
914fa6ac715SQu Wenruo 		/*
915fa6ac715SQu Wenruo 		 * key.type == BTRFS_TREE_BLOCK_REF_KEY, inline ref offset
916fa6ac715SQu Wenruo 		 * means the root objectid. We need to search the tree to get
917fa6ac715SQu Wenruo 		 * its parent bytenr.
918fa6ac715SQu Wenruo 		 */
9195d4f98a2SYan Zheng 		root = read_fs_root(rc->extent_root->fs_info, key.offset);
9205d4f98a2SYan Zheng 		if (IS_ERR(root)) {
9215d4f98a2SYan Zheng 			err = PTR_ERR(root);
9225d4f98a2SYan Zheng 			goto out;
9235d4f98a2SYan Zheng 		}
9245d4f98a2SYan Zheng 
92527cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
9263fd0a558SYan, Zheng 			cur->cowonly = 1;
9273fd0a558SYan, Zheng 
9285d4f98a2SYan Zheng 		if (btrfs_root_level(&root->root_item) == cur->level) {
9295d4f98a2SYan Zheng 			/* tree root */
93075bfb9afSJosef Bacik 			ASSERT(btrfs_root_bytenr(&root->root_item) ==
9315d4f98a2SYan Zheng 			       cur->bytenr);
9320b530bc5SJosef Bacik 			if (should_ignore_root(root)) {
93300246528SJosef Bacik 				btrfs_put_root(root);
9343fd0a558SYan, Zheng 				list_add(&cur->list, &useless);
9350b530bc5SJosef Bacik 			} else {
9365d4f98a2SYan Zheng 				cur->root = root;
9370b530bc5SJosef Bacik 			}
9385d4f98a2SYan Zheng 			break;
9395d4f98a2SYan Zheng 		}
9405d4f98a2SYan Zheng 
9415d4f98a2SYan Zheng 		level = cur->level + 1;
9425d4f98a2SYan Zheng 
943fa6ac715SQu Wenruo 		/* Search the tree to find parent blocks referring the block. */
9445d4f98a2SYan Zheng 		path2->search_commit_root = 1;
9455d4f98a2SYan Zheng 		path2->skip_locking = 1;
9465d4f98a2SYan Zheng 		path2->lowest_level = level;
9475d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
9485d4f98a2SYan Zheng 		path2->lowest_level = 0;
9495d4f98a2SYan Zheng 		if (ret < 0) {
95000246528SJosef Bacik 			btrfs_put_root(root);
9515d4f98a2SYan Zheng 			err = ret;
9525d4f98a2SYan Zheng 			goto out;
9535d4f98a2SYan Zheng 		}
95433c66f43SYan Zheng 		if (ret > 0 && path2->slots[level] > 0)
95533c66f43SYan Zheng 			path2->slots[level]--;
9565d4f98a2SYan Zheng 
9575d4f98a2SYan Zheng 		eb = path2->nodes[level];
9583561b9dbSLiu Bo 		if (btrfs_node_blockptr(eb, path2->slots[level]) !=
9593561b9dbSLiu Bo 		    cur->bytenr) {
9603561b9dbSLiu Bo 			btrfs_err(root->fs_info,
9613561b9dbSLiu Bo 	"couldn't find block (%llu) (level %d) in tree (%llu) with key (%llu %u %llu)",
9624fd786e6SMisono Tomohiro 				  cur->bytenr, level - 1,
9634fd786e6SMisono Tomohiro 				  root->root_key.objectid,
9643561b9dbSLiu Bo 				  node_key->objectid, node_key->type,
9653561b9dbSLiu Bo 				  node_key->offset);
96600246528SJosef Bacik 			btrfs_put_root(root);
9673561b9dbSLiu Bo 			err = -ENOENT;
9683561b9dbSLiu Bo 			goto out;
9693561b9dbSLiu Bo 		}
9705d4f98a2SYan Zheng 		lower = cur;
971b6c60c80SJosef Bacik 		need_check = true;
972fa6ac715SQu Wenruo 
973fa6ac715SQu Wenruo 		/* Add all nodes and edges in the path */
9745d4f98a2SYan Zheng 		for (; level < BTRFS_MAX_LEVEL; level++) {
9755d4f98a2SYan Zheng 			if (!path2->nodes[level]) {
97675bfb9afSJosef Bacik 				ASSERT(btrfs_root_bytenr(&root->root_item) ==
9775d4f98a2SYan Zheng 				       lower->bytenr);
9780b530bc5SJosef Bacik 				if (should_ignore_root(root)) {
97900246528SJosef Bacik 					btrfs_put_root(root);
9803fd0a558SYan, Zheng 					list_add(&lower->list, &useless);
9810b530bc5SJosef Bacik 				} else {
9825d4f98a2SYan Zheng 					lower->root = root;
9830b530bc5SJosef Bacik 				}
9845d4f98a2SYan Zheng 				break;
9855d4f98a2SYan Zheng 			}
9865d4f98a2SYan Zheng 
9873fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
9885d4f98a2SYan Zheng 			if (!edge) {
98900246528SJosef Bacik 				btrfs_put_root(root);
9905d4f98a2SYan Zheng 				err = -ENOMEM;
9915d4f98a2SYan Zheng 				goto out;
9925d4f98a2SYan Zheng 			}
9935d4f98a2SYan Zheng 
9945d4f98a2SYan Zheng 			eb = path2->nodes[level];
9955d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, eb->start);
9965d4f98a2SYan Zheng 			if (!rb_node) {
9973fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
9985d4f98a2SYan Zheng 				if (!upper) {
99900246528SJosef Bacik 					btrfs_put_root(root);
10003fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
10015d4f98a2SYan Zheng 					err = -ENOMEM;
10025d4f98a2SYan Zheng 					goto out;
10035d4f98a2SYan Zheng 				}
10045d4f98a2SYan Zheng 				upper->bytenr = eb->start;
10055d4f98a2SYan Zheng 				upper->owner = btrfs_header_owner(eb);
10065d4f98a2SYan Zheng 				upper->level = lower->level + 1;
100727cdeb70SMiao Xie 				if (!test_bit(BTRFS_ROOT_REF_COWS,
100827cdeb70SMiao Xie 					      &root->state))
10093fd0a558SYan, Zheng 					upper->cowonly = 1;
10105d4f98a2SYan Zheng 
10115d4f98a2SYan Zheng 				/*
10125d4f98a2SYan Zheng 				 * if we know the block isn't shared
10135d4f98a2SYan Zheng 				 * we can void checking its backrefs.
10145d4f98a2SYan Zheng 				 */
10155d4f98a2SYan Zheng 				if (btrfs_block_can_be_shared(root, eb))
10165d4f98a2SYan Zheng 					upper->checked = 0;
10175d4f98a2SYan Zheng 				else
10185d4f98a2SYan Zheng 					upper->checked = 1;
10195d4f98a2SYan Zheng 
10205d4f98a2SYan Zheng 				/*
10215d4f98a2SYan Zheng 				 * add the block to pending list if we
1022b6c60c80SJosef Bacik 				 * need check its backrefs, we only do this once
1023b6c60c80SJosef Bacik 				 * while walking up a tree as we will catch
1024b6c60c80SJosef Bacik 				 * anything else later on.
10255d4f98a2SYan Zheng 				 */
1026b6c60c80SJosef Bacik 				if (!upper->checked && need_check) {
1027b6c60c80SJosef Bacik 					need_check = false;
10285d4f98a2SYan Zheng 					list_add_tail(&edge->list[UPPER],
10295d4f98a2SYan Zheng 						      &list);
1030bbe90514SJosef Bacik 				} else {
1031bbe90514SJosef Bacik 					if (upper->checked)
1032bbe90514SJosef Bacik 						need_check = true;
10335d4f98a2SYan Zheng 					INIT_LIST_HEAD(&edge->list[UPPER]);
1034bbe90514SJosef Bacik 				}
10355d4f98a2SYan Zheng 			} else {
10365d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
10375d4f98a2SYan Zheng 						 rb_node);
103875bfb9afSJosef Bacik 				ASSERT(upper->checked);
10395d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
10403fd0a558SYan, Zheng 				if (!upper->owner)
10413fd0a558SYan, Zheng 					upper->owner = btrfs_header_owner(eb);
10425d4f98a2SYan Zheng 			}
10435d4f98a2SYan Zheng 			list_add_tail(&edge->list[LOWER], &lower->upper);
10445d4f98a2SYan Zheng 			edge->node[LOWER] = lower;
10453fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
10465d4f98a2SYan Zheng 
10470b530bc5SJosef Bacik 			if (rb_node) {
104800246528SJosef Bacik 				btrfs_put_root(root);
10495d4f98a2SYan Zheng 				break;
10500b530bc5SJosef Bacik 			}
10515d4f98a2SYan Zheng 			lower = upper;
10525d4f98a2SYan Zheng 			upper = NULL;
10535d4f98a2SYan Zheng 		}
1054b3b4aa74SDavid Sterba 		btrfs_release_path(path2);
10555d4f98a2SYan Zheng next:
10565d4f98a2SYan Zheng 		if (ptr < end) {
10575d4f98a2SYan Zheng 			ptr += btrfs_extent_inline_ref_size(key.type);
10585d4f98a2SYan Zheng 			if (ptr >= end) {
10595d4f98a2SYan Zheng 				WARN_ON(ptr > end);
10605d4f98a2SYan Zheng 				ptr = 0;
10615d4f98a2SYan Zheng 				end = 0;
10625d4f98a2SYan Zheng 			}
10635d4f98a2SYan Zheng 		}
10645d4f98a2SYan Zheng 		if (ptr >= end)
10655d4f98a2SYan Zheng 			path1->slots[0]++;
10665d4f98a2SYan Zheng 	}
1067b3b4aa74SDavid Sterba 	btrfs_release_path(path1);
10685d4f98a2SYan Zheng 
10695d4f98a2SYan Zheng 	cur->checked = 1;
10705d4f98a2SYan Zheng 	WARN_ON(exist);
10715d4f98a2SYan Zheng 
10725d4f98a2SYan Zheng 	/* the pending list isn't empty, take the first block to process */
10735d4f98a2SYan Zheng 	if (!list_empty(&list)) {
10745d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10755d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10765d4f98a2SYan Zheng 		cur = edge->node[UPPER];
10775d4f98a2SYan Zheng 		goto again;
10785d4f98a2SYan Zheng 	}
10795d4f98a2SYan Zheng 
10805d4f98a2SYan Zheng 	/*
10815d4f98a2SYan Zheng 	 * everything goes well, connect backref nodes and insert backref nodes
10825d4f98a2SYan Zheng 	 * into the cache.
10835d4f98a2SYan Zheng 	 */
108475bfb9afSJosef Bacik 	ASSERT(node->checked);
10853fd0a558SYan, Zheng 	cowonly = node->cowonly;
10863fd0a558SYan, Zheng 	if (!cowonly) {
10873fd0a558SYan, Zheng 		rb_node = tree_insert(&cache->rb_root, node->bytenr,
10883fd0a558SYan, Zheng 				      &node->rb_node);
108943c04fb1SJeff Mahoney 		if (rb_node)
109043c04fb1SJeff Mahoney 			backref_tree_panic(rb_node, -EEXIST, node->bytenr);
10913fd0a558SYan, Zheng 		list_add_tail(&node->lower, &cache->leaves);
10923fd0a558SYan, Zheng 	}
10935d4f98a2SYan Zheng 
10945d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER])
10955d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &list);
10965d4f98a2SYan Zheng 
10975d4f98a2SYan Zheng 	while (!list_empty(&list)) {
10985d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10995d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
11005d4f98a2SYan Zheng 		upper = edge->node[UPPER];
11013fd0a558SYan, Zheng 		if (upper->detached) {
11023fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
11033fd0a558SYan, Zheng 			lower = edge->node[LOWER];
11043fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
11053fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
11063fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
11073fd0a558SYan, Zheng 			continue;
11083fd0a558SYan, Zheng 		}
11095d4f98a2SYan Zheng 
11105d4f98a2SYan Zheng 		if (!RB_EMPTY_NODE(&upper->rb_node)) {
11115d4f98a2SYan Zheng 			if (upper->lowest) {
11125d4f98a2SYan Zheng 				list_del_init(&upper->lower);
11135d4f98a2SYan Zheng 				upper->lowest = 0;
11145d4f98a2SYan Zheng 			}
11155d4f98a2SYan Zheng 
11165d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &upper->lower);
11175d4f98a2SYan Zheng 			continue;
11185d4f98a2SYan Zheng 		}
11195d4f98a2SYan Zheng 
112075bfb9afSJosef Bacik 		if (!upper->checked) {
112175bfb9afSJosef Bacik 			/*
112275bfb9afSJosef Bacik 			 * Still want to blow up for developers since this is a
112375bfb9afSJosef Bacik 			 * logic bug.
112475bfb9afSJosef Bacik 			 */
112575bfb9afSJosef Bacik 			ASSERT(0);
112675bfb9afSJosef Bacik 			err = -EINVAL;
112775bfb9afSJosef Bacik 			goto out;
112875bfb9afSJosef Bacik 		}
112975bfb9afSJosef Bacik 		if (cowonly != upper->cowonly) {
113075bfb9afSJosef Bacik 			ASSERT(0);
113175bfb9afSJosef Bacik 			err = -EINVAL;
113275bfb9afSJosef Bacik 			goto out;
113375bfb9afSJosef Bacik 		}
113475bfb9afSJosef Bacik 
11353fd0a558SYan, Zheng 		if (!cowonly) {
11365d4f98a2SYan Zheng 			rb_node = tree_insert(&cache->rb_root, upper->bytenr,
11375d4f98a2SYan Zheng 					      &upper->rb_node);
113843c04fb1SJeff Mahoney 			if (rb_node)
113943c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
114043c04fb1SJeff Mahoney 						   upper->bytenr);
11413fd0a558SYan, Zheng 		}
11425d4f98a2SYan Zheng 
11435d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &upper->lower);
11445d4f98a2SYan Zheng 
11455d4f98a2SYan Zheng 		list_for_each_entry(edge, &upper->upper, list[LOWER])
11465d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
11475d4f98a2SYan Zheng 	}
11483fd0a558SYan, Zheng 	/*
11493fd0a558SYan, Zheng 	 * process useless backref nodes. backref nodes for tree leaves
11503fd0a558SYan, Zheng 	 * are deleted from the cache. backref nodes for upper level
11513fd0a558SYan, Zheng 	 * tree blocks are left in the cache to avoid unnecessary backref
11523fd0a558SYan, Zheng 	 * lookup.
11533fd0a558SYan, Zheng 	 */
11543fd0a558SYan, Zheng 	while (!list_empty(&useless)) {
11553fd0a558SYan, Zheng 		upper = list_entry(useless.next, struct backref_node, list);
11563fd0a558SYan, Zheng 		list_del_init(&upper->list);
115775bfb9afSJosef Bacik 		ASSERT(list_empty(&upper->upper));
11583fd0a558SYan, Zheng 		if (upper == node)
11593fd0a558SYan, Zheng 			node = NULL;
11603fd0a558SYan, Zheng 		if (upper->lowest) {
11613fd0a558SYan, Zheng 			list_del_init(&upper->lower);
11623fd0a558SYan, Zheng 			upper->lowest = 0;
11633fd0a558SYan, Zheng 		}
11643fd0a558SYan, Zheng 		while (!list_empty(&upper->lower)) {
11653fd0a558SYan, Zheng 			edge = list_entry(upper->lower.next,
11663fd0a558SYan, Zheng 					  struct backref_edge, list[UPPER]);
11673fd0a558SYan, Zheng 			list_del(&edge->list[UPPER]);
11683fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
11693fd0a558SYan, Zheng 			lower = edge->node[LOWER];
11703fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
11713fd0a558SYan, Zheng 
11723fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
11733fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
11743fd0a558SYan, Zheng 		}
11753fd0a558SYan, Zheng 		__mark_block_processed(rc, upper);
11763fd0a558SYan, Zheng 		if (upper->level > 0) {
11773fd0a558SYan, Zheng 			list_add(&upper->list, &cache->detached);
11783fd0a558SYan, Zheng 			upper->detached = 1;
11793fd0a558SYan, Zheng 		} else {
11803fd0a558SYan, Zheng 			rb_erase(&upper->rb_node, &cache->rb_root);
11813fd0a558SYan, Zheng 			free_backref_node(cache, upper);
11823fd0a558SYan, Zheng 		}
11833fd0a558SYan, Zheng 	}
11845d4f98a2SYan Zheng out:
11855d4f98a2SYan Zheng 	btrfs_free_path(path1);
11865d4f98a2SYan Zheng 	btrfs_free_path(path2);
11875d4f98a2SYan Zheng 	if (err) {
11883fd0a558SYan, Zheng 		while (!list_empty(&useless)) {
11893fd0a558SYan, Zheng 			lower = list_entry(useless.next,
119075bfb9afSJosef Bacik 					   struct backref_node, list);
119175bfb9afSJosef Bacik 			list_del_init(&lower->list);
11923fd0a558SYan, Zheng 		}
119375bfb9afSJosef Bacik 		while (!list_empty(&list)) {
119475bfb9afSJosef Bacik 			edge = list_first_entry(&list, struct backref_edge,
119575bfb9afSJosef Bacik 						list[UPPER]);
119675bfb9afSJosef Bacik 			list_del(&edge->list[UPPER]);
11973fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
119875bfb9afSJosef Bacik 			lower = edge->node[LOWER];
11995d4f98a2SYan Zheng 			upper = edge->node[UPPER];
12003fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
120175bfb9afSJosef Bacik 
120275bfb9afSJosef Bacik 			/*
120375bfb9afSJosef Bacik 			 * Lower is no longer linked to any upper backref nodes
120475bfb9afSJosef Bacik 			 * and isn't in the cache, we can free it ourselves.
120575bfb9afSJosef Bacik 			 */
120675bfb9afSJosef Bacik 			if (list_empty(&lower->upper) &&
120775bfb9afSJosef Bacik 			    RB_EMPTY_NODE(&lower->rb_node))
120875bfb9afSJosef Bacik 				list_add(&lower->list, &useless);
120975bfb9afSJosef Bacik 
121075bfb9afSJosef Bacik 			if (!RB_EMPTY_NODE(&upper->rb_node))
121175bfb9afSJosef Bacik 				continue;
121275bfb9afSJosef Bacik 
121301327610SNicholas D Steeves 			/* Add this guy's upper edges to the list to process */
121475bfb9afSJosef Bacik 			list_for_each_entry(edge, &upper->upper, list[LOWER])
121575bfb9afSJosef Bacik 				list_add_tail(&edge->list[UPPER], &list);
121675bfb9afSJosef Bacik 			if (list_empty(&upper->upper))
121775bfb9afSJosef Bacik 				list_add(&upper->list, &useless);
121875bfb9afSJosef Bacik 		}
121975bfb9afSJosef Bacik 
122075bfb9afSJosef Bacik 		while (!list_empty(&useless)) {
122175bfb9afSJosef Bacik 			lower = list_entry(useless.next,
122275bfb9afSJosef Bacik 					   struct backref_node, list);
122375bfb9afSJosef Bacik 			list_del_init(&lower->list);
12240fd8c3daSLiu Bo 			if (lower == node)
12250fd8c3daSLiu Bo 				node = NULL;
122675bfb9afSJosef Bacik 			free_backref_node(cache, lower);
12275d4f98a2SYan Zheng 		}
12280fd8c3daSLiu Bo 
12298e19c973SJosef Bacik 		remove_backref_node(cache, node);
12305d4f98a2SYan Zheng 		return ERR_PTR(err);
12315d4f98a2SYan Zheng 	}
123275bfb9afSJosef Bacik 	ASSERT(!node || !node->detached);
12335d4f98a2SYan Zheng 	return node;
12345d4f98a2SYan Zheng }
12355d4f98a2SYan Zheng 
12365d4f98a2SYan Zheng /*
12373fd0a558SYan, Zheng  * helper to add backref node for the newly created snapshot.
12383fd0a558SYan, Zheng  * the backref node is created by cloning backref node that
12393fd0a558SYan, Zheng  * corresponds to root of source tree
12403fd0a558SYan, Zheng  */
12413fd0a558SYan, Zheng static int clone_backref_node(struct btrfs_trans_handle *trans,
12423fd0a558SYan, Zheng 			      struct reloc_control *rc,
12433fd0a558SYan, Zheng 			      struct btrfs_root *src,
12443fd0a558SYan, Zheng 			      struct btrfs_root *dest)
12453fd0a558SYan, Zheng {
12463fd0a558SYan, Zheng 	struct btrfs_root *reloc_root = src->reloc_root;
12473fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
12483fd0a558SYan, Zheng 	struct backref_node *node = NULL;
12493fd0a558SYan, Zheng 	struct backref_node *new_node;
12503fd0a558SYan, Zheng 	struct backref_edge *edge;
12513fd0a558SYan, Zheng 	struct backref_edge *new_edge;
12523fd0a558SYan, Zheng 	struct rb_node *rb_node;
12533fd0a558SYan, Zheng 
12543fd0a558SYan, Zheng 	if (cache->last_trans > 0)
12553fd0a558SYan, Zheng 		update_backref_cache(trans, cache);
12563fd0a558SYan, Zheng 
12573fd0a558SYan, Zheng 	rb_node = tree_search(&cache->rb_root, src->commit_root->start);
12583fd0a558SYan, Zheng 	if (rb_node) {
12593fd0a558SYan, Zheng 		node = rb_entry(rb_node, struct backref_node, rb_node);
12603fd0a558SYan, Zheng 		if (node->detached)
12613fd0a558SYan, Zheng 			node = NULL;
12623fd0a558SYan, Zheng 		else
12633fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr != reloc_root->node->start);
12643fd0a558SYan, Zheng 	}
12653fd0a558SYan, Zheng 
12663fd0a558SYan, Zheng 	if (!node) {
12673fd0a558SYan, Zheng 		rb_node = tree_search(&cache->rb_root,
12683fd0a558SYan, Zheng 				      reloc_root->commit_root->start);
12693fd0a558SYan, Zheng 		if (rb_node) {
12703fd0a558SYan, Zheng 			node = rb_entry(rb_node, struct backref_node,
12713fd0a558SYan, Zheng 					rb_node);
12723fd0a558SYan, Zheng 			BUG_ON(node->detached);
12733fd0a558SYan, Zheng 		}
12743fd0a558SYan, Zheng 	}
12753fd0a558SYan, Zheng 
12763fd0a558SYan, Zheng 	if (!node)
12773fd0a558SYan, Zheng 		return 0;
12783fd0a558SYan, Zheng 
12793fd0a558SYan, Zheng 	new_node = alloc_backref_node(cache);
12803fd0a558SYan, Zheng 	if (!new_node)
12813fd0a558SYan, Zheng 		return -ENOMEM;
12823fd0a558SYan, Zheng 
12833fd0a558SYan, Zheng 	new_node->bytenr = dest->node->start;
12843fd0a558SYan, Zheng 	new_node->level = node->level;
12853fd0a558SYan, Zheng 	new_node->lowest = node->lowest;
12866848ad64SYan, Zheng 	new_node->checked = 1;
128700246528SJosef Bacik 	new_node->root = btrfs_grab_root(dest);
12880b530bc5SJosef Bacik 	ASSERT(new_node->root);
12893fd0a558SYan, Zheng 
12903fd0a558SYan, Zheng 	if (!node->lowest) {
12913fd0a558SYan, Zheng 		list_for_each_entry(edge, &node->lower, list[UPPER]) {
12923fd0a558SYan, Zheng 			new_edge = alloc_backref_edge(cache);
12933fd0a558SYan, Zheng 			if (!new_edge)
12943fd0a558SYan, Zheng 				goto fail;
12953fd0a558SYan, Zheng 
12963fd0a558SYan, Zheng 			new_edge->node[UPPER] = new_node;
12973fd0a558SYan, Zheng 			new_edge->node[LOWER] = edge->node[LOWER];
12983fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[UPPER],
12993fd0a558SYan, Zheng 				      &new_node->lower);
13003fd0a558SYan, Zheng 		}
130176b9e23dSMiao Xie 	} else {
130276b9e23dSMiao Xie 		list_add_tail(&new_node->lower, &cache->leaves);
13033fd0a558SYan, Zheng 	}
13043fd0a558SYan, Zheng 
13053fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
13063fd0a558SYan, Zheng 			      &new_node->rb_node);
130743c04fb1SJeff Mahoney 	if (rb_node)
130843c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
13093fd0a558SYan, Zheng 
13103fd0a558SYan, Zheng 	if (!new_node->lowest) {
13113fd0a558SYan, Zheng 		list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
13123fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[LOWER],
13133fd0a558SYan, Zheng 				      &new_edge->node[LOWER]->upper);
13143fd0a558SYan, Zheng 		}
13153fd0a558SYan, Zheng 	}
13163fd0a558SYan, Zheng 	return 0;
13173fd0a558SYan, Zheng fail:
13183fd0a558SYan, Zheng 	while (!list_empty(&new_node->lower)) {
13193fd0a558SYan, Zheng 		new_edge = list_entry(new_node->lower.next,
13203fd0a558SYan, Zheng 				      struct backref_edge, list[UPPER]);
13213fd0a558SYan, Zheng 		list_del(&new_edge->list[UPPER]);
13223fd0a558SYan, Zheng 		free_backref_edge(cache, new_edge);
13233fd0a558SYan, Zheng 	}
13243fd0a558SYan, Zheng 	free_backref_node(cache, new_node);
13253fd0a558SYan, Zheng 	return -ENOMEM;
13263fd0a558SYan, Zheng }
13273fd0a558SYan, Zheng 
13283fd0a558SYan, Zheng /*
13295d4f98a2SYan Zheng  * helper to add 'address of tree root -> reloc tree' mapping
13305d4f98a2SYan Zheng  */
1331ffd7b339SJeff Mahoney static int __must_check __add_reloc_root(struct btrfs_root *root)
13325d4f98a2SYan Zheng {
13330b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13345d4f98a2SYan Zheng 	struct rb_node *rb_node;
13355d4f98a2SYan Zheng 	struct mapping_node *node;
13360b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
13375d4f98a2SYan Zheng 
13385d4f98a2SYan Zheng 	node = kmalloc(sizeof(*node), GFP_NOFS);
1339ffd7b339SJeff Mahoney 	if (!node)
1340ffd7b339SJeff Mahoney 		return -ENOMEM;
13415d4f98a2SYan Zheng 
13425d4f98a2SYan Zheng 	node->bytenr = root->node->start;
13435d4f98a2SYan Zheng 	node->data = root;
13445d4f98a2SYan Zheng 
13455d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
13465d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
13475d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
13485d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
1349ffd7b339SJeff Mahoney 	if (rb_node) {
13500b246afaSJeff Mahoney 		btrfs_panic(fs_info, -EEXIST,
13515d163e0eSJeff Mahoney 			    "Duplicate root found for start=%llu while inserting into relocation tree",
13525d163e0eSJeff Mahoney 			    node->bytenr);
1353ffd7b339SJeff Mahoney 	}
13545d4f98a2SYan Zheng 
13555d4f98a2SYan Zheng 	list_add_tail(&root->root_list, &rc->reloc_roots);
13565d4f98a2SYan Zheng 	return 0;
13575d4f98a2SYan Zheng }
13585d4f98a2SYan Zheng 
13595d4f98a2SYan Zheng /*
1360c974c464SWang Shilong  * helper to delete the 'address of tree root -> reloc tree'
13615d4f98a2SYan Zheng  * mapping
13625d4f98a2SYan Zheng  */
1363c974c464SWang Shilong static void __del_reloc_root(struct btrfs_root *root)
13645d4f98a2SYan Zheng {
13650b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13665d4f98a2SYan Zheng 	struct rb_node *rb_node;
13675d4f98a2SYan Zheng 	struct mapping_node *node = NULL;
13680b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
1369f44deb74SJosef Bacik 	bool put_ref = false;
13705d4f98a2SYan Zheng 
137165c6e82bSQu Wenruo 	if (rc && root->node) {
13725d4f98a2SYan Zheng 		spin_lock(&rc->reloc_root_tree.lock);
13735d4f98a2SYan Zheng 		rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1374c974c464SWang Shilong 				      root->node->start);
1375c974c464SWang Shilong 		if (rb_node) {
1376c974c464SWang Shilong 			node = rb_entry(rb_node, struct mapping_node, rb_node);
1377c974c464SWang Shilong 			rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1378c974c464SWang Shilong 		}
1379c974c464SWang Shilong 		spin_unlock(&rc->reloc_root_tree.lock);
1380c974c464SWang Shilong 		if (!node)
1381c974c464SWang Shilong 			return;
1382c974c464SWang Shilong 		BUG_ON((struct btrfs_root *)node->data != root);
1383389305b2SQu Wenruo 	}
1384c974c464SWang Shilong 
1385f44deb74SJosef Bacik 	/*
1386f44deb74SJosef Bacik 	 * We only put the reloc root here if it's on the list.  There's a lot
1387f44deb74SJosef Bacik 	 * of places where the pattern is to splice the rc->reloc_roots, process
1388f44deb74SJosef Bacik 	 * the reloc roots, and then add the reloc root back onto
1389f44deb74SJosef Bacik 	 * rc->reloc_roots.  If we call __del_reloc_root while it's off of the
1390f44deb74SJosef Bacik 	 * list we don't want the reference being dropped, because the guy
1391f44deb74SJosef Bacik 	 * messing with the list is in charge of the reference.
1392f44deb74SJosef Bacik 	 */
13930b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1394f44deb74SJosef Bacik 	if (!list_empty(&root->root_list)) {
1395f44deb74SJosef Bacik 		put_ref = true;
1396c974c464SWang Shilong 		list_del_init(&root->root_list);
1397f44deb74SJosef Bacik 	}
13980b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
1399f44deb74SJosef Bacik 	if (put_ref)
1400f44deb74SJosef Bacik 		btrfs_put_root(root);
1401c974c464SWang Shilong 	kfree(node);
1402c974c464SWang Shilong }
1403c974c464SWang Shilong 
1404c974c464SWang Shilong /*
1405c974c464SWang Shilong  * helper to update the 'address of tree root -> reloc tree'
1406c974c464SWang Shilong  * mapping
1407c974c464SWang Shilong  */
1408c974c464SWang Shilong static int __update_reloc_root(struct btrfs_root *root, u64 new_bytenr)
1409c974c464SWang Shilong {
14100b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
1411c974c464SWang Shilong 	struct rb_node *rb_node;
1412c974c464SWang Shilong 	struct mapping_node *node = NULL;
14130b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
1414c974c464SWang Shilong 
1415c974c464SWang Shilong 	spin_lock(&rc->reloc_root_tree.lock);
1416c974c464SWang Shilong 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1417c974c464SWang Shilong 			      root->node->start);
14185d4f98a2SYan Zheng 	if (rb_node) {
14195d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
14205d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
14215d4f98a2SYan Zheng 	}
14225d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
14235d4f98a2SYan Zheng 
14248f71f3e0SLiu Bo 	if (!node)
14258f71f3e0SLiu Bo 		return 0;
14265d4f98a2SYan Zheng 	BUG_ON((struct btrfs_root *)node->data != root);
14275d4f98a2SYan Zheng 
14285d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
1429c974c464SWang Shilong 	node->bytenr = new_bytenr;
14305d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
14315d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
14325d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
143343c04fb1SJeff Mahoney 	if (rb_node)
143443c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, node->bytenr);
14355d4f98a2SYan Zheng 	return 0;
14365d4f98a2SYan Zheng }
14375d4f98a2SYan Zheng 
14383fd0a558SYan, Zheng static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
14393fd0a558SYan, Zheng 					struct btrfs_root *root, u64 objectid)
14405d4f98a2SYan Zheng {
14410b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
14425d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
14435d4f98a2SYan Zheng 	struct extent_buffer *eb;
14445d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
14455d4f98a2SYan Zheng 	struct btrfs_key root_key;
14465d4f98a2SYan Zheng 	int ret;
14475d4f98a2SYan Zheng 
14485d4f98a2SYan Zheng 	root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
14495d4f98a2SYan Zheng 	BUG_ON(!root_item);
14505d4f98a2SYan Zheng 
14515d4f98a2SYan Zheng 	root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
14525d4f98a2SYan Zheng 	root_key.type = BTRFS_ROOT_ITEM_KEY;
14533fd0a558SYan, Zheng 	root_key.offset = objectid;
14545d4f98a2SYan Zheng 
14553fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
1456054570a1SFilipe Manana 		u64 commit_root_gen;
1457054570a1SFilipe Manana 
14583fd0a558SYan, Zheng 		/* called by btrfs_init_reloc_root */
14595d4f98a2SYan Zheng 		ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
14605d4f98a2SYan Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
14615d4f98a2SYan Zheng 		BUG_ON(ret);
1462054570a1SFilipe Manana 		/*
1463054570a1SFilipe Manana 		 * Set the last_snapshot field to the generation of the commit
1464054570a1SFilipe Manana 		 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
1465054570a1SFilipe Manana 		 * correctly (returns true) when the relocation root is created
1466054570a1SFilipe Manana 		 * either inside the critical section of a transaction commit
1467054570a1SFilipe Manana 		 * (through transaction.c:qgroup_account_snapshot()) and when
1468054570a1SFilipe Manana 		 * it's created before the transaction commit is started.
1469054570a1SFilipe Manana 		 */
1470054570a1SFilipe Manana 		commit_root_gen = btrfs_header_generation(root->commit_root);
1471054570a1SFilipe Manana 		btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
14723fd0a558SYan, Zheng 	} else {
14733fd0a558SYan, Zheng 		/*
14743fd0a558SYan, Zheng 		 * called by btrfs_reloc_post_snapshot_hook.
14753fd0a558SYan, Zheng 		 * the source tree is a reloc tree, all tree blocks
14763fd0a558SYan, Zheng 		 * modified after it was created have RELOC flag
14773fd0a558SYan, Zheng 		 * set in their headers. so it's OK to not update
14783fd0a558SYan, Zheng 		 * the 'last_snapshot'.
14793fd0a558SYan, Zheng 		 */
14803fd0a558SYan, Zheng 		ret = btrfs_copy_root(trans, root, root->node, &eb,
14813fd0a558SYan, Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
14823fd0a558SYan, Zheng 		BUG_ON(ret);
14833fd0a558SYan, Zheng 	}
14843fd0a558SYan, Zheng 
14855d4f98a2SYan Zheng 	memcpy(root_item, &root->root_item, sizeof(*root_item));
14865d4f98a2SYan Zheng 	btrfs_set_root_bytenr(root_item, eb->start);
14875d4f98a2SYan Zheng 	btrfs_set_root_level(root_item, btrfs_header_level(eb));
14885d4f98a2SYan Zheng 	btrfs_set_root_generation(root_item, trans->transid);
14893fd0a558SYan, Zheng 
14903fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
14913fd0a558SYan, Zheng 		btrfs_set_root_refs(root_item, 0);
14923fd0a558SYan, Zheng 		memset(&root_item->drop_progress, 0,
14933fd0a558SYan, Zheng 		       sizeof(struct btrfs_disk_key));
14945d4f98a2SYan Zheng 		root_item->drop_level = 0;
14953fd0a558SYan, Zheng 	}
14965d4f98a2SYan Zheng 
14975d4f98a2SYan Zheng 	btrfs_tree_unlock(eb);
14985d4f98a2SYan Zheng 	free_extent_buffer(eb);
14995d4f98a2SYan Zheng 
15000b246afaSJeff Mahoney 	ret = btrfs_insert_root(trans, fs_info->tree_root,
15015d4f98a2SYan Zheng 				&root_key, root_item);
15025d4f98a2SYan Zheng 	BUG_ON(ret);
15035d4f98a2SYan Zheng 	kfree(root_item);
15045d4f98a2SYan Zheng 
15053dbf1738SJosef Bacik 	reloc_root = btrfs_read_tree_root(fs_info->tree_root, &root_key);
15065d4f98a2SYan Zheng 	BUG_ON(IS_ERR(reloc_root));
15073dbf1738SJosef Bacik 	set_bit(BTRFS_ROOT_REF_COWS, &reloc_root->state);
15085d4f98a2SYan Zheng 	reloc_root->last_trans = trans->transid;
15093fd0a558SYan, Zheng 	return reloc_root;
15103fd0a558SYan, Zheng }
15113fd0a558SYan, Zheng 
15123fd0a558SYan, Zheng /*
15133fd0a558SYan, Zheng  * create reloc tree for a given fs tree. reloc tree is just a
15143fd0a558SYan, Zheng  * snapshot of the fs tree with special root objectid.
1515f44deb74SJosef Bacik  *
1516f44deb74SJosef Bacik  * The reloc_root comes out of here with two references, one for
1517f44deb74SJosef Bacik  * root->reloc_root, and another for being on the rc->reloc_roots list.
15183fd0a558SYan, Zheng  */
15193fd0a558SYan, Zheng int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
15203fd0a558SYan, Zheng 			  struct btrfs_root *root)
15213fd0a558SYan, Zheng {
15220b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
15233fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
15240b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
152520dd2cbfSMiao Xie 	struct btrfs_block_rsv *rsv;
15263fd0a558SYan, Zheng 	int clear_rsv = 0;
1527ffd7b339SJeff Mahoney 	int ret;
15283fd0a558SYan, Zheng 
15292abc726aSJosef Bacik 	if (!rc || !rc->create_reloc_tree ||
15302abc726aSJosef Bacik 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
15312abc726aSJosef Bacik 		return 0;
15322abc726aSJosef Bacik 
15331fac4a54SQu Wenruo 	/*
15341fac4a54SQu Wenruo 	 * The subvolume has reloc tree but the swap is finished, no need to
15351fac4a54SQu Wenruo 	 * create/update the dead reloc tree
15361fac4a54SQu Wenruo 	 */
15376282675eSQu Wenruo 	if (reloc_root_is_dead(root))
15381fac4a54SQu Wenruo 		return 0;
15391fac4a54SQu Wenruo 
15403fd0a558SYan, Zheng 	if (root->reloc_root) {
15413fd0a558SYan, Zheng 		reloc_root = root->reloc_root;
15423fd0a558SYan, Zheng 		reloc_root->last_trans = trans->transid;
15433fd0a558SYan, Zheng 		return 0;
15443fd0a558SYan, Zheng 	}
15453fd0a558SYan, Zheng 
154620dd2cbfSMiao Xie 	if (!trans->reloc_reserved) {
154720dd2cbfSMiao Xie 		rsv = trans->block_rsv;
15483fd0a558SYan, Zheng 		trans->block_rsv = rc->block_rsv;
15493fd0a558SYan, Zheng 		clear_rsv = 1;
15503fd0a558SYan, Zheng 	}
15513fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
15523fd0a558SYan, Zheng 	if (clear_rsv)
155320dd2cbfSMiao Xie 		trans->block_rsv = rsv;
15545d4f98a2SYan Zheng 
1555ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
1556ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
1557f44deb74SJosef Bacik 	root->reloc_root = btrfs_grab_root(reloc_root);
15585d4f98a2SYan Zheng 	return 0;
15595d4f98a2SYan Zheng }
15605d4f98a2SYan Zheng 
15615d4f98a2SYan Zheng /*
15625d4f98a2SYan Zheng  * update root item of reloc tree
15635d4f98a2SYan Zheng  */
15645d4f98a2SYan Zheng int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
15655d4f98a2SYan Zheng 			    struct btrfs_root *root)
15665d4f98a2SYan Zheng {
15670b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
15685d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
15695d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
15705d4f98a2SYan Zheng 	int ret;
15715d4f98a2SYan Zheng 
15726282675eSQu Wenruo 	if (!have_reloc_root(root))
15737585717fSChris Mason 		goto out;
15745d4f98a2SYan Zheng 
15755d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
15765d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
15775d4f98a2SYan Zheng 
1578f44deb74SJosef Bacik 	/*
1579f44deb74SJosef Bacik 	 * We are probably ok here, but __del_reloc_root() will drop its ref of
1580f44deb74SJosef Bacik 	 * the root.  We have the ref for root->reloc_root, but just in case
1581f44deb74SJosef Bacik 	 * hold it while we update the reloc root.
1582f44deb74SJosef Bacik 	 */
1583f44deb74SJosef Bacik 	btrfs_grab_root(reloc_root);
1584f44deb74SJosef Bacik 
1585d2311e69SQu Wenruo 	/* root->reloc_root will stay until current relocation finished */
15860b246afaSJeff Mahoney 	if (fs_info->reloc_ctl->merge_reloc_tree &&
15873fd0a558SYan, Zheng 	    btrfs_root_refs(root_item) == 0) {
1588d2311e69SQu Wenruo 		set_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
15896282675eSQu Wenruo 		/*
15906282675eSQu Wenruo 		 * Mark the tree as dead before we change reloc_root so
15916282675eSQu Wenruo 		 * have_reloc_root will not touch it from now on.
15926282675eSQu Wenruo 		 */
15936282675eSQu Wenruo 		smp_wmb();
1594c974c464SWang Shilong 		__del_reloc_root(reloc_root);
15955d4f98a2SYan Zheng 	}
15965d4f98a2SYan Zheng 
15975d4f98a2SYan Zheng 	if (reloc_root->commit_root != reloc_root->node) {
15985d4f98a2SYan Zheng 		btrfs_set_root_node(root_item, reloc_root->node);
15995d4f98a2SYan Zheng 		free_extent_buffer(reloc_root->commit_root);
16005d4f98a2SYan Zheng 		reloc_root->commit_root = btrfs_root_node(reloc_root);
16015d4f98a2SYan Zheng 	}
16025d4f98a2SYan Zheng 
16030b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
16045d4f98a2SYan Zheng 				&reloc_root->root_key, root_item);
16055d4f98a2SYan Zheng 	BUG_ON(ret);
1606f44deb74SJosef Bacik 	btrfs_put_root(reloc_root);
16077585717fSChris Mason out:
16085d4f98a2SYan Zheng 	return 0;
16095d4f98a2SYan Zheng }
16105d4f98a2SYan Zheng 
16115d4f98a2SYan Zheng /*
16125d4f98a2SYan Zheng  * helper to find first cached inode with inode number >= objectid
16135d4f98a2SYan Zheng  * in a subvolume
16145d4f98a2SYan Zheng  */
16155d4f98a2SYan Zheng static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
16165d4f98a2SYan Zheng {
16175d4f98a2SYan Zheng 	struct rb_node *node;
16185d4f98a2SYan Zheng 	struct rb_node *prev;
16195d4f98a2SYan Zheng 	struct btrfs_inode *entry;
16205d4f98a2SYan Zheng 	struct inode *inode;
16215d4f98a2SYan Zheng 
16225d4f98a2SYan Zheng 	spin_lock(&root->inode_lock);
16235d4f98a2SYan Zheng again:
16245d4f98a2SYan Zheng 	node = root->inode_tree.rb_node;
16255d4f98a2SYan Zheng 	prev = NULL;
16265d4f98a2SYan Zheng 	while (node) {
16275d4f98a2SYan Zheng 		prev = node;
16285d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
16295d4f98a2SYan Zheng 
16304a0cc7caSNikolay Borisov 		if (objectid < btrfs_ino(entry))
16315d4f98a2SYan Zheng 			node = node->rb_left;
16324a0cc7caSNikolay Borisov 		else if (objectid > btrfs_ino(entry))
16335d4f98a2SYan Zheng 			node = node->rb_right;
16345d4f98a2SYan Zheng 		else
16355d4f98a2SYan Zheng 			break;
16365d4f98a2SYan Zheng 	}
16375d4f98a2SYan Zheng 	if (!node) {
16385d4f98a2SYan Zheng 		while (prev) {
16395d4f98a2SYan Zheng 			entry = rb_entry(prev, struct btrfs_inode, rb_node);
16404a0cc7caSNikolay Borisov 			if (objectid <= btrfs_ino(entry)) {
16415d4f98a2SYan Zheng 				node = prev;
16425d4f98a2SYan Zheng 				break;
16435d4f98a2SYan Zheng 			}
16445d4f98a2SYan Zheng 			prev = rb_next(prev);
16455d4f98a2SYan Zheng 		}
16465d4f98a2SYan Zheng 	}
16475d4f98a2SYan Zheng 	while (node) {
16485d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
16495d4f98a2SYan Zheng 		inode = igrab(&entry->vfs_inode);
16505d4f98a2SYan Zheng 		if (inode) {
16515d4f98a2SYan Zheng 			spin_unlock(&root->inode_lock);
16525d4f98a2SYan Zheng 			return inode;
16535d4f98a2SYan Zheng 		}
16545d4f98a2SYan Zheng 
16554a0cc7caSNikolay Borisov 		objectid = btrfs_ino(entry) + 1;
16565d4f98a2SYan Zheng 		if (cond_resched_lock(&root->inode_lock))
16575d4f98a2SYan Zheng 			goto again;
16585d4f98a2SYan Zheng 
16595d4f98a2SYan Zheng 		node = rb_next(node);
16605d4f98a2SYan Zheng 	}
16615d4f98a2SYan Zheng 	spin_unlock(&root->inode_lock);
16625d4f98a2SYan Zheng 	return NULL;
16635d4f98a2SYan Zheng }
16645d4f98a2SYan Zheng 
166532da5386SDavid Sterba static int in_block_group(u64 bytenr, struct btrfs_block_group *block_group)
16665d4f98a2SYan Zheng {
1667b3470b5dSDavid Sterba 	if (bytenr >= block_group->start &&
1668b3470b5dSDavid Sterba 	    bytenr < block_group->start + block_group->length)
16695d4f98a2SYan Zheng 		return 1;
16705d4f98a2SYan Zheng 	return 0;
16715d4f98a2SYan Zheng }
16725d4f98a2SYan Zheng 
16735d4f98a2SYan Zheng /*
16745d4f98a2SYan Zheng  * get new location of data
16755d4f98a2SYan Zheng  */
16765d4f98a2SYan Zheng static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
16775d4f98a2SYan Zheng 			    u64 bytenr, u64 num_bytes)
16785d4f98a2SYan Zheng {
16795d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
16805d4f98a2SYan Zheng 	struct btrfs_path *path;
16815d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
16825d4f98a2SYan Zheng 	struct extent_buffer *leaf;
16835d4f98a2SYan Zheng 	int ret;
16845d4f98a2SYan Zheng 
16855d4f98a2SYan Zheng 	path = btrfs_alloc_path();
16865d4f98a2SYan Zheng 	if (!path)
16875d4f98a2SYan Zheng 		return -ENOMEM;
16885d4f98a2SYan Zheng 
16895d4f98a2SYan Zheng 	bytenr -= BTRFS_I(reloc_inode)->index_cnt;
1690f85b7379SDavid Sterba 	ret = btrfs_lookup_file_extent(NULL, root, path,
1691f85b7379SDavid Sterba 			btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
16925d4f98a2SYan Zheng 	if (ret < 0)
16935d4f98a2SYan Zheng 		goto out;
16945d4f98a2SYan Zheng 	if (ret > 0) {
16955d4f98a2SYan Zheng 		ret = -ENOENT;
16965d4f98a2SYan Zheng 		goto out;
16975d4f98a2SYan Zheng 	}
16985d4f98a2SYan Zheng 
16995d4f98a2SYan Zheng 	leaf = path->nodes[0];
17005d4f98a2SYan Zheng 	fi = btrfs_item_ptr(leaf, path->slots[0],
17015d4f98a2SYan Zheng 			    struct btrfs_file_extent_item);
17025d4f98a2SYan Zheng 
17035d4f98a2SYan Zheng 	BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
17045d4f98a2SYan Zheng 	       btrfs_file_extent_compression(leaf, fi) ||
17055d4f98a2SYan Zheng 	       btrfs_file_extent_encryption(leaf, fi) ||
17065d4f98a2SYan Zheng 	       btrfs_file_extent_other_encoding(leaf, fi));
17075d4f98a2SYan Zheng 
17085d4f98a2SYan Zheng 	if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
170983d4cfd4SJosef Bacik 		ret = -EINVAL;
17105d4f98a2SYan Zheng 		goto out;
17115d4f98a2SYan Zheng 	}
17125d4f98a2SYan Zheng 
17135d4f98a2SYan Zheng 	*new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
17145d4f98a2SYan Zheng 	ret = 0;
17155d4f98a2SYan Zheng out:
17165d4f98a2SYan Zheng 	btrfs_free_path(path);
17175d4f98a2SYan Zheng 	return ret;
17185d4f98a2SYan Zheng }
17195d4f98a2SYan Zheng 
17205d4f98a2SYan Zheng /*
17215d4f98a2SYan Zheng  * update file extent items in the tree leaf to point to
17225d4f98a2SYan Zheng  * the new locations.
17235d4f98a2SYan Zheng  */
17243fd0a558SYan, Zheng static noinline_for_stack
17253fd0a558SYan, Zheng int replace_file_extents(struct btrfs_trans_handle *trans,
17265d4f98a2SYan Zheng 			 struct reloc_control *rc,
17275d4f98a2SYan Zheng 			 struct btrfs_root *root,
17283fd0a558SYan, Zheng 			 struct extent_buffer *leaf)
17295d4f98a2SYan Zheng {
17300b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
17315d4f98a2SYan Zheng 	struct btrfs_key key;
17325d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
17335d4f98a2SYan Zheng 	struct inode *inode = NULL;
17345d4f98a2SYan Zheng 	u64 parent;
17355d4f98a2SYan Zheng 	u64 bytenr;
17363fd0a558SYan, Zheng 	u64 new_bytenr = 0;
17375d4f98a2SYan Zheng 	u64 num_bytes;
17385d4f98a2SYan Zheng 	u64 end;
17395d4f98a2SYan Zheng 	u32 nritems;
17405d4f98a2SYan Zheng 	u32 i;
174183d4cfd4SJosef Bacik 	int ret = 0;
17425d4f98a2SYan Zheng 	int first = 1;
17435d4f98a2SYan Zheng 	int dirty = 0;
17445d4f98a2SYan Zheng 
17455d4f98a2SYan Zheng 	if (rc->stage != UPDATE_DATA_PTRS)
17465d4f98a2SYan Zheng 		return 0;
17475d4f98a2SYan Zheng 
17485d4f98a2SYan Zheng 	/* reloc trees always use full backref */
17495d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
17505d4f98a2SYan Zheng 		parent = leaf->start;
17515d4f98a2SYan Zheng 	else
17525d4f98a2SYan Zheng 		parent = 0;
17535d4f98a2SYan Zheng 
17545d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
17555d4f98a2SYan Zheng 	for (i = 0; i < nritems; i++) {
175682fa113fSQu Wenruo 		struct btrfs_ref ref = { 0 };
175782fa113fSQu Wenruo 
17585d4f98a2SYan Zheng 		cond_resched();
17595d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, i);
17605d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_DATA_KEY)
17615d4f98a2SYan Zheng 			continue;
17625d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
17635d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
17645d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
17655d4f98a2SYan Zheng 			continue;
17665d4f98a2SYan Zheng 		bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
17675d4f98a2SYan Zheng 		num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
17685d4f98a2SYan Zheng 		if (bytenr == 0)
17695d4f98a2SYan Zheng 			continue;
17705d4f98a2SYan Zheng 		if (!in_block_group(bytenr, rc->block_group))
17715d4f98a2SYan Zheng 			continue;
17725d4f98a2SYan Zheng 
17735d4f98a2SYan Zheng 		/*
17745d4f98a2SYan Zheng 		 * if we are modifying block in fs tree, wait for readpage
17755d4f98a2SYan Zheng 		 * to complete and drop the extent cache
17765d4f98a2SYan Zheng 		 */
17775d4f98a2SYan Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
17785d4f98a2SYan Zheng 			if (first) {
17795d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
17805d4f98a2SYan Zheng 				first = 0;
17814a0cc7caSNikolay Borisov 			} else if (inode && btrfs_ino(BTRFS_I(inode)) < key.objectid) {
17823fd0a558SYan, Zheng 				btrfs_add_delayed_iput(inode);
17835d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
17845d4f98a2SYan Zheng 			}
17854a0cc7caSNikolay Borisov 			if (inode && btrfs_ino(BTRFS_I(inode)) == key.objectid) {
17865d4f98a2SYan Zheng 				end = key.offset +
17875d4f98a2SYan Zheng 				      btrfs_file_extent_num_bytes(leaf, fi);
17885d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(key.offset,
17890b246afaSJeff Mahoney 						    fs_info->sectorsize));
17900b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
17915d4f98a2SYan Zheng 				end--;
17925d4f98a2SYan Zheng 				ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
1793d0082371SJeff Mahoney 						      key.offset, end);
17945d4f98a2SYan Zheng 				if (!ret)
17955d4f98a2SYan Zheng 					continue;
17965d4f98a2SYan Zheng 
1797dcdbc059SNikolay Borisov 				btrfs_drop_extent_cache(BTRFS_I(inode),
1798dcdbc059SNikolay Borisov 						key.offset,	end, 1);
17995d4f98a2SYan Zheng 				unlock_extent(&BTRFS_I(inode)->io_tree,
1800d0082371SJeff Mahoney 					      key.offset, end);
18015d4f98a2SYan Zheng 			}
18025d4f98a2SYan Zheng 		}
18035d4f98a2SYan Zheng 
18045d4f98a2SYan Zheng 		ret = get_new_location(rc->data_inode, &new_bytenr,
18055d4f98a2SYan Zheng 				       bytenr, num_bytes);
180683d4cfd4SJosef Bacik 		if (ret) {
180783d4cfd4SJosef Bacik 			/*
180883d4cfd4SJosef Bacik 			 * Don't have to abort since we've not changed anything
180983d4cfd4SJosef Bacik 			 * in the file extent yet.
181083d4cfd4SJosef Bacik 			 */
181183d4cfd4SJosef Bacik 			break;
18123fd0a558SYan, Zheng 		}
18135d4f98a2SYan Zheng 
18145d4f98a2SYan Zheng 		btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
18155d4f98a2SYan Zheng 		dirty = 1;
18165d4f98a2SYan Zheng 
18175d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
181882fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
181982fa113fSQu Wenruo 				       num_bytes, parent);
182082fa113fSQu Wenruo 		ref.real_root = root->root_key.objectid;
182182fa113fSQu Wenruo 		btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1822b06c4bf5SFilipe Manana 				    key.objectid, key.offset);
182382fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
182483d4cfd4SJosef Bacik 		if (ret) {
182566642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
182683d4cfd4SJosef Bacik 			break;
182783d4cfd4SJosef Bacik 		}
18285d4f98a2SYan Zheng 
1829ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1830ffd4bb2aSQu Wenruo 				       num_bytes, parent);
1831ffd4bb2aSQu Wenruo 		ref.real_root = root->root_key.objectid;
1832ffd4bb2aSQu Wenruo 		btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1833b06c4bf5SFilipe Manana 				    key.objectid, key.offset);
1834ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
183583d4cfd4SJosef Bacik 		if (ret) {
183666642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
183783d4cfd4SJosef Bacik 			break;
183883d4cfd4SJosef Bacik 		}
18395d4f98a2SYan Zheng 	}
18405d4f98a2SYan Zheng 	if (dirty)
18415d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(leaf);
18423fd0a558SYan, Zheng 	if (inode)
18433fd0a558SYan, Zheng 		btrfs_add_delayed_iput(inode);
184483d4cfd4SJosef Bacik 	return ret;
18455d4f98a2SYan Zheng }
18465d4f98a2SYan Zheng 
18475d4f98a2SYan Zheng static noinline_for_stack
18485d4f98a2SYan Zheng int memcmp_node_keys(struct extent_buffer *eb, int slot,
18495d4f98a2SYan Zheng 		     struct btrfs_path *path, int level)
18505d4f98a2SYan Zheng {
18515d4f98a2SYan Zheng 	struct btrfs_disk_key key1;
18525d4f98a2SYan Zheng 	struct btrfs_disk_key key2;
18535d4f98a2SYan Zheng 	btrfs_node_key(eb, &key1, slot);
18545d4f98a2SYan Zheng 	btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
18555d4f98a2SYan Zheng 	return memcmp(&key1, &key2, sizeof(key1));
18565d4f98a2SYan Zheng }
18575d4f98a2SYan Zheng 
18585d4f98a2SYan Zheng /*
18595d4f98a2SYan Zheng  * try to replace tree blocks in fs tree with the new blocks
18605d4f98a2SYan Zheng  * in reloc tree. tree blocks haven't been modified since the
18615d4f98a2SYan Zheng  * reloc tree was create can be replaced.
18625d4f98a2SYan Zheng  *
18635d4f98a2SYan Zheng  * if a block was replaced, level of the block + 1 is returned.
18645d4f98a2SYan Zheng  * if no block got replaced, 0 is returned. if there are other
18655d4f98a2SYan Zheng  * errors, a negative error number is returned.
18665d4f98a2SYan Zheng  */
18673fd0a558SYan, Zheng static noinline_for_stack
18683d0174f7SQu Wenruo int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
18695d4f98a2SYan Zheng 		 struct btrfs_root *dest, struct btrfs_root *src,
18705d4f98a2SYan Zheng 		 struct btrfs_path *path, struct btrfs_key *next_key,
18715d4f98a2SYan Zheng 		 int lowest_level, int max_level)
18725d4f98a2SYan Zheng {
18730b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = dest->fs_info;
18745d4f98a2SYan Zheng 	struct extent_buffer *eb;
18755d4f98a2SYan Zheng 	struct extent_buffer *parent;
187682fa113fSQu Wenruo 	struct btrfs_ref ref = { 0 };
18775d4f98a2SYan Zheng 	struct btrfs_key key;
18785d4f98a2SYan Zheng 	u64 old_bytenr;
18795d4f98a2SYan Zheng 	u64 new_bytenr;
18805d4f98a2SYan Zheng 	u64 old_ptr_gen;
18815d4f98a2SYan Zheng 	u64 new_ptr_gen;
18825d4f98a2SYan Zheng 	u64 last_snapshot;
18835d4f98a2SYan Zheng 	u32 blocksize;
18843fd0a558SYan, Zheng 	int cow = 0;
18855d4f98a2SYan Zheng 	int level;
18865d4f98a2SYan Zheng 	int ret;
18875d4f98a2SYan Zheng 	int slot;
18885d4f98a2SYan Zheng 
18895d4f98a2SYan Zheng 	BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
18905d4f98a2SYan Zheng 	BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
18915d4f98a2SYan Zheng 
18925d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&src->root_item);
18933fd0a558SYan, Zheng again:
18945d4f98a2SYan Zheng 	slot = path->slots[lowest_level];
18955d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
18965d4f98a2SYan Zheng 
18975d4f98a2SYan Zheng 	eb = btrfs_lock_root_node(dest);
18988bead258SDavid Sterba 	btrfs_set_lock_blocking_write(eb);
18995d4f98a2SYan Zheng 	level = btrfs_header_level(eb);
19005d4f98a2SYan Zheng 
19015d4f98a2SYan Zheng 	if (level < lowest_level) {
19025d4f98a2SYan Zheng 		btrfs_tree_unlock(eb);
19035d4f98a2SYan Zheng 		free_extent_buffer(eb);
19045d4f98a2SYan Zheng 		return 0;
19055d4f98a2SYan Zheng 	}
19065d4f98a2SYan Zheng 
19073fd0a558SYan, Zheng 	if (cow) {
19085d4f98a2SYan Zheng 		ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
19095d4f98a2SYan Zheng 		BUG_ON(ret);
19103fd0a558SYan, Zheng 	}
19118bead258SDavid Sterba 	btrfs_set_lock_blocking_write(eb);
19125d4f98a2SYan Zheng 
19135d4f98a2SYan Zheng 	if (next_key) {
19145d4f98a2SYan Zheng 		next_key->objectid = (u64)-1;
19155d4f98a2SYan Zheng 		next_key->type = (u8)-1;
19165d4f98a2SYan Zheng 		next_key->offset = (u64)-1;
19175d4f98a2SYan Zheng 	}
19185d4f98a2SYan Zheng 
19195d4f98a2SYan Zheng 	parent = eb;
19205d4f98a2SYan Zheng 	while (1) {
1921581c1760SQu Wenruo 		struct btrfs_key first_key;
1922581c1760SQu Wenruo 
19235d4f98a2SYan Zheng 		level = btrfs_header_level(parent);
19245d4f98a2SYan Zheng 		BUG_ON(level < lowest_level);
19255d4f98a2SYan Zheng 
19265d4f98a2SYan Zheng 		ret = btrfs_bin_search(parent, &key, level, &slot);
1927cbca7d59SFilipe Manana 		if (ret < 0)
1928cbca7d59SFilipe Manana 			break;
19295d4f98a2SYan Zheng 		if (ret && slot > 0)
19305d4f98a2SYan Zheng 			slot--;
19315d4f98a2SYan Zheng 
19325d4f98a2SYan Zheng 		if (next_key && slot + 1 < btrfs_header_nritems(parent))
19335d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(parent, next_key, slot + 1);
19345d4f98a2SYan Zheng 
19355d4f98a2SYan Zheng 		old_bytenr = btrfs_node_blockptr(parent, slot);
19360b246afaSJeff Mahoney 		blocksize = fs_info->nodesize;
19375d4f98a2SYan Zheng 		old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
193817515f1bSQu Wenruo 		btrfs_node_key_to_cpu(parent, &first_key, slot);
19395d4f98a2SYan Zheng 
19405d4f98a2SYan Zheng 		if (level <= max_level) {
19415d4f98a2SYan Zheng 			eb = path->nodes[level];
19425d4f98a2SYan Zheng 			new_bytenr = btrfs_node_blockptr(eb,
19435d4f98a2SYan Zheng 							path->slots[level]);
19445d4f98a2SYan Zheng 			new_ptr_gen = btrfs_node_ptr_generation(eb,
19455d4f98a2SYan Zheng 							path->slots[level]);
19465d4f98a2SYan Zheng 		} else {
19475d4f98a2SYan Zheng 			new_bytenr = 0;
19485d4f98a2SYan Zheng 			new_ptr_gen = 0;
19495d4f98a2SYan Zheng 		}
19505d4f98a2SYan Zheng 
1951fae7f21cSDulshani Gunawardhana 		if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
19525d4f98a2SYan Zheng 			ret = level;
19535d4f98a2SYan Zheng 			break;
19545d4f98a2SYan Zheng 		}
19555d4f98a2SYan Zheng 
19565d4f98a2SYan Zheng 		if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
19575d4f98a2SYan Zheng 		    memcmp_node_keys(parent, slot, path, level)) {
19583fd0a558SYan, Zheng 			if (level <= lowest_level) {
19595d4f98a2SYan Zheng 				ret = 0;
19605d4f98a2SYan Zheng 				break;
19615d4f98a2SYan Zheng 			}
19625d4f98a2SYan Zheng 
1963581c1760SQu Wenruo 			eb = read_tree_block(fs_info, old_bytenr, old_ptr_gen,
1964581c1760SQu Wenruo 					     level - 1, &first_key);
196564c043deSLiu Bo 			if (IS_ERR(eb)) {
196664c043deSLiu Bo 				ret = PTR_ERR(eb);
1967264813acSLiu Bo 				break;
196864c043deSLiu Bo 			} else if (!extent_buffer_uptodate(eb)) {
196964c043deSLiu Bo 				ret = -EIO;
1970416bc658SJosef Bacik 				free_extent_buffer(eb);
1971379cde74SStefan Behrens 				break;
1972416bc658SJosef Bacik 			}
19735d4f98a2SYan Zheng 			btrfs_tree_lock(eb);
19743fd0a558SYan, Zheng 			if (cow) {
19755d4f98a2SYan Zheng 				ret = btrfs_cow_block(trans, dest, eb, parent,
19765d4f98a2SYan Zheng 						      slot, &eb);
19775d4f98a2SYan Zheng 				BUG_ON(ret);
19785d4f98a2SYan Zheng 			}
19798bead258SDavid Sterba 			btrfs_set_lock_blocking_write(eb);
19805d4f98a2SYan Zheng 
19815d4f98a2SYan Zheng 			btrfs_tree_unlock(parent);
19825d4f98a2SYan Zheng 			free_extent_buffer(parent);
19835d4f98a2SYan Zheng 
19845d4f98a2SYan Zheng 			parent = eb;
19855d4f98a2SYan Zheng 			continue;
19865d4f98a2SYan Zheng 		}
19875d4f98a2SYan Zheng 
19883fd0a558SYan, Zheng 		if (!cow) {
19893fd0a558SYan, Zheng 			btrfs_tree_unlock(parent);
19903fd0a558SYan, Zheng 			free_extent_buffer(parent);
19913fd0a558SYan, Zheng 			cow = 1;
19923fd0a558SYan, Zheng 			goto again;
19933fd0a558SYan, Zheng 		}
19943fd0a558SYan, Zheng 
19955d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &key,
19965d4f98a2SYan Zheng 				      path->slots[level]);
1997b3b4aa74SDavid Sterba 		btrfs_release_path(path);
19985d4f98a2SYan Zheng 
19995d4f98a2SYan Zheng 		path->lowest_level = level;
20005d4f98a2SYan Zheng 		ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
20015d4f98a2SYan Zheng 		path->lowest_level = 0;
20025d4f98a2SYan Zheng 		BUG_ON(ret);
20035d4f98a2SYan Zheng 
20045d4f98a2SYan Zheng 		/*
2005824d8dffSQu Wenruo 		 * Info qgroup to trace both subtrees.
2006824d8dffSQu Wenruo 		 *
2007824d8dffSQu Wenruo 		 * We must trace both trees.
2008824d8dffSQu Wenruo 		 * 1) Tree reloc subtree
2009824d8dffSQu Wenruo 		 *    If not traced, we will leak data numbers
2010824d8dffSQu Wenruo 		 * 2) Fs subtree
2011824d8dffSQu Wenruo 		 *    If not traced, we will double count old data
2012f616f5cdSQu Wenruo 		 *
2013f616f5cdSQu Wenruo 		 * We don't scan the subtree right now, but only record
2014f616f5cdSQu Wenruo 		 * the swapped tree blocks.
2015f616f5cdSQu Wenruo 		 * The real subtree rescan is delayed until we have new
2016f616f5cdSQu Wenruo 		 * CoW on the subtree root node before transaction commit.
2017824d8dffSQu Wenruo 		 */
2018370a11b8SQu Wenruo 		ret = btrfs_qgroup_add_swapped_blocks(trans, dest,
2019370a11b8SQu Wenruo 				rc->block_group, parent, slot,
2020370a11b8SQu Wenruo 				path->nodes[level], path->slots[level],
2021370a11b8SQu Wenruo 				last_snapshot);
2022370a11b8SQu Wenruo 		if (ret < 0)
2023370a11b8SQu Wenruo 			break;
2024824d8dffSQu Wenruo 		/*
20255d4f98a2SYan Zheng 		 * swap blocks in fs tree and reloc tree.
20265d4f98a2SYan Zheng 		 */
20275d4f98a2SYan Zheng 		btrfs_set_node_blockptr(parent, slot, new_bytenr);
20285d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
20295d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(parent);
20305d4f98a2SYan Zheng 
20315d4f98a2SYan Zheng 		btrfs_set_node_blockptr(path->nodes[level],
20325d4f98a2SYan Zheng 					path->slots[level], old_bytenr);
20335d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(path->nodes[level],
20345d4f98a2SYan Zheng 					      path->slots[level], old_ptr_gen);
20355d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(path->nodes[level]);
20365d4f98a2SYan Zheng 
203782fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, old_bytenr,
203882fa113fSQu Wenruo 				       blocksize, path->nodes[level]->start);
203982fa113fSQu Wenruo 		ref.skip_qgroup = true;
204082fa113fSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
204182fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
20425d4f98a2SYan Zheng 		BUG_ON(ret);
204382fa113fSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
204482fa113fSQu Wenruo 				       blocksize, 0);
204582fa113fSQu Wenruo 		ref.skip_qgroup = true;
204682fa113fSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
204782fa113fSQu Wenruo 		ret = btrfs_inc_extent_ref(trans, &ref);
20485d4f98a2SYan Zheng 		BUG_ON(ret);
20495d4f98a2SYan Zheng 
2050ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, new_bytenr,
2051ffd4bb2aSQu Wenruo 				       blocksize, path->nodes[level]->start);
2052ffd4bb2aSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
2053ffd4bb2aSQu Wenruo 		ref.skip_qgroup = true;
2054ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
20555d4f98a2SYan Zheng 		BUG_ON(ret);
20565d4f98a2SYan Zheng 
2057ffd4bb2aSQu Wenruo 		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, old_bytenr,
2058ffd4bb2aSQu Wenruo 				       blocksize, 0);
2059ffd4bb2aSQu Wenruo 		btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
2060ffd4bb2aSQu Wenruo 		ref.skip_qgroup = true;
2061ffd4bb2aSQu Wenruo 		ret = btrfs_free_extent(trans, &ref);
20625d4f98a2SYan Zheng 		BUG_ON(ret);
20635d4f98a2SYan Zheng 
20645d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
20655d4f98a2SYan Zheng 
20665d4f98a2SYan Zheng 		ret = level;
20675d4f98a2SYan Zheng 		break;
20685d4f98a2SYan Zheng 	}
20695d4f98a2SYan Zheng 	btrfs_tree_unlock(parent);
20705d4f98a2SYan Zheng 	free_extent_buffer(parent);
20715d4f98a2SYan Zheng 	return ret;
20725d4f98a2SYan Zheng }
20735d4f98a2SYan Zheng 
20745d4f98a2SYan Zheng /*
20755d4f98a2SYan Zheng  * helper to find next relocated block in reloc tree
20765d4f98a2SYan Zheng  */
20775d4f98a2SYan Zheng static noinline_for_stack
20785d4f98a2SYan Zheng int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
20795d4f98a2SYan Zheng 		       int *level)
20805d4f98a2SYan Zheng {
20815d4f98a2SYan Zheng 	struct extent_buffer *eb;
20825d4f98a2SYan Zheng 	int i;
20835d4f98a2SYan Zheng 	u64 last_snapshot;
20845d4f98a2SYan Zheng 	u32 nritems;
20855d4f98a2SYan Zheng 
20865d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
20875d4f98a2SYan Zheng 
20885d4f98a2SYan Zheng 	for (i = 0; i < *level; i++) {
20895d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
20905d4f98a2SYan Zheng 		path->nodes[i] = NULL;
20915d4f98a2SYan Zheng 	}
20925d4f98a2SYan Zheng 
20935d4f98a2SYan Zheng 	for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
20945d4f98a2SYan Zheng 		eb = path->nodes[i];
20955d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
20965d4f98a2SYan Zheng 		while (path->slots[i] + 1 < nritems) {
20975d4f98a2SYan Zheng 			path->slots[i]++;
20985d4f98a2SYan Zheng 			if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
20995d4f98a2SYan Zheng 			    last_snapshot)
21005d4f98a2SYan Zheng 				continue;
21015d4f98a2SYan Zheng 
21025d4f98a2SYan Zheng 			*level = i;
21035d4f98a2SYan Zheng 			return 0;
21045d4f98a2SYan Zheng 		}
21055d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
21065d4f98a2SYan Zheng 		path->nodes[i] = NULL;
21075d4f98a2SYan Zheng 	}
21085d4f98a2SYan Zheng 	return 1;
21095d4f98a2SYan Zheng }
21105d4f98a2SYan Zheng 
21115d4f98a2SYan Zheng /*
21125d4f98a2SYan Zheng  * walk down reloc tree to find relocated block of lowest level
21135d4f98a2SYan Zheng  */
21145d4f98a2SYan Zheng static noinline_for_stack
21155d4f98a2SYan Zheng int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
21165d4f98a2SYan Zheng 			 int *level)
21175d4f98a2SYan Zheng {
21182ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
21195d4f98a2SYan Zheng 	struct extent_buffer *eb = NULL;
21205d4f98a2SYan Zheng 	int i;
21215d4f98a2SYan Zheng 	u64 bytenr;
21225d4f98a2SYan Zheng 	u64 ptr_gen = 0;
21235d4f98a2SYan Zheng 	u64 last_snapshot;
21245d4f98a2SYan Zheng 	u32 nritems;
21255d4f98a2SYan Zheng 
21265d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
21275d4f98a2SYan Zheng 
21285d4f98a2SYan Zheng 	for (i = *level; i > 0; i--) {
2129581c1760SQu Wenruo 		struct btrfs_key first_key;
2130581c1760SQu Wenruo 
21315d4f98a2SYan Zheng 		eb = path->nodes[i];
21325d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
21335d4f98a2SYan Zheng 		while (path->slots[i] < nritems) {
21345d4f98a2SYan Zheng 			ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
21355d4f98a2SYan Zheng 			if (ptr_gen > last_snapshot)
21365d4f98a2SYan Zheng 				break;
21375d4f98a2SYan Zheng 			path->slots[i]++;
21385d4f98a2SYan Zheng 		}
21395d4f98a2SYan Zheng 		if (path->slots[i] >= nritems) {
21405d4f98a2SYan Zheng 			if (i == *level)
21415d4f98a2SYan Zheng 				break;
21425d4f98a2SYan Zheng 			*level = i + 1;
21435d4f98a2SYan Zheng 			return 0;
21445d4f98a2SYan Zheng 		}
21455d4f98a2SYan Zheng 		if (i == 1) {
21465d4f98a2SYan Zheng 			*level = i;
21475d4f98a2SYan Zheng 			return 0;
21485d4f98a2SYan Zheng 		}
21495d4f98a2SYan Zheng 
21505d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(eb, path->slots[i]);
2151581c1760SQu Wenruo 		btrfs_node_key_to_cpu(eb, &first_key, path->slots[i]);
2152581c1760SQu Wenruo 		eb = read_tree_block(fs_info, bytenr, ptr_gen, i - 1,
2153581c1760SQu Wenruo 				     &first_key);
215464c043deSLiu Bo 		if (IS_ERR(eb)) {
215564c043deSLiu Bo 			return PTR_ERR(eb);
215664c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2157416bc658SJosef Bacik 			free_extent_buffer(eb);
2158416bc658SJosef Bacik 			return -EIO;
2159416bc658SJosef Bacik 		}
21605d4f98a2SYan Zheng 		BUG_ON(btrfs_header_level(eb) != i - 1);
21615d4f98a2SYan Zheng 		path->nodes[i - 1] = eb;
21625d4f98a2SYan Zheng 		path->slots[i - 1] = 0;
21635d4f98a2SYan Zheng 	}
21645d4f98a2SYan Zheng 	return 1;
21655d4f98a2SYan Zheng }
21665d4f98a2SYan Zheng 
21675d4f98a2SYan Zheng /*
21685d4f98a2SYan Zheng  * invalidate extent cache for file extents whose key in range of
21695d4f98a2SYan Zheng  * [min_key, max_key)
21705d4f98a2SYan Zheng  */
21715d4f98a2SYan Zheng static int invalidate_extent_cache(struct btrfs_root *root,
21725d4f98a2SYan Zheng 				   struct btrfs_key *min_key,
21735d4f98a2SYan Zheng 				   struct btrfs_key *max_key)
21745d4f98a2SYan Zheng {
21750b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
21765d4f98a2SYan Zheng 	struct inode *inode = NULL;
21775d4f98a2SYan Zheng 	u64 objectid;
21785d4f98a2SYan Zheng 	u64 start, end;
217933345d01SLi Zefan 	u64 ino;
21805d4f98a2SYan Zheng 
21815d4f98a2SYan Zheng 	objectid = min_key->objectid;
21825d4f98a2SYan Zheng 	while (1) {
21835d4f98a2SYan Zheng 		cond_resched();
21845d4f98a2SYan Zheng 		iput(inode);
21855d4f98a2SYan Zheng 
21865d4f98a2SYan Zheng 		if (objectid > max_key->objectid)
21875d4f98a2SYan Zheng 			break;
21885d4f98a2SYan Zheng 
21895d4f98a2SYan Zheng 		inode = find_next_inode(root, objectid);
21905d4f98a2SYan Zheng 		if (!inode)
21915d4f98a2SYan Zheng 			break;
21924a0cc7caSNikolay Borisov 		ino = btrfs_ino(BTRFS_I(inode));
21935d4f98a2SYan Zheng 
219433345d01SLi Zefan 		if (ino > max_key->objectid) {
21955d4f98a2SYan Zheng 			iput(inode);
21965d4f98a2SYan Zheng 			break;
21975d4f98a2SYan Zheng 		}
21985d4f98a2SYan Zheng 
219933345d01SLi Zefan 		objectid = ino + 1;
22005d4f98a2SYan Zheng 		if (!S_ISREG(inode->i_mode))
22015d4f98a2SYan Zheng 			continue;
22025d4f98a2SYan Zheng 
220333345d01SLi Zefan 		if (unlikely(min_key->objectid == ino)) {
22045d4f98a2SYan Zheng 			if (min_key->type > BTRFS_EXTENT_DATA_KEY)
22055d4f98a2SYan Zheng 				continue;
22065d4f98a2SYan Zheng 			if (min_key->type < BTRFS_EXTENT_DATA_KEY)
22075d4f98a2SYan Zheng 				start = 0;
22085d4f98a2SYan Zheng 			else {
22095d4f98a2SYan Zheng 				start = min_key->offset;
22100b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(start, fs_info->sectorsize));
22115d4f98a2SYan Zheng 			}
22125d4f98a2SYan Zheng 		} else {
22135d4f98a2SYan Zheng 			start = 0;
22145d4f98a2SYan Zheng 		}
22155d4f98a2SYan Zheng 
221633345d01SLi Zefan 		if (unlikely(max_key->objectid == ino)) {
22175d4f98a2SYan Zheng 			if (max_key->type < BTRFS_EXTENT_DATA_KEY)
22185d4f98a2SYan Zheng 				continue;
22195d4f98a2SYan Zheng 			if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
22205d4f98a2SYan Zheng 				end = (u64)-1;
22215d4f98a2SYan Zheng 			} else {
22225d4f98a2SYan Zheng 				if (max_key->offset == 0)
22235d4f98a2SYan Zheng 					continue;
22245d4f98a2SYan Zheng 				end = max_key->offset;
22250b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
22265d4f98a2SYan Zheng 				end--;
22275d4f98a2SYan Zheng 			}
22285d4f98a2SYan Zheng 		} else {
22295d4f98a2SYan Zheng 			end = (u64)-1;
22305d4f98a2SYan Zheng 		}
22315d4f98a2SYan Zheng 
22325d4f98a2SYan Zheng 		/* the lock_extent waits for readpage to complete */
2233d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
2234dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 1);
2235d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
22365d4f98a2SYan Zheng 	}
22375d4f98a2SYan Zheng 	return 0;
22385d4f98a2SYan Zheng }
22395d4f98a2SYan Zheng 
22405d4f98a2SYan Zheng static int find_next_key(struct btrfs_path *path, int level,
22415d4f98a2SYan Zheng 			 struct btrfs_key *key)
22425d4f98a2SYan Zheng 
22435d4f98a2SYan Zheng {
22445d4f98a2SYan Zheng 	while (level < BTRFS_MAX_LEVEL) {
22455d4f98a2SYan Zheng 		if (!path->nodes[level])
22465d4f98a2SYan Zheng 			break;
22475d4f98a2SYan Zheng 		if (path->slots[level] + 1 <
22485d4f98a2SYan Zheng 		    btrfs_header_nritems(path->nodes[level])) {
22495d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], key,
22505d4f98a2SYan Zheng 					      path->slots[level] + 1);
22515d4f98a2SYan Zheng 			return 0;
22525d4f98a2SYan Zheng 		}
22535d4f98a2SYan Zheng 		level++;
22545d4f98a2SYan Zheng 	}
22555d4f98a2SYan Zheng 	return 1;
22565d4f98a2SYan Zheng }
22575d4f98a2SYan Zheng 
22585d4f98a2SYan Zheng /*
2259d2311e69SQu Wenruo  * Insert current subvolume into reloc_control::dirty_subvol_roots
2260d2311e69SQu Wenruo  */
2261d2311e69SQu Wenruo static void insert_dirty_subvol(struct btrfs_trans_handle *trans,
2262d2311e69SQu Wenruo 				struct reloc_control *rc,
2263d2311e69SQu Wenruo 				struct btrfs_root *root)
2264d2311e69SQu Wenruo {
2265d2311e69SQu Wenruo 	struct btrfs_root *reloc_root = root->reloc_root;
2266d2311e69SQu Wenruo 	struct btrfs_root_item *reloc_root_item;
2267d2311e69SQu Wenruo 
2268d2311e69SQu Wenruo 	/* @root must be a subvolume tree root with a valid reloc tree */
2269d2311e69SQu Wenruo 	ASSERT(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
2270d2311e69SQu Wenruo 	ASSERT(reloc_root);
2271d2311e69SQu Wenruo 
2272d2311e69SQu Wenruo 	reloc_root_item = &reloc_root->root_item;
2273d2311e69SQu Wenruo 	memset(&reloc_root_item->drop_progress, 0,
2274d2311e69SQu Wenruo 		sizeof(reloc_root_item->drop_progress));
2275d2311e69SQu Wenruo 	reloc_root_item->drop_level = 0;
2276d2311e69SQu Wenruo 	btrfs_set_root_refs(reloc_root_item, 0);
2277d2311e69SQu Wenruo 	btrfs_update_reloc_root(trans, root);
2278d2311e69SQu Wenruo 
2279d2311e69SQu Wenruo 	if (list_empty(&root->reloc_dirty_list)) {
228000246528SJosef Bacik 		btrfs_grab_root(root);
2281d2311e69SQu Wenruo 		list_add_tail(&root->reloc_dirty_list, &rc->dirty_subvol_roots);
2282d2311e69SQu Wenruo 	}
2283d2311e69SQu Wenruo }
2284d2311e69SQu Wenruo 
2285d2311e69SQu Wenruo static int clean_dirty_subvols(struct reloc_control *rc)
2286d2311e69SQu Wenruo {
2287d2311e69SQu Wenruo 	struct btrfs_root *root;
2288d2311e69SQu Wenruo 	struct btrfs_root *next;
2289d2311e69SQu Wenruo 	int ret = 0;
229030d40577SQu Wenruo 	int ret2;
2291d2311e69SQu Wenruo 
2292d2311e69SQu Wenruo 	list_for_each_entry_safe(root, next, &rc->dirty_subvol_roots,
2293d2311e69SQu Wenruo 				 reloc_dirty_list) {
229430d40577SQu Wenruo 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
229530d40577SQu Wenruo 			/* Merged subvolume, cleanup its reloc root */
2296d2311e69SQu Wenruo 			struct btrfs_root *reloc_root = root->reloc_root;
2297d2311e69SQu Wenruo 
2298d2311e69SQu Wenruo 			list_del_init(&root->reloc_dirty_list);
2299d2311e69SQu Wenruo 			root->reloc_root = NULL;
23006282675eSQu Wenruo 			/*
23016282675eSQu Wenruo 			 * Need barrier to ensure clear_bit() only happens after
23026282675eSQu Wenruo 			 * root->reloc_root = NULL. Pairs with have_reloc_root.
23036282675eSQu Wenruo 			 */
23046282675eSQu Wenruo 			smp_wmb();
23051fac4a54SQu Wenruo 			clear_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
2306f28de8d8SJosef Bacik 			if (reloc_root) {
2307f44deb74SJosef Bacik 				/*
2308f44deb74SJosef Bacik 				 * btrfs_drop_snapshot drops our ref we hold for
2309f44deb74SJosef Bacik 				 * ->reloc_root.  If it fails however we must
2310f44deb74SJosef Bacik 				 * drop the ref ourselves.
2311f44deb74SJosef Bacik 				 */
2312f28de8d8SJosef Bacik 				ret2 = btrfs_drop_snapshot(reloc_root, 0, 1);
2313f44deb74SJosef Bacik 				if (ret2 < 0) {
2314f44deb74SJosef Bacik 					btrfs_put_root(reloc_root);
2315f44deb74SJosef Bacik 					if (!ret)
2316f28de8d8SJosef Bacik 						ret = ret2;
2317f28de8d8SJosef Bacik 				}
2318f44deb74SJosef Bacik 			}
231900246528SJosef Bacik 			btrfs_put_root(root);
232030d40577SQu Wenruo 		} else {
232130d40577SQu Wenruo 			/* Orphan reloc tree, just clean it up */
23220078a9f9SNikolay Borisov 			ret2 = btrfs_drop_snapshot(root, 0, 1);
2323f44deb74SJosef Bacik 			if (ret2 < 0) {
2324f44deb74SJosef Bacik 				btrfs_put_root(root);
2325f44deb74SJosef Bacik 				if (!ret)
232630d40577SQu Wenruo 					ret = ret2;
232730d40577SQu Wenruo 			}
2328d2311e69SQu Wenruo 		}
2329f44deb74SJosef Bacik 	}
2330d2311e69SQu Wenruo 	return ret;
2331d2311e69SQu Wenruo }
2332d2311e69SQu Wenruo 
2333d2311e69SQu Wenruo /*
23345d4f98a2SYan Zheng  * merge the relocated tree blocks in reloc tree with corresponding
23355d4f98a2SYan Zheng  * fs tree.
23365d4f98a2SYan Zheng  */
23375d4f98a2SYan Zheng static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
23385d4f98a2SYan Zheng 					       struct btrfs_root *root)
23395d4f98a2SYan Zheng {
23400b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
23415d4f98a2SYan Zheng 	struct btrfs_key key;
23425d4f98a2SYan Zheng 	struct btrfs_key next_key;
23439e6a0c52SJosef Bacik 	struct btrfs_trans_handle *trans = NULL;
23445d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
23455d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
23465d4f98a2SYan Zheng 	struct btrfs_path *path;
23473fd0a558SYan, Zheng 	struct extent_buffer *leaf;
23485d4f98a2SYan Zheng 	int level;
23495d4f98a2SYan Zheng 	int max_level;
23505d4f98a2SYan Zheng 	int replaced = 0;
23515d4f98a2SYan Zheng 	int ret;
23525d4f98a2SYan Zheng 	int err = 0;
23533fd0a558SYan, Zheng 	u32 min_reserved;
23545d4f98a2SYan Zheng 
23555d4f98a2SYan Zheng 	path = btrfs_alloc_path();
23565d4f98a2SYan Zheng 	if (!path)
23575d4f98a2SYan Zheng 		return -ENOMEM;
2358e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
23595d4f98a2SYan Zheng 
23605d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
23615d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
23625d4f98a2SYan Zheng 
23635d4f98a2SYan Zheng 	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
23645d4f98a2SYan Zheng 		level = btrfs_root_level(root_item);
236567439dadSDavid Sterba 		atomic_inc(&reloc_root->node->refs);
23665d4f98a2SYan Zheng 		path->nodes[level] = reloc_root->node;
23675d4f98a2SYan Zheng 		path->slots[level] = 0;
23685d4f98a2SYan Zheng 	} else {
23695d4f98a2SYan Zheng 		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
23705d4f98a2SYan Zheng 
23715d4f98a2SYan Zheng 		level = root_item->drop_level;
23725d4f98a2SYan Zheng 		BUG_ON(level == 0);
23735d4f98a2SYan Zheng 		path->lowest_level = level;
23745d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
237533c66f43SYan Zheng 		path->lowest_level = 0;
23765d4f98a2SYan Zheng 		if (ret < 0) {
23775d4f98a2SYan Zheng 			btrfs_free_path(path);
23785d4f98a2SYan Zheng 			return ret;
23795d4f98a2SYan Zheng 		}
23805d4f98a2SYan Zheng 
23815d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &next_key,
23825d4f98a2SYan Zheng 				      path->slots[level]);
23835d4f98a2SYan Zheng 		WARN_ON(memcmp(&key, &next_key, sizeof(key)));
23845d4f98a2SYan Zheng 
23855d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
23865d4f98a2SYan Zheng 	}
23875d4f98a2SYan Zheng 
23880b246afaSJeff Mahoney 	min_reserved = fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
23895d4f98a2SYan Zheng 	memset(&next_key, 0, sizeof(next_key));
23905d4f98a2SYan Zheng 
23915d4f98a2SYan Zheng 	while (1) {
239208e007d2SMiao Xie 		ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
239308e007d2SMiao Xie 					     BTRFS_RESERVE_FLUSH_ALL);
23943fd0a558SYan, Zheng 		if (ret) {
23959e6a0c52SJosef Bacik 			err = ret;
23969e6a0c52SJosef Bacik 			goto out;
23973fd0a558SYan, Zheng 		}
23989e6a0c52SJosef Bacik 		trans = btrfs_start_transaction(root, 0);
23999e6a0c52SJosef Bacik 		if (IS_ERR(trans)) {
24009e6a0c52SJosef Bacik 			err = PTR_ERR(trans);
24019e6a0c52SJosef Bacik 			trans = NULL;
24029e6a0c52SJosef Bacik 			goto out;
24039e6a0c52SJosef Bacik 		}
24042abc726aSJosef Bacik 
24052abc726aSJosef Bacik 		/*
24062abc726aSJosef Bacik 		 * At this point we no longer have a reloc_control, so we can't
24072abc726aSJosef Bacik 		 * depend on btrfs_init_reloc_root to update our last_trans.
24082abc726aSJosef Bacik 		 *
24092abc726aSJosef Bacik 		 * But that's ok, we started the trans handle on our
24102abc726aSJosef Bacik 		 * corresponding fs_root, which means it's been added to the
24112abc726aSJosef Bacik 		 * dirty list.  At commit time we'll still call
24122abc726aSJosef Bacik 		 * btrfs_update_reloc_root() and update our root item
24132abc726aSJosef Bacik 		 * appropriately.
24142abc726aSJosef Bacik 		 */
24152abc726aSJosef Bacik 		reloc_root->last_trans = trans->transid;
24169e6a0c52SJosef Bacik 		trans->block_rsv = rc->block_rsv;
24173fd0a558SYan, Zheng 
24183fd0a558SYan, Zheng 		replaced = 0;
24195d4f98a2SYan Zheng 		max_level = level;
24205d4f98a2SYan Zheng 
24215d4f98a2SYan Zheng 		ret = walk_down_reloc_tree(reloc_root, path, &level);
24225d4f98a2SYan Zheng 		if (ret < 0) {
24235d4f98a2SYan Zheng 			err = ret;
24245d4f98a2SYan Zheng 			goto out;
24255d4f98a2SYan Zheng 		}
24265d4f98a2SYan Zheng 		if (ret > 0)
24275d4f98a2SYan Zheng 			break;
24285d4f98a2SYan Zheng 
24295d4f98a2SYan Zheng 		if (!find_next_key(path, level, &key) &&
24305d4f98a2SYan Zheng 		    btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
24315d4f98a2SYan Zheng 			ret = 0;
24325d4f98a2SYan Zheng 		} else {
24333d0174f7SQu Wenruo 			ret = replace_path(trans, rc, root, reloc_root, path,
24343fd0a558SYan, Zheng 					   &next_key, level, max_level);
24355d4f98a2SYan Zheng 		}
24365d4f98a2SYan Zheng 		if (ret < 0) {
24375d4f98a2SYan Zheng 			err = ret;
24385d4f98a2SYan Zheng 			goto out;
24395d4f98a2SYan Zheng 		}
24405d4f98a2SYan Zheng 
24415d4f98a2SYan Zheng 		if (ret > 0) {
24425d4f98a2SYan Zheng 			level = ret;
24435d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], &key,
24445d4f98a2SYan Zheng 					      path->slots[level]);
24455d4f98a2SYan Zheng 			replaced = 1;
24465d4f98a2SYan Zheng 		}
24475d4f98a2SYan Zheng 
24485d4f98a2SYan Zheng 		ret = walk_up_reloc_tree(reloc_root, path, &level);
24495d4f98a2SYan Zheng 		if (ret > 0)
24505d4f98a2SYan Zheng 			break;
24515d4f98a2SYan Zheng 
24525d4f98a2SYan Zheng 		BUG_ON(level == 0);
24535d4f98a2SYan Zheng 		/*
24545d4f98a2SYan Zheng 		 * save the merging progress in the drop_progress.
24555d4f98a2SYan Zheng 		 * this is OK since root refs == 1 in this case.
24565d4f98a2SYan Zheng 		 */
24575d4f98a2SYan Zheng 		btrfs_node_key(path->nodes[level], &root_item->drop_progress,
24585d4f98a2SYan Zheng 			       path->slots[level]);
24595d4f98a2SYan Zheng 		root_item->drop_level = level;
24605d4f98a2SYan Zheng 
24613a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
24629e6a0c52SJosef Bacik 		trans = NULL;
24635d4f98a2SYan Zheng 
24642ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
24655d4f98a2SYan Zheng 
24665d4f98a2SYan Zheng 		if (replaced && rc->stage == UPDATE_DATA_PTRS)
24675d4f98a2SYan Zheng 			invalidate_extent_cache(root, &key, &next_key);
24685d4f98a2SYan Zheng 	}
24695d4f98a2SYan Zheng 
24705d4f98a2SYan Zheng 	/*
24715d4f98a2SYan Zheng 	 * handle the case only one block in the fs tree need to be
24725d4f98a2SYan Zheng 	 * relocated and the block is tree root.
24735d4f98a2SYan Zheng 	 */
24745d4f98a2SYan Zheng 	leaf = btrfs_lock_root_node(root);
24755d4f98a2SYan Zheng 	ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
24765d4f98a2SYan Zheng 	btrfs_tree_unlock(leaf);
24775d4f98a2SYan Zheng 	free_extent_buffer(leaf);
24785d4f98a2SYan Zheng 	if (ret < 0)
24795d4f98a2SYan Zheng 		err = ret;
24805d4f98a2SYan Zheng out:
24815d4f98a2SYan Zheng 	btrfs_free_path(path);
24825d4f98a2SYan Zheng 
2483d2311e69SQu Wenruo 	if (err == 0)
2484d2311e69SQu Wenruo 		insert_dirty_subvol(trans, rc, root);
24855d4f98a2SYan Zheng 
24869e6a0c52SJosef Bacik 	if (trans)
24873a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
24885d4f98a2SYan Zheng 
24892ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
24905d4f98a2SYan Zheng 
24915d4f98a2SYan Zheng 	if (replaced && rc->stage == UPDATE_DATA_PTRS)
24925d4f98a2SYan Zheng 		invalidate_extent_cache(root, &key, &next_key);
24935d4f98a2SYan Zheng 
24945d4f98a2SYan Zheng 	return err;
24955d4f98a2SYan Zheng }
24965d4f98a2SYan Zheng 
24973fd0a558SYan, Zheng static noinline_for_stack
24983fd0a558SYan, Zheng int prepare_to_merge(struct reloc_control *rc, int err)
24995d4f98a2SYan Zheng {
25003fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
25010b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
25023fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
25035d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
25043fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
25053fd0a558SYan, Zheng 	u64 num_bytes = 0;
25063fd0a558SYan, Zheng 	int ret;
25073fd0a558SYan, Zheng 
25080b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
25090b246afaSJeff Mahoney 	rc->merging_rsv_size += fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
25103fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated * 2;
25110b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
25127585717fSChris Mason 
25133fd0a558SYan, Zheng again:
25143fd0a558SYan, Zheng 	if (!err) {
25153fd0a558SYan, Zheng 		num_bytes = rc->merging_rsv_size;
251608e007d2SMiao Xie 		ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
251708e007d2SMiao Xie 					  BTRFS_RESERVE_FLUSH_ALL);
25183fd0a558SYan, Zheng 		if (ret)
25193fd0a558SYan, Zheng 			err = ret;
25203fd0a558SYan, Zheng 	}
25213fd0a558SYan, Zheng 
25227a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
25233612b495STsutomu Itoh 	if (IS_ERR(trans)) {
25243612b495STsutomu Itoh 		if (!err)
25252ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
252663f018beSNikolay Borisov 						num_bytes, NULL);
25273612b495STsutomu Itoh 		return PTR_ERR(trans);
25283612b495STsutomu Itoh 	}
25293fd0a558SYan, Zheng 
25303fd0a558SYan, Zheng 	if (!err) {
25313fd0a558SYan, Zheng 		if (num_bytes != rc->merging_rsv_size) {
25323a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
25332ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
253463f018beSNikolay Borisov 						num_bytes, NULL);
25353fd0a558SYan, Zheng 			goto again;
25363fd0a558SYan, Zheng 		}
25373fd0a558SYan, Zheng 	}
25383fd0a558SYan, Zheng 
25393fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
25403fd0a558SYan, Zheng 
25413fd0a558SYan, Zheng 	while (!list_empty(&rc->reloc_roots)) {
25423fd0a558SYan, Zheng 		reloc_root = list_entry(rc->reloc_roots.next,
25433fd0a558SYan, Zheng 					struct btrfs_root, root_list);
25443fd0a558SYan, Zheng 		list_del_init(&reloc_root->root_list);
25453fd0a558SYan, Zheng 
25460b246afaSJeff Mahoney 		root = read_fs_root(fs_info, reloc_root->root_key.offset);
25473fd0a558SYan, Zheng 		BUG_ON(IS_ERR(root));
25483fd0a558SYan, Zheng 		BUG_ON(root->reloc_root != reloc_root);
25493fd0a558SYan, Zheng 
25503fd0a558SYan, Zheng 		/*
25513fd0a558SYan, Zheng 		 * set reference count to 1, so btrfs_recover_relocation
25523fd0a558SYan, Zheng 		 * knows it should resumes merging
25533fd0a558SYan, Zheng 		 */
25543fd0a558SYan, Zheng 		if (!err)
25553fd0a558SYan, Zheng 			btrfs_set_root_refs(&reloc_root->root_item, 1);
25563fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
25573fd0a558SYan, Zheng 
25583fd0a558SYan, Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
255900246528SJosef Bacik 		btrfs_put_root(root);
25603fd0a558SYan, Zheng 	}
25613fd0a558SYan, Zheng 
25623fd0a558SYan, Zheng 	list_splice(&reloc_roots, &rc->reloc_roots);
25633fd0a558SYan, Zheng 
25643fd0a558SYan, Zheng 	if (!err)
25653a45bb20SJeff Mahoney 		btrfs_commit_transaction(trans);
25663fd0a558SYan, Zheng 	else
25673a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
25683fd0a558SYan, Zheng 	return err;
25693fd0a558SYan, Zheng }
25703fd0a558SYan, Zheng 
25713fd0a558SYan, Zheng static noinline_for_stack
2572aca1bba6SLiu Bo void free_reloc_roots(struct list_head *list)
2573aca1bba6SLiu Bo {
2574aca1bba6SLiu Bo 	struct btrfs_root *reloc_root;
2575aca1bba6SLiu Bo 
2576aca1bba6SLiu Bo 	while (!list_empty(list)) {
2577aca1bba6SLiu Bo 		reloc_root = list_entry(list->next, struct btrfs_root,
2578aca1bba6SLiu Bo 					root_list);
2579bb166d72SNaohiro Aota 		__del_reloc_root(reloc_root);
2580aca1bba6SLiu Bo 	}
2581aca1bba6SLiu Bo }
2582aca1bba6SLiu Bo 
2583aca1bba6SLiu Bo static noinline_for_stack
258494404e82SDavid Sterba void merge_reloc_roots(struct reloc_control *rc)
25853fd0a558SYan, Zheng {
25860b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
25875d4f98a2SYan Zheng 	struct btrfs_root *root;
25885d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
25893fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
25903fd0a558SYan, Zheng 	int found = 0;
2591aca1bba6SLiu Bo 	int ret = 0;
25923fd0a558SYan, Zheng again:
25933fd0a558SYan, Zheng 	root = rc->extent_root;
25947585717fSChris Mason 
25957585717fSChris Mason 	/*
25967585717fSChris Mason 	 * this serializes us with btrfs_record_root_in_transaction,
25977585717fSChris Mason 	 * we have to make sure nobody is in the middle of
25987585717fSChris Mason 	 * adding their roots to the list while we are
25997585717fSChris Mason 	 * doing this splice
26007585717fSChris Mason 	 */
26010b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
26023fd0a558SYan, Zheng 	list_splice_init(&rc->reloc_roots, &reloc_roots);
26030b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
26045d4f98a2SYan Zheng 
26053fd0a558SYan, Zheng 	while (!list_empty(&reloc_roots)) {
26063fd0a558SYan, Zheng 		found = 1;
26073fd0a558SYan, Zheng 		reloc_root = list_entry(reloc_roots.next,
26083fd0a558SYan, Zheng 					struct btrfs_root, root_list);
26095d4f98a2SYan Zheng 
26105d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
26110b246afaSJeff Mahoney 			root = read_fs_root(fs_info,
26125d4f98a2SYan Zheng 					    reloc_root->root_key.offset);
26135d4f98a2SYan Zheng 			BUG_ON(IS_ERR(root));
26145d4f98a2SYan Zheng 			BUG_ON(root->reloc_root != reloc_root);
26155d4f98a2SYan Zheng 
26163fd0a558SYan, Zheng 			ret = merge_reloc_root(rc, root);
261700246528SJosef Bacik 			btrfs_put_root(root);
2618b37b39cdSJosef Bacik 			if (ret) {
261925e293c2SWang Shilong 				if (list_empty(&reloc_root->root_list))
262025e293c2SWang Shilong 					list_add_tail(&reloc_root->root_list,
262125e293c2SWang Shilong 						      &reloc_roots);
2622aca1bba6SLiu Bo 				goto out;
2623b37b39cdSJosef Bacik 			}
26243fd0a558SYan, Zheng 		} else {
26253fd0a558SYan, Zheng 			list_del_init(&reloc_root->root_list);
262630d40577SQu Wenruo 			/* Don't forget to queue this reloc root for cleanup */
262730d40577SQu Wenruo 			list_add_tail(&reloc_root->reloc_dirty_list,
262830d40577SQu Wenruo 				      &rc->dirty_subvol_roots);
26293fd0a558SYan, Zheng 		}
26305d4f98a2SYan Zheng 	}
26315d4f98a2SYan Zheng 
26323fd0a558SYan, Zheng 	if (found) {
26333fd0a558SYan, Zheng 		found = 0;
26343fd0a558SYan, Zheng 		goto again;
26355d4f98a2SYan Zheng 	}
2636aca1bba6SLiu Bo out:
2637aca1bba6SLiu Bo 	if (ret) {
26380b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret, NULL);
2639aca1bba6SLiu Bo 		if (!list_empty(&reloc_roots))
2640aca1bba6SLiu Bo 			free_reloc_roots(&reloc_roots);
2641467bb1d2SWang Shilong 
2642467bb1d2SWang Shilong 		/* new reloc root may be added */
26430b246afaSJeff Mahoney 		mutex_lock(&fs_info->reloc_mutex);
2644467bb1d2SWang Shilong 		list_splice_init(&rc->reloc_roots, &reloc_roots);
26450b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
2646467bb1d2SWang Shilong 		if (!list_empty(&reloc_roots))
2647467bb1d2SWang Shilong 			free_reloc_roots(&reloc_roots);
2648aca1bba6SLiu Bo 	}
2649aca1bba6SLiu Bo 
26507b7b7431SJosef Bacik 	/*
26517b7b7431SJosef Bacik 	 * We used to have
26527b7b7431SJosef Bacik 	 *
26537b7b7431SJosef Bacik 	 * BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
26547b7b7431SJosef Bacik 	 *
26557b7b7431SJosef Bacik 	 * here, but it's wrong.  If we fail to start the transaction in
26567b7b7431SJosef Bacik 	 * prepare_to_merge() we will have only 0 ref reloc roots, none of which
26577b7b7431SJosef Bacik 	 * have actually been removed from the reloc_root_tree rb tree.  This is
26587b7b7431SJosef Bacik 	 * fine because we're bailing here, and we hold a reference on the root
26597b7b7431SJosef Bacik 	 * for the list that holds it, so these roots will be cleaned up when we
26607b7b7431SJosef Bacik 	 * do the reloc_dirty_list afterwards.  Meanwhile the root->reloc_root
26617b7b7431SJosef Bacik 	 * will be cleaned up on unmount.
26627b7b7431SJosef Bacik 	 *
26637b7b7431SJosef Bacik 	 * The remaining nodes will be cleaned up by free_reloc_control.
26647b7b7431SJosef Bacik 	 */
26655d4f98a2SYan Zheng }
26665d4f98a2SYan Zheng 
26675d4f98a2SYan Zheng static void free_block_list(struct rb_root *blocks)
26685d4f98a2SYan Zheng {
26695d4f98a2SYan Zheng 	struct tree_block *block;
26705d4f98a2SYan Zheng 	struct rb_node *rb_node;
26715d4f98a2SYan Zheng 	while ((rb_node = rb_first(blocks))) {
26725d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
26735d4f98a2SYan Zheng 		rb_erase(rb_node, blocks);
26745d4f98a2SYan Zheng 		kfree(block);
26755d4f98a2SYan Zheng 	}
26765d4f98a2SYan Zheng }
26775d4f98a2SYan Zheng 
26785d4f98a2SYan Zheng static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
26795d4f98a2SYan Zheng 				      struct btrfs_root *reloc_root)
26805d4f98a2SYan Zheng {
26810b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = reloc_root->fs_info;
26825d4f98a2SYan Zheng 	struct btrfs_root *root;
2683442b1ac5SJosef Bacik 	int ret;
26845d4f98a2SYan Zheng 
26855d4f98a2SYan Zheng 	if (reloc_root->last_trans == trans->transid)
26865d4f98a2SYan Zheng 		return 0;
26875d4f98a2SYan Zheng 
26880b246afaSJeff Mahoney 	root = read_fs_root(fs_info, reloc_root->root_key.offset);
26895d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
26905d4f98a2SYan Zheng 	BUG_ON(root->reloc_root != reloc_root);
2691442b1ac5SJosef Bacik 	ret = btrfs_record_root_in_trans(trans, root);
269200246528SJosef Bacik 	btrfs_put_root(root);
26935d4f98a2SYan Zheng 
2694442b1ac5SJosef Bacik 	return ret;
26955d4f98a2SYan Zheng }
26965d4f98a2SYan Zheng 
26973fd0a558SYan, Zheng static noinline_for_stack
26983fd0a558SYan, Zheng struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
26993fd0a558SYan, Zheng 				     struct reloc_control *rc,
27005d4f98a2SYan Zheng 				     struct backref_node *node,
2701dc4103f9SWang Shilong 				     struct backref_edge *edges[])
27025d4f98a2SYan Zheng {
27035d4f98a2SYan Zheng 	struct backref_node *next;
27045d4f98a2SYan Zheng 	struct btrfs_root *root;
27053fd0a558SYan, Zheng 	int index = 0;
27063fd0a558SYan, Zheng 
27075d4f98a2SYan Zheng 	next = node;
27085d4f98a2SYan Zheng 	while (1) {
27095d4f98a2SYan Zheng 		cond_resched();
27105d4f98a2SYan Zheng 		next = walk_up_backref(next, edges, &index);
27115d4f98a2SYan Zheng 		root = next->root;
27123fd0a558SYan, Zheng 		BUG_ON(!root);
271327cdeb70SMiao Xie 		BUG_ON(!test_bit(BTRFS_ROOT_REF_COWS, &root->state));
27145d4f98a2SYan Zheng 
27155d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
27165d4f98a2SYan Zheng 			record_reloc_root_in_trans(trans, root);
27175d4f98a2SYan Zheng 			break;
27185d4f98a2SYan Zheng 		}
27195d4f98a2SYan Zheng 
27205d4f98a2SYan Zheng 		btrfs_record_root_in_trans(trans, root);
27213fd0a558SYan, Zheng 		root = root->reloc_root;
27223fd0a558SYan, Zheng 
27233fd0a558SYan, Zheng 		if (next->new_bytenr != root->node->start) {
27243fd0a558SYan, Zheng 			BUG_ON(next->new_bytenr);
27253fd0a558SYan, Zheng 			BUG_ON(!list_empty(&next->list));
27263fd0a558SYan, Zheng 			next->new_bytenr = root->node->start;
272700246528SJosef Bacik 			btrfs_put_root(next->root);
272800246528SJosef Bacik 			next->root = btrfs_grab_root(root);
27290b530bc5SJosef Bacik 			ASSERT(next->root);
27303fd0a558SYan, Zheng 			list_add_tail(&next->list,
27313fd0a558SYan, Zheng 				      &rc->backref_cache.changed);
27323fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
27335d4f98a2SYan Zheng 			break;
27345d4f98a2SYan Zheng 		}
27355d4f98a2SYan Zheng 
27363fd0a558SYan, Zheng 		WARN_ON(1);
27375d4f98a2SYan Zheng 		root = NULL;
27385d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
27395d4f98a2SYan Zheng 		if (!next || next->level <= node->level)
27405d4f98a2SYan Zheng 			break;
27415d4f98a2SYan Zheng 	}
27423fd0a558SYan, Zheng 	if (!root)
27433fd0a558SYan, Zheng 		return NULL;
27445d4f98a2SYan Zheng 
27453fd0a558SYan, Zheng 	next = node;
27463fd0a558SYan, Zheng 	/* setup backref node path for btrfs_reloc_cow_block */
27473fd0a558SYan, Zheng 	while (1) {
27483fd0a558SYan, Zheng 		rc->backref_cache.path[next->level] = next;
27493fd0a558SYan, Zheng 		if (--index < 0)
27503fd0a558SYan, Zheng 			break;
27513fd0a558SYan, Zheng 		next = edges[index]->node[UPPER];
27523fd0a558SYan, Zheng 	}
27535d4f98a2SYan Zheng 	return root;
27545d4f98a2SYan Zheng }
27555d4f98a2SYan Zheng 
27563fd0a558SYan, Zheng /*
27573fd0a558SYan, Zheng  * select a tree root for relocation. return NULL if the block
27583fd0a558SYan, Zheng  * is reference counted. we should use do_relocation() in this
27593fd0a558SYan, Zheng  * case. return a tree root pointer if the block isn't reference
27603fd0a558SYan, Zheng  * counted. return -ENOENT if the block is root of reloc tree.
27613fd0a558SYan, Zheng  */
27625d4f98a2SYan Zheng static noinline_for_stack
2763147d256eSZhaolei struct btrfs_root *select_one_root(struct backref_node *node)
27645d4f98a2SYan Zheng {
27653fd0a558SYan, Zheng 	struct backref_node *next;
27663fd0a558SYan, Zheng 	struct btrfs_root *root;
27673fd0a558SYan, Zheng 	struct btrfs_root *fs_root = NULL;
27685d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
27693fd0a558SYan, Zheng 	int index = 0;
27703fd0a558SYan, Zheng 
27713fd0a558SYan, Zheng 	next = node;
27723fd0a558SYan, Zheng 	while (1) {
27733fd0a558SYan, Zheng 		cond_resched();
27743fd0a558SYan, Zheng 		next = walk_up_backref(next, edges, &index);
27753fd0a558SYan, Zheng 		root = next->root;
27763fd0a558SYan, Zheng 		BUG_ON(!root);
27773fd0a558SYan, Zheng 
277825985edcSLucas De Marchi 		/* no other choice for non-references counted tree */
277927cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
27803fd0a558SYan, Zheng 			return root;
27813fd0a558SYan, Zheng 
27823fd0a558SYan, Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
27833fd0a558SYan, Zheng 			fs_root = root;
27843fd0a558SYan, Zheng 
27853fd0a558SYan, Zheng 		if (next != node)
27863fd0a558SYan, Zheng 			return NULL;
27873fd0a558SYan, Zheng 
27883fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
27893fd0a558SYan, Zheng 		if (!next || next->level <= node->level)
27903fd0a558SYan, Zheng 			break;
27913fd0a558SYan, Zheng 	}
27923fd0a558SYan, Zheng 
27933fd0a558SYan, Zheng 	if (!fs_root)
27943fd0a558SYan, Zheng 		return ERR_PTR(-ENOENT);
27953fd0a558SYan, Zheng 	return fs_root;
27965d4f98a2SYan Zheng }
27975d4f98a2SYan Zheng 
27985d4f98a2SYan Zheng static noinline_for_stack
27993fd0a558SYan, Zheng u64 calcu_metadata_size(struct reloc_control *rc,
28003fd0a558SYan, Zheng 			struct backref_node *node, int reserve)
28015d4f98a2SYan Zheng {
28020b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
28033fd0a558SYan, Zheng 	struct backref_node *next = node;
28043fd0a558SYan, Zheng 	struct backref_edge *edge;
28053fd0a558SYan, Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
28063fd0a558SYan, Zheng 	u64 num_bytes = 0;
28073fd0a558SYan, Zheng 	int index = 0;
28085d4f98a2SYan Zheng 
28093fd0a558SYan, Zheng 	BUG_ON(reserve && node->processed);
28103fd0a558SYan, Zheng 
28113fd0a558SYan, Zheng 	while (next) {
28123fd0a558SYan, Zheng 		cond_resched();
28135d4f98a2SYan Zheng 		while (1) {
28143fd0a558SYan, Zheng 			if (next->processed && (reserve || next != node))
28155d4f98a2SYan Zheng 				break;
28165d4f98a2SYan Zheng 
28170b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
28183fd0a558SYan, Zheng 
28193fd0a558SYan, Zheng 			if (list_empty(&next->upper))
28203fd0a558SYan, Zheng 				break;
28213fd0a558SYan, Zheng 
28223fd0a558SYan, Zheng 			edge = list_entry(next->upper.next,
28233fd0a558SYan, Zheng 					  struct backref_edge, list[LOWER]);
28243fd0a558SYan, Zheng 			edges[index++] = edge;
28253fd0a558SYan, Zheng 			next = edge->node[UPPER];
28265d4f98a2SYan Zheng 		}
28273fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
28283fd0a558SYan, Zheng 	}
28293fd0a558SYan, Zheng 	return num_bytes;
28303fd0a558SYan, Zheng }
28313fd0a558SYan, Zheng 
28323fd0a558SYan, Zheng static int reserve_metadata_space(struct btrfs_trans_handle *trans,
28333fd0a558SYan, Zheng 				  struct reloc_control *rc,
28343fd0a558SYan, Zheng 				  struct backref_node *node)
28353fd0a558SYan, Zheng {
28363fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
2837da17066cSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
28383fd0a558SYan, Zheng 	u64 num_bytes;
28393fd0a558SYan, Zheng 	int ret;
28400647bf56SWang Shilong 	u64 tmp;
28413fd0a558SYan, Zheng 
28423fd0a558SYan, Zheng 	num_bytes = calcu_metadata_size(rc, node, 1) * 2;
28433fd0a558SYan, Zheng 
28443fd0a558SYan, Zheng 	trans->block_rsv = rc->block_rsv;
28450647bf56SWang Shilong 	rc->reserved_bytes += num_bytes;
28468ca17f0fSJosef Bacik 
28478ca17f0fSJosef Bacik 	/*
28488ca17f0fSJosef Bacik 	 * We are under a transaction here so we can only do limited flushing.
28498ca17f0fSJosef Bacik 	 * If we get an enospc just kick back -EAGAIN so we know to drop the
28508ca17f0fSJosef Bacik 	 * transaction and try to refill when we can flush all the things.
28518ca17f0fSJosef Bacik 	 */
28520647bf56SWang Shilong 	ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
28538ca17f0fSJosef Bacik 				BTRFS_RESERVE_FLUSH_LIMIT);
28543fd0a558SYan, Zheng 	if (ret) {
2855da17066cSJeff Mahoney 		tmp = fs_info->nodesize * RELOCATION_RESERVED_NODES;
28560647bf56SWang Shilong 		while (tmp <= rc->reserved_bytes)
28570647bf56SWang Shilong 			tmp <<= 1;
28580647bf56SWang Shilong 		/*
28590647bf56SWang Shilong 		 * only one thread can access block_rsv at this point,
28600647bf56SWang Shilong 		 * so we don't need hold lock to protect block_rsv.
28610647bf56SWang Shilong 		 * we expand more reservation size here to allow enough
286252042d8eSAndrea Gelmini 		 * space for relocation and we will return earlier in
28630647bf56SWang Shilong 		 * enospc case.
28640647bf56SWang Shilong 		 */
2865da17066cSJeff Mahoney 		rc->block_rsv->size = tmp + fs_info->nodesize *
28660647bf56SWang Shilong 				      RELOCATION_RESERVED_NODES;
28678ca17f0fSJosef Bacik 		return -EAGAIN;
28683fd0a558SYan, Zheng 	}
28693fd0a558SYan, Zheng 
28703fd0a558SYan, Zheng 	return 0;
28713fd0a558SYan, Zheng }
28723fd0a558SYan, Zheng 
28735d4f98a2SYan Zheng /*
28745d4f98a2SYan Zheng  * relocate a block tree, and then update pointers in upper level
28755d4f98a2SYan Zheng  * blocks that reference the block to point to the new location.
28765d4f98a2SYan Zheng  *
28775d4f98a2SYan Zheng  * if called by link_to_upper, the block has already been relocated.
28785d4f98a2SYan Zheng  * in that case this function just updates pointers.
28795d4f98a2SYan Zheng  */
28805d4f98a2SYan Zheng static int do_relocation(struct btrfs_trans_handle *trans,
28813fd0a558SYan, Zheng 			 struct reloc_control *rc,
28825d4f98a2SYan Zheng 			 struct backref_node *node,
28835d4f98a2SYan Zheng 			 struct btrfs_key *key,
28845d4f98a2SYan Zheng 			 struct btrfs_path *path, int lowest)
28855d4f98a2SYan Zheng {
28862ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
28875d4f98a2SYan Zheng 	struct backref_node *upper;
28885d4f98a2SYan Zheng 	struct backref_edge *edge;
28895d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
28905d4f98a2SYan Zheng 	struct btrfs_root *root;
28915d4f98a2SYan Zheng 	struct extent_buffer *eb;
28925d4f98a2SYan Zheng 	u32 blocksize;
28935d4f98a2SYan Zheng 	u64 bytenr;
28945d4f98a2SYan Zheng 	u64 generation;
28955d4f98a2SYan Zheng 	int slot;
28965d4f98a2SYan Zheng 	int ret;
28975d4f98a2SYan Zheng 	int err = 0;
28985d4f98a2SYan Zheng 
28995d4f98a2SYan Zheng 	BUG_ON(lowest && node->eb);
29005d4f98a2SYan Zheng 
29015d4f98a2SYan Zheng 	path->lowest_level = node->level + 1;
29023fd0a558SYan, Zheng 	rc->backref_cache.path[node->level] = node;
29035d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER]) {
2904581c1760SQu Wenruo 		struct btrfs_key first_key;
290582fa113fSQu Wenruo 		struct btrfs_ref ref = { 0 };
2906581c1760SQu Wenruo 
29075d4f98a2SYan Zheng 		cond_resched();
29085d4f98a2SYan Zheng 
29095d4f98a2SYan Zheng 		upper = edge->node[UPPER];
2910dc4103f9SWang Shilong 		root = select_reloc_root(trans, rc, upper, edges);
29113fd0a558SYan, Zheng 		BUG_ON(!root);
29125d4f98a2SYan Zheng 
29133fd0a558SYan, Zheng 		if (upper->eb && !upper->locked) {
29143fd0a558SYan, Zheng 			if (!lowest) {
29153fd0a558SYan, Zheng 				ret = btrfs_bin_search(upper->eb, key,
29163fd0a558SYan, Zheng 						       upper->level, &slot);
2917cbca7d59SFilipe Manana 				if (ret < 0) {
2918cbca7d59SFilipe Manana 					err = ret;
2919cbca7d59SFilipe Manana 					goto next;
2920cbca7d59SFilipe Manana 				}
29213fd0a558SYan, Zheng 				BUG_ON(ret);
29223fd0a558SYan, Zheng 				bytenr = btrfs_node_blockptr(upper->eb, slot);
29233fd0a558SYan, Zheng 				if (node->eb->start == bytenr)
29243fd0a558SYan, Zheng 					goto next;
29253fd0a558SYan, Zheng 			}
29265d4f98a2SYan Zheng 			drop_node_buffer(upper);
29273fd0a558SYan, Zheng 		}
29285d4f98a2SYan Zheng 
29295d4f98a2SYan Zheng 		if (!upper->eb) {
29305d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
29313561b9dbSLiu Bo 			if (ret) {
29323561b9dbSLiu Bo 				if (ret < 0)
29335d4f98a2SYan Zheng 					err = ret;
29343561b9dbSLiu Bo 				else
29353561b9dbSLiu Bo 					err = -ENOENT;
29363561b9dbSLiu Bo 
29373561b9dbSLiu Bo 				btrfs_release_path(path);
29385d4f98a2SYan Zheng 				break;
29395d4f98a2SYan Zheng 			}
29405d4f98a2SYan Zheng 
29413fd0a558SYan, Zheng 			if (!upper->eb) {
29423fd0a558SYan, Zheng 				upper->eb = path->nodes[upper->level];
29433fd0a558SYan, Zheng 				path->nodes[upper->level] = NULL;
29443fd0a558SYan, Zheng 			} else {
29453fd0a558SYan, Zheng 				BUG_ON(upper->eb != path->nodes[upper->level]);
29463fd0a558SYan, Zheng 			}
29473fd0a558SYan, Zheng 
29483fd0a558SYan, Zheng 			upper->locked = 1;
29493fd0a558SYan, Zheng 			path->locks[upper->level] = 0;
29503fd0a558SYan, Zheng 
29515d4f98a2SYan Zheng 			slot = path->slots[upper->level];
2952b3b4aa74SDavid Sterba 			btrfs_release_path(path);
29535d4f98a2SYan Zheng 		} else {
29545d4f98a2SYan Zheng 			ret = btrfs_bin_search(upper->eb, key, upper->level,
29555d4f98a2SYan Zheng 					       &slot);
2956cbca7d59SFilipe Manana 			if (ret < 0) {
2957cbca7d59SFilipe Manana 				err = ret;
2958cbca7d59SFilipe Manana 				goto next;
2959cbca7d59SFilipe Manana 			}
29605d4f98a2SYan Zheng 			BUG_ON(ret);
29615d4f98a2SYan Zheng 		}
29625d4f98a2SYan Zheng 
29635d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(upper->eb, slot);
29643fd0a558SYan, Zheng 		if (lowest) {
29654547f4d8SLiu Bo 			if (bytenr != node->bytenr) {
29664547f4d8SLiu Bo 				btrfs_err(root->fs_info,
29674547f4d8SLiu Bo 		"lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
29684547f4d8SLiu Bo 					  bytenr, node->bytenr, slot,
29694547f4d8SLiu Bo 					  upper->eb->start);
29704547f4d8SLiu Bo 				err = -EIO;
29714547f4d8SLiu Bo 				goto next;
29724547f4d8SLiu Bo 			}
29735d4f98a2SYan Zheng 		} else {
29743fd0a558SYan, Zheng 			if (node->eb->start == bytenr)
29753fd0a558SYan, Zheng 				goto next;
29765d4f98a2SYan Zheng 		}
29775d4f98a2SYan Zheng 
2978da17066cSJeff Mahoney 		blocksize = root->fs_info->nodesize;
29795d4f98a2SYan Zheng 		generation = btrfs_node_ptr_generation(upper->eb, slot);
2980581c1760SQu Wenruo 		btrfs_node_key_to_cpu(upper->eb, &first_key, slot);
2981581c1760SQu Wenruo 		eb = read_tree_block(fs_info, bytenr, generation,
2982581c1760SQu Wenruo 				     upper->level - 1, &first_key);
298364c043deSLiu Bo 		if (IS_ERR(eb)) {
298464c043deSLiu Bo 			err = PTR_ERR(eb);
298564c043deSLiu Bo 			goto next;
298664c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2987416bc658SJosef Bacik 			free_extent_buffer(eb);
298897d9a8a4STsutomu Itoh 			err = -EIO;
298997d9a8a4STsutomu Itoh 			goto next;
299097d9a8a4STsutomu Itoh 		}
29915d4f98a2SYan Zheng 		btrfs_tree_lock(eb);
29928bead258SDavid Sterba 		btrfs_set_lock_blocking_write(eb);
29935d4f98a2SYan Zheng 
29945d4f98a2SYan Zheng 		if (!node->eb) {
29955d4f98a2SYan Zheng 			ret = btrfs_cow_block(trans, root, eb, upper->eb,
29965d4f98a2SYan Zheng 					      slot, &eb);
29973fd0a558SYan, Zheng 			btrfs_tree_unlock(eb);
29983fd0a558SYan, Zheng 			free_extent_buffer(eb);
29995d4f98a2SYan Zheng 			if (ret < 0) {
30005d4f98a2SYan Zheng 				err = ret;
30013fd0a558SYan, Zheng 				goto next;
30025d4f98a2SYan Zheng 			}
30033fd0a558SYan, Zheng 			BUG_ON(node->eb != eb);
30045d4f98a2SYan Zheng 		} else {
30055d4f98a2SYan Zheng 			btrfs_set_node_blockptr(upper->eb, slot,
30065d4f98a2SYan Zheng 						node->eb->start);
30075d4f98a2SYan Zheng 			btrfs_set_node_ptr_generation(upper->eb, slot,
30085d4f98a2SYan Zheng 						      trans->transid);
30095d4f98a2SYan Zheng 			btrfs_mark_buffer_dirty(upper->eb);
30105d4f98a2SYan Zheng 
301182fa113fSQu Wenruo 			btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
30125d4f98a2SYan Zheng 					       node->eb->start, blocksize,
301382fa113fSQu Wenruo 					       upper->eb->start);
301482fa113fSQu Wenruo 			ref.real_root = root->root_key.objectid;
301582fa113fSQu Wenruo 			btrfs_init_tree_ref(&ref, node->level,
301682fa113fSQu Wenruo 					    btrfs_header_owner(upper->eb));
301782fa113fSQu Wenruo 			ret = btrfs_inc_extent_ref(trans, &ref);
30185d4f98a2SYan Zheng 			BUG_ON(ret);
30195d4f98a2SYan Zheng 
30205d4f98a2SYan Zheng 			ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
30215d4f98a2SYan Zheng 			BUG_ON(ret);
30225d4f98a2SYan Zheng 		}
30233fd0a558SYan, Zheng next:
30243fd0a558SYan, Zheng 		if (!upper->pending)
30253fd0a558SYan, Zheng 			drop_node_buffer(upper);
30263fd0a558SYan, Zheng 		else
30273fd0a558SYan, Zheng 			unlock_node_buffer(upper);
30283fd0a558SYan, Zheng 		if (err)
30293fd0a558SYan, Zheng 			break;
30305d4f98a2SYan Zheng 	}
30313fd0a558SYan, Zheng 
30323fd0a558SYan, Zheng 	if (!err && node->pending) {
30333fd0a558SYan, Zheng 		drop_node_buffer(node);
30343fd0a558SYan, Zheng 		list_move_tail(&node->list, &rc->backref_cache.changed);
30353fd0a558SYan, Zheng 		node->pending = 0;
30365d4f98a2SYan Zheng 	}
30373fd0a558SYan, Zheng 
30385d4f98a2SYan Zheng 	path->lowest_level = 0;
30393fd0a558SYan, Zheng 	BUG_ON(err == -ENOSPC);
30405d4f98a2SYan Zheng 	return err;
30415d4f98a2SYan Zheng }
30425d4f98a2SYan Zheng 
30435d4f98a2SYan Zheng static int link_to_upper(struct btrfs_trans_handle *trans,
30443fd0a558SYan, Zheng 			 struct reloc_control *rc,
30455d4f98a2SYan Zheng 			 struct backref_node *node,
30465d4f98a2SYan Zheng 			 struct btrfs_path *path)
30475d4f98a2SYan Zheng {
30485d4f98a2SYan Zheng 	struct btrfs_key key;
30495d4f98a2SYan Zheng 
30505d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(node->eb, &key, 0);
30513fd0a558SYan, Zheng 	return do_relocation(trans, rc, node, &key, path, 0);
30525d4f98a2SYan Zheng }
30535d4f98a2SYan Zheng 
30545d4f98a2SYan Zheng static int finish_pending_nodes(struct btrfs_trans_handle *trans,
30553fd0a558SYan, Zheng 				struct reloc_control *rc,
30563fd0a558SYan, Zheng 				struct btrfs_path *path, int err)
30575d4f98a2SYan Zheng {
30583fd0a558SYan, Zheng 	LIST_HEAD(list);
30593fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
30605d4f98a2SYan Zheng 	struct backref_node *node;
30615d4f98a2SYan Zheng 	int level;
30625d4f98a2SYan Zheng 	int ret;
30635d4f98a2SYan Zheng 
30645d4f98a2SYan Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
30655d4f98a2SYan Zheng 		while (!list_empty(&cache->pending[level])) {
30665d4f98a2SYan Zheng 			node = list_entry(cache->pending[level].next,
30673fd0a558SYan, Zheng 					  struct backref_node, list);
30683fd0a558SYan, Zheng 			list_move_tail(&node->list, &list);
30693fd0a558SYan, Zheng 			BUG_ON(!node->pending);
30705d4f98a2SYan Zheng 
30713fd0a558SYan, Zheng 			if (!err) {
30723fd0a558SYan, Zheng 				ret = link_to_upper(trans, rc, node, path);
30735d4f98a2SYan Zheng 				if (ret < 0)
30745d4f98a2SYan Zheng 					err = ret;
30755d4f98a2SYan Zheng 			}
30765d4f98a2SYan Zheng 		}
30773fd0a558SYan, Zheng 		list_splice_init(&list, &cache->pending[level]);
30783fd0a558SYan, Zheng 	}
30795d4f98a2SYan Zheng 	return err;
30805d4f98a2SYan Zheng }
30815d4f98a2SYan Zheng 
30825d4f98a2SYan Zheng static void mark_block_processed(struct reloc_control *rc,
30833fd0a558SYan, Zheng 				 u64 bytenr, u32 blocksize)
30843fd0a558SYan, Zheng {
30853fd0a558SYan, Zheng 	set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
3086ceeb0ae7SDavid Sterba 			EXTENT_DIRTY);
30873fd0a558SYan, Zheng }
30883fd0a558SYan, Zheng 
30893fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
30905d4f98a2SYan Zheng 				   struct backref_node *node)
30915d4f98a2SYan Zheng {
30925d4f98a2SYan Zheng 	u32 blocksize;
30935d4f98a2SYan Zheng 	if (node->level == 0 ||
30945d4f98a2SYan Zheng 	    in_block_group(node->bytenr, rc->block_group)) {
3095da17066cSJeff Mahoney 		blocksize = rc->extent_root->fs_info->nodesize;
30963fd0a558SYan, Zheng 		mark_block_processed(rc, node->bytenr, blocksize);
30975d4f98a2SYan Zheng 	}
30985d4f98a2SYan Zheng 	node->processed = 1;
30995d4f98a2SYan Zheng }
31005d4f98a2SYan Zheng 
31015d4f98a2SYan Zheng /*
31025d4f98a2SYan Zheng  * mark a block and all blocks directly/indirectly reference the block
31035d4f98a2SYan Zheng  * as processed.
31045d4f98a2SYan Zheng  */
31055d4f98a2SYan Zheng static void update_processed_blocks(struct reloc_control *rc,
31065d4f98a2SYan Zheng 				    struct backref_node *node)
31075d4f98a2SYan Zheng {
31085d4f98a2SYan Zheng 	struct backref_node *next = node;
31095d4f98a2SYan Zheng 	struct backref_edge *edge;
31105d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
31115d4f98a2SYan Zheng 	int index = 0;
31125d4f98a2SYan Zheng 
31135d4f98a2SYan Zheng 	while (next) {
31145d4f98a2SYan Zheng 		cond_resched();
31155d4f98a2SYan Zheng 		while (1) {
31165d4f98a2SYan Zheng 			if (next->processed)
31175d4f98a2SYan Zheng 				break;
31185d4f98a2SYan Zheng 
31193fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
31205d4f98a2SYan Zheng 
31215d4f98a2SYan Zheng 			if (list_empty(&next->upper))
31225d4f98a2SYan Zheng 				break;
31235d4f98a2SYan Zheng 
31245d4f98a2SYan Zheng 			edge = list_entry(next->upper.next,
31255d4f98a2SYan Zheng 					  struct backref_edge, list[LOWER]);
31265d4f98a2SYan Zheng 			edges[index++] = edge;
31275d4f98a2SYan Zheng 			next = edge->node[UPPER];
31285d4f98a2SYan Zheng 		}
31295d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
31305d4f98a2SYan Zheng 	}
31315d4f98a2SYan Zheng }
31325d4f98a2SYan Zheng 
31337476dfdaSDavid Sterba static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
31345d4f98a2SYan Zheng {
3135da17066cSJeff Mahoney 	u32 blocksize = rc->extent_root->fs_info->nodesize;
31367476dfdaSDavid Sterba 
31375d4f98a2SYan Zheng 	if (test_range_bit(&rc->processed_blocks, bytenr,
31389655d298SChris Mason 			   bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
31395d4f98a2SYan Zheng 		return 1;
31405d4f98a2SYan Zheng 	return 0;
31415d4f98a2SYan Zheng }
31425d4f98a2SYan Zheng 
31432ff7e61eSJeff Mahoney static int get_tree_block_key(struct btrfs_fs_info *fs_info,
31445d4f98a2SYan Zheng 			      struct tree_block *block)
31455d4f98a2SYan Zheng {
31465d4f98a2SYan Zheng 	struct extent_buffer *eb;
31475d4f98a2SYan Zheng 
3148581c1760SQu Wenruo 	eb = read_tree_block(fs_info, block->bytenr, block->key.offset,
3149581c1760SQu Wenruo 			     block->level, NULL);
315064c043deSLiu Bo 	if (IS_ERR(eb)) {
315164c043deSLiu Bo 		return PTR_ERR(eb);
315264c043deSLiu Bo 	} else if (!extent_buffer_uptodate(eb)) {
3153416bc658SJosef Bacik 		free_extent_buffer(eb);
3154416bc658SJosef Bacik 		return -EIO;
3155416bc658SJosef Bacik 	}
31565d4f98a2SYan Zheng 	if (block->level == 0)
31575d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &block->key, 0);
31585d4f98a2SYan Zheng 	else
31595d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(eb, &block->key, 0);
31605d4f98a2SYan Zheng 	free_extent_buffer(eb);
31615d4f98a2SYan Zheng 	block->key_ready = 1;
31625d4f98a2SYan Zheng 	return 0;
31635d4f98a2SYan Zheng }
31645d4f98a2SYan Zheng 
31655d4f98a2SYan Zheng /*
31665d4f98a2SYan Zheng  * helper function to relocate a tree block
31675d4f98a2SYan Zheng  */
31685d4f98a2SYan Zheng static int relocate_tree_block(struct btrfs_trans_handle *trans,
31695d4f98a2SYan Zheng 				struct reloc_control *rc,
31705d4f98a2SYan Zheng 				struct backref_node *node,
31715d4f98a2SYan Zheng 				struct btrfs_key *key,
31725d4f98a2SYan Zheng 				struct btrfs_path *path)
31735d4f98a2SYan Zheng {
31745d4f98a2SYan Zheng 	struct btrfs_root *root;
31753fd0a558SYan, Zheng 	int ret = 0;
31765d4f98a2SYan Zheng 
31773fd0a558SYan, Zheng 	if (!node)
31785d4f98a2SYan Zheng 		return 0;
31793fd0a558SYan, Zheng 
31805f6b2e5cSJosef Bacik 	/*
31815f6b2e5cSJosef Bacik 	 * If we fail here we want to drop our backref_node because we are going
31825f6b2e5cSJosef Bacik 	 * to start over and regenerate the tree for it.
31835f6b2e5cSJosef Bacik 	 */
31845f6b2e5cSJosef Bacik 	ret = reserve_metadata_space(trans, rc, node);
31855f6b2e5cSJosef Bacik 	if (ret)
31865f6b2e5cSJosef Bacik 		goto out;
31875f6b2e5cSJosef Bacik 
31883fd0a558SYan, Zheng 	BUG_ON(node->processed);
3189147d256eSZhaolei 	root = select_one_root(node);
31903fd0a558SYan, Zheng 	if (root == ERR_PTR(-ENOENT)) {
31913fd0a558SYan, Zheng 		update_processed_blocks(rc, node);
31923fd0a558SYan, Zheng 		goto out;
31935d4f98a2SYan Zheng 	}
31945d4f98a2SYan Zheng 
31953fd0a558SYan, Zheng 	if (root) {
319627cdeb70SMiao Xie 		if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
31973fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr);
31983fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->list));
31993fd0a558SYan, Zheng 			btrfs_record_root_in_trans(trans, root);
32003fd0a558SYan, Zheng 			root = root->reloc_root;
32013fd0a558SYan, Zheng 			node->new_bytenr = root->node->start;
320200246528SJosef Bacik 			btrfs_put_root(node->root);
320300246528SJosef Bacik 			node->root = btrfs_grab_root(root);
32040b530bc5SJosef Bacik 			ASSERT(node->root);
32053fd0a558SYan, Zheng 			list_add_tail(&node->list, &rc->backref_cache.changed);
32063fd0a558SYan, Zheng 		} else {
32075d4f98a2SYan Zheng 			path->lowest_level = node->level;
32085d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
3209b3b4aa74SDavid Sterba 			btrfs_release_path(path);
32103fd0a558SYan, Zheng 			if (ret > 0)
32115d4f98a2SYan Zheng 				ret = 0;
32123fd0a558SYan, Zheng 		}
32133fd0a558SYan, Zheng 		if (!ret)
32143fd0a558SYan, Zheng 			update_processed_blocks(rc, node);
32153fd0a558SYan, Zheng 	} else {
32163fd0a558SYan, Zheng 		ret = do_relocation(trans, rc, node, key, path, 1);
32173fd0a558SYan, Zheng 	}
32185d4f98a2SYan Zheng out:
32190647bf56SWang Shilong 	if (ret || node->level == 0 || node->cowonly)
32203fd0a558SYan, Zheng 		remove_backref_node(&rc->backref_cache, node);
32215d4f98a2SYan Zheng 	return ret;
32225d4f98a2SYan Zheng }
32235d4f98a2SYan Zheng 
32245d4f98a2SYan Zheng /*
32255d4f98a2SYan Zheng  * relocate a list of blocks
32265d4f98a2SYan Zheng  */
32275d4f98a2SYan Zheng static noinline_for_stack
32285d4f98a2SYan Zheng int relocate_tree_blocks(struct btrfs_trans_handle *trans,
32295d4f98a2SYan Zheng 			 struct reloc_control *rc, struct rb_root *blocks)
32305d4f98a2SYan Zheng {
32312ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
32325d4f98a2SYan Zheng 	struct backref_node *node;
32335d4f98a2SYan Zheng 	struct btrfs_path *path;
32345d4f98a2SYan Zheng 	struct tree_block *block;
323598ff7b94SQu Wenruo 	struct tree_block *next;
32365d4f98a2SYan Zheng 	int ret;
32375d4f98a2SYan Zheng 	int err = 0;
32385d4f98a2SYan Zheng 
32395d4f98a2SYan Zheng 	path = btrfs_alloc_path();
3240e1a12670SLiu Bo 	if (!path) {
3241e1a12670SLiu Bo 		err = -ENOMEM;
324234c2b290SDavid Sterba 		goto out_free_blocks;
3243e1a12670SLiu Bo 	}
32445d4f98a2SYan Zheng 
324598ff7b94SQu Wenruo 	/* Kick in readahead for tree blocks with missing keys */
324698ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
32475d4f98a2SYan Zheng 		if (!block->key_ready)
32482ff7e61eSJeff Mahoney 			readahead_tree_block(fs_info, block->bytenr);
32495d4f98a2SYan Zheng 	}
32505d4f98a2SYan Zheng 
325198ff7b94SQu Wenruo 	/* Get first keys */
325298ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
325334c2b290SDavid Sterba 		if (!block->key_ready) {
32542ff7e61eSJeff Mahoney 			err = get_tree_block_key(fs_info, block);
325534c2b290SDavid Sterba 			if (err)
325634c2b290SDavid Sterba 				goto out_free_path;
325734c2b290SDavid Sterba 		}
32585d4f98a2SYan Zheng 	}
32595d4f98a2SYan Zheng 
326098ff7b94SQu Wenruo 	/* Do tree relocation */
326198ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
32623fd0a558SYan, Zheng 		node = build_backref_tree(rc, &block->key,
32635d4f98a2SYan Zheng 					  block->level, block->bytenr);
32645d4f98a2SYan Zheng 		if (IS_ERR(node)) {
32655d4f98a2SYan Zheng 			err = PTR_ERR(node);
32665d4f98a2SYan Zheng 			goto out;
32675d4f98a2SYan Zheng 		}
32685d4f98a2SYan Zheng 
32695d4f98a2SYan Zheng 		ret = relocate_tree_block(trans, rc, node, &block->key,
32705d4f98a2SYan Zheng 					  path);
32715d4f98a2SYan Zheng 		if (ret < 0) {
32725d4f98a2SYan Zheng 			err = ret;
327350dbbb71SJosef Bacik 			break;
32745d4f98a2SYan Zheng 		}
32755d4f98a2SYan Zheng 	}
32765d4f98a2SYan Zheng out:
32773fd0a558SYan, Zheng 	err = finish_pending_nodes(trans, rc, path, err);
32785d4f98a2SYan Zheng 
327934c2b290SDavid Sterba out_free_path:
32805d4f98a2SYan Zheng 	btrfs_free_path(path);
328134c2b290SDavid Sterba out_free_blocks:
3282e1a12670SLiu Bo 	free_block_list(blocks);
32835d4f98a2SYan Zheng 	return err;
32845d4f98a2SYan Zheng }
32855d4f98a2SYan Zheng 
32865d4f98a2SYan Zheng static noinline_for_stack
3287efa56464SYan, Zheng int prealloc_file_extent_cluster(struct inode *inode,
3288efa56464SYan, Zheng 				 struct file_extent_cluster *cluster)
3289efa56464SYan, Zheng {
3290efa56464SYan, Zheng 	u64 alloc_hint = 0;
3291efa56464SYan, Zheng 	u64 start;
3292efa56464SYan, Zheng 	u64 end;
3293efa56464SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
3294efa56464SYan, Zheng 	u64 num_bytes;
3295efa56464SYan, Zheng 	int nr = 0;
3296efa56464SYan, Zheng 	int ret = 0;
3297dcb40c19SWang Xiaoguang 	u64 prealloc_start = cluster->start - offset;
3298dcb40c19SWang Xiaoguang 	u64 prealloc_end = cluster->end - offset;
329918513091SWang Xiaoguang 	u64 cur_offset;
3300364ecf36SQu Wenruo 	struct extent_changeset *data_reserved = NULL;
3301efa56464SYan, Zheng 
3302efa56464SYan, Zheng 	BUG_ON(cluster->start != cluster->boundary[0]);
33035955102cSAl Viro 	inode_lock(inode);
3304efa56464SYan, Zheng 
3305364ecf36SQu Wenruo 	ret = btrfs_check_data_free_space(inode, &data_reserved, prealloc_start,
3306dcb40c19SWang Xiaoguang 					  prealloc_end + 1 - prealloc_start);
3307efa56464SYan, Zheng 	if (ret)
3308efa56464SYan, Zheng 		goto out;
3309efa56464SYan, Zheng 
331018513091SWang Xiaoguang 	cur_offset = prealloc_start;
3311efa56464SYan, Zheng 	while (nr < cluster->nr) {
3312efa56464SYan, Zheng 		start = cluster->boundary[nr] - offset;
3313efa56464SYan, Zheng 		if (nr + 1 < cluster->nr)
3314efa56464SYan, Zheng 			end = cluster->boundary[nr + 1] - 1 - offset;
3315efa56464SYan, Zheng 		else
3316efa56464SYan, Zheng 			end = cluster->end - offset;
3317efa56464SYan, Zheng 
3318d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
3319efa56464SYan, Zheng 		num_bytes = end + 1 - start;
332018513091SWang Xiaoguang 		if (cur_offset < start)
3321bc42bda2SQu Wenruo 			btrfs_free_reserved_data_space(inode, data_reserved,
3322bc42bda2SQu Wenruo 					cur_offset, start - cur_offset);
3323efa56464SYan, Zheng 		ret = btrfs_prealloc_file_range(inode, 0, start,
3324efa56464SYan, Zheng 						num_bytes, num_bytes,
3325efa56464SYan, Zheng 						end + 1, &alloc_hint);
332618513091SWang Xiaoguang 		cur_offset = end + 1;
3327d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
3328efa56464SYan, Zheng 		if (ret)
3329efa56464SYan, Zheng 			break;
3330efa56464SYan, Zheng 		nr++;
3331efa56464SYan, Zheng 	}
333218513091SWang Xiaoguang 	if (cur_offset < prealloc_end)
3333bc42bda2SQu Wenruo 		btrfs_free_reserved_data_space(inode, data_reserved,
3334bc42bda2SQu Wenruo 				cur_offset, prealloc_end + 1 - cur_offset);
3335efa56464SYan, Zheng out:
33365955102cSAl Viro 	inode_unlock(inode);
3337364ecf36SQu Wenruo 	extent_changeset_free(data_reserved);
3338efa56464SYan, Zheng 	return ret;
3339efa56464SYan, Zheng }
3340efa56464SYan, Zheng 
3341efa56464SYan, Zheng static noinline_for_stack
33420257bb82SYan, Zheng int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
33430257bb82SYan, Zheng 			 u64 block_start)
33445d4f98a2SYan Zheng {
33455d4f98a2SYan Zheng 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
33465d4f98a2SYan Zheng 	struct extent_map *em;
33470257bb82SYan, Zheng 	int ret = 0;
33485d4f98a2SYan Zheng 
3349172ddd60SDavid Sterba 	em = alloc_extent_map();
33500257bb82SYan, Zheng 	if (!em)
33510257bb82SYan, Zheng 		return -ENOMEM;
33520257bb82SYan, Zheng 
33535d4f98a2SYan Zheng 	em->start = start;
33540257bb82SYan, Zheng 	em->len = end + 1 - start;
33550257bb82SYan, Zheng 	em->block_len = em->len;
33560257bb82SYan, Zheng 	em->block_start = block_start;
33575d4f98a2SYan Zheng 	set_bit(EXTENT_FLAG_PINNED, &em->flags);
33585d4f98a2SYan Zheng 
3359d0082371SJeff Mahoney 	lock_extent(&BTRFS_I(inode)->io_tree, start, end);
33605d4f98a2SYan Zheng 	while (1) {
3361890871beSChris Mason 		write_lock(&em_tree->lock);
336209a2a8f9SJosef Bacik 		ret = add_extent_mapping(em_tree, em, 0);
3363890871beSChris Mason 		write_unlock(&em_tree->lock);
33645d4f98a2SYan Zheng 		if (ret != -EEXIST) {
33655d4f98a2SYan Zheng 			free_extent_map(em);
33665d4f98a2SYan Zheng 			break;
33675d4f98a2SYan Zheng 		}
3368dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
33695d4f98a2SYan Zheng 	}
3370d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
33710257bb82SYan, Zheng 	return ret;
33720257bb82SYan, Zheng }
33735d4f98a2SYan Zheng 
3374726a3421SQu Wenruo /*
3375726a3421SQu Wenruo  * Allow error injection to test balance cancellation
3376726a3421SQu Wenruo  */
3377726a3421SQu Wenruo int btrfs_should_cancel_balance(struct btrfs_fs_info *fs_info)
3378726a3421SQu Wenruo {
3379726a3421SQu Wenruo 	return atomic_read(&fs_info->balance_cancel_req);
3380726a3421SQu Wenruo }
3381726a3421SQu Wenruo ALLOW_ERROR_INJECTION(btrfs_should_cancel_balance, TRUE);
3382726a3421SQu Wenruo 
33830257bb82SYan, Zheng static int relocate_file_extent_cluster(struct inode *inode,
33840257bb82SYan, Zheng 					struct file_extent_cluster *cluster)
33850257bb82SYan, Zheng {
33862ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
33870257bb82SYan, Zheng 	u64 page_start;
33880257bb82SYan, Zheng 	u64 page_end;
33890257bb82SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
33900257bb82SYan, Zheng 	unsigned long index;
33910257bb82SYan, Zheng 	unsigned long last_index;
33920257bb82SYan, Zheng 	struct page *page;
33930257bb82SYan, Zheng 	struct file_ra_state *ra;
33943b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
33950257bb82SYan, Zheng 	int nr = 0;
33960257bb82SYan, Zheng 	int ret = 0;
33970257bb82SYan, Zheng 
33980257bb82SYan, Zheng 	if (!cluster->nr)
33990257bb82SYan, Zheng 		return 0;
34000257bb82SYan, Zheng 
34010257bb82SYan, Zheng 	ra = kzalloc(sizeof(*ra), GFP_NOFS);
34020257bb82SYan, Zheng 	if (!ra)
34030257bb82SYan, Zheng 		return -ENOMEM;
34040257bb82SYan, Zheng 
3405efa56464SYan, Zheng 	ret = prealloc_file_extent_cluster(inode, cluster);
34060257bb82SYan, Zheng 	if (ret)
3407efa56464SYan, Zheng 		goto out;
34080257bb82SYan, Zheng 
34090257bb82SYan, Zheng 	file_ra_state_init(ra, inode->i_mapping);
34100257bb82SYan, Zheng 
3411efa56464SYan, Zheng 	ret = setup_extent_mapping(inode, cluster->start - offset,
3412efa56464SYan, Zheng 				   cluster->end - offset, cluster->start);
3413efa56464SYan, Zheng 	if (ret)
3414efa56464SYan, Zheng 		goto out;
3415efa56464SYan, Zheng 
341609cbfeafSKirill A. Shutemov 	index = (cluster->start - offset) >> PAGE_SHIFT;
341709cbfeafSKirill A. Shutemov 	last_index = (cluster->end - offset) >> PAGE_SHIFT;
34180257bb82SYan, Zheng 	while (index <= last_index) {
34199f3db423SNikolay Borisov 		ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
34209f3db423SNikolay Borisov 				PAGE_SIZE);
3421efa56464SYan, Zheng 		if (ret)
3422efa56464SYan, Zheng 			goto out;
3423efa56464SYan, Zheng 
34240257bb82SYan, Zheng 		page = find_lock_page(inode->i_mapping, index);
34250257bb82SYan, Zheng 		if (!page) {
34260257bb82SYan, Zheng 			page_cache_sync_readahead(inode->i_mapping,
34270257bb82SYan, Zheng 						  ra, NULL, index,
34280257bb82SYan, Zheng 						  last_index + 1 - index);
3429a94733d0SJosef Bacik 			page = find_or_create_page(inode->i_mapping, index,
34303b16a4e3SJosef Bacik 						   mask);
34310257bb82SYan, Zheng 			if (!page) {
3432691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
343343b18595SQu Wenruo 							PAGE_SIZE, true);
343444db1216SFilipe Manana 				btrfs_delalloc_release_extents(BTRFS_I(inode),
34358702ba93SQu Wenruo 							PAGE_SIZE);
34360257bb82SYan, Zheng 				ret = -ENOMEM;
3437efa56464SYan, Zheng 				goto out;
34380257bb82SYan, Zheng 			}
34390257bb82SYan, Zheng 		}
34400257bb82SYan, Zheng 
34410257bb82SYan, Zheng 		if (PageReadahead(page)) {
34420257bb82SYan, Zheng 			page_cache_async_readahead(inode->i_mapping,
34430257bb82SYan, Zheng 						   ra, NULL, page, index,
34440257bb82SYan, Zheng 						   last_index + 1 - index);
34450257bb82SYan, Zheng 		}
34460257bb82SYan, Zheng 
34470257bb82SYan, Zheng 		if (!PageUptodate(page)) {
34480257bb82SYan, Zheng 			btrfs_readpage(NULL, page);
34490257bb82SYan, Zheng 			lock_page(page);
34500257bb82SYan, Zheng 			if (!PageUptodate(page)) {
34510257bb82SYan, Zheng 				unlock_page(page);
345209cbfeafSKirill A. Shutemov 				put_page(page);
3453691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
345443b18595SQu Wenruo 							PAGE_SIZE, true);
34558b62f87bSJosef Bacik 				btrfs_delalloc_release_extents(BTRFS_I(inode),
34568702ba93SQu Wenruo 							       PAGE_SIZE);
34570257bb82SYan, Zheng 				ret = -EIO;
3458efa56464SYan, Zheng 				goto out;
34590257bb82SYan, Zheng 			}
34600257bb82SYan, Zheng 		}
34610257bb82SYan, Zheng 
34624eee4fa4SMiao Xie 		page_start = page_offset(page);
346309cbfeafSKirill A. Shutemov 		page_end = page_start + PAGE_SIZE - 1;
34640257bb82SYan, Zheng 
3465d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
34660257bb82SYan, Zheng 
34670257bb82SYan, Zheng 		set_page_extent_mapped(page);
34680257bb82SYan, Zheng 
34690257bb82SYan, Zheng 		if (nr < cluster->nr &&
34700257bb82SYan, Zheng 		    page_start + offset == cluster->boundary[nr]) {
34710257bb82SYan, Zheng 			set_extent_bits(&BTRFS_I(inode)->io_tree,
34720257bb82SYan, Zheng 					page_start, page_end,
3473ceeb0ae7SDavid Sterba 					EXTENT_BOUNDARY);
34740257bb82SYan, Zheng 			nr++;
34750257bb82SYan, Zheng 		}
34760257bb82SYan, Zheng 
3477765f3cebSNikolay Borisov 		ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
3478330a5827SNikolay Borisov 						NULL);
3479765f3cebSNikolay Borisov 		if (ret) {
3480765f3cebSNikolay Borisov 			unlock_page(page);
3481765f3cebSNikolay Borisov 			put_page(page);
3482765f3cebSNikolay Borisov 			btrfs_delalloc_release_metadata(BTRFS_I(inode),
348343b18595SQu Wenruo 							 PAGE_SIZE, true);
3484765f3cebSNikolay Borisov 			btrfs_delalloc_release_extents(BTRFS_I(inode),
34858702ba93SQu Wenruo 			                               PAGE_SIZE);
3486765f3cebSNikolay Borisov 
3487765f3cebSNikolay Borisov 			clear_extent_bits(&BTRFS_I(inode)->io_tree,
3488765f3cebSNikolay Borisov 					  page_start, page_end,
3489765f3cebSNikolay Borisov 					  EXTENT_LOCKED | EXTENT_BOUNDARY);
3490765f3cebSNikolay Borisov 			goto out;
3491765f3cebSNikolay Borisov 
3492765f3cebSNikolay Borisov 		}
34930257bb82SYan, Zheng 		set_page_dirty(page);
34940257bb82SYan, Zheng 
34950257bb82SYan, Zheng 		unlock_extent(&BTRFS_I(inode)->io_tree,
3496d0082371SJeff Mahoney 			      page_start, page_end);
34970257bb82SYan, Zheng 		unlock_page(page);
349809cbfeafSKirill A. Shutemov 		put_page(page);
34990257bb82SYan, Zheng 
35000257bb82SYan, Zheng 		index++;
35018702ba93SQu Wenruo 		btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
3502efa56464SYan, Zheng 		balance_dirty_pages_ratelimited(inode->i_mapping);
35032ff7e61eSJeff Mahoney 		btrfs_throttle(fs_info);
35047f913c7cSQu Wenruo 		if (btrfs_should_cancel_balance(fs_info)) {
35057f913c7cSQu Wenruo 			ret = -ECANCELED;
35067f913c7cSQu Wenruo 			goto out;
35077f913c7cSQu Wenruo 		}
35080257bb82SYan, Zheng 	}
35090257bb82SYan, Zheng 	WARN_ON(nr != cluster->nr);
3510efa56464SYan, Zheng out:
35110257bb82SYan, Zheng 	kfree(ra);
35120257bb82SYan, Zheng 	return ret;
35130257bb82SYan, Zheng }
35140257bb82SYan, Zheng 
35150257bb82SYan, Zheng static noinline_for_stack
35160257bb82SYan, Zheng int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
35170257bb82SYan, Zheng 			 struct file_extent_cluster *cluster)
35180257bb82SYan, Zheng {
35190257bb82SYan, Zheng 	int ret;
35200257bb82SYan, Zheng 
35210257bb82SYan, Zheng 	if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
35220257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
35230257bb82SYan, Zheng 		if (ret)
35240257bb82SYan, Zheng 			return ret;
35250257bb82SYan, Zheng 		cluster->nr = 0;
35260257bb82SYan, Zheng 	}
35270257bb82SYan, Zheng 
35280257bb82SYan, Zheng 	if (!cluster->nr)
35290257bb82SYan, Zheng 		cluster->start = extent_key->objectid;
35300257bb82SYan, Zheng 	else
35310257bb82SYan, Zheng 		BUG_ON(cluster->nr >= MAX_EXTENTS);
35320257bb82SYan, Zheng 	cluster->end = extent_key->objectid + extent_key->offset - 1;
35330257bb82SYan, Zheng 	cluster->boundary[cluster->nr] = extent_key->objectid;
35340257bb82SYan, Zheng 	cluster->nr++;
35350257bb82SYan, Zheng 
35360257bb82SYan, Zheng 	if (cluster->nr >= MAX_EXTENTS) {
35370257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
35380257bb82SYan, Zheng 		if (ret)
35390257bb82SYan, Zheng 			return ret;
35400257bb82SYan, Zheng 		cluster->nr = 0;
35410257bb82SYan, Zheng 	}
35420257bb82SYan, Zheng 	return 0;
35435d4f98a2SYan Zheng }
35445d4f98a2SYan Zheng 
35455d4f98a2SYan Zheng /*
35465d4f98a2SYan Zheng  * helper to add a tree block to the list.
35475d4f98a2SYan Zheng  * the major work is getting the generation and level of the block
35485d4f98a2SYan Zheng  */
35495d4f98a2SYan Zheng static int add_tree_block(struct reloc_control *rc,
35505d4f98a2SYan Zheng 			  struct btrfs_key *extent_key,
35515d4f98a2SYan Zheng 			  struct btrfs_path *path,
35525d4f98a2SYan Zheng 			  struct rb_root *blocks)
35535d4f98a2SYan Zheng {
35545d4f98a2SYan Zheng 	struct extent_buffer *eb;
35555d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
35565d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
35575d4f98a2SYan Zheng 	struct tree_block *block;
35585d4f98a2SYan Zheng 	struct rb_node *rb_node;
35595d4f98a2SYan Zheng 	u32 item_size;
35605d4f98a2SYan Zheng 	int level = -1;
35617fdf4b60SWang Shilong 	u64 generation;
35625d4f98a2SYan Zheng 
35635d4f98a2SYan Zheng 	eb =  path->nodes[0];
35645d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(eb, path->slots[0]);
35655d4f98a2SYan Zheng 
35663173a18fSJosef Bacik 	if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
35673173a18fSJosef Bacik 	    item_size >= sizeof(*ei) + sizeof(*bi)) {
35685d4f98a2SYan Zheng 		ei = btrfs_item_ptr(eb, path->slots[0],
35695d4f98a2SYan Zheng 				struct btrfs_extent_item);
35703173a18fSJosef Bacik 		if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
35715d4f98a2SYan Zheng 			bi = (struct btrfs_tree_block_info *)(ei + 1);
35725d4f98a2SYan Zheng 			level = btrfs_tree_block_level(eb, bi);
35735d4f98a2SYan Zheng 		} else {
35743173a18fSJosef Bacik 			level = (int)extent_key->offset;
35753173a18fSJosef Bacik 		}
35763173a18fSJosef Bacik 		generation = btrfs_extent_generation(eb, ei);
35776d8ff4e4SDavid Sterba 	} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
3578ba3c2b19SNikolay Borisov 		btrfs_print_v0_err(eb->fs_info);
3579ba3c2b19SNikolay Borisov 		btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3580ba3c2b19SNikolay Borisov 		return -EINVAL;
35813173a18fSJosef Bacik 	} else {
35825d4f98a2SYan Zheng 		BUG();
35835d4f98a2SYan Zheng 	}
35845d4f98a2SYan Zheng 
3585b3b4aa74SDavid Sterba 	btrfs_release_path(path);
35865d4f98a2SYan Zheng 
35875d4f98a2SYan Zheng 	BUG_ON(level == -1);
35885d4f98a2SYan Zheng 
35895d4f98a2SYan Zheng 	block = kmalloc(sizeof(*block), GFP_NOFS);
35905d4f98a2SYan Zheng 	if (!block)
35915d4f98a2SYan Zheng 		return -ENOMEM;
35925d4f98a2SYan Zheng 
35935d4f98a2SYan Zheng 	block->bytenr = extent_key->objectid;
3594da17066cSJeff Mahoney 	block->key.objectid = rc->extent_root->fs_info->nodesize;
35955d4f98a2SYan Zheng 	block->key.offset = generation;
35965d4f98a2SYan Zheng 	block->level = level;
35975d4f98a2SYan Zheng 	block->key_ready = 0;
35985d4f98a2SYan Zheng 
35995d4f98a2SYan Zheng 	rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
360043c04fb1SJeff Mahoney 	if (rb_node)
360143c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, block->bytenr);
36025d4f98a2SYan Zheng 
36035d4f98a2SYan Zheng 	return 0;
36045d4f98a2SYan Zheng }
36055d4f98a2SYan Zheng 
36065d4f98a2SYan Zheng /*
36075d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
36085d4f98a2SYan Zheng  */
36095d4f98a2SYan Zheng static int __add_tree_block(struct reloc_control *rc,
36105d4f98a2SYan Zheng 			    u64 bytenr, u32 blocksize,
36115d4f98a2SYan Zheng 			    struct rb_root *blocks)
36125d4f98a2SYan Zheng {
36130b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
36145d4f98a2SYan Zheng 	struct btrfs_path *path;
36155d4f98a2SYan Zheng 	struct btrfs_key key;
36165d4f98a2SYan Zheng 	int ret;
36170b246afaSJeff Mahoney 	bool skinny = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
36185d4f98a2SYan Zheng 
36197476dfdaSDavid Sterba 	if (tree_block_processed(bytenr, rc))
36205d4f98a2SYan Zheng 		return 0;
36215d4f98a2SYan Zheng 
36225d4f98a2SYan Zheng 	if (tree_search(blocks, bytenr))
36235d4f98a2SYan Zheng 		return 0;
36245d4f98a2SYan Zheng 
36255d4f98a2SYan Zheng 	path = btrfs_alloc_path();
36265d4f98a2SYan Zheng 	if (!path)
36275d4f98a2SYan Zheng 		return -ENOMEM;
3628aee68ee5SJosef Bacik again:
36295d4f98a2SYan Zheng 	key.objectid = bytenr;
3630aee68ee5SJosef Bacik 	if (skinny) {
3631aee68ee5SJosef Bacik 		key.type = BTRFS_METADATA_ITEM_KEY;
3632aee68ee5SJosef Bacik 		key.offset = (u64)-1;
3633aee68ee5SJosef Bacik 	} else {
36345d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
36355d4f98a2SYan Zheng 		key.offset = blocksize;
3636aee68ee5SJosef Bacik 	}
36375d4f98a2SYan Zheng 
36385d4f98a2SYan Zheng 	path->search_commit_root = 1;
36395d4f98a2SYan Zheng 	path->skip_locking = 1;
36405d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
36415d4f98a2SYan Zheng 	if (ret < 0)
36425d4f98a2SYan Zheng 		goto out;
36435d4f98a2SYan Zheng 
3644aee68ee5SJosef Bacik 	if (ret > 0 && skinny) {
3645aee68ee5SJosef Bacik 		if (path->slots[0]) {
3646aee68ee5SJosef Bacik 			path->slots[0]--;
3647aee68ee5SJosef Bacik 			btrfs_item_key_to_cpu(path->nodes[0], &key,
3648aee68ee5SJosef Bacik 					      path->slots[0]);
36493173a18fSJosef Bacik 			if (key.objectid == bytenr &&
3650aee68ee5SJosef Bacik 			    (key.type == BTRFS_METADATA_ITEM_KEY ||
3651aee68ee5SJosef Bacik 			     (key.type == BTRFS_EXTENT_ITEM_KEY &&
3652aee68ee5SJosef Bacik 			      key.offset == blocksize)))
36533173a18fSJosef Bacik 				ret = 0;
36543173a18fSJosef Bacik 		}
3655aee68ee5SJosef Bacik 
3656aee68ee5SJosef Bacik 		if (ret) {
3657aee68ee5SJosef Bacik 			skinny = false;
3658aee68ee5SJosef Bacik 			btrfs_release_path(path);
3659aee68ee5SJosef Bacik 			goto again;
3660aee68ee5SJosef Bacik 		}
3661aee68ee5SJosef Bacik 	}
3662cdccee99SLiu Bo 	if (ret) {
3663cdccee99SLiu Bo 		ASSERT(ret == 1);
3664cdccee99SLiu Bo 		btrfs_print_leaf(path->nodes[0]);
3665cdccee99SLiu Bo 		btrfs_err(fs_info,
3666cdccee99SLiu Bo 	     "tree block extent item (%llu) is not found in extent tree",
3667cdccee99SLiu Bo 		     bytenr);
3668cdccee99SLiu Bo 		WARN_ON(1);
3669cdccee99SLiu Bo 		ret = -EINVAL;
3670cdccee99SLiu Bo 		goto out;
3671cdccee99SLiu Bo 	}
36723173a18fSJosef Bacik 
36735d4f98a2SYan Zheng 	ret = add_tree_block(rc, &key, path, blocks);
36745d4f98a2SYan Zheng out:
36755d4f98a2SYan Zheng 	btrfs_free_path(path);
36765d4f98a2SYan Zheng 	return ret;
36775d4f98a2SYan Zheng }
36785d4f98a2SYan Zheng 
36790af3d00bSJosef Bacik static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
368032da5386SDavid Sterba 				    struct btrfs_block_group *block_group,
36811bbc621eSChris Mason 				    struct inode *inode,
36821bbc621eSChris Mason 				    u64 ino)
36830af3d00bSJosef Bacik {
36840af3d00bSJosef Bacik 	struct btrfs_key key;
36850af3d00bSJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
36860af3d00bSJosef Bacik 	struct btrfs_trans_handle *trans;
36870af3d00bSJosef Bacik 	int ret = 0;
36880af3d00bSJosef Bacik 
36890af3d00bSJosef Bacik 	if (inode)
36900af3d00bSJosef Bacik 		goto truncate;
36910af3d00bSJosef Bacik 
36920af3d00bSJosef Bacik 	key.objectid = ino;
36930af3d00bSJosef Bacik 	key.type = BTRFS_INODE_ITEM_KEY;
36940af3d00bSJosef Bacik 	key.offset = 0;
36950af3d00bSJosef Bacik 
36964c66e0d4SDavid Sterba 	inode = btrfs_iget(fs_info->sb, &key, root);
36972e19f1f9SAl Viro 	if (IS_ERR(inode))
36980af3d00bSJosef Bacik 		return -ENOENT;
36990af3d00bSJosef Bacik 
37000af3d00bSJosef Bacik truncate:
37012ff7e61eSJeff Mahoney 	ret = btrfs_check_trunc_cache_free_space(fs_info,
37027b61cd92SMiao Xie 						 &fs_info->global_block_rsv);
37037b61cd92SMiao Xie 	if (ret)
37047b61cd92SMiao Xie 		goto out;
37057b61cd92SMiao Xie 
37067a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
37070af3d00bSJosef Bacik 	if (IS_ERR(trans)) {
37083612b495STsutomu Itoh 		ret = PTR_ERR(trans);
37090af3d00bSJosef Bacik 		goto out;
37100af3d00bSJosef Bacik 	}
37110af3d00bSJosef Bacik 
371277ab86bfSJeff Mahoney 	ret = btrfs_truncate_free_space_cache(trans, block_group, inode);
37130af3d00bSJosef Bacik 
37143a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
37152ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
37160af3d00bSJosef Bacik out:
37170af3d00bSJosef Bacik 	iput(inode);
37180af3d00bSJosef Bacik 	return ret;
37190af3d00bSJosef Bacik }
37200af3d00bSJosef Bacik 
37215d4f98a2SYan Zheng /*
372219b546d7SQu Wenruo  * Locate the free space cache EXTENT_DATA in root tree leaf and delete the
372319b546d7SQu Wenruo  * cache inode, to avoid free space cache data extent blocking data relocation.
37245d4f98a2SYan Zheng  */
372519b546d7SQu Wenruo static int delete_v1_space_cache(struct extent_buffer *leaf,
372619b546d7SQu Wenruo 				 struct btrfs_block_group *block_group,
372719b546d7SQu Wenruo 				 u64 data_bytenr)
37285d4f98a2SYan Zheng {
372919b546d7SQu Wenruo 	u64 space_cache_ino;
373019b546d7SQu Wenruo 	struct btrfs_file_extent_item *ei;
37315d4f98a2SYan Zheng 	struct btrfs_key key;
373219b546d7SQu Wenruo 	bool found = false;
373319b546d7SQu Wenruo 	int i;
37345d4f98a2SYan Zheng 	int ret;
37355d4f98a2SYan Zheng 
373619b546d7SQu Wenruo 	if (btrfs_header_owner(leaf) != BTRFS_ROOT_TREE_OBJECTID)
373719b546d7SQu Wenruo 		return 0;
37385d4f98a2SYan Zheng 
373919b546d7SQu Wenruo 	for (i = 0; i < btrfs_header_nritems(leaf); i++) {
374019b546d7SQu Wenruo 		btrfs_item_key_to_cpu(leaf, &key, i);
374119b546d7SQu Wenruo 		if (key.type != BTRFS_EXTENT_DATA_KEY)
374219b546d7SQu Wenruo 			continue;
374319b546d7SQu Wenruo 		ei = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
374419b546d7SQu Wenruo 		if (btrfs_file_extent_type(leaf, ei) == BTRFS_FILE_EXTENT_REG &&
374519b546d7SQu Wenruo 		    btrfs_file_extent_disk_bytenr(leaf, ei) == data_bytenr) {
374619b546d7SQu Wenruo 			found = true;
374719b546d7SQu Wenruo 			space_cache_ino = key.objectid;
374819b546d7SQu Wenruo 			break;
374919b546d7SQu Wenruo 		}
375019b546d7SQu Wenruo 	}
375119b546d7SQu Wenruo 	if (!found)
375219b546d7SQu Wenruo 		return -ENOENT;
375319b546d7SQu Wenruo 	ret = delete_block_group_cache(leaf->fs_info, block_group, NULL,
375419b546d7SQu Wenruo 					space_cache_ino);
37550af3d00bSJosef Bacik 	return ret;
37565d4f98a2SYan Zheng }
37575d4f98a2SYan Zheng 
37585d4f98a2SYan Zheng /*
37592c016dc2SLiu Bo  * helper to find all tree blocks that reference a given data extent
37605d4f98a2SYan Zheng  */
37615d4f98a2SYan Zheng static noinline_for_stack
37625d4f98a2SYan Zheng int add_data_references(struct reloc_control *rc,
37635d4f98a2SYan Zheng 			struct btrfs_key *extent_key,
37645d4f98a2SYan Zheng 			struct btrfs_path *path,
37655d4f98a2SYan Zheng 			struct rb_root *blocks)
37665d4f98a2SYan Zheng {
376719b546d7SQu Wenruo 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
376819b546d7SQu Wenruo 	struct ulist *leaves = NULL;
376919b546d7SQu Wenruo 	struct ulist_iterator leaf_uiter;
377019b546d7SQu Wenruo 	struct ulist_node *ref_node = NULL;
377119b546d7SQu Wenruo 	const u32 blocksize = fs_info->nodesize;
3772647f63bdSFilipe David Borba Manana 	int ret = 0;
37735d4f98a2SYan Zheng 
3774b3b4aa74SDavid Sterba 	btrfs_release_path(path);
377519b546d7SQu Wenruo 	ret = btrfs_find_all_leafs(NULL, fs_info, extent_key->objectid,
377619b546d7SQu Wenruo 				   0, &leaves, NULL, true);
377719b546d7SQu Wenruo 	if (ret < 0)
377819b546d7SQu Wenruo 		return ret;
377919b546d7SQu Wenruo 
378019b546d7SQu Wenruo 	ULIST_ITER_INIT(&leaf_uiter);
378119b546d7SQu Wenruo 	while ((ref_node = ulist_next(leaves, &leaf_uiter))) {
378219b546d7SQu Wenruo 		struct extent_buffer *eb;
378319b546d7SQu Wenruo 
378419b546d7SQu Wenruo 		eb = read_tree_block(fs_info, ref_node->val, 0, 0, NULL);
378519b546d7SQu Wenruo 		if (IS_ERR(eb)) {
378619b546d7SQu Wenruo 			ret = PTR_ERR(eb);
378719b546d7SQu Wenruo 			break;
378819b546d7SQu Wenruo 		}
378919b546d7SQu Wenruo 		ret = delete_v1_space_cache(eb, rc->block_group,
379019b546d7SQu Wenruo 					    extent_key->objectid);
379119b546d7SQu Wenruo 		free_extent_buffer(eb);
379219b546d7SQu Wenruo 		if (ret < 0)
379319b546d7SQu Wenruo 			break;
379419b546d7SQu Wenruo 		ret = __add_tree_block(rc, ref_node->val, blocksize, blocks);
379519b546d7SQu Wenruo 		if (ret < 0)
379619b546d7SQu Wenruo 			break;
379719b546d7SQu Wenruo 	}
379819b546d7SQu Wenruo 	if (ret < 0)
37995d4f98a2SYan Zheng 		free_block_list(blocks);
380019b546d7SQu Wenruo 	ulist_free(leaves);
380119b546d7SQu Wenruo 	return ret;
38025d4f98a2SYan Zheng }
38035d4f98a2SYan Zheng 
38045d4f98a2SYan Zheng /*
38052c016dc2SLiu Bo  * helper to find next unprocessed extent
38065d4f98a2SYan Zheng  */
38075d4f98a2SYan Zheng static noinline_for_stack
3808147d256eSZhaolei int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
38093fd0a558SYan, Zheng 		     struct btrfs_key *extent_key)
38105d4f98a2SYan Zheng {
38110b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38125d4f98a2SYan Zheng 	struct btrfs_key key;
38135d4f98a2SYan Zheng 	struct extent_buffer *leaf;
38145d4f98a2SYan Zheng 	u64 start, end, last;
38155d4f98a2SYan Zheng 	int ret;
38165d4f98a2SYan Zheng 
3817b3470b5dSDavid Sterba 	last = rc->block_group->start + rc->block_group->length;
38185d4f98a2SYan Zheng 	while (1) {
38195d4f98a2SYan Zheng 		cond_resched();
38205d4f98a2SYan Zheng 		if (rc->search_start >= last) {
38215d4f98a2SYan Zheng 			ret = 1;
38225d4f98a2SYan Zheng 			break;
38235d4f98a2SYan Zheng 		}
38245d4f98a2SYan Zheng 
38255d4f98a2SYan Zheng 		key.objectid = rc->search_start;
38265d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
38275d4f98a2SYan Zheng 		key.offset = 0;
38285d4f98a2SYan Zheng 
38295d4f98a2SYan Zheng 		path->search_commit_root = 1;
38305d4f98a2SYan Zheng 		path->skip_locking = 1;
38315d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
38325d4f98a2SYan Zheng 					0, 0);
38335d4f98a2SYan Zheng 		if (ret < 0)
38345d4f98a2SYan Zheng 			break;
38355d4f98a2SYan Zheng next:
38365d4f98a2SYan Zheng 		leaf = path->nodes[0];
38375d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(leaf)) {
38385d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
38395d4f98a2SYan Zheng 			if (ret != 0)
38405d4f98a2SYan Zheng 				break;
38415d4f98a2SYan Zheng 			leaf = path->nodes[0];
38425d4f98a2SYan Zheng 		}
38435d4f98a2SYan Zheng 
38445d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
38455d4f98a2SYan Zheng 		if (key.objectid >= last) {
38465d4f98a2SYan Zheng 			ret = 1;
38475d4f98a2SYan Zheng 			break;
38485d4f98a2SYan Zheng 		}
38495d4f98a2SYan Zheng 
38503173a18fSJosef Bacik 		if (key.type != BTRFS_EXTENT_ITEM_KEY &&
38513173a18fSJosef Bacik 		    key.type != BTRFS_METADATA_ITEM_KEY) {
38523173a18fSJosef Bacik 			path->slots[0]++;
38533173a18fSJosef Bacik 			goto next;
38543173a18fSJosef Bacik 		}
38553173a18fSJosef Bacik 
38563173a18fSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY &&
38575d4f98a2SYan Zheng 		    key.objectid + key.offset <= rc->search_start) {
38585d4f98a2SYan Zheng 			path->slots[0]++;
38595d4f98a2SYan Zheng 			goto next;
38605d4f98a2SYan Zheng 		}
38615d4f98a2SYan Zheng 
38623173a18fSJosef Bacik 		if (key.type == BTRFS_METADATA_ITEM_KEY &&
38630b246afaSJeff Mahoney 		    key.objectid + fs_info->nodesize <=
38643173a18fSJosef Bacik 		    rc->search_start) {
38653173a18fSJosef Bacik 			path->slots[0]++;
38663173a18fSJosef Bacik 			goto next;
38673173a18fSJosef Bacik 		}
38683173a18fSJosef Bacik 
38695d4f98a2SYan Zheng 		ret = find_first_extent_bit(&rc->processed_blocks,
38705d4f98a2SYan Zheng 					    key.objectid, &start, &end,
3871e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
38725d4f98a2SYan Zheng 
38735d4f98a2SYan Zheng 		if (ret == 0 && start <= key.objectid) {
3874b3b4aa74SDavid Sterba 			btrfs_release_path(path);
38755d4f98a2SYan Zheng 			rc->search_start = end + 1;
38765d4f98a2SYan Zheng 		} else {
38773173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY)
38785d4f98a2SYan Zheng 				rc->search_start = key.objectid + key.offset;
38793173a18fSJosef Bacik 			else
38803173a18fSJosef Bacik 				rc->search_start = key.objectid +
38810b246afaSJeff Mahoney 					fs_info->nodesize;
38823fd0a558SYan, Zheng 			memcpy(extent_key, &key, sizeof(key));
38835d4f98a2SYan Zheng 			return 0;
38845d4f98a2SYan Zheng 		}
38855d4f98a2SYan Zheng 	}
3886b3b4aa74SDavid Sterba 	btrfs_release_path(path);
38875d4f98a2SYan Zheng 	return ret;
38885d4f98a2SYan Zheng }
38895d4f98a2SYan Zheng 
38905d4f98a2SYan Zheng static void set_reloc_control(struct reloc_control *rc)
38915d4f98a2SYan Zheng {
38925d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38937585717fSChris Mason 
38947585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38955d4f98a2SYan Zheng 	fs_info->reloc_ctl = rc;
38967585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38975d4f98a2SYan Zheng }
38985d4f98a2SYan Zheng 
38995d4f98a2SYan Zheng static void unset_reloc_control(struct reloc_control *rc)
39005d4f98a2SYan Zheng {
39015d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
39027585717fSChris Mason 
39037585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
39045d4f98a2SYan Zheng 	fs_info->reloc_ctl = NULL;
39057585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
39065d4f98a2SYan Zheng }
39075d4f98a2SYan Zheng 
39085d4f98a2SYan Zheng static int check_extent_flags(u64 flags)
39095d4f98a2SYan Zheng {
39105d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
39115d4f98a2SYan Zheng 	    (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
39125d4f98a2SYan Zheng 		return 1;
39135d4f98a2SYan Zheng 	if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
39145d4f98a2SYan Zheng 	    !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
39155d4f98a2SYan Zheng 		return 1;
39165d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
39175d4f98a2SYan Zheng 	    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
39185d4f98a2SYan Zheng 		return 1;
39195d4f98a2SYan Zheng 	return 0;
39205d4f98a2SYan Zheng }
39215d4f98a2SYan Zheng 
39223fd0a558SYan, Zheng static noinline_for_stack
39233fd0a558SYan, Zheng int prepare_to_relocate(struct reloc_control *rc)
39243fd0a558SYan, Zheng {
39253fd0a558SYan, Zheng 	struct btrfs_trans_handle *trans;
3926ac2fabacSJosef Bacik 	int ret;
39273fd0a558SYan, Zheng 
39282ff7e61eSJeff Mahoney 	rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root->fs_info,
392966d8f3ddSMiao Xie 					      BTRFS_BLOCK_RSV_TEMP);
39303fd0a558SYan, Zheng 	if (!rc->block_rsv)
39313fd0a558SYan, Zheng 		return -ENOMEM;
39323fd0a558SYan, Zheng 
39333fd0a558SYan, Zheng 	memset(&rc->cluster, 0, sizeof(rc->cluster));
3934b3470b5dSDavid Sterba 	rc->search_start = rc->block_group->start;
39353fd0a558SYan, Zheng 	rc->extents_found = 0;
39363fd0a558SYan, Zheng 	rc->nodes_relocated = 0;
39373fd0a558SYan, Zheng 	rc->merging_rsv_size = 0;
39380647bf56SWang Shilong 	rc->reserved_bytes = 0;
3939da17066cSJeff Mahoney 	rc->block_rsv->size = rc->extent_root->fs_info->nodesize *
39400647bf56SWang Shilong 			      RELOCATION_RESERVED_NODES;
3941ac2fabacSJosef Bacik 	ret = btrfs_block_rsv_refill(rc->extent_root,
3942ac2fabacSJosef Bacik 				     rc->block_rsv, rc->block_rsv->size,
3943ac2fabacSJosef Bacik 				     BTRFS_RESERVE_FLUSH_ALL);
3944ac2fabacSJosef Bacik 	if (ret)
3945ac2fabacSJosef Bacik 		return ret;
39463fd0a558SYan, Zheng 
39473fd0a558SYan, Zheng 	rc->create_reloc_tree = 1;
39483fd0a558SYan, Zheng 	set_reloc_control(rc);
39493fd0a558SYan, Zheng 
39507a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
395128818947SLiu Bo 	if (IS_ERR(trans)) {
395228818947SLiu Bo 		unset_reloc_control(rc);
395328818947SLiu Bo 		/*
395428818947SLiu Bo 		 * extent tree is not a ref_cow tree and has no reloc_root to
395528818947SLiu Bo 		 * cleanup.  And callers are responsible to free the above
395628818947SLiu Bo 		 * block rsv.
395728818947SLiu Bo 		 */
395828818947SLiu Bo 		return PTR_ERR(trans);
395928818947SLiu Bo 	}
39603a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
39613fd0a558SYan, Zheng 	return 0;
39623fd0a558SYan, Zheng }
396376dda93cSYan, Zheng 
39645d4f98a2SYan Zheng static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
39655d4f98a2SYan Zheng {
39662ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
39675d4f98a2SYan Zheng 	struct rb_root blocks = RB_ROOT;
39685d4f98a2SYan Zheng 	struct btrfs_key key;
39695d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans = NULL;
39705d4f98a2SYan Zheng 	struct btrfs_path *path;
39715d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
39725d4f98a2SYan Zheng 	u64 flags;
39735d4f98a2SYan Zheng 	u32 item_size;
39745d4f98a2SYan Zheng 	int ret;
39755d4f98a2SYan Zheng 	int err = 0;
3976c87f08caSChris Mason 	int progress = 0;
39775d4f98a2SYan Zheng 
39785d4f98a2SYan Zheng 	path = btrfs_alloc_path();
39793fd0a558SYan, Zheng 	if (!path)
39805d4f98a2SYan Zheng 		return -ENOMEM;
3981e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
39823fd0a558SYan, Zheng 
39833fd0a558SYan, Zheng 	ret = prepare_to_relocate(rc);
39843fd0a558SYan, Zheng 	if (ret) {
39853fd0a558SYan, Zheng 		err = ret;
39863fd0a558SYan, Zheng 		goto out_free;
39872423fdfbSJiri Slaby 	}
39885d4f98a2SYan Zheng 
39895d4f98a2SYan Zheng 	while (1) {
39900647bf56SWang Shilong 		rc->reserved_bytes = 0;
39910647bf56SWang Shilong 		ret = btrfs_block_rsv_refill(rc->extent_root,
39920647bf56SWang Shilong 					rc->block_rsv, rc->block_rsv->size,
39930647bf56SWang Shilong 					BTRFS_RESERVE_FLUSH_ALL);
39940647bf56SWang Shilong 		if (ret) {
39950647bf56SWang Shilong 			err = ret;
39960647bf56SWang Shilong 			break;
39970647bf56SWang Shilong 		}
3998c87f08caSChris Mason 		progress++;
3999a22285a6SYan, Zheng 		trans = btrfs_start_transaction(rc->extent_root, 0);
40000f788c58SLiu Bo 		if (IS_ERR(trans)) {
40010f788c58SLiu Bo 			err = PTR_ERR(trans);
40020f788c58SLiu Bo 			trans = NULL;
40030f788c58SLiu Bo 			break;
40040f788c58SLiu Bo 		}
4005c87f08caSChris Mason restart:
40063fd0a558SYan, Zheng 		if (update_backref_cache(trans, &rc->backref_cache)) {
40073a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
400842a657f5SPan Bian 			trans = NULL;
40093fd0a558SYan, Zheng 			continue;
40103fd0a558SYan, Zheng 		}
40113fd0a558SYan, Zheng 
4012147d256eSZhaolei 		ret = find_next_extent(rc, path, &key);
40135d4f98a2SYan Zheng 		if (ret < 0)
40145d4f98a2SYan Zheng 			err = ret;
40155d4f98a2SYan Zheng 		if (ret != 0)
40165d4f98a2SYan Zheng 			break;
40175d4f98a2SYan Zheng 
40185d4f98a2SYan Zheng 		rc->extents_found++;
40195d4f98a2SYan Zheng 
40205d4f98a2SYan Zheng 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
40215d4f98a2SYan Zheng 				    struct btrfs_extent_item);
40223fd0a558SYan, Zheng 		item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
40235d4f98a2SYan Zheng 		if (item_size >= sizeof(*ei)) {
40245d4f98a2SYan Zheng 			flags = btrfs_extent_flags(path->nodes[0], ei);
40255d4f98a2SYan Zheng 			ret = check_extent_flags(flags);
40265d4f98a2SYan Zheng 			BUG_ON(ret);
40276d8ff4e4SDavid Sterba 		} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
4028ba3c2b19SNikolay Borisov 			err = -EINVAL;
4029ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(trans->fs_info);
4030ba3c2b19SNikolay Borisov 			btrfs_abort_transaction(trans, err);
4031ba3c2b19SNikolay Borisov 			break;
40325d4f98a2SYan Zheng 		} else {
40335d4f98a2SYan Zheng 			BUG();
40345d4f98a2SYan Zheng 		}
40355d4f98a2SYan Zheng 
40365d4f98a2SYan Zheng 		if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
40375d4f98a2SYan Zheng 			ret = add_tree_block(rc, &key, path, &blocks);
40385d4f98a2SYan Zheng 		} else if (rc->stage == UPDATE_DATA_PTRS &&
40395d4f98a2SYan Zheng 			   (flags & BTRFS_EXTENT_FLAG_DATA)) {
40405d4f98a2SYan Zheng 			ret = add_data_references(rc, &key, path, &blocks);
40415d4f98a2SYan Zheng 		} else {
4042b3b4aa74SDavid Sterba 			btrfs_release_path(path);
40435d4f98a2SYan Zheng 			ret = 0;
40445d4f98a2SYan Zheng 		}
40455d4f98a2SYan Zheng 		if (ret < 0) {
40463fd0a558SYan, Zheng 			err = ret;
40475d4f98a2SYan Zheng 			break;
40485d4f98a2SYan Zheng 		}
40495d4f98a2SYan Zheng 
40505d4f98a2SYan Zheng 		if (!RB_EMPTY_ROOT(&blocks)) {
40515d4f98a2SYan Zheng 			ret = relocate_tree_blocks(trans, rc, &blocks);
40525d4f98a2SYan Zheng 			if (ret < 0) {
40533fd0a558SYan, Zheng 				if (ret != -EAGAIN) {
40545d4f98a2SYan Zheng 					err = ret;
40555d4f98a2SYan Zheng 					break;
40565d4f98a2SYan Zheng 				}
40573fd0a558SYan, Zheng 				rc->extents_found--;
40583fd0a558SYan, Zheng 				rc->search_start = key.objectid;
40593fd0a558SYan, Zheng 			}
40605d4f98a2SYan Zheng 		}
40615d4f98a2SYan Zheng 
40623a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
40632ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
40643fd0a558SYan, Zheng 		trans = NULL;
40655d4f98a2SYan Zheng 
40665d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS &&
40675d4f98a2SYan Zheng 		    (flags & BTRFS_EXTENT_FLAG_DATA)) {
40685d4f98a2SYan Zheng 			rc->found_file_extent = 1;
40690257bb82SYan, Zheng 			ret = relocate_data_extent(rc->data_inode,
40703fd0a558SYan, Zheng 						   &key, &rc->cluster);
40715d4f98a2SYan Zheng 			if (ret < 0) {
40725d4f98a2SYan Zheng 				err = ret;
40735d4f98a2SYan Zheng 				break;
40745d4f98a2SYan Zheng 			}
40755d4f98a2SYan Zheng 		}
4076f31ea088SQu Wenruo 		if (btrfs_should_cancel_balance(fs_info)) {
4077f31ea088SQu Wenruo 			err = -ECANCELED;
4078f31ea088SQu Wenruo 			break;
4079f31ea088SQu Wenruo 		}
40805d4f98a2SYan Zheng 	}
4081c87f08caSChris Mason 	if (trans && progress && err == -ENOSPC) {
408243a7e99dSNikolay Borisov 		ret = btrfs_force_chunk_alloc(trans, rc->block_group->flags);
40839689457bSShilong Wang 		if (ret == 1) {
4084c87f08caSChris Mason 			err = 0;
4085c87f08caSChris Mason 			progress = 0;
4086c87f08caSChris Mason 			goto restart;
4087c87f08caSChris Mason 		}
4088c87f08caSChris Mason 	}
40893fd0a558SYan, Zheng 
4090b3b4aa74SDavid Sterba 	btrfs_release_path(path);
409191166212SDavid Sterba 	clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
40925d4f98a2SYan Zheng 
40935d4f98a2SYan Zheng 	if (trans) {
40943a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
40952ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
40965d4f98a2SYan Zheng 	}
40975d4f98a2SYan Zheng 
40980257bb82SYan, Zheng 	if (!err) {
40993fd0a558SYan, Zheng 		ret = relocate_file_extent_cluster(rc->data_inode,
41003fd0a558SYan, Zheng 						   &rc->cluster);
41010257bb82SYan, Zheng 		if (ret < 0)
41020257bb82SYan, Zheng 			err = ret;
41030257bb82SYan, Zheng 	}
41040257bb82SYan, Zheng 
41053fd0a558SYan, Zheng 	rc->create_reloc_tree = 0;
41063fd0a558SYan, Zheng 	set_reloc_control(rc);
41070257bb82SYan, Zheng 
41083fd0a558SYan, Zheng 	backref_cache_cleanup(&rc->backref_cache);
410963f018beSNikolay Borisov 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
41105d4f98a2SYan Zheng 
41117f913c7cSQu Wenruo 	/*
41127f913c7cSQu Wenruo 	 * Even in the case when the relocation is cancelled, we should all go
41137f913c7cSQu Wenruo 	 * through prepare_to_merge() and merge_reloc_roots().
41147f913c7cSQu Wenruo 	 *
41157f913c7cSQu Wenruo 	 * For error (including cancelled balance), prepare_to_merge() will
41167f913c7cSQu Wenruo 	 * mark all reloc trees orphan, then queue them for cleanup in
41177f913c7cSQu Wenruo 	 * merge_reloc_roots()
41187f913c7cSQu Wenruo 	 */
41193fd0a558SYan, Zheng 	err = prepare_to_merge(rc, err);
41205d4f98a2SYan Zheng 
41215d4f98a2SYan Zheng 	merge_reloc_roots(rc);
41225d4f98a2SYan Zheng 
41233fd0a558SYan, Zheng 	rc->merge_reloc_tree = 0;
41245d4f98a2SYan Zheng 	unset_reloc_control(rc);
412563f018beSNikolay Borisov 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
41265d4f98a2SYan Zheng 
41275d4f98a2SYan Zheng 	/* get rid of pinned extents */
41287a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
412962b99540SQu Wenruo 	if (IS_ERR(trans)) {
41303612b495STsutomu Itoh 		err = PTR_ERR(trans);
413162b99540SQu Wenruo 		goto out_free;
413262b99540SQu Wenruo 	}
41333a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
41346217b0faSJosef Bacik out_free:
4135d2311e69SQu Wenruo 	ret = clean_dirty_subvols(rc);
4136d2311e69SQu Wenruo 	if (ret < 0 && !err)
4137d2311e69SQu Wenruo 		err = ret;
41382ff7e61eSJeff Mahoney 	btrfs_free_block_rsv(fs_info, rc->block_rsv);
41393fd0a558SYan, Zheng 	btrfs_free_path(path);
41405d4f98a2SYan Zheng 	return err;
41415d4f98a2SYan Zheng }
41425d4f98a2SYan Zheng 
41435d4f98a2SYan Zheng static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
41440257bb82SYan, Zheng 				 struct btrfs_root *root, u64 objectid)
41455d4f98a2SYan Zheng {
41465d4f98a2SYan Zheng 	struct btrfs_path *path;
41475d4f98a2SYan Zheng 	struct btrfs_inode_item *item;
41485d4f98a2SYan Zheng 	struct extent_buffer *leaf;
41495d4f98a2SYan Zheng 	int ret;
41505d4f98a2SYan Zheng 
41515d4f98a2SYan Zheng 	path = btrfs_alloc_path();
41525d4f98a2SYan Zheng 	if (!path)
41535d4f98a2SYan Zheng 		return -ENOMEM;
41545d4f98a2SYan Zheng 
41555d4f98a2SYan Zheng 	ret = btrfs_insert_empty_inode(trans, root, path, objectid);
41565d4f98a2SYan Zheng 	if (ret)
41575d4f98a2SYan Zheng 		goto out;
41585d4f98a2SYan Zheng 
41595d4f98a2SYan Zheng 	leaf = path->nodes[0];
41605d4f98a2SYan Zheng 	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
4161b159fa28SDavid Sterba 	memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
41625d4f98a2SYan Zheng 	btrfs_set_inode_generation(leaf, item, 1);
41630257bb82SYan, Zheng 	btrfs_set_inode_size(leaf, item, 0);
41645d4f98a2SYan Zheng 	btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
41653fd0a558SYan, Zheng 	btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
41663fd0a558SYan, Zheng 					  BTRFS_INODE_PREALLOC);
41675d4f98a2SYan Zheng 	btrfs_mark_buffer_dirty(leaf);
41685d4f98a2SYan Zheng out:
41695d4f98a2SYan Zheng 	btrfs_free_path(path);
41705d4f98a2SYan Zheng 	return ret;
41715d4f98a2SYan Zheng }
41725d4f98a2SYan Zheng 
41735d4f98a2SYan Zheng /*
41745d4f98a2SYan Zheng  * helper to create inode for data relocation.
41755d4f98a2SYan Zheng  * the inode is in data relocation tree and its link count is 0
41765d4f98a2SYan Zheng  */
41773fd0a558SYan, Zheng static noinline_for_stack
41783fd0a558SYan, Zheng struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
417932da5386SDavid Sterba 				 struct btrfs_block_group *group)
41805d4f98a2SYan Zheng {
41815d4f98a2SYan Zheng 	struct inode *inode = NULL;
41825d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
41835d4f98a2SYan Zheng 	struct btrfs_root *root;
41845d4f98a2SYan Zheng 	struct btrfs_key key;
41854624900dSZhaolei 	u64 objectid;
41865d4f98a2SYan Zheng 	int err = 0;
41875d4f98a2SYan Zheng 
41885d4f98a2SYan Zheng 	root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
41895d4f98a2SYan Zheng 	if (IS_ERR(root))
41905d4f98a2SYan Zheng 		return ERR_CAST(root);
41915d4f98a2SYan Zheng 
4192a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
419376deacf0SJosef Bacik 	if (IS_ERR(trans)) {
419400246528SJosef Bacik 		btrfs_put_root(root);
41953fd0a558SYan, Zheng 		return ERR_CAST(trans);
419676deacf0SJosef Bacik 	}
41975d4f98a2SYan Zheng 
4198581bb050SLi Zefan 	err = btrfs_find_free_objectid(root, &objectid);
41995d4f98a2SYan Zheng 	if (err)
42005d4f98a2SYan Zheng 		goto out;
42015d4f98a2SYan Zheng 
42020257bb82SYan, Zheng 	err = __insert_orphan_inode(trans, root, objectid);
42035d4f98a2SYan Zheng 	BUG_ON(err);
42045d4f98a2SYan Zheng 
42055d4f98a2SYan Zheng 	key.objectid = objectid;
42065d4f98a2SYan Zheng 	key.type = BTRFS_INODE_ITEM_KEY;
42075d4f98a2SYan Zheng 	key.offset = 0;
42084c66e0d4SDavid Sterba 	inode = btrfs_iget(fs_info->sb, &key, root);
42092e19f1f9SAl Viro 	BUG_ON(IS_ERR(inode));
4210b3470b5dSDavid Sterba 	BTRFS_I(inode)->index_cnt = group->start;
42115d4f98a2SYan Zheng 
421273f2e545SNikolay Borisov 	err = btrfs_orphan_add(trans, BTRFS_I(inode));
42135d4f98a2SYan Zheng out:
421400246528SJosef Bacik 	btrfs_put_root(root);
42153a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
42162ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
42175d4f98a2SYan Zheng 	if (err) {
42185d4f98a2SYan Zheng 		if (inode)
42195d4f98a2SYan Zheng 			iput(inode);
42205d4f98a2SYan Zheng 		inode = ERR_PTR(err);
42215d4f98a2SYan Zheng 	}
42225d4f98a2SYan Zheng 	return inode;
42235d4f98a2SYan Zheng }
42245d4f98a2SYan Zheng 
4225c258d6e3SQu Wenruo static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
42263fd0a558SYan, Zheng {
42273fd0a558SYan, Zheng 	struct reloc_control *rc;
42283fd0a558SYan, Zheng 
42293fd0a558SYan, Zheng 	rc = kzalloc(sizeof(*rc), GFP_NOFS);
42303fd0a558SYan, Zheng 	if (!rc)
42313fd0a558SYan, Zheng 		return NULL;
42323fd0a558SYan, Zheng 
42333fd0a558SYan, Zheng 	INIT_LIST_HEAD(&rc->reloc_roots);
4234d2311e69SQu Wenruo 	INIT_LIST_HEAD(&rc->dirty_subvol_roots);
42353fd0a558SYan, Zheng 	backref_cache_init(&rc->backref_cache);
42363fd0a558SYan, Zheng 	mapping_tree_init(&rc->reloc_root_tree);
423743eb5f29SQu Wenruo 	extent_io_tree_init(fs_info, &rc->processed_blocks,
423843eb5f29SQu Wenruo 			    IO_TREE_RELOC_BLOCKS, NULL);
42393fd0a558SYan, Zheng 	return rc;
42403fd0a558SYan, Zheng }
42413fd0a558SYan, Zheng 
42421a0afa0eSJosef Bacik static void free_reloc_control(struct reloc_control *rc)
42431a0afa0eSJosef Bacik {
42441a0afa0eSJosef Bacik 	struct mapping_node *node, *tmp;
42451a0afa0eSJosef Bacik 
42461a0afa0eSJosef Bacik 	free_reloc_roots(&rc->reloc_roots);
42471a0afa0eSJosef Bacik 	rbtree_postorder_for_each_entry_safe(node, tmp,
42481a0afa0eSJosef Bacik 			&rc->reloc_root_tree.rb_root, rb_node)
42491a0afa0eSJosef Bacik 		kfree(node);
42501a0afa0eSJosef Bacik 
42511a0afa0eSJosef Bacik 	kfree(rc);
42521a0afa0eSJosef Bacik }
42531a0afa0eSJosef Bacik 
42545d4f98a2SYan Zheng /*
4255ebce0e01SAdam Borowski  * Print the block group being relocated
4256ebce0e01SAdam Borowski  */
4257ebce0e01SAdam Borowski static void describe_relocation(struct btrfs_fs_info *fs_info,
425832da5386SDavid Sterba 				struct btrfs_block_group *block_group)
4259ebce0e01SAdam Borowski {
4260f89e09cfSAnand Jain 	char buf[128] = {'\0'};
4261ebce0e01SAdam Borowski 
4262f89e09cfSAnand Jain 	btrfs_describe_block_groups(block_group->flags, buf, sizeof(buf));
4263ebce0e01SAdam Borowski 
4264ebce0e01SAdam Borowski 	btrfs_info(fs_info,
4265ebce0e01SAdam Borowski 		   "relocating block group %llu flags %s",
4266b3470b5dSDavid Sterba 		   block_group->start, buf);
4267ebce0e01SAdam Borowski }
4268ebce0e01SAdam Borowski 
4269430640e3SQu Wenruo static const char *stage_to_string(int stage)
4270430640e3SQu Wenruo {
4271430640e3SQu Wenruo 	if (stage == MOVE_DATA_EXTENTS)
4272430640e3SQu Wenruo 		return "move data extents";
4273430640e3SQu Wenruo 	if (stage == UPDATE_DATA_PTRS)
4274430640e3SQu Wenruo 		return "update data pointers";
4275430640e3SQu Wenruo 	return "unknown";
4276430640e3SQu Wenruo }
4277430640e3SQu Wenruo 
4278ebce0e01SAdam Borowski /*
42795d4f98a2SYan Zheng  * function to relocate all extents in a block group.
42805d4f98a2SYan Zheng  */
42816bccf3abSJeff Mahoney int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
42825d4f98a2SYan Zheng {
428332da5386SDavid Sterba 	struct btrfs_block_group *bg;
42846bccf3abSJeff Mahoney 	struct btrfs_root *extent_root = fs_info->extent_root;
42855d4f98a2SYan Zheng 	struct reloc_control *rc;
42860af3d00bSJosef Bacik 	struct inode *inode;
42870af3d00bSJosef Bacik 	struct btrfs_path *path;
42885d4f98a2SYan Zheng 	int ret;
4289f0486c68SYan, Zheng 	int rw = 0;
42905d4f98a2SYan Zheng 	int err = 0;
42915d4f98a2SYan Zheng 
4292eede2bf3SOmar Sandoval 	bg = btrfs_lookup_block_group(fs_info, group_start);
4293eede2bf3SOmar Sandoval 	if (!bg)
4294eede2bf3SOmar Sandoval 		return -ENOENT;
4295eede2bf3SOmar Sandoval 
4296eede2bf3SOmar Sandoval 	if (btrfs_pinned_by_swapfile(fs_info, bg)) {
4297eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
4298eede2bf3SOmar Sandoval 		return -ETXTBSY;
4299eede2bf3SOmar Sandoval 	}
4300eede2bf3SOmar Sandoval 
4301c258d6e3SQu Wenruo 	rc = alloc_reloc_control(fs_info);
4302eede2bf3SOmar Sandoval 	if (!rc) {
4303eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
43045d4f98a2SYan Zheng 		return -ENOMEM;
4305eede2bf3SOmar Sandoval 	}
43065d4f98a2SYan Zheng 
4307f0486c68SYan, Zheng 	rc->extent_root = extent_root;
4308eede2bf3SOmar Sandoval 	rc->block_group = bg;
43095d4f98a2SYan Zheng 
4310b12de528SQu Wenruo 	ret = btrfs_inc_block_group_ro(rc->block_group, true);
4311f0486c68SYan, Zheng 	if (ret) {
4312f0486c68SYan, Zheng 		err = ret;
4313f0486c68SYan, Zheng 		goto out;
4314f0486c68SYan, Zheng 	}
4315f0486c68SYan, Zheng 	rw = 1;
4316f0486c68SYan, Zheng 
43170af3d00bSJosef Bacik 	path = btrfs_alloc_path();
43180af3d00bSJosef Bacik 	if (!path) {
43190af3d00bSJosef Bacik 		err = -ENOMEM;
43200af3d00bSJosef Bacik 		goto out;
43210af3d00bSJosef Bacik 	}
43220af3d00bSJosef Bacik 
43237949f339SDavid Sterba 	inode = lookup_free_space_inode(rc->block_group, path);
43240af3d00bSJosef Bacik 	btrfs_free_path(path);
43250af3d00bSJosef Bacik 
43260af3d00bSJosef Bacik 	if (!IS_ERR(inode))
43271bbc621eSChris Mason 		ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
43280af3d00bSJosef Bacik 	else
43290af3d00bSJosef Bacik 		ret = PTR_ERR(inode);
43300af3d00bSJosef Bacik 
43310af3d00bSJosef Bacik 	if (ret && ret != -ENOENT) {
43320af3d00bSJosef Bacik 		err = ret;
43330af3d00bSJosef Bacik 		goto out;
43340af3d00bSJosef Bacik 	}
43350af3d00bSJosef Bacik 
43365d4f98a2SYan Zheng 	rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
43375d4f98a2SYan Zheng 	if (IS_ERR(rc->data_inode)) {
43385d4f98a2SYan Zheng 		err = PTR_ERR(rc->data_inode);
43395d4f98a2SYan Zheng 		rc->data_inode = NULL;
43405d4f98a2SYan Zheng 		goto out;
43415d4f98a2SYan Zheng 	}
43425d4f98a2SYan Zheng 
43430b246afaSJeff Mahoney 	describe_relocation(fs_info, rc->block_group);
43445d4f98a2SYan Zheng 
43459cfa3e34SFilipe Manana 	btrfs_wait_block_group_reservations(rc->block_group);
4346f78c436cSFilipe Manana 	btrfs_wait_nocow_writers(rc->block_group);
43476374e57aSChris Mason 	btrfs_wait_ordered_roots(fs_info, U64_MAX,
4348b3470b5dSDavid Sterba 				 rc->block_group->start,
4349b3470b5dSDavid Sterba 				 rc->block_group->length);
43505d4f98a2SYan Zheng 
43515d4f98a2SYan Zheng 	while (1) {
4352430640e3SQu Wenruo 		int finishes_stage;
4353430640e3SQu Wenruo 
435476dda93cSYan, Zheng 		mutex_lock(&fs_info->cleaner_mutex);
43555d4f98a2SYan Zheng 		ret = relocate_block_group(rc);
435676dda93cSYan, Zheng 		mutex_unlock(&fs_info->cleaner_mutex);
4357ff612ba7SJosef Bacik 		if (ret < 0)
43585d4f98a2SYan Zheng 			err = ret;
4359ff612ba7SJosef Bacik 
4360430640e3SQu Wenruo 		finishes_stage = rc->stage;
4361ff612ba7SJosef Bacik 		/*
4362ff612ba7SJosef Bacik 		 * We may have gotten ENOSPC after we already dirtied some
4363ff612ba7SJosef Bacik 		 * extents.  If writeout happens while we're relocating a
4364ff612ba7SJosef Bacik 		 * different block group we could end up hitting the
4365ff612ba7SJosef Bacik 		 * BUG_ON(rc->stage == UPDATE_DATA_PTRS) in
4366ff612ba7SJosef Bacik 		 * btrfs_reloc_cow_block.  Make sure we write everything out
4367ff612ba7SJosef Bacik 		 * properly so we don't trip over this problem, and then break
4368ff612ba7SJosef Bacik 		 * out of the loop if we hit an error.
4369ff612ba7SJosef Bacik 		 */
4370ff612ba7SJosef Bacik 		if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
4371ff612ba7SJosef Bacik 			ret = btrfs_wait_ordered_range(rc->data_inode, 0,
4372ff612ba7SJosef Bacik 						       (u64)-1);
4373ff612ba7SJosef Bacik 			if (ret)
4374ff612ba7SJosef Bacik 				err = ret;
4375ff612ba7SJosef Bacik 			invalidate_mapping_pages(rc->data_inode->i_mapping,
4376ff612ba7SJosef Bacik 						 0, -1);
4377ff612ba7SJosef Bacik 			rc->stage = UPDATE_DATA_PTRS;
43785d4f98a2SYan Zheng 		}
43795d4f98a2SYan Zheng 
4380ff612ba7SJosef Bacik 		if (err < 0)
4381ff612ba7SJosef Bacik 			goto out;
4382ff612ba7SJosef Bacik 
43835d4f98a2SYan Zheng 		if (rc->extents_found == 0)
43845d4f98a2SYan Zheng 			break;
43855d4f98a2SYan Zheng 
4386430640e3SQu Wenruo 		btrfs_info(fs_info, "found %llu extents, stage: %s",
4387430640e3SQu Wenruo 			   rc->extents_found, stage_to_string(finishes_stage));
43885d4f98a2SYan Zheng 	}
43895d4f98a2SYan Zheng 
43905d4f98a2SYan Zheng 	WARN_ON(rc->block_group->pinned > 0);
43915d4f98a2SYan Zheng 	WARN_ON(rc->block_group->reserved > 0);
4392bf38be65SDavid Sterba 	WARN_ON(rc->block_group->used > 0);
43935d4f98a2SYan Zheng out:
4394f0486c68SYan, Zheng 	if (err && rw)
43952ff7e61eSJeff Mahoney 		btrfs_dec_block_group_ro(rc->block_group);
43965d4f98a2SYan Zheng 	iput(rc->data_inode);
43975d4f98a2SYan Zheng 	btrfs_put_block_group(rc->block_group);
43981a0afa0eSJosef Bacik 	free_reloc_control(rc);
43995d4f98a2SYan Zheng 	return err;
44005d4f98a2SYan Zheng }
44015d4f98a2SYan Zheng 
440276dda93cSYan, Zheng static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
440376dda93cSYan, Zheng {
44040b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
440576dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
440679787eaaSJeff Mahoney 	int ret, err;
440776dda93cSYan, Zheng 
44080b246afaSJeff Mahoney 	trans = btrfs_start_transaction(fs_info->tree_root, 0);
440979787eaaSJeff Mahoney 	if (IS_ERR(trans))
441079787eaaSJeff Mahoney 		return PTR_ERR(trans);
441176dda93cSYan, Zheng 
441276dda93cSYan, Zheng 	memset(&root->root_item.drop_progress, 0,
441376dda93cSYan, Zheng 		sizeof(root->root_item.drop_progress));
441476dda93cSYan, Zheng 	root->root_item.drop_level = 0;
441576dda93cSYan, Zheng 	btrfs_set_root_refs(&root->root_item, 0);
44160b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
441776dda93cSYan, Zheng 				&root->root_key, &root->root_item);
441876dda93cSYan, Zheng 
44193a45bb20SJeff Mahoney 	err = btrfs_end_transaction(trans);
442079787eaaSJeff Mahoney 	if (err)
442179787eaaSJeff Mahoney 		return err;
442279787eaaSJeff Mahoney 	return ret;
442376dda93cSYan, Zheng }
442476dda93cSYan, Zheng 
44255d4f98a2SYan Zheng /*
44265d4f98a2SYan Zheng  * recover relocation interrupted by system crash.
44275d4f98a2SYan Zheng  *
44285d4f98a2SYan Zheng  * this function resumes merging reloc trees with corresponding fs trees.
44295d4f98a2SYan Zheng  * this is important for keeping the sharing of tree blocks
44305d4f98a2SYan Zheng  */
44315d4f98a2SYan Zheng int btrfs_recover_relocation(struct btrfs_root *root)
44325d4f98a2SYan Zheng {
44330b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
44345d4f98a2SYan Zheng 	LIST_HEAD(reloc_roots);
44355d4f98a2SYan Zheng 	struct btrfs_key key;
44365d4f98a2SYan Zheng 	struct btrfs_root *fs_root;
44375d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
44385d4f98a2SYan Zheng 	struct btrfs_path *path;
44395d4f98a2SYan Zheng 	struct extent_buffer *leaf;
44405d4f98a2SYan Zheng 	struct reloc_control *rc = NULL;
44415d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
44425d4f98a2SYan Zheng 	int ret;
44435d4f98a2SYan Zheng 	int err = 0;
44445d4f98a2SYan Zheng 
44455d4f98a2SYan Zheng 	path = btrfs_alloc_path();
44465d4f98a2SYan Zheng 	if (!path)
44475d4f98a2SYan Zheng 		return -ENOMEM;
4448e4058b54SDavid Sterba 	path->reada = READA_BACK;
44495d4f98a2SYan Zheng 
44505d4f98a2SYan Zheng 	key.objectid = BTRFS_TREE_RELOC_OBJECTID;
44515d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
44525d4f98a2SYan Zheng 	key.offset = (u64)-1;
44535d4f98a2SYan Zheng 
44545d4f98a2SYan Zheng 	while (1) {
44550b246afaSJeff Mahoney 		ret = btrfs_search_slot(NULL, fs_info->tree_root, &key,
44565d4f98a2SYan Zheng 					path, 0, 0);
44575d4f98a2SYan Zheng 		if (ret < 0) {
44585d4f98a2SYan Zheng 			err = ret;
44595d4f98a2SYan Zheng 			goto out;
44605d4f98a2SYan Zheng 		}
44615d4f98a2SYan Zheng 		if (ret > 0) {
44625d4f98a2SYan Zheng 			if (path->slots[0] == 0)
44635d4f98a2SYan Zheng 				break;
44645d4f98a2SYan Zheng 			path->slots[0]--;
44655d4f98a2SYan Zheng 		}
44665d4f98a2SYan Zheng 		leaf = path->nodes[0];
44675d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4468b3b4aa74SDavid Sterba 		btrfs_release_path(path);
44695d4f98a2SYan Zheng 
44705d4f98a2SYan Zheng 		if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
44715d4f98a2SYan Zheng 		    key.type != BTRFS_ROOT_ITEM_KEY)
44725d4f98a2SYan Zheng 			break;
44735d4f98a2SYan Zheng 
44743dbf1738SJosef Bacik 		reloc_root = btrfs_read_tree_root(root, &key);
44755d4f98a2SYan Zheng 		if (IS_ERR(reloc_root)) {
44765d4f98a2SYan Zheng 			err = PTR_ERR(reloc_root);
44775d4f98a2SYan Zheng 			goto out;
44785d4f98a2SYan Zheng 		}
44795d4f98a2SYan Zheng 
44803dbf1738SJosef Bacik 		set_bit(BTRFS_ROOT_REF_COWS, &reloc_root->state);
44815d4f98a2SYan Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
44825d4f98a2SYan Zheng 
44835d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
44840b246afaSJeff Mahoney 			fs_root = read_fs_root(fs_info,
44855d4f98a2SYan Zheng 					       reloc_root->root_key.offset);
44865d4f98a2SYan Zheng 			if (IS_ERR(fs_root)) {
448776dda93cSYan, Zheng 				ret = PTR_ERR(fs_root);
448876dda93cSYan, Zheng 				if (ret != -ENOENT) {
448976dda93cSYan, Zheng 					err = ret;
44905d4f98a2SYan Zheng 					goto out;
44915d4f98a2SYan Zheng 				}
449279787eaaSJeff Mahoney 				ret = mark_garbage_root(reloc_root);
449379787eaaSJeff Mahoney 				if (ret < 0) {
449479787eaaSJeff Mahoney 					err = ret;
449579787eaaSJeff Mahoney 					goto out;
449679787eaaSJeff Mahoney 				}
4497932fd26dSJosef Bacik 			} else {
449800246528SJosef Bacik 				btrfs_put_root(fs_root);
449976dda93cSYan, Zheng 			}
45005d4f98a2SYan Zheng 		}
45015d4f98a2SYan Zheng 
45025d4f98a2SYan Zheng 		if (key.offset == 0)
45035d4f98a2SYan Zheng 			break;
45045d4f98a2SYan Zheng 
45055d4f98a2SYan Zheng 		key.offset--;
45065d4f98a2SYan Zheng 	}
4507b3b4aa74SDavid Sterba 	btrfs_release_path(path);
45085d4f98a2SYan Zheng 
45095d4f98a2SYan Zheng 	if (list_empty(&reloc_roots))
45105d4f98a2SYan Zheng 		goto out;
45115d4f98a2SYan Zheng 
4512c258d6e3SQu Wenruo 	rc = alloc_reloc_control(fs_info);
45135d4f98a2SYan Zheng 	if (!rc) {
45145d4f98a2SYan Zheng 		err = -ENOMEM;
45155d4f98a2SYan Zheng 		goto out;
45165d4f98a2SYan Zheng 	}
45175d4f98a2SYan Zheng 
45180b246afaSJeff Mahoney 	rc->extent_root = fs_info->extent_root;
45195d4f98a2SYan Zheng 
45205d4f98a2SYan Zheng 	set_reloc_control(rc);
45215d4f98a2SYan Zheng 
45227a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
45233612b495STsutomu Itoh 	if (IS_ERR(trans)) {
45243612b495STsutomu Itoh 		err = PTR_ERR(trans);
4525fb2d83eeSJosef Bacik 		goto out_unset;
45263612b495STsutomu Itoh 	}
45273fd0a558SYan, Zheng 
45283fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
45293fd0a558SYan, Zheng 
45305d4f98a2SYan Zheng 	while (!list_empty(&reloc_roots)) {
45315d4f98a2SYan Zheng 		reloc_root = list_entry(reloc_roots.next,
45325d4f98a2SYan Zheng 					struct btrfs_root, root_list);
45335d4f98a2SYan Zheng 		list_del(&reloc_root->root_list);
45345d4f98a2SYan Zheng 
45355d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) == 0) {
45365d4f98a2SYan Zheng 			list_add_tail(&reloc_root->root_list,
45375d4f98a2SYan Zheng 				      &rc->reloc_roots);
45385d4f98a2SYan Zheng 			continue;
45395d4f98a2SYan Zheng 		}
45405d4f98a2SYan Zheng 
45410b246afaSJeff Mahoney 		fs_root = read_fs_root(fs_info, reloc_root->root_key.offset);
454279787eaaSJeff Mahoney 		if (IS_ERR(fs_root)) {
454379787eaaSJeff Mahoney 			err = PTR_ERR(fs_root);
4544ca1aa281SJosef Bacik 			list_add_tail(&reloc_root->root_list, &reloc_roots);
4545fb2d83eeSJosef Bacik 			goto out_unset;
454679787eaaSJeff Mahoney 		}
45475d4f98a2SYan Zheng 
4548ffd7b339SJeff Mahoney 		err = __add_reloc_root(reloc_root);
454979787eaaSJeff Mahoney 		BUG_ON(err < 0); /* -ENOMEM or logic error */
4550f44deb74SJosef Bacik 		fs_root->reloc_root = btrfs_grab_root(reloc_root);
455100246528SJosef Bacik 		btrfs_put_root(fs_root);
45525d4f98a2SYan Zheng 	}
45535d4f98a2SYan Zheng 
45543a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
455579787eaaSJeff Mahoney 	if (err)
4556fb2d83eeSJosef Bacik 		goto out_unset;
45575d4f98a2SYan Zheng 
45585d4f98a2SYan Zheng 	merge_reloc_roots(rc);
45595d4f98a2SYan Zheng 
45605d4f98a2SYan Zheng 	unset_reloc_control(rc);
45615d4f98a2SYan Zheng 
45627a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
456362b99540SQu Wenruo 	if (IS_ERR(trans)) {
45643612b495STsutomu Itoh 		err = PTR_ERR(trans);
45656217b0faSJosef Bacik 		goto out_clean;
456662b99540SQu Wenruo 	}
45673a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
45686217b0faSJosef Bacik out_clean:
4569d2311e69SQu Wenruo 	ret = clean_dirty_subvols(rc);
4570d2311e69SQu Wenruo 	if (ret < 0 && !err)
4571d2311e69SQu Wenruo 		err = ret;
4572fb2d83eeSJosef Bacik out_unset:
4573fb2d83eeSJosef Bacik 	unset_reloc_control(rc);
45741a0afa0eSJosef Bacik 	free_reloc_control(rc);
45753612b495STsutomu Itoh out:
4576aca1bba6SLiu Bo 	if (!list_empty(&reloc_roots))
4577aca1bba6SLiu Bo 		free_reloc_roots(&reloc_roots);
4578aca1bba6SLiu Bo 
45795d4f98a2SYan Zheng 	btrfs_free_path(path);
45805d4f98a2SYan Zheng 
45815d4f98a2SYan Zheng 	if (err == 0) {
45825d4f98a2SYan Zheng 		/* cleanup orphan inode in data relocation tree */
45830b246afaSJeff Mahoney 		fs_root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
4584932fd26dSJosef Bacik 		if (IS_ERR(fs_root)) {
45855d4f98a2SYan Zheng 			err = PTR_ERR(fs_root);
4586932fd26dSJosef Bacik 		} else {
458766b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(fs_root);
458800246528SJosef Bacik 			btrfs_put_root(fs_root);
4589932fd26dSJosef Bacik 		}
4590932fd26dSJosef Bacik 	}
45915d4f98a2SYan Zheng 	return err;
45925d4f98a2SYan Zheng }
45935d4f98a2SYan Zheng 
45945d4f98a2SYan Zheng /*
45955d4f98a2SYan Zheng  * helper to add ordered checksum for data relocation.
45965d4f98a2SYan Zheng  *
45975d4f98a2SYan Zheng  * cloning checksum properly handles the nodatasum extents.
45985d4f98a2SYan Zheng  * it also saves CPU time to re-calculate the checksum.
45995d4f98a2SYan Zheng  */
46005d4f98a2SYan Zheng int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
46015d4f98a2SYan Zheng {
46020b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
46035d4f98a2SYan Zheng 	struct btrfs_ordered_sum *sums;
46045d4f98a2SYan Zheng 	struct btrfs_ordered_extent *ordered;
46055d4f98a2SYan Zheng 	int ret;
46065d4f98a2SYan Zheng 	u64 disk_bytenr;
46074577b014SJosef Bacik 	u64 new_bytenr;
46085d4f98a2SYan Zheng 	LIST_HEAD(list);
46095d4f98a2SYan Zheng 
46105d4f98a2SYan Zheng 	ordered = btrfs_lookup_ordered_extent(inode, file_pos);
4611bffe633eSOmar Sandoval 	BUG_ON(ordered->file_offset != file_pos || ordered->num_bytes != len);
46125d4f98a2SYan Zheng 
46135d4f98a2SYan Zheng 	disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
46140b246afaSJeff Mahoney 	ret = btrfs_lookup_csums_range(fs_info->csum_root, disk_bytenr,
4615a2de733cSArne Jansen 				       disk_bytenr + len - 1, &list, 0);
461679787eaaSJeff Mahoney 	if (ret)
461779787eaaSJeff Mahoney 		goto out;
46185d4f98a2SYan Zheng 
46195d4f98a2SYan Zheng 	while (!list_empty(&list)) {
46205d4f98a2SYan Zheng 		sums = list_entry(list.next, struct btrfs_ordered_sum, list);
46215d4f98a2SYan Zheng 		list_del_init(&sums->list);
46225d4f98a2SYan Zheng 
46234577b014SJosef Bacik 		/*
46244577b014SJosef Bacik 		 * We need to offset the new_bytenr based on where the csum is.
46254577b014SJosef Bacik 		 * We need to do this because we will read in entire prealloc
46264577b014SJosef Bacik 		 * extents but we may have written to say the middle of the
46274577b014SJosef Bacik 		 * prealloc extent, so we need to make sure the csum goes with
46284577b014SJosef Bacik 		 * the right disk offset.
46294577b014SJosef Bacik 		 *
46304577b014SJosef Bacik 		 * We can do this because the data reloc inode refers strictly
46314577b014SJosef Bacik 		 * to the on disk bytes, so we don't have to worry about
46324577b014SJosef Bacik 		 * disk_len vs real len like with real inodes since it's all
46334577b014SJosef Bacik 		 * disk length.
46344577b014SJosef Bacik 		 */
4635bffe633eSOmar Sandoval 		new_bytenr = ordered->disk_bytenr + sums->bytenr - disk_bytenr;
46364577b014SJosef Bacik 		sums->bytenr = new_bytenr;
46375d4f98a2SYan Zheng 
4638f9756261SNikolay Borisov 		btrfs_add_ordered_sum(ordered, sums);
46395d4f98a2SYan Zheng 	}
464079787eaaSJeff Mahoney out:
46415d4f98a2SYan Zheng 	btrfs_put_ordered_extent(ordered);
4642411fc6bcSAndi Kleen 	return ret;
46435d4f98a2SYan Zheng }
46443fd0a558SYan, Zheng 
464583d4cfd4SJosef Bacik int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
46463fd0a558SYan, Zheng 			  struct btrfs_root *root, struct extent_buffer *buf,
46473fd0a558SYan, Zheng 			  struct extent_buffer *cow)
46483fd0a558SYan, Zheng {
46490b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
46503fd0a558SYan, Zheng 	struct reloc_control *rc;
46513fd0a558SYan, Zheng 	struct backref_node *node;
46523fd0a558SYan, Zheng 	int first_cow = 0;
46533fd0a558SYan, Zheng 	int level;
465483d4cfd4SJosef Bacik 	int ret = 0;
46553fd0a558SYan, Zheng 
46560b246afaSJeff Mahoney 	rc = fs_info->reloc_ctl;
46573fd0a558SYan, Zheng 	if (!rc)
465883d4cfd4SJosef Bacik 		return 0;
46593fd0a558SYan, Zheng 
46603fd0a558SYan, Zheng 	BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
46613fd0a558SYan, Zheng 	       root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
46623fd0a558SYan, Zheng 
4663c974c464SWang Shilong 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
4664c974c464SWang Shilong 		if (buf == root->node)
4665c974c464SWang Shilong 			__update_reloc_root(root, cow->start);
4666c974c464SWang Shilong 	}
4667c974c464SWang Shilong 
46683fd0a558SYan, Zheng 	level = btrfs_header_level(buf);
46693fd0a558SYan, Zheng 	if (btrfs_header_generation(buf) <=
46703fd0a558SYan, Zheng 	    btrfs_root_last_snapshot(&root->root_item))
46713fd0a558SYan, Zheng 		first_cow = 1;
46723fd0a558SYan, Zheng 
46733fd0a558SYan, Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
46743fd0a558SYan, Zheng 	    rc->create_reloc_tree) {
46753fd0a558SYan, Zheng 		WARN_ON(!first_cow && level == 0);
46763fd0a558SYan, Zheng 
46773fd0a558SYan, Zheng 		node = rc->backref_cache.path[level];
46783fd0a558SYan, Zheng 		BUG_ON(node->bytenr != buf->start &&
46793fd0a558SYan, Zheng 		       node->new_bytenr != buf->start);
46803fd0a558SYan, Zheng 
46813fd0a558SYan, Zheng 		drop_node_buffer(node);
468267439dadSDavid Sterba 		atomic_inc(&cow->refs);
46833fd0a558SYan, Zheng 		node->eb = cow;
46843fd0a558SYan, Zheng 		node->new_bytenr = cow->start;
46853fd0a558SYan, Zheng 
46863fd0a558SYan, Zheng 		if (!node->pending) {
46873fd0a558SYan, Zheng 			list_move_tail(&node->list,
46883fd0a558SYan, Zheng 				       &rc->backref_cache.pending[level]);
46893fd0a558SYan, Zheng 			node->pending = 1;
46903fd0a558SYan, Zheng 		}
46913fd0a558SYan, Zheng 
46923fd0a558SYan, Zheng 		if (first_cow)
46933fd0a558SYan, Zheng 			__mark_block_processed(rc, node);
46943fd0a558SYan, Zheng 
46953fd0a558SYan, Zheng 		if (first_cow && level > 0)
46963fd0a558SYan, Zheng 			rc->nodes_relocated += buf->len;
46973fd0a558SYan, Zheng 	}
46983fd0a558SYan, Zheng 
469983d4cfd4SJosef Bacik 	if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
47003fd0a558SYan, Zheng 		ret = replace_file_extents(trans, rc, root, cow);
470183d4cfd4SJosef Bacik 	return ret;
47023fd0a558SYan, Zheng }
47033fd0a558SYan, Zheng 
47043fd0a558SYan, Zheng /*
47053fd0a558SYan, Zheng  * called before creating snapshot. it calculates metadata reservation
470601327610SNicholas D Steeves  * required for relocating tree blocks in the snapshot
47073fd0a558SYan, Zheng  */
4708147d256eSZhaolei void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
47093fd0a558SYan, Zheng 			      u64 *bytes_to_reserve)
47103fd0a558SYan, Zheng {
471110995c04SQu Wenruo 	struct btrfs_root *root = pending->root;
471210995c04SQu Wenruo 	struct reloc_control *rc = root->fs_info->reloc_ctl;
47133fd0a558SYan, Zheng 
47146282675eSQu Wenruo 	if (!rc || !have_reloc_root(root))
47153fd0a558SYan, Zheng 		return;
47163fd0a558SYan, Zheng 
47173fd0a558SYan, Zheng 	if (!rc->merge_reloc_tree)
47183fd0a558SYan, Zheng 		return;
47193fd0a558SYan, Zheng 
47203fd0a558SYan, Zheng 	root = root->reloc_root;
47213fd0a558SYan, Zheng 	BUG_ON(btrfs_root_refs(&root->root_item) == 0);
47223fd0a558SYan, Zheng 	/*
47233fd0a558SYan, Zheng 	 * relocation is in the stage of merging trees. the space
47243fd0a558SYan, Zheng 	 * used by merging a reloc tree is twice the size of
47253fd0a558SYan, Zheng 	 * relocated tree nodes in the worst case. half for cowing
47263fd0a558SYan, Zheng 	 * the reloc tree, half for cowing the fs tree. the space
47273fd0a558SYan, Zheng 	 * used by cowing the reloc tree will be freed after the
47283fd0a558SYan, Zheng 	 * tree is dropped. if we create snapshot, cowing the fs
47293fd0a558SYan, Zheng 	 * tree may use more space than it frees. so we need
47303fd0a558SYan, Zheng 	 * reserve extra space.
47313fd0a558SYan, Zheng 	 */
47323fd0a558SYan, Zheng 	*bytes_to_reserve += rc->nodes_relocated;
47333fd0a558SYan, Zheng }
47343fd0a558SYan, Zheng 
47353fd0a558SYan, Zheng /*
47363fd0a558SYan, Zheng  * called after snapshot is created. migrate block reservation
47373fd0a558SYan, Zheng  * and create reloc root for the newly created snapshot
4738f44deb74SJosef Bacik  *
4739f44deb74SJosef Bacik  * This is similar to btrfs_init_reloc_root(), we come out of here with two
4740f44deb74SJosef Bacik  * references held on the reloc_root, one for root->reloc_root and one for
4741f44deb74SJosef Bacik  * rc->reloc_roots.
47423fd0a558SYan, Zheng  */
474349b25e05SJeff Mahoney int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
47443fd0a558SYan, Zheng 			       struct btrfs_pending_snapshot *pending)
47453fd0a558SYan, Zheng {
47463fd0a558SYan, Zheng 	struct btrfs_root *root = pending->root;
47473fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
47483fd0a558SYan, Zheng 	struct btrfs_root *new_root;
474910995c04SQu Wenruo 	struct reloc_control *rc = root->fs_info->reloc_ctl;
47503fd0a558SYan, Zheng 	int ret;
47513fd0a558SYan, Zheng 
47526282675eSQu Wenruo 	if (!rc || !have_reloc_root(root))
475349b25e05SJeff Mahoney 		return 0;
47543fd0a558SYan, Zheng 
47553fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
47563fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated;
47573fd0a558SYan, Zheng 
47583fd0a558SYan, Zheng 	if (rc->merge_reloc_tree) {
47593fd0a558SYan, Zheng 		ret = btrfs_block_rsv_migrate(&pending->block_rsv,
47603fd0a558SYan, Zheng 					      rc->block_rsv,
47613a584174SLu Fengqi 					      rc->nodes_relocated, true);
476249b25e05SJeff Mahoney 		if (ret)
476349b25e05SJeff Mahoney 			return ret;
47643fd0a558SYan, Zheng 	}
47653fd0a558SYan, Zheng 
47663fd0a558SYan, Zheng 	new_root = pending->snap;
47673fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root->reloc_root,
47683fd0a558SYan, Zheng 				       new_root->root_key.objectid);
476949b25e05SJeff Mahoney 	if (IS_ERR(reloc_root))
477049b25e05SJeff Mahoney 		return PTR_ERR(reloc_root);
47713fd0a558SYan, Zheng 
4772ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
4773ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
4774f44deb74SJosef Bacik 	new_root->reloc_root = btrfs_grab_root(reloc_root);
47753fd0a558SYan, Zheng 
477649b25e05SJeff Mahoney 	if (rc->create_reloc_tree)
47773fd0a558SYan, Zheng 		ret = clone_backref_node(trans, rc, root, reloc_root);
477849b25e05SJeff Mahoney 	return ret;
47793fd0a558SYan, Zheng }
4780