xref: /openbmc/linux/fs/btrfs/relocation.c (revision 054570a1)
15d4f98a2SYan Zheng /*
25d4f98a2SYan Zheng  * Copyright (C) 2009 Oracle.  All rights reserved.
35d4f98a2SYan Zheng  *
45d4f98a2SYan Zheng  * This program is free software; you can redistribute it and/or
55d4f98a2SYan Zheng  * modify it under the terms of the GNU General Public
65d4f98a2SYan Zheng  * License v2 as published by the Free Software Foundation.
75d4f98a2SYan Zheng  *
85d4f98a2SYan Zheng  * This program is distributed in the hope that it will be useful,
95d4f98a2SYan Zheng  * but WITHOUT ANY WARRANTY; without even the implied warranty of
105d4f98a2SYan Zheng  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
115d4f98a2SYan Zheng  * General Public License for more details.
125d4f98a2SYan Zheng  *
135d4f98a2SYan Zheng  * You should have received a copy of the GNU General Public
145d4f98a2SYan Zheng  * License along with this program; if not, write to the
155d4f98a2SYan Zheng  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
165d4f98a2SYan Zheng  * Boston, MA 021110-1307, USA.
175d4f98a2SYan Zheng  */
185d4f98a2SYan Zheng 
195d4f98a2SYan Zheng #include <linux/sched.h>
205d4f98a2SYan Zheng #include <linux/pagemap.h>
215d4f98a2SYan Zheng #include <linux/writeback.h>
225d4f98a2SYan Zheng #include <linux/blkdev.h>
235d4f98a2SYan Zheng #include <linux/rbtree.h>
245a0e3ad6STejun Heo #include <linux/slab.h>
255d4f98a2SYan Zheng #include "ctree.h"
265d4f98a2SYan Zheng #include "disk-io.h"
275d4f98a2SYan Zheng #include "transaction.h"
285d4f98a2SYan Zheng #include "volumes.h"
295d4f98a2SYan Zheng #include "locking.h"
305d4f98a2SYan Zheng #include "btrfs_inode.h"
315d4f98a2SYan Zheng #include "async-thread.h"
320af3d00bSJosef Bacik #include "free-space-cache.h"
33581bb050SLi Zefan #include "inode-map.h"
3462b99540SQu Wenruo #include "qgroup.h"
355d4f98a2SYan Zheng 
365d4f98a2SYan Zheng /*
375d4f98a2SYan Zheng  * backref_node, mapping_node and tree_block start with this
385d4f98a2SYan Zheng  */
395d4f98a2SYan Zheng struct tree_entry {
405d4f98a2SYan Zheng 	struct rb_node rb_node;
415d4f98a2SYan Zheng 	u64 bytenr;
425d4f98a2SYan Zheng };
435d4f98a2SYan Zheng 
445d4f98a2SYan Zheng /*
455d4f98a2SYan Zheng  * present a tree block in the backref cache
465d4f98a2SYan Zheng  */
475d4f98a2SYan Zheng struct backref_node {
485d4f98a2SYan Zheng 	struct rb_node rb_node;
495d4f98a2SYan Zheng 	u64 bytenr;
503fd0a558SYan, Zheng 
513fd0a558SYan, Zheng 	u64 new_bytenr;
523fd0a558SYan, Zheng 	/* objectid of tree block owner, can be not uptodate */
535d4f98a2SYan Zheng 	u64 owner;
543fd0a558SYan, Zheng 	/* link to pending, changed or detached list */
553fd0a558SYan, Zheng 	struct list_head list;
565d4f98a2SYan Zheng 	/* list of upper level blocks reference this block */
575d4f98a2SYan Zheng 	struct list_head upper;
585d4f98a2SYan Zheng 	/* list of child blocks in the cache */
595d4f98a2SYan Zheng 	struct list_head lower;
605d4f98a2SYan Zheng 	/* NULL if this node is not tree root */
615d4f98a2SYan Zheng 	struct btrfs_root *root;
625d4f98a2SYan Zheng 	/* extent buffer got by COW the block */
635d4f98a2SYan Zheng 	struct extent_buffer *eb;
645d4f98a2SYan Zheng 	/* level of tree block */
655d4f98a2SYan Zheng 	unsigned int level:8;
663fd0a558SYan, Zheng 	/* is the block in non-reference counted tree */
673fd0a558SYan, Zheng 	unsigned int cowonly:1;
683fd0a558SYan, Zheng 	/* 1 if no child node in the cache */
695d4f98a2SYan Zheng 	unsigned int lowest:1;
705d4f98a2SYan Zheng 	/* is the extent buffer locked */
715d4f98a2SYan Zheng 	unsigned int locked:1;
725d4f98a2SYan Zheng 	/* has the block been processed */
735d4f98a2SYan Zheng 	unsigned int processed:1;
745d4f98a2SYan Zheng 	/* have backrefs of this block been checked */
755d4f98a2SYan Zheng 	unsigned int checked:1;
763fd0a558SYan, Zheng 	/*
773fd0a558SYan, Zheng 	 * 1 if corresponding block has been cowed but some upper
783fd0a558SYan, Zheng 	 * level block pointers may not point to the new location
793fd0a558SYan, Zheng 	 */
803fd0a558SYan, Zheng 	unsigned int pending:1;
813fd0a558SYan, Zheng 	/*
823fd0a558SYan, Zheng 	 * 1 if the backref node isn't connected to any other
833fd0a558SYan, Zheng 	 * backref node.
843fd0a558SYan, Zheng 	 */
853fd0a558SYan, Zheng 	unsigned int detached:1;
865d4f98a2SYan Zheng };
875d4f98a2SYan Zheng 
885d4f98a2SYan Zheng /*
895d4f98a2SYan Zheng  * present a block pointer in the backref cache
905d4f98a2SYan Zheng  */
915d4f98a2SYan Zheng struct backref_edge {
925d4f98a2SYan Zheng 	struct list_head list[2];
935d4f98a2SYan Zheng 	struct backref_node *node[2];
945d4f98a2SYan Zheng };
955d4f98a2SYan Zheng 
965d4f98a2SYan Zheng #define LOWER	0
975d4f98a2SYan Zheng #define UPPER	1
980647bf56SWang Shilong #define RELOCATION_RESERVED_NODES	256
995d4f98a2SYan Zheng 
1005d4f98a2SYan Zheng struct backref_cache {
1015d4f98a2SYan Zheng 	/* red black tree of all backref nodes in the cache */
1025d4f98a2SYan Zheng 	struct rb_root rb_root;
1033fd0a558SYan, Zheng 	/* for passing backref nodes to btrfs_reloc_cow_block */
1043fd0a558SYan, Zheng 	struct backref_node *path[BTRFS_MAX_LEVEL];
1053fd0a558SYan, Zheng 	/*
1063fd0a558SYan, Zheng 	 * list of blocks that have been cowed but some block
1073fd0a558SYan, Zheng 	 * pointers in upper level blocks may not reflect the
1083fd0a558SYan, Zheng 	 * new location
1093fd0a558SYan, Zheng 	 */
1105d4f98a2SYan Zheng 	struct list_head pending[BTRFS_MAX_LEVEL];
1113fd0a558SYan, Zheng 	/* list of backref nodes with no child node */
1123fd0a558SYan, Zheng 	struct list_head leaves;
1133fd0a558SYan, Zheng 	/* list of blocks that have been cowed in current transaction */
1143fd0a558SYan, Zheng 	struct list_head changed;
1153fd0a558SYan, Zheng 	/* list of detached backref node. */
1163fd0a558SYan, Zheng 	struct list_head detached;
1173fd0a558SYan, Zheng 
1183fd0a558SYan, Zheng 	u64 last_trans;
1193fd0a558SYan, Zheng 
1203fd0a558SYan, Zheng 	int nr_nodes;
1213fd0a558SYan, Zheng 	int nr_edges;
1225d4f98a2SYan Zheng };
1235d4f98a2SYan Zheng 
1245d4f98a2SYan Zheng /*
1255d4f98a2SYan Zheng  * map address of tree root to tree
1265d4f98a2SYan Zheng  */
1275d4f98a2SYan Zheng struct mapping_node {
1285d4f98a2SYan Zheng 	struct rb_node rb_node;
1295d4f98a2SYan Zheng 	u64 bytenr;
1305d4f98a2SYan Zheng 	void *data;
1315d4f98a2SYan Zheng };
1325d4f98a2SYan Zheng 
1335d4f98a2SYan Zheng struct mapping_tree {
1345d4f98a2SYan Zheng 	struct rb_root rb_root;
1355d4f98a2SYan Zheng 	spinlock_t lock;
1365d4f98a2SYan Zheng };
1375d4f98a2SYan Zheng 
1385d4f98a2SYan Zheng /*
1395d4f98a2SYan Zheng  * present a tree block to process
1405d4f98a2SYan Zheng  */
1415d4f98a2SYan Zheng struct tree_block {
1425d4f98a2SYan Zheng 	struct rb_node rb_node;
1435d4f98a2SYan Zheng 	u64 bytenr;
1445d4f98a2SYan Zheng 	struct btrfs_key key;
1455d4f98a2SYan Zheng 	unsigned int level:8;
1465d4f98a2SYan Zheng 	unsigned int key_ready:1;
1475d4f98a2SYan Zheng };
1485d4f98a2SYan Zheng 
1490257bb82SYan, Zheng #define MAX_EXTENTS 128
1500257bb82SYan, Zheng 
1510257bb82SYan, Zheng struct file_extent_cluster {
1520257bb82SYan, Zheng 	u64 start;
1530257bb82SYan, Zheng 	u64 end;
1540257bb82SYan, Zheng 	u64 boundary[MAX_EXTENTS];
1550257bb82SYan, Zheng 	unsigned int nr;
1560257bb82SYan, Zheng };
1570257bb82SYan, Zheng 
1585d4f98a2SYan Zheng struct reloc_control {
1595d4f98a2SYan Zheng 	/* block group to relocate */
1605d4f98a2SYan Zheng 	struct btrfs_block_group_cache *block_group;
1615d4f98a2SYan Zheng 	/* extent tree */
1625d4f98a2SYan Zheng 	struct btrfs_root *extent_root;
1635d4f98a2SYan Zheng 	/* inode for moving data */
1645d4f98a2SYan Zheng 	struct inode *data_inode;
1653fd0a558SYan, Zheng 
1663fd0a558SYan, Zheng 	struct btrfs_block_rsv *block_rsv;
1673fd0a558SYan, Zheng 
1683fd0a558SYan, Zheng 	struct backref_cache backref_cache;
1693fd0a558SYan, Zheng 
1703fd0a558SYan, Zheng 	struct file_extent_cluster cluster;
1715d4f98a2SYan Zheng 	/* tree blocks have been processed */
1725d4f98a2SYan Zheng 	struct extent_io_tree processed_blocks;
1735d4f98a2SYan Zheng 	/* map start of tree root to corresponding reloc tree */
1745d4f98a2SYan Zheng 	struct mapping_tree reloc_root_tree;
1755d4f98a2SYan Zheng 	/* list of reloc trees */
1765d4f98a2SYan Zheng 	struct list_head reloc_roots;
1773fd0a558SYan, Zheng 	/* size of metadata reservation for merging reloc trees */
1783fd0a558SYan, Zheng 	u64 merging_rsv_size;
1793fd0a558SYan, Zheng 	/* size of relocated tree nodes */
1803fd0a558SYan, Zheng 	u64 nodes_relocated;
1810647bf56SWang Shilong 	/* reserved size for block group relocation*/
1820647bf56SWang Shilong 	u64 reserved_bytes;
1833fd0a558SYan, Zheng 
1845d4f98a2SYan Zheng 	u64 search_start;
1855d4f98a2SYan Zheng 	u64 extents_found;
1863fd0a558SYan, Zheng 
1873fd0a558SYan, Zheng 	unsigned int stage:8;
1883fd0a558SYan, Zheng 	unsigned int create_reloc_tree:1;
1893fd0a558SYan, Zheng 	unsigned int merge_reloc_tree:1;
1905d4f98a2SYan Zheng 	unsigned int found_file_extent:1;
1915d4f98a2SYan Zheng };
1925d4f98a2SYan Zheng 
1935d4f98a2SYan Zheng /* stages of data relocation */
1945d4f98a2SYan Zheng #define MOVE_DATA_EXTENTS	0
1955d4f98a2SYan Zheng #define UPDATE_DATA_PTRS	1
1965d4f98a2SYan Zheng 
1973fd0a558SYan, Zheng static void remove_backref_node(struct backref_cache *cache,
1983fd0a558SYan, Zheng 				struct backref_node *node);
1993fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
2003fd0a558SYan, Zheng 				   struct backref_node *node);
2015d4f98a2SYan Zheng 
2025d4f98a2SYan Zheng static void mapping_tree_init(struct mapping_tree *tree)
2035d4f98a2SYan Zheng {
2046bef4d31SEric Paris 	tree->rb_root = RB_ROOT;
2055d4f98a2SYan Zheng 	spin_lock_init(&tree->lock);
2065d4f98a2SYan Zheng }
2075d4f98a2SYan Zheng 
2085d4f98a2SYan Zheng static void backref_cache_init(struct backref_cache *cache)
2095d4f98a2SYan Zheng {
2105d4f98a2SYan Zheng 	int i;
2116bef4d31SEric Paris 	cache->rb_root = RB_ROOT;
2125d4f98a2SYan Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2135d4f98a2SYan Zheng 		INIT_LIST_HEAD(&cache->pending[i]);
2143fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->changed);
2153fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->detached);
2163fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->leaves);
2175d4f98a2SYan Zheng }
2185d4f98a2SYan Zheng 
2193fd0a558SYan, Zheng static void backref_cache_cleanup(struct backref_cache *cache)
2205d4f98a2SYan Zheng {
2213fd0a558SYan, Zheng 	struct backref_node *node;
2223fd0a558SYan, Zheng 	int i;
2233fd0a558SYan, Zheng 
2243fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
2253fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
2263fd0a558SYan, Zheng 				  struct backref_node, list);
2273fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2283fd0a558SYan, Zheng 	}
2293fd0a558SYan, Zheng 
2303fd0a558SYan, Zheng 	while (!list_empty(&cache->leaves)) {
2313fd0a558SYan, Zheng 		node = list_entry(cache->leaves.next,
2323fd0a558SYan, Zheng 				  struct backref_node, lower);
2333fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2343fd0a558SYan, Zheng 	}
2353fd0a558SYan, Zheng 
2363fd0a558SYan, Zheng 	cache->last_trans = 0;
2373fd0a558SYan, Zheng 
2383fd0a558SYan, Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
239f4907095SLiu Bo 		ASSERT(list_empty(&cache->pending[i]));
240f4907095SLiu Bo 	ASSERT(list_empty(&cache->changed));
241f4907095SLiu Bo 	ASSERT(list_empty(&cache->detached));
242f4907095SLiu Bo 	ASSERT(RB_EMPTY_ROOT(&cache->rb_root));
243f4907095SLiu Bo 	ASSERT(!cache->nr_nodes);
244f4907095SLiu Bo 	ASSERT(!cache->nr_edges);
2453fd0a558SYan, Zheng }
2463fd0a558SYan, Zheng 
2473fd0a558SYan, Zheng static struct backref_node *alloc_backref_node(struct backref_cache *cache)
2483fd0a558SYan, Zheng {
2493fd0a558SYan, Zheng 	struct backref_node *node;
2503fd0a558SYan, Zheng 
2513fd0a558SYan, Zheng 	node = kzalloc(sizeof(*node), GFP_NOFS);
2523fd0a558SYan, Zheng 	if (node) {
2533fd0a558SYan, Zheng 		INIT_LIST_HEAD(&node->list);
2545d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->upper);
2555d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->lower);
2565d4f98a2SYan Zheng 		RB_CLEAR_NODE(&node->rb_node);
2573fd0a558SYan, Zheng 		cache->nr_nodes++;
2583fd0a558SYan, Zheng 	}
2593fd0a558SYan, Zheng 	return node;
2603fd0a558SYan, Zheng }
2613fd0a558SYan, Zheng 
2623fd0a558SYan, Zheng static void free_backref_node(struct backref_cache *cache,
2633fd0a558SYan, Zheng 			      struct backref_node *node)
2643fd0a558SYan, Zheng {
2653fd0a558SYan, Zheng 	if (node) {
2663fd0a558SYan, Zheng 		cache->nr_nodes--;
2673fd0a558SYan, Zheng 		kfree(node);
2683fd0a558SYan, Zheng 	}
2693fd0a558SYan, Zheng }
2703fd0a558SYan, Zheng 
2713fd0a558SYan, Zheng static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
2723fd0a558SYan, Zheng {
2733fd0a558SYan, Zheng 	struct backref_edge *edge;
2743fd0a558SYan, Zheng 
2753fd0a558SYan, Zheng 	edge = kzalloc(sizeof(*edge), GFP_NOFS);
2763fd0a558SYan, Zheng 	if (edge)
2773fd0a558SYan, Zheng 		cache->nr_edges++;
2783fd0a558SYan, Zheng 	return edge;
2793fd0a558SYan, Zheng }
2803fd0a558SYan, Zheng 
2813fd0a558SYan, Zheng static void free_backref_edge(struct backref_cache *cache,
2823fd0a558SYan, Zheng 			      struct backref_edge *edge)
2833fd0a558SYan, Zheng {
2843fd0a558SYan, Zheng 	if (edge) {
2853fd0a558SYan, Zheng 		cache->nr_edges--;
2863fd0a558SYan, Zheng 		kfree(edge);
2873fd0a558SYan, Zheng 	}
2885d4f98a2SYan Zheng }
2895d4f98a2SYan Zheng 
2905d4f98a2SYan Zheng static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
2915d4f98a2SYan Zheng 				   struct rb_node *node)
2925d4f98a2SYan Zheng {
2935d4f98a2SYan Zheng 	struct rb_node **p = &root->rb_node;
2945d4f98a2SYan Zheng 	struct rb_node *parent = NULL;
2955d4f98a2SYan Zheng 	struct tree_entry *entry;
2965d4f98a2SYan Zheng 
2975d4f98a2SYan Zheng 	while (*p) {
2985d4f98a2SYan Zheng 		parent = *p;
2995d4f98a2SYan Zheng 		entry = rb_entry(parent, struct tree_entry, rb_node);
3005d4f98a2SYan Zheng 
3015d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3025d4f98a2SYan Zheng 			p = &(*p)->rb_left;
3035d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3045d4f98a2SYan Zheng 			p = &(*p)->rb_right;
3055d4f98a2SYan Zheng 		else
3065d4f98a2SYan Zheng 			return parent;
3075d4f98a2SYan Zheng 	}
3085d4f98a2SYan Zheng 
3095d4f98a2SYan Zheng 	rb_link_node(node, parent, p);
3105d4f98a2SYan Zheng 	rb_insert_color(node, root);
3115d4f98a2SYan Zheng 	return NULL;
3125d4f98a2SYan Zheng }
3135d4f98a2SYan Zheng 
3145d4f98a2SYan Zheng static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
3155d4f98a2SYan Zheng {
3165d4f98a2SYan Zheng 	struct rb_node *n = root->rb_node;
3175d4f98a2SYan Zheng 	struct tree_entry *entry;
3185d4f98a2SYan Zheng 
3195d4f98a2SYan Zheng 	while (n) {
3205d4f98a2SYan Zheng 		entry = rb_entry(n, struct tree_entry, rb_node);
3215d4f98a2SYan Zheng 
3225d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3235d4f98a2SYan Zheng 			n = n->rb_left;
3245d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3255d4f98a2SYan Zheng 			n = n->rb_right;
3265d4f98a2SYan Zheng 		else
3275d4f98a2SYan Zheng 			return n;
3285d4f98a2SYan Zheng 	}
3295d4f98a2SYan Zheng 	return NULL;
3305d4f98a2SYan Zheng }
3315d4f98a2SYan Zheng 
33248a3b636SEric Sandeen static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
33343c04fb1SJeff Mahoney {
33443c04fb1SJeff Mahoney 
33543c04fb1SJeff Mahoney 	struct btrfs_fs_info *fs_info = NULL;
33643c04fb1SJeff Mahoney 	struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
33743c04fb1SJeff Mahoney 					      rb_node);
33843c04fb1SJeff Mahoney 	if (bnode->root)
33943c04fb1SJeff Mahoney 		fs_info = bnode->root->fs_info;
3405d163e0eSJeff Mahoney 	btrfs_panic(fs_info, errno,
3415d163e0eSJeff Mahoney 		    "Inconsistency in backref cache found at offset %llu",
3425d163e0eSJeff Mahoney 		    bytenr);
34343c04fb1SJeff Mahoney }
34443c04fb1SJeff Mahoney 
3455d4f98a2SYan Zheng /*
3465d4f98a2SYan Zheng  * walk up backref nodes until reach node presents tree root
3475d4f98a2SYan Zheng  */
3485d4f98a2SYan Zheng static struct backref_node *walk_up_backref(struct backref_node *node,
3495d4f98a2SYan Zheng 					    struct backref_edge *edges[],
3505d4f98a2SYan Zheng 					    int *index)
3515d4f98a2SYan Zheng {
3525d4f98a2SYan Zheng 	struct backref_edge *edge;
3535d4f98a2SYan Zheng 	int idx = *index;
3545d4f98a2SYan Zheng 
3555d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
3565d4f98a2SYan Zheng 		edge = list_entry(node->upper.next,
3575d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3585d4f98a2SYan Zheng 		edges[idx++] = edge;
3595d4f98a2SYan Zheng 		node = edge->node[UPPER];
3605d4f98a2SYan Zheng 	}
3613fd0a558SYan, Zheng 	BUG_ON(node->detached);
3625d4f98a2SYan Zheng 	*index = idx;
3635d4f98a2SYan Zheng 	return node;
3645d4f98a2SYan Zheng }
3655d4f98a2SYan Zheng 
3665d4f98a2SYan Zheng /*
3675d4f98a2SYan Zheng  * walk down backref nodes to find start of next reference path
3685d4f98a2SYan Zheng  */
3695d4f98a2SYan Zheng static struct backref_node *walk_down_backref(struct backref_edge *edges[],
3705d4f98a2SYan Zheng 					      int *index)
3715d4f98a2SYan Zheng {
3725d4f98a2SYan Zheng 	struct backref_edge *edge;
3735d4f98a2SYan Zheng 	struct backref_node *lower;
3745d4f98a2SYan Zheng 	int idx = *index;
3755d4f98a2SYan Zheng 
3765d4f98a2SYan Zheng 	while (idx > 0) {
3775d4f98a2SYan Zheng 		edge = edges[idx - 1];
3785d4f98a2SYan Zheng 		lower = edge->node[LOWER];
3795d4f98a2SYan Zheng 		if (list_is_last(&edge->list[LOWER], &lower->upper)) {
3805d4f98a2SYan Zheng 			idx--;
3815d4f98a2SYan Zheng 			continue;
3825d4f98a2SYan Zheng 		}
3835d4f98a2SYan Zheng 		edge = list_entry(edge->list[LOWER].next,
3845d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3855d4f98a2SYan Zheng 		edges[idx - 1] = edge;
3865d4f98a2SYan Zheng 		*index = idx;
3875d4f98a2SYan Zheng 		return edge->node[UPPER];
3885d4f98a2SYan Zheng 	}
3895d4f98a2SYan Zheng 	*index = 0;
3905d4f98a2SYan Zheng 	return NULL;
3915d4f98a2SYan Zheng }
3925d4f98a2SYan Zheng 
3933fd0a558SYan, Zheng static void unlock_node_buffer(struct backref_node *node)
3945d4f98a2SYan Zheng {
3955d4f98a2SYan Zheng 	if (node->locked) {
3965d4f98a2SYan Zheng 		btrfs_tree_unlock(node->eb);
3975d4f98a2SYan Zheng 		node->locked = 0;
3985d4f98a2SYan Zheng 	}
3993fd0a558SYan, Zheng }
4003fd0a558SYan, Zheng 
4013fd0a558SYan, Zheng static void drop_node_buffer(struct backref_node *node)
4023fd0a558SYan, Zheng {
4033fd0a558SYan, Zheng 	if (node->eb) {
4043fd0a558SYan, Zheng 		unlock_node_buffer(node);
4055d4f98a2SYan Zheng 		free_extent_buffer(node->eb);
4065d4f98a2SYan Zheng 		node->eb = NULL;
4075d4f98a2SYan Zheng 	}
4085d4f98a2SYan Zheng }
4095d4f98a2SYan Zheng 
4105d4f98a2SYan Zheng static void drop_backref_node(struct backref_cache *tree,
4115d4f98a2SYan Zheng 			      struct backref_node *node)
4125d4f98a2SYan Zheng {
4135d4f98a2SYan Zheng 	BUG_ON(!list_empty(&node->upper));
4145d4f98a2SYan Zheng 
4155d4f98a2SYan Zheng 	drop_node_buffer(node);
4163fd0a558SYan, Zheng 	list_del(&node->list);
4175d4f98a2SYan Zheng 	list_del(&node->lower);
4183fd0a558SYan, Zheng 	if (!RB_EMPTY_NODE(&node->rb_node))
4195d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &tree->rb_root);
4203fd0a558SYan, Zheng 	free_backref_node(tree, node);
4215d4f98a2SYan Zheng }
4225d4f98a2SYan Zheng 
4235d4f98a2SYan Zheng /*
4245d4f98a2SYan Zheng  * remove a backref node from the backref cache
4255d4f98a2SYan Zheng  */
4265d4f98a2SYan Zheng static void remove_backref_node(struct backref_cache *cache,
4275d4f98a2SYan Zheng 				struct backref_node *node)
4285d4f98a2SYan Zheng {
4295d4f98a2SYan Zheng 	struct backref_node *upper;
4305d4f98a2SYan Zheng 	struct backref_edge *edge;
4315d4f98a2SYan Zheng 
4325d4f98a2SYan Zheng 	if (!node)
4335d4f98a2SYan Zheng 		return;
4345d4f98a2SYan Zheng 
4353fd0a558SYan, Zheng 	BUG_ON(!node->lowest && !node->detached);
4365d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
4375d4f98a2SYan Zheng 		edge = list_entry(node->upper.next, struct backref_edge,
4385d4f98a2SYan Zheng 				  list[LOWER]);
4395d4f98a2SYan Zheng 		upper = edge->node[UPPER];
4405d4f98a2SYan Zheng 		list_del(&edge->list[LOWER]);
4415d4f98a2SYan Zheng 		list_del(&edge->list[UPPER]);
4423fd0a558SYan, Zheng 		free_backref_edge(cache, edge);
4433fd0a558SYan, Zheng 
4443fd0a558SYan, Zheng 		if (RB_EMPTY_NODE(&upper->rb_node)) {
4453fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->upper));
4463fd0a558SYan, Zheng 			drop_backref_node(cache, node);
4473fd0a558SYan, Zheng 			node = upper;
4483fd0a558SYan, Zheng 			node->lowest = 1;
4493fd0a558SYan, Zheng 			continue;
4503fd0a558SYan, Zheng 		}
4515d4f98a2SYan Zheng 		/*
4523fd0a558SYan, Zheng 		 * add the node to leaf node list if no other
4535d4f98a2SYan Zheng 		 * child block cached.
4545d4f98a2SYan Zheng 		 */
4555d4f98a2SYan Zheng 		if (list_empty(&upper->lower)) {
4563fd0a558SYan, Zheng 			list_add_tail(&upper->lower, &cache->leaves);
4575d4f98a2SYan Zheng 			upper->lowest = 1;
4585d4f98a2SYan Zheng 		}
4595d4f98a2SYan Zheng 	}
4603fd0a558SYan, Zheng 
4615d4f98a2SYan Zheng 	drop_backref_node(cache, node);
4625d4f98a2SYan Zheng }
4635d4f98a2SYan Zheng 
4643fd0a558SYan, Zheng static void update_backref_node(struct backref_cache *cache,
4653fd0a558SYan, Zheng 				struct backref_node *node, u64 bytenr)
4663fd0a558SYan, Zheng {
4673fd0a558SYan, Zheng 	struct rb_node *rb_node;
4683fd0a558SYan, Zheng 	rb_erase(&node->rb_node, &cache->rb_root);
4693fd0a558SYan, Zheng 	node->bytenr = bytenr;
4703fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
47143c04fb1SJeff Mahoney 	if (rb_node)
47243c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, bytenr);
4733fd0a558SYan, Zheng }
4743fd0a558SYan, Zheng 
4753fd0a558SYan, Zheng /*
4763fd0a558SYan, Zheng  * update backref cache after a transaction commit
4773fd0a558SYan, Zheng  */
4783fd0a558SYan, Zheng static int update_backref_cache(struct btrfs_trans_handle *trans,
4793fd0a558SYan, Zheng 				struct backref_cache *cache)
4803fd0a558SYan, Zheng {
4813fd0a558SYan, Zheng 	struct backref_node *node;
4823fd0a558SYan, Zheng 	int level = 0;
4833fd0a558SYan, Zheng 
4843fd0a558SYan, Zheng 	if (cache->last_trans == 0) {
4853fd0a558SYan, Zheng 		cache->last_trans = trans->transid;
4863fd0a558SYan, Zheng 		return 0;
4873fd0a558SYan, Zheng 	}
4883fd0a558SYan, Zheng 
4893fd0a558SYan, Zheng 	if (cache->last_trans == trans->transid)
4903fd0a558SYan, Zheng 		return 0;
4913fd0a558SYan, Zheng 
4923fd0a558SYan, Zheng 	/*
4933fd0a558SYan, Zheng 	 * detached nodes are used to avoid unnecessary backref
4943fd0a558SYan, Zheng 	 * lookup. transaction commit changes the extent tree.
4953fd0a558SYan, Zheng 	 * so the detached nodes are no longer useful.
4963fd0a558SYan, Zheng 	 */
4973fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
4983fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
4993fd0a558SYan, Zheng 				  struct backref_node, list);
5003fd0a558SYan, Zheng 		remove_backref_node(cache, node);
5013fd0a558SYan, Zheng 	}
5023fd0a558SYan, Zheng 
5033fd0a558SYan, Zheng 	while (!list_empty(&cache->changed)) {
5043fd0a558SYan, Zheng 		node = list_entry(cache->changed.next,
5053fd0a558SYan, Zheng 				  struct backref_node, list);
5063fd0a558SYan, Zheng 		list_del_init(&node->list);
5073fd0a558SYan, Zheng 		BUG_ON(node->pending);
5083fd0a558SYan, Zheng 		update_backref_node(cache, node, node->new_bytenr);
5093fd0a558SYan, Zheng 	}
5103fd0a558SYan, Zheng 
5113fd0a558SYan, Zheng 	/*
5123fd0a558SYan, Zheng 	 * some nodes can be left in the pending list if there were
5133fd0a558SYan, Zheng 	 * errors during processing the pending nodes.
5143fd0a558SYan, Zheng 	 */
5153fd0a558SYan, Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
5163fd0a558SYan, Zheng 		list_for_each_entry(node, &cache->pending[level], list) {
5173fd0a558SYan, Zheng 			BUG_ON(!node->pending);
5183fd0a558SYan, Zheng 			if (node->bytenr == node->new_bytenr)
5193fd0a558SYan, Zheng 				continue;
5203fd0a558SYan, Zheng 			update_backref_node(cache, node, node->new_bytenr);
5213fd0a558SYan, Zheng 		}
5223fd0a558SYan, Zheng 	}
5233fd0a558SYan, Zheng 
5243fd0a558SYan, Zheng 	cache->last_trans = 0;
5253fd0a558SYan, Zheng 	return 1;
5263fd0a558SYan, Zheng }
5273fd0a558SYan, Zheng 
528f2a97a9dSDavid Sterba 
5293fd0a558SYan, Zheng static int should_ignore_root(struct btrfs_root *root)
5303fd0a558SYan, Zheng {
5313fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
5323fd0a558SYan, Zheng 
53327cdeb70SMiao Xie 	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
5343fd0a558SYan, Zheng 		return 0;
5353fd0a558SYan, Zheng 
5363fd0a558SYan, Zheng 	reloc_root = root->reloc_root;
5373fd0a558SYan, Zheng 	if (!reloc_root)
5383fd0a558SYan, Zheng 		return 0;
5393fd0a558SYan, Zheng 
5403fd0a558SYan, Zheng 	if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
5413fd0a558SYan, Zheng 	    root->fs_info->running_transaction->transid - 1)
5423fd0a558SYan, Zheng 		return 0;
5433fd0a558SYan, Zheng 	/*
5443fd0a558SYan, Zheng 	 * if there is reloc tree and it was created in previous
5453fd0a558SYan, Zheng 	 * transaction backref lookup can find the reloc tree,
5463fd0a558SYan, Zheng 	 * so backref node for the fs tree root is useless for
5473fd0a558SYan, Zheng 	 * relocation.
5483fd0a558SYan, Zheng 	 */
5493fd0a558SYan, Zheng 	return 1;
5503fd0a558SYan, Zheng }
5515d4f98a2SYan Zheng /*
5525d4f98a2SYan Zheng  * find reloc tree by address of tree root
5535d4f98a2SYan Zheng  */
5545d4f98a2SYan Zheng static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
5555d4f98a2SYan Zheng 					  u64 bytenr)
5565d4f98a2SYan Zheng {
5575d4f98a2SYan Zheng 	struct rb_node *rb_node;
5585d4f98a2SYan Zheng 	struct mapping_node *node;
5595d4f98a2SYan Zheng 	struct btrfs_root *root = NULL;
5605d4f98a2SYan Zheng 
5615d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
5625d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
5635d4f98a2SYan Zheng 	if (rb_node) {
5645d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
5655d4f98a2SYan Zheng 		root = (struct btrfs_root *)node->data;
5665d4f98a2SYan Zheng 	}
5675d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
5685d4f98a2SYan Zheng 	return root;
5695d4f98a2SYan Zheng }
5705d4f98a2SYan Zheng 
5715d4f98a2SYan Zheng static int is_cowonly_root(u64 root_objectid)
5725d4f98a2SYan Zheng {
5735d4f98a2SYan Zheng 	if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
5745d4f98a2SYan Zheng 	    root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
5755d4f98a2SYan Zheng 	    root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
5765d4f98a2SYan Zheng 	    root_objectid == BTRFS_DEV_TREE_OBJECTID ||
5775d4f98a2SYan Zheng 	    root_objectid == BTRFS_TREE_LOG_OBJECTID ||
57866463748SWang Shilong 	    root_objectid == BTRFS_CSUM_TREE_OBJECTID ||
57966463748SWang Shilong 	    root_objectid == BTRFS_UUID_TREE_OBJECTID ||
5803e4c5efbSDavid Sterba 	    root_objectid == BTRFS_QUOTA_TREE_OBJECTID ||
5813e4c5efbSDavid Sterba 	    root_objectid == BTRFS_FREE_SPACE_TREE_OBJECTID)
5825d4f98a2SYan Zheng 		return 1;
5835d4f98a2SYan Zheng 	return 0;
5845d4f98a2SYan Zheng }
5855d4f98a2SYan Zheng 
5865d4f98a2SYan Zheng static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
5875d4f98a2SYan Zheng 					u64 root_objectid)
5885d4f98a2SYan Zheng {
5895d4f98a2SYan Zheng 	struct btrfs_key key;
5905d4f98a2SYan Zheng 
5915d4f98a2SYan Zheng 	key.objectid = root_objectid;
5925d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
5935d4f98a2SYan Zheng 	if (is_cowonly_root(root_objectid))
5945d4f98a2SYan Zheng 		key.offset = 0;
5955d4f98a2SYan Zheng 	else
5965d4f98a2SYan Zheng 		key.offset = (u64)-1;
5975d4f98a2SYan Zheng 
598c00869f1SMiao Xie 	return btrfs_get_fs_root(fs_info, &key, false);
5995d4f98a2SYan Zheng }
6005d4f98a2SYan Zheng 
6015d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6025d4f98a2SYan Zheng static noinline_for_stack
6035d4f98a2SYan Zheng struct btrfs_root *find_tree_root(struct reloc_control *rc,
6045d4f98a2SYan Zheng 				  struct extent_buffer *leaf,
6055d4f98a2SYan Zheng 				  struct btrfs_extent_ref_v0 *ref0)
6065d4f98a2SYan Zheng {
6075d4f98a2SYan Zheng 	struct btrfs_root *root;
6085d4f98a2SYan Zheng 	u64 root_objectid = btrfs_ref_root_v0(leaf, ref0);
6095d4f98a2SYan Zheng 	u64 generation = btrfs_ref_generation_v0(leaf, ref0);
6105d4f98a2SYan Zheng 
6115d4f98a2SYan Zheng 	BUG_ON(root_objectid == BTRFS_TREE_RELOC_OBJECTID);
6125d4f98a2SYan Zheng 
6135d4f98a2SYan Zheng 	root = read_fs_root(rc->extent_root->fs_info, root_objectid);
6145d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
6155d4f98a2SYan Zheng 
61627cdeb70SMiao Xie 	if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
6175d4f98a2SYan Zheng 	    generation != btrfs_root_generation(&root->root_item))
6185d4f98a2SYan Zheng 		return NULL;
6195d4f98a2SYan Zheng 
6205d4f98a2SYan Zheng 	return root;
6215d4f98a2SYan Zheng }
6225d4f98a2SYan Zheng #endif
6235d4f98a2SYan Zheng 
6245d4f98a2SYan Zheng static noinline_for_stack
6255d4f98a2SYan Zheng int find_inline_backref(struct extent_buffer *leaf, int slot,
6265d4f98a2SYan Zheng 			unsigned long *ptr, unsigned long *end)
6275d4f98a2SYan Zheng {
6283173a18fSJosef Bacik 	struct btrfs_key key;
6295d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
6305d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
6315d4f98a2SYan Zheng 	u32 item_size;
6325d4f98a2SYan Zheng 
6333173a18fSJosef Bacik 	btrfs_item_key_to_cpu(leaf, &key, slot);
6343173a18fSJosef Bacik 
6355d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(leaf, slot);
6365d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6375d4f98a2SYan Zheng 	if (item_size < sizeof(*ei)) {
6385d4f98a2SYan Zheng 		WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
6395d4f98a2SYan Zheng 		return 1;
6405d4f98a2SYan Zheng 	}
6415d4f98a2SYan Zheng #endif
6425d4f98a2SYan Zheng 	ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
6435d4f98a2SYan Zheng 	WARN_ON(!(btrfs_extent_flags(leaf, ei) &
6445d4f98a2SYan Zheng 		  BTRFS_EXTENT_FLAG_TREE_BLOCK));
6455d4f98a2SYan Zheng 
6463173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6473173a18fSJosef Bacik 	    item_size <= sizeof(*ei) + sizeof(*bi)) {
6485d4f98a2SYan Zheng 		WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
6495d4f98a2SYan Zheng 		return 1;
6505d4f98a2SYan Zheng 	}
651d062d13cSJosef Bacik 	if (key.type == BTRFS_METADATA_ITEM_KEY &&
652d062d13cSJosef Bacik 	    item_size <= sizeof(*ei)) {
653d062d13cSJosef Bacik 		WARN_ON(item_size < sizeof(*ei));
654d062d13cSJosef Bacik 		return 1;
655d062d13cSJosef Bacik 	}
6565d4f98a2SYan Zheng 
6573173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY) {
6585d4f98a2SYan Zheng 		bi = (struct btrfs_tree_block_info *)(ei + 1);
6595d4f98a2SYan Zheng 		*ptr = (unsigned long)(bi + 1);
6603173a18fSJosef Bacik 	} else {
6613173a18fSJosef Bacik 		*ptr = (unsigned long)(ei + 1);
6623173a18fSJosef Bacik 	}
6635d4f98a2SYan Zheng 	*end = (unsigned long)ei + item_size;
6645d4f98a2SYan Zheng 	return 0;
6655d4f98a2SYan Zheng }
6665d4f98a2SYan Zheng 
6675d4f98a2SYan Zheng /*
6685d4f98a2SYan Zheng  * build backref tree for a given tree block. root of the backref tree
6695d4f98a2SYan Zheng  * corresponds the tree block, leaves of the backref tree correspond
6705d4f98a2SYan Zheng  * roots of b-trees that reference the tree block.
6715d4f98a2SYan Zheng  *
6725d4f98a2SYan Zheng  * the basic idea of this function is check backrefs of a given block
67301327610SNicholas D Steeves  * to find upper level blocks that reference the block, and then check
67401327610SNicholas D Steeves  * backrefs of these upper level blocks recursively. the recursion stop
6755d4f98a2SYan Zheng  * when tree root is reached or backrefs for the block is cached.
6765d4f98a2SYan Zheng  *
6775d4f98a2SYan Zheng  * NOTE: if we find backrefs for a block are cached, we know backrefs
6785d4f98a2SYan Zheng  * for all upper level blocks that directly/indirectly reference the
6795d4f98a2SYan Zheng  * block are also cached.
6805d4f98a2SYan Zheng  */
6813fd0a558SYan, Zheng static noinline_for_stack
6823fd0a558SYan, Zheng struct backref_node *build_backref_tree(struct reloc_control *rc,
6835d4f98a2SYan Zheng 					struct btrfs_key *node_key,
6845d4f98a2SYan Zheng 					int level, u64 bytenr)
6855d4f98a2SYan Zheng {
6863fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
6875d4f98a2SYan Zheng 	struct btrfs_path *path1;
6885d4f98a2SYan Zheng 	struct btrfs_path *path2;
6895d4f98a2SYan Zheng 	struct extent_buffer *eb;
6905d4f98a2SYan Zheng 	struct btrfs_root *root;
6915d4f98a2SYan Zheng 	struct backref_node *cur;
6925d4f98a2SYan Zheng 	struct backref_node *upper;
6935d4f98a2SYan Zheng 	struct backref_node *lower;
6945d4f98a2SYan Zheng 	struct backref_node *node = NULL;
6955d4f98a2SYan Zheng 	struct backref_node *exist = NULL;
6965d4f98a2SYan Zheng 	struct backref_edge *edge;
6975d4f98a2SYan Zheng 	struct rb_node *rb_node;
6985d4f98a2SYan Zheng 	struct btrfs_key key;
6995d4f98a2SYan Zheng 	unsigned long end;
7005d4f98a2SYan Zheng 	unsigned long ptr;
7015d4f98a2SYan Zheng 	LIST_HEAD(list);
7023fd0a558SYan, Zheng 	LIST_HEAD(useless);
7033fd0a558SYan, Zheng 	int cowonly;
7045d4f98a2SYan Zheng 	int ret;
7055d4f98a2SYan Zheng 	int err = 0;
706b6c60c80SJosef Bacik 	bool need_check = true;
7075d4f98a2SYan Zheng 
7085d4f98a2SYan Zheng 	path1 = btrfs_alloc_path();
7095d4f98a2SYan Zheng 	path2 = btrfs_alloc_path();
7105d4f98a2SYan Zheng 	if (!path1 || !path2) {
7115d4f98a2SYan Zheng 		err = -ENOMEM;
7125d4f98a2SYan Zheng 		goto out;
7135d4f98a2SYan Zheng 	}
714e4058b54SDavid Sterba 	path1->reada = READA_FORWARD;
715e4058b54SDavid Sterba 	path2->reada = READA_FORWARD;
7165d4f98a2SYan Zheng 
7173fd0a558SYan, Zheng 	node = alloc_backref_node(cache);
7185d4f98a2SYan Zheng 	if (!node) {
7195d4f98a2SYan Zheng 		err = -ENOMEM;
7205d4f98a2SYan Zheng 		goto out;
7215d4f98a2SYan Zheng 	}
7225d4f98a2SYan Zheng 
7235d4f98a2SYan Zheng 	node->bytenr = bytenr;
7245d4f98a2SYan Zheng 	node->level = level;
7255d4f98a2SYan Zheng 	node->lowest = 1;
7265d4f98a2SYan Zheng 	cur = node;
7275d4f98a2SYan Zheng again:
7285d4f98a2SYan Zheng 	end = 0;
7295d4f98a2SYan Zheng 	ptr = 0;
7305d4f98a2SYan Zheng 	key.objectid = cur->bytenr;
7313173a18fSJosef Bacik 	key.type = BTRFS_METADATA_ITEM_KEY;
7325d4f98a2SYan Zheng 	key.offset = (u64)-1;
7335d4f98a2SYan Zheng 
7345d4f98a2SYan Zheng 	path1->search_commit_root = 1;
7355d4f98a2SYan Zheng 	path1->skip_locking = 1;
7365d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
7375d4f98a2SYan Zheng 				0, 0);
7385d4f98a2SYan Zheng 	if (ret < 0) {
7395d4f98a2SYan Zheng 		err = ret;
7405d4f98a2SYan Zheng 		goto out;
7415d4f98a2SYan Zheng 	}
74275bfb9afSJosef Bacik 	ASSERT(ret);
74375bfb9afSJosef Bacik 	ASSERT(path1->slots[0]);
7445d4f98a2SYan Zheng 
7455d4f98a2SYan Zheng 	path1->slots[0]--;
7465d4f98a2SYan Zheng 
7475d4f98a2SYan Zheng 	WARN_ON(cur->checked);
7485d4f98a2SYan Zheng 	if (!list_empty(&cur->upper)) {
7495d4f98a2SYan Zheng 		/*
75070f23fd6SJustin P. Mattock 		 * the backref was added previously when processing
7515d4f98a2SYan Zheng 		 * backref of type BTRFS_TREE_BLOCK_REF_KEY
7525d4f98a2SYan Zheng 		 */
75375bfb9afSJosef Bacik 		ASSERT(list_is_singular(&cur->upper));
7545d4f98a2SYan Zheng 		edge = list_entry(cur->upper.next, struct backref_edge,
7555d4f98a2SYan Zheng 				  list[LOWER]);
75675bfb9afSJosef Bacik 		ASSERT(list_empty(&edge->list[UPPER]));
7575d4f98a2SYan Zheng 		exist = edge->node[UPPER];
7585d4f98a2SYan Zheng 		/*
7595d4f98a2SYan Zheng 		 * add the upper level block to pending list if we need
7605d4f98a2SYan Zheng 		 * check its backrefs
7615d4f98a2SYan Zheng 		 */
7625d4f98a2SYan Zheng 		if (!exist->checked)
7635d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
7645d4f98a2SYan Zheng 	} else {
7655d4f98a2SYan Zheng 		exist = NULL;
7665d4f98a2SYan Zheng 	}
7675d4f98a2SYan Zheng 
7685d4f98a2SYan Zheng 	while (1) {
7695d4f98a2SYan Zheng 		cond_resched();
7705d4f98a2SYan Zheng 		eb = path1->nodes[0];
7715d4f98a2SYan Zheng 
7725d4f98a2SYan Zheng 		if (ptr >= end) {
7735d4f98a2SYan Zheng 			if (path1->slots[0] >= btrfs_header_nritems(eb)) {
7745d4f98a2SYan Zheng 				ret = btrfs_next_leaf(rc->extent_root, path1);
7755d4f98a2SYan Zheng 				if (ret < 0) {
7765d4f98a2SYan Zheng 					err = ret;
7775d4f98a2SYan Zheng 					goto out;
7785d4f98a2SYan Zheng 				}
7795d4f98a2SYan Zheng 				if (ret > 0)
7805d4f98a2SYan Zheng 					break;
7815d4f98a2SYan Zheng 				eb = path1->nodes[0];
7825d4f98a2SYan Zheng 			}
7835d4f98a2SYan Zheng 
7845d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
7855d4f98a2SYan Zheng 			if (key.objectid != cur->bytenr) {
7865d4f98a2SYan Zheng 				WARN_ON(exist);
7875d4f98a2SYan Zheng 				break;
7885d4f98a2SYan Zheng 			}
7895d4f98a2SYan Zheng 
7903173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY ||
7913173a18fSJosef Bacik 			    key.type == BTRFS_METADATA_ITEM_KEY) {
7925d4f98a2SYan Zheng 				ret = find_inline_backref(eb, path1->slots[0],
7935d4f98a2SYan Zheng 							  &ptr, &end);
7945d4f98a2SYan Zheng 				if (ret)
7955d4f98a2SYan Zheng 					goto next;
7965d4f98a2SYan Zheng 			}
7975d4f98a2SYan Zheng 		}
7985d4f98a2SYan Zheng 
7995d4f98a2SYan Zheng 		if (ptr < end) {
8005d4f98a2SYan Zheng 			/* update key for inline back ref */
8015d4f98a2SYan Zheng 			struct btrfs_extent_inline_ref *iref;
8025d4f98a2SYan Zheng 			iref = (struct btrfs_extent_inline_ref *)ptr;
8035d4f98a2SYan Zheng 			key.type = btrfs_extent_inline_ref_type(eb, iref);
8045d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
8055d4f98a2SYan Zheng 			WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
8065d4f98a2SYan Zheng 				key.type != BTRFS_SHARED_BLOCK_REF_KEY);
8075d4f98a2SYan Zheng 		}
8085d4f98a2SYan Zheng 
8095d4f98a2SYan Zheng 		if (exist &&
8105d4f98a2SYan Zheng 		    ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
8115d4f98a2SYan Zheng 		      exist->owner == key.offset) ||
8125d4f98a2SYan Zheng 		     (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
8135d4f98a2SYan Zheng 		      exist->bytenr == key.offset))) {
8145d4f98a2SYan Zheng 			exist = NULL;
8155d4f98a2SYan Zheng 			goto next;
8165d4f98a2SYan Zheng 		}
8175d4f98a2SYan Zheng 
8185d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
8195d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY ||
8205d4f98a2SYan Zheng 		    key.type == BTRFS_EXTENT_REF_V0_KEY) {
8213fd0a558SYan, Zheng 			if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
8225d4f98a2SYan Zheng 				struct btrfs_extent_ref_v0 *ref0;
8235d4f98a2SYan Zheng 				ref0 = btrfs_item_ptr(eb, path1->slots[0],
8245d4f98a2SYan Zheng 						struct btrfs_extent_ref_v0);
8253fd0a558SYan, Zheng 				if (key.objectid == key.offset) {
826046f264fSYan, Zheng 					root = find_tree_root(rc, eb, ref0);
8273fd0a558SYan, Zheng 					if (root && !should_ignore_root(root))
8285d4f98a2SYan Zheng 						cur->root = root;
8295d4f98a2SYan Zheng 					else
8303fd0a558SYan, Zheng 						list_add(&cur->list, &useless);
8315d4f98a2SYan Zheng 					break;
8325d4f98a2SYan Zheng 				}
833046f264fSYan, Zheng 				if (is_cowonly_root(btrfs_ref_root_v0(eb,
834046f264fSYan, Zheng 								      ref0)))
835046f264fSYan, Zheng 					cur->cowonly = 1;
8363fd0a558SYan, Zheng 			}
8375d4f98a2SYan Zheng #else
83875bfb9afSJosef Bacik 		ASSERT(key.type != BTRFS_EXTENT_REF_V0_KEY);
8395d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
8405d4f98a2SYan Zheng #endif
8415d4f98a2SYan Zheng 			if (key.objectid == key.offset) {
8425d4f98a2SYan Zheng 				/*
8435d4f98a2SYan Zheng 				 * only root blocks of reloc trees use
8445d4f98a2SYan Zheng 				 * backref of this type.
8455d4f98a2SYan Zheng 				 */
8465d4f98a2SYan Zheng 				root = find_reloc_root(rc, cur->bytenr);
84775bfb9afSJosef Bacik 				ASSERT(root);
8485d4f98a2SYan Zheng 				cur->root = root;
8495d4f98a2SYan Zheng 				break;
8505d4f98a2SYan Zheng 			}
8515d4f98a2SYan Zheng 
8523fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
8535d4f98a2SYan Zheng 			if (!edge) {
8545d4f98a2SYan Zheng 				err = -ENOMEM;
8555d4f98a2SYan Zheng 				goto out;
8565d4f98a2SYan Zheng 			}
8575d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, key.offset);
8585d4f98a2SYan Zheng 			if (!rb_node) {
8593fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
8605d4f98a2SYan Zheng 				if (!upper) {
8613fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
8625d4f98a2SYan Zheng 					err = -ENOMEM;
8635d4f98a2SYan Zheng 					goto out;
8645d4f98a2SYan Zheng 				}
8655d4f98a2SYan Zheng 				upper->bytenr = key.offset;
8665d4f98a2SYan Zheng 				upper->level = cur->level + 1;
8675d4f98a2SYan Zheng 				/*
8685d4f98a2SYan Zheng 				 *  backrefs for the upper level block isn't
8695d4f98a2SYan Zheng 				 *  cached, add the block to pending list
8705d4f98a2SYan Zheng 				 */
8715d4f98a2SYan Zheng 				list_add_tail(&edge->list[UPPER], &list);
8725d4f98a2SYan Zheng 			} else {
8735d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
8745d4f98a2SYan Zheng 						 rb_node);
87575bfb9afSJosef Bacik 				ASSERT(upper->checked);
8765d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
8775d4f98a2SYan Zheng 			}
8783fd0a558SYan, Zheng 			list_add_tail(&edge->list[LOWER], &cur->upper);
8795d4f98a2SYan Zheng 			edge->node[LOWER] = cur;
8803fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
8815d4f98a2SYan Zheng 
8825d4f98a2SYan Zheng 			goto next;
8835d4f98a2SYan Zheng 		} else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
8845d4f98a2SYan Zheng 			goto next;
8855d4f98a2SYan Zheng 		}
8865d4f98a2SYan Zheng 
8875d4f98a2SYan Zheng 		/* key.type == BTRFS_TREE_BLOCK_REF_KEY */
8885d4f98a2SYan Zheng 		root = read_fs_root(rc->extent_root->fs_info, key.offset);
8895d4f98a2SYan Zheng 		if (IS_ERR(root)) {
8905d4f98a2SYan Zheng 			err = PTR_ERR(root);
8915d4f98a2SYan Zheng 			goto out;
8925d4f98a2SYan Zheng 		}
8935d4f98a2SYan Zheng 
89427cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
8953fd0a558SYan, Zheng 			cur->cowonly = 1;
8963fd0a558SYan, Zheng 
8975d4f98a2SYan Zheng 		if (btrfs_root_level(&root->root_item) == cur->level) {
8985d4f98a2SYan Zheng 			/* tree root */
89975bfb9afSJosef Bacik 			ASSERT(btrfs_root_bytenr(&root->root_item) ==
9005d4f98a2SYan Zheng 			       cur->bytenr);
9013fd0a558SYan, Zheng 			if (should_ignore_root(root))
9023fd0a558SYan, Zheng 				list_add(&cur->list, &useless);
9033fd0a558SYan, Zheng 			else
9045d4f98a2SYan Zheng 				cur->root = root;
9055d4f98a2SYan Zheng 			break;
9065d4f98a2SYan Zheng 		}
9075d4f98a2SYan Zheng 
9085d4f98a2SYan Zheng 		level = cur->level + 1;
9095d4f98a2SYan Zheng 
9105d4f98a2SYan Zheng 		/*
9115d4f98a2SYan Zheng 		 * searching the tree to find upper level blocks
9125d4f98a2SYan Zheng 		 * reference the block.
9135d4f98a2SYan Zheng 		 */
9145d4f98a2SYan Zheng 		path2->search_commit_root = 1;
9155d4f98a2SYan Zheng 		path2->skip_locking = 1;
9165d4f98a2SYan Zheng 		path2->lowest_level = level;
9175d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
9185d4f98a2SYan Zheng 		path2->lowest_level = 0;
9195d4f98a2SYan Zheng 		if (ret < 0) {
9205d4f98a2SYan Zheng 			err = ret;
9215d4f98a2SYan Zheng 			goto out;
9225d4f98a2SYan Zheng 		}
92333c66f43SYan Zheng 		if (ret > 0 && path2->slots[level] > 0)
92433c66f43SYan Zheng 			path2->slots[level]--;
9255d4f98a2SYan Zheng 
9265d4f98a2SYan Zheng 		eb = path2->nodes[level];
9273561b9dbSLiu Bo 		if (btrfs_node_blockptr(eb, path2->slots[level]) !=
9283561b9dbSLiu Bo 		    cur->bytenr) {
9293561b9dbSLiu Bo 			btrfs_err(root->fs_info,
9303561b9dbSLiu Bo 	"couldn't find block (%llu) (level %d) in tree (%llu) with key (%llu %u %llu)",
9313561b9dbSLiu Bo 				  cur->bytenr, level - 1, root->objectid,
9323561b9dbSLiu Bo 				  node_key->objectid, node_key->type,
9333561b9dbSLiu Bo 				  node_key->offset);
9343561b9dbSLiu Bo 			err = -ENOENT;
9353561b9dbSLiu Bo 			goto out;
9363561b9dbSLiu Bo 		}
9375d4f98a2SYan Zheng 		lower = cur;
938b6c60c80SJosef Bacik 		need_check = true;
9395d4f98a2SYan Zheng 		for (; level < BTRFS_MAX_LEVEL; level++) {
9405d4f98a2SYan Zheng 			if (!path2->nodes[level]) {
94175bfb9afSJosef Bacik 				ASSERT(btrfs_root_bytenr(&root->root_item) ==
9425d4f98a2SYan Zheng 				       lower->bytenr);
9433fd0a558SYan, Zheng 				if (should_ignore_root(root))
9443fd0a558SYan, Zheng 					list_add(&lower->list, &useless);
9453fd0a558SYan, Zheng 				else
9465d4f98a2SYan Zheng 					lower->root = root;
9475d4f98a2SYan Zheng 				break;
9485d4f98a2SYan Zheng 			}
9495d4f98a2SYan Zheng 
9503fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
9515d4f98a2SYan Zheng 			if (!edge) {
9525d4f98a2SYan Zheng 				err = -ENOMEM;
9535d4f98a2SYan Zheng 				goto out;
9545d4f98a2SYan Zheng 			}
9555d4f98a2SYan Zheng 
9565d4f98a2SYan Zheng 			eb = path2->nodes[level];
9575d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, eb->start);
9585d4f98a2SYan Zheng 			if (!rb_node) {
9593fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
9605d4f98a2SYan Zheng 				if (!upper) {
9613fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
9625d4f98a2SYan Zheng 					err = -ENOMEM;
9635d4f98a2SYan Zheng 					goto out;
9645d4f98a2SYan Zheng 				}
9655d4f98a2SYan Zheng 				upper->bytenr = eb->start;
9665d4f98a2SYan Zheng 				upper->owner = btrfs_header_owner(eb);
9675d4f98a2SYan Zheng 				upper->level = lower->level + 1;
96827cdeb70SMiao Xie 				if (!test_bit(BTRFS_ROOT_REF_COWS,
96927cdeb70SMiao Xie 					      &root->state))
9703fd0a558SYan, Zheng 					upper->cowonly = 1;
9715d4f98a2SYan Zheng 
9725d4f98a2SYan Zheng 				/*
9735d4f98a2SYan Zheng 				 * if we know the block isn't shared
9745d4f98a2SYan Zheng 				 * we can void checking its backrefs.
9755d4f98a2SYan Zheng 				 */
9765d4f98a2SYan Zheng 				if (btrfs_block_can_be_shared(root, eb))
9775d4f98a2SYan Zheng 					upper->checked = 0;
9785d4f98a2SYan Zheng 				else
9795d4f98a2SYan Zheng 					upper->checked = 1;
9805d4f98a2SYan Zheng 
9815d4f98a2SYan Zheng 				/*
9825d4f98a2SYan Zheng 				 * add the block to pending list if we
983b6c60c80SJosef Bacik 				 * need check its backrefs, we only do this once
984b6c60c80SJosef Bacik 				 * while walking up a tree as we will catch
985b6c60c80SJosef Bacik 				 * anything else later on.
9865d4f98a2SYan Zheng 				 */
987b6c60c80SJosef Bacik 				if (!upper->checked && need_check) {
988b6c60c80SJosef Bacik 					need_check = false;
9895d4f98a2SYan Zheng 					list_add_tail(&edge->list[UPPER],
9905d4f98a2SYan Zheng 						      &list);
991bbe90514SJosef Bacik 				} else {
992bbe90514SJosef Bacik 					if (upper->checked)
993bbe90514SJosef Bacik 						need_check = true;
9945d4f98a2SYan Zheng 					INIT_LIST_HEAD(&edge->list[UPPER]);
995bbe90514SJosef Bacik 				}
9965d4f98a2SYan Zheng 			} else {
9975d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
9985d4f98a2SYan Zheng 						 rb_node);
99975bfb9afSJosef Bacik 				ASSERT(upper->checked);
10005d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
10013fd0a558SYan, Zheng 				if (!upper->owner)
10023fd0a558SYan, Zheng 					upper->owner = btrfs_header_owner(eb);
10035d4f98a2SYan Zheng 			}
10045d4f98a2SYan Zheng 			list_add_tail(&edge->list[LOWER], &lower->upper);
10055d4f98a2SYan Zheng 			edge->node[LOWER] = lower;
10063fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
10075d4f98a2SYan Zheng 
10085d4f98a2SYan Zheng 			if (rb_node)
10095d4f98a2SYan Zheng 				break;
10105d4f98a2SYan Zheng 			lower = upper;
10115d4f98a2SYan Zheng 			upper = NULL;
10125d4f98a2SYan Zheng 		}
1013b3b4aa74SDavid Sterba 		btrfs_release_path(path2);
10145d4f98a2SYan Zheng next:
10155d4f98a2SYan Zheng 		if (ptr < end) {
10165d4f98a2SYan Zheng 			ptr += btrfs_extent_inline_ref_size(key.type);
10175d4f98a2SYan Zheng 			if (ptr >= end) {
10185d4f98a2SYan Zheng 				WARN_ON(ptr > end);
10195d4f98a2SYan Zheng 				ptr = 0;
10205d4f98a2SYan Zheng 				end = 0;
10215d4f98a2SYan Zheng 			}
10225d4f98a2SYan Zheng 		}
10235d4f98a2SYan Zheng 		if (ptr >= end)
10245d4f98a2SYan Zheng 			path1->slots[0]++;
10255d4f98a2SYan Zheng 	}
1026b3b4aa74SDavid Sterba 	btrfs_release_path(path1);
10275d4f98a2SYan Zheng 
10285d4f98a2SYan Zheng 	cur->checked = 1;
10295d4f98a2SYan Zheng 	WARN_ON(exist);
10305d4f98a2SYan Zheng 
10315d4f98a2SYan Zheng 	/* the pending list isn't empty, take the first block to process */
10325d4f98a2SYan Zheng 	if (!list_empty(&list)) {
10335d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10345d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10355d4f98a2SYan Zheng 		cur = edge->node[UPPER];
10365d4f98a2SYan Zheng 		goto again;
10375d4f98a2SYan Zheng 	}
10385d4f98a2SYan Zheng 
10395d4f98a2SYan Zheng 	/*
10405d4f98a2SYan Zheng 	 * everything goes well, connect backref nodes and insert backref nodes
10415d4f98a2SYan Zheng 	 * into the cache.
10425d4f98a2SYan Zheng 	 */
104375bfb9afSJosef Bacik 	ASSERT(node->checked);
10443fd0a558SYan, Zheng 	cowonly = node->cowonly;
10453fd0a558SYan, Zheng 	if (!cowonly) {
10463fd0a558SYan, Zheng 		rb_node = tree_insert(&cache->rb_root, node->bytenr,
10473fd0a558SYan, Zheng 				      &node->rb_node);
104843c04fb1SJeff Mahoney 		if (rb_node)
104943c04fb1SJeff Mahoney 			backref_tree_panic(rb_node, -EEXIST, node->bytenr);
10503fd0a558SYan, Zheng 		list_add_tail(&node->lower, &cache->leaves);
10513fd0a558SYan, Zheng 	}
10525d4f98a2SYan Zheng 
10535d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER])
10545d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &list);
10555d4f98a2SYan Zheng 
10565d4f98a2SYan Zheng 	while (!list_empty(&list)) {
10575d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10585d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10595d4f98a2SYan Zheng 		upper = edge->node[UPPER];
10603fd0a558SYan, Zheng 		if (upper->detached) {
10613fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
10623fd0a558SYan, Zheng 			lower = edge->node[LOWER];
10633fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
10643fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
10653fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
10663fd0a558SYan, Zheng 			continue;
10673fd0a558SYan, Zheng 		}
10685d4f98a2SYan Zheng 
10695d4f98a2SYan Zheng 		if (!RB_EMPTY_NODE(&upper->rb_node)) {
10705d4f98a2SYan Zheng 			if (upper->lowest) {
10715d4f98a2SYan Zheng 				list_del_init(&upper->lower);
10725d4f98a2SYan Zheng 				upper->lowest = 0;
10735d4f98a2SYan Zheng 			}
10745d4f98a2SYan Zheng 
10755d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &upper->lower);
10765d4f98a2SYan Zheng 			continue;
10775d4f98a2SYan Zheng 		}
10785d4f98a2SYan Zheng 
107975bfb9afSJosef Bacik 		if (!upper->checked) {
108075bfb9afSJosef Bacik 			/*
108175bfb9afSJosef Bacik 			 * Still want to blow up for developers since this is a
108275bfb9afSJosef Bacik 			 * logic bug.
108375bfb9afSJosef Bacik 			 */
108475bfb9afSJosef Bacik 			ASSERT(0);
108575bfb9afSJosef Bacik 			err = -EINVAL;
108675bfb9afSJosef Bacik 			goto out;
108775bfb9afSJosef Bacik 		}
108875bfb9afSJosef Bacik 		if (cowonly != upper->cowonly) {
108975bfb9afSJosef Bacik 			ASSERT(0);
109075bfb9afSJosef Bacik 			err = -EINVAL;
109175bfb9afSJosef Bacik 			goto out;
109275bfb9afSJosef Bacik 		}
109375bfb9afSJosef Bacik 
10943fd0a558SYan, Zheng 		if (!cowonly) {
10955d4f98a2SYan Zheng 			rb_node = tree_insert(&cache->rb_root, upper->bytenr,
10965d4f98a2SYan Zheng 					      &upper->rb_node);
109743c04fb1SJeff Mahoney 			if (rb_node)
109843c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
109943c04fb1SJeff Mahoney 						   upper->bytenr);
11003fd0a558SYan, Zheng 		}
11015d4f98a2SYan Zheng 
11025d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &upper->lower);
11035d4f98a2SYan Zheng 
11045d4f98a2SYan Zheng 		list_for_each_entry(edge, &upper->upper, list[LOWER])
11055d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
11065d4f98a2SYan Zheng 	}
11073fd0a558SYan, Zheng 	/*
11083fd0a558SYan, Zheng 	 * process useless backref nodes. backref nodes for tree leaves
11093fd0a558SYan, Zheng 	 * are deleted from the cache. backref nodes for upper level
11103fd0a558SYan, Zheng 	 * tree blocks are left in the cache to avoid unnecessary backref
11113fd0a558SYan, Zheng 	 * lookup.
11123fd0a558SYan, Zheng 	 */
11133fd0a558SYan, Zheng 	while (!list_empty(&useless)) {
11143fd0a558SYan, Zheng 		upper = list_entry(useless.next, struct backref_node, list);
11153fd0a558SYan, Zheng 		list_del_init(&upper->list);
111675bfb9afSJosef Bacik 		ASSERT(list_empty(&upper->upper));
11173fd0a558SYan, Zheng 		if (upper == node)
11183fd0a558SYan, Zheng 			node = NULL;
11193fd0a558SYan, Zheng 		if (upper->lowest) {
11203fd0a558SYan, Zheng 			list_del_init(&upper->lower);
11213fd0a558SYan, Zheng 			upper->lowest = 0;
11223fd0a558SYan, Zheng 		}
11233fd0a558SYan, Zheng 		while (!list_empty(&upper->lower)) {
11243fd0a558SYan, Zheng 			edge = list_entry(upper->lower.next,
11253fd0a558SYan, Zheng 					  struct backref_edge, list[UPPER]);
11263fd0a558SYan, Zheng 			list_del(&edge->list[UPPER]);
11273fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
11283fd0a558SYan, Zheng 			lower = edge->node[LOWER];
11293fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
11303fd0a558SYan, Zheng 
11313fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
11323fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
11333fd0a558SYan, Zheng 		}
11343fd0a558SYan, Zheng 		__mark_block_processed(rc, upper);
11353fd0a558SYan, Zheng 		if (upper->level > 0) {
11363fd0a558SYan, Zheng 			list_add(&upper->list, &cache->detached);
11373fd0a558SYan, Zheng 			upper->detached = 1;
11383fd0a558SYan, Zheng 		} else {
11393fd0a558SYan, Zheng 			rb_erase(&upper->rb_node, &cache->rb_root);
11403fd0a558SYan, Zheng 			free_backref_node(cache, upper);
11413fd0a558SYan, Zheng 		}
11423fd0a558SYan, Zheng 	}
11435d4f98a2SYan Zheng out:
11445d4f98a2SYan Zheng 	btrfs_free_path(path1);
11455d4f98a2SYan Zheng 	btrfs_free_path(path2);
11465d4f98a2SYan Zheng 	if (err) {
11473fd0a558SYan, Zheng 		while (!list_empty(&useless)) {
11483fd0a558SYan, Zheng 			lower = list_entry(useless.next,
114975bfb9afSJosef Bacik 					   struct backref_node, list);
115075bfb9afSJosef Bacik 			list_del_init(&lower->list);
11513fd0a558SYan, Zheng 		}
115275bfb9afSJosef Bacik 		while (!list_empty(&list)) {
115375bfb9afSJosef Bacik 			edge = list_first_entry(&list, struct backref_edge,
115475bfb9afSJosef Bacik 						list[UPPER]);
115575bfb9afSJosef Bacik 			list_del(&edge->list[UPPER]);
11563fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
115775bfb9afSJosef Bacik 			lower = edge->node[LOWER];
11585d4f98a2SYan Zheng 			upper = edge->node[UPPER];
11593fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
116075bfb9afSJosef Bacik 
116175bfb9afSJosef Bacik 			/*
116275bfb9afSJosef Bacik 			 * Lower is no longer linked to any upper backref nodes
116375bfb9afSJosef Bacik 			 * and isn't in the cache, we can free it ourselves.
116475bfb9afSJosef Bacik 			 */
116575bfb9afSJosef Bacik 			if (list_empty(&lower->upper) &&
116675bfb9afSJosef Bacik 			    RB_EMPTY_NODE(&lower->rb_node))
116775bfb9afSJosef Bacik 				list_add(&lower->list, &useless);
116875bfb9afSJosef Bacik 
116975bfb9afSJosef Bacik 			if (!RB_EMPTY_NODE(&upper->rb_node))
117075bfb9afSJosef Bacik 				continue;
117175bfb9afSJosef Bacik 
117201327610SNicholas D Steeves 			/* Add this guy's upper edges to the list to process */
117375bfb9afSJosef Bacik 			list_for_each_entry(edge, &upper->upper, list[LOWER])
117475bfb9afSJosef Bacik 				list_add_tail(&edge->list[UPPER], &list);
117575bfb9afSJosef Bacik 			if (list_empty(&upper->upper))
117675bfb9afSJosef Bacik 				list_add(&upper->list, &useless);
117775bfb9afSJosef Bacik 		}
117875bfb9afSJosef Bacik 
117975bfb9afSJosef Bacik 		while (!list_empty(&useless)) {
118075bfb9afSJosef Bacik 			lower = list_entry(useless.next,
118175bfb9afSJosef Bacik 					   struct backref_node, list);
118275bfb9afSJosef Bacik 			list_del_init(&lower->list);
11830fd8c3daSLiu Bo 			if (lower == node)
11840fd8c3daSLiu Bo 				node = NULL;
118575bfb9afSJosef Bacik 			free_backref_node(cache, lower);
11865d4f98a2SYan Zheng 		}
11870fd8c3daSLiu Bo 
11880fd8c3daSLiu Bo 		free_backref_node(cache, node);
11895d4f98a2SYan Zheng 		return ERR_PTR(err);
11905d4f98a2SYan Zheng 	}
119175bfb9afSJosef Bacik 	ASSERT(!node || !node->detached);
11925d4f98a2SYan Zheng 	return node;
11935d4f98a2SYan Zheng }
11945d4f98a2SYan Zheng 
11955d4f98a2SYan Zheng /*
11963fd0a558SYan, Zheng  * helper to add backref node for the newly created snapshot.
11973fd0a558SYan, Zheng  * the backref node is created by cloning backref node that
11983fd0a558SYan, Zheng  * corresponds to root of source tree
11993fd0a558SYan, Zheng  */
12003fd0a558SYan, Zheng static int clone_backref_node(struct btrfs_trans_handle *trans,
12013fd0a558SYan, Zheng 			      struct reloc_control *rc,
12023fd0a558SYan, Zheng 			      struct btrfs_root *src,
12033fd0a558SYan, Zheng 			      struct btrfs_root *dest)
12043fd0a558SYan, Zheng {
12053fd0a558SYan, Zheng 	struct btrfs_root *reloc_root = src->reloc_root;
12063fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
12073fd0a558SYan, Zheng 	struct backref_node *node = NULL;
12083fd0a558SYan, Zheng 	struct backref_node *new_node;
12093fd0a558SYan, Zheng 	struct backref_edge *edge;
12103fd0a558SYan, Zheng 	struct backref_edge *new_edge;
12113fd0a558SYan, Zheng 	struct rb_node *rb_node;
12123fd0a558SYan, Zheng 
12133fd0a558SYan, Zheng 	if (cache->last_trans > 0)
12143fd0a558SYan, Zheng 		update_backref_cache(trans, cache);
12153fd0a558SYan, Zheng 
12163fd0a558SYan, Zheng 	rb_node = tree_search(&cache->rb_root, src->commit_root->start);
12173fd0a558SYan, Zheng 	if (rb_node) {
12183fd0a558SYan, Zheng 		node = rb_entry(rb_node, struct backref_node, rb_node);
12193fd0a558SYan, Zheng 		if (node->detached)
12203fd0a558SYan, Zheng 			node = NULL;
12213fd0a558SYan, Zheng 		else
12223fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr != reloc_root->node->start);
12233fd0a558SYan, Zheng 	}
12243fd0a558SYan, Zheng 
12253fd0a558SYan, Zheng 	if (!node) {
12263fd0a558SYan, Zheng 		rb_node = tree_search(&cache->rb_root,
12273fd0a558SYan, Zheng 				      reloc_root->commit_root->start);
12283fd0a558SYan, Zheng 		if (rb_node) {
12293fd0a558SYan, Zheng 			node = rb_entry(rb_node, struct backref_node,
12303fd0a558SYan, Zheng 					rb_node);
12313fd0a558SYan, Zheng 			BUG_ON(node->detached);
12323fd0a558SYan, Zheng 		}
12333fd0a558SYan, Zheng 	}
12343fd0a558SYan, Zheng 
12353fd0a558SYan, Zheng 	if (!node)
12363fd0a558SYan, Zheng 		return 0;
12373fd0a558SYan, Zheng 
12383fd0a558SYan, Zheng 	new_node = alloc_backref_node(cache);
12393fd0a558SYan, Zheng 	if (!new_node)
12403fd0a558SYan, Zheng 		return -ENOMEM;
12413fd0a558SYan, Zheng 
12423fd0a558SYan, Zheng 	new_node->bytenr = dest->node->start;
12433fd0a558SYan, Zheng 	new_node->level = node->level;
12443fd0a558SYan, Zheng 	new_node->lowest = node->lowest;
12456848ad64SYan, Zheng 	new_node->checked = 1;
12463fd0a558SYan, Zheng 	new_node->root = dest;
12473fd0a558SYan, Zheng 
12483fd0a558SYan, Zheng 	if (!node->lowest) {
12493fd0a558SYan, Zheng 		list_for_each_entry(edge, &node->lower, list[UPPER]) {
12503fd0a558SYan, Zheng 			new_edge = alloc_backref_edge(cache);
12513fd0a558SYan, Zheng 			if (!new_edge)
12523fd0a558SYan, Zheng 				goto fail;
12533fd0a558SYan, Zheng 
12543fd0a558SYan, Zheng 			new_edge->node[UPPER] = new_node;
12553fd0a558SYan, Zheng 			new_edge->node[LOWER] = edge->node[LOWER];
12563fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[UPPER],
12573fd0a558SYan, Zheng 				      &new_node->lower);
12583fd0a558SYan, Zheng 		}
125976b9e23dSMiao Xie 	} else {
126076b9e23dSMiao Xie 		list_add_tail(&new_node->lower, &cache->leaves);
12613fd0a558SYan, Zheng 	}
12623fd0a558SYan, Zheng 
12633fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
12643fd0a558SYan, Zheng 			      &new_node->rb_node);
126543c04fb1SJeff Mahoney 	if (rb_node)
126643c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
12673fd0a558SYan, Zheng 
12683fd0a558SYan, Zheng 	if (!new_node->lowest) {
12693fd0a558SYan, Zheng 		list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
12703fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[LOWER],
12713fd0a558SYan, Zheng 				      &new_edge->node[LOWER]->upper);
12723fd0a558SYan, Zheng 		}
12733fd0a558SYan, Zheng 	}
12743fd0a558SYan, Zheng 	return 0;
12753fd0a558SYan, Zheng fail:
12763fd0a558SYan, Zheng 	while (!list_empty(&new_node->lower)) {
12773fd0a558SYan, Zheng 		new_edge = list_entry(new_node->lower.next,
12783fd0a558SYan, Zheng 				      struct backref_edge, list[UPPER]);
12793fd0a558SYan, Zheng 		list_del(&new_edge->list[UPPER]);
12803fd0a558SYan, Zheng 		free_backref_edge(cache, new_edge);
12813fd0a558SYan, Zheng 	}
12823fd0a558SYan, Zheng 	free_backref_node(cache, new_node);
12833fd0a558SYan, Zheng 	return -ENOMEM;
12843fd0a558SYan, Zheng }
12853fd0a558SYan, Zheng 
12863fd0a558SYan, Zheng /*
12875d4f98a2SYan Zheng  * helper to add 'address of tree root -> reloc tree' mapping
12885d4f98a2SYan Zheng  */
1289ffd7b339SJeff Mahoney static int __must_check __add_reloc_root(struct btrfs_root *root)
12905d4f98a2SYan Zheng {
12915d4f98a2SYan Zheng 	struct rb_node *rb_node;
12925d4f98a2SYan Zheng 	struct mapping_node *node;
12935d4f98a2SYan Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
12945d4f98a2SYan Zheng 
12955d4f98a2SYan Zheng 	node = kmalloc(sizeof(*node), GFP_NOFS);
1296ffd7b339SJeff Mahoney 	if (!node)
1297ffd7b339SJeff Mahoney 		return -ENOMEM;
12985d4f98a2SYan Zheng 
12995d4f98a2SYan Zheng 	node->bytenr = root->node->start;
13005d4f98a2SYan Zheng 	node->data = root;
13015d4f98a2SYan Zheng 
13025d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
13035d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
13045d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
13055d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
1306ffd7b339SJeff Mahoney 	if (rb_node) {
13075d163e0eSJeff Mahoney 		btrfs_panic(root->fs_info, -EEXIST,
13085d163e0eSJeff Mahoney 			    "Duplicate root found for start=%llu while inserting into relocation tree",
13095d163e0eSJeff Mahoney 			    node->bytenr);
131023291a04SDan Carpenter 		kfree(node);
131123291a04SDan Carpenter 		return -EEXIST;
1312ffd7b339SJeff Mahoney 	}
13135d4f98a2SYan Zheng 
13145d4f98a2SYan Zheng 	list_add_tail(&root->root_list, &rc->reloc_roots);
13155d4f98a2SYan Zheng 	return 0;
13165d4f98a2SYan Zheng }
13175d4f98a2SYan Zheng 
13185d4f98a2SYan Zheng /*
1319c974c464SWang Shilong  * helper to delete the 'address of tree root -> reloc tree'
13205d4f98a2SYan Zheng  * mapping
13215d4f98a2SYan Zheng  */
1322c974c464SWang Shilong static void __del_reloc_root(struct btrfs_root *root)
13235d4f98a2SYan Zheng {
13245d4f98a2SYan Zheng 	struct rb_node *rb_node;
13255d4f98a2SYan Zheng 	struct mapping_node *node = NULL;
13265d4f98a2SYan Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
13275d4f98a2SYan Zheng 
13285d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
13295d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1330c974c464SWang Shilong 			      root->node->start);
1331c974c464SWang Shilong 	if (rb_node) {
1332c974c464SWang Shilong 		node = rb_entry(rb_node, struct mapping_node, rb_node);
1333c974c464SWang Shilong 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1334c974c464SWang Shilong 	}
1335c974c464SWang Shilong 	spin_unlock(&rc->reloc_root_tree.lock);
1336c974c464SWang Shilong 
1337c974c464SWang Shilong 	if (!node)
1338c974c464SWang Shilong 		return;
1339c974c464SWang Shilong 	BUG_ON((struct btrfs_root *)node->data != root);
1340c974c464SWang Shilong 
1341c974c464SWang Shilong 	spin_lock(&root->fs_info->trans_lock);
1342c974c464SWang Shilong 	list_del_init(&root->root_list);
1343c974c464SWang Shilong 	spin_unlock(&root->fs_info->trans_lock);
1344c974c464SWang Shilong 	kfree(node);
1345c974c464SWang Shilong }
1346c974c464SWang Shilong 
1347c974c464SWang Shilong /*
1348c974c464SWang Shilong  * helper to update the 'address of tree root -> reloc tree'
1349c974c464SWang Shilong  * mapping
1350c974c464SWang Shilong  */
1351c974c464SWang Shilong static int __update_reloc_root(struct btrfs_root *root, u64 new_bytenr)
1352c974c464SWang Shilong {
1353c974c464SWang Shilong 	struct rb_node *rb_node;
1354c974c464SWang Shilong 	struct mapping_node *node = NULL;
1355c974c464SWang Shilong 	struct reloc_control *rc = root->fs_info->reloc_ctl;
1356c974c464SWang Shilong 
1357c974c464SWang Shilong 	spin_lock(&rc->reloc_root_tree.lock);
1358c974c464SWang Shilong 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1359c974c464SWang Shilong 			      root->node->start);
13605d4f98a2SYan Zheng 	if (rb_node) {
13615d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
13625d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
13635d4f98a2SYan Zheng 	}
13645d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
13655d4f98a2SYan Zheng 
13668f71f3e0SLiu Bo 	if (!node)
13678f71f3e0SLiu Bo 		return 0;
13685d4f98a2SYan Zheng 	BUG_ON((struct btrfs_root *)node->data != root);
13695d4f98a2SYan Zheng 
13705d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
1371c974c464SWang Shilong 	node->bytenr = new_bytenr;
13725d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
13735d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
13745d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
137543c04fb1SJeff Mahoney 	if (rb_node)
137643c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, node->bytenr);
13775d4f98a2SYan Zheng 	return 0;
13785d4f98a2SYan Zheng }
13795d4f98a2SYan Zheng 
13803fd0a558SYan, Zheng static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
13813fd0a558SYan, Zheng 					struct btrfs_root *root, u64 objectid)
13825d4f98a2SYan Zheng {
13835d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
13845d4f98a2SYan Zheng 	struct extent_buffer *eb;
13855d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
13865d4f98a2SYan Zheng 	struct btrfs_key root_key;
13875bc7247aSMiao Xie 	u64 last_snap = 0;
13885d4f98a2SYan Zheng 	int ret;
13895d4f98a2SYan Zheng 
13905d4f98a2SYan Zheng 	root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
13915d4f98a2SYan Zheng 	BUG_ON(!root_item);
13925d4f98a2SYan Zheng 
13935d4f98a2SYan Zheng 	root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
13945d4f98a2SYan Zheng 	root_key.type = BTRFS_ROOT_ITEM_KEY;
13953fd0a558SYan, Zheng 	root_key.offset = objectid;
13965d4f98a2SYan Zheng 
13973fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
1398054570a1SFilipe Manana 		u64 commit_root_gen;
1399054570a1SFilipe Manana 
14003fd0a558SYan, Zheng 		/* called by btrfs_init_reloc_root */
14015d4f98a2SYan Zheng 		ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
14025d4f98a2SYan Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
14035d4f98a2SYan Zheng 		BUG_ON(ret);
14045bc7247aSMiao Xie 		last_snap = btrfs_root_last_snapshot(&root->root_item);
1405054570a1SFilipe Manana 		/*
1406054570a1SFilipe Manana 		 * Set the last_snapshot field to the generation of the commit
1407054570a1SFilipe Manana 		 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
1408054570a1SFilipe Manana 		 * correctly (returns true) when the relocation root is created
1409054570a1SFilipe Manana 		 * either inside the critical section of a transaction commit
1410054570a1SFilipe Manana 		 * (through transaction.c:qgroup_account_snapshot()) and when
1411054570a1SFilipe Manana 		 * it's created before the transaction commit is started.
1412054570a1SFilipe Manana 		 */
1413054570a1SFilipe Manana 		commit_root_gen = btrfs_header_generation(root->commit_root);
1414054570a1SFilipe Manana 		btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
14153fd0a558SYan, Zheng 	} else {
14163fd0a558SYan, Zheng 		/*
14173fd0a558SYan, Zheng 		 * called by btrfs_reloc_post_snapshot_hook.
14183fd0a558SYan, Zheng 		 * the source tree is a reloc tree, all tree blocks
14193fd0a558SYan, Zheng 		 * modified after it was created have RELOC flag
14203fd0a558SYan, Zheng 		 * set in their headers. so it's OK to not update
14213fd0a558SYan, Zheng 		 * the 'last_snapshot'.
14223fd0a558SYan, Zheng 		 */
14233fd0a558SYan, Zheng 		ret = btrfs_copy_root(trans, root, root->node, &eb,
14243fd0a558SYan, Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
14253fd0a558SYan, Zheng 		BUG_ON(ret);
14263fd0a558SYan, Zheng 	}
14273fd0a558SYan, Zheng 
14285d4f98a2SYan Zheng 	memcpy(root_item, &root->root_item, sizeof(*root_item));
14295d4f98a2SYan Zheng 	btrfs_set_root_bytenr(root_item, eb->start);
14305d4f98a2SYan Zheng 	btrfs_set_root_level(root_item, btrfs_header_level(eb));
14315d4f98a2SYan Zheng 	btrfs_set_root_generation(root_item, trans->transid);
14323fd0a558SYan, Zheng 
14333fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
14343fd0a558SYan, Zheng 		btrfs_set_root_refs(root_item, 0);
14353fd0a558SYan, Zheng 		memset(&root_item->drop_progress, 0,
14363fd0a558SYan, Zheng 		       sizeof(struct btrfs_disk_key));
14375d4f98a2SYan Zheng 		root_item->drop_level = 0;
14385bc7247aSMiao Xie 		/*
14395bc7247aSMiao Xie 		 * abuse rtransid, it is safe because it is impossible to
14405bc7247aSMiao Xie 		 * receive data into a relocation tree.
14415bc7247aSMiao Xie 		 */
14425bc7247aSMiao Xie 		btrfs_set_root_rtransid(root_item, last_snap);
14435bc7247aSMiao Xie 		btrfs_set_root_otransid(root_item, trans->transid);
14443fd0a558SYan, Zheng 	}
14455d4f98a2SYan Zheng 
14465d4f98a2SYan Zheng 	btrfs_tree_unlock(eb);
14475d4f98a2SYan Zheng 	free_extent_buffer(eb);
14485d4f98a2SYan Zheng 
14495d4f98a2SYan Zheng 	ret = btrfs_insert_root(trans, root->fs_info->tree_root,
14505d4f98a2SYan Zheng 				&root_key, root_item);
14515d4f98a2SYan Zheng 	BUG_ON(ret);
14525d4f98a2SYan Zheng 	kfree(root_item);
14535d4f98a2SYan Zheng 
1454cb517eabSMiao Xie 	reloc_root = btrfs_read_fs_root(root->fs_info->tree_root, &root_key);
14555d4f98a2SYan Zheng 	BUG_ON(IS_ERR(reloc_root));
14565d4f98a2SYan Zheng 	reloc_root->last_trans = trans->transid;
14573fd0a558SYan, Zheng 	return reloc_root;
14583fd0a558SYan, Zheng }
14593fd0a558SYan, Zheng 
14603fd0a558SYan, Zheng /*
14613fd0a558SYan, Zheng  * create reloc tree for a given fs tree. reloc tree is just a
14623fd0a558SYan, Zheng  * snapshot of the fs tree with special root objectid.
14633fd0a558SYan, Zheng  */
14643fd0a558SYan, Zheng int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
14653fd0a558SYan, Zheng 			  struct btrfs_root *root)
14663fd0a558SYan, Zheng {
14673fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
14683fd0a558SYan, Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
146920dd2cbfSMiao Xie 	struct btrfs_block_rsv *rsv;
14703fd0a558SYan, Zheng 	int clear_rsv = 0;
1471ffd7b339SJeff Mahoney 	int ret;
14723fd0a558SYan, Zheng 
14733fd0a558SYan, Zheng 	if (root->reloc_root) {
14743fd0a558SYan, Zheng 		reloc_root = root->reloc_root;
14753fd0a558SYan, Zheng 		reloc_root->last_trans = trans->transid;
14763fd0a558SYan, Zheng 		return 0;
14773fd0a558SYan, Zheng 	}
14783fd0a558SYan, Zheng 
14793fd0a558SYan, Zheng 	if (!rc || !rc->create_reloc_tree ||
14803fd0a558SYan, Zheng 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
14813fd0a558SYan, Zheng 		return 0;
14823fd0a558SYan, Zheng 
148320dd2cbfSMiao Xie 	if (!trans->reloc_reserved) {
148420dd2cbfSMiao Xie 		rsv = trans->block_rsv;
14853fd0a558SYan, Zheng 		trans->block_rsv = rc->block_rsv;
14863fd0a558SYan, Zheng 		clear_rsv = 1;
14873fd0a558SYan, Zheng 	}
14883fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
14893fd0a558SYan, Zheng 	if (clear_rsv)
149020dd2cbfSMiao Xie 		trans->block_rsv = rsv;
14915d4f98a2SYan Zheng 
1492ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
1493ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
14945d4f98a2SYan Zheng 	root->reloc_root = reloc_root;
14955d4f98a2SYan Zheng 	return 0;
14965d4f98a2SYan Zheng }
14975d4f98a2SYan Zheng 
14985d4f98a2SYan Zheng /*
14995d4f98a2SYan Zheng  * update root item of reloc tree
15005d4f98a2SYan Zheng  */
15015d4f98a2SYan Zheng int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
15025d4f98a2SYan Zheng 			    struct btrfs_root *root)
15035d4f98a2SYan Zheng {
15045d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
15055d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
15065d4f98a2SYan Zheng 	int ret;
15075d4f98a2SYan Zheng 
15085d4f98a2SYan Zheng 	if (!root->reloc_root)
15097585717fSChris Mason 		goto out;
15105d4f98a2SYan Zheng 
15115d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
15125d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
15135d4f98a2SYan Zheng 
15143fd0a558SYan, Zheng 	if (root->fs_info->reloc_ctl->merge_reloc_tree &&
15153fd0a558SYan, Zheng 	    btrfs_root_refs(root_item) == 0) {
15165d4f98a2SYan Zheng 		root->reloc_root = NULL;
1517c974c464SWang Shilong 		__del_reloc_root(reloc_root);
15185d4f98a2SYan Zheng 	}
15195d4f98a2SYan Zheng 
15205d4f98a2SYan Zheng 	if (reloc_root->commit_root != reloc_root->node) {
15215d4f98a2SYan Zheng 		btrfs_set_root_node(root_item, reloc_root->node);
15225d4f98a2SYan Zheng 		free_extent_buffer(reloc_root->commit_root);
15235d4f98a2SYan Zheng 		reloc_root->commit_root = btrfs_root_node(reloc_root);
15245d4f98a2SYan Zheng 	}
15255d4f98a2SYan Zheng 
15265d4f98a2SYan Zheng 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
15275d4f98a2SYan Zheng 				&reloc_root->root_key, root_item);
15285d4f98a2SYan Zheng 	BUG_ON(ret);
15297585717fSChris Mason 
15307585717fSChris Mason out:
15315d4f98a2SYan Zheng 	return 0;
15325d4f98a2SYan Zheng }
15335d4f98a2SYan Zheng 
15345d4f98a2SYan Zheng /*
15355d4f98a2SYan Zheng  * helper to find first cached inode with inode number >= objectid
15365d4f98a2SYan Zheng  * in a subvolume
15375d4f98a2SYan Zheng  */
15385d4f98a2SYan Zheng static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
15395d4f98a2SYan Zheng {
15405d4f98a2SYan Zheng 	struct rb_node *node;
15415d4f98a2SYan Zheng 	struct rb_node *prev;
15425d4f98a2SYan Zheng 	struct btrfs_inode *entry;
15435d4f98a2SYan Zheng 	struct inode *inode;
15445d4f98a2SYan Zheng 
15455d4f98a2SYan Zheng 	spin_lock(&root->inode_lock);
15465d4f98a2SYan Zheng again:
15475d4f98a2SYan Zheng 	node = root->inode_tree.rb_node;
15485d4f98a2SYan Zheng 	prev = NULL;
15495d4f98a2SYan Zheng 	while (node) {
15505d4f98a2SYan Zheng 		prev = node;
15515d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
15525d4f98a2SYan Zheng 
155333345d01SLi Zefan 		if (objectid < btrfs_ino(&entry->vfs_inode))
15545d4f98a2SYan Zheng 			node = node->rb_left;
155533345d01SLi Zefan 		else if (objectid > btrfs_ino(&entry->vfs_inode))
15565d4f98a2SYan Zheng 			node = node->rb_right;
15575d4f98a2SYan Zheng 		else
15585d4f98a2SYan Zheng 			break;
15595d4f98a2SYan Zheng 	}
15605d4f98a2SYan Zheng 	if (!node) {
15615d4f98a2SYan Zheng 		while (prev) {
15625d4f98a2SYan Zheng 			entry = rb_entry(prev, struct btrfs_inode, rb_node);
156333345d01SLi Zefan 			if (objectid <= btrfs_ino(&entry->vfs_inode)) {
15645d4f98a2SYan Zheng 				node = prev;
15655d4f98a2SYan Zheng 				break;
15665d4f98a2SYan Zheng 			}
15675d4f98a2SYan Zheng 			prev = rb_next(prev);
15685d4f98a2SYan Zheng 		}
15695d4f98a2SYan Zheng 	}
15705d4f98a2SYan Zheng 	while (node) {
15715d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
15725d4f98a2SYan Zheng 		inode = igrab(&entry->vfs_inode);
15735d4f98a2SYan Zheng 		if (inode) {
15745d4f98a2SYan Zheng 			spin_unlock(&root->inode_lock);
15755d4f98a2SYan Zheng 			return inode;
15765d4f98a2SYan Zheng 		}
15775d4f98a2SYan Zheng 
157833345d01SLi Zefan 		objectid = btrfs_ino(&entry->vfs_inode) + 1;
15795d4f98a2SYan Zheng 		if (cond_resched_lock(&root->inode_lock))
15805d4f98a2SYan Zheng 			goto again;
15815d4f98a2SYan Zheng 
15825d4f98a2SYan Zheng 		node = rb_next(node);
15835d4f98a2SYan Zheng 	}
15845d4f98a2SYan Zheng 	spin_unlock(&root->inode_lock);
15855d4f98a2SYan Zheng 	return NULL;
15865d4f98a2SYan Zheng }
15875d4f98a2SYan Zheng 
15885d4f98a2SYan Zheng static int in_block_group(u64 bytenr,
15895d4f98a2SYan Zheng 			  struct btrfs_block_group_cache *block_group)
15905d4f98a2SYan Zheng {
15915d4f98a2SYan Zheng 	if (bytenr >= block_group->key.objectid &&
15925d4f98a2SYan Zheng 	    bytenr < block_group->key.objectid + block_group->key.offset)
15935d4f98a2SYan Zheng 		return 1;
15945d4f98a2SYan Zheng 	return 0;
15955d4f98a2SYan Zheng }
15965d4f98a2SYan Zheng 
15975d4f98a2SYan Zheng /*
15985d4f98a2SYan Zheng  * get new location of data
15995d4f98a2SYan Zheng  */
16005d4f98a2SYan Zheng static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
16015d4f98a2SYan Zheng 			    u64 bytenr, u64 num_bytes)
16025d4f98a2SYan Zheng {
16035d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
16045d4f98a2SYan Zheng 	struct btrfs_path *path;
16055d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
16065d4f98a2SYan Zheng 	struct extent_buffer *leaf;
16075d4f98a2SYan Zheng 	int ret;
16085d4f98a2SYan Zheng 
16095d4f98a2SYan Zheng 	path = btrfs_alloc_path();
16105d4f98a2SYan Zheng 	if (!path)
16115d4f98a2SYan Zheng 		return -ENOMEM;
16125d4f98a2SYan Zheng 
16135d4f98a2SYan Zheng 	bytenr -= BTRFS_I(reloc_inode)->index_cnt;
161433345d01SLi Zefan 	ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(reloc_inode),
16155d4f98a2SYan Zheng 				       bytenr, 0);
16165d4f98a2SYan Zheng 	if (ret < 0)
16175d4f98a2SYan Zheng 		goto out;
16185d4f98a2SYan Zheng 	if (ret > 0) {
16195d4f98a2SYan Zheng 		ret = -ENOENT;
16205d4f98a2SYan Zheng 		goto out;
16215d4f98a2SYan Zheng 	}
16225d4f98a2SYan Zheng 
16235d4f98a2SYan Zheng 	leaf = path->nodes[0];
16245d4f98a2SYan Zheng 	fi = btrfs_item_ptr(leaf, path->slots[0],
16255d4f98a2SYan Zheng 			    struct btrfs_file_extent_item);
16265d4f98a2SYan Zheng 
16275d4f98a2SYan Zheng 	BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
16285d4f98a2SYan Zheng 	       btrfs_file_extent_compression(leaf, fi) ||
16295d4f98a2SYan Zheng 	       btrfs_file_extent_encryption(leaf, fi) ||
16305d4f98a2SYan Zheng 	       btrfs_file_extent_other_encoding(leaf, fi));
16315d4f98a2SYan Zheng 
16325d4f98a2SYan Zheng 	if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
163383d4cfd4SJosef Bacik 		ret = -EINVAL;
16345d4f98a2SYan Zheng 		goto out;
16355d4f98a2SYan Zheng 	}
16365d4f98a2SYan Zheng 
16375d4f98a2SYan Zheng 	*new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
16385d4f98a2SYan Zheng 	ret = 0;
16395d4f98a2SYan Zheng out:
16405d4f98a2SYan Zheng 	btrfs_free_path(path);
16415d4f98a2SYan Zheng 	return ret;
16425d4f98a2SYan Zheng }
16435d4f98a2SYan Zheng 
16445d4f98a2SYan Zheng /*
16455d4f98a2SYan Zheng  * update file extent items in the tree leaf to point to
16465d4f98a2SYan Zheng  * the new locations.
16475d4f98a2SYan Zheng  */
16483fd0a558SYan, Zheng static noinline_for_stack
16493fd0a558SYan, Zheng int replace_file_extents(struct btrfs_trans_handle *trans,
16505d4f98a2SYan Zheng 			 struct reloc_control *rc,
16515d4f98a2SYan Zheng 			 struct btrfs_root *root,
16523fd0a558SYan, Zheng 			 struct extent_buffer *leaf)
16535d4f98a2SYan Zheng {
16545d4f98a2SYan Zheng 	struct btrfs_key key;
16555d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
16565d4f98a2SYan Zheng 	struct inode *inode = NULL;
16575d4f98a2SYan Zheng 	u64 parent;
16585d4f98a2SYan Zheng 	u64 bytenr;
16593fd0a558SYan, Zheng 	u64 new_bytenr = 0;
16605d4f98a2SYan Zheng 	u64 num_bytes;
16615d4f98a2SYan Zheng 	u64 end;
16625d4f98a2SYan Zheng 	u32 nritems;
16635d4f98a2SYan Zheng 	u32 i;
166483d4cfd4SJosef Bacik 	int ret = 0;
16655d4f98a2SYan Zheng 	int first = 1;
16665d4f98a2SYan Zheng 	int dirty = 0;
16675d4f98a2SYan Zheng 
16685d4f98a2SYan Zheng 	if (rc->stage != UPDATE_DATA_PTRS)
16695d4f98a2SYan Zheng 		return 0;
16705d4f98a2SYan Zheng 
16715d4f98a2SYan Zheng 	/* reloc trees always use full backref */
16725d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
16735d4f98a2SYan Zheng 		parent = leaf->start;
16745d4f98a2SYan Zheng 	else
16755d4f98a2SYan Zheng 		parent = 0;
16765d4f98a2SYan Zheng 
16775d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
16785d4f98a2SYan Zheng 	for (i = 0; i < nritems; i++) {
16795d4f98a2SYan Zheng 		cond_resched();
16805d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, i);
16815d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_DATA_KEY)
16825d4f98a2SYan Zheng 			continue;
16835d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
16845d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
16855d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
16865d4f98a2SYan Zheng 			continue;
16875d4f98a2SYan Zheng 		bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
16885d4f98a2SYan Zheng 		num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
16895d4f98a2SYan Zheng 		if (bytenr == 0)
16905d4f98a2SYan Zheng 			continue;
16915d4f98a2SYan Zheng 		if (!in_block_group(bytenr, rc->block_group))
16925d4f98a2SYan Zheng 			continue;
16935d4f98a2SYan Zheng 
16945d4f98a2SYan Zheng 		/*
16955d4f98a2SYan Zheng 		 * if we are modifying block in fs tree, wait for readpage
16965d4f98a2SYan Zheng 		 * to complete and drop the extent cache
16975d4f98a2SYan Zheng 		 */
16985d4f98a2SYan Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
16995d4f98a2SYan Zheng 			if (first) {
17005d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
17015d4f98a2SYan Zheng 				first = 0;
170233345d01SLi Zefan 			} else if (inode && btrfs_ino(inode) < key.objectid) {
17033fd0a558SYan, Zheng 				btrfs_add_delayed_iput(inode);
17045d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
17055d4f98a2SYan Zheng 			}
170633345d01SLi Zefan 			if (inode && btrfs_ino(inode) == key.objectid) {
17075d4f98a2SYan Zheng 				end = key.offset +
17085d4f98a2SYan Zheng 				      btrfs_file_extent_num_bytes(leaf, fi);
17095d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(key.offset,
17105d4f98a2SYan Zheng 						    root->sectorsize));
17115d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(end, root->sectorsize));
17125d4f98a2SYan Zheng 				end--;
17135d4f98a2SYan Zheng 				ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
1714d0082371SJeff Mahoney 						      key.offset, end);
17155d4f98a2SYan Zheng 				if (!ret)
17165d4f98a2SYan Zheng 					continue;
17175d4f98a2SYan Zheng 
17185d4f98a2SYan Zheng 				btrfs_drop_extent_cache(inode, key.offset, end,
17195d4f98a2SYan Zheng 							1);
17205d4f98a2SYan Zheng 				unlock_extent(&BTRFS_I(inode)->io_tree,
1721d0082371SJeff Mahoney 					      key.offset, end);
17225d4f98a2SYan Zheng 			}
17235d4f98a2SYan Zheng 		}
17245d4f98a2SYan Zheng 
17255d4f98a2SYan Zheng 		ret = get_new_location(rc->data_inode, &new_bytenr,
17265d4f98a2SYan Zheng 				       bytenr, num_bytes);
172783d4cfd4SJosef Bacik 		if (ret) {
172883d4cfd4SJosef Bacik 			/*
172983d4cfd4SJosef Bacik 			 * Don't have to abort since we've not changed anything
173083d4cfd4SJosef Bacik 			 * in the file extent yet.
173183d4cfd4SJosef Bacik 			 */
173283d4cfd4SJosef Bacik 			break;
17333fd0a558SYan, Zheng 		}
17345d4f98a2SYan Zheng 
17355d4f98a2SYan Zheng 		btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
17365d4f98a2SYan Zheng 		dirty = 1;
17375d4f98a2SYan Zheng 
17385d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
17395d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, root, new_bytenr,
17405d4f98a2SYan Zheng 					   num_bytes, parent,
17415d4f98a2SYan Zheng 					   btrfs_header_owner(leaf),
1742b06c4bf5SFilipe Manana 					   key.objectid, key.offset);
174383d4cfd4SJosef Bacik 		if (ret) {
174466642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
174583d4cfd4SJosef Bacik 			break;
174683d4cfd4SJosef Bacik 		}
17475d4f98a2SYan Zheng 
17485d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
17495d4f98a2SYan Zheng 					parent, btrfs_header_owner(leaf),
1750b06c4bf5SFilipe Manana 					key.objectid, key.offset);
175183d4cfd4SJosef Bacik 		if (ret) {
175266642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
175383d4cfd4SJosef Bacik 			break;
175483d4cfd4SJosef Bacik 		}
17555d4f98a2SYan Zheng 	}
17565d4f98a2SYan Zheng 	if (dirty)
17575d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(leaf);
17583fd0a558SYan, Zheng 	if (inode)
17593fd0a558SYan, Zheng 		btrfs_add_delayed_iput(inode);
176083d4cfd4SJosef Bacik 	return ret;
17615d4f98a2SYan Zheng }
17625d4f98a2SYan Zheng 
17635d4f98a2SYan Zheng static noinline_for_stack
17645d4f98a2SYan Zheng int memcmp_node_keys(struct extent_buffer *eb, int slot,
17655d4f98a2SYan Zheng 		     struct btrfs_path *path, int level)
17665d4f98a2SYan Zheng {
17675d4f98a2SYan Zheng 	struct btrfs_disk_key key1;
17685d4f98a2SYan Zheng 	struct btrfs_disk_key key2;
17695d4f98a2SYan Zheng 	btrfs_node_key(eb, &key1, slot);
17705d4f98a2SYan Zheng 	btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
17715d4f98a2SYan Zheng 	return memcmp(&key1, &key2, sizeof(key1));
17725d4f98a2SYan Zheng }
17735d4f98a2SYan Zheng 
17745d4f98a2SYan Zheng /*
17755d4f98a2SYan Zheng  * try to replace tree blocks in fs tree with the new blocks
17765d4f98a2SYan Zheng  * in reloc tree. tree blocks haven't been modified since the
17775d4f98a2SYan Zheng  * reloc tree was create can be replaced.
17785d4f98a2SYan Zheng  *
17795d4f98a2SYan Zheng  * if a block was replaced, level of the block + 1 is returned.
17805d4f98a2SYan Zheng  * if no block got replaced, 0 is returned. if there are other
17815d4f98a2SYan Zheng  * errors, a negative error number is returned.
17825d4f98a2SYan Zheng  */
17833fd0a558SYan, Zheng static noinline_for_stack
17843fd0a558SYan, Zheng int replace_path(struct btrfs_trans_handle *trans,
17855d4f98a2SYan Zheng 		 struct btrfs_root *dest, struct btrfs_root *src,
17865d4f98a2SYan Zheng 		 struct btrfs_path *path, struct btrfs_key *next_key,
17875d4f98a2SYan Zheng 		 int lowest_level, int max_level)
17885d4f98a2SYan Zheng {
17895d4f98a2SYan Zheng 	struct extent_buffer *eb;
17905d4f98a2SYan Zheng 	struct extent_buffer *parent;
17915d4f98a2SYan Zheng 	struct btrfs_key key;
17925d4f98a2SYan Zheng 	u64 old_bytenr;
17935d4f98a2SYan Zheng 	u64 new_bytenr;
17945d4f98a2SYan Zheng 	u64 old_ptr_gen;
17955d4f98a2SYan Zheng 	u64 new_ptr_gen;
17965d4f98a2SYan Zheng 	u64 last_snapshot;
17975d4f98a2SYan Zheng 	u32 blocksize;
17983fd0a558SYan, Zheng 	int cow = 0;
17995d4f98a2SYan Zheng 	int level;
18005d4f98a2SYan Zheng 	int ret;
18015d4f98a2SYan Zheng 	int slot;
18025d4f98a2SYan Zheng 
18035d4f98a2SYan Zheng 	BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
18045d4f98a2SYan Zheng 	BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
18055d4f98a2SYan Zheng 
18065d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&src->root_item);
18073fd0a558SYan, Zheng again:
18085d4f98a2SYan Zheng 	slot = path->slots[lowest_level];
18095d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
18105d4f98a2SYan Zheng 
18115d4f98a2SYan Zheng 	eb = btrfs_lock_root_node(dest);
18125d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
18135d4f98a2SYan Zheng 	level = btrfs_header_level(eb);
18145d4f98a2SYan Zheng 
18155d4f98a2SYan Zheng 	if (level < lowest_level) {
18165d4f98a2SYan Zheng 		btrfs_tree_unlock(eb);
18175d4f98a2SYan Zheng 		free_extent_buffer(eb);
18185d4f98a2SYan Zheng 		return 0;
18195d4f98a2SYan Zheng 	}
18205d4f98a2SYan Zheng 
18213fd0a558SYan, Zheng 	if (cow) {
18225d4f98a2SYan Zheng 		ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
18235d4f98a2SYan Zheng 		BUG_ON(ret);
18243fd0a558SYan, Zheng 	}
18255d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
18265d4f98a2SYan Zheng 
18275d4f98a2SYan Zheng 	if (next_key) {
18285d4f98a2SYan Zheng 		next_key->objectid = (u64)-1;
18295d4f98a2SYan Zheng 		next_key->type = (u8)-1;
18305d4f98a2SYan Zheng 		next_key->offset = (u64)-1;
18315d4f98a2SYan Zheng 	}
18325d4f98a2SYan Zheng 
18335d4f98a2SYan Zheng 	parent = eb;
18345d4f98a2SYan Zheng 	while (1) {
18355d4f98a2SYan Zheng 		level = btrfs_header_level(parent);
18365d4f98a2SYan Zheng 		BUG_ON(level < lowest_level);
18375d4f98a2SYan Zheng 
18385d4f98a2SYan Zheng 		ret = btrfs_bin_search(parent, &key, level, &slot);
18395d4f98a2SYan Zheng 		if (ret && slot > 0)
18405d4f98a2SYan Zheng 			slot--;
18415d4f98a2SYan Zheng 
18425d4f98a2SYan Zheng 		if (next_key && slot + 1 < btrfs_header_nritems(parent))
18435d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(parent, next_key, slot + 1);
18445d4f98a2SYan Zheng 
18455d4f98a2SYan Zheng 		old_bytenr = btrfs_node_blockptr(parent, slot);
1846707e8a07SDavid Sterba 		blocksize = dest->nodesize;
18475d4f98a2SYan Zheng 		old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
18485d4f98a2SYan Zheng 
18495d4f98a2SYan Zheng 		if (level <= max_level) {
18505d4f98a2SYan Zheng 			eb = path->nodes[level];
18515d4f98a2SYan Zheng 			new_bytenr = btrfs_node_blockptr(eb,
18525d4f98a2SYan Zheng 							path->slots[level]);
18535d4f98a2SYan Zheng 			new_ptr_gen = btrfs_node_ptr_generation(eb,
18545d4f98a2SYan Zheng 							path->slots[level]);
18555d4f98a2SYan Zheng 		} else {
18565d4f98a2SYan Zheng 			new_bytenr = 0;
18575d4f98a2SYan Zheng 			new_ptr_gen = 0;
18585d4f98a2SYan Zheng 		}
18595d4f98a2SYan Zheng 
1860fae7f21cSDulshani Gunawardhana 		if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
18615d4f98a2SYan Zheng 			ret = level;
18625d4f98a2SYan Zheng 			break;
18635d4f98a2SYan Zheng 		}
18645d4f98a2SYan Zheng 
18655d4f98a2SYan Zheng 		if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
18665d4f98a2SYan Zheng 		    memcmp_node_keys(parent, slot, path, level)) {
18673fd0a558SYan, Zheng 			if (level <= lowest_level) {
18685d4f98a2SYan Zheng 				ret = 0;
18695d4f98a2SYan Zheng 				break;
18705d4f98a2SYan Zheng 			}
18715d4f98a2SYan Zheng 
1872ce86cd59SDavid Sterba 			eb = read_tree_block(dest, old_bytenr, old_ptr_gen);
187364c043deSLiu Bo 			if (IS_ERR(eb)) {
187464c043deSLiu Bo 				ret = PTR_ERR(eb);
1875264813acSLiu Bo 				break;
187664c043deSLiu Bo 			} else if (!extent_buffer_uptodate(eb)) {
187764c043deSLiu Bo 				ret = -EIO;
1878416bc658SJosef Bacik 				free_extent_buffer(eb);
1879379cde74SStefan Behrens 				break;
1880416bc658SJosef Bacik 			}
18815d4f98a2SYan Zheng 			btrfs_tree_lock(eb);
18823fd0a558SYan, Zheng 			if (cow) {
18835d4f98a2SYan Zheng 				ret = btrfs_cow_block(trans, dest, eb, parent,
18845d4f98a2SYan Zheng 						      slot, &eb);
18855d4f98a2SYan Zheng 				BUG_ON(ret);
18865d4f98a2SYan Zheng 			}
18873fd0a558SYan, Zheng 			btrfs_set_lock_blocking(eb);
18885d4f98a2SYan Zheng 
18895d4f98a2SYan Zheng 			btrfs_tree_unlock(parent);
18905d4f98a2SYan Zheng 			free_extent_buffer(parent);
18915d4f98a2SYan Zheng 
18925d4f98a2SYan Zheng 			parent = eb;
18935d4f98a2SYan Zheng 			continue;
18945d4f98a2SYan Zheng 		}
18955d4f98a2SYan Zheng 
18963fd0a558SYan, Zheng 		if (!cow) {
18973fd0a558SYan, Zheng 			btrfs_tree_unlock(parent);
18983fd0a558SYan, Zheng 			free_extent_buffer(parent);
18993fd0a558SYan, Zheng 			cow = 1;
19003fd0a558SYan, Zheng 			goto again;
19013fd0a558SYan, Zheng 		}
19023fd0a558SYan, Zheng 
19035d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &key,
19045d4f98a2SYan Zheng 				      path->slots[level]);
1905b3b4aa74SDavid Sterba 		btrfs_release_path(path);
19065d4f98a2SYan Zheng 
19075d4f98a2SYan Zheng 		path->lowest_level = level;
19085d4f98a2SYan Zheng 		ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
19095d4f98a2SYan Zheng 		path->lowest_level = 0;
19105d4f98a2SYan Zheng 		BUG_ON(ret);
19115d4f98a2SYan Zheng 
19125d4f98a2SYan Zheng 		/*
19135d4f98a2SYan Zheng 		 * swap blocks in fs tree and reloc tree.
19145d4f98a2SYan Zheng 		 */
19155d4f98a2SYan Zheng 		btrfs_set_node_blockptr(parent, slot, new_bytenr);
19165d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
19175d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(parent);
19185d4f98a2SYan Zheng 
19195d4f98a2SYan Zheng 		btrfs_set_node_blockptr(path->nodes[level],
19205d4f98a2SYan Zheng 					path->slots[level], old_bytenr);
19215d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(path->nodes[level],
19225d4f98a2SYan Zheng 					      path->slots[level], old_ptr_gen);
19235d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(path->nodes[level]);
19245d4f98a2SYan Zheng 
19255d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, src, old_bytenr, blocksize,
19265d4f98a2SYan Zheng 					path->nodes[level]->start,
1927b06c4bf5SFilipe Manana 					src->root_key.objectid, level - 1, 0);
19285d4f98a2SYan Zheng 		BUG_ON(ret);
19295d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, dest, new_bytenr, blocksize,
19305d4f98a2SYan Zheng 					0, dest->root_key.objectid, level - 1,
1931b06c4bf5SFilipe Manana 					0);
19325d4f98a2SYan Zheng 		BUG_ON(ret);
19335d4f98a2SYan Zheng 
19345d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, src, new_bytenr, blocksize,
19355d4f98a2SYan Zheng 					path->nodes[level]->start,
1936b06c4bf5SFilipe Manana 					src->root_key.objectid, level - 1, 0);
19375d4f98a2SYan Zheng 		BUG_ON(ret);
19385d4f98a2SYan Zheng 
19395d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, dest, old_bytenr, blocksize,
19405d4f98a2SYan Zheng 					0, dest->root_key.objectid, level - 1,
1941b06c4bf5SFilipe Manana 					0);
19425d4f98a2SYan Zheng 		BUG_ON(ret);
19435d4f98a2SYan Zheng 
19445d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
19455d4f98a2SYan Zheng 
19465d4f98a2SYan Zheng 		ret = level;
19475d4f98a2SYan Zheng 		break;
19485d4f98a2SYan Zheng 	}
19495d4f98a2SYan Zheng 	btrfs_tree_unlock(parent);
19505d4f98a2SYan Zheng 	free_extent_buffer(parent);
19515d4f98a2SYan Zheng 	return ret;
19525d4f98a2SYan Zheng }
19535d4f98a2SYan Zheng 
19545d4f98a2SYan Zheng /*
19555d4f98a2SYan Zheng  * helper to find next relocated block in reloc tree
19565d4f98a2SYan Zheng  */
19575d4f98a2SYan Zheng static noinline_for_stack
19585d4f98a2SYan Zheng int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19595d4f98a2SYan Zheng 		       int *level)
19605d4f98a2SYan Zheng {
19615d4f98a2SYan Zheng 	struct extent_buffer *eb;
19625d4f98a2SYan Zheng 	int i;
19635d4f98a2SYan Zheng 	u64 last_snapshot;
19645d4f98a2SYan Zheng 	u32 nritems;
19655d4f98a2SYan Zheng 
19665d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
19675d4f98a2SYan Zheng 
19685d4f98a2SYan Zheng 	for (i = 0; i < *level; i++) {
19695d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19705d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19715d4f98a2SYan Zheng 	}
19725d4f98a2SYan Zheng 
19735d4f98a2SYan Zheng 	for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
19745d4f98a2SYan Zheng 		eb = path->nodes[i];
19755d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
19765d4f98a2SYan Zheng 		while (path->slots[i] + 1 < nritems) {
19775d4f98a2SYan Zheng 			path->slots[i]++;
19785d4f98a2SYan Zheng 			if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
19795d4f98a2SYan Zheng 			    last_snapshot)
19805d4f98a2SYan Zheng 				continue;
19815d4f98a2SYan Zheng 
19825d4f98a2SYan Zheng 			*level = i;
19835d4f98a2SYan Zheng 			return 0;
19845d4f98a2SYan Zheng 		}
19855d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19865d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19875d4f98a2SYan Zheng 	}
19885d4f98a2SYan Zheng 	return 1;
19895d4f98a2SYan Zheng }
19905d4f98a2SYan Zheng 
19915d4f98a2SYan Zheng /*
19925d4f98a2SYan Zheng  * walk down reloc tree to find relocated block of lowest level
19935d4f98a2SYan Zheng  */
19945d4f98a2SYan Zheng static noinline_for_stack
19955d4f98a2SYan Zheng int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19965d4f98a2SYan Zheng 			 int *level)
19975d4f98a2SYan Zheng {
19985d4f98a2SYan Zheng 	struct extent_buffer *eb = NULL;
19995d4f98a2SYan Zheng 	int i;
20005d4f98a2SYan Zheng 	u64 bytenr;
20015d4f98a2SYan Zheng 	u64 ptr_gen = 0;
20025d4f98a2SYan Zheng 	u64 last_snapshot;
20035d4f98a2SYan Zheng 	u32 nritems;
20045d4f98a2SYan Zheng 
20055d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
20065d4f98a2SYan Zheng 
20075d4f98a2SYan Zheng 	for (i = *level; i > 0; i--) {
20085d4f98a2SYan Zheng 		eb = path->nodes[i];
20095d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
20105d4f98a2SYan Zheng 		while (path->slots[i] < nritems) {
20115d4f98a2SYan Zheng 			ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
20125d4f98a2SYan Zheng 			if (ptr_gen > last_snapshot)
20135d4f98a2SYan Zheng 				break;
20145d4f98a2SYan Zheng 			path->slots[i]++;
20155d4f98a2SYan Zheng 		}
20165d4f98a2SYan Zheng 		if (path->slots[i] >= nritems) {
20175d4f98a2SYan Zheng 			if (i == *level)
20185d4f98a2SYan Zheng 				break;
20195d4f98a2SYan Zheng 			*level = i + 1;
20205d4f98a2SYan Zheng 			return 0;
20215d4f98a2SYan Zheng 		}
20225d4f98a2SYan Zheng 		if (i == 1) {
20235d4f98a2SYan Zheng 			*level = i;
20245d4f98a2SYan Zheng 			return 0;
20255d4f98a2SYan Zheng 		}
20265d4f98a2SYan Zheng 
20275d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(eb, path->slots[i]);
2028ce86cd59SDavid Sterba 		eb = read_tree_block(root, bytenr, ptr_gen);
202964c043deSLiu Bo 		if (IS_ERR(eb)) {
203064c043deSLiu Bo 			return PTR_ERR(eb);
203164c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2032416bc658SJosef Bacik 			free_extent_buffer(eb);
2033416bc658SJosef Bacik 			return -EIO;
2034416bc658SJosef Bacik 		}
20355d4f98a2SYan Zheng 		BUG_ON(btrfs_header_level(eb) != i - 1);
20365d4f98a2SYan Zheng 		path->nodes[i - 1] = eb;
20375d4f98a2SYan Zheng 		path->slots[i - 1] = 0;
20385d4f98a2SYan Zheng 	}
20395d4f98a2SYan Zheng 	return 1;
20405d4f98a2SYan Zheng }
20415d4f98a2SYan Zheng 
20425d4f98a2SYan Zheng /*
20435d4f98a2SYan Zheng  * invalidate extent cache for file extents whose key in range of
20445d4f98a2SYan Zheng  * [min_key, max_key)
20455d4f98a2SYan Zheng  */
20465d4f98a2SYan Zheng static int invalidate_extent_cache(struct btrfs_root *root,
20475d4f98a2SYan Zheng 				   struct btrfs_key *min_key,
20485d4f98a2SYan Zheng 				   struct btrfs_key *max_key)
20495d4f98a2SYan Zheng {
20505d4f98a2SYan Zheng 	struct inode *inode = NULL;
20515d4f98a2SYan Zheng 	u64 objectid;
20525d4f98a2SYan Zheng 	u64 start, end;
205333345d01SLi Zefan 	u64 ino;
20545d4f98a2SYan Zheng 
20555d4f98a2SYan Zheng 	objectid = min_key->objectid;
20565d4f98a2SYan Zheng 	while (1) {
20575d4f98a2SYan Zheng 		cond_resched();
20585d4f98a2SYan Zheng 		iput(inode);
20595d4f98a2SYan Zheng 
20605d4f98a2SYan Zheng 		if (objectid > max_key->objectid)
20615d4f98a2SYan Zheng 			break;
20625d4f98a2SYan Zheng 
20635d4f98a2SYan Zheng 		inode = find_next_inode(root, objectid);
20645d4f98a2SYan Zheng 		if (!inode)
20655d4f98a2SYan Zheng 			break;
206633345d01SLi Zefan 		ino = btrfs_ino(inode);
20675d4f98a2SYan Zheng 
206833345d01SLi Zefan 		if (ino > max_key->objectid) {
20695d4f98a2SYan Zheng 			iput(inode);
20705d4f98a2SYan Zheng 			break;
20715d4f98a2SYan Zheng 		}
20725d4f98a2SYan Zheng 
207333345d01SLi Zefan 		objectid = ino + 1;
20745d4f98a2SYan Zheng 		if (!S_ISREG(inode->i_mode))
20755d4f98a2SYan Zheng 			continue;
20765d4f98a2SYan Zheng 
207733345d01SLi Zefan 		if (unlikely(min_key->objectid == ino)) {
20785d4f98a2SYan Zheng 			if (min_key->type > BTRFS_EXTENT_DATA_KEY)
20795d4f98a2SYan Zheng 				continue;
20805d4f98a2SYan Zheng 			if (min_key->type < BTRFS_EXTENT_DATA_KEY)
20815d4f98a2SYan Zheng 				start = 0;
20825d4f98a2SYan Zheng 			else {
20835d4f98a2SYan Zheng 				start = min_key->offset;
20845d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(start, root->sectorsize));
20855d4f98a2SYan Zheng 			}
20865d4f98a2SYan Zheng 		} else {
20875d4f98a2SYan Zheng 			start = 0;
20885d4f98a2SYan Zheng 		}
20895d4f98a2SYan Zheng 
209033345d01SLi Zefan 		if (unlikely(max_key->objectid == ino)) {
20915d4f98a2SYan Zheng 			if (max_key->type < BTRFS_EXTENT_DATA_KEY)
20925d4f98a2SYan Zheng 				continue;
20935d4f98a2SYan Zheng 			if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
20945d4f98a2SYan Zheng 				end = (u64)-1;
20955d4f98a2SYan Zheng 			} else {
20965d4f98a2SYan Zheng 				if (max_key->offset == 0)
20975d4f98a2SYan Zheng 					continue;
20985d4f98a2SYan Zheng 				end = max_key->offset;
20995d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(end, root->sectorsize));
21005d4f98a2SYan Zheng 				end--;
21015d4f98a2SYan Zheng 			}
21025d4f98a2SYan Zheng 		} else {
21035d4f98a2SYan Zheng 			end = (u64)-1;
21045d4f98a2SYan Zheng 		}
21055d4f98a2SYan Zheng 
21065d4f98a2SYan Zheng 		/* the lock_extent waits for readpage to complete */
2107d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
21085d4f98a2SYan Zheng 		btrfs_drop_extent_cache(inode, start, end, 1);
2109d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
21105d4f98a2SYan Zheng 	}
21115d4f98a2SYan Zheng 	return 0;
21125d4f98a2SYan Zheng }
21135d4f98a2SYan Zheng 
21145d4f98a2SYan Zheng static int find_next_key(struct btrfs_path *path, int level,
21155d4f98a2SYan Zheng 			 struct btrfs_key *key)
21165d4f98a2SYan Zheng 
21175d4f98a2SYan Zheng {
21185d4f98a2SYan Zheng 	while (level < BTRFS_MAX_LEVEL) {
21195d4f98a2SYan Zheng 		if (!path->nodes[level])
21205d4f98a2SYan Zheng 			break;
21215d4f98a2SYan Zheng 		if (path->slots[level] + 1 <
21225d4f98a2SYan Zheng 		    btrfs_header_nritems(path->nodes[level])) {
21235d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], key,
21245d4f98a2SYan Zheng 					      path->slots[level] + 1);
21255d4f98a2SYan Zheng 			return 0;
21265d4f98a2SYan Zheng 		}
21275d4f98a2SYan Zheng 		level++;
21285d4f98a2SYan Zheng 	}
21295d4f98a2SYan Zheng 	return 1;
21305d4f98a2SYan Zheng }
21315d4f98a2SYan Zheng 
21325d4f98a2SYan Zheng /*
21335d4f98a2SYan Zheng  * merge the relocated tree blocks in reloc tree with corresponding
21345d4f98a2SYan Zheng  * fs tree.
21355d4f98a2SYan Zheng  */
21365d4f98a2SYan Zheng static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
21375d4f98a2SYan Zheng 					       struct btrfs_root *root)
21385d4f98a2SYan Zheng {
21395d4f98a2SYan Zheng 	LIST_HEAD(inode_list);
21405d4f98a2SYan Zheng 	struct btrfs_key key;
21415d4f98a2SYan Zheng 	struct btrfs_key next_key;
21429e6a0c52SJosef Bacik 	struct btrfs_trans_handle *trans = NULL;
21435d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
21445d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
21455d4f98a2SYan Zheng 	struct btrfs_path *path;
21463fd0a558SYan, Zheng 	struct extent_buffer *leaf;
21475d4f98a2SYan Zheng 	int level;
21485d4f98a2SYan Zheng 	int max_level;
21495d4f98a2SYan Zheng 	int replaced = 0;
21505d4f98a2SYan Zheng 	int ret;
21515d4f98a2SYan Zheng 	int err = 0;
21523fd0a558SYan, Zheng 	u32 min_reserved;
21535d4f98a2SYan Zheng 
21545d4f98a2SYan Zheng 	path = btrfs_alloc_path();
21555d4f98a2SYan Zheng 	if (!path)
21565d4f98a2SYan Zheng 		return -ENOMEM;
2157e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
21585d4f98a2SYan Zheng 
21595d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
21605d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
21615d4f98a2SYan Zheng 
21625d4f98a2SYan Zheng 	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
21635d4f98a2SYan Zheng 		level = btrfs_root_level(root_item);
21645d4f98a2SYan Zheng 		extent_buffer_get(reloc_root->node);
21655d4f98a2SYan Zheng 		path->nodes[level] = reloc_root->node;
21665d4f98a2SYan Zheng 		path->slots[level] = 0;
21675d4f98a2SYan Zheng 	} else {
21685d4f98a2SYan Zheng 		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
21695d4f98a2SYan Zheng 
21705d4f98a2SYan Zheng 		level = root_item->drop_level;
21715d4f98a2SYan Zheng 		BUG_ON(level == 0);
21725d4f98a2SYan Zheng 		path->lowest_level = level;
21735d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
217433c66f43SYan Zheng 		path->lowest_level = 0;
21755d4f98a2SYan Zheng 		if (ret < 0) {
21765d4f98a2SYan Zheng 			btrfs_free_path(path);
21775d4f98a2SYan Zheng 			return ret;
21785d4f98a2SYan Zheng 		}
21795d4f98a2SYan Zheng 
21805d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &next_key,
21815d4f98a2SYan Zheng 				      path->slots[level]);
21825d4f98a2SYan Zheng 		WARN_ON(memcmp(&key, &next_key, sizeof(key)));
21835d4f98a2SYan Zheng 
21845d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
21855d4f98a2SYan Zheng 	}
21865d4f98a2SYan Zheng 
21873fd0a558SYan, Zheng 	min_reserved = root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
21885d4f98a2SYan Zheng 	memset(&next_key, 0, sizeof(next_key));
21895d4f98a2SYan Zheng 
21905d4f98a2SYan Zheng 	while (1) {
219108e007d2SMiao Xie 		ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
219208e007d2SMiao Xie 					     BTRFS_RESERVE_FLUSH_ALL);
21933fd0a558SYan, Zheng 		if (ret) {
21949e6a0c52SJosef Bacik 			err = ret;
21959e6a0c52SJosef Bacik 			goto out;
21963fd0a558SYan, Zheng 		}
21979e6a0c52SJosef Bacik 		trans = btrfs_start_transaction(root, 0);
21989e6a0c52SJosef Bacik 		if (IS_ERR(trans)) {
21999e6a0c52SJosef Bacik 			err = PTR_ERR(trans);
22009e6a0c52SJosef Bacik 			trans = NULL;
22019e6a0c52SJosef Bacik 			goto out;
22029e6a0c52SJosef Bacik 		}
22039e6a0c52SJosef Bacik 		trans->block_rsv = rc->block_rsv;
22043fd0a558SYan, Zheng 
22053fd0a558SYan, Zheng 		replaced = 0;
22065d4f98a2SYan Zheng 		max_level = level;
22075d4f98a2SYan Zheng 
22085d4f98a2SYan Zheng 		ret = walk_down_reloc_tree(reloc_root, path, &level);
22095d4f98a2SYan Zheng 		if (ret < 0) {
22105d4f98a2SYan Zheng 			err = ret;
22115d4f98a2SYan Zheng 			goto out;
22125d4f98a2SYan Zheng 		}
22135d4f98a2SYan Zheng 		if (ret > 0)
22145d4f98a2SYan Zheng 			break;
22155d4f98a2SYan Zheng 
22165d4f98a2SYan Zheng 		if (!find_next_key(path, level, &key) &&
22175d4f98a2SYan Zheng 		    btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
22185d4f98a2SYan Zheng 			ret = 0;
22195d4f98a2SYan Zheng 		} else {
22203fd0a558SYan, Zheng 			ret = replace_path(trans, root, reloc_root, path,
22213fd0a558SYan, Zheng 					   &next_key, level, max_level);
22225d4f98a2SYan Zheng 		}
22235d4f98a2SYan Zheng 		if (ret < 0) {
22245d4f98a2SYan Zheng 			err = ret;
22255d4f98a2SYan Zheng 			goto out;
22265d4f98a2SYan Zheng 		}
22275d4f98a2SYan Zheng 
22285d4f98a2SYan Zheng 		if (ret > 0) {
22295d4f98a2SYan Zheng 			level = ret;
22305d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], &key,
22315d4f98a2SYan Zheng 					      path->slots[level]);
22325d4f98a2SYan Zheng 			replaced = 1;
22335d4f98a2SYan Zheng 		}
22345d4f98a2SYan Zheng 
22355d4f98a2SYan Zheng 		ret = walk_up_reloc_tree(reloc_root, path, &level);
22365d4f98a2SYan Zheng 		if (ret > 0)
22375d4f98a2SYan Zheng 			break;
22385d4f98a2SYan Zheng 
22395d4f98a2SYan Zheng 		BUG_ON(level == 0);
22405d4f98a2SYan Zheng 		/*
22415d4f98a2SYan Zheng 		 * save the merging progress in the drop_progress.
22425d4f98a2SYan Zheng 		 * this is OK since root refs == 1 in this case.
22435d4f98a2SYan Zheng 		 */
22445d4f98a2SYan Zheng 		btrfs_node_key(path->nodes[level], &root_item->drop_progress,
22455d4f98a2SYan Zheng 			       path->slots[level]);
22465d4f98a2SYan Zheng 		root_item->drop_level = level;
22475d4f98a2SYan Zheng 
22483fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, root);
22499e6a0c52SJosef Bacik 		trans = NULL;
22505d4f98a2SYan Zheng 
2251b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(root);
22525d4f98a2SYan Zheng 
22535d4f98a2SYan Zheng 		if (replaced && rc->stage == UPDATE_DATA_PTRS)
22545d4f98a2SYan Zheng 			invalidate_extent_cache(root, &key, &next_key);
22555d4f98a2SYan Zheng 	}
22565d4f98a2SYan Zheng 
22575d4f98a2SYan Zheng 	/*
22585d4f98a2SYan Zheng 	 * handle the case only one block in the fs tree need to be
22595d4f98a2SYan Zheng 	 * relocated and the block is tree root.
22605d4f98a2SYan Zheng 	 */
22615d4f98a2SYan Zheng 	leaf = btrfs_lock_root_node(root);
22625d4f98a2SYan Zheng 	ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
22635d4f98a2SYan Zheng 	btrfs_tree_unlock(leaf);
22645d4f98a2SYan Zheng 	free_extent_buffer(leaf);
22655d4f98a2SYan Zheng 	if (ret < 0)
22665d4f98a2SYan Zheng 		err = ret;
22675d4f98a2SYan Zheng out:
22685d4f98a2SYan Zheng 	btrfs_free_path(path);
22695d4f98a2SYan Zheng 
22705d4f98a2SYan Zheng 	if (err == 0) {
22715d4f98a2SYan Zheng 		memset(&root_item->drop_progress, 0,
22725d4f98a2SYan Zheng 		       sizeof(root_item->drop_progress));
22735d4f98a2SYan Zheng 		root_item->drop_level = 0;
22745d4f98a2SYan Zheng 		btrfs_set_root_refs(root_item, 0);
22753fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
22765d4f98a2SYan Zheng 	}
22775d4f98a2SYan Zheng 
22789e6a0c52SJosef Bacik 	if (trans)
22793fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, root);
22805d4f98a2SYan Zheng 
2281b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
22825d4f98a2SYan Zheng 
22835d4f98a2SYan Zheng 	if (replaced && rc->stage == UPDATE_DATA_PTRS)
22845d4f98a2SYan Zheng 		invalidate_extent_cache(root, &key, &next_key);
22855d4f98a2SYan Zheng 
22865d4f98a2SYan Zheng 	return err;
22875d4f98a2SYan Zheng }
22885d4f98a2SYan Zheng 
22893fd0a558SYan, Zheng static noinline_for_stack
22903fd0a558SYan, Zheng int prepare_to_merge(struct reloc_control *rc, int err)
22915d4f98a2SYan Zheng {
22923fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
22933fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
22945d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
22953fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
22963fd0a558SYan, Zheng 	u64 num_bytes = 0;
22973fd0a558SYan, Zheng 	int ret;
22983fd0a558SYan, Zheng 
22997585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
23003fd0a558SYan, Zheng 	rc->merging_rsv_size += root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
23013fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated * 2;
23027585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
23037585717fSChris Mason 
23043fd0a558SYan, Zheng again:
23053fd0a558SYan, Zheng 	if (!err) {
23063fd0a558SYan, Zheng 		num_bytes = rc->merging_rsv_size;
230708e007d2SMiao Xie 		ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
230808e007d2SMiao Xie 					  BTRFS_RESERVE_FLUSH_ALL);
23093fd0a558SYan, Zheng 		if (ret)
23103fd0a558SYan, Zheng 			err = ret;
23113fd0a558SYan, Zheng 	}
23123fd0a558SYan, Zheng 
23137a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
23143612b495STsutomu Itoh 	if (IS_ERR(trans)) {
23153612b495STsutomu Itoh 		if (!err)
23163612b495STsutomu Itoh 			btrfs_block_rsv_release(rc->extent_root,
23173612b495STsutomu Itoh 						rc->block_rsv, num_bytes);
23183612b495STsutomu Itoh 		return PTR_ERR(trans);
23193612b495STsutomu Itoh 	}
23203fd0a558SYan, Zheng 
23213fd0a558SYan, Zheng 	if (!err) {
23223fd0a558SYan, Zheng 		if (num_bytes != rc->merging_rsv_size) {
23233fd0a558SYan, Zheng 			btrfs_end_transaction(trans, rc->extent_root);
23243fd0a558SYan, Zheng 			btrfs_block_rsv_release(rc->extent_root,
23253fd0a558SYan, Zheng 						rc->block_rsv, num_bytes);
23263fd0a558SYan, Zheng 			goto again;
23273fd0a558SYan, Zheng 		}
23283fd0a558SYan, Zheng 	}
23293fd0a558SYan, Zheng 
23303fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
23313fd0a558SYan, Zheng 
23323fd0a558SYan, Zheng 	while (!list_empty(&rc->reloc_roots)) {
23333fd0a558SYan, Zheng 		reloc_root = list_entry(rc->reloc_roots.next,
23343fd0a558SYan, Zheng 					struct btrfs_root, root_list);
23353fd0a558SYan, Zheng 		list_del_init(&reloc_root->root_list);
23363fd0a558SYan, Zheng 
23373fd0a558SYan, Zheng 		root = read_fs_root(reloc_root->fs_info,
23383fd0a558SYan, Zheng 				    reloc_root->root_key.offset);
23393fd0a558SYan, Zheng 		BUG_ON(IS_ERR(root));
23403fd0a558SYan, Zheng 		BUG_ON(root->reloc_root != reloc_root);
23413fd0a558SYan, Zheng 
23423fd0a558SYan, Zheng 		/*
23433fd0a558SYan, Zheng 		 * set reference count to 1, so btrfs_recover_relocation
23443fd0a558SYan, Zheng 		 * knows it should resumes merging
23453fd0a558SYan, Zheng 		 */
23463fd0a558SYan, Zheng 		if (!err)
23473fd0a558SYan, Zheng 			btrfs_set_root_refs(&reloc_root->root_item, 1);
23483fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
23493fd0a558SYan, Zheng 
23503fd0a558SYan, Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
23513fd0a558SYan, Zheng 	}
23523fd0a558SYan, Zheng 
23533fd0a558SYan, Zheng 	list_splice(&reloc_roots, &rc->reloc_roots);
23543fd0a558SYan, Zheng 
23553fd0a558SYan, Zheng 	if (!err)
23563fd0a558SYan, Zheng 		btrfs_commit_transaction(trans, rc->extent_root);
23573fd0a558SYan, Zheng 	else
23583fd0a558SYan, Zheng 		btrfs_end_transaction(trans, rc->extent_root);
23593fd0a558SYan, Zheng 	return err;
23603fd0a558SYan, Zheng }
23613fd0a558SYan, Zheng 
23623fd0a558SYan, Zheng static noinline_for_stack
2363aca1bba6SLiu Bo void free_reloc_roots(struct list_head *list)
2364aca1bba6SLiu Bo {
2365aca1bba6SLiu Bo 	struct btrfs_root *reloc_root;
2366aca1bba6SLiu Bo 
2367aca1bba6SLiu Bo 	while (!list_empty(list)) {
2368aca1bba6SLiu Bo 		reloc_root = list_entry(list->next, struct btrfs_root,
2369aca1bba6SLiu Bo 					root_list);
23706bdf131fSJosef Bacik 		free_extent_buffer(reloc_root->node);
23716bdf131fSJosef Bacik 		free_extent_buffer(reloc_root->commit_root);
23726bdf131fSJosef Bacik 		reloc_root->node = NULL;
23736bdf131fSJosef Bacik 		reloc_root->commit_root = NULL;
2374c974c464SWang Shilong 		__del_reloc_root(reloc_root);
2375aca1bba6SLiu Bo 	}
2376aca1bba6SLiu Bo }
2377aca1bba6SLiu Bo 
2378aca1bba6SLiu Bo static noinline_for_stack
237994404e82SDavid Sterba void merge_reloc_roots(struct reloc_control *rc)
23803fd0a558SYan, Zheng {
23815d4f98a2SYan Zheng 	struct btrfs_root *root;
23825d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
23835bc7247aSMiao Xie 	u64 last_snap;
23845bc7247aSMiao Xie 	u64 otransid;
23855bc7247aSMiao Xie 	u64 objectid;
23863fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
23873fd0a558SYan, Zheng 	int found = 0;
2388aca1bba6SLiu Bo 	int ret = 0;
23893fd0a558SYan, Zheng again:
23903fd0a558SYan, Zheng 	root = rc->extent_root;
23917585717fSChris Mason 
23927585717fSChris Mason 	/*
23937585717fSChris Mason 	 * this serializes us with btrfs_record_root_in_transaction,
23947585717fSChris Mason 	 * we have to make sure nobody is in the middle of
23957585717fSChris Mason 	 * adding their roots to the list while we are
23967585717fSChris Mason 	 * doing this splice
23977585717fSChris Mason 	 */
23987585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
23993fd0a558SYan, Zheng 	list_splice_init(&rc->reloc_roots, &reloc_roots);
24007585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
24015d4f98a2SYan Zheng 
24023fd0a558SYan, Zheng 	while (!list_empty(&reloc_roots)) {
24033fd0a558SYan, Zheng 		found = 1;
24043fd0a558SYan, Zheng 		reloc_root = list_entry(reloc_roots.next,
24053fd0a558SYan, Zheng 					struct btrfs_root, root_list);
24065d4f98a2SYan Zheng 
24075d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
24085d4f98a2SYan Zheng 			root = read_fs_root(reloc_root->fs_info,
24095d4f98a2SYan Zheng 					    reloc_root->root_key.offset);
24105d4f98a2SYan Zheng 			BUG_ON(IS_ERR(root));
24115d4f98a2SYan Zheng 			BUG_ON(root->reloc_root != reloc_root);
24125d4f98a2SYan Zheng 
24133fd0a558SYan, Zheng 			ret = merge_reloc_root(rc, root);
2414b37b39cdSJosef Bacik 			if (ret) {
241525e293c2SWang Shilong 				if (list_empty(&reloc_root->root_list))
241625e293c2SWang Shilong 					list_add_tail(&reloc_root->root_list,
241725e293c2SWang Shilong 						      &reloc_roots);
2418aca1bba6SLiu Bo 				goto out;
2419b37b39cdSJosef Bacik 			}
24203fd0a558SYan, Zheng 		} else {
24213fd0a558SYan, Zheng 			list_del_init(&reloc_root->root_list);
24223fd0a558SYan, Zheng 		}
24235bc7247aSMiao Xie 
24245bc7247aSMiao Xie 		/*
242501327610SNicholas D Steeves 		 * we keep the old last snapshot transid in rtranid when we
24265bc7247aSMiao Xie 		 * created the relocation tree.
24275bc7247aSMiao Xie 		 */
24285bc7247aSMiao Xie 		last_snap = btrfs_root_rtransid(&reloc_root->root_item);
24295bc7247aSMiao Xie 		otransid = btrfs_root_otransid(&reloc_root->root_item);
24305bc7247aSMiao Xie 		objectid = reloc_root->root_key.offset;
24315bc7247aSMiao Xie 
24322c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(reloc_root, rc->block_rsv, 0, 1);
2433aca1bba6SLiu Bo 		if (ret < 0) {
2434aca1bba6SLiu Bo 			if (list_empty(&reloc_root->root_list))
2435aca1bba6SLiu Bo 				list_add_tail(&reloc_root->root_list,
2436aca1bba6SLiu Bo 					      &reloc_roots);
2437aca1bba6SLiu Bo 			goto out;
2438aca1bba6SLiu Bo 		}
24395d4f98a2SYan Zheng 	}
24405d4f98a2SYan Zheng 
24413fd0a558SYan, Zheng 	if (found) {
24423fd0a558SYan, Zheng 		found = 0;
24433fd0a558SYan, Zheng 		goto again;
24445d4f98a2SYan Zheng 	}
2445aca1bba6SLiu Bo out:
2446aca1bba6SLiu Bo 	if (ret) {
244734d97007SAnand Jain 		btrfs_handle_fs_error(root->fs_info, ret, NULL);
2448aca1bba6SLiu Bo 		if (!list_empty(&reloc_roots))
2449aca1bba6SLiu Bo 			free_reloc_roots(&reloc_roots);
2450467bb1d2SWang Shilong 
2451467bb1d2SWang Shilong 		/* new reloc root may be added */
2452467bb1d2SWang Shilong 		mutex_lock(&root->fs_info->reloc_mutex);
2453467bb1d2SWang Shilong 		list_splice_init(&rc->reloc_roots, &reloc_roots);
2454467bb1d2SWang Shilong 		mutex_unlock(&root->fs_info->reloc_mutex);
2455467bb1d2SWang Shilong 		if (!list_empty(&reloc_roots))
2456467bb1d2SWang Shilong 			free_reloc_roots(&reloc_roots);
2457aca1bba6SLiu Bo 	}
2458aca1bba6SLiu Bo 
24595d4f98a2SYan Zheng 	BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
24605d4f98a2SYan Zheng }
24615d4f98a2SYan Zheng 
24625d4f98a2SYan Zheng static void free_block_list(struct rb_root *blocks)
24635d4f98a2SYan Zheng {
24645d4f98a2SYan Zheng 	struct tree_block *block;
24655d4f98a2SYan Zheng 	struct rb_node *rb_node;
24665d4f98a2SYan Zheng 	while ((rb_node = rb_first(blocks))) {
24675d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
24685d4f98a2SYan Zheng 		rb_erase(rb_node, blocks);
24695d4f98a2SYan Zheng 		kfree(block);
24705d4f98a2SYan Zheng 	}
24715d4f98a2SYan Zheng }
24725d4f98a2SYan Zheng 
24735d4f98a2SYan Zheng static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
24745d4f98a2SYan Zheng 				      struct btrfs_root *reloc_root)
24755d4f98a2SYan Zheng {
24765d4f98a2SYan Zheng 	struct btrfs_root *root;
24775d4f98a2SYan Zheng 
24785d4f98a2SYan Zheng 	if (reloc_root->last_trans == trans->transid)
24795d4f98a2SYan Zheng 		return 0;
24805d4f98a2SYan Zheng 
24815d4f98a2SYan Zheng 	root = read_fs_root(reloc_root->fs_info, reloc_root->root_key.offset);
24825d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
24835d4f98a2SYan Zheng 	BUG_ON(root->reloc_root != reloc_root);
24845d4f98a2SYan Zheng 
24855d4f98a2SYan Zheng 	return btrfs_record_root_in_trans(trans, root);
24865d4f98a2SYan Zheng }
24875d4f98a2SYan Zheng 
24883fd0a558SYan, Zheng static noinline_for_stack
24893fd0a558SYan, Zheng struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
24903fd0a558SYan, Zheng 				     struct reloc_control *rc,
24915d4f98a2SYan Zheng 				     struct backref_node *node,
2492dc4103f9SWang Shilong 				     struct backref_edge *edges[])
24935d4f98a2SYan Zheng {
24945d4f98a2SYan Zheng 	struct backref_node *next;
24955d4f98a2SYan Zheng 	struct btrfs_root *root;
24963fd0a558SYan, Zheng 	int index = 0;
24973fd0a558SYan, Zheng 
24985d4f98a2SYan Zheng 	next = node;
24995d4f98a2SYan Zheng 	while (1) {
25005d4f98a2SYan Zheng 		cond_resched();
25015d4f98a2SYan Zheng 		next = walk_up_backref(next, edges, &index);
25025d4f98a2SYan Zheng 		root = next->root;
25033fd0a558SYan, Zheng 		BUG_ON(!root);
250427cdeb70SMiao Xie 		BUG_ON(!test_bit(BTRFS_ROOT_REF_COWS, &root->state));
25055d4f98a2SYan Zheng 
25065d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
25075d4f98a2SYan Zheng 			record_reloc_root_in_trans(trans, root);
25085d4f98a2SYan Zheng 			break;
25095d4f98a2SYan Zheng 		}
25105d4f98a2SYan Zheng 
25115d4f98a2SYan Zheng 		btrfs_record_root_in_trans(trans, root);
25123fd0a558SYan, Zheng 		root = root->reloc_root;
25133fd0a558SYan, Zheng 
25143fd0a558SYan, Zheng 		if (next->new_bytenr != root->node->start) {
25153fd0a558SYan, Zheng 			BUG_ON(next->new_bytenr);
25163fd0a558SYan, Zheng 			BUG_ON(!list_empty(&next->list));
25173fd0a558SYan, Zheng 			next->new_bytenr = root->node->start;
25183fd0a558SYan, Zheng 			next->root = root;
25193fd0a558SYan, Zheng 			list_add_tail(&next->list,
25203fd0a558SYan, Zheng 				      &rc->backref_cache.changed);
25213fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
25225d4f98a2SYan Zheng 			break;
25235d4f98a2SYan Zheng 		}
25245d4f98a2SYan Zheng 
25253fd0a558SYan, Zheng 		WARN_ON(1);
25265d4f98a2SYan Zheng 		root = NULL;
25275d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
25285d4f98a2SYan Zheng 		if (!next || next->level <= node->level)
25295d4f98a2SYan Zheng 			break;
25305d4f98a2SYan Zheng 	}
25313fd0a558SYan, Zheng 	if (!root)
25323fd0a558SYan, Zheng 		return NULL;
25335d4f98a2SYan Zheng 
25343fd0a558SYan, Zheng 	next = node;
25353fd0a558SYan, Zheng 	/* setup backref node path for btrfs_reloc_cow_block */
25363fd0a558SYan, Zheng 	while (1) {
25373fd0a558SYan, Zheng 		rc->backref_cache.path[next->level] = next;
25383fd0a558SYan, Zheng 		if (--index < 0)
25393fd0a558SYan, Zheng 			break;
25403fd0a558SYan, Zheng 		next = edges[index]->node[UPPER];
25413fd0a558SYan, Zheng 	}
25425d4f98a2SYan Zheng 	return root;
25435d4f98a2SYan Zheng }
25445d4f98a2SYan Zheng 
25453fd0a558SYan, Zheng /*
25463fd0a558SYan, Zheng  * select a tree root for relocation. return NULL if the block
25473fd0a558SYan, Zheng  * is reference counted. we should use do_relocation() in this
25483fd0a558SYan, Zheng  * case. return a tree root pointer if the block isn't reference
25493fd0a558SYan, Zheng  * counted. return -ENOENT if the block is root of reloc tree.
25503fd0a558SYan, Zheng  */
25515d4f98a2SYan Zheng static noinline_for_stack
2552147d256eSZhaolei struct btrfs_root *select_one_root(struct backref_node *node)
25535d4f98a2SYan Zheng {
25543fd0a558SYan, Zheng 	struct backref_node *next;
25553fd0a558SYan, Zheng 	struct btrfs_root *root;
25563fd0a558SYan, Zheng 	struct btrfs_root *fs_root = NULL;
25575d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25583fd0a558SYan, Zheng 	int index = 0;
25593fd0a558SYan, Zheng 
25603fd0a558SYan, Zheng 	next = node;
25613fd0a558SYan, Zheng 	while (1) {
25623fd0a558SYan, Zheng 		cond_resched();
25633fd0a558SYan, Zheng 		next = walk_up_backref(next, edges, &index);
25643fd0a558SYan, Zheng 		root = next->root;
25653fd0a558SYan, Zheng 		BUG_ON(!root);
25663fd0a558SYan, Zheng 
256725985edcSLucas De Marchi 		/* no other choice for non-references counted tree */
256827cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
25693fd0a558SYan, Zheng 			return root;
25703fd0a558SYan, Zheng 
25713fd0a558SYan, Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
25723fd0a558SYan, Zheng 			fs_root = root;
25733fd0a558SYan, Zheng 
25743fd0a558SYan, Zheng 		if (next != node)
25753fd0a558SYan, Zheng 			return NULL;
25763fd0a558SYan, Zheng 
25773fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
25783fd0a558SYan, Zheng 		if (!next || next->level <= node->level)
25793fd0a558SYan, Zheng 			break;
25803fd0a558SYan, Zheng 	}
25813fd0a558SYan, Zheng 
25823fd0a558SYan, Zheng 	if (!fs_root)
25833fd0a558SYan, Zheng 		return ERR_PTR(-ENOENT);
25843fd0a558SYan, Zheng 	return fs_root;
25855d4f98a2SYan Zheng }
25865d4f98a2SYan Zheng 
25875d4f98a2SYan Zheng static noinline_for_stack
25883fd0a558SYan, Zheng u64 calcu_metadata_size(struct reloc_control *rc,
25893fd0a558SYan, Zheng 			struct backref_node *node, int reserve)
25905d4f98a2SYan Zheng {
25913fd0a558SYan, Zheng 	struct backref_node *next = node;
25923fd0a558SYan, Zheng 	struct backref_edge *edge;
25933fd0a558SYan, Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25943fd0a558SYan, Zheng 	u64 num_bytes = 0;
25953fd0a558SYan, Zheng 	int index = 0;
25965d4f98a2SYan Zheng 
25973fd0a558SYan, Zheng 	BUG_ON(reserve && node->processed);
25983fd0a558SYan, Zheng 
25993fd0a558SYan, Zheng 	while (next) {
26003fd0a558SYan, Zheng 		cond_resched();
26015d4f98a2SYan Zheng 		while (1) {
26023fd0a558SYan, Zheng 			if (next->processed && (reserve || next != node))
26035d4f98a2SYan Zheng 				break;
26045d4f98a2SYan Zheng 
2605707e8a07SDavid Sterba 			num_bytes += rc->extent_root->nodesize;
26063fd0a558SYan, Zheng 
26073fd0a558SYan, Zheng 			if (list_empty(&next->upper))
26083fd0a558SYan, Zheng 				break;
26093fd0a558SYan, Zheng 
26103fd0a558SYan, Zheng 			edge = list_entry(next->upper.next,
26113fd0a558SYan, Zheng 					  struct backref_edge, list[LOWER]);
26123fd0a558SYan, Zheng 			edges[index++] = edge;
26133fd0a558SYan, Zheng 			next = edge->node[UPPER];
26145d4f98a2SYan Zheng 		}
26153fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
26163fd0a558SYan, Zheng 	}
26173fd0a558SYan, Zheng 	return num_bytes;
26183fd0a558SYan, Zheng }
26193fd0a558SYan, Zheng 
26203fd0a558SYan, Zheng static int reserve_metadata_space(struct btrfs_trans_handle *trans,
26213fd0a558SYan, Zheng 				  struct reloc_control *rc,
26223fd0a558SYan, Zheng 				  struct backref_node *node)
26233fd0a558SYan, Zheng {
26243fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
26253fd0a558SYan, Zheng 	u64 num_bytes;
26263fd0a558SYan, Zheng 	int ret;
26270647bf56SWang Shilong 	u64 tmp;
26283fd0a558SYan, Zheng 
26293fd0a558SYan, Zheng 	num_bytes = calcu_metadata_size(rc, node, 1) * 2;
26303fd0a558SYan, Zheng 
26313fd0a558SYan, Zheng 	trans->block_rsv = rc->block_rsv;
26320647bf56SWang Shilong 	rc->reserved_bytes += num_bytes;
26338ca17f0fSJosef Bacik 
26348ca17f0fSJosef Bacik 	/*
26358ca17f0fSJosef Bacik 	 * We are under a transaction here so we can only do limited flushing.
26368ca17f0fSJosef Bacik 	 * If we get an enospc just kick back -EAGAIN so we know to drop the
26378ca17f0fSJosef Bacik 	 * transaction and try to refill when we can flush all the things.
26388ca17f0fSJosef Bacik 	 */
26390647bf56SWang Shilong 	ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
26408ca17f0fSJosef Bacik 				BTRFS_RESERVE_FLUSH_LIMIT);
26413fd0a558SYan, Zheng 	if (ret) {
26428ca17f0fSJosef Bacik 		tmp = rc->extent_root->nodesize * RELOCATION_RESERVED_NODES;
26430647bf56SWang Shilong 		while (tmp <= rc->reserved_bytes)
26440647bf56SWang Shilong 			tmp <<= 1;
26450647bf56SWang Shilong 		/*
26460647bf56SWang Shilong 		 * only one thread can access block_rsv at this point,
26470647bf56SWang Shilong 		 * so we don't need hold lock to protect block_rsv.
26480647bf56SWang Shilong 		 * we expand more reservation size here to allow enough
26498ca17f0fSJosef Bacik 		 * space for relocation and we will return eailer in
26500647bf56SWang Shilong 		 * enospc case.
26510647bf56SWang Shilong 		 */
26520647bf56SWang Shilong 		rc->block_rsv->size = tmp + rc->extent_root->nodesize *
26530647bf56SWang Shilong 			RELOCATION_RESERVED_NODES;
26548ca17f0fSJosef Bacik 		return -EAGAIN;
26553fd0a558SYan, Zheng 	}
26563fd0a558SYan, Zheng 
26573fd0a558SYan, Zheng 	return 0;
26583fd0a558SYan, Zheng }
26593fd0a558SYan, Zheng 
26605d4f98a2SYan Zheng /*
26615d4f98a2SYan Zheng  * relocate a block tree, and then update pointers in upper level
26625d4f98a2SYan Zheng  * blocks that reference the block to point to the new location.
26635d4f98a2SYan Zheng  *
26645d4f98a2SYan Zheng  * if called by link_to_upper, the block has already been relocated.
26655d4f98a2SYan Zheng  * in that case this function just updates pointers.
26665d4f98a2SYan Zheng  */
26675d4f98a2SYan Zheng static int do_relocation(struct btrfs_trans_handle *trans,
26683fd0a558SYan, Zheng 			 struct reloc_control *rc,
26695d4f98a2SYan Zheng 			 struct backref_node *node,
26705d4f98a2SYan Zheng 			 struct btrfs_key *key,
26715d4f98a2SYan Zheng 			 struct btrfs_path *path, int lowest)
26725d4f98a2SYan Zheng {
26735d4f98a2SYan Zheng 	struct backref_node *upper;
26745d4f98a2SYan Zheng 	struct backref_edge *edge;
26755d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
26765d4f98a2SYan Zheng 	struct btrfs_root *root;
26775d4f98a2SYan Zheng 	struct extent_buffer *eb;
26785d4f98a2SYan Zheng 	u32 blocksize;
26795d4f98a2SYan Zheng 	u64 bytenr;
26805d4f98a2SYan Zheng 	u64 generation;
26815d4f98a2SYan Zheng 	int slot;
26825d4f98a2SYan Zheng 	int ret;
26835d4f98a2SYan Zheng 	int err = 0;
26845d4f98a2SYan Zheng 
26855d4f98a2SYan Zheng 	BUG_ON(lowest && node->eb);
26865d4f98a2SYan Zheng 
26875d4f98a2SYan Zheng 	path->lowest_level = node->level + 1;
26883fd0a558SYan, Zheng 	rc->backref_cache.path[node->level] = node;
26895d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER]) {
26905d4f98a2SYan Zheng 		cond_resched();
26915d4f98a2SYan Zheng 
26925d4f98a2SYan Zheng 		upper = edge->node[UPPER];
2693dc4103f9SWang Shilong 		root = select_reloc_root(trans, rc, upper, edges);
26943fd0a558SYan, Zheng 		BUG_ON(!root);
26955d4f98a2SYan Zheng 
26963fd0a558SYan, Zheng 		if (upper->eb && !upper->locked) {
26973fd0a558SYan, Zheng 			if (!lowest) {
26983fd0a558SYan, Zheng 				ret = btrfs_bin_search(upper->eb, key,
26993fd0a558SYan, Zheng 						       upper->level, &slot);
27003fd0a558SYan, Zheng 				BUG_ON(ret);
27013fd0a558SYan, Zheng 				bytenr = btrfs_node_blockptr(upper->eb, slot);
27023fd0a558SYan, Zheng 				if (node->eb->start == bytenr)
27033fd0a558SYan, Zheng 					goto next;
27043fd0a558SYan, Zheng 			}
27055d4f98a2SYan Zheng 			drop_node_buffer(upper);
27063fd0a558SYan, Zheng 		}
27075d4f98a2SYan Zheng 
27085d4f98a2SYan Zheng 		if (!upper->eb) {
27095d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
27103561b9dbSLiu Bo 			if (ret) {
27113561b9dbSLiu Bo 				if (ret < 0)
27125d4f98a2SYan Zheng 					err = ret;
27133561b9dbSLiu Bo 				else
27143561b9dbSLiu Bo 					err = -ENOENT;
27153561b9dbSLiu Bo 
27163561b9dbSLiu Bo 				btrfs_release_path(path);
27175d4f98a2SYan Zheng 				break;
27185d4f98a2SYan Zheng 			}
27195d4f98a2SYan Zheng 
27203fd0a558SYan, Zheng 			if (!upper->eb) {
27213fd0a558SYan, Zheng 				upper->eb = path->nodes[upper->level];
27223fd0a558SYan, Zheng 				path->nodes[upper->level] = NULL;
27233fd0a558SYan, Zheng 			} else {
27243fd0a558SYan, Zheng 				BUG_ON(upper->eb != path->nodes[upper->level]);
27253fd0a558SYan, Zheng 			}
27263fd0a558SYan, Zheng 
27273fd0a558SYan, Zheng 			upper->locked = 1;
27283fd0a558SYan, Zheng 			path->locks[upper->level] = 0;
27293fd0a558SYan, Zheng 
27305d4f98a2SYan Zheng 			slot = path->slots[upper->level];
2731b3b4aa74SDavid Sterba 			btrfs_release_path(path);
27325d4f98a2SYan Zheng 		} else {
27335d4f98a2SYan Zheng 			ret = btrfs_bin_search(upper->eb, key, upper->level,
27345d4f98a2SYan Zheng 					       &slot);
27355d4f98a2SYan Zheng 			BUG_ON(ret);
27365d4f98a2SYan Zheng 		}
27375d4f98a2SYan Zheng 
27385d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(upper->eb, slot);
27393fd0a558SYan, Zheng 		if (lowest) {
27404547f4d8SLiu Bo 			if (bytenr != node->bytenr) {
27414547f4d8SLiu Bo 				btrfs_err(root->fs_info,
27424547f4d8SLiu Bo 		"lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
27434547f4d8SLiu Bo 					  bytenr, node->bytenr, slot,
27444547f4d8SLiu Bo 					  upper->eb->start);
27454547f4d8SLiu Bo 				err = -EIO;
27464547f4d8SLiu Bo 				goto next;
27474547f4d8SLiu Bo 			}
27485d4f98a2SYan Zheng 		} else {
27493fd0a558SYan, Zheng 			if (node->eb->start == bytenr)
27503fd0a558SYan, Zheng 				goto next;
27515d4f98a2SYan Zheng 		}
27525d4f98a2SYan Zheng 
2753707e8a07SDavid Sterba 		blocksize = root->nodesize;
27545d4f98a2SYan Zheng 		generation = btrfs_node_ptr_generation(upper->eb, slot);
2755ce86cd59SDavid Sterba 		eb = read_tree_block(root, bytenr, generation);
275664c043deSLiu Bo 		if (IS_ERR(eb)) {
275764c043deSLiu Bo 			err = PTR_ERR(eb);
275864c043deSLiu Bo 			goto next;
275964c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2760416bc658SJosef Bacik 			free_extent_buffer(eb);
276197d9a8a4STsutomu Itoh 			err = -EIO;
276297d9a8a4STsutomu Itoh 			goto next;
276397d9a8a4STsutomu Itoh 		}
27645d4f98a2SYan Zheng 		btrfs_tree_lock(eb);
27655d4f98a2SYan Zheng 		btrfs_set_lock_blocking(eb);
27665d4f98a2SYan Zheng 
27675d4f98a2SYan Zheng 		if (!node->eb) {
27685d4f98a2SYan Zheng 			ret = btrfs_cow_block(trans, root, eb, upper->eb,
27695d4f98a2SYan Zheng 					      slot, &eb);
27703fd0a558SYan, Zheng 			btrfs_tree_unlock(eb);
27713fd0a558SYan, Zheng 			free_extent_buffer(eb);
27725d4f98a2SYan Zheng 			if (ret < 0) {
27735d4f98a2SYan Zheng 				err = ret;
27743fd0a558SYan, Zheng 				goto next;
27755d4f98a2SYan Zheng 			}
27763fd0a558SYan, Zheng 			BUG_ON(node->eb != eb);
27775d4f98a2SYan Zheng 		} else {
27785d4f98a2SYan Zheng 			btrfs_set_node_blockptr(upper->eb, slot,
27795d4f98a2SYan Zheng 						node->eb->start);
27805d4f98a2SYan Zheng 			btrfs_set_node_ptr_generation(upper->eb, slot,
27815d4f98a2SYan Zheng 						      trans->transid);
27825d4f98a2SYan Zheng 			btrfs_mark_buffer_dirty(upper->eb);
27835d4f98a2SYan Zheng 
27845d4f98a2SYan Zheng 			ret = btrfs_inc_extent_ref(trans, root,
27855d4f98a2SYan Zheng 						node->eb->start, blocksize,
27865d4f98a2SYan Zheng 						upper->eb->start,
27875d4f98a2SYan Zheng 						btrfs_header_owner(upper->eb),
2788b06c4bf5SFilipe Manana 						node->level, 0);
27895d4f98a2SYan Zheng 			BUG_ON(ret);
27905d4f98a2SYan Zheng 
27915d4f98a2SYan Zheng 			ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
27925d4f98a2SYan Zheng 			BUG_ON(ret);
27935d4f98a2SYan Zheng 		}
27943fd0a558SYan, Zheng next:
27953fd0a558SYan, Zheng 		if (!upper->pending)
27963fd0a558SYan, Zheng 			drop_node_buffer(upper);
27973fd0a558SYan, Zheng 		else
27983fd0a558SYan, Zheng 			unlock_node_buffer(upper);
27993fd0a558SYan, Zheng 		if (err)
28003fd0a558SYan, Zheng 			break;
28015d4f98a2SYan Zheng 	}
28023fd0a558SYan, Zheng 
28033fd0a558SYan, Zheng 	if (!err && node->pending) {
28043fd0a558SYan, Zheng 		drop_node_buffer(node);
28053fd0a558SYan, Zheng 		list_move_tail(&node->list, &rc->backref_cache.changed);
28063fd0a558SYan, Zheng 		node->pending = 0;
28075d4f98a2SYan Zheng 	}
28083fd0a558SYan, Zheng 
28095d4f98a2SYan Zheng 	path->lowest_level = 0;
28103fd0a558SYan, Zheng 	BUG_ON(err == -ENOSPC);
28115d4f98a2SYan Zheng 	return err;
28125d4f98a2SYan Zheng }
28135d4f98a2SYan Zheng 
28145d4f98a2SYan Zheng static int link_to_upper(struct btrfs_trans_handle *trans,
28153fd0a558SYan, Zheng 			 struct reloc_control *rc,
28165d4f98a2SYan Zheng 			 struct backref_node *node,
28175d4f98a2SYan Zheng 			 struct btrfs_path *path)
28185d4f98a2SYan Zheng {
28195d4f98a2SYan Zheng 	struct btrfs_key key;
28205d4f98a2SYan Zheng 
28215d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(node->eb, &key, 0);
28223fd0a558SYan, Zheng 	return do_relocation(trans, rc, node, &key, path, 0);
28235d4f98a2SYan Zheng }
28245d4f98a2SYan Zheng 
28255d4f98a2SYan Zheng static int finish_pending_nodes(struct btrfs_trans_handle *trans,
28263fd0a558SYan, Zheng 				struct reloc_control *rc,
28273fd0a558SYan, Zheng 				struct btrfs_path *path, int err)
28285d4f98a2SYan Zheng {
28293fd0a558SYan, Zheng 	LIST_HEAD(list);
28303fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
28315d4f98a2SYan Zheng 	struct backref_node *node;
28325d4f98a2SYan Zheng 	int level;
28335d4f98a2SYan Zheng 	int ret;
28345d4f98a2SYan Zheng 
28355d4f98a2SYan Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
28365d4f98a2SYan Zheng 		while (!list_empty(&cache->pending[level])) {
28375d4f98a2SYan Zheng 			node = list_entry(cache->pending[level].next,
28383fd0a558SYan, Zheng 					  struct backref_node, list);
28393fd0a558SYan, Zheng 			list_move_tail(&node->list, &list);
28403fd0a558SYan, Zheng 			BUG_ON(!node->pending);
28415d4f98a2SYan Zheng 
28423fd0a558SYan, Zheng 			if (!err) {
28433fd0a558SYan, Zheng 				ret = link_to_upper(trans, rc, node, path);
28445d4f98a2SYan Zheng 				if (ret < 0)
28455d4f98a2SYan Zheng 					err = ret;
28465d4f98a2SYan Zheng 			}
28475d4f98a2SYan Zheng 		}
28483fd0a558SYan, Zheng 		list_splice_init(&list, &cache->pending[level]);
28493fd0a558SYan, Zheng 	}
28505d4f98a2SYan Zheng 	return err;
28515d4f98a2SYan Zheng }
28525d4f98a2SYan Zheng 
28535d4f98a2SYan Zheng static void mark_block_processed(struct reloc_control *rc,
28543fd0a558SYan, Zheng 				 u64 bytenr, u32 blocksize)
28553fd0a558SYan, Zheng {
28563fd0a558SYan, Zheng 	set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
2857ceeb0ae7SDavid Sterba 			EXTENT_DIRTY);
28583fd0a558SYan, Zheng }
28593fd0a558SYan, Zheng 
28603fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
28615d4f98a2SYan Zheng 				   struct backref_node *node)
28625d4f98a2SYan Zheng {
28635d4f98a2SYan Zheng 	u32 blocksize;
28645d4f98a2SYan Zheng 	if (node->level == 0 ||
28655d4f98a2SYan Zheng 	    in_block_group(node->bytenr, rc->block_group)) {
2866707e8a07SDavid Sterba 		blocksize = rc->extent_root->nodesize;
28673fd0a558SYan, Zheng 		mark_block_processed(rc, node->bytenr, blocksize);
28685d4f98a2SYan Zheng 	}
28695d4f98a2SYan Zheng 	node->processed = 1;
28705d4f98a2SYan Zheng }
28715d4f98a2SYan Zheng 
28725d4f98a2SYan Zheng /*
28735d4f98a2SYan Zheng  * mark a block and all blocks directly/indirectly reference the block
28745d4f98a2SYan Zheng  * as processed.
28755d4f98a2SYan Zheng  */
28765d4f98a2SYan Zheng static void update_processed_blocks(struct reloc_control *rc,
28775d4f98a2SYan Zheng 				    struct backref_node *node)
28785d4f98a2SYan Zheng {
28795d4f98a2SYan Zheng 	struct backref_node *next = node;
28805d4f98a2SYan Zheng 	struct backref_edge *edge;
28815d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
28825d4f98a2SYan Zheng 	int index = 0;
28835d4f98a2SYan Zheng 
28845d4f98a2SYan Zheng 	while (next) {
28855d4f98a2SYan Zheng 		cond_resched();
28865d4f98a2SYan Zheng 		while (1) {
28875d4f98a2SYan Zheng 			if (next->processed)
28885d4f98a2SYan Zheng 				break;
28895d4f98a2SYan Zheng 
28903fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
28915d4f98a2SYan Zheng 
28925d4f98a2SYan Zheng 			if (list_empty(&next->upper))
28935d4f98a2SYan Zheng 				break;
28945d4f98a2SYan Zheng 
28955d4f98a2SYan Zheng 			edge = list_entry(next->upper.next,
28965d4f98a2SYan Zheng 					  struct backref_edge, list[LOWER]);
28975d4f98a2SYan Zheng 			edges[index++] = edge;
28985d4f98a2SYan Zheng 			next = edge->node[UPPER];
28995d4f98a2SYan Zheng 		}
29005d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
29015d4f98a2SYan Zheng 	}
29025d4f98a2SYan Zheng }
29035d4f98a2SYan Zheng 
29047476dfdaSDavid Sterba static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
29055d4f98a2SYan Zheng {
29067476dfdaSDavid Sterba 	u32 blocksize = rc->extent_root->nodesize;
29077476dfdaSDavid Sterba 
29085d4f98a2SYan Zheng 	if (test_range_bit(&rc->processed_blocks, bytenr,
29099655d298SChris Mason 			   bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
29105d4f98a2SYan Zheng 		return 1;
29115d4f98a2SYan Zheng 	return 0;
29125d4f98a2SYan Zheng }
29135d4f98a2SYan Zheng 
29145d4f98a2SYan Zheng static int get_tree_block_key(struct reloc_control *rc,
29155d4f98a2SYan Zheng 			      struct tree_block *block)
29165d4f98a2SYan Zheng {
29175d4f98a2SYan Zheng 	struct extent_buffer *eb;
29185d4f98a2SYan Zheng 
29195d4f98a2SYan Zheng 	BUG_ON(block->key_ready);
29205d4f98a2SYan Zheng 	eb = read_tree_block(rc->extent_root, block->bytenr,
2921ce86cd59SDavid Sterba 			     block->key.offset);
292264c043deSLiu Bo 	if (IS_ERR(eb)) {
292364c043deSLiu Bo 		return PTR_ERR(eb);
292464c043deSLiu Bo 	} else if (!extent_buffer_uptodate(eb)) {
2925416bc658SJosef Bacik 		free_extent_buffer(eb);
2926416bc658SJosef Bacik 		return -EIO;
2927416bc658SJosef Bacik 	}
29285d4f98a2SYan Zheng 	WARN_ON(btrfs_header_level(eb) != block->level);
29295d4f98a2SYan Zheng 	if (block->level == 0)
29305d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &block->key, 0);
29315d4f98a2SYan Zheng 	else
29325d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(eb, &block->key, 0);
29335d4f98a2SYan Zheng 	free_extent_buffer(eb);
29345d4f98a2SYan Zheng 	block->key_ready = 1;
29355d4f98a2SYan Zheng 	return 0;
29365d4f98a2SYan Zheng }
29375d4f98a2SYan Zheng 
29385d4f98a2SYan Zheng /*
29395d4f98a2SYan Zheng  * helper function to relocate a tree block
29405d4f98a2SYan Zheng  */
29415d4f98a2SYan Zheng static int relocate_tree_block(struct btrfs_trans_handle *trans,
29425d4f98a2SYan Zheng 				struct reloc_control *rc,
29435d4f98a2SYan Zheng 				struct backref_node *node,
29445d4f98a2SYan Zheng 				struct btrfs_key *key,
29455d4f98a2SYan Zheng 				struct btrfs_path *path)
29465d4f98a2SYan Zheng {
29475d4f98a2SYan Zheng 	struct btrfs_root *root;
29483fd0a558SYan, Zheng 	int ret = 0;
29495d4f98a2SYan Zheng 
29503fd0a558SYan, Zheng 	if (!node)
29515d4f98a2SYan Zheng 		return 0;
29523fd0a558SYan, Zheng 
29533fd0a558SYan, Zheng 	BUG_ON(node->processed);
2954147d256eSZhaolei 	root = select_one_root(node);
29553fd0a558SYan, Zheng 	if (root == ERR_PTR(-ENOENT)) {
29563fd0a558SYan, Zheng 		update_processed_blocks(rc, node);
29573fd0a558SYan, Zheng 		goto out;
29585d4f98a2SYan Zheng 	}
29595d4f98a2SYan Zheng 
296027cdeb70SMiao Xie 	if (!root || test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
29613fd0a558SYan, Zheng 		ret = reserve_metadata_space(trans, rc, node);
29623fd0a558SYan, Zheng 		if (ret)
29635d4f98a2SYan Zheng 			goto out;
29645d4f98a2SYan Zheng 	}
29653fd0a558SYan, Zheng 
29663fd0a558SYan, Zheng 	if (root) {
296727cdeb70SMiao Xie 		if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
29683fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr);
29693fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->list));
29703fd0a558SYan, Zheng 			btrfs_record_root_in_trans(trans, root);
29713fd0a558SYan, Zheng 			root = root->reloc_root;
29723fd0a558SYan, Zheng 			node->new_bytenr = root->node->start;
29733fd0a558SYan, Zheng 			node->root = root;
29743fd0a558SYan, Zheng 			list_add_tail(&node->list, &rc->backref_cache.changed);
29753fd0a558SYan, Zheng 		} else {
29765d4f98a2SYan Zheng 			path->lowest_level = node->level;
29775d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
2978b3b4aa74SDavid Sterba 			btrfs_release_path(path);
29793fd0a558SYan, Zheng 			if (ret > 0)
29805d4f98a2SYan Zheng 				ret = 0;
29813fd0a558SYan, Zheng 		}
29823fd0a558SYan, Zheng 		if (!ret)
29833fd0a558SYan, Zheng 			update_processed_blocks(rc, node);
29843fd0a558SYan, Zheng 	} else {
29853fd0a558SYan, Zheng 		ret = do_relocation(trans, rc, node, key, path, 1);
29863fd0a558SYan, Zheng 	}
29875d4f98a2SYan Zheng out:
29880647bf56SWang Shilong 	if (ret || node->level == 0 || node->cowonly)
29893fd0a558SYan, Zheng 		remove_backref_node(&rc->backref_cache, node);
29905d4f98a2SYan Zheng 	return ret;
29915d4f98a2SYan Zheng }
29925d4f98a2SYan Zheng 
29935d4f98a2SYan Zheng /*
29945d4f98a2SYan Zheng  * relocate a list of blocks
29955d4f98a2SYan Zheng  */
29965d4f98a2SYan Zheng static noinline_for_stack
29975d4f98a2SYan Zheng int relocate_tree_blocks(struct btrfs_trans_handle *trans,
29985d4f98a2SYan Zheng 			 struct reloc_control *rc, struct rb_root *blocks)
29995d4f98a2SYan Zheng {
30005d4f98a2SYan Zheng 	struct backref_node *node;
30015d4f98a2SYan Zheng 	struct btrfs_path *path;
30025d4f98a2SYan Zheng 	struct tree_block *block;
30035d4f98a2SYan Zheng 	struct rb_node *rb_node;
30045d4f98a2SYan Zheng 	int ret;
30055d4f98a2SYan Zheng 	int err = 0;
30065d4f98a2SYan Zheng 
30075d4f98a2SYan Zheng 	path = btrfs_alloc_path();
3008e1a12670SLiu Bo 	if (!path) {
3009e1a12670SLiu Bo 		err = -ENOMEM;
301034c2b290SDavid Sterba 		goto out_free_blocks;
3011e1a12670SLiu Bo 	}
30125d4f98a2SYan Zheng 
30135d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
30145d4f98a2SYan Zheng 	while (rb_node) {
30155d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
30165d4f98a2SYan Zheng 		if (!block->key_ready)
3017d3e46feaSDavid Sterba 			readahead_tree_block(rc->extent_root, block->bytenr);
30185d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
30195d4f98a2SYan Zheng 	}
30205d4f98a2SYan Zheng 
30215d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
30225d4f98a2SYan Zheng 	while (rb_node) {
30235d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
302434c2b290SDavid Sterba 		if (!block->key_ready) {
302534c2b290SDavid Sterba 			err = get_tree_block_key(rc, block);
302634c2b290SDavid Sterba 			if (err)
302734c2b290SDavid Sterba 				goto out_free_path;
302834c2b290SDavid Sterba 		}
30295d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
30305d4f98a2SYan Zheng 	}
30315d4f98a2SYan Zheng 
30325d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
30335d4f98a2SYan Zheng 	while (rb_node) {
30345d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
30355d4f98a2SYan Zheng 
30363fd0a558SYan, Zheng 		node = build_backref_tree(rc, &block->key,
30375d4f98a2SYan Zheng 					  block->level, block->bytenr);
30385d4f98a2SYan Zheng 		if (IS_ERR(node)) {
30395d4f98a2SYan Zheng 			err = PTR_ERR(node);
30405d4f98a2SYan Zheng 			goto out;
30415d4f98a2SYan Zheng 		}
30425d4f98a2SYan Zheng 
30435d4f98a2SYan Zheng 		ret = relocate_tree_block(trans, rc, node, &block->key,
30445d4f98a2SYan Zheng 					  path);
30455d4f98a2SYan Zheng 		if (ret < 0) {
30463fd0a558SYan, Zheng 			if (ret != -EAGAIN || rb_node == rb_first(blocks))
30475d4f98a2SYan Zheng 				err = ret;
30485d4f98a2SYan Zheng 			goto out;
30495d4f98a2SYan Zheng 		}
30505d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
30515d4f98a2SYan Zheng 	}
30525d4f98a2SYan Zheng out:
30533fd0a558SYan, Zheng 	err = finish_pending_nodes(trans, rc, path, err);
30545d4f98a2SYan Zheng 
305534c2b290SDavid Sterba out_free_path:
30565d4f98a2SYan Zheng 	btrfs_free_path(path);
305734c2b290SDavid Sterba out_free_blocks:
3058e1a12670SLiu Bo 	free_block_list(blocks);
30595d4f98a2SYan Zheng 	return err;
30605d4f98a2SYan Zheng }
30615d4f98a2SYan Zheng 
30625d4f98a2SYan Zheng static noinline_for_stack
3063efa56464SYan, Zheng int prealloc_file_extent_cluster(struct inode *inode,
3064efa56464SYan, Zheng 				 struct file_extent_cluster *cluster)
3065efa56464SYan, Zheng {
3066efa56464SYan, Zheng 	u64 alloc_hint = 0;
3067efa56464SYan, Zheng 	u64 start;
3068efa56464SYan, Zheng 	u64 end;
3069efa56464SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
3070efa56464SYan, Zheng 	u64 num_bytes;
3071efa56464SYan, Zheng 	int nr = 0;
3072efa56464SYan, Zheng 	int ret = 0;
3073dcb40c19SWang Xiaoguang 	u64 prealloc_start = cluster->start - offset;
3074dcb40c19SWang Xiaoguang 	u64 prealloc_end = cluster->end - offset;
307518513091SWang Xiaoguang 	u64 cur_offset;
3076efa56464SYan, Zheng 
3077efa56464SYan, Zheng 	BUG_ON(cluster->start != cluster->boundary[0]);
30785955102cSAl Viro 	inode_lock(inode);
3079efa56464SYan, Zheng 
3080dcb40c19SWang Xiaoguang 	ret = btrfs_check_data_free_space(inode, prealloc_start,
3081dcb40c19SWang Xiaoguang 					  prealloc_end + 1 - prealloc_start);
3082efa56464SYan, Zheng 	if (ret)
3083efa56464SYan, Zheng 		goto out;
3084efa56464SYan, Zheng 
308518513091SWang Xiaoguang 	cur_offset = prealloc_start;
3086efa56464SYan, Zheng 	while (nr < cluster->nr) {
3087efa56464SYan, Zheng 		start = cluster->boundary[nr] - offset;
3088efa56464SYan, Zheng 		if (nr + 1 < cluster->nr)
3089efa56464SYan, Zheng 			end = cluster->boundary[nr + 1] - 1 - offset;
3090efa56464SYan, Zheng 		else
3091efa56464SYan, Zheng 			end = cluster->end - offset;
3092efa56464SYan, Zheng 
3093d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
3094efa56464SYan, Zheng 		num_bytes = end + 1 - start;
309518513091SWang Xiaoguang 		if (cur_offset < start)
309618513091SWang Xiaoguang 			btrfs_free_reserved_data_space(inode, cur_offset,
309718513091SWang Xiaoguang 					start - cur_offset);
3098efa56464SYan, Zheng 		ret = btrfs_prealloc_file_range(inode, 0, start,
3099efa56464SYan, Zheng 						num_bytes, num_bytes,
3100efa56464SYan, Zheng 						end + 1, &alloc_hint);
310118513091SWang Xiaoguang 		cur_offset = end + 1;
3102d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
3103efa56464SYan, Zheng 		if (ret)
3104efa56464SYan, Zheng 			break;
3105efa56464SYan, Zheng 		nr++;
3106efa56464SYan, Zheng 	}
310718513091SWang Xiaoguang 	if (cur_offset < prealloc_end)
310818513091SWang Xiaoguang 		btrfs_free_reserved_data_space(inode, cur_offset,
310918513091SWang Xiaoguang 				       prealloc_end + 1 - cur_offset);
3110efa56464SYan, Zheng out:
31115955102cSAl Viro 	inode_unlock(inode);
3112efa56464SYan, Zheng 	return ret;
3113efa56464SYan, Zheng }
3114efa56464SYan, Zheng 
3115efa56464SYan, Zheng static noinline_for_stack
31160257bb82SYan, Zheng int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
31170257bb82SYan, Zheng 			 u64 block_start)
31185d4f98a2SYan Zheng {
31195d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(inode)->root;
31205d4f98a2SYan Zheng 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
31215d4f98a2SYan Zheng 	struct extent_map *em;
31220257bb82SYan, Zheng 	int ret = 0;
31235d4f98a2SYan Zheng 
3124172ddd60SDavid Sterba 	em = alloc_extent_map();
31250257bb82SYan, Zheng 	if (!em)
31260257bb82SYan, Zheng 		return -ENOMEM;
31270257bb82SYan, Zheng 
31285d4f98a2SYan Zheng 	em->start = start;
31290257bb82SYan, Zheng 	em->len = end + 1 - start;
31300257bb82SYan, Zheng 	em->block_len = em->len;
31310257bb82SYan, Zheng 	em->block_start = block_start;
31325d4f98a2SYan Zheng 	em->bdev = root->fs_info->fs_devices->latest_bdev;
31335d4f98a2SYan Zheng 	set_bit(EXTENT_FLAG_PINNED, &em->flags);
31345d4f98a2SYan Zheng 
3135d0082371SJeff Mahoney 	lock_extent(&BTRFS_I(inode)->io_tree, start, end);
31365d4f98a2SYan Zheng 	while (1) {
3137890871beSChris Mason 		write_lock(&em_tree->lock);
313809a2a8f9SJosef Bacik 		ret = add_extent_mapping(em_tree, em, 0);
3139890871beSChris Mason 		write_unlock(&em_tree->lock);
31405d4f98a2SYan Zheng 		if (ret != -EEXIST) {
31415d4f98a2SYan Zheng 			free_extent_map(em);
31425d4f98a2SYan Zheng 			break;
31435d4f98a2SYan Zheng 		}
31445d4f98a2SYan Zheng 		btrfs_drop_extent_cache(inode, start, end, 0);
31455d4f98a2SYan Zheng 	}
3146d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
31470257bb82SYan, Zheng 	return ret;
31480257bb82SYan, Zheng }
31495d4f98a2SYan Zheng 
31500257bb82SYan, Zheng static int relocate_file_extent_cluster(struct inode *inode,
31510257bb82SYan, Zheng 					struct file_extent_cluster *cluster)
31520257bb82SYan, Zheng {
31530257bb82SYan, Zheng 	u64 page_start;
31540257bb82SYan, Zheng 	u64 page_end;
31550257bb82SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
31560257bb82SYan, Zheng 	unsigned long index;
31570257bb82SYan, Zheng 	unsigned long last_index;
31580257bb82SYan, Zheng 	struct page *page;
31590257bb82SYan, Zheng 	struct file_ra_state *ra;
31603b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
31610257bb82SYan, Zheng 	int nr = 0;
31620257bb82SYan, Zheng 	int ret = 0;
31630257bb82SYan, Zheng 
31640257bb82SYan, Zheng 	if (!cluster->nr)
31650257bb82SYan, Zheng 		return 0;
31660257bb82SYan, Zheng 
31670257bb82SYan, Zheng 	ra = kzalloc(sizeof(*ra), GFP_NOFS);
31680257bb82SYan, Zheng 	if (!ra)
31690257bb82SYan, Zheng 		return -ENOMEM;
31700257bb82SYan, Zheng 
3171efa56464SYan, Zheng 	ret = prealloc_file_extent_cluster(inode, cluster);
31720257bb82SYan, Zheng 	if (ret)
3173efa56464SYan, Zheng 		goto out;
31740257bb82SYan, Zheng 
31750257bb82SYan, Zheng 	file_ra_state_init(ra, inode->i_mapping);
31760257bb82SYan, Zheng 
3177efa56464SYan, Zheng 	ret = setup_extent_mapping(inode, cluster->start - offset,
3178efa56464SYan, Zheng 				   cluster->end - offset, cluster->start);
3179efa56464SYan, Zheng 	if (ret)
3180efa56464SYan, Zheng 		goto out;
3181efa56464SYan, Zheng 
318209cbfeafSKirill A. Shutemov 	index = (cluster->start - offset) >> PAGE_SHIFT;
318309cbfeafSKirill A. Shutemov 	last_index = (cluster->end - offset) >> PAGE_SHIFT;
31840257bb82SYan, Zheng 	while (index <= last_index) {
318509cbfeafSKirill A. Shutemov 		ret = btrfs_delalloc_reserve_metadata(inode, PAGE_SIZE);
3186efa56464SYan, Zheng 		if (ret)
3187efa56464SYan, Zheng 			goto out;
3188efa56464SYan, Zheng 
31890257bb82SYan, Zheng 		page = find_lock_page(inode->i_mapping, index);
31900257bb82SYan, Zheng 		if (!page) {
31910257bb82SYan, Zheng 			page_cache_sync_readahead(inode->i_mapping,
31920257bb82SYan, Zheng 						  ra, NULL, index,
31930257bb82SYan, Zheng 						  last_index + 1 - index);
3194a94733d0SJosef Bacik 			page = find_or_create_page(inode->i_mapping, index,
31953b16a4e3SJosef Bacik 						   mask);
31960257bb82SYan, Zheng 			if (!page) {
3197efa56464SYan, Zheng 				btrfs_delalloc_release_metadata(inode,
319809cbfeafSKirill A. Shutemov 							PAGE_SIZE);
31990257bb82SYan, Zheng 				ret = -ENOMEM;
3200efa56464SYan, Zheng 				goto out;
32010257bb82SYan, Zheng 			}
32020257bb82SYan, Zheng 		}
32030257bb82SYan, Zheng 
32040257bb82SYan, Zheng 		if (PageReadahead(page)) {
32050257bb82SYan, Zheng 			page_cache_async_readahead(inode->i_mapping,
32060257bb82SYan, Zheng 						   ra, NULL, page, index,
32070257bb82SYan, Zheng 						   last_index + 1 - index);
32080257bb82SYan, Zheng 		}
32090257bb82SYan, Zheng 
32100257bb82SYan, Zheng 		if (!PageUptodate(page)) {
32110257bb82SYan, Zheng 			btrfs_readpage(NULL, page);
32120257bb82SYan, Zheng 			lock_page(page);
32130257bb82SYan, Zheng 			if (!PageUptodate(page)) {
32140257bb82SYan, Zheng 				unlock_page(page);
321509cbfeafSKirill A. Shutemov 				put_page(page);
3216efa56464SYan, Zheng 				btrfs_delalloc_release_metadata(inode,
321709cbfeafSKirill A. Shutemov 							PAGE_SIZE);
32180257bb82SYan, Zheng 				ret = -EIO;
3219efa56464SYan, Zheng 				goto out;
32200257bb82SYan, Zheng 			}
32210257bb82SYan, Zheng 		}
32220257bb82SYan, Zheng 
32234eee4fa4SMiao Xie 		page_start = page_offset(page);
322409cbfeafSKirill A. Shutemov 		page_end = page_start + PAGE_SIZE - 1;
32250257bb82SYan, Zheng 
3226d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
32270257bb82SYan, Zheng 
32280257bb82SYan, Zheng 		set_page_extent_mapped(page);
32290257bb82SYan, Zheng 
32300257bb82SYan, Zheng 		if (nr < cluster->nr &&
32310257bb82SYan, Zheng 		    page_start + offset == cluster->boundary[nr]) {
32320257bb82SYan, Zheng 			set_extent_bits(&BTRFS_I(inode)->io_tree,
32330257bb82SYan, Zheng 					page_start, page_end,
3234ceeb0ae7SDavid Sterba 					EXTENT_BOUNDARY);
32350257bb82SYan, Zheng 			nr++;
32360257bb82SYan, Zheng 		}
32370257bb82SYan, Zheng 
3238ba8b04c1SQu Wenruo 		btrfs_set_extent_delalloc(inode, page_start, page_end, NULL, 0);
32390257bb82SYan, Zheng 		set_page_dirty(page);
32400257bb82SYan, Zheng 
32410257bb82SYan, Zheng 		unlock_extent(&BTRFS_I(inode)->io_tree,
3242d0082371SJeff Mahoney 			      page_start, page_end);
32430257bb82SYan, Zheng 		unlock_page(page);
324409cbfeafSKirill A. Shutemov 		put_page(page);
32450257bb82SYan, Zheng 
32460257bb82SYan, Zheng 		index++;
3247efa56464SYan, Zheng 		balance_dirty_pages_ratelimited(inode->i_mapping);
3248efa56464SYan, Zheng 		btrfs_throttle(BTRFS_I(inode)->root);
32490257bb82SYan, Zheng 	}
32500257bb82SYan, Zheng 	WARN_ON(nr != cluster->nr);
3251efa56464SYan, Zheng out:
32520257bb82SYan, Zheng 	kfree(ra);
32530257bb82SYan, Zheng 	return ret;
32540257bb82SYan, Zheng }
32550257bb82SYan, Zheng 
32560257bb82SYan, Zheng static noinline_for_stack
32570257bb82SYan, Zheng int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
32580257bb82SYan, Zheng 			 struct file_extent_cluster *cluster)
32590257bb82SYan, Zheng {
32600257bb82SYan, Zheng 	int ret;
32610257bb82SYan, Zheng 
32620257bb82SYan, Zheng 	if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
32630257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32640257bb82SYan, Zheng 		if (ret)
32650257bb82SYan, Zheng 			return ret;
32660257bb82SYan, Zheng 		cluster->nr = 0;
32670257bb82SYan, Zheng 	}
32680257bb82SYan, Zheng 
32690257bb82SYan, Zheng 	if (!cluster->nr)
32700257bb82SYan, Zheng 		cluster->start = extent_key->objectid;
32710257bb82SYan, Zheng 	else
32720257bb82SYan, Zheng 		BUG_ON(cluster->nr >= MAX_EXTENTS);
32730257bb82SYan, Zheng 	cluster->end = extent_key->objectid + extent_key->offset - 1;
32740257bb82SYan, Zheng 	cluster->boundary[cluster->nr] = extent_key->objectid;
32750257bb82SYan, Zheng 	cluster->nr++;
32760257bb82SYan, Zheng 
32770257bb82SYan, Zheng 	if (cluster->nr >= MAX_EXTENTS) {
32780257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32790257bb82SYan, Zheng 		if (ret)
32800257bb82SYan, Zheng 			return ret;
32810257bb82SYan, Zheng 		cluster->nr = 0;
32820257bb82SYan, Zheng 	}
32830257bb82SYan, Zheng 	return 0;
32845d4f98a2SYan Zheng }
32855d4f98a2SYan Zheng 
32865d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
32875d4f98a2SYan Zheng static int get_ref_objectid_v0(struct reloc_control *rc,
32885d4f98a2SYan Zheng 			       struct btrfs_path *path,
32895d4f98a2SYan Zheng 			       struct btrfs_key *extent_key,
32905d4f98a2SYan Zheng 			       u64 *ref_objectid, int *path_change)
32915d4f98a2SYan Zheng {
32925d4f98a2SYan Zheng 	struct btrfs_key key;
32935d4f98a2SYan Zheng 	struct extent_buffer *leaf;
32945d4f98a2SYan Zheng 	struct btrfs_extent_ref_v0 *ref0;
32955d4f98a2SYan Zheng 	int ret;
32965d4f98a2SYan Zheng 	int slot;
32975d4f98a2SYan Zheng 
32985d4f98a2SYan Zheng 	leaf = path->nodes[0];
32995d4f98a2SYan Zheng 	slot = path->slots[0];
33005d4f98a2SYan Zheng 	while (1) {
33015d4f98a2SYan Zheng 		if (slot >= btrfs_header_nritems(leaf)) {
33025d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
33035d4f98a2SYan Zheng 			if (ret < 0)
33045d4f98a2SYan Zheng 				return ret;
33055d4f98a2SYan Zheng 			BUG_ON(ret > 0);
33065d4f98a2SYan Zheng 			leaf = path->nodes[0];
33075d4f98a2SYan Zheng 			slot = path->slots[0];
33085d4f98a2SYan Zheng 			if (path_change)
33095d4f98a2SYan Zheng 				*path_change = 1;
33105d4f98a2SYan Zheng 		}
33115d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, slot);
33125d4f98a2SYan Zheng 		if (key.objectid != extent_key->objectid)
33135d4f98a2SYan Zheng 			return -ENOENT;
33145d4f98a2SYan Zheng 
33155d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_REF_V0_KEY) {
33165d4f98a2SYan Zheng 			slot++;
33175d4f98a2SYan Zheng 			continue;
33185d4f98a2SYan Zheng 		}
33195d4f98a2SYan Zheng 		ref0 = btrfs_item_ptr(leaf, slot,
33205d4f98a2SYan Zheng 				struct btrfs_extent_ref_v0);
33215d4f98a2SYan Zheng 		*ref_objectid = btrfs_ref_objectid_v0(leaf, ref0);
33225d4f98a2SYan Zheng 		break;
33235d4f98a2SYan Zheng 	}
33245d4f98a2SYan Zheng 	return 0;
33255d4f98a2SYan Zheng }
33265d4f98a2SYan Zheng #endif
33275d4f98a2SYan Zheng 
33285d4f98a2SYan Zheng /*
33295d4f98a2SYan Zheng  * helper to add a tree block to the list.
33305d4f98a2SYan Zheng  * the major work is getting the generation and level of the block
33315d4f98a2SYan Zheng  */
33325d4f98a2SYan Zheng static int add_tree_block(struct reloc_control *rc,
33335d4f98a2SYan Zheng 			  struct btrfs_key *extent_key,
33345d4f98a2SYan Zheng 			  struct btrfs_path *path,
33355d4f98a2SYan Zheng 			  struct rb_root *blocks)
33365d4f98a2SYan Zheng {
33375d4f98a2SYan Zheng 	struct extent_buffer *eb;
33385d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
33395d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
33405d4f98a2SYan Zheng 	struct tree_block *block;
33415d4f98a2SYan Zheng 	struct rb_node *rb_node;
33425d4f98a2SYan Zheng 	u32 item_size;
33435d4f98a2SYan Zheng 	int level = -1;
33447fdf4b60SWang Shilong 	u64 generation;
33455d4f98a2SYan Zheng 
33465d4f98a2SYan Zheng 	eb =  path->nodes[0];
33475d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(eb, path->slots[0]);
33485d4f98a2SYan Zheng 
33493173a18fSJosef Bacik 	if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
33503173a18fSJosef Bacik 	    item_size >= sizeof(*ei) + sizeof(*bi)) {
33515d4f98a2SYan Zheng 		ei = btrfs_item_ptr(eb, path->slots[0],
33525d4f98a2SYan Zheng 				struct btrfs_extent_item);
33533173a18fSJosef Bacik 		if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
33545d4f98a2SYan Zheng 			bi = (struct btrfs_tree_block_info *)(ei + 1);
33555d4f98a2SYan Zheng 			level = btrfs_tree_block_level(eb, bi);
33565d4f98a2SYan Zheng 		} else {
33573173a18fSJosef Bacik 			level = (int)extent_key->offset;
33583173a18fSJosef Bacik 		}
33593173a18fSJosef Bacik 		generation = btrfs_extent_generation(eb, ei);
33603173a18fSJosef Bacik 	} else {
33615d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
33625d4f98a2SYan Zheng 		u64 ref_owner;
33635d4f98a2SYan Zheng 		int ret;
33645d4f98a2SYan Zheng 
33655d4f98a2SYan Zheng 		BUG_ON(item_size != sizeof(struct btrfs_extent_item_v0));
33665d4f98a2SYan Zheng 		ret = get_ref_objectid_v0(rc, path, extent_key,
33675d4f98a2SYan Zheng 					  &ref_owner, NULL);
3368411fc6bcSAndi Kleen 		if (ret < 0)
3369411fc6bcSAndi Kleen 			return ret;
33705d4f98a2SYan Zheng 		BUG_ON(ref_owner >= BTRFS_MAX_LEVEL);
33715d4f98a2SYan Zheng 		level = (int)ref_owner;
33725d4f98a2SYan Zheng 		/* FIXME: get real generation */
33735d4f98a2SYan Zheng 		generation = 0;
33745d4f98a2SYan Zheng #else
33755d4f98a2SYan Zheng 		BUG();
33765d4f98a2SYan Zheng #endif
33775d4f98a2SYan Zheng 	}
33785d4f98a2SYan Zheng 
3379b3b4aa74SDavid Sterba 	btrfs_release_path(path);
33805d4f98a2SYan Zheng 
33815d4f98a2SYan Zheng 	BUG_ON(level == -1);
33825d4f98a2SYan Zheng 
33835d4f98a2SYan Zheng 	block = kmalloc(sizeof(*block), GFP_NOFS);
33845d4f98a2SYan Zheng 	if (!block)
33855d4f98a2SYan Zheng 		return -ENOMEM;
33865d4f98a2SYan Zheng 
33875d4f98a2SYan Zheng 	block->bytenr = extent_key->objectid;
3388707e8a07SDavid Sterba 	block->key.objectid = rc->extent_root->nodesize;
33895d4f98a2SYan Zheng 	block->key.offset = generation;
33905d4f98a2SYan Zheng 	block->level = level;
33915d4f98a2SYan Zheng 	block->key_ready = 0;
33925d4f98a2SYan Zheng 
33935d4f98a2SYan Zheng 	rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
339443c04fb1SJeff Mahoney 	if (rb_node)
339543c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, block->bytenr);
33965d4f98a2SYan Zheng 
33975d4f98a2SYan Zheng 	return 0;
33985d4f98a2SYan Zheng }
33995d4f98a2SYan Zheng 
34005d4f98a2SYan Zheng /*
34015d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
34025d4f98a2SYan Zheng  */
34035d4f98a2SYan Zheng static int __add_tree_block(struct reloc_control *rc,
34045d4f98a2SYan Zheng 			    u64 bytenr, u32 blocksize,
34055d4f98a2SYan Zheng 			    struct rb_root *blocks)
34065d4f98a2SYan Zheng {
34075d4f98a2SYan Zheng 	struct btrfs_path *path;
34085d4f98a2SYan Zheng 	struct btrfs_key key;
34095d4f98a2SYan Zheng 	int ret;
3410aee68ee5SJosef Bacik 	bool skinny = btrfs_fs_incompat(rc->extent_root->fs_info,
3411aee68ee5SJosef Bacik 					SKINNY_METADATA);
34125d4f98a2SYan Zheng 
34137476dfdaSDavid Sterba 	if (tree_block_processed(bytenr, rc))
34145d4f98a2SYan Zheng 		return 0;
34155d4f98a2SYan Zheng 
34165d4f98a2SYan Zheng 	if (tree_search(blocks, bytenr))
34175d4f98a2SYan Zheng 		return 0;
34185d4f98a2SYan Zheng 
34195d4f98a2SYan Zheng 	path = btrfs_alloc_path();
34205d4f98a2SYan Zheng 	if (!path)
34215d4f98a2SYan Zheng 		return -ENOMEM;
3422aee68ee5SJosef Bacik again:
34235d4f98a2SYan Zheng 	key.objectid = bytenr;
3424aee68ee5SJosef Bacik 	if (skinny) {
3425aee68ee5SJosef Bacik 		key.type = BTRFS_METADATA_ITEM_KEY;
3426aee68ee5SJosef Bacik 		key.offset = (u64)-1;
3427aee68ee5SJosef Bacik 	} else {
34285d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
34295d4f98a2SYan Zheng 		key.offset = blocksize;
3430aee68ee5SJosef Bacik 	}
34315d4f98a2SYan Zheng 
34325d4f98a2SYan Zheng 	path->search_commit_root = 1;
34335d4f98a2SYan Zheng 	path->skip_locking = 1;
34345d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
34355d4f98a2SYan Zheng 	if (ret < 0)
34365d4f98a2SYan Zheng 		goto out;
34375d4f98a2SYan Zheng 
3438aee68ee5SJosef Bacik 	if (ret > 0 && skinny) {
3439aee68ee5SJosef Bacik 		if (path->slots[0]) {
3440aee68ee5SJosef Bacik 			path->slots[0]--;
3441aee68ee5SJosef Bacik 			btrfs_item_key_to_cpu(path->nodes[0], &key,
3442aee68ee5SJosef Bacik 					      path->slots[0]);
34433173a18fSJosef Bacik 			if (key.objectid == bytenr &&
3444aee68ee5SJosef Bacik 			    (key.type == BTRFS_METADATA_ITEM_KEY ||
3445aee68ee5SJosef Bacik 			     (key.type == BTRFS_EXTENT_ITEM_KEY &&
3446aee68ee5SJosef Bacik 			      key.offset == blocksize)))
34473173a18fSJosef Bacik 				ret = 0;
34483173a18fSJosef Bacik 		}
3449aee68ee5SJosef Bacik 
3450aee68ee5SJosef Bacik 		if (ret) {
3451aee68ee5SJosef Bacik 			skinny = false;
3452aee68ee5SJosef Bacik 			btrfs_release_path(path);
3453aee68ee5SJosef Bacik 			goto again;
3454aee68ee5SJosef Bacik 		}
3455aee68ee5SJosef Bacik 	}
34563173a18fSJosef Bacik 	BUG_ON(ret);
34573173a18fSJosef Bacik 
34585d4f98a2SYan Zheng 	ret = add_tree_block(rc, &key, path, blocks);
34595d4f98a2SYan Zheng out:
34605d4f98a2SYan Zheng 	btrfs_free_path(path);
34615d4f98a2SYan Zheng 	return ret;
34625d4f98a2SYan Zheng }
34635d4f98a2SYan Zheng 
34645d4f98a2SYan Zheng /*
34655d4f98a2SYan Zheng  * helper to check if the block use full backrefs for pointers in it
34665d4f98a2SYan Zheng  */
34675d4f98a2SYan Zheng static int block_use_full_backref(struct reloc_control *rc,
34685d4f98a2SYan Zheng 				  struct extent_buffer *eb)
34695d4f98a2SYan Zheng {
34705d4f98a2SYan Zheng 	u64 flags;
34715d4f98a2SYan Zheng 	int ret;
34725d4f98a2SYan Zheng 
34735d4f98a2SYan Zheng 	if (btrfs_header_flag(eb, BTRFS_HEADER_FLAG_RELOC) ||
34745d4f98a2SYan Zheng 	    btrfs_header_backref_rev(eb) < BTRFS_MIXED_BACKREF_REV)
34755d4f98a2SYan Zheng 		return 1;
34765d4f98a2SYan Zheng 
34773fd0a558SYan, Zheng 	ret = btrfs_lookup_extent_info(NULL, rc->extent_root,
34783173a18fSJosef Bacik 				       eb->start, btrfs_header_level(eb), 1,
34793173a18fSJosef Bacik 				       NULL, &flags);
34805d4f98a2SYan Zheng 	BUG_ON(ret);
34815d4f98a2SYan Zheng 
34825d4f98a2SYan Zheng 	if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
34835d4f98a2SYan Zheng 		ret = 1;
34845d4f98a2SYan Zheng 	else
34855d4f98a2SYan Zheng 		ret = 0;
34865d4f98a2SYan Zheng 	return ret;
34875d4f98a2SYan Zheng }
34885d4f98a2SYan Zheng 
34890af3d00bSJosef Bacik static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
34901bbc621eSChris Mason 				    struct btrfs_block_group_cache *block_group,
34911bbc621eSChris Mason 				    struct inode *inode,
34921bbc621eSChris Mason 				    u64 ino)
34930af3d00bSJosef Bacik {
34940af3d00bSJosef Bacik 	struct btrfs_key key;
34950af3d00bSJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
34960af3d00bSJosef Bacik 	struct btrfs_trans_handle *trans;
34970af3d00bSJosef Bacik 	int ret = 0;
34980af3d00bSJosef Bacik 
34990af3d00bSJosef Bacik 	if (inode)
35000af3d00bSJosef Bacik 		goto truncate;
35010af3d00bSJosef Bacik 
35020af3d00bSJosef Bacik 	key.objectid = ino;
35030af3d00bSJosef Bacik 	key.type = BTRFS_INODE_ITEM_KEY;
35040af3d00bSJosef Bacik 	key.offset = 0;
35050af3d00bSJosef Bacik 
35060af3d00bSJosef Bacik 	inode = btrfs_iget(fs_info->sb, &key, root, NULL);
3507f54fb859STsutomu Itoh 	if (IS_ERR(inode) || is_bad_inode(inode)) {
3508f54fb859STsutomu Itoh 		if (!IS_ERR(inode))
35090af3d00bSJosef Bacik 			iput(inode);
35100af3d00bSJosef Bacik 		return -ENOENT;
35110af3d00bSJosef Bacik 	}
35120af3d00bSJosef Bacik 
35130af3d00bSJosef Bacik truncate:
35147b61cd92SMiao Xie 	ret = btrfs_check_trunc_cache_free_space(root,
35157b61cd92SMiao Xie 						 &fs_info->global_block_rsv);
35167b61cd92SMiao Xie 	if (ret)
35177b61cd92SMiao Xie 		goto out;
35187b61cd92SMiao Xie 
35197a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
35200af3d00bSJosef Bacik 	if (IS_ERR(trans)) {
35213612b495STsutomu Itoh 		ret = PTR_ERR(trans);
35220af3d00bSJosef Bacik 		goto out;
35230af3d00bSJosef Bacik 	}
35240af3d00bSJosef Bacik 
35251bbc621eSChris Mason 	ret = btrfs_truncate_free_space_cache(root, trans, block_group, inode);
35260af3d00bSJosef Bacik 
35270af3d00bSJosef Bacik 	btrfs_end_transaction(trans, root);
3528b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
35290af3d00bSJosef Bacik out:
35300af3d00bSJosef Bacik 	iput(inode);
35310af3d00bSJosef Bacik 	return ret;
35320af3d00bSJosef Bacik }
35330af3d00bSJosef Bacik 
35345d4f98a2SYan Zheng /*
35355d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_EXTENT_DATA_REF_KEY
35365d4f98a2SYan Zheng  * this function scans fs tree to find blocks reference the data extent
35375d4f98a2SYan Zheng  */
35385d4f98a2SYan Zheng static int find_data_references(struct reloc_control *rc,
35395d4f98a2SYan Zheng 				struct btrfs_key *extent_key,
35405d4f98a2SYan Zheng 				struct extent_buffer *leaf,
35415d4f98a2SYan Zheng 				struct btrfs_extent_data_ref *ref,
35425d4f98a2SYan Zheng 				struct rb_root *blocks)
35435d4f98a2SYan Zheng {
35445d4f98a2SYan Zheng 	struct btrfs_path *path;
35455d4f98a2SYan Zheng 	struct tree_block *block;
35465d4f98a2SYan Zheng 	struct btrfs_root *root;
35475d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
35485d4f98a2SYan Zheng 	struct rb_node *rb_node;
35495d4f98a2SYan Zheng 	struct btrfs_key key;
35505d4f98a2SYan Zheng 	u64 ref_root;
35515d4f98a2SYan Zheng 	u64 ref_objectid;
35525d4f98a2SYan Zheng 	u64 ref_offset;
35535d4f98a2SYan Zheng 	u32 ref_count;
35545d4f98a2SYan Zheng 	u32 nritems;
35555d4f98a2SYan Zheng 	int err = 0;
35565d4f98a2SYan Zheng 	int added = 0;
35575d4f98a2SYan Zheng 	int counted;
35585d4f98a2SYan Zheng 	int ret;
35595d4f98a2SYan Zheng 
35605d4f98a2SYan Zheng 	ref_root = btrfs_extent_data_ref_root(leaf, ref);
35615d4f98a2SYan Zheng 	ref_objectid = btrfs_extent_data_ref_objectid(leaf, ref);
35625d4f98a2SYan Zheng 	ref_offset = btrfs_extent_data_ref_offset(leaf, ref);
35635d4f98a2SYan Zheng 	ref_count = btrfs_extent_data_ref_count(leaf, ref);
35645d4f98a2SYan Zheng 
35650af3d00bSJosef Bacik 	/*
35660af3d00bSJosef Bacik 	 * This is an extent belonging to the free space cache, lets just delete
35670af3d00bSJosef Bacik 	 * it and redo the search.
35680af3d00bSJosef Bacik 	 */
35690af3d00bSJosef Bacik 	if (ref_root == BTRFS_ROOT_TREE_OBJECTID) {
35700af3d00bSJosef Bacik 		ret = delete_block_group_cache(rc->extent_root->fs_info,
35711bbc621eSChris Mason 					       rc->block_group,
35720af3d00bSJosef Bacik 					       NULL, ref_objectid);
35730af3d00bSJosef Bacik 		if (ret != -ENOENT)
35740af3d00bSJosef Bacik 			return ret;
35750af3d00bSJosef Bacik 		ret = 0;
35760af3d00bSJosef Bacik 	}
35770af3d00bSJosef Bacik 
35780af3d00bSJosef Bacik 	path = btrfs_alloc_path();
35790af3d00bSJosef Bacik 	if (!path)
35800af3d00bSJosef Bacik 		return -ENOMEM;
3581e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
35820af3d00bSJosef Bacik 
35835d4f98a2SYan Zheng 	root = read_fs_root(rc->extent_root->fs_info, ref_root);
35845d4f98a2SYan Zheng 	if (IS_ERR(root)) {
35855d4f98a2SYan Zheng 		err = PTR_ERR(root);
35865d4f98a2SYan Zheng 		goto out;
35875d4f98a2SYan Zheng 	}
35885d4f98a2SYan Zheng 
35895d4f98a2SYan Zheng 	key.objectid = ref_objectid;
35905d4f98a2SYan Zheng 	key.type = BTRFS_EXTENT_DATA_KEY;
359184850e8dSYan, Zheng 	if (ref_offset > ((u64)-1 << 32))
359284850e8dSYan, Zheng 		key.offset = 0;
359384850e8dSYan, Zheng 	else
359484850e8dSYan, Zheng 		key.offset = ref_offset;
35955d4f98a2SYan Zheng 
35965d4f98a2SYan Zheng 	path->search_commit_root = 1;
35975d4f98a2SYan Zheng 	path->skip_locking = 1;
35985d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
35995d4f98a2SYan Zheng 	if (ret < 0) {
36005d4f98a2SYan Zheng 		err = ret;
36015d4f98a2SYan Zheng 		goto out;
36025d4f98a2SYan Zheng 	}
36035d4f98a2SYan Zheng 
36045d4f98a2SYan Zheng 	leaf = path->nodes[0];
36055d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
36065d4f98a2SYan Zheng 	/*
36075d4f98a2SYan Zheng 	 * the references in tree blocks that use full backrefs
36085d4f98a2SYan Zheng 	 * are not counted in
36095d4f98a2SYan Zheng 	 */
36105d4f98a2SYan Zheng 	if (block_use_full_backref(rc, leaf))
36115d4f98a2SYan Zheng 		counted = 0;
36125d4f98a2SYan Zheng 	else
36135d4f98a2SYan Zheng 		counted = 1;
36145d4f98a2SYan Zheng 	rb_node = tree_search(blocks, leaf->start);
36155d4f98a2SYan Zheng 	if (rb_node) {
36165d4f98a2SYan Zheng 		if (counted)
36175d4f98a2SYan Zheng 			added = 1;
36185d4f98a2SYan Zheng 		else
36195d4f98a2SYan Zheng 			path->slots[0] = nritems;
36205d4f98a2SYan Zheng 	}
36215d4f98a2SYan Zheng 
36225d4f98a2SYan Zheng 	while (ref_count > 0) {
36235d4f98a2SYan Zheng 		while (path->slots[0] >= nritems) {
36245d4f98a2SYan Zheng 			ret = btrfs_next_leaf(root, path);
36255d4f98a2SYan Zheng 			if (ret < 0) {
36265d4f98a2SYan Zheng 				err = ret;
36275d4f98a2SYan Zheng 				goto out;
36285d4f98a2SYan Zheng 			}
3629fae7f21cSDulshani Gunawardhana 			if (WARN_ON(ret > 0))
36305d4f98a2SYan Zheng 				goto out;
36315d4f98a2SYan Zheng 
36325d4f98a2SYan Zheng 			leaf = path->nodes[0];
36335d4f98a2SYan Zheng 			nritems = btrfs_header_nritems(leaf);
36345d4f98a2SYan Zheng 			added = 0;
36355d4f98a2SYan Zheng 
36365d4f98a2SYan Zheng 			if (block_use_full_backref(rc, leaf))
36375d4f98a2SYan Zheng 				counted = 0;
36385d4f98a2SYan Zheng 			else
36395d4f98a2SYan Zheng 				counted = 1;
36405d4f98a2SYan Zheng 			rb_node = tree_search(blocks, leaf->start);
36415d4f98a2SYan Zheng 			if (rb_node) {
36425d4f98a2SYan Zheng 				if (counted)
36435d4f98a2SYan Zheng 					added = 1;
36445d4f98a2SYan Zheng 				else
36455d4f98a2SYan Zheng 					path->slots[0] = nritems;
36465d4f98a2SYan Zheng 			}
36475d4f98a2SYan Zheng 		}
36485d4f98a2SYan Zheng 
36495d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3650fae7f21cSDulshani Gunawardhana 		if (WARN_ON(key.objectid != ref_objectid ||
3651fae7f21cSDulshani Gunawardhana 		    key.type != BTRFS_EXTENT_DATA_KEY))
36525d4f98a2SYan Zheng 			break;
36535d4f98a2SYan Zheng 
36545d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, path->slots[0],
36555d4f98a2SYan Zheng 				    struct btrfs_file_extent_item);
36565d4f98a2SYan Zheng 
36575d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
36585d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
36595d4f98a2SYan Zheng 			goto next;
36605d4f98a2SYan Zheng 
36615d4f98a2SYan Zheng 		if (btrfs_file_extent_disk_bytenr(leaf, fi) !=
36625d4f98a2SYan Zheng 		    extent_key->objectid)
36635d4f98a2SYan Zheng 			goto next;
36645d4f98a2SYan Zheng 
36655d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
36665d4f98a2SYan Zheng 		if (key.offset != ref_offset)
36675d4f98a2SYan Zheng 			goto next;
36685d4f98a2SYan Zheng 
36695d4f98a2SYan Zheng 		if (counted)
36705d4f98a2SYan Zheng 			ref_count--;
36715d4f98a2SYan Zheng 		if (added)
36725d4f98a2SYan Zheng 			goto next;
36735d4f98a2SYan Zheng 
36747476dfdaSDavid Sterba 		if (!tree_block_processed(leaf->start, rc)) {
36755d4f98a2SYan Zheng 			block = kmalloc(sizeof(*block), GFP_NOFS);
36765d4f98a2SYan Zheng 			if (!block) {
36775d4f98a2SYan Zheng 				err = -ENOMEM;
36785d4f98a2SYan Zheng 				break;
36795d4f98a2SYan Zheng 			}
36805d4f98a2SYan Zheng 			block->bytenr = leaf->start;
36815d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(leaf, &block->key, 0);
36825d4f98a2SYan Zheng 			block->level = 0;
36835d4f98a2SYan Zheng 			block->key_ready = 1;
36845d4f98a2SYan Zheng 			rb_node = tree_insert(blocks, block->bytenr,
36855d4f98a2SYan Zheng 					      &block->rb_node);
368643c04fb1SJeff Mahoney 			if (rb_node)
368743c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
368843c04fb1SJeff Mahoney 						   block->bytenr);
36895d4f98a2SYan Zheng 		}
36905d4f98a2SYan Zheng 		if (counted)
36915d4f98a2SYan Zheng 			added = 1;
36925d4f98a2SYan Zheng 		else
36935d4f98a2SYan Zheng 			path->slots[0] = nritems;
36945d4f98a2SYan Zheng next:
36955d4f98a2SYan Zheng 		path->slots[0]++;
36965d4f98a2SYan Zheng 
36975d4f98a2SYan Zheng 	}
36985d4f98a2SYan Zheng out:
36995d4f98a2SYan Zheng 	btrfs_free_path(path);
37005d4f98a2SYan Zheng 	return err;
37015d4f98a2SYan Zheng }
37025d4f98a2SYan Zheng 
37035d4f98a2SYan Zheng /*
37042c016dc2SLiu Bo  * helper to find all tree blocks that reference a given data extent
37055d4f98a2SYan Zheng  */
37065d4f98a2SYan Zheng static noinline_for_stack
37075d4f98a2SYan Zheng int add_data_references(struct reloc_control *rc,
37085d4f98a2SYan Zheng 			struct btrfs_key *extent_key,
37095d4f98a2SYan Zheng 			struct btrfs_path *path,
37105d4f98a2SYan Zheng 			struct rb_root *blocks)
37115d4f98a2SYan Zheng {
37125d4f98a2SYan Zheng 	struct btrfs_key key;
37135d4f98a2SYan Zheng 	struct extent_buffer *eb;
37145d4f98a2SYan Zheng 	struct btrfs_extent_data_ref *dref;
37155d4f98a2SYan Zheng 	struct btrfs_extent_inline_ref *iref;
37165d4f98a2SYan Zheng 	unsigned long ptr;
37175d4f98a2SYan Zheng 	unsigned long end;
3718707e8a07SDavid Sterba 	u32 blocksize = rc->extent_root->nodesize;
3719647f63bdSFilipe David Borba Manana 	int ret = 0;
37205d4f98a2SYan Zheng 	int err = 0;
37215d4f98a2SYan Zheng 
37225d4f98a2SYan Zheng 	eb = path->nodes[0];
37235d4f98a2SYan Zheng 	ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
37245d4f98a2SYan Zheng 	end = ptr + btrfs_item_size_nr(eb, path->slots[0]);
37255d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
37265d4f98a2SYan Zheng 	if (ptr + sizeof(struct btrfs_extent_item_v0) == end)
37275d4f98a2SYan Zheng 		ptr = end;
37285d4f98a2SYan Zheng 	else
37295d4f98a2SYan Zheng #endif
37305d4f98a2SYan Zheng 		ptr += sizeof(struct btrfs_extent_item);
37315d4f98a2SYan Zheng 
37325d4f98a2SYan Zheng 	while (ptr < end) {
37335d4f98a2SYan Zheng 		iref = (struct btrfs_extent_inline_ref *)ptr;
37345d4f98a2SYan Zheng 		key.type = btrfs_extent_inline_ref_type(eb, iref);
37355d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
37365d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
37375d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
37385d4f98a2SYan Zheng 					       blocks);
37395d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
37405d4f98a2SYan Zheng 			dref = (struct btrfs_extent_data_ref *)(&iref->offset);
37415d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
37425d4f98a2SYan Zheng 						   eb, dref, blocks);
37435d4f98a2SYan Zheng 		} else {
37445d4f98a2SYan Zheng 			BUG();
37455d4f98a2SYan Zheng 		}
3746647f63bdSFilipe David Borba Manana 		if (ret) {
3747647f63bdSFilipe David Borba Manana 			err = ret;
3748647f63bdSFilipe David Borba Manana 			goto out;
3749647f63bdSFilipe David Borba Manana 		}
37505d4f98a2SYan Zheng 		ptr += btrfs_extent_inline_ref_size(key.type);
37515d4f98a2SYan Zheng 	}
37525d4f98a2SYan Zheng 	WARN_ON(ptr > end);
37535d4f98a2SYan Zheng 
37545d4f98a2SYan Zheng 	while (1) {
37555d4f98a2SYan Zheng 		cond_resched();
37565d4f98a2SYan Zheng 		eb = path->nodes[0];
37575d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(eb)) {
37585d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
37595d4f98a2SYan Zheng 			if (ret < 0) {
37605d4f98a2SYan Zheng 				err = ret;
37615d4f98a2SYan Zheng 				break;
37625d4f98a2SYan Zheng 			}
37635d4f98a2SYan Zheng 			if (ret > 0)
37645d4f98a2SYan Zheng 				break;
37655d4f98a2SYan Zheng 			eb = path->nodes[0];
37665d4f98a2SYan Zheng 		}
37675d4f98a2SYan Zheng 
37685d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
37695d4f98a2SYan Zheng 		if (key.objectid != extent_key->objectid)
37705d4f98a2SYan Zheng 			break;
37715d4f98a2SYan Zheng 
37725d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
37735d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY ||
37745d4f98a2SYan Zheng 		    key.type == BTRFS_EXTENT_REF_V0_KEY) {
37755d4f98a2SYan Zheng #else
37765d4f98a2SYan Zheng 		BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
37775d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
37785d4f98a2SYan Zheng #endif
37795d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
37805d4f98a2SYan Zheng 					       blocks);
37815d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
37825d4f98a2SYan Zheng 			dref = btrfs_item_ptr(eb, path->slots[0],
37835d4f98a2SYan Zheng 					      struct btrfs_extent_data_ref);
37845d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
37855d4f98a2SYan Zheng 						   eb, dref, blocks);
37865d4f98a2SYan Zheng 		} else {
37875d4f98a2SYan Zheng 			ret = 0;
37885d4f98a2SYan Zheng 		}
37895d4f98a2SYan Zheng 		if (ret) {
37905d4f98a2SYan Zheng 			err = ret;
37915d4f98a2SYan Zheng 			break;
37925d4f98a2SYan Zheng 		}
37935d4f98a2SYan Zheng 		path->slots[0]++;
37945d4f98a2SYan Zheng 	}
3795647f63bdSFilipe David Borba Manana out:
3796b3b4aa74SDavid Sterba 	btrfs_release_path(path);
37975d4f98a2SYan Zheng 	if (err)
37985d4f98a2SYan Zheng 		free_block_list(blocks);
37995d4f98a2SYan Zheng 	return err;
38005d4f98a2SYan Zheng }
38015d4f98a2SYan Zheng 
38025d4f98a2SYan Zheng /*
38032c016dc2SLiu Bo  * helper to find next unprocessed extent
38045d4f98a2SYan Zheng  */
38055d4f98a2SYan Zheng static noinline_for_stack
3806147d256eSZhaolei int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
38073fd0a558SYan, Zheng 		     struct btrfs_key *extent_key)
38085d4f98a2SYan Zheng {
38095d4f98a2SYan Zheng 	struct btrfs_key key;
38105d4f98a2SYan Zheng 	struct extent_buffer *leaf;
38115d4f98a2SYan Zheng 	u64 start, end, last;
38125d4f98a2SYan Zheng 	int ret;
38135d4f98a2SYan Zheng 
38145d4f98a2SYan Zheng 	last = rc->block_group->key.objectid + rc->block_group->key.offset;
38155d4f98a2SYan Zheng 	while (1) {
38165d4f98a2SYan Zheng 		cond_resched();
38175d4f98a2SYan Zheng 		if (rc->search_start >= last) {
38185d4f98a2SYan Zheng 			ret = 1;
38195d4f98a2SYan Zheng 			break;
38205d4f98a2SYan Zheng 		}
38215d4f98a2SYan Zheng 
38225d4f98a2SYan Zheng 		key.objectid = rc->search_start;
38235d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
38245d4f98a2SYan Zheng 		key.offset = 0;
38255d4f98a2SYan Zheng 
38265d4f98a2SYan Zheng 		path->search_commit_root = 1;
38275d4f98a2SYan Zheng 		path->skip_locking = 1;
38285d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
38295d4f98a2SYan Zheng 					0, 0);
38305d4f98a2SYan Zheng 		if (ret < 0)
38315d4f98a2SYan Zheng 			break;
38325d4f98a2SYan Zheng next:
38335d4f98a2SYan Zheng 		leaf = path->nodes[0];
38345d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(leaf)) {
38355d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
38365d4f98a2SYan Zheng 			if (ret != 0)
38375d4f98a2SYan Zheng 				break;
38385d4f98a2SYan Zheng 			leaf = path->nodes[0];
38395d4f98a2SYan Zheng 		}
38405d4f98a2SYan Zheng 
38415d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
38425d4f98a2SYan Zheng 		if (key.objectid >= last) {
38435d4f98a2SYan Zheng 			ret = 1;
38445d4f98a2SYan Zheng 			break;
38455d4f98a2SYan Zheng 		}
38465d4f98a2SYan Zheng 
38473173a18fSJosef Bacik 		if (key.type != BTRFS_EXTENT_ITEM_KEY &&
38483173a18fSJosef Bacik 		    key.type != BTRFS_METADATA_ITEM_KEY) {
38493173a18fSJosef Bacik 			path->slots[0]++;
38503173a18fSJosef Bacik 			goto next;
38513173a18fSJosef Bacik 		}
38523173a18fSJosef Bacik 
38533173a18fSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY &&
38545d4f98a2SYan Zheng 		    key.objectid + key.offset <= rc->search_start) {
38555d4f98a2SYan Zheng 			path->slots[0]++;
38565d4f98a2SYan Zheng 			goto next;
38575d4f98a2SYan Zheng 		}
38585d4f98a2SYan Zheng 
38593173a18fSJosef Bacik 		if (key.type == BTRFS_METADATA_ITEM_KEY &&
3860707e8a07SDavid Sterba 		    key.objectid + rc->extent_root->nodesize <=
38613173a18fSJosef Bacik 		    rc->search_start) {
38623173a18fSJosef Bacik 			path->slots[0]++;
38633173a18fSJosef Bacik 			goto next;
38643173a18fSJosef Bacik 		}
38653173a18fSJosef Bacik 
38665d4f98a2SYan Zheng 		ret = find_first_extent_bit(&rc->processed_blocks,
38675d4f98a2SYan Zheng 					    key.objectid, &start, &end,
3868e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
38695d4f98a2SYan Zheng 
38705d4f98a2SYan Zheng 		if (ret == 0 && start <= key.objectid) {
3871b3b4aa74SDavid Sterba 			btrfs_release_path(path);
38725d4f98a2SYan Zheng 			rc->search_start = end + 1;
38735d4f98a2SYan Zheng 		} else {
38743173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY)
38755d4f98a2SYan Zheng 				rc->search_start = key.objectid + key.offset;
38763173a18fSJosef Bacik 			else
38773173a18fSJosef Bacik 				rc->search_start = key.objectid +
3878707e8a07SDavid Sterba 					rc->extent_root->nodesize;
38793fd0a558SYan, Zheng 			memcpy(extent_key, &key, sizeof(key));
38805d4f98a2SYan Zheng 			return 0;
38815d4f98a2SYan Zheng 		}
38825d4f98a2SYan Zheng 	}
3883b3b4aa74SDavid Sterba 	btrfs_release_path(path);
38845d4f98a2SYan Zheng 	return ret;
38855d4f98a2SYan Zheng }
38865d4f98a2SYan Zheng 
38875d4f98a2SYan Zheng static void set_reloc_control(struct reloc_control *rc)
38885d4f98a2SYan Zheng {
38895d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38907585717fSChris Mason 
38917585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38925d4f98a2SYan Zheng 	fs_info->reloc_ctl = rc;
38937585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38945d4f98a2SYan Zheng }
38955d4f98a2SYan Zheng 
38965d4f98a2SYan Zheng static void unset_reloc_control(struct reloc_control *rc)
38975d4f98a2SYan Zheng {
38985d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38997585717fSChris Mason 
39007585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
39015d4f98a2SYan Zheng 	fs_info->reloc_ctl = NULL;
39027585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
39035d4f98a2SYan Zheng }
39045d4f98a2SYan Zheng 
39055d4f98a2SYan Zheng static int check_extent_flags(u64 flags)
39065d4f98a2SYan Zheng {
39075d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
39085d4f98a2SYan Zheng 	    (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
39095d4f98a2SYan Zheng 		return 1;
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_BLOCK_FLAG_FULL_BACKREF))
39155d4f98a2SYan Zheng 		return 1;
39165d4f98a2SYan Zheng 	return 0;
39175d4f98a2SYan Zheng }
39185d4f98a2SYan Zheng 
39193fd0a558SYan, Zheng static noinline_for_stack
39203fd0a558SYan, Zheng int prepare_to_relocate(struct reloc_control *rc)
39213fd0a558SYan, Zheng {
39223fd0a558SYan, Zheng 	struct btrfs_trans_handle *trans;
3923ac2fabacSJosef Bacik 	int ret;
39243fd0a558SYan, Zheng 
392566d8f3ddSMiao Xie 	rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root,
392666d8f3ddSMiao Xie 					      BTRFS_BLOCK_RSV_TEMP);
39273fd0a558SYan, Zheng 	if (!rc->block_rsv)
39283fd0a558SYan, Zheng 		return -ENOMEM;
39293fd0a558SYan, Zheng 
39303fd0a558SYan, Zheng 	memset(&rc->cluster, 0, sizeof(rc->cluster));
39313fd0a558SYan, Zheng 	rc->search_start = rc->block_group->key.objectid;
39323fd0a558SYan, Zheng 	rc->extents_found = 0;
39333fd0a558SYan, Zheng 	rc->nodes_relocated = 0;
39343fd0a558SYan, Zheng 	rc->merging_rsv_size = 0;
39350647bf56SWang Shilong 	rc->reserved_bytes = 0;
39360647bf56SWang Shilong 	rc->block_rsv->size = rc->extent_root->nodesize *
39370647bf56SWang Shilong 			      RELOCATION_RESERVED_NODES;
3938ac2fabacSJosef Bacik 	ret = btrfs_block_rsv_refill(rc->extent_root,
3939ac2fabacSJosef Bacik 				     rc->block_rsv, rc->block_rsv->size,
3940ac2fabacSJosef Bacik 				     BTRFS_RESERVE_FLUSH_ALL);
3941ac2fabacSJosef Bacik 	if (ret)
3942ac2fabacSJosef Bacik 		return ret;
39433fd0a558SYan, Zheng 
39443fd0a558SYan, Zheng 	rc->create_reloc_tree = 1;
39453fd0a558SYan, Zheng 	set_reloc_control(rc);
39463fd0a558SYan, Zheng 
39477a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
394828818947SLiu Bo 	if (IS_ERR(trans)) {
394928818947SLiu Bo 		unset_reloc_control(rc);
395028818947SLiu Bo 		/*
395128818947SLiu Bo 		 * extent tree is not a ref_cow tree and has no reloc_root to
395228818947SLiu Bo 		 * cleanup.  And callers are responsible to free the above
395328818947SLiu Bo 		 * block rsv.
395428818947SLiu Bo 		 */
395528818947SLiu Bo 		return PTR_ERR(trans);
395628818947SLiu Bo 	}
39573fd0a558SYan, Zheng 	btrfs_commit_transaction(trans, rc->extent_root);
39583fd0a558SYan, Zheng 	return 0;
39593fd0a558SYan, Zheng }
396076dda93cSYan, Zheng 
396162b99540SQu Wenruo /*
396262b99540SQu Wenruo  * Qgroup fixer for data chunk relocation.
396362b99540SQu Wenruo  * The data relocation is done in the following steps
396462b99540SQu Wenruo  * 1) Copy data extents into data reloc tree
396562b99540SQu Wenruo  * 2) Create tree reloc tree(special snapshot) for related subvolumes
396662b99540SQu Wenruo  * 3) Modify file extents in tree reloc tree
396762b99540SQu Wenruo  * 4) Merge tree reloc tree with original fs tree, by swapping tree blocks
396862b99540SQu Wenruo  *
396962b99540SQu Wenruo  * The problem is, data and tree reloc tree are not accounted to qgroup,
397062b99540SQu Wenruo  * and 4) will only info qgroup to track tree blocks change, not file extents
397162b99540SQu Wenruo  * in the tree blocks.
397262b99540SQu Wenruo  *
397362b99540SQu Wenruo  * The good news is, related data extents are all in data reloc tree, so we
397462b99540SQu Wenruo  * only need to info qgroup to track all file extents in data reloc tree
397562b99540SQu Wenruo  * before commit trans.
397662b99540SQu Wenruo  */
397762b99540SQu Wenruo static int qgroup_fix_relocated_data_extents(struct btrfs_trans_handle *trans,
397862b99540SQu Wenruo 					     struct reloc_control *rc)
397962b99540SQu Wenruo {
398062b99540SQu Wenruo 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
398162b99540SQu Wenruo 	struct inode *inode = rc->data_inode;
398262b99540SQu Wenruo 	struct btrfs_root *data_reloc_root = BTRFS_I(inode)->root;
398362b99540SQu Wenruo 	struct btrfs_path *path;
398462b99540SQu Wenruo 	struct btrfs_key key;
398562b99540SQu Wenruo 	int ret = 0;
398662b99540SQu Wenruo 
3987afcdd129SJosef Bacik 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
398862b99540SQu Wenruo 		return 0;
398962b99540SQu Wenruo 
399062b99540SQu Wenruo 	/*
399162b99540SQu Wenruo 	 * Only for stage where we update data pointers the qgroup fix is
399262b99540SQu Wenruo 	 * valid.
399362b99540SQu Wenruo 	 * For MOVING_DATA stage, we will miss the timing of swapping tree
399462b99540SQu Wenruo 	 * blocks, and won't fix it.
399562b99540SQu Wenruo 	 */
399662b99540SQu Wenruo 	if (!(rc->stage == UPDATE_DATA_PTRS && rc->extents_found))
399762b99540SQu Wenruo 		return 0;
399862b99540SQu Wenruo 
399962b99540SQu Wenruo 	path = btrfs_alloc_path();
400062b99540SQu Wenruo 	if (!path)
400162b99540SQu Wenruo 		return -ENOMEM;
400262b99540SQu Wenruo 	key.objectid = btrfs_ino(inode);
400362b99540SQu Wenruo 	key.type = BTRFS_EXTENT_DATA_KEY;
400462b99540SQu Wenruo 	key.offset = 0;
400562b99540SQu Wenruo 
400662b99540SQu Wenruo 	ret = btrfs_search_slot(NULL, data_reloc_root, &key, path, 0, 0);
400762b99540SQu Wenruo 	if (ret < 0)
400862b99540SQu Wenruo 		goto out;
400962b99540SQu Wenruo 
401062b99540SQu Wenruo 	lock_extent(&BTRFS_I(inode)->io_tree, 0, (u64)-1);
401162b99540SQu Wenruo 	while (1) {
401262b99540SQu Wenruo 		struct btrfs_file_extent_item *fi;
401362b99540SQu Wenruo 
401462b99540SQu Wenruo 		btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
401562b99540SQu Wenruo 		if (key.objectid > btrfs_ino(inode))
401662b99540SQu Wenruo 			break;
401762b99540SQu Wenruo 		if (key.type != BTRFS_EXTENT_DATA_KEY)
401862b99540SQu Wenruo 			goto next;
401962b99540SQu Wenruo 		fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
402062b99540SQu Wenruo 				    struct btrfs_file_extent_item);
402162b99540SQu Wenruo 		if (btrfs_file_extent_type(path->nodes[0], fi) !=
402262b99540SQu Wenruo 				BTRFS_FILE_EXTENT_REG)
402362b99540SQu Wenruo 			goto next;
402462b99540SQu Wenruo 		ret = btrfs_qgroup_insert_dirty_extent(trans, fs_info,
402562b99540SQu Wenruo 			btrfs_file_extent_disk_bytenr(path->nodes[0], fi),
402662b99540SQu Wenruo 			btrfs_file_extent_disk_num_bytes(path->nodes[0], fi),
402762b99540SQu Wenruo 			GFP_NOFS);
402862b99540SQu Wenruo 		if (ret < 0)
402962b99540SQu Wenruo 			break;
403062b99540SQu Wenruo next:
403162b99540SQu Wenruo 		ret = btrfs_next_item(data_reloc_root, path);
403262b99540SQu Wenruo 		if (ret < 0)
403362b99540SQu Wenruo 			break;
403462b99540SQu Wenruo 		if (ret > 0) {
403562b99540SQu Wenruo 			ret = 0;
403662b99540SQu Wenruo 			break;
403762b99540SQu Wenruo 		}
403862b99540SQu Wenruo 	}
403962b99540SQu Wenruo 	unlock_extent(&BTRFS_I(inode)->io_tree, 0 , (u64)-1);
404062b99540SQu Wenruo out:
404162b99540SQu Wenruo 	btrfs_free_path(path);
404262b99540SQu Wenruo 	return ret;
404362b99540SQu Wenruo }
404462b99540SQu Wenruo 
40455d4f98a2SYan Zheng static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
40465d4f98a2SYan Zheng {
40475d4f98a2SYan Zheng 	struct rb_root blocks = RB_ROOT;
40485d4f98a2SYan Zheng 	struct btrfs_key key;
40495d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans = NULL;
40505d4f98a2SYan Zheng 	struct btrfs_path *path;
40515d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
40525d4f98a2SYan Zheng 	u64 flags;
40535d4f98a2SYan Zheng 	u32 item_size;
40545d4f98a2SYan Zheng 	int ret;
40555d4f98a2SYan Zheng 	int err = 0;
4056c87f08caSChris Mason 	int progress = 0;
40575d4f98a2SYan Zheng 
40585d4f98a2SYan Zheng 	path = btrfs_alloc_path();
40593fd0a558SYan, Zheng 	if (!path)
40605d4f98a2SYan Zheng 		return -ENOMEM;
4061e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
40623fd0a558SYan, Zheng 
40633fd0a558SYan, Zheng 	ret = prepare_to_relocate(rc);
40643fd0a558SYan, Zheng 	if (ret) {
40653fd0a558SYan, Zheng 		err = ret;
40663fd0a558SYan, Zheng 		goto out_free;
40672423fdfbSJiri Slaby 	}
40685d4f98a2SYan Zheng 
40695d4f98a2SYan Zheng 	while (1) {
40700647bf56SWang Shilong 		rc->reserved_bytes = 0;
40710647bf56SWang Shilong 		ret = btrfs_block_rsv_refill(rc->extent_root,
40720647bf56SWang Shilong 					rc->block_rsv, rc->block_rsv->size,
40730647bf56SWang Shilong 					BTRFS_RESERVE_FLUSH_ALL);
40740647bf56SWang Shilong 		if (ret) {
40750647bf56SWang Shilong 			err = ret;
40760647bf56SWang Shilong 			break;
40770647bf56SWang Shilong 		}
4078c87f08caSChris Mason 		progress++;
4079a22285a6SYan, Zheng 		trans = btrfs_start_transaction(rc->extent_root, 0);
40800f788c58SLiu Bo 		if (IS_ERR(trans)) {
40810f788c58SLiu Bo 			err = PTR_ERR(trans);
40820f788c58SLiu Bo 			trans = NULL;
40830f788c58SLiu Bo 			break;
40840f788c58SLiu Bo 		}
4085c87f08caSChris Mason restart:
40863fd0a558SYan, Zheng 		if (update_backref_cache(trans, &rc->backref_cache)) {
40873fd0a558SYan, Zheng 			btrfs_end_transaction(trans, rc->extent_root);
40883fd0a558SYan, Zheng 			continue;
40893fd0a558SYan, Zheng 		}
40903fd0a558SYan, Zheng 
4091147d256eSZhaolei 		ret = find_next_extent(rc, path, &key);
40925d4f98a2SYan Zheng 		if (ret < 0)
40935d4f98a2SYan Zheng 			err = ret;
40945d4f98a2SYan Zheng 		if (ret != 0)
40955d4f98a2SYan Zheng 			break;
40965d4f98a2SYan Zheng 
40975d4f98a2SYan Zheng 		rc->extents_found++;
40985d4f98a2SYan Zheng 
40995d4f98a2SYan Zheng 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
41005d4f98a2SYan Zheng 				    struct btrfs_extent_item);
41013fd0a558SYan, Zheng 		item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
41025d4f98a2SYan Zheng 		if (item_size >= sizeof(*ei)) {
41035d4f98a2SYan Zheng 			flags = btrfs_extent_flags(path->nodes[0], ei);
41045d4f98a2SYan Zheng 			ret = check_extent_flags(flags);
41055d4f98a2SYan Zheng 			BUG_ON(ret);
41065d4f98a2SYan Zheng 
41075d4f98a2SYan Zheng 		} else {
41085d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
41095d4f98a2SYan Zheng 			u64 ref_owner;
41105d4f98a2SYan Zheng 			int path_change = 0;
41115d4f98a2SYan Zheng 
41125d4f98a2SYan Zheng 			BUG_ON(item_size !=
41135d4f98a2SYan Zheng 			       sizeof(struct btrfs_extent_item_v0));
41145d4f98a2SYan Zheng 			ret = get_ref_objectid_v0(rc, path, &key, &ref_owner,
41155d4f98a2SYan Zheng 						  &path_change);
41164b3576e4SZhaolei 			if (ret < 0) {
41174b3576e4SZhaolei 				err = ret;
41184b3576e4SZhaolei 				break;
41194b3576e4SZhaolei 			}
41205d4f98a2SYan Zheng 			if (ref_owner < BTRFS_FIRST_FREE_OBJECTID)
41215d4f98a2SYan Zheng 				flags = BTRFS_EXTENT_FLAG_TREE_BLOCK;
41225d4f98a2SYan Zheng 			else
41235d4f98a2SYan Zheng 				flags = BTRFS_EXTENT_FLAG_DATA;
41245d4f98a2SYan Zheng 
41255d4f98a2SYan Zheng 			if (path_change) {
4126b3b4aa74SDavid Sterba 				btrfs_release_path(path);
41275d4f98a2SYan Zheng 
41285d4f98a2SYan Zheng 				path->search_commit_root = 1;
41295d4f98a2SYan Zheng 				path->skip_locking = 1;
41305d4f98a2SYan Zheng 				ret = btrfs_search_slot(NULL, rc->extent_root,
41315d4f98a2SYan Zheng 							&key, path, 0, 0);
41325d4f98a2SYan Zheng 				if (ret < 0) {
41335d4f98a2SYan Zheng 					err = ret;
41345d4f98a2SYan Zheng 					break;
41355d4f98a2SYan Zheng 				}
41365d4f98a2SYan Zheng 				BUG_ON(ret > 0);
41375d4f98a2SYan Zheng 			}
41385d4f98a2SYan Zheng #else
41395d4f98a2SYan Zheng 			BUG();
41405d4f98a2SYan Zheng #endif
41415d4f98a2SYan Zheng 		}
41425d4f98a2SYan Zheng 
41435d4f98a2SYan Zheng 		if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
41445d4f98a2SYan Zheng 			ret = add_tree_block(rc, &key, path, &blocks);
41455d4f98a2SYan Zheng 		} else if (rc->stage == UPDATE_DATA_PTRS &&
41465d4f98a2SYan Zheng 			   (flags & BTRFS_EXTENT_FLAG_DATA)) {
41475d4f98a2SYan Zheng 			ret = add_data_references(rc, &key, path, &blocks);
41485d4f98a2SYan Zheng 		} else {
4149b3b4aa74SDavid Sterba 			btrfs_release_path(path);
41505d4f98a2SYan Zheng 			ret = 0;
41515d4f98a2SYan Zheng 		}
41525d4f98a2SYan Zheng 		if (ret < 0) {
41533fd0a558SYan, Zheng 			err = ret;
41545d4f98a2SYan Zheng 			break;
41555d4f98a2SYan Zheng 		}
41565d4f98a2SYan Zheng 
41575d4f98a2SYan Zheng 		if (!RB_EMPTY_ROOT(&blocks)) {
41585d4f98a2SYan Zheng 			ret = relocate_tree_blocks(trans, rc, &blocks);
41595d4f98a2SYan Zheng 			if (ret < 0) {
41601708cc57SWang Shilong 				/*
41611708cc57SWang Shilong 				 * if we fail to relocate tree blocks, force to update
41621708cc57SWang Shilong 				 * backref cache when committing transaction.
41631708cc57SWang Shilong 				 */
41641708cc57SWang Shilong 				rc->backref_cache.last_trans = trans->transid - 1;
41651708cc57SWang Shilong 
41663fd0a558SYan, Zheng 				if (ret != -EAGAIN) {
41675d4f98a2SYan Zheng 					err = ret;
41685d4f98a2SYan Zheng 					break;
41695d4f98a2SYan Zheng 				}
41703fd0a558SYan, Zheng 				rc->extents_found--;
41713fd0a558SYan, Zheng 				rc->search_start = key.objectid;
41723fd0a558SYan, Zheng 			}
41735d4f98a2SYan Zheng 		}
41745d4f98a2SYan Zheng 
41753fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, rc->extent_root);
4176b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(rc->extent_root);
41773fd0a558SYan, Zheng 		trans = NULL;
41785d4f98a2SYan Zheng 
41795d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS &&
41805d4f98a2SYan Zheng 		    (flags & BTRFS_EXTENT_FLAG_DATA)) {
41815d4f98a2SYan Zheng 			rc->found_file_extent = 1;
41820257bb82SYan, Zheng 			ret = relocate_data_extent(rc->data_inode,
41833fd0a558SYan, Zheng 						   &key, &rc->cluster);
41845d4f98a2SYan Zheng 			if (ret < 0) {
41855d4f98a2SYan Zheng 				err = ret;
41865d4f98a2SYan Zheng 				break;
41875d4f98a2SYan Zheng 			}
41885d4f98a2SYan Zheng 		}
41895d4f98a2SYan Zheng 	}
4190c87f08caSChris Mason 	if (trans && progress && err == -ENOSPC) {
4191c87f08caSChris Mason 		ret = btrfs_force_chunk_alloc(trans, rc->extent_root,
4192c87f08caSChris Mason 					      rc->block_group->flags);
41939689457bSShilong Wang 		if (ret == 1) {
4194c87f08caSChris Mason 			err = 0;
4195c87f08caSChris Mason 			progress = 0;
4196c87f08caSChris Mason 			goto restart;
4197c87f08caSChris Mason 		}
4198c87f08caSChris Mason 	}
41993fd0a558SYan, Zheng 
4200b3b4aa74SDavid Sterba 	btrfs_release_path(path);
420191166212SDavid Sterba 	clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
42025d4f98a2SYan Zheng 
42035d4f98a2SYan Zheng 	if (trans) {
42043fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, rc->extent_root);
4205b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(rc->extent_root);
42065d4f98a2SYan Zheng 	}
42075d4f98a2SYan Zheng 
42080257bb82SYan, Zheng 	if (!err) {
42093fd0a558SYan, Zheng 		ret = relocate_file_extent_cluster(rc->data_inode,
42103fd0a558SYan, Zheng 						   &rc->cluster);
42110257bb82SYan, Zheng 		if (ret < 0)
42120257bb82SYan, Zheng 			err = ret;
42130257bb82SYan, Zheng 	}
42140257bb82SYan, Zheng 
42153fd0a558SYan, Zheng 	rc->create_reloc_tree = 0;
42163fd0a558SYan, Zheng 	set_reloc_control(rc);
42170257bb82SYan, Zheng 
42183fd0a558SYan, Zheng 	backref_cache_cleanup(&rc->backref_cache);
42193fd0a558SYan, Zheng 	btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
42205d4f98a2SYan Zheng 
42213fd0a558SYan, Zheng 	err = prepare_to_merge(rc, err);
42225d4f98a2SYan Zheng 
42235d4f98a2SYan Zheng 	merge_reloc_roots(rc);
42245d4f98a2SYan Zheng 
42253fd0a558SYan, Zheng 	rc->merge_reloc_tree = 0;
42265d4f98a2SYan Zheng 	unset_reloc_control(rc);
42273fd0a558SYan, Zheng 	btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
42285d4f98a2SYan Zheng 
42295d4f98a2SYan Zheng 	/* get rid of pinned extents */
42307a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
423162b99540SQu Wenruo 	if (IS_ERR(trans)) {
42323612b495STsutomu Itoh 		err = PTR_ERR(trans);
423362b99540SQu Wenruo 		goto out_free;
423462b99540SQu Wenruo 	}
4235a9b1fc85SLiu Bo 	ret = qgroup_fix_relocated_data_extents(trans, rc);
4236a9b1fc85SLiu Bo 	if (ret < 0) {
4237a9b1fc85SLiu Bo 		btrfs_abort_transaction(trans, ret);
4238a9b1fc85SLiu Bo 		if (!err)
4239a9b1fc85SLiu Bo 			err = ret;
424062b99540SQu Wenruo 		goto out_free;
424162b99540SQu Wenruo 	}
42425d4f98a2SYan Zheng 	btrfs_commit_transaction(trans, rc->extent_root);
42433fd0a558SYan, Zheng out_free:
42443fd0a558SYan, Zheng 	btrfs_free_block_rsv(rc->extent_root, rc->block_rsv);
42453fd0a558SYan, Zheng 	btrfs_free_path(path);
42465d4f98a2SYan Zheng 	return err;
42475d4f98a2SYan Zheng }
42485d4f98a2SYan Zheng 
42495d4f98a2SYan Zheng static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
42500257bb82SYan, Zheng 				 struct btrfs_root *root, u64 objectid)
42515d4f98a2SYan Zheng {
42525d4f98a2SYan Zheng 	struct btrfs_path *path;
42535d4f98a2SYan Zheng 	struct btrfs_inode_item *item;
42545d4f98a2SYan Zheng 	struct extent_buffer *leaf;
42555d4f98a2SYan Zheng 	int ret;
42565d4f98a2SYan Zheng 
42575d4f98a2SYan Zheng 	path = btrfs_alloc_path();
42585d4f98a2SYan Zheng 	if (!path)
42595d4f98a2SYan Zheng 		return -ENOMEM;
42605d4f98a2SYan Zheng 
42615d4f98a2SYan Zheng 	ret = btrfs_insert_empty_inode(trans, root, path, objectid);
42625d4f98a2SYan Zheng 	if (ret)
42635d4f98a2SYan Zheng 		goto out;
42645d4f98a2SYan Zheng 
42655d4f98a2SYan Zheng 	leaf = path->nodes[0];
42665d4f98a2SYan Zheng 	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
42675d4f98a2SYan Zheng 	memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
42685d4f98a2SYan Zheng 	btrfs_set_inode_generation(leaf, item, 1);
42690257bb82SYan, Zheng 	btrfs_set_inode_size(leaf, item, 0);
42705d4f98a2SYan Zheng 	btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
42713fd0a558SYan, Zheng 	btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
42723fd0a558SYan, Zheng 					  BTRFS_INODE_PREALLOC);
42735d4f98a2SYan Zheng 	btrfs_mark_buffer_dirty(leaf);
42745d4f98a2SYan Zheng out:
42755d4f98a2SYan Zheng 	btrfs_free_path(path);
42765d4f98a2SYan Zheng 	return ret;
42775d4f98a2SYan Zheng }
42785d4f98a2SYan Zheng 
42795d4f98a2SYan Zheng /*
42805d4f98a2SYan Zheng  * helper to create inode for data relocation.
42815d4f98a2SYan Zheng  * the inode is in data relocation tree and its link count is 0
42825d4f98a2SYan Zheng  */
42833fd0a558SYan, Zheng static noinline_for_stack
42843fd0a558SYan, Zheng struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
42855d4f98a2SYan Zheng 				 struct btrfs_block_group_cache *group)
42865d4f98a2SYan Zheng {
42875d4f98a2SYan Zheng 	struct inode *inode = NULL;
42885d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
42895d4f98a2SYan Zheng 	struct btrfs_root *root;
42905d4f98a2SYan Zheng 	struct btrfs_key key;
42914624900dSZhaolei 	u64 objectid;
42925d4f98a2SYan Zheng 	int err = 0;
42935d4f98a2SYan Zheng 
42945d4f98a2SYan Zheng 	root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
42955d4f98a2SYan Zheng 	if (IS_ERR(root))
42965d4f98a2SYan Zheng 		return ERR_CAST(root);
42975d4f98a2SYan Zheng 
4298a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
42993fd0a558SYan, Zheng 	if (IS_ERR(trans))
43003fd0a558SYan, Zheng 		return ERR_CAST(trans);
43015d4f98a2SYan Zheng 
4302581bb050SLi Zefan 	err = btrfs_find_free_objectid(root, &objectid);
43035d4f98a2SYan Zheng 	if (err)
43045d4f98a2SYan Zheng 		goto out;
43055d4f98a2SYan Zheng 
43060257bb82SYan, Zheng 	err = __insert_orphan_inode(trans, root, objectid);
43075d4f98a2SYan Zheng 	BUG_ON(err);
43085d4f98a2SYan Zheng 
43095d4f98a2SYan Zheng 	key.objectid = objectid;
43105d4f98a2SYan Zheng 	key.type = BTRFS_INODE_ITEM_KEY;
43115d4f98a2SYan Zheng 	key.offset = 0;
431273f73415SJosef Bacik 	inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
43135d4f98a2SYan Zheng 	BUG_ON(IS_ERR(inode) || is_bad_inode(inode));
43145d4f98a2SYan Zheng 	BTRFS_I(inode)->index_cnt = group->key.objectid;
43155d4f98a2SYan Zheng 
43165d4f98a2SYan Zheng 	err = btrfs_orphan_add(trans, inode);
43175d4f98a2SYan Zheng out:
43185d4f98a2SYan Zheng 	btrfs_end_transaction(trans, root);
4319b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
43205d4f98a2SYan Zheng 	if (err) {
43215d4f98a2SYan Zheng 		if (inode)
43225d4f98a2SYan Zheng 			iput(inode);
43235d4f98a2SYan Zheng 		inode = ERR_PTR(err);
43245d4f98a2SYan Zheng 	}
43255d4f98a2SYan Zheng 	return inode;
43265d4f98a2SYan Zheng }
43275d4f98a2SYan Zheng 
4328a9995eecSJosef Bacik static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
43293fd0a558SYan, Zheng {
43303fd0a558SYan, Zheng 	struct reloc_control *rc;
43313fd0a558SYan, Zheng 
43323fd0a558SYan, Zheng 	rc = kzalloc(sizeof(*rc), GFP_NOFS);
43333fd0a558SYan, Zheng 	if (!rc)
43343fd0a558SYan, Zheng 		return NULL;
43353fd0a558SYan, Zheng 
43363fd0a558SYan, Zheng 	INIT_LIST_HEAD(&rc->reloc_roots);
43373fd0a558SYan, Zheng 	backref_cache_init(&rc->backref_cache);
43383fd0a558SYan, Zheng 	mapping_tree_init(&rc->reloc_root_tree);
4339a9995eecSJosef Bacik 	extent_io_tree_init(&rc->processed_blocks,
4340a9995eecSJosef Bacik 			    fs_info->btree_inode->i_mapping);
43413fd0a558SYan, Zheng 	return rc;
43423fd0a558SYan, Zheng }
43433fd0a558SYan, Zheng 
43445d4f98a2SYan Zheng /*
43455d4f98a2SYan Zheng  * function to relocate all extents in a block group.
43465d4f98a2SYan Zheng  */
43475d4f98a2SYan Zheng int btrfs_relocate_block_group(struct btrfs_root *extent_root, u64 group_start)
43485d4f98a2SYan Zheng {
43495d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = extent_root->fs_info;
43505d4f98a2SYan Zheng 	struct reloc_control *rc;
43510af3d00bSJosef Bacik 	struct inode *inode;
43520af3d00bSJosef Bacik 	struct btrfs_path *path;
43535d4f98a2SYan Zheng 	int ret;
4354f0486c68SYan, Zheng 	int rw = 0;
43555d4f98a2SYan Zheng 	int err = 0;
43565d4f98a2SYan Zheng 
4357a9995eecSJosef Bacik 	rc = alloc_reloc_control(fs_info);
43585d4f98a2SYan Zheng 	if (!rc)
43595d4f98a2SYan Zheng 		return -ENOMEM;
43605d4f98a2SYan Zheng 
4361f0486c68SYan, Zheng 	rc->extent_root = extent_root;
43623fd0a558SYan, Zheng 
43635d4f98a2SYan Zheng 	rc->block_group = btrfs_lookup_block_group(fs_info, group_start);
43645d4f98a2SYan Zheng 	BUG_ON(!rc->block_group);
43655d4f98a2SYan Zheng 
4366868f401aSZhaolei 	ret = btrfs_inc_block_group_ro(extent_root, rc->block_group);
4367f0486c68SYan, Zheng 	if (ret) {
4368f0486c68SYan, Zheng 		err = ret;
4369f0486c68SYan, Zheng 		goto out;
4370f0486c68SYan, Zheng 	}
4371f0486c68SYan, Zheng 	rw = 1;
4372f0486c68SYan, Zheng 
43730af3d00bSJosef Bacik 	path = btrfs_alloc_path();
43740af3d00bSJosef Bacik 	if (!path) {
43750af3d00bSJosef Bacik 		err = -ENOMEM;
43760af3d00bSJosef Bacik 		goto out;
43770af3d00bSJosef Bacik 	}
43780af3d00bSJosef Bacik 
43790af3d00bSJosef Bacik 	inode = lookup_free_space_inode(fs_info->tree_root, rc->block_group,
43800af3d00bSJosef Bacik 					path);
43810af3d00bSJosef Bacik 	btrfs_free_path(path);
43820af3d00bSJosef Bacik 
43830af3d00bSJosef Bacik 	if (!IS_ERR(inode))
43841bbc621eSChris Mason 		ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
43850af3d00bSJosef Bacik 	else
43860af3d00bSJosef Bacik 		ret = PTR_ERR(inode);
43870af3d00bSJosef Bacik 
43880af3d00bSJosef Bacik 	if (ret && ret != -ENOENT) {
43890af3d00bSJosef Bacik 		err = ret;
43900af3d00bSJosef Bacik 		goto out;
43910af3d00bSJosef Bacik 	}
43920af3d00bSJosef Bacik 
43935d4f98a2SYan Zheng 	rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
43945d4f98a2SYan Zheng 	if (IS_ERR(rc->data_inode)) {
43955d4f98a2SYan Zheng 		err = PTR_ERR(rc->data_inode);
43965d4f98a2SYan Zheng 		rc->data_inode = NULL;
43975d4f98a2SYan Zheng 		goto out;
43985d4f98a2SYan Zheng 	}
43995d4f98a2SYan Zheng 
44005d163e0eSJeff Mahoney 	btrfs_info(extent_root->fs_info,
44015d163e0eSJeff Mahoney 		   "relocating block group %llu flags %llu",
4402c1c9ff7cSGeert Uytterhoeven 		   rc->block_group->key.objectid, rc->block_group->flags);
44035d4f98a2SYan Zheng 
44049cfa3e34SFilipe Manana 	btrfs_wait_block_group_reservations(rc->block_group);
4405f78c436cSFilipe Manana 	btrfs_wait_nocow_writers(rc->block_group);
4406578def7cSFilipe Manana 	btrfs_wait_ordered_roots(fs_info, -1,
4407578def7cSFilipe Manana 				 rc->block_group->key.objectid,
4408578def7cSFilipe Manana 				 rc->block_group->key.offset);
44095d4f98a2SYan Zheng 
44105d4f98a2SYan Zheng 	while (1) {
441176dda93cSYan, Zheng 		mutex_lock(&fs_info->cleaner_mutex);
44125d4f98a2SYan Zheng 		ret = relocate_block_group(rc);
441376dda93cSYan, Zheng 		mutex_unlock(&fs_info->cleaner_mutex);
44145d4f98a2SYan Zheng 		if (ret < 0) {
44155d4f98a2SYan Zheng 			err = ret;
44163fd0a558SYan, Zheng 			goto out;
44175d4f98a2SYan Zheng 		}
44185d4f98a2SYan Zheng 
44195d4f98a2SYan Zheng 		if (rc->extents_found == 0)
44205d4f98a2SYan Zheng 			break;
44215d4f98a2SYan Zheng 
4422efe120a0SFrank Holton 		btrfs_info(extent_root->fs_info, "found %llu extents",
4423c1c9ff7cSGeert Uytterhoeven 			rc->extents_found);
44245d4f98a2SYan Zheng 
44255d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
44260ef8b726SJosef Bacik 			ret = btrfs_wait_ordered_range(rc->data_inode, 0,
44270ef8b726SJosef Bacik 						       (u64)-1);
44280ef8b726SJosef Bacik 			if (ret) {
44290ef8b726SJosef Bacik 				err = ret;
44300ef8b726SJosef Bacik 				goto out;
44310ef8b726SJosef Bacik 			}
44325d4f98a2SYan Zheng 			invalidate_mapping_pages(rc->data_inode->i_mapping,
44335d4f98a2SYan Zheng 						 0, -1);
44345d4f98a2SYan Zheng 			rc->stage = UPDATE_DATA_PTRS;
44355d4f98a2SYan Zheng 		}
44365d4f98a2SYan Zheng 	}
44375d4f98a2SYan Zheng 
44385d4f98a2SYan Zheng 	WARN_ON(rc->block_group->pinned > 0);
44395d4f98a2SYan Zheng 	WARN_ON(rc->block_group->reserved > 0);
44405d4f98a2SYan Zheng 	WARN_ON(btrfs_block_group_used(&rc->block_group->item) > 0);
44415d4f98a2SYan Zheng out:
4442f0486c68SYan, Zheng 	if (err && rw)
4443868f401aSZhaolei 		btrfs_dec_block_group_ro(extent_root, rc->block_group);
44445d4f98a2SYan Zheng 	iput(rc->data_inode);
44455d4f98a2SYan Zheng 	btrfs_put_block_group(rc->block_group);
44465d4f98a2SYan Zheng 	kfree(rc);
44475d4f98a2SYan Zheng 	return err;
44485d4f98a2SYan Zheng }
44495d4f98a2SYan Zheng 
445076dda93cSYan, Zheng static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
445176dda93cSYan, Zheng {
445276dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
445379787eaaSJeff Mahoney 	int ret, err;
445476dda93cSYan, Zheng 
4455a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root->fs_info->tree_root, 0);
445679787eaaSJeff Mahoney 	if (IS_ERR(trans))
445779787eaaSJeff Mahoney 		return PTR_ERR(trans);
445876dda93cSYan, Zheng 
445976dda93cSYan, Zheng 	memset(&root->root_item.drop_progress, 0,
446076dda93cSYan, Zheng 		sizeof(root->root_item.drop_progress));
446176dda93cSYan, Zheng 	root->root_item.drop_level = 0;
446276dda93cSYan, Zheng 	btrfs_set_root_refs(&root->root_item, 0);
446376dda93cSYan, Zheng 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
446476dda93cSYan, Zheng 				&root->root_key, &root->root_item);
446576dda93cSYan, Zheng 
446679787eaaSJeff Mahoney 	err = btrfs_end_transaction(trans, root->fs_info->tree_root);
446779787eaaSJeff Mahoney 	if (err)
446879787eaaSJeff Mahoney 		return err;
446979787eaaSJeff Mahoney 	return ret;
447076dda93cSYan, Zheng }
447176dda93cSYan, Zheng 
44725d4f98a2SYan Zheng /*
44735d4f98a2SYan Zheng  * recover relocation interrupted by system crash.
44745d4f98a2SYan Zheng  *
44755d4f98a2SYan Zheng  * this function resumes merging reloc trees with corresponding fs trees.
44765d4f98a2SYan Zheng  * this is important for keeping the sharing of tree blocks
44775d4f98a2SYan Zheng  */
44785d4f98a2SYan Zheng int btrfs_recover_relocation(struct btrfs_root *root)
44795d4f98a2SYan Zheng {
44805d4f98a2SYan Zheng 	LIST_HEAD(reloc_roots);
44815d4f98a2SYan Zheng 	struct btrfs_key key;
44825d4f98a2SYan Zheng 	struct btrfs_root *fs_root;
44835d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
44845d4f98a2SYan Zheng 	struct btrfs_path *path;
44855d4f98a2SYan Zheng 	struct extent_buffer *leaf;
44865d4f98a2SYan Zheng 	struct reloc_control *rc = NULL;
44875d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
44885d4f98a2SYan Zheng 	int ret;
44895d4f98a2SYan Zheng 	int err = 0;
44905d4f98a2SYan Zheng 
44915d4f98a2SYan Zheng 	path = btrfs_alloc_path();
44925d4f98a2SYan Zheng 	if (!path)
44935d4f98a2SYan Zheng 		return -ENOMEM;
4494e4058b54SDavid Sterba 	path->reada = READA_BACK;
44955d4f98a2SYan Zheng 
44965d4f98a2SYan Zheng 	key.objectid = BTRFS_TREE_RELOC_OBJECTID;
44975d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
44985d4f98a2SYan Zheng 	key.offset = (u64)-1;
44995d4f98a2SYan Zheng 
45005d4f98a2SYan Zheng 	while (1) {
45015d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key,
45025d4f98a2SYan Zheng 					path, 0, 0);
45035d4f98a2SYan Zheng 		if (ret < 0) {
45045d4f98a2SYan Zheng 			err = ret;
45055d4f98a2SYan Zheng 			goto out;
45065d4f98a2SYan Zheng 		}
45075d4f98a2SYan Zheng 		if (ret > 0) {
45085d4f98a2SYan Zheng 			if (path->slots[0] == 0)
45095d4f98a2SYan Zheng 				break;
45105d4f98a2SYan Zheng 			path->slots[0]--;
45115d4f98a2SYan Zheng 		}
45125d4f98a2SYan Zheng 		leaf = path->nodes[0];
45135d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4514b3b4aa74SDavid Sterba 		btrfs_release_path(path);
45155d4f98a2SYan Zheng 
45165d4f98a2SYan Zheng 		if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
45175d4f98a2SYan Zheng 		    key.type != BTRFS_ROOT_ITEM_KEY)
45185d4f98a2SYan Zheng 			break;
45195d4f98a2SYan Zheng 
4520cb517eabSMiao Xie 		reloc_root = btrfs_read_fs_root(root, &key);
45215d4f98a2SYan Zheng 		if (IS_ERR(reloc_root)) {
45225d4f98a2SYan Zheng 			err = PTR_ERR(reloc_root);
45235d4f98a2SYan Zheng 			goto out;
45245d4f98a2SYan Zheng 		}
45255d4f98a2SYan Zheng 
45265d4f98a2SYan Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
45275d4f98a2SYan Zheng 
45285d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
45295d4f98a2SYan Zheng 			fs_root = read_fs_root(root->fs_info,
45305d4f98a2SYan Zheng 					       reloc_root->root_key.offset);
45315d4f98a2SYan Zheng 			if (IS_ERR(fs_root)) {
453276dda93cSYan, Zheng 				ret = PTR_ERR(fs_root);
453376dda93cSYan, Zheng 				if (ret != -ENOENT) {
453476dda93cSYan, Zheng 					err = ret;
45355d4f98a2SYan Zheng 					goto out;
45365d4f98a2SYan Zheng 				}
453779787eaaSJeff Mahoney 				ret = mark_garbage_root(reloc_root);
453879787eaaSJeff Mahoney 				if (ret < 0) {
453979787eaaSJeff Mahoney 					err = ret;
454079787eaaSJeff Mahoney 					goto out;
454179787eaaSJeff Mahoney 				}
454276dda93cSYan, Zheng 			}
45435d4f98a2SYan Zheng 		}
45445d4f98a2SYan Zheng 
45455d4f98a2SYan Zheng 		if (key.offset == 0)
45465d4f98a2SYan Zheng 			break;
45475d4f98a2SYan Zheng 
45485d4f98a2SYan Zheng 		key.offset--;
45495d4f98a2SYan Zheng 	}
4550b3b4aa74SDavid Sterba 	btrfs_release_path(path);
45515d4f98a2SYan Zheng 
45525d4f98a2SYan Zheng 	if (list_empty(&reloc_roots))
45535d4f98a2SYan Zheng 		goto out;
45545d4f98a2SYan Zheng 
4555a9995eecSJosef Bacik 	rc = alloc_reloc_control(root->fs_info);
45565d4f98a2SYan Zheng 	if (!rc) {
45575d4f98a2SYan Zheng 		err = -ENOMEM;
45585d4f98a2SYan Zheng 		goto out;
45595d4f98a2SYan Zheng 	}
45605d4f98a2SYan Zheng 
45615d4f98a2SYan Zheng 	rc->extent_root = root->fs_info->extent_root;
45625d4f98a2SYan Zheng 
45635d4f98a2SYan Zheng 	set_reloc_control(rc);
45645d4f98a2SYan Zheng 
45657a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
45663612b495STsutomu Itoh 	if (IS_ERR(trans)) {
45673612b495STsutomu Itoh 		unset_reloc_control(rc);
45683612b495STsutomu Itoh 		err = PTR_ERR(trans);
45693612b495STsutomu Itoh 		goto out_free;
45703612b495STsutomu Itoh 	}
45713fd0a558SYan, Zheng 
45723fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
45733fd0a558SYan, Zheng 
45745d4f98a2SYan Zheng 	while (!list_empty(&reloc_roots)) {
45755d4f98a2SYan Zheng 		reloc_root = list_entry(reloc_roots.next,
45765d4f98a2SYan Zheng 					struct btrfs_root, root_list);
45775d4f98a2SYan Zheng 		list_del(&reloc_root->root_list);
45785d4f98a2SYan Zheng 
45795d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) == 0) {
45805d4f98a2SYan Zheng 			list_add_tail(&reloc_root->root_list,
45815d4f98a2SYan Zheng 				      &rc->reloc_roots);
45825d4f98a2SYan Zheng 			continue;
45835d4f98a2SYan Zheng 		}
45845d4f98a2SYan Zheng 
45855d4f98a2SYan Zheng 		fs_root = read_fs_root(root->fs_info,
45865d4f98a2SYan Zheng 				       reloc_root->root_key.offset);
458779787eaaSJeff Mahoney 		if (IS_ERR(fs_root)) {
458879787eaaSJeff Mahoney 			err = PTR_ERR(fs_root);
458979787eaaSJeff Mahoney 			goto out_free;
459079787eaaSJeff Mahoney 		}
45915d4f98a2SYan Zheng 
4592ffd7b339SJeff Mahoney 		err = __add_reloc_root(reloc_root);
459379787eaaSJeff Mahoney 		BUG_ON(err < 0); /* -ENOMEM or logic error */
45945d4f98a2SYan Zheng 		fs_root->reloc_root = reloc_root;
45955d4f98a2SYan Zheng 	}
45965d4f98a2SYan Zheng 
459779787eaaSJeff Mahoney 	err = btrfs_commit_transaction(trans, rc->extent_root);
459879787eaaSJeff Mahoney 	if (err)
459979787eaaSJeff Mahoney 		goto out_free;
46005d4f98a2SYan Zheng 
46015d4f98a2SYan Zheng 	merge_reloc_roots(rc);
46025d4f98a2SYan Zheng 
46035d4f98a2SYan Zheng 	unset_reloc_control(rc);
46045d4f98a2SYan Zheng 
46057a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
460662b99540SQu Wenruo 	if (IS_ERR(trans)) {
46073612b495STsutomu Itoh 		err = PTR_ERR(trans);
460862b99540SQu Wenruo 		goto out_free;
460962b99540SQu Wenruo 	}
461062b99540SQu Wenruo 	err = qgroup_fix_relocated_data_extents(trans, rc);
461162b99540SQu Wenruo 	if (err < 0) {
461262b99540SQu Wenruo 		btrfs_abort_transaction(trans, err);
461362b99540SQu Wenruo 		goto out_free;
461462b99540SQu Wenruo 	}
461579787eaaSJeff Mahoney 	err = btrfs_commit_transaction(trans, rc->extent_root);
46163612b495STsutomu Itoh out_free:
46175d4f98a2SYan Zheng 	kfree(rc);
46183612b495STsutomu Itoh out:
4619aca1bba6SLiu Bo 	if (!list_empty(&reloc_roots))
4620aca1bba6SLiu Bo 		free_reloc_roots(&reloc_roots);
4621aca1bba6SLiu Bo 
46225d4f98a2SYan Zheng 	btrfs_free_path(path);
46235d4f98a2SYan Zheng 
46245d4f98a2SYan Zheng 	if (err == 0) {
46255d4f98a2SYan Zheng 		/* cleanup orphan inode in data relocation tree */
46265d4f98a2SYan Zheng 		fs_root = read_fs_root(root->fs_info,
46275d4f98a2SYan Zheng 				       BTRFS_DATA_RELOC_TREE_OBJECTID);
46285d4f98a2SYan Zheng 		if (IS_ERR(fs_root))
46295d4f98a2SYan Zheng 			err = PTR_ERR(fs_root);
4630d7ce5843SMiao Xie 		else
463166b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(fs_root);
46325d4f98a2SYan Zheng 	}
46335d4f98a2SYan Zheng 	return err;
46345d4f98a2SYan Zheng }
46355d4f98a2SYan Zheng 
46365d4f98a2SYan Zheng /*
46375d4f98a2SYan Zheng  * helper to add ordered checksum for data relocation.
46385d4f98a2SYan Zheng  *
46395d4f98a2SYan Zheng  * cloning checksum properly handles the nodatasum extents.
46405d4f98a2SYan Zheng  * it also saves CPU time to re-calculate the checksum.
46415d4f98a2SYan Zheng  */
46425d4f98a2SYan Zheng int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
46435d4f98a2SYan Zheng {
46445d4f98a2SYan Zheng 	struct btrfs_ordered_sum *sums;
46455d4f98a2SYan Zheng 	struct btrfs_ordered_extent *ordered;
46465d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(inode)->root;
46475d4f98a2SYan Zheng 	int ret;
46485d4f98a2SYan Zheng 	u64 disk_bytenr;
46494577b014SJosef Bacik 	u64 new_bytenr;
46505d4f98a2SYan Zheng 	LIST_HEAD(list);
46515d4f98a2SYan Zheng 
46525d4f98a2SYan Zheng 	ordered = btrfs_lookup_ordered_extent(inode, file_pos);
46535d4f98a2SYan Zheng 	BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
46545d4f98a2SYan Zheng 
46555d4f98a2SYan Zheng 	disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
46565d4f98a2SYan Zheng 	ret = btrfs_lookup_csums_range(root->fs_info->csum_root, disk_bytenr,
4657a2de733cSArne Jansen 				       disk_bytenr + len - 1, &list, 0);
465879787eaaSJeff Mahoney 	if (ret)
465979787eaaSJeff Mahoney 		goto out;
46605d4f98a2SYan Zheng 
46615d4f98a2SYan Zheng 	while (!list_empty(&list)) {
46625d4f98a2SYan Zheng 		sums = list_entry(list.next, struct btrfs_ordered_sum, list);
46635d4f98a2SYan Zheng 		list_del_init(&sums->list);
46645d4f98a2SYan Zheng 
46654577b014SJosef Bacik 		/*
46664577b014SJosef Bacik 		 * We need to offset the new_bytenr based on where the csum is.
46674577b014SJosef Bacik 		 * We need to do this because we will read in entire prealloc
46684577b014SJosef Bacik 		 * extents but we may have written to say the middle of the
46694577b014SJosef Bacik 		 * prealloc extent, so we need to make sure the csum goes with
46704577b014SJosef Bacik 		 * the right disk offset.
46714577b014SJosef Bacik 		 *
46724577b014SJosef Bacik 		 * We can do this because the data reloc inode refers strictly
46734577b014SJosef Bacik 		 * to the on disk bytes, so we don't have to worry about
46744577b014SJosef Bacik 		 * disk_len vs real len like with real inodes since it's all
46754577b014SJosef Bacik 		 * disk length.
46764577b014SJosef Bacik 		 */
46774577b014SJosef Bacik 		new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
46784577b014SJosef Bacik 		sums->bytenr = new_bytenr;
46795d4f98a2SYan Zheng 
46805d4f98a2SYan Zheng 		btrfs_add_ordered_sum(inode, ordered, sums);
46815d4f98a2SYan Zheng 	}
468279787eaaSJeff Mahoney out:
46835d4f98a2SYan Zheng 	btrfs_put_ordered_extent(ordered);
4684411fc6bcSAndi Kleen 	return ret;
46855d4f98a2SYan Zheng }
46863fd0a558SYan, Zheng 
468783d4cfd4SJosef Bacik int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
46883fd0a558SYan, Zheng 			  struct btrfs_root *root, struct extent_buffer *buf,
46893fd0a558SYan, Zheng 			  struct extent_buffer *cow)
46903fd0a558SYan, Zheng {
46913fd0a558SYan, Zheng 	struct reloc_control *rc;
46923fd0a558SYan, Zheng 	struct backref_node *node;
46933fd0a558SYan, Zheng 	int first_cow = 0;
46943fd0a558SYan, Zheng 	int level;
469583d4cfd4SJosef Bacik 	int ret = 0;
46963fd0a558SYan, Zheng 
46973fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
46983fd0a558SYan, Zheng 	if (!rc)
469983d4cfd4SJosef Bacik 		return 0;
47003fd0a558SYan, Zheng 
47013fd0a558SYan, Zheng 	BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
47023fd0a558SYan, Zheng 	       root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
47033fd0a558SYan, Zheng 
4704c974c464SWang Shilong 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
4705c974c464SWang Shilong 		if (buf == root->node)
4706c974c464SWang Shilong 			__update_reloc_root(root, cow->start);
4707c974c464SWang Shilong 	}
4708c974c464SWang Shilong 
47093fd0a558SYan, Zheng 	level = btrfs_header_level(buf);
47103fd0a558SYan, Zheng 	if (btrfs_header_generation(buf) <=
47113fd0a558SYan, Zheng 	    btrfs_root_last_snapshot(&root->root_item))
47123fd0a558SYan, Zheng 		first_cow = 1;
47133fd0a558SYan, Zheng 
47143fd0a558SYan, Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
47153fd0a558SYan, Zheng 	    rc->create_reloc_tree) {
47163fd0a558SYan, Zheng 		WARN_ON(!first_cow && level == 0);
47173fd0a558SYan, Zheng 
47183fd0a558SYan, Zheng 		node = rc->backref_cache.path[level];
47193fd0a558SYan, Zheng 		BUG_ON(node->bytenr != buf->start &&
47203fd0a558SYan, Zheng 		       node->new_bytenr != buf->start);
47213fd0a558SYan, Zheng 
47223fd0a558SYan, Zheng 		drop_node_buffer(node);
47233fd0a558SYan, Zheng 		extent_buffer_get(cow);
47243fd0a558SYan, Zheng 		node->eb = cow;
47253fd0a558SYan, Zheng 		node->new_bytenr = cow->start;
47263fd0a558SYan, Zheng 
47273fd0a558SYan, Zheng 		if (!node->pending) {
47283fd0a558SYan, Zheng 			list_move_tail(&node->list,
47293fd0a558SYan, Zheng 				       &rc->backref_cache.pending[level]);
47303fd0a558SYan, Zheng 			node->pending = 1;
47313fd0a558SYan, Zheng 		}
47323fd0a558SYan, Zheng 
47333fd0a558SYan, Zheng 		if (first_cow)
47343fd0a558SYan, Zheng 			__mark_block_processed(rc, node);
47353fd0a558SYan, Zheng 
47363fd0a558SYan, Zheng 		if (first_cow && level > 0)
47373fd0a558SYan, Zheng 			rc->nodes_relocated += buf->len;
47383fd0a558SYan, Zheng 	}
47393fd0a558SYan, Zheng 
474083d4cfd4SJosef Bacik 	if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
47413fd0a558SYan, Zheng 		ret = replace_file_extents(trans, rc, root, cow);
474283d4cfd4SJosef Bacik 	return ret;
47433fd0a558SYan, Zheng }
47443fd0a558SYan, Zheng 
47453fd0a558SYan, Zheng /*
47463fd0a558SYan, Zheng  * called before creating snapshot. it calculates metadata reservation
474701327610SNicholas D Steeves  * required for relocating tree blocks in the snapshot
47483fd0a558SYan, Zheng  */
4749147d256eSZhaolei void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
47503fd0a558SYan, Zheng 			      u64 *bytes_to_reserve)
47513fd0a558SYan, Zheng {
47523fd0a558SYan, Zheng 	struct btrfs_root *root;
47533fd0a558SYan, Zheng 	struct reloc_control *rc;
47543fd0a558SYan, Zheng 
47553fd0a558SYan, Zheng 	root = pending->root;
47563fd0a558SYan, Zheng 	if (!root->reloc_root)
47573fd0a558SYan, Zheng 		return;
47583fd0a558SYan, Zheng 
47593fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
47603fd0a558SYan, Zheng 	if (!rc->merge_reloc_tree)
47613fd0a558SYan, Zheng 		return;
47623fd0a558SYan, Zheng 
47633fd0a558SYan, Zheng 	root = root->reloc_root;
47643fd0a558SYan, Zheng 	BUG_ON(btrfs_root_refs(&root->root_item) == 0);
47653fd0a558SYan, Zheng 	/*
47663fd0a558SYan, Zheng 	 * relocation is in the stage of merging trees. the space
47673fd0a558SYan, Zheng 	 * used by merging a reloc tree is twice the size of
47683fd0a558SYan, Zheng 	 * relocated tree nodes in the worst case. half for cowing
47693fd0a558SYan, Zheng 	 * the reloc tree, half for cowing the fs tree. the space
47703fd0a558SYan, Zheng 	 * used by cowing the reloc tree will be freed after the
47713fd0a558SYan, Zheng 	 * tree is dropped. if we create snapshot, cowing the fs
47723fd0a558SYan, Zheng 	 * tree may use more space than it frees. so we need
47733fd0a558SYan, Zheng 	 * reserve extra space.
47743fd0a558SYan, Zheng 	 */
47753fd0a558SYan, Zheng 	*bytes_to_reserve += rc->nodes_relocated;
47763fd0a558SYan, Zheng }
47773fd0a558SYan, Zheng 
47783fd0a558SYan, Zheng /*
47793fd0a558SYan, Zheng  * called after snapshot is created. migrate block reservation
47803fd0a558SYan, Zheng  * and create reloc root for the newly created snapshot
47813fd0a558SYan, Zheng  */
478249b25e05SJeff Mahoney int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
47833fd0a558SYan, Zheng 			       struct btrfs_pending_snapshot *pending)
47843fd0a558SYan, Zheng {
47853fd0a558SYan, Zheng 	struct btrfs_root *root = pending->root;
47863fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
47873fd0a558SYan, Zheng 	struct btrfs_root *new_root;
47883fd0a558SYan, Zheng 	struct reloc_control *rc;
47893fd0a558SYan, Zheng 	int ret;
47903fd0a558SYan, Zheng 
47913fd0a558SYan, Zheng 	if (!root->reloc_root)
479249b25e05SJeff Mahoney 		return 0;
47933fd0a558SYan, Zheng 
47943fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
47953fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated;
47963fd0a558SYan, Zheng 
47973fd0a558SYan, Zheng 	if (rc->merge_reloc_tree) {
47983fd0a558SYan, Zheng 		ret = btrfs_block_rsv_migrate(&pending->block_rsv,
47993fd0a558SYan, Zheng 					      rc->block_rsv,
480025d609f8SJosef Bacik 					      rc->nodes_relocated, 1);
480149b25e05SJeff Mahoney 		if (ret)
480249b25e05SJeff Mahoney 			return ret;
48033fd0a558SYan, Zheng 	}
48043fd0a558SYan, Zheng 
48053fd0a558SYan, Zheng 	new_root = pending->snap;
48063fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root->reloc_root,
48073fd0a558SYan, Zheng 				       new_root->root_key.objectid);
480849b25e05SJeff Mahoney 	if (IS_ERR(reloc_root))
480949b25e05SJeff Mahoney 		return PTR_ERR(reloc_root);
48103fd0a558SYan, Zheng 
4811ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
4812ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
48133fd0a558SYan, Zheng 	new_root->reloc_root = reloc_root;
48143fd0a558SYan, Zheng 
481549b25e05SJeff Mahoney 	if (rc->create_reloc_tree)
48163fd0a558SYan, Zheng 		ret = clone_backref_node(trans, rc, root, reloc_root);
481749b25e05SJeff Mahoney 	return ret;
48183fd0a558SYan, Zheng }
4819