xref: /openbmc/linux/fs/btrfs/relocation.c (revision efe120a0)
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"
345d4f98a2SYan Zheng 
355d4f98a2SYan Zheng /*
365d4f98a2SYan Zheng  * backref_node, mapping_node and tree_block start with this
375d4f98a2SYan Zheng  */
385d4f98a2SYan Zheng struct tree_entry {
395d4f98a2SYan Zheng 	struct rb_node rb_node;
405d4f98a2SYan Zheng 	u64 bytenr;
415d4f98a2SYan Zheng };
425d4f98a2SYan Zheng 
435d4f98a2SYan Zheng /*
445d4f98a2SYan Zheng  * present a tree block in the backref cache
455d4f98a2SYan Zheng  */
465d4f98a2SYan Zheng struct backref_node {
475d4f98a2SYan Zheng 	struct rb_node rb_node;
485d4f98a2SYan Zheng 	u64 bytenr;
493fd0a558SYan, Zheng 
503fd0a558SYan, Zheng 	u64 new_bytenr;
513fd0a558SYan, Zheng 	/* objectid of tree block owner, can be not uptodate */
525d4f98a2SYan Zheng 	u64 owner;
533fd0a558SYan, Zheng 	/* link to pending, changed or detached list */
543fd0a558SYan, Zheng 	struct list_head list;
555d4f98a2SYan Zheng 	/* list of upper level blocks reference this block */
565d4f98a2SYan Zheng 	struct list_head upper;
575d4f98a2SYan Zheng 	/* list of child blocks in the cache */
585d4f98a2SYan Zheng 	struct list_head lower;
595d4f98a2SYan Zheng 	/* NULL if this node is not tree root */
605d4f98a2SYan Zheng 	struct btrfs_root *root;
615d4f98a2SYan Zheng 	/* extent buffer got by COW the block */
625d4f98a2SYan Zheng 	struct extent_buffer *eb;
635d4f98a2SYan Zheng 	/* level of tree block */
645d4f98a2SYan Zheng 	unsigned int level:8;
653fd0a558SYan, Zheng 	/* is the block in non-reference counted tree */
663fd0a558SYan, Zheng 	unsigned int cowonly:1;
673fd0a558SYan, Zheng 	/* 1 if no child node in the cache */
685d4f98a2SYan Zheng 	unsigned int lowest:1;
695d4f98a2SYan Zheng 	/* is the extent buffer locked */
705d4f98a2SYan Zheng 	unsigned int locked:1;
715d4f98a2SYan Zheng 	/* has the block been processed */
725d4f98a2SYan Zheng 	unsigned int processed:1;
735d4f98a2SYan Zheng 	/* have backrefs of this block been checked */
745d4f98a2SYan Zheng 	unsigned int checked:1;
753fd0a558SYan, Zheng 	/*
763fd0a558SYan, Zheng 	 * 1 if corresponding block has been cowed but some upper
773fd0a558SYan, Zheng 	 * level block pointers may not point to the new location
783fd0a558SYan, Zheng 	 */
793fd0a558SYan, Zheng 	unsigned int pending:1;
803fd0a558SYan, Zheng 	/*
813fd0a558SYan, Zheng 	 * 1 if the backref node isn't connected to any other
823fd0a558SYan, Zheng 	 * backref node.
833fd0a558SYan, Zheng 	 */
843fd0a558SYan, Zheng 	unsigned int detached:1;
855d4f98a2SYan Zheng };
865d4f98a2SYan Zheng 
875d4f98a2SYan Zheng /*
885d4f98a2SYan Zheng  * present a block pointer in the backref cache
895d4f98a2SYan Zheng  */
905d4f98a2SYan Zheng struct backref_edge {
915d4f98a2SYan Zheng 	struct list_head list[2];
925d4f98a2SYan Zheng 	struct backref_node *node[2];
935d4f98a2SYan Zheng };
945d4f98a2SYan Zheng 
955d4f98a2SYan Zheng #define LOWER	0
965d4f98a2SYan Zheng #define UPPER	1
970647bf56SWang Shilong #define RELOCATION_RESERVED_NODES	256
985d4f98a2SYan Zheng 
995d4f98a2SYan Zheng struct backref_cache {
1005d4f98a2SYan Zheng 	/* red black tree of all backref nodes in the cache */
1015d4f98a2SYan Zheng 	struct rb_root rb_root;
1023fd0a558SYan, Zheng 	/* for passing backref nodes to btrfs_reloc_cow_block */
1033fd0a558SYan, Zheng 	struct backref_node *path[BTRFS_MAX_LEVEL];
1043fd0a558SYan, Zheng 	/*
1053fd0a558SYan, Zheng 	 * list of blocks that have been cowed but some block
1063fd0a558SYan, Zheng 	 * pointers in upper level blocks may not reflect the
1073fd0a558SYan, Zheng 	 * new location
1083fd0a558SYan, Zheng 	 */
1095d4f98a2SYan Zheng 	struct list_head pending[BTRFS_MAX_LEVEL];
1103fd0a558SYan, Zheng 	/* list of backref nodes with no child node */
1113fd0a558SYan, Zheng 	struct list_head leaves;
1123fd0a558SYan, Zheng 	/* list of blocks that have been cowed in current transaction */
1133fd0a558SYan, Zheng 	struct list_head changed;
1143fd0a558SYan, Zheng 	/* list of detached backref node. */
1153fd0a558SYan, Zheng 	struct list_head detached;
1163fd0a558SYan, Zheng 
1173fd0a558SYan, Zheng 	u64 last_trans;
1183fd0a558SYan, Zheng 
1193fd0a558SYan, Zheng 	int nr_nodes;
1203fd0a558SYan, Zheng 	int nr_edges;
1215d4f98a2SYan Zheng };
1225d4f98a2SYan Zheng 
1235d4f98a2SYan Zheng /*
1245d4f98a2SYan Zheng  * map address of tree root to tree
1255d4f98a2SYan Zheng  */
1265d4f98a2SYan Zheng struct mapping_node {
1275d4f98a2SYan Zheng 	struct rb_node rb_node;
1285d4f98a2SYan Zheng 	u64 bytenr;
1295d4f98a2SYan Zheng 	void *data;
1305d4f98a2SYan Zheng };
1315d4f98a2SYan Zheng 
1325d4f98a2SYan Zheng struct mapping_tree {
1335d4f98a2SYan Zheng 	struct rb_root rb_root;
1345d4f98a2SYan Zheng 	spinlock_t lock;
1355d4f98a2SYan Zheng };
1365d4f98a2SYan Zheng 
1375d4f98a2SYan Zheng /*
1385d4f98a2SYan Zheng  * present a tree block to process
1395d4f98a2SYan Zheng  */
1405d4f98a2SYan Zheng struct tree_block {
1415d4f98a2SYan Zheng 	struct rb_node rb_node;
1425d4f98a2SYan Zheng 	u64 bytenr;
1435d4f98a2SYan Zheng 	struct btrfs_key key;
1445d4f98a2SYan Zheng 	unsigned int level:8;
1455d4f98a2SYan Zheng 	unsigned int key_ready:1;
1465d4f98a2SYan Zheng };
1475d4f98a2SYan Zheng 
1480257bb82SYan, Zheng #define MAX_EXTENTS 128
1490257bb82SYan, Zheng 
1500257bb82SYan, Zheng struct file_extent_cluster {
1510257bb82SYan, Zheng 	u64 start;
1520257bb82SYan, Zheng 	u64 end;
1530257bb82SYan, Zheng 	u64 boundary[MAX_EXTENTS];
1540257bb82SYan, Zheng 	unsigned int nr;
1550257bb82SYan, Zheng };
1560257bb82SYan, Zheng 
1575d4f98a2SYan Zheng struct reloc_control {
1585d4f98a2SYan Zheng 	/* block group to relocate */
1595d4f98a2SYan Zheng 	struct btrfs_block_group_cache *block_group;
1605d4f98a2SYan Zheng 	/* extent tree */
1615d4f98a2SYan Zheng 	struct btrfs_root *extent_root;
1625d4f98a2SYan Zheng 	/* inode for moving data */
1635d4f98a2SYan Zheng 	struct inode *data_inode;
1643fd0a558SYan, Zheng 
1653fd0a558SYan, Zheng 	struct btrfs_block_rsv *block_rsv;
1663fd0a558SYan, Zheng 
1673fd0a558SYan, Zheng 	struct backref_cache backref_cache;
1683fd0a558SYan, Zheng 
1693fd0a558SYan, Zheng 	struct file_extent_cluster cluster;
1705d4f98a2SYan Zheng 	/* tree blocks have been processed */
1715d4f98a2SYan Zheng 	struct extent_io_tree processed_blocks;
1725d4f98a2SYan Zheng 	/* map start of tree root to corresponding reloc tree */
1735d4f98a2SYan Zheng 	struct mapping_tree reloc_root_tree;
1745d4f98a2SYan Zheng 	/* list of reloc trees */
1755d4f98a2SYan Zheng 	struct list_head reloc_roots;
1763fd0a558SYan, Zheng 	/* size of metadata reservation for merging reloc trees */
1773fd0a558SYan, Zheng 	u64 merging_rsv_size;
1783fd0a558SYan, Zheng 	/* size of relocated tree nodes */
1793fd0a558SYan, Zheng 	u64 nodes_relocated;
1800647bf56SWang Shilong 	/* reserved size for block group relocation*/
1810647bf56SWang Shilong 	u64 reserved_bytes;
1823fd0a558SYan, Zheng 
1835d4f98a2SYan Zheng 	u64 search_start;
1845d4f98a2SYan Zheng 	u64 extents_found;
1853fd0a558SYan, Zheng 
1863fd0a558SYan, Zheng 	unsigned int stage:8;
1873fd0a558SYan, Zheng 	unsigned int create_reloc_tree:1;
1883fd0a558SYan, Zheng 	unsigned int merge_reloc_tree:1;
1895d4f98a2SYan Zheng 	unsigned int found_file_extent:1;
1905d4f98a2SYan Zheng };
1915d4f98a2SYan Zheng 
1925d4f98a2SYan Zheng /* stages of data relocation */
1935d4f98a2SYan Zheng #define MOVE_DATA_EXTENTS	0
1945d4f98a2SYan Zheng #define UPDATE_DATA_PTRS	1
1955d4f98a2SYan Zheng 
1963fd0a558SYan, Zheng static void remove_backref_node(struct backref_cache *cache,
1973fd0a558SYan, Zheng 				struct backref_node *node);
1983fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
1993fd0a558SYan, Zheng 				   struct backref_node *node);
2005d4f98a2SYan Zheng 
2015d4f98a2SYan Zheng static void mapping_tree_init(struct mapping_tree *tree)
2025d4f98a2SYan Zheng {
2036bef4d31SEric Paris 	tree->rb_root = RB_ROOT;
2045d4f98a2SYan Zheng 	spin_lock_init(&tree->lock);
2055d4f98a2SYan Zheng }
2065d4f98a2SYan Zheng 
2075d4f98a2SYan Zheng static void backref_cache_init(struct backref_cache *cache)
2085d4f98a2SYan Zheng {
2095d4f98a2SYan Zheng 	int i;
2106bef4d31SEric Paris 	cache->rb_root = RB_ROOT;
2115d4f98a2SYan Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2125d4f98a2SYan Zheng 		INIT_LIST_HEAD(&cache->pending[i]);
2133fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->changed);
2143fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->detached);
2153fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->leaves);
2165d4f98a2SYan Zheng }
2175d4f98a2SYan Zheng 
2183fd0a558SYan, Zheng static void backref_cache_cleanup(struct backref_cache *cache)
2195d4f98a2SYan Zheng {
2203fd0a558SYan, Zheng 	struct backref_node *node;
2213fd0a558SYan, Zheng 	int i;
2223fd0a558SYan, Zheng 
2233fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
2243fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
2253fd0a558SYan, Zheng 				  struct backref_node, list);
2263fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2273fd0a558SYan, Zheng 	}
2283fd0a558SYan, Zheng 
2293fd0a558SYan, Zheng 	while (!list_empty(&cache->leaves)) {
2303fd0a558SYan, Zheng 		node = list_entry(cache->leaves.next,
2313fd0a558SYan, Zheng 				  struct backref_node, lower);
2323fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2333fd0a558SYan, Zheng 	}
2343fd0a558SYan, Zheng 
2353fd0a558SYan, Zheng 	cache->last_trans = 0;
2363fd0a558SYan, Zheng 
2373fd0a558SYan, Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2383fd0a558SYan, Zheng 		BUG_ON(!list_empty(&cache->pending[i]));
2393fd0a558SYan, Zheng 	BUG_ON(!list_empty(&cache->changed));
2403fd0a558SYan, Zheng 	BUG_ON(!list_empty(&cache->detached));
2413fd0a558SYan, Zheng 	BUG_ON(!RB_EMPTY_ROOT(&cache->rb_root));
2423fd0a558SYan, Zheng 	BUG_ON(cache->nr_nodes);
2433fd0a558SYan, Zheng 	BUG_ON(cache->nr_edges);
2443fd0a558SYan, Zheng }
2453fd0a558SYan, Zheng 
2463fd0a558SYan, Zheng static struct backref_node *alloc_backref_node(struct backref_cache *cache)
2473fd0a558SYan, Zheng {
2483fd0a558SYan, Zheng 	struct backref_node *node;
2493fd0a558SYan, Zheng 
2503fd0a558SYan, Zheng 	node = kzalloc(sizeof(*node), GFP_NOFS);
2513fd0a558SYan, Zheng 	if (node) {
2523fd0a558SYan, Zheng 		INIT_LIST_HEAD(&node->list);
2535d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->upper);
2545d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->lower);
2555d4f98a2SYan Zheng 		RB_CLEAR_NODE(&node->rb_node);
2563fd0a558SYan, Zheng 		cache->nr_nodes++;
2573fd0a558SYan, Zheng 	}
2583fd0a558SYan, Zheng 	return node;
2593fd0a558SYan, Zheng }
2603fd0a558SYan, Zheng 
2613fd0a558SYan, Zheng static void free_backref_node(struct backref_cache *cache,
2623fd0a558SYan, Zheng 			      struct backref_node *node)
2633fd0a558SYan, Zheng {
2643fd0a558SYan, Zheng 	if (node) {
2653fd0a558SYan, Zheng 		cache->nr_nodes--;
2663fd0a558SYan, Zheng 		kfree(node);
2673fd0a558SYan, Zheng 	}
2683fd0a558SYan, Zheng }
2693fd0a558SYan, Zheng 
2703fd0a558SYan, Zheng static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
2713fd0a558SYan, Zheng {
2723fd0a558SYan, Zheng 	struct backref_edge *edge;
2733fd0a558SYan, Zheng 
2743fd0a558SYan, Zheng 	edge = kzalloc(sizeof(*edge), GFP_NOFS);
2753fd0a558SYan, Zheng 	if (edge)
2763fd0a558SYan, Zheng 		cache->nr_edges++;
2773fd0a558SYan, Zheng 	return edge;
2783fd0a558SYan, Zheng }
2793fd0a558SYan, Zheng 
2803fd0a558SYan, Zheng static void free_backref_edge(struct backref_cache *cache,
2813fd0a558SYan, Zheng 			      struct backref_edge *edge)
2823fd0a558SYan, Zheng {
2833fd0a558SYan, Zheng 	if (edge) {
2843fd0a558SYan, Zheng 		cache->nr_edges--;
2853fd0a558SYan, Zheng 		kfree(edge);
2863fd0a558SYan, Zheng 	}
2875d4f98a2SYan Zheng }
2885d4f98a2SYan Zheng 
2895d4f98a2SYan Zheng static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
2905d4f98a2SYan Zheng 				   struct rb_node *node)
2915d4f98a2SYan Zheng {
2925d4f98a2SYan Zheng 	struct rb_node **p = &root->rb_node;
2935d4f98a2SYan Zheng 	struct rb_node *parent = NULL;
2945d4f98a2SYan Zheng 	struct tree_entry *entry;
2955d4f98a2SYan Zheng 
2965d4f98a2SYan Zheng 	while (*p) {
2975d4f98a2SYan Zheng 		parent = *p;
2985d4f98a2SYan Zheng 		entry = rb_entry(parent, struct tree_entry, rb_node);
2995d4f98a2SYan Zheng 
3005d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3015d4f98a2SYan Zheng 			p = &(*p)->rb_left;
3025d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3035d4f98a2SYan Zheng 			p = &(*p)->rb_right;
3045d4f98a2SYan Zheng 		else
3055d4f98a2SYan Zheng 			return parent;
3065d4f98a2SYan Zheng 	}
3075d4f98a2SYan Zheng 
3085d4f98a2SYan Zheng 	rb_link_node(node, parent, p);
3095d4f98a2SYan Zheng 	rb_insert_color(node, root);
3105d4f98a2SYan Zheng 	return NULL;
3115d4f98a2SYan Zheng }
3125d4f98a2SYan Zheng 
3135d4f98a2SYan Zheng static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
3145d4f98a2SYan Zheng {
3155d4f98a2SYan Zheng 	struct rb_node *n = root->rb_node;
3165d4f98a2SYan Zheng 	struct tree_entry *entry;
3175d4f98a2SYan Zheng 
3185d4f98a2SYan Zheng 	while (n) {
3195d4f98a2SYan Zheng 		entry = rb_entry(n, struct tree_entry, rb_node);
3205d4f98a2SYan Zheng 
3215d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3225d4f98a2SYan Zheng 			n = n->rb_left;
3235d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3245d4f98a2SYan Zheng 			n = n->rb_right;
3255d4f98a2SYan Zheng 		else
3265d4f98a2SYan Zheng 			return n;
3275d4f98a2SYan Zheng 	}
3285d4f98a2SYan Zheng 	return NULL;
3295d4f98a2SYan Zheng }
3305d4f98a2SYan Zheng 
33148a3b636SEric Sandeen static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
33243c04fb1SJeff Mahoney {
33343c04fb1SJeff Mahoney 
33443c04fb1SJeff Mahoney 	struct btrfs_fs_info *fs_info = NULL;
33543c04fb1SJeff Mahoney 	struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
33643c04fb1SJeff Mahoney 					      rb_node);
33743c04fb1SJeff Mahoney 	if (bnode->root)
33843c04fb1SJeff Mahoney 		fs_info = bnode->root->fs_info;
33943c04fb1SJeff Mahoney 	btrfs_panic(fs_info, errno, "Inconsistency in backref cache "
340c1c9ff7cSGeert Uytterhoeven 		    "found at offset %llu\n", bytenr);
34143c04fb1SJeff Mahoney }
34243c04fb1SJeff Mahoney 
3435d4f98a2SYan Zheng /*
3445d4f98a2SYan Zheng  * walk up backref nodes until reach node presents tree root
3455d4f98a2SYan Zheng  */
3465d4f98a2SYan Zheng static struct backref_node *walk_up_backref(struct backref_node *node,
3475d4f98a2SYan Zheng 					    struct backref_edge *edges[],
3485d4f98a2SYan Zheng 					    int *index)
3495d4f98a2SYan Zheng {
3505d4f98a2SYan Zheng 	struct backref_edge *edge;
3515d4f98a2SYan Zheng 	int idx = *index;
3525d4f98a2SYan Zheng 
3535d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
3545d4f98a2SYan Zheng 		edge = list_entry(node->upper.next,
3555d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3565d4f98a2SYan Zheng 		edges[idx++] = edge;
3575d4f98a2SYan Zheng 		node = edge->node[UPPER];
3585d4f98a2SYan Zheng 	}
3593fd0a558SYan, Zheng 	BUG_ON(node->detached);
3605d4f98a2SYan Zheng 	*index = idx;
3615d4f98a2SYan Zheng 	return node;
3625d4f98a2SYan Zheng }
3635d4f98a2SYan Zheng 
3645d4f98a2SYan Zheng /*
3655d4f98a2SYan Zheng  * walk down backref nodes to find start of next reference path
3665d4f98a2SYan Zheng  */
3675d4f98a2SYan Zheng static struct backref_node *walk_down_backref(struct backref_edge *edges[],
3685d4f98a2SYan Zheng 					      int *index)
3695d4f98a2SYan Zheng {
3705d4f98a2SYan Zheng 	struct backref_edge *edge;
3715d4f98a2SYan Zheng 	struct backref_node *lower;
3725d4f98a2SYan Zheng 	int idx = *index;
3735d4f98a2SYan Zheng 
3745d4f98a2SYan Zheng 	while (idx > 0) {
3755d4f98a2SYan Zheng 		edge = edges[idx - 1];
3765d4f98a2SYan Zheng 		lower = edge->node[LOWER];
3775d4f98a2SYan Zheng 		if (list_is_last(&edge->list[LOWER], &lower->upper)) {
3785d4f98a2SYan Zheng 			idx--;
3795d4f98a2SYan Zheng 			continue;
3805d4f98a2SYan Zheng 		}
3815d4f98a2SYan Zheng 		edge = list_entry(edge->list[LOWER].next,
3825d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3835d4f98a2SYan Zheng 		edges[idx - 1] = edge;
3845d4f98a2SYan Zheng 		*index = idx;
3855d4f98a2SYan Zheng 		return edge->node[UPPER];
3865d4f98a2SYan Zheng 	}
3875d4f98a2SYan Zheng 	*index = 0;
3885d4f98a2SYan Zheng 	return NULL;
3895d4f98a2SYan Zheng }
3905d4f98a2SYan Zheng 
3913fd0a558SYan, Zheng static void unlock_node_buffer(struct backref_node *node)
3925d4f98a2SYan Zheng {
3935d4f98a2SYan Zheng 	if (node->locked) {
3945d4f98a2SYan Zheng 		btrfs_tree_unlock(node->eb);
3955d4f98a2SYan Zheng 		node->locked = 0;
3965d4f98a2SYan Zheng 	}
3973fd0a558SYan, Zheng }
3983fd0a558SYan, Zheng 
3993fd0a558SYan, Zheng static void drop_node_buffer(struct backref_node *node)
4003fd0a558SYan, Zheng {
4013fd0a558SYan, Zheng 	if (node->eb) {
4023fd0a558SYan, Zheng 		unlock_node_buffer(node);
4035d4f98a2SYan Zheng 		free_extent_buffer(node->eb);
4045d4f98a2SYan Zheng 		node->eb = NULL;
4055d4f98a2SYan Zheng 	}
4065d4f98a2SYan Zheng }
4075d4f98a2SYan Zheng 
4085d4f98a2SYan Zheng static void drop_backref_node(struct backref_cache *tree,
4095d4f98a2SYan Zheng 			      struct backref_node *node)
4105d4f98a2SYan Zheng {
4115d4f98a2SYan Zheng 	BUG_ON(!list_empty(&node->upper));
4125d4f98a2SYan Zheng 
4135d4f98a2SYan Zheng 	drop_node_buffer(node);
4143fd0a558SYan, Zheng 	list_del(&node->list);
4155d4f98a2SYan Zheng 	list_del(&node->lower);
4163fd0a558SYan, Zheng 	if (!RB_EMPTY_NODE(&node->rb_node))
4175d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &tree->rb_root);
4183fd0a558SYan, Zheng 	free_backref_node(tree, node);
4195d4f98a2SYan Zheng }
4205d4f98a2SYan Zheng 
4215d4f98a2SYan Zheng /*
4225d4f98a2SYan Zheng  * remove a backref node from the backref cache
4235d4f98a2SYan Zheng  */
4245d4f98a2SYan Zheng static void remove_backref_node(struct backref_cache *cache,
4255d4f98a2SYan Zheng 				struct backref_node *node)
4265d4f98a2SYan Zheng {
4275d4f98a2SYan Zheng 	struct backref_node *upper;
4285d4f98a2SYan Zheng 	struct backref_edge *edge;
4295d4f98a2SYan Zheng 
4305d4f98a2SYan Zheng 	if (!node)
4315d4f98a2SYan Zheng 		return;
4325d4f98a2SYan Zheng 
4333fd0a558SYan, Zheng 	BUG_ON(!node->lowest && !node->detached);
4345d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
4355d4f98a2SYan Zheng 		edge = list_entry(node->upper.next, struct backref_edge,
4365d4f98a2SYan Zheng 				  list[LOWER]);
4375d4f98a2SYan Zheng 		upper = edge->node[UPPER];
4385d4f98a2SYan Zheng 		list_del(&edge->list[LOWER]);
4395d4f98a2SYan Zheng 		list_del(&edge->list[UPPER]);
4403fd0a558SYan, Zheng 		free_backref_edge(cache, edge);
4413fd0a558SYan, Zheng 
4423fd0a558SYan, Zheng 		if (RB_EMPTY_NODE(&upper->rb_node)) {
4433fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->upper));
4443fd0a558SYan, Zheng 			drop_backref_node(cache, node);
4453fd0a558SYan, Zheng 			node = upper;
4463fd0a558SYan, Zheng 			node->lowest = 1;
4473fd0a558SYan, Zheng 			continue;
4483fd0a558SYan, Zheng 		}
4495d4f98a2SYan Zheng 		/*
4503fd0a558SYan, Zheng 		 * add the node to leaf node list if no other
4515d4f98a2SYan Zheng 		 * child block cached.
4525d4f98a2SYan Zheng 		 */
4535d4f98a2SYan Zheng 		if (list_empty(&upper->lower)) {
4543fd0a558SYan, Zheng 			list_add_tail(&upper->lower, &cache->leaves);
4555d4f98a2SYan Zheng 			upper->lowest = 1;
4565d4f98a2SYan Zheng 		}
4575d4f98a2SYan Zheng 	}
4583fd0a558SYan, Zheng 
4595d4f98a2SYan Zheng 	drop_backref_node(cache, node);
4605d4f98a2SYan Zheng }
4615d4f98a2SYan Zheng 
4623fd0a558SYan, Zheng static void update_backref_node(struct backref_cache *cache,
4633fd0a558SYan, Zheng 				struct backref_node *node, u64 bytenr)
4643fd0a558SYan, Zheng {
4653fd0a558SYan, Zheng 	struct rb_node *rb_node;
4663fd0a558SYan, Zheng 	rb_erase(&node->rb_node, &cache->rb_root);
4673fd0a558SYan, Zheng 	node->bytenr = bytenr;
4683fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
46943c04fb1SJeff Mahoney 	if (rb_node)
47043c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, bytenr);
4713fd0a558SYan, Zheng }
4723fd0a558SYan, Zheng 
4733fd0a558SYan, Zheng /*
4743fd0a558SYan, Zheng  * update backref cache after a transaction commit
4753fd0a558SYan, Zheng  */
4763fd0a558SYan, Zheng static int update_backref_cache(struct btrfs_trans_handle *trans,
4773fd0a558SYan, Zheng 				struct backref_cache *cache)
4783fd0a558SYan, Zheng {
4793fd0a558SYan, Zheng 	struct backref_node *node;
4803fd0a558SYan, Zheng 	int level = 0;
4813fd0a558SYan, Zheng 
4823fd0a558SYan, Zheng 	if (cache->last_trans == 0) {
4833fd0a558SYan, Zheng 		cache->last_trans = trans->transid;
4843fd0a558SYan, Zheng 		return 0;
4853fd0a558SYan, Zheng 	}
4863fd0a558SYan, Zheng 
4873fd0a558SYan, Zheng 	if (cache->last_trans == trans->transid)
4883fd0a558SYan, Zheng 		return 0;
4893fd0a558SYan, Zheng 
4903fd0a558SYan, Zheng 	/*
4913fd0a558SYan, Zheng 	 * detached nodes are used to avoid unnecessary backref
4923fd0a558SYan, Zheng 	 * lookup. transaction commit changes the extent tree.
4933fd0a558SYan, Zheng 	 * so the detached nodes are no longer useful.
4943fd0a558SYan, Zheng 	 */
4953fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
4963fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
4973fd0a558SYan, Zheng 				  struct backref_node, list);
4983fd0a558SYan, Zheng 		remove_backref_node(cache, node);
4993fd0a558SYan, Zheng 	}
5003fd0a558SYan, Zheng 
5013fd0a558SYan, Zheng 	while (!list_empty(&cache->changed)) {
5023fd0a558SYan, Zheng 		node = list_entry(cache->changed.next,
5033fd0a558SYan, Zheng 				  struct backref_node, list);
5043fd0a558SYan, Zheng 		list_del_init(&node->list);
5053fd0a558SYan, Zheng 		BUG_ON(node->pending);
5063fd0a558SYan, Zheng 		update_backref_node(cache, node, node->new_bytenr);
5073fd0a558SYan, Zheng 	}
5083fd0a558SYan, Zheng 
5093fd0a558SYan, Zheng 	/*
5103fd0a558SYan, Zheng 	 * some nodes can be left in the pending list if there were
5113fd0a558SYan, Zheng 	 * errors during processing the pending nodes.
5123fd0a558SYan, Zheng 	 */
5133fd0a558SYan, Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
5143fd0a558SYan, Zheng 		list_for_each_entry(node, &cache->pending[level], list) {
5153fd0a558SYan, Zheng 			BUG_ON(!node->pending);
5163fd0a558SYan, Zheng 			if (node->bytenr == node->new_bytenr)
5173fd0a558SYan, Zheng 				continue;
5183fd0a558SYan, Zheng 			update_backref_node(cache, node, node->new_bytenr);
5193fd0a558SYan, Zheng 		}
5203fd0a558SYan, Zheng 	}
5213fd0a558SYan, Zheng 
5223fd0a558SYan, Zheng 	cache->last_trans = 0;
5233fd0a558SYan, Zheng 	return 1;
5243fd0a558SYan, Zheng }
5253fd0a558SYan, Zheng 
526f2a97a9dSDavid Sterba 
5273fd0a558SYan, Zheng static int should_ignore_root(struct btrfs_root *root)
5283fd0a558SYan, Zheng {
5293fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
5303fd0a558SYan, Zheng 
5313fd0a558SYan, Zheng 	if (!root->ref_cows)
5323fd0a558SYan, Zheng 		return 0;
5333fd0a558SYan, Zheng 
5343fd0a558SYan, Zheng 	reloc_root = root->reloc_root;
5353fd0a558SYan, Zheng 	if (!reloc_root)
5363fd0a558SYan, Zheng 		return 0;
5373fd0a558SYan, Zheng 
5383fd0a558SYan, Zheng 	if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
5393fd0a558SYan, Zheng 	    root->fs_info->running_transaction->transid - 1)
5403fd0a558SYan, Zheng 		return 0;
5413fd0a558SYan, Zheng 	/*
5423fd0a558SYan, Zheng 	 * if there is reloc tree and it was created in previous
5433fd0a558SYan, Zheng 	 * transaction backref lookup can find the reloc tree,
5443fd0a558SYan, Zheng 	 * so backref node for the fs tree root is useless for
5453fd0a558SYan, Zheng 	 * relocation.
5463fd0a558SYan, Zheng 	 */
5473fd0a558SYan, Zheng 	return 1;
5483fd0a558SYan, Zheng }
5495d4f98a2SYan Zheng /*
5505d4f98a2SYan Zheng  * find reloc tree by address of tree root
5515d4f98a2SYan Zheng  */
5525d4f98a2SYan Zheng static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
5535d4f98a2SYan Zheng 					  u64 bytenr)
5545d4f98a2SYan Zheng {
5555d4f98a2SYan Zheng 	struct rb_node *rb_node;
5565d4f98a2SYan Zheng 	struct mapping_node *node;
5575d4f98a2SYan Zheng 	struct btrfs_root *root = NULL;
5585d4f98a2SYan Zheng 
5595d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
5605d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
5615d4f98a2SYan Zheng 	if (rb_node) {
5625d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
5635d4f98a2SYan Zheng 		root = (struct btrfs_root *)node->data;
5645d4f98a2SYan Zheng 	}
5655d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
5665d4f98a2SYan Zheng 	return root;
5675d4f98a2SYan Zheng }
5685d4f98a2SYan Zheng 
5695d4f98a2SYan Zheng static int is_cowonly_root(u64 root_objectid)
5705d4f98a2SYan Zheng {
5715d4f98a2SYan Zheng 	if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
5725d4f98a2SYan Zheng 	    root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
5735d4f98a2SYan Zheng 	    root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
5745d4f98a2SYan Zheng 	    root_objectid == BTRFS_DEV_TREE_OBJECTID ||
5755d4f98a2SYan Zheng 	    root_objectid == BTRFS_TREE_LOG_OBJECTID ||
57666463748SWang Shilong 	    root_objectid == BTRFS_CSUM_TREE_OBJECTID ||
57766463748SWang Shilong 	    root_objectid == BTRFS_UUID_TREE_OBJECTID ||
57866463748SWang Shilong 	    root_objectid == BTRFS_QUOTA_TREE_OBJECTID)
5795d4f98a2SYan Zheng 		return 1;
5805d4f98a2SYan Zheng 	return 0;
5815d4f98a2SYan Zheng }
5825d4f98a2SYan Zheng 
5835d4f98a2SYan Zheng static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
5845d4f98a2SYan Zheng 					u64 root_objectid)
5855d4f98a2SYan Zheng {
5865d4f98a2SYan Zheng 	struct btrfs_key key;
5875d4f98a2SYan Zheng 
5885d4f98a2SYan Zheng 	key.objectid = root_objectid;
5895d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
5905d4f98a2SYan Zheng 	if (is_cowonly_root(root_objectid))
5915d4f98a2SYan Zheng 		key.offset = 0;
5925d4f98a2SYan Zheng 	else
5935d4f98a2SYan Zheng 		key.offset = (u64)-1;
5945d4f98a2SYan Zheng 
595c00869f1SMiao Xie 	return btrfs_get_fs_root(fs_info, &key, false);
5965d4f98a2SYan Zheng }
5975d4f98a2SYan Zheng 
5985d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5995d4f98a2SYan Zheng static noinline_for_stack
6005d4f98a2SYan Zheng struct btrfs_root *find_tree_root(struct reloc_control *rc,
6015d4f98a2SYan Zheng 				  struct extent_buffer *leaf,
6025d4f98a2SYan Zheng 				  struct btrfs_extent_ref_v0 *ref0)
6035d4f98a2SYan Zheng {
6045d4f98a2SYan Zheng 	struct btrfs_root *root;
6055d4f98a2SYan Zheng 	u64 root_objectid = btrfs_ref_root_v0(leaf, ref0);
6065d4f98a2SYan Zheng 	u64 generation = btrfs_ref_generation_v0(leaf, ref0);
6075d4f98a2SYan Zheng 
6085d4f98a2SYan Zheng 	BUG_ON(root_objectid == BTRFS_TREE_RELOC_OBJECTID);
6095d4f98a2SYan Zheng 
6105d4f98a2SYan Zheng 	root = read_fs_root(rc->extent_root->fs_info, root_objectid);
6115d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
6125d4f98a2SYan Zheng 
6135d4f98a2SYan Zheng 	if (root->ref_cows &&
6145d4f98a2SYan Zheng 	    generation != btrfs_root_generation(&root->root_item))
6155d4f98a2SYan Zheng 		return NULL;
6165d4f98a2SYan Zheng 
6175d4f98a2SYan Zheng 	return root;
6185d4f98a2SYan Zheng }
6195d4f98a2SYan Zheng #endif
6205d4f98a2SYan Zheng 
6215d4f98a2SYan Zheng static noinline_for_stack
6225d4f98a2SYan Zheng int find_inline_backref(struct extent_buffer *leaf, int slot,
6235d4f98a2SYan Zheng 			unsigned long *ptr, unsigned long *end)
6245d4f98a2SYan Zheng {
6253173a18fSJosef Bacik 	struct btrfs_key key;
6265d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
6275d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
6285d4f98a2SYan Zheng 	u32 item_size;
6295d4f98a2SYan Zheng 
6303173a18fSJosef Bacik 	btrfs_item_key_to_cpu(leaf, &key, slot);
6313173a18fSJosef Bacik 
6325d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(leaf, slot);
6335d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6345d4f98a2SYan Zheng 	if (item_size < sizeof(*ei)) {
6355d4f98a2SYan Zheng 		WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
6365d4f98a2SYan Zheng 		return 1;
6375d4f98a2SYan Zheng 	}
6385d4f98a2SYan Zheng #endif
6395d4f98a2SYan Zheng 	ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
6405d4f98a2SYan Zheng 	WARN_ON(!(btrfs_extent_flags(leaf, ei) &
6415d4f98a2SYan Zheng 		  BTRFS_EXTENT_FLAG_TREE_BLOCK));
6425d4f98a2SYan Zheng 
6433173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6443173a18fSJosef Bacik 	    item_size <= sizeof(*ei) + sizeof(*bi)) {
6455d4f98a2SYan Zheng 		WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
6465d4f98a2SYan Zheng 		return 1;
6475d4f98a2SYan Zheng 	}
648d062d13cSJosef Bacik 	if (key.type == BTRFS_METADATA_ITEM_KEY &&
649d062d13cSJosef Bacik 	    item_size <= sizeof(*ei)) {
650d062d13cSJosef Bacik 		WARN_ON(item_size < sizeof(*ei));
651d062d13cSJosef Bacik 		return 1;
652d062d13cSJosef Bacik 	}
6535d4f98a2SYan Zheng 
6543173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY) {
6555d4f98a2SYan Zheng 		bi = (struct btrfs_tree_block_info *)(ei + 1);
6565d4f98a2SYan Zheng 		*ptr = (unsigned long)(bi + 1);
6573173a18fSJosef Bacik 	} else {
6583173a18fSJosef Bacik 		*ptr = (unsigned long)(ei + 1);
6593173a18fSJosef Bacik 	}
6605d4f98a2SYan Zheng 	*end = (unsigned long)ei + item_size;
6615d4f98a2SYan Zheng 	return 0;
6625d4f98a2SYan Zheng }
6635d4f98a2SYan Zheng 
6645d4f98a2SYan Zheng /*
6655d4f98a2SYan Zheng  * build backref tree for a given tree block. root of the backref tree
6665d4f98a2SYan Zheng  * corresponds the tree block, leaves of the backref tree correspond
6675d4f98a2SYan Zheng  * roots of b-trees that reference the tree block.
6685d4f98a2SYan Zheng  *
6695d4f98a2SYan Zheng  * the basic idea of this function is check backrefs of a given block
6705d4f98a2SYan Zheng  * to find upper level blocks that refernece the block, and then check
6715d4f98a2SYan Zheng  * bakcrefs of these upper level blocks recursively. the recursion stop
6725d4f98a2SYan Zheng  * when tree root is reached or backrefs for the block is cached.
6735d4f98a2SYan Zheng  *
6745d4f98a2SYan Zheng  * NOTE: if we find backrefs for a block are cached, we know backrefs
6755d4f98a2SYan Zheng  * for all upper level blocks that directly/indirectly reference the
6765d4f98a2SYan Zheng  * block are also cached.
6775d4f98a2SYan Zheng  */
6783fd0a558SYan, Zheng static noinline_for_stack
6793fd0a558SYan, Zheng struct backref_node *build_backref_tree(struct reloc_control *rc,
6805d4f98a2SYan Zheng 					struct btrfs_key *node_key,
6815d4f98a2SYan Zheng 					int level, u64 bytenr)
6825d4f98a2SYan Zheng {
6833fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
6845d4f98a2SYan Zheng 	struct btrfs_path *path1;
6855d4f98a2SYan Zheng 	struct btrfs_path *path2;
6865d4f98a2SYan Zheng 	struct extent_buffer *eb;
6875d4f98a2SYan Zheng 	struct btrfs_root *root;
6885d4f98a2SYan Zheng 	struct backref_node *cur;
6895d4f98a2SYan Zheng 	struct backref_node *upper;
6905d4f98a2SYan Zheng 	struct backref_node *lower;
6915d4f98a2SYan Zheng 	struct backref_node *node = NULL;
6925d4f98a2SYan Zheng 	struct backref_node *exist = NULL;
6935d4f98a2SYan Zheng 	struct backref_edge *edge;
6945d4f98a2SYan Zheng 	struct rb_node *rb_node;
6955d4f98a2SYan Zheng 	struct btrfs_key key;
6965d4f98a2SYan Zheng 	unsigned long end;
6975d4f98a2SYan Zheng 	unsigned long ptr;
6985d4f98a2SYan Zheng 	LIST_HEAD(list);
6993fd0a558SYan, Zheng 	LIST_HEAD(useless);
7003fd0a558SYan, Zheng 	int cowonly;
7015d4f98a2SYan Zheng 	int ret;
7025d4f98a2SYan Zheng 	int err = 0;
703b6c60c80SJosef Bacik 	bool need_check = true;
7045d4f98a2SYan Zheng 
7055d4f98a2SYan Zheng 	path1 = btrfs_alloc_path();
7065d4f98a2SYan Zheng 	path2 = btrfs_alloc_path();
7075d4f98a2SYan Zheng 	if (!path1 || !path2) {
7085d4f98a2SYan Zheng 		err = -ENOMEM;
7095d4f98a2SYan Zheng 		goto out;
7105d4f98a2SYan Zheng 	}
711026fd317SJosef Bacik 	path1->reada = 1;
712026fd317SJosef Bacik 	path2->reada = 2;
7135d4f98a2SYan Zheng 
7143fd0a558SYan, Zheng 	node = alloc_backref_node(cache);
7155d4f98a2SYan Zheng 	if (!node) {
7165d4f98a2SYan Zheng 		err = -ENOMEM;
7175d4f98a2SYan Zheng 		goto out;
7185d4f98a2SYan Zheng 	}
7195d4f98a2SYan Zheng 
7205d4f98a2SYan Zheng 	node->bytenr = bytenr;
7215d4f98a2SYan Zheng 	node->level = level;
7225d4f98a2SYan Zheng 	node->lowest = 1;
7235d4f98a2SYan Zheng 	cur = node;
7245d4f98a2SYan Zheng again:
7255d4f98a2SYan Zheng 	end = 0;
7265d4f98a2SYan Zheng 	ptr = 0;
7275d4f98a2SYan Zheng 	key.objectid = cur->bytenr;
7283173a18fSJosef Bacik 	key.type = BTRFS_METADATA_ITEM_KEY;
7295d4f98a2SYan Zheng 	key.offset = (u64)-1;
7305d4f98a2SYan Zheng 
7315d4f98a2SYan Zheng 	path1->search_commit_root = 1;
7325d4f98a2SYan Zheng 	path1->skip_locking = 1;
7335d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
7345d4f98a2SYan Zheng 				0, 0);
7355d4f98a2SYan Zheng 	if (ret < 0) {
7365d4f98a2SYan Zheng 		err = ret;
7375d4f98a2SYan Zheng 		goto out;
7385d4f98a2SYan Zheng 	}
7395d4f98a2SYan Zheng 	BUG_ON(!ret || !path1->slots[0]);
7405d4f98a2SYan Zheng 
7415d4f98a2SYan Zheng 	path1->slots[0]--;
7425d4f98a2SYan Zheng 
7435d4f98a2SYan Zheng 	WARN_ON(cur->checked);
7445d4f98a2SYan Zheng 	if (!list_empty(&cur->upper)) {
7455d4f98a2SYan Zheng 		/*
74670f23fd6SJustin P. Mattock 		 * the backref was added previously when processing
7475d4f98a2SYan Zheng 		 * backref of type BTRFS_TREE_BLOCK_REF_KEY
7485d4f98a2SYan Zheng 		 */
7495d4f98a2SYan Zheng 		BUG_ON(!list_is_singular(&cur->upper));
7505d4f98a2SYan Zheng 		edge = list_entry(cur->upper.next, struct backref_edge,
7515d4f98a2SYan Zheng 				  list[LOWER]);
7525d4f98a2SYan Zheng 		BUG_ON(!list_empty(&edge->list[UPPER]));
7535d4f98a2SYan Zheng 		exist = edge->node[UPPER];
7545d4f98a2SYan Zheng 		/*
7555d4f98a2SYan Zheng 		 * add the upper level block to pending list if we need
7565d4f98a2SYan Zheng 		 * check its backrefs
7575d4f98a2SYan Zheng 		 */
7585d4f98a2SYan Zheng 		if (!exist->checked)
7595d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
7605d4f98a2SYan Zheng 	} else {
7615d4f98a2SYan Zheng 		exist = NULL;
7625d4f98a2SYan Zheng 	}
7635d4f98a2SYan Zheng 
7645d4f98a2SYan Zheng 	while (1) {
7655d4f98a2SYan Zheng 		cond_resched();
7665d4f98a2SYan Zheng 		eb = path1->nodes[0];
7675d4f98a2SYan Zheng 
7685d4f98a2SYan Zheng 		if (ptr >= end) {
7695d4f98a2SYan Zheng 			if (path1->slots[0] >= btrfs_header_nritems(eb)) {
7705d4f98a2SYan Zheng 				ret = btrfs_next_leaf(rc->extent_root, path1);
7715d4f98a2SYan Zheng 				if (ret < 0) {
7725d4f98a2SYan Zheng 					err = ret;
7735d4f98a2SYan Zheng 					goto out;
7745d4f98a2SYan Zheng 				}
7755d4f98a2SYan Zheng 				if (ret > 0)
7765d4f98a2SYan Zheng 					break;
7775d4f98a2SYan Zheng 				eb = path1->nodes[0];
7785d4f98a2SYan Zheng 			}
7795d4f98a2SYan Zheng 
7805d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
7815d4f98a2SYan Zheng 			if (key.objectid != cur->bytenr) {
7825d4f98a2SYan Zheng 				WARN_ON(exist);
7835d4f98a2SYan Zheng 				break;
7845d4f98a2SYan Zheng 			}
7855d4f98a2SYan Zheng 
7863173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY ||
7873173a18fSJosef Bacik 			    key.type == BTRFS_METADATA_ITEM_KEY) {
7885d4f98a2SYan Zheng 				ret = find_inline_backref(eb, path1->slots[0],
7895d4f98a2SYan Zheng 							  &ptr, &end);
7905d4f98a2SYan Zheng 				if (ret)
7915d4f98a2SYan Zheng 					goto next;
7925d4f98a2SYan Zheng 			}
7935d4f98a2SYan Zheng 		}
7945d4f98a2SYan Zheng 
7955d4f98a2SYan Zheng 		if (ptr < end) {
7965d4f98a2SYan Zheng 			/* update key for inline back ref */
7975d4f98a2SYan Zheng 			struct btrfs_extent_inline_ref *iref;
7985d4f98a2SYan Zheng 			iref = (struct btrfs_extent_inline_ref *)ptr;
7995d4f98a2SYan Zheng 			key.type = btrfs_extent_inline_ref_type(eb, iref);
8005d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
8015d4f98a2SYan Zheng 			WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
8025d4f98a2SYan Zheng 				key.type != BTRFS_SHARED_BLOCK_REF_KEY);
8035d4f98a2SYan Zheng 		}
8045d4f98a2SYan Zheng 
8055d4f98a2SYan Zheng 		if (exist &&
8065d4f98a2SYan Zheng 		    ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
8075d4f98a2SYan Zheng 		      exist->owner == key.offset) ||
8085d4f98a2SYan Zheng 		     (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
8095d4f98a2SYan Zheng 		      exist->bytenr == key.offset))) {
8105d4f98a2SYan Zheng 			exist = NULL;
8115d4f98a2SYan Zheng 			goto next;
8125d4f98a2SYan Zheng 		}
8135d4f98a2SYan Zheng 
8145d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
8155d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY ||
8165d4f98a2SYan Zheng 		    key.type == BTRFS_EXTENT_REF_V0_KEY) {
8173fd0a558SYan, Zheng 			if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
8185d4f98a2SYan Zheng 				struct btrfs_extent_ref_v0 *ref0;
8195d4f98a2SYan Zheng 				ref0 = btrfs_item_ptr(eb, path1->slots[0],
8205d4f98a2SYan Zheng 						struct btrfs_extent_ref_v0);
8213fd0a558SYan, Zheng 				if (key.objectid == key.offset) {
822046f264fSYan, Zheng 					root = find_tree_root(rc, eb, ref0);
8233fd0a558SYan, Zheng 					if (root && !should_ignore_root(root))
8245d4f98a2SYan Zheng 						cur->root = root;
8255d4f98a2SYan Zheng 					else
8263fd0a558SYan, Zheng 						list_add(&cur->list, &useless);
8275d4f98a2SYan Zheng 					break;
8285d4f98a2SYan Zheng 				}
829046f264fSYan, Zheng 				if (is_cowonly_root(btrfs_ref_root_v0(eb,
830046f264fSYan, Zheng 								      ref0)))
831046f264fSYan, Zheng 					cur->cowonly = 1;
8323fd0a558SYan, Zheng 			}
8335d4f98a2SYan Zheng #else
8345d4f98a2SYan Zheng 		BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
8355d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
8365d4f98a2SYan Zheng #endif
8375d4f98a2SYan Zheng 			if (key.objectid == key.offset) {
8385d4f98a2SYan Zheng 				/*
8395d4f98a2SYan Zheng 				 * only root blocks of reloc trees use
8405d4f98a2SYan Zheng 				 * backref of this type.
8415d4f98a2SYan Zheng 				 */
8425d4f98a2SYan Zheng 				root = find_reloc_root(rc, cur->bytenr);
8435d4f98a2SYan Zheng 				BUG_ON(!root);
8445d4f98a2SYan Zheng 				cur->root = root;
8455d4f98a2SYan Zheng 				break;
8465d4f98a2SYan Zheng 			}
8475d4f98a2SYan Zheng 
8483fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
8495d4f98a2SYan Zheng 			if (!edge) {
8505d4f98a2SYan Zheng 				err = -ENOMEM;
8515d4f98a2SYan Zheng 				goto out;
8525d4f98a2SYan Zheng 			}
8535d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, key.offset);
8545d4f98a2SYan Zheng 			if (!rb_node) {
8553fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
8565d4f98a2SYan Zheng 				if (!upper) {
8573fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
8585d4f98a2SYan Zheng 					err = -ENOMEM;
8595d4f98a2SYan Zheng 					goto out;
8605d4f98a2SYan Zheng 				}
8615d4f98a2SYan Zheng 				upper->bytenr = key.offset;
8625d4f98a2SYan Zheng 				upper->level = cur->level + 1;
8635d4f98a2SYan Zheng 				/*
8645d4f98a2SYan Zheng 				 *  backrefs for the upper level block isn't
8655d4f98a2SYan Zheng 				 *  cached, add the block to pending list
8665d4f98a2SYan Zheng 				 */
8675d4f98a2SYan Zheng 				list_add_tail(&edge->list[UPPER], &list);
8685d4f98a2SYan Zheng 			} else {
8695d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
8705d4f98a2SYan Zheng 						 rb_node);
8713fd0a558SYan, Zheng 				BUG_ON(!upper->checked);
8725d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
8735d4f98a2SYan Zheng 			}
8743fd0a558SYan, Zheng 			list_add_tail(&edge->list[LOWER], &cur->upper);
8755d4f98a2SYan Zheng 			edge->node[LOWER] = cur;
8763fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
8775d4f98a2SYan Zheng 
8785d4f98a2SYan Zheng 			goto next;
8795d4f98a2SYan Zheng 		} else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
8805d4f98a2SYan Zheng 			goto next;
8815d4f98a2SYan Zheng 		}
8825d4f98a2SYan Zheng 
8835d4f98a2SYan Zheng 		/* key.type == BTRFS_TREE_BLOCK_REF_KEY */
8845d4f98a2SYan Zheng 		root = read_fs_root(rc->extent_root->fs_info, key.offset);
8855d4f98a2SYan Zheng 		if (IS_ERR(root)) {
8865d4f98a2SYan Zheng 			err = PTR_ERR(root);
8875d4f98a2SYan Zheng 			goto out;
8885d4f98a2SYan Zheng 		}
8895d4f98a2SYan Zheng 
8903fd0a558SYan, Zheng 		if (!root->ref_cows)
8913fd0a558SYan, Zheng 			cur->cowonly = 1;
8923fd0a558SYan, Zheng 
8935d4f98a2SYan Zheng 		if (btrfs_root_level(&root->root_item) == cur->level) {
8945d4f98a2SYan Zheng 			/* tree root */
8955d4f98a2SYan Zheng 			BUG_ON(btrfs_root_bytenr(&root->root_item) !=
8965d4f98a2SYan Zheng 			       cur->bytenr);
8973fd0a558SYan, Zheng 			if (should_ignore_root(root))
8983fd0a558SYan, Zheng 				list_add(&cur->list, &useless);
8993fd0a558SYan, Zheng 			else
9005d4f98a2SYan Zheng 				cur->root = root;
9015d4f98a2SYan Zheng 			break;
9025d4f98a2SYan Zheng 		}
9035d4f98a2SYan Zheng 
9045d4f98a2SYan Zheng 		level = cur->level + 1;
9055d4f98a2SYan Zheng 
9065d4f98a2SYan Zheng 		/*
9075d4f98a2SYan Zheng 		 * searching the tree to find upper level blocks
9085d4f98a2SYan Zheng 		 * reference the block.
9095d4f98a2SYan Zheng 		 */
9105d4f98a2SYan Zheng 		path2->search_commit_root = 1;
9115d4f98a2SYan Zheng 		path2->skip_locking = 1;
9125d4f98a2SYan Zheng 		path2->lowest_level = level;
9135d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
9145d4f98a2SYan Zheng 		path2->lowest_level = 0;
9155d4f98a2SYan Zheng 		if (ret < 0) {
9165d4f98a2SYan Zheng 			err = ret;
9175d4f98a2SYan Zheng 			goto out;
9185d4f98a2SYan Zheng 		}
91933c66f43SYan Zheng 		if (ret > 0 && path2->slots[level] > 0)
92033c66f43SYan Zheng 			path2->slots[level]--;
9215d4f98a2SYan Zheng 
9225d4f98a2SYan Zheng 		eb = path2->nodes[level];
9235d4f98a2SYan Zheng 		WARN_ON(btrfs_node_blockptr(eb, path2->slots[level]) !=
9245d4f98a2SYan Zheng 			cur->bytenr);
9255d4f98a2SYan Zheng 
9265d4f98a2SYan Zheng 		lower = cur;
927b6c60c80SJosef Bacik 		need_check = true;
9285d4f98a2SYan Zheng 		for (; level < BTRFS_MAX_LEVEL; level++) {
9295d4f98a2SYan Zheng 			if (!path2->nodes[level]) {
9305d4f98a2SYan Zheng 				BUG_ON(btrfs_root_bytenr(&root->root_item) !=
9315d4f98a2SYan Zheng 				       lower->bytenr);
9323fd0a558SYan, Zheng 				if (should_ignore_root(root))
9333fd0a558SYan, Zheng 					list_add(&lower->list, &useless);
9343fd0a558SYan, Zheng 				else
9355d4f98a2SYan Zheng 					lower->root = root;
9365d4f98a2SYan Zheng 				break;
9375d4f98a2SYan Zheng 			}
9385d4f98a2SYan Zheng 
9393fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
9405d4f98a2SYan Zheng 			if (!edge) {
9415d4f98a2SYan Zheng 				err = -ENOMEM;
9425d4f98a2SYan Zheng 				goto out;
9435d4f98a2SYan Zheng 			}
9445d4f98a2SYan Zheng 
9455d4f98a2SYan Zheng 			eb = path2->nodes[level];
9465d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, eb->start);
9475d4f98a2SYan Zheng 			if (!rb_node) {
9483fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
9495d4f98a2SYan Zheng 				if (!upper) {
9503fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
9515d4f98a2SYan Zheng 					err = -ENOMEM;
9525d4f98a2SYan Zheng 					goto out;
9535d4f98a2SYan Zheng 				}
9545d4f98a2SYan Zheng 				upper->bytenr = eb->start;
9555d4f98a2SYan Zheng 				upper->owner = btrfs_header_owner(eb);
9565d4f98a2SYan Zheng 				upper->level = lower->level + 1;
9573fd0a558SYan, Zheng 				if (!root->ref_cows)
9583fd0a558SYan, Zheng 					upper->cowonly = 1;
9595d4f98a2SYan Zheng 
9605d4f98a2SYan Zheng 				/*
9615d4f98a2SYan Zheng 				 * if we know the block isn't shared
9625d4f98a2SYan Zheng 				 * we can void checking its backrefs.
9635d4f98a2SYan Zheng 				 */
9645d4f98a2SYan Zheng 				if (btrfs_block_can_be_shared(root, eb))
9655d4f98a2SYan Zheng 					upper->checked = 0;
9665d4f98a2SYan Zheng 				else
9675d4f98a2SYan Zheng 					upper->checked = 1;
9685d4f98a2SYan Zheng 
9695d4f98a2SYan Zheng 				/*
9705d4f98a2SYan Zheng 				 * add the block to pending list if we
971b6c60c80SJosef Bacik 				 * need check its backrefs, we only do this once
972b6c60c80SJosef Bacik 				 * while walking up a tree as we will catch
973b6c60c80SJosef Bacik 				 * anything else later on.
9745d4f98a2SYan Zheng 				 */
975b6c60c80SJosef Bacik 				if (!upper->checked && need_check) {
976b6c60c80SJosef Bacik 					need_check = false;
9775d4f98a2SYan Zheng 					list_add_tail(&edge->list[UPPER],
9785d4f98a2SYan Zheng 						      &list);
9795d4f98a2SYan Zheng 				} else
9805d4f98a2SYan Zheng 					INIT_LIST_HEAD(&edge->list[UPPER]);
9815d4f98a2SYan Zheng 			} else {
9825d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
9835d4f98a2SYan Zheng 						 rb_node);
9845d4f98a2SYan Zheng 				BUG_ON(!upper->checked);
9855d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
9863fd0a558SYan, Zheng 				if (!upper->owner)
9873fd0a558SYan, Zheng 					upper->owner = btrfs_header_owner(eb);
9885d4f98a2SYan Zheng 			}
9895d4f98a2SYan Zheng 			list_add_tail(&edge->list[LOWER], &lower->upper);
9905d4f98a2SYan Zheng 			edge->node[LOWER] = lower;
9913fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
9925d4f98a2SYan Zheng 
9935d4f98a2SYan Zheng 			if (rb_node)
9945d4f98a2SYan Zheng 				break;
9955d4f98a2SYan Zheng 			lower = upper;
9965d4f98a2SYan Zheng 			upper = NULL;
9975d4f98a2SYan Zheng 		}
998b3b4aa74SDavid Sterba 		btrfs_release_path(path2);
9995d4f98a2SYan Zheng next:
10005d4f98a2SYan Zheng 		if (ptr < end) {
10015d4f98a2SYan Zheng 			ptr += btrfs_extent_inline_ref_size(key.type);
10025d4f98a2SYan Zheng 			if (ptr >= end) {
10035d4f98a2SYan Zheng 				WARN_ON(ptr > end);
10045d4f98a2SYan Zheng 				ptr = 0;
10055d4f98a2SYan Zheng 				end = 0;
10065d4f98a2SYan Zheng 			}
10075d4f98a2SYan Zheng 		}
10085d4f98a2SYan Zheng 		if (ptr >= end)
10095d4f98a2SYan Zheng 			path1->slots[0]++;
10105d4f98a2SYan Zheng 	}
1011b3b4aa74SDavid Sterba 	btrfs_release_path(path1);
10125d4f98a2SYan Zheng 
10135d4f98a2SYan Zheng 	cur->checked = 1;
10145d4f98a2SYan Zheng 	WARN_ON(exist);
10155d4f98a2SYan Zheng 
10165d4f98a2SYan Zheng 	/* the pending list isn't empty, take the first block to process */
10175d4f98a2SYan Zheng 	if (!list_empty(&list)) {
10185d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10195d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10205d4f98a2SYan Zheng 		cur = edge->node[UPPER];
10215d4f98a2SYan Zheng 		goto again;
10225d4f98a2SYan Zheng 	}
10235d4f98a2SYan Zheng 
10245d4f98a2SYan Zheng 	/*
10255d4f98a2SYan Zheng 	 * everything goes well, connect backref nodes and insert backref nodes
10265d4f98a2SYan Zheng 	 * into the cache.
10275d4f98a2SYan Zheng 	 */
10285d4f98a2SYan Zheng 	BUG_ON(!node->checked);
10293fd0a558SYan, Zheng 	cowonly = node->cowonly;
10303fd0a558SYan, Zheng 	if (!cowonly) {
10313fd0a558SYan, Zheng 		rb_node = tree_insert(&cache->rb_root, node->bytenr,
10323fd0a558SYan, Zheng 				      &node->rb_node);
103343c04fb1SJeff Mahoney 		if (rb_node)
103443c04fb1SJeff Mahoney 			backref_tree_panic(rb_node, -EEXIST, node->bytenr);
10353fd0a558SYan, Zheng 		list_add_tail(&node->lower, &cache->leaves);
10363fd0a558SYan, Zheng 	}
10375d4f98a2SYan Zheng 
10385d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER])
10395d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &list);
10405d4f98a2SYan Zheng 
10415d4f98a2SYan Zheng 	while (!list_empty(&list)) {
10425d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10435d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10445d4f98a2SYan Zheng 		upper = edge->node[UPPER];
10453fd0a558SYan, Zheng 		if (upper->detached) {
10463fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
10473fd0a558SYan, Zheng 			lower = edge->node[LOWER];
10483fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
10493fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
10503fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
10513fd0a558SYan, Zheng 			continue;
10523fd0a558SYan, Zheng 		}
10535d4f98a2SYan Zheng 
10545d4f98a2SYan Zheng 		if (!RB_EMPTY_NODE(&upper->rb_node)) {
10555d4f98a2SYan Zheng 			if (upper->lowest) {
10565d4f98a2SYan Zheng 				list_del_init(&upper->lower);
10575d4f98a2SYan Zheng 				upper->lowest = 0;
10585d4f98a2SYan Zheng 			}
10595d4f98a2SYan Zheng 
10605d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &upper->lower);
10615d4f98a2SYan Zheng 			continue;
10625d4f98a2SYan Zheng 		}
10635d4f98a2SYan Zheng 
10645d4f98a2SYan Zheng 		BUG_ON(!upper->checked);
10653fd0a558SYan, Zheng 		BUG_ON(cowonly != upper->cowonly);
10663fd0a558SYan, Zheng 		if (!cowonly) {
10675d4f98a2SYan Zheng 			rb_node = tree_insert(&cache->rb_root, upper->bytenr,
10685d4f98a2SYan Zheng 					      &upper->rb_node);
106943c04fb1SJeff Mahoney 			if (rb_node)
107043c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
107143c04fb1SJeff Mahoney 						   upper->bytenr);
10723fd0a558SYan, Zheng 		}
10735d4f98a2SYan Zheng 
10745d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &upper->lower);
10755d4f98a2SYan Zheng 
10765d4f98a2SYan Zheng 		list_for_each_entry(edge, &upper->upper, list[LOWER])
10775d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
10785d4f98a2SYan Zheng 	}
10793fd0a558SYan, Zheng 	/*
10803fd0a558SYan, Zheng 	 * process useless backref nodes. backref nodes for tree leaves
10813fd0a558SYan, Zheng 	 * are deleted from the cache. backref nodes for upper level
10823fd0a558SYan, Zheng 	 * tree blocks are left in the cache to avoid unnecessary backref
10833fd0a558SYan, Zheng 	 * lookup.
10843fd0a558SYan, Zheng 	 */
10853fd0a558SYan, Zheng 	while (!list_empty(&useless)) {
10863fd0a558SYan, Zheng 		upper = list_entry(useless.next, struct backref_node, list);
10873fd0a558SYan, Zheng 		list_del_init(&upper->list);
10883fd0a558SYan, Zheng 		BUG_ON(!list_empty(&upper->upper));
10893fd0a558SYan, Zheng 		if (upper == node)
10903fd0a558SYan, Zheng 			node = NULL;
10913fd0a558SYan, Zheng 		if (upper->lowest) {
10923fd0a558SYan, Zheng 			list_del_init(&upper->lower);
10933fd0a558SYan, Zheng 			upper->lowest = 0;
10943fd0a558SYan, Zheng 		}
10953fd0a558SYan, Zheng 		while (!list_empty(&upper->lower)) {
10963fd0a558SYan, Zheng 			edge = list_entry(upper->lower.next,
10973fd0a558SYan, Zheng 					  struct backref_edge, list[UPPER]);
10983fd0a558SYan, Zheng 			list_del(&edge->list[UPPER]);
10993fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
11003fd0a558SYan, Zheng 			lower = edge->node[LOWER];
11013fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
11023fd0a558SYan, Zheng 
11033fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
11043fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
11053fd0a558SYan, Zheng 		}
11063fd0a558SYan, Zheng 		__mark_block_processed(rc, upper);
11073fd0a558SYan, Zheng 		if (upper->level > 0) {
11083fd0a558SYan, Zheng 			list_add(&upper->list, &cache->detached);
11093fd0a558SYan, Zheng 			upper->detached = 1;
11103fd0a558SYan, Zheng 		} else {
11113fd0a558SYan, Zheng 			rb_erase(&upper->rb_node, &cache->rb_root);
11123fd0a558SYan, Zheng 			free_backref_node(cache, upper);
11133fd0a558SYan, Zheng 		}
11143fd0a558SYan, Zheng 	}
11155d4f98a2SYan Zheng out:
11165d4f98a2SYan Zheng 	btrfs_free_path(path1);
11175d4f98a2SYan Zheng 	btrfs_free_path(path2);
11185d4f98a2SYan Zheng 	if (err) {
11193fd0a558SYan, Zheng 		while (!list_empty(&useless)) {
11203fd0a558SYan, Zheng 			lower = list_entry(useless.next,
11213fd0a558SYan, Zheng 					   struct backref_node, upper);
11223fd0a558SYan, Zheng 			list_del_init(&lower->upper);
11233fd0a558SYan, Zheng 		}
11245d4f98a2SYan Zheng 		upper = node;
11253fd0a558SYan, Zheng 		INIT_LIST_HEAD(&list);
11265d4f98a2SYan Zheng 		while (upper) {
11275d4f98a2SYan Zheng 			if (RB_EMPTY_NODE(&upper->rb_node)) {
11285d4f98a2SYan Zheng 				list_splice_tail(&upper->upper, &list);
11293fd0a558SYan, Zheng 				free_backref_node(cache, upper);
11305d4f98a2SYan Zheng 			}
11315d4f98a2SYan Zheng 
11325d4f98a2SYan Zheng 			if (list_empty(&list))
11335d4f98a2SYan Zheng 				break;
11345d4f98a2SYan Zheng 
11355d4f98a2SYan Zheng 			edge = list_entry(list.next, struct backref_edge,
11365d4f98a2SYan Zheng 					  list[LOWER]);
11373fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
11385d4f98a2SYan Zheng 			upper = edge->node[UPPER];
11393fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
11405d4f98a2SYan Zheng 		}
11415d4f98a2SYan Zheng 		return ERR_PTR(err);
11425d4f98a2SYan Zheng 	}
11433fd0a558SYan, Zheng 	BUG_ON(node && node->detached);
11445d4f98a2SYan Zheng 	return node;
11455d4f98a2SYan Zheng }
11465d4f98a2SYan Zheng 
11475d4f98a2SYan Zheng /*
11483fd0a558SYan, Zheng  * helper to add backref node for the newly created snapshot.
11493fd0a558SYan, Zheng  * the backref node is created by cloning backref node that
11503fd0a558SYan, Zheng  * corresponds to root of source tree
11513fd0a558SYan, Zheng  */
11523fd0a558SYan, Zheng static int clone_backref_node(struct btrfs_trans_handle *trans,
11533fd0a558SYan, Zheng 			      struct reloc_control *rc,
11543fd0a558SYan, Zheng 			      struct btrfs_root *src,
11553fd0a558SYan, Zheng 			      struct btrfs_root *dest)
11563fd0a558SYan, Zheng {
11573fd0a558SYan, Zheng 	struct btrfs_root *reloc_root = src->reloc_root;
11583fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
11593fd0a558SYan, Zheng 	struct backref_node *node = NULL;
11603fd0a558SYan, Zheng 	struct backref_node *new_node;
11613fd0a558SYan, Zheng 	struct backref_edge *edge;
11623fd0a558SYan, Zheng 	struct backref_edge *new_edge;
11633fd0a558SYan, Zheng 	struct rb_node *rb_node;
11643fd0a558SYan, Zheng 
11653fd0a558SYan, Zheng 	if (cache->last_trans > 0)
11663fd0a558SYan, Zheng 		update_backref_cache(trans, cache);
11673fd0a558SYan, Zheng 
11683fd0a558SYan, Zheng 	rb_node = tree_search(&cache->rb_root, src->commit_root->start);
11693fd0a558SYan, Zheng 	if (rb_node) {
11703fd0a558SYan, Zheng 		node = rb_entry(rb_node, struct backref_node, rb_node);
11713fd0a558SYan, Zheng 		if (node->detached)
11723fd0a558SYan, Zheng 			node = NULL;
11733fd0a558SYan, Zheng 		else
11743fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr != reloc_root->node->start);
11753fd0a558SYan, Zheng 	}
11763fd0a558SYan, Zheng 
11773fd0a558SYan, Zheng 	if (!node) {
11783fd0a558SYan, Zheng 		rb_node = tree_search(&cache->rb_root,
11793fd0a558SYan, Zheng 				      reloc_root->commit_root->start);
11803fd0a558SYan, Zheng 		if (rb_node) {
11813fd0a558SYan, Zheng 			node = rb_entry(rb_node, struct backref_node,
11823fd0a558SYan, Zheng 					rb_node);
11833fd0a558SYan, Zheng 			BUG_ON(node->detached);
11843fd0a558SYan, Zheng 		}
11853fd0a558SYan, Zheng 	}
11863fd0a558SYan, Zheng 
11873fd0a558SYan, Zheng 	if (!node)
11883fd0a558SYan, Zheng 		return 0;
11893fd0a558SYan, Zheng 
11903fd0a558SYan, Zheng 	new_node = alloc_backref_node(cache);
11913fd0a558SYan, Zheng 	if (!new_node)
11923fd0a558SYan, Zheng 		return -ENOMEM;
11933fd0a558SYan, Zheng 
11943fd0a558SYan, Zheng 	new_node->bytenr = dest->node->start;
11953fd0a558SYan, Zheng 	new_node->level = node->level;
11963fd0a558SYan, Zheng 	new_node->lowest = node->lowest;
11976848ad64SYan, Zheng 	new_node->checked = 1;
11983fd0a558SYan, Zheng 	new_node->root = dest;
11993fd0a558SYan, Zheng 
12003fd0a558SYan, Zheng 	if (!node->lowest) {
12013fd0a558SYan, Zheng 		list_for_each_entry(edge, &node->lower, list[UPPER]) {
12023fd0a558SYan, Zheng 			new_edge = alloc_backref_edge(cache);
12033fd0a558SYan, Zheng 			if (!new_edge)
12043fd0a558SYan, Zheng 				goto fail;
12053fd0a558SYan, Zheng 
12063fd0a558SYan, Zheng 			new_edge->node[UPPER] = new_node;
12073fd0a558SYan, Zheng 			new_edge->node[LOWER] = edge->node[LOWER];
12083fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[UPPER],
12093fd0a558SYan, Zheng 				      &new_node->lower);
12103fd0a558SYan, Zheng 		}
121176b9e23dSMiao Xie 	} else {
121276b9e23dSMiao Xie 		list_add_tail(&new_node->lower, &cache->leaves);
12133fd0a558SYan, Zheng 	}
12143fd0a558SYan, Zheng 
12153fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
12163fd0a558SYan, Zheng 			      &new_node->rb_node);
121743c04fb1SJeff Mahoney 	if (rb_node)
121843c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
12193fd0a558SYan, Zheng 
12203fd0a558SYan, Zheng 	if (!new_node->lowest) {
12213fd0a558SYan, Zheng 		list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
12223fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[LOWER],
12233fd0a558SYan, Zheng 				      &new_edge->node[LOWER]->upper);
12243fd0a558SYan, Zheng 		}
12253fd0a558SYan, Zheng 	}
12263fd0a558SYan, Zheng 	return 0;
12273fd0a558SYan, Zheng fail:
12283fd0a558SYan, Zheng 	while (!list_empty(&new_node->lower)) {
12293fd0a558SYan, Zheng 		new_edge = list_entry(new_node->lower.next,
12303fd0a558SYan, Zheng 				      struct backref_edge, list[UPPER]);
12313fd0a558SYan, Zheng 		list_del(&new_edge->list[UPPER]);
12323fd0a558SYan, Zheng 		free_backref_edge(cache, new_edge);
12333fd0a558SYan, Zheng 	}
12343fd0a558SYan, Zheng 	free_backref_node(cache, new_node);
12353fd0a558SYan, Zheng 	return -ENOMEM;
12363fd0a558SYan, Zheng }
12373fd0a558SYan, Zheng 
12383fd0a558SYan, Zheng /*
12395d4f98a2SYan Zheng  * helper to add 'address of tree root -> reloc tree' mapping
12405d4f98a2SYan Zheng  */
1241ffd7b339SJeff Mahoney static int __must_check __add_reloc_root(struct btrfs_root *root)
12425d4f98a2SYan Zheng {
12435d4f98a2SYan Zheng 	struct rb_node *rb_node;
12445d4f98a2SYan Zheng 	struct mapping_node *node;
12455d4f98a2SYan Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
12465d4f98a2SYan Zheng 
12475d4f98a2SYan Zheng 	node = kmalloc(sizeof(*node), GFP_NOFS);
1248ffd7b339SJeff Mahoney 	if (!node)
1249ffd7b339SJeff Mahoney 		return -ENOMEM;
12505d4f98a2SYan Zheng 
12515d4f98a2SYan Zheng 	node->bytenr = root->node->start;
12525d4f98a2SYan Zheng 	node->data = root;
12535d4f98a2SYan Zheng 
12545d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
12555d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
12565d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
12575d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
1258ffd7b339SJeff Mahoney 	if (rb_node) {
1259ffd7b339SJeff Mahoney 		btrfs_panic(root->fs_info, -EEXIST, "Duplicate root found "
1260ffd7b339SJeff Mahoney 			    "for start=%llu while inserting into relocation "
1261533574c6SJoe Perches 			    "tree\n", node->bytenr);
126223291a04SDan Carpenter 		kfree(node);
126323291a04SDan Carpenter 		return -EEXIST;
1264ffd7b339SJeff Mahoney 	}
12655d4f98a2SYan Zheng 
12665d4f98a2SYan Zheng 	list_add_tail(&root->root_list, &rc->reloc_roots);
12675d4f98a2SYan Zheng 	return 0;
12685d4f98a2SYan Zheng }
12695d4f98a2SYan Zheng 
12705d4f98a2SYan Zheng /*
1271c974c464SWang Shilong  * helper to delete the 'address of tree root -> reloc tree'
12725d4f98a2SYan Zheng  * mapping
12735d4f98a2SYan Zheng  */
1274c974c464SWang Shilong static void __del_reloc_root(struct btrfs_root *root)
12755d4f98a2SYan Zheng {
12765d4f98a2SYan Zheng 	struct rb_node *rb_node;
12775d4f98a2SYan Zheng 	struct mapping_node *node = NULL;
12785d4f98a2SYan Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
12795d4f98a2SYan Zheng 
12805d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
12815d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1282c974c464SWang Shilong 			      root->node->start);
1283c974c464SWang Shilong 	if (rb_node) {
1284c974c464SWang Shilong 		node = rb_entry(rb_node, struct mapping_node, rb_node);
1285c974c464SWang Shilong 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1286c974c464SWang Shilong 	}
1287c974c464SWang Shilong 	spin_unlock(&rc->reloc_root_tree.lock);
1288c974c464SWang Shilong 
1289c974c464SWang Shilong 	if (!node)
1290c974c464SWang Shilong 		return;
1291c974c464SWang Shilong 	BUG_ON((struct btrfs_root *)node->data != root);
1292c974c464SWang Shilong 
1293c974c464SWang Shilong 	spin_lock(&root->fs_info->trans_lock);
1294c974c464SWang Shilong 	list_del_init(&root->root_list);
1295c974c464SWang Shilong 	spin_unlock(&root->fs_info->trans_lock);
1296c974c464SWang Shilong 	kfree(node);
1297c974c464SWang Shilong }
1298c974c464SWang Shilong 
1299c974c464SWang Shilong /*
1300c974c464SWang Shilong  * helper to update the 'address of tree root -> reloc tree'
1301c974c464SWang Shilong  * mapping
1302c974c464SWang Shilong  */
1303c974c464SWang Shilong static int __update_reloc_root(struct btrfs_root *root, u64 new_bytenr)
1304c974c464SWang Shilong {
1305c974c464SWang Shilong 	struct rb_node *rb_node;
1306c974c464SWang Shilong 	struct mapping_node *node = NULL;
1307c974c464SWang Shilong 	struct reloc_control *rc = root->fs_info->reloc_ctl;
1308c974c464SWang Shilong 
1309c974c464SWang Shilong 	spin_lock(&rc->reloc_root_tree.lock);
1310c974c464SWang Shilong 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1311c974c464SWang Shilong 			      root->node->start);
13125d4f98a2SYan Zheng 	if (rb_node) {
13135d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
13145d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
13155d4f98a2SYan Zheng 	}
13165d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
13175d4f98a2SYan Zheng 
13188f71f3e0SLiu Bo 	if (!node)
13198f71f3e0SLiu Bo 		return 0;
13205d4f98a2SYan Zheng 	BUG_ON((struct btrfs_root *)node->data != root);
13215d4f98a2SYan Zheng 
13225d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
1323c974c464SWang Shilong 	node->bytenr = new_bytenr;
13245d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
13255d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
13265d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
132743c04fb1SJeff Mahoney 	if (rb_node)
132843c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, node->bytenr);
13295d4f98a2SYan Zheng 	return 0;
13305d4f98a2SYan Zheng }
13315d4f98a2SYan Zheng 
13323fd0a558SYan, Zheng static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
13333fd0a558SYan, Zheng 					struct btrfs_root *root, u64 objectid)
13345d4f98a2SYan Zheng {
13355d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
13365d4f98a2SYan Zheng 	struct extent_buffer *eb;
13375d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
13385d4f98a2SYan Zheng 	struct btrfs_key root_key;
13395bc7247aSMiao Xie 	u64 last_snap = 0;
13405d4f98a2SYan Zheng 	int ret;
13415d4f98a2SYan Zheng 
13425d4f98a2SYan Zheng 	root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
13435d4f98a2SYan Zheng 	BUG_ON(!root_item);
13445d4f98a2SYan Zheng 
13455d4f98a2SYan Zheng 	root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
13465d4f98a2SYan Zheng 	root_key.type = BTRFS_ROOT_ITEM_KEY;
13473fd0a558SYan, Zheng 	root_key.offset = objectid;
13485d4f98a2SYan Zheng 
13493fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
13503fd0a558SYan, Zheng 		/* called by btrfs_init_reloc_root */
13515d4f98a2SYan Zheng 		ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
13525d4f98a2SYan Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
13535d4f98a2SYan Zheng 		BUG_ON(ret);
13545d4f98a2SYan Zheng 
13555bc7247aSMiao Xie 		last_snap = btrfs_root_last_snapshot(&root->root_item);
13563fd0a558SYan, Zheng 		btrfs_set_root_last_snapshot(&root->root_item,
13573fd0a558SYan, Zheng 					     trans->transid - 1);
13583fd0a558SYan, Zheng 	} else {
13593fd0a558SYan, Zheng 		/*
13603fd0a558SYan, Zheng 		 * called by btrfs_reloc_post_snapshot_hook.
13613fd0a558SYan, Zheng 		 * the source tree is a reloc tree, all tree blocks
13623fd0a558SYan, Zheng 		 * modified after it was created have RELOC flag
13633fd0a558SYan, Zheng 		 * set in their headers. so it's OK to not update
13643fd0a558SYan, Zheng 		 * the 'last_snapshot'.
13653fd0a558SYan, Zheng 		 */
13663fd0a558SYan, Zheng 		ret = btrfs_copy_root(trans, root, root->node, &eb,
13673fd0a558SYan, Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
13683fd0a558SYan, Zheng 		BUG_ON(ret);
13693fd0a558SYan, Zheng 	}
13703fd0a558SYan, Zheng 
13715d4f98a2SYan Zheng 	memcpy(root_item, &root->root_item, sizeof(*root_item));
13725d4f98a2SYan Zheng 	btrfs_set_root_bytenr(root_item, eb->start);
13735d4f98a2SYan Zheng 	btrfs_set_root_level(root_item, btrfs_header_level(eb));
13745d4f98a2SYan Zheng 	btrfs_set_root_generation(root_item, trans->transid);
13753fd0a558SYan, Zheng 
13763fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
13773fd0a558SYan, Zheng 		btrfs_set_root_refs(root_item, 0);
13783fd0a558SYan, Zheng 		memset(&root_item->drop_progress, 0,
13793fd0a558SYan, Zheng 		       sizeof(struct btrfs_disk_key));
13805d4f98a2SYan Zheng 		root_item->drop_level = 0;
13815bc7247aSMiao Xie 		/*
13825bc7247aSMiao Xie 		 * abuse rtransid, it is safe because it is impossible to
13835bc7247aSMiao Xie 		 * receive data into a relocation tree.
13845bc7247aSMiao Xie 		 */
13855bc7247aSMiao Xie 		btrfs_set_root_rtransid(root_item, last_snap);
13865bc7247aSMiao Xie 		btrfs_set_root_otransid(root_item, trans->transid);
13873fd0a558SYan, Zheng 	}
13885d4f98a2SYan Zheng 
13895d4f98a2SYan Zheng 	btrfs_tree_unlock(eb);
13905d4f98a2SYan Zheng 	free_extent_buffer(eb);
13915d4f98a2SYan Zheng 
13925d4f98a2SYan Zheng 	ret = btrfs_insert_root(trans, root->fs_info->tree_root,
13935d4f98a2SYan Zheng 				&root_key, root_item);
13945d4f98a2SYan Zheng 	BUG_ON(ret);
13955d4f98a2SYan Zheng 	kfree(root_item);
13965d4f98a2SYan Zheng 
1397cb517eabSMiao Xie 	reloc_root = btrfs_read_fs_root(root->fs_info->tree_root, &root_key);
13985d4f98a2SYan Zheng 	BUG_ON(IS_ERR(reloc_root));
13995d4f98a2SYan Zheng 	reloc_root->last_trans = trans->transid;
14003fd0a558SYan, Zheng 	return reloc_root;
14013fd0a558SYan, Zheng }
14023fd0a558SYan, Zheng 
14033fd0a558SYan, Zheng /*
14043fd0a558SYan, Zheng  * create reloc tree for a given fs tree. reloc tree is just a
14053fd0a558SYan, Zheng  * snapshot of the fs tree with special root objectid.
14063fd0a558SYan, Zheng  */
14073fd0a558SYan, Zheng int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
14083fd0a558SYan, Zheng 			  struct btrfs_root *root)
14093fd0a558SYan, Zheng {
14103fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
14113fd0a558SYan, Zheng 	struct reloc_control *rc = root->fs_info->reloc_ctl;
141220dd2cbfSMiao Xie 	struct btrfs_block_rsv *rsv;
14133fd0a558SYan, Zheng 	int clear_rsv = 0;
1414ffd7b339SJeff Mahoney 	int ret;
14153fd0a558SYan, Zheng 
14163fd0a558SYan, Zheng 	if (root->reloc_root) {
14173fd0a558SYan, Zheng 		reloc_root = root->reloc_root;
14183fd0a558SYan, Zheng 		reloc_root->last_trans = trans->transid;
14193fd0a558SYan, Zheng 		return 0;
14203fd0a558SYan, Zheng 	}
14213fd0a558SYan, Zheng 
14223fd0a558SYan, Zheng 	if (!rc || !rc->create_reloc_tree ||
14233fd0a558SYan, Zheng 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
14243fd0a558SYan, Zheng 		return 0;
14253fd0a558SYan, Zheng 
142620dd2cbfSMiao Xie 	if (!trans->reloc_reserved) {
142720dd2cbfSMiao Xie 		rsv = trans->block_rsv;
14283fd0a558SYan, Zheng 		trans->block_rsv = rc->block_rsv;
14293fd0a558SYan, Zheng 		clear_rsv = 1;
14303fd0a558SYan, Zheng 	}
14313fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
14323fd0a558SYan, Zheng 	if (clear_rsv)
143320dd2cbfSMiao Xie 		trans->block_rsv = rsv;
14345d4f98a2SYan Zheng 
1435ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
1436ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
14375d4f98a2SYan Zheng 	root->reloc_root = reloc_root;
14385d4f98a2SYan Zheng 	return 0;
14395d4f98a2SYan Zheng }
14405d4f98a2SYan Zheng 
14415d4f98a2SYan Zheng /*
14425d4f98a2SYan Zheng  * update root item of reloc tree
14435d4f98a2SYan Zheng  */
14445d4f98a2SYan Zheng int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
14455d4f98a2SYan Zheng 			    struct btrfs_root *root)
14465d4f98a2SYan Zheng {
14475d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
14485d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
14495d4f98a2SYan Zheng 	int ret;
14505d4f98a2SYan Zheng 
14515d4f98a2SYan Zheng 	if (!root->reloc_root)
14527585717fSChris Mason 		goto out;
14535d4f98a2SYan Zheng 
14545d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
14555d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
14565d4f98a2SYan Zheng 
14573fd0a558SYan, Zheng 	if (root->fs_info->reloc_ctl->merge_reloc_tree &&
14583fd0a558SYan, Zheng 	    btrfs_root_refs(root_item) == 0) {
14595d4f98a2SYan Zheng 		root->reloc_root = NULL;
1460c974c464SWang Shilong 		__del_reloc_root(reloc_root);
14615d4f98a2SYan Zheng 	}
14625d4f98a2SYan Zheng 
14635d4f98a2SYan Zheng 	if (reloc_root->commit_root != reloc_root->node) {
14645d4f98a2SYan Zheng 		btrfs_set_root_node(root_item, reloc_root->node);
14655d4f98a2SYan Zheng 		free_extent_buffer(reloc_root->commit_root);
14665d4f98a2SYan Zheng 		reloc_root->commit_root = btrfs_root_node(reloc_root);
14675d4f98a2SYan Zheng 	}
14685d4f98a2SYan Zheng 
14695d4f98a2SYan Zheng 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
14705d4f98a2SYan Zheng 				&reloc_root->root_key, root_item);
14715d4f98a2SYan Zheng 	BUG_ON(ret);
14727585717fSChris Mason 
14737585717fSChris Mason out:
14745d4f98a2SYan Zheng 	return 0;
14755d4f98a2SYan Zheng }
14765d4f98a2SYan Zheng 
14775d4f98a2SYan Zheng /*
14785d4f98a2SYan Zheng  * helper to find first cached inode with inode number >= objectid
14795d4f98a2SYan Zheng  * in a subvolume
14805d4f98a2SYan Zheng  */
14815d4f98a2SYan Zheng static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
14825d4f98a2SYan Zheng {
14835d4f98a2SYan Zheng 	struct rb_node *node;
14845d4f98a2SYan Zheng 	struct rb_node *prev;
14855d4f98a2SYan Zheng 	struct btrfs_inode *entry;
14865d4f98a2SYan Zheng 	struct inode *inode;
14875d4f98a2SYan Zheng 
14885d4f98a2SYan Zheng 	spin_lock(&root->inode_lock);
14895d4f98a2SYan Zheng again:
14905d4f98a2SYan Zheng 	node = root->inode_tree.rb_node;
14915d4f98a2SYan Zheng 	prev = NULL;
14925d4f98a2SYan Zheng 	while (node) {
14935d4f98a2SYan Zheng 		prev = node;
14945d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
14955d4f98a2SYan Zheng 
149633345d01SLi Zefan 		if (objectid < btrfs_ino(&entry->vfs_inode))
14975d4f98a2SYan Zheng 			node = node->rb_left;
149833345d01SLi Zefan 		else if (objectid > btrfs_ino(&entry->vfs_inode))
14995d4f98a2SYan Zheng 			node = node->rb_right;
15005d4f98a2SYan Zheng 		else
15015d4f98a2SYan Zheng 			break;
15025d4f98a2SYan Zheng 	}
15035d4f98a2SYan Zheng 	if (!node) {
15045d4f98a2SYan Zheng 		while (prev) {
15055d4f98a2SYan Zheng 			entry = rb_entry(prev, struct btrfs_inode, rb_node);
150633345d01SLi Zefan 			if (objectid <= btrfs_ino(&entry->vfs_inode)) {
15075d4f98a2SYan Zheng 				node = prev;
15085d4f98a2SYan Zheng 				break;
15095d4f98a2SYan Zheng 			}
15105d4f98a2SYan Zheng 			prev = rb_next(prev);
15115d4f98a2SYan Zheng 		}
15125d4f98a2SYan Zheng 	}
15135d4f98a2SYan Zheng 	while (node) {
15145d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
15155d4f98a2SYan Zheng 		inode = igrab(&entry->vfs_inode);
15165d4f98a2SYan Zheng 		if (inode) {
15175d4f98a2SYan Zheng 			spin_unlock(&root->inode_lock);
15185d4f98a2SYan Zheng 			return inode;
15195d4f98a2SYan Zheng 		}
15205d4f98a2SYan Zheng 
152133345d01SLi Zefan 		objectid = btrfs_ino(&entry->vfs_inode) + 1;
15225d4f98a2SYan Zheng 		if (cond_resched_lock(&root->inode_lock))
15235d4f98a2SYan Zheng 			goto again;
15245d4f98a2SYan Zheng 
15255d4f98a2SYan Zheng 		node = rb_next(node);
15265d4f98a2SYan Zheng 	}
15275d4f98a2SYan Zheng 	spin_unlock(&root->inode_lock);
15285d4f98a2SYan Zheng 	return NULL;
15295d4f98a2SYan Zheng }
15305d4f98a2SYan Zheng 
15315d4f98a2SYan Zheng static int in_block_group(u64 bytenr,
15325d4f98a2SYan Zheng 			  struct btrfs_block_group_cache *block_group)
15335d4f98a2SYan Zheng {
15345d4f98a2SYan Zheng 	if (bytenr >= block_group->key.objectid &&
15355d4f98a2SYan Zheng 	    bytenr < block_group->key.objectid + block_group->key.offset)
15365d4f98a2SYan Zheng 		return 1;
15375d4f98a2SYan Zheng 	return 0;
15385d4f98a2SYan Zheng }
15395d4f98a2SYan Zheng 
15405d4f98a2SYan Zheng /*
15415d4f98a2SYan Zheng  * get new location of data
15425d4f98a2SYan Zheng  */
15435d4f98a2SYan Zheng static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
15445d4f98a2SYan Zheng 			    u64 bytenr, u64 num_bytes)
15455d4f98a2SYan Zheng {
15465d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
15475d4f98a2SYan Zheng 	struct btrfs_path *path;
15485d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
15495d4f98a2SYan Zheng 	struct extent_buffer *leaf;
15505d4f98a2SYan Zheng 	int ret;
15515d4f98a2SYan Zheng 
15525d4f98a2SYan Zheng 	path = btrfs_alloc_path();
15535d4f98a2SYan Zheng 	if (!path)
15545d4f98a2SYan Zheng 		return -ENOMEM;
15555d4f98a2SYan Zheng 
15565d4f98a2SYan Zheng 	bytenr -= BTRFS_I(reloc_inode)->index_cnt;
155733345d01SLi Zefan 	ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(reloc_inode),
15585d4f98a2SYan Zheng 				       bytenr, 0);
15595d4f98a2SYan Zheng 	if (ret < 0)
15605d4f98a2SYan Zheng 		goto out;
15615d4f98a2SYan Zheng 	if (ret > 0) {
15625d4f98a2SYan Zheng 		ret = -ENOENT;
15635d4f98a2SYan Zheng 		goto out;
15645d4f98a2SYan Zheng 	}
15655d4f98a2SYan Zheng 
15665d4f98a2SYan Zheng 	leaf = path->nodes[0];
15675d4f98a2SYan Zheng 	fi = btrfs_item_ptr(leaf, path->slots[0],
15685d4f98a2SYan Zheng 			    struct btrfs_file_extent_item);
15695d4f98a2SYan Zheng 
15705d4f98a2SYan Zheng 	BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
15715d4f98a2SYan Zheng 	       btrfs_file_extent_compression(leaf, fi) ||
15725d4f98a2SYan Zheng 	       btrfs_file_extent_encryption(leaf, fi) ||
15735d4f98a2SYan Zheng 	       btrfs_file_extent_other_encoding(leaf, fi));
15745d4f98a2SYan Zheng 
15755d4f98a2SYan Zheng 	if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
157683d4cfd4SJosef Bacik 		ret = -EINVAL;
15775d4f98a2SYan Zheng 		goto out;
15785d4f98a2SYan Zheng 	}
15795d4f98a2SYan Zheng 
15805d4f98a2SYan Zheng 	*new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
15815d4f98a2SYan Zheng 	ret = 0;
15825d4f98a2SYan Zheng out:
15835d4f98a2SYan Zheng 	btrfs_free_path(path);
15845d4f98a2SYan Zheng 	return ret;
15855d4f98a2SYan Zheng }
15865d4f98a2SYan Zheng 
15875d4f98a2SYan Zheng /*
15885d4f98a2SYan Zheng  * update file extent items in the tree leaf to point to
15895d4f98a2SYan Zheng  * the new locations.
15905d4f98a2SYan Zheng  */
15913fd0a558SYan, Zheng static noinline_for_stack
15923fd0a558SYan, Zheng int replace_file_extents(struct btrfs_trans_handle *trans,
15935d4f98a2SYan Zheng 			 struct reloc_control *rc,
15945d4f98a2SYan Zheng 			 struct btrfs_root *root,
15953fd0a558SYan, Zheng 			 struct extent_buffer *leaf)
15965d4f98a2SYan Zheng {
15975d4f98a2SYan Zheng 	struct btrfs_key key;
15985d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
15995d4f98a2SYan Zheng 	struct inode *inode = NULL;
16005d4f98a2SYan Zheng 	u64 parent;
16015d4f98a2SYan Zheng 	u64 bytenr;
16023fd0a558SYan, Zheng 	u64 new_bytenr = 0;
16035d4f98a2SYan Zheng 	u64 num_bytes;
16045d4f98a2SYan Zheng 	u64 end;
16055d4f98a2SYan Zheng 	u32 nritems;
16065d4f98a2SYan Zheng 	u32 i;
160783d4cfd4SJosef Bacik 	int ret = 0;
16085d4f98a2SYan Zheng 	int first = 1;
16095d4f98a2SYan Zheng 	int dirty = 0;
16105d4f98a2SYan Zheng 
16115d4f98a2SYan Zheng 	if (rc->stage != UPDATE_DATA_PTRS)
16125d4f98a2SYan Zheng 		return 0;
16135d4f98a2SYan Zheng 
16145d4f98a2SYan Zheng 	/* reloc trees always use full backref */
16155d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
16165d4f98a2SYan Zheng 		parent = leaf->start;
16175d4f98a2SYan Zheng 	else
16185d4f98a2SYan Zheng 		parent = 0;
16195d4f98a2SYan Zheng 
16205d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
16215d4f98a2SYan Zheng 	for (i = 0; i < nritems; i++) {
16225d4f98a2SYan Zheng 		cond_resched();
16235d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, i);
16245d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_DATA_KEY)
16255d4f98a2SYan Zheng 			continue;
16265d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
16275d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
16285d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
16295d4f98a2SYan Zheng 			continue;
16305d4f98a2SYan Zheng 		bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
16315d4f98a2SYan Zheng 		num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
16325d4f98a2SYan Zheng 		if (bytenr == 0)
16335d4f98a2SYan Zheng 			continue;
16345d4f98a2SYan Zheng 		if (!in_block_group(bytenr, rc->block_group))
16355d4f98a2SYan Zheng 			continue;
16365d4f98a2SYan Zheng 
16375d4f98a2SYan Zheng 		/*
16385d4f98a2SYan Zheng 		 * if we are modifying block in fs tree, wait for readpage
16395d4f98a2SYan Zheng 		 * to complete and drop the extent cache
16405d4f98a2SYan Zheng 		 */
16415d4f98a2SYan Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
16425d4f98a2SYan Zheng 			if (first) {
16435d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
16445d4f98a2SYan Zheng 				first = 0;
164533345d01SLi Zefan 			} else if (inode && btrfs_ino(inode) < key.objectid) {
16463fd0a558SYan, Zheng 				btrfs_add_delayed_iput(inode);
16475d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
16485d4f98a2SYan Zheng 			}
164933345d01SLi Zefan 			if (inode && btrfs_ino(inode) == key.objectid) {
16505d4f98a2SYan Zheng 				end = key.offset +
16515d4f98a2SYan Zheng 				      btrfs_file_extent_num_bytes(leaf, fi);
16525d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(key.offset,
16535d4f98a2SYan Zheng 						    root->sectorsize));
16545d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(end, root->sectorsize));
16555d4f98a2SYan Zheng 				end--;
16565d4f98a2SYan Zheng 				ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
1657d0082371SJeff Mahoney 						      key.offset, end);
16585d4f98a2SYan Zheng 				if (!ret)
16595d4f98a2SYan Zheng 					continue;
16605d4f98a2SYan Zheng 
16615d4f98a2SYan Zheng 				btrfs_drop_extent_cache(inode, key.offset, end,
16625d4f98a2SYan Zheng 							1);
16635d4f98a2SYan Zheng 				unlock_extent(&BTRFS_I(inode)->io_tree,
1664d0082371SJeff Mahoney 					      key.offset, end);
16655d4f98a2SYan Zheng 			}
16665d4f98a2SYan Zheng 		}
16675d4f98a2SYan Zheng 
16685d4f98a2SYan Zheng 		ret = get_new_location(rc->data_inode, &new_bytenr,
16695d4f98a2SYan Zheng 				       bytenr, num_bytes);
167083d4cfd4SJosef Bacik 		if (ret) {
167183d4cfd4SJosef Bacik 			/*
167283d4cfd4SJosef Bacik 			 * Don't have to abort since we've not changed anything
167383d4cfd4SJosef Bacik 			 * in the file extent yet.
167483d4cfd4SJosef Bacik 			 */
167583d4cfd4SJosef Bacik 			break;
16763fd0a558SYan, Zheng 		}
16775d4f98a2SYan Zheng 
16785d4f98a2SYan Zheng 		btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
16795d4f98a2SYan Zheng 		dirty = 1;
16805d4f98a2SYan Zheng 
16815d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
16825d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, root, new_bytenr,
16835d4f98a2SYan Zheng 					   num_bytes, parent,
16845d4f98a2SYan Zheng 					   btrfs_header_owner(leaf),
168566d7e7f0SArne Jansen 					   key.objectid, key.offset, 1);
168683d4cfd4SJosef Bacik 		if (ret) {
168783d4cfd4SJosef Bacik 			btrfs_abort_transaction(trans, root, ret);
168883d4cfd4SJosef Bacik 			break;
168983d4cfd4SJosef Bacik 		}
16905d4f98a2SYan Zheng 
16915d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
16925d4f98a2SYan Zheng 					parent, btrfs_header_owner(leaf),
169366d7e7f0SArne Jansen 					key.objectid, key.offset, 1);
169483d4cfd4SJosef Bacik 		if (ret) {
169583d4cfd4SJosef Bacik 			btrfs_abort_transaction(trans, root, ret);
169683d4cfd4SJosef Bacik 			break;
169783d4cfd4SJosef Bacik 		}
16985d4f98a2SYan Zheng 	}
16995d4f98a2SYan Zheng 	if (dirty)
17005d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(leaf);
17013fd0a558SYan, Zheng 	if (inode)
17023fd0a558SYan, Zheng 		btrfs_add_delayed_iput(inode);
170383d4cfd4SJosef Bacik 	return ret;
17045d4f98a2SYan Zheng }
17055d4f98a2SYan Zheng 
17065d4f98a2SYan Zheng static noinline_for_stack
17075d4f98a2SYan Zheng int memcmp_node_keys(struct extent_buffer *eb, int slot,
17085d4f98a2SYan Zheng 		     struct btrfs_path *path, int level)
17095d4f98a2SYan Zheng {
17105d4f98a2SYan Zheng 	struct btrfs_disk_key key1;
17115d4f98a2SYan Zheng 	struct btrfs_disk_key key2;
17125d4f98a2SYan Zheng 	btrfs_node_key(eb, &key1, slot);
17135d4f98a2SYan Zheng 	btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
17145d4f98a2SYan Zheng 	return memcmp(&key1, &key2, sizeof(key1));
17155d4f98a2SYan Zheng }
17165d4f98a2SYan Zheng 
17175d4f98a2SYan Zheng /*
17185d4f98a2SYan Zheng  * try to replace tree blocks in fs tree with the new blocks
17195d4f98a2SYan Zheng  * in reloc tree. tree blocks haven't been modified since the
17205d4f98a2SYan Zheng  * reloc tree was create can be replaced.
17215d4f98a2SYan Zheng  *
17225d4f98a2SYan Zheng  * if a block was replaced, level of the block + 1 is returned.
17235d4f98a2SYan Zheng  * if no block got replaced, 0 is returned. if there are other
17245d4f98a2SYan Zheng  * errors, a negative error number is returned.
17255d4f98a2SYan Zheng  */
17263fd0a558SYan, Zheng static noinline_for_stack
17273fd0a558SYan, Zheng int replace_path(struct btrfs_trans_handle *trans,
17285d4f98a2SYan Zheng 		 struct btrfs_root *dest, struct btrfs_root *src,
17295d4f98a2SYan Zheng 		 struct btrfs_path *path, struct btrfs_key *next_key,
17305d4f98a2SYan Zheng 		 int lowest_level, int max_level)
17315d4f98a2SYan Zheng {
17325d4f98a2SYan Zheng 	struct extent_buffer *eb;
17335d4f98a2SYan Zheng 	struct extent_buffer *parent;
17345d4f98a2SYan Zheng 	struct btrfs_key key;
17355d4f98a2SYan Zheng 	u64 old_bytenr;
17365d4f98a2SYan Zheng 	u64 new_bytenr;
17375d4f98a2SYan Zheng 	u64 old_ptr_gen;
17385d4f98a2SYan Zheng 	u64 new_ptr_gen;
17395d4f98a2SYan Zheng 	u64 last_snapshot;
17405d4f98a2SYan Zheng 	u32 blocksize;
17413fd0a558SYan, Zheng 	int cow = 0;
17425d4f98a2SYan Zheng 	int level;
17435d4f98a2SYan Zheng 	int ret;
17445d4f98a2SYan Zheng 	int slot;
17455d4f98a2SYan Zheng 
17465d4f98a2SYan Zheng 	BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
17475d4f98a2SYan Zheng 	BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
17485d4f98a2SYan Zheng 
17495d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&src->root_item);
17503fd0a558SYan, Zheng again:
17515d4f98a2SYan Zheng 	slot = path->slots[lowest_level];
17525d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
17535d4f98a2SYan Zheng 
17545d4f98a2SYan Zheng 	eb = btrfs_lock_root_node(dest);
17555d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
17565d4f98a2SYan Zheng 	level = btrfs_header_level(eb);
17575d4f98a2SYan Zheng 
17585d4f98a2SYan Zheng 	if (level < lowest_level) {
17595d4f98a2SYan Zheng 		btrfs_tree_unlock(eb);
17605d4f98a2SYan Zheng 		free_extent_buffer(eb);
17615d4f98a2SYan Zheng 		return 0;
17625d4f98a2SYan Zheng 	}
17635d4f98a2SYan Zheng 
17643fd0a558SYan, Zheng 	if (cow) {
17655d4f98a2SYan Zheng 		ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
17665d4f98a2SYan Zheng 		BUG_ON(ret);
17673fd0a558SYan, Zheng 	}
17685d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
17695d4f98a2SYan Zheng 
17705d4f98a2SYan Zheng 	if (next_key) {
17715d4f98a2SYan Zheng 		next_key->objectid = (u64)-1;
17725d4f98a2SYan Zheng 		next_key->type = (u8)-1;
17735d4f98a2SYan Zheng 		next_key->offset = (u64)-1;
17745d4f98a2SYan Zheng 	}
17755d4f98a2SYan Zheng 
17765d4f98a2SYan Zheng 	parent = eb;
17775d4f98a2SYan Zheng 	while (1) {
17785d4f98a2SYan Zheng 		level = btrfs_header_level(parent);
17795d4f98a2SYan Zheng 		BUG_ON(level < lowest_level);
17805d4f98a2SYan Zheng 
17815d4f98a2SYan Zheng 		ret = btrfs_bin_search(parent, &key, level, &slot);
17825d4f98a2SYan Zheng 		if (ret && slot > 0)
17835d4f98a2SYan Zheng 			slot--;
17845d4f98a2SYan Zheng 
17855d4f98a2SYan Zheng 		if (next_key && slot + 1 < btrfs_header_nritems(parent))
17865d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(parent, next_key, slot + 1);
17875d4f98a2SYan Zheng 
17885d4f98a2SYan Zheng 		old_bytenr = btrfs_node_blockptr(parent, slot);
17895d4f98a2SYan Zheng 		blocksize = btrfs_level_size(dest, level - 1);
17905d4f98a2SYan Zheng 		old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
17915d4f98a2SYan Zheng 
17925d4f98a2SYan Zheng 		if (level <= max_level) {
17935d4f98a2SYan Zheng 			eb = path->nodes[level];
17945d4f98a2SYan Zheng 			new_bytenr = btrfs_node_blockptr(eb,
17955d4f98a2SYan Zheng 							path->slots[level]);
17965d4f98a2SYan Zheng 			new_ptr_gen = btrfs_node_ptr_generation(eb,
17975d4f98a2SYan Zheng 							path->slots[level]);
17985d4f98a2SYan Zheng 		} else {
17995d4f98a2SYan Zheng 			new_bytenr = 0;
18005d4f98a2SYan Zheng 			new_ptr_gen = 0;
18015d4f98a2SYan Zheng 		}
18025d4f98a2SYan Zheng 
1803fae7f21cSDulshani Gunawardhana 		if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
18045d4f98a2SYan Zheng 			ret = level;
18055d4f98a2SYan Zheng 			break;
18065d4f98a2SYan Zheng 		}
18075d4f98a2SYan Zheng 
18085d4f98a2SYan Zheng 		if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
18095d4f98a2SYan Zheng 		    memcmp_node_keys(parent, slot, path, level)) {
18103fd0a558SYan, Zheng 			if (level <= lowest_level) {
18115d4f98a2SYan Zheng 				ret = 0;
18125d4f98a2SYan Zheng 				break;
18135d4f98a2SYan Zheng 			}
18145d4f98a2SYan Zheng 
18155d4f98a2SYan Zheng 			eb = read_tree_block(dest, old_bytenr, blocksize,
18165d4f98a2SYan Zheng 					     old_ptr_gen);
1817416bc658SJosef Bacik 			if (!eb || !extent_buffer_uptodate(eb)) {
1818416bc658SJosef Bacik 				ret = (!eb) ? -ENOMEM : -EIO;
1819416bc658SJosef Bacik 				free_extent_buffer(eb);
1820379cde74SStefan Behrens 				break;
1821416bc658SJosef Bacik 			}
18225d4f98a2SYan Zheng 			btrfs_tree_lock(eb);
18233fd0a558SYan, Zheng 			if (cow) {
18245d4f98a2SYan Zheng 				ret = btrfs_cow_block(trans, dest, eb, parent,
18255d4f98a2SYan Zheng 						      slot, &eb);
18265d4f98a2SYan Zheng 				BUG_ON(ret);
18275d4f98a2SYan Zheng 			}
18283fd0a558SYan, Zheng 			btrfs_set_lock_blocking(eb);
18295d4f98a2SYan Zheng 
18305d4f98a2SYan Zheng 			btrfs_tree_unlock(parent);
18315d4f98a2SYan Zheng 			free_extent_buffer(parent);
18325d4f98a2SYan Zheng 
18335d4f98a2SYan Zheng 			parent = eb;
18345d4f98a2SYan Zheng 			continue;
18355d4f98a2SYan Zheng 		}
18365d4f98a2SYan Zheng 
18373fd0a558SYan, Zheng 		if (!cow) {
18383fd0a558SYan, Zheng 			btrfs_tree_unlock(parent);
18393fd0a558SYan, Zheng 			free_extent_buffer(parent);
18403fd0a558SYan, Zheng 			cow = 1;
18413fd0a558SYan, Zheng 			goto again;
18423fd0a558SYan, Zheng 		}
18433fd0a558SYan, Zheng 
18445d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &key,
18455d4f98a2SYan Zheng 				      path->slots[level]);
1846b3b4aa74SDavid Sterba 		btrfs_release_path(path);
18475d4f98a2SYan Zheng 
18485d4f98a2SYan Zheng 		path->lowest_level = level;
18495d4f98a2SYan Zheng 		ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
18505d4f98a2SYan Zheng 		path->lowest_level = 0;
18515d4f98a2SYan Zheng 		BUG_ON(ret);
18525d4f98a2SYan Zheng 
18535d4f98a2SYan Zheng 		/*
18545d4f98a2SYan Zheng 		 * swap blocks in fs tree and reloc tree.
18555d4f98a2SYan Zheng 		 */
18565d4f98a2SYan Zheng 		btrfs_set_node_blockptr(parent, slot, new_bytenr);
18575d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
18585d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(parent);
18595d4f98a2SYan Zheng 
18605d4f98a2SYan Zheng 		btrfs_set_node_blockptr(path->nodes[level],
18615d4f98a2SYan Zheng 					path->slots[level], old_bytenr);
18625d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(path->nodes[level],
18635d4f98a2SYan Zheng 					      path->slots[level], old_ptr_gen);
18645d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(path->nodes[level]);
18655d4f98a2SYan Zheng 
18665d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, src, old_bytenr, blocksize,
18675d4f98a2SYan Zheng 					path->nodes[level]->start,
186866d7e7f0SArne Jansen 					src->root_key.objectid, level - 1, 0,
186966d7e7f0SArne Jansen 					1);
18705d4f98a2SYan Zheng 		BUG_ON(ret);
18715d4f98a2SYan Zheng 		ret = btrfs_inc_extent_ref(trans, dest, new_bytenr, blocksize,
18725d4f98a2SYan Zheng 					0, dest->root_key.objectid, level - 1,
187366d7e7f0SArne Jansen 					0, 1);
18745d4f98a2SYan Zheng 		BUG_ON(ret);
18755d4f98a2SYan Zheng 
18765d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, src, new_bytenr, blocksize,
18775d4f98a2SYan Zheng 					path->nodes[level]->start,
187866d7e7f0SArne Jansen 					src->root_key.objectid, level - 1, 0,
187966d7e7f0SArne Jansen 					1);
18805d4f98a2SYan Zheng 		BUG_ON(ret);
18815d4f98a2SYan Zheng 
18825d4f98a2SYan Zheng 		ret = btrfs_free_extent(trans, dest, old_bytenr, blocksize,
18835d4f98a2SYan Zheng 					0, dest->root_key.objectid, level - 1,
188466d7e7f0SArne Jansen 					0, 1);
18855d4f98a2SYan Zheng 		BUG_ON(ret);
18865d4f98a2SYan Zheng 
18875d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
18885d4f98a2SYan Zheng 
18895d4f98a2SYan Zheng 		ret = level;
18905d4f98a2SYan Zheng 		break;
18915d4f98a2SYan Zheng 	}
18925d4f98a2SYan Zheng 	btrfs_tree_unlock(parent);
18935d4f98a2SYan Zheng 	free_extent_buffer(parent);
18945d4f98a2SYan Zheng 	return ret;
18955d4f98a2SYan Zheng }
18965d4f98a2SYan Zheng 
18975d4f98a2SYan Zheng /*
18985d4f98a2SYan Zheng  * helper to find next relocated block in reloc tree
18995d4f98a2SYan Zheng  */
19005d4f98a2SYan Zheng static noinline_for_stack
19015d4f98a2SYan Zheng int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19025d4f98a2SYan Zheng 		       int *level)
19035d4f98a2SYan Zheng {
19045d4f98a2SYan Zheng 	struct extent_buffer *eb;
19055d4f98a2SYan Zheng 	int i;
19065d4f98a2SYan Zheng 	u64 last_snapshot;
19075d4f98a2SYan Zheng 	u32 nritems;
19085d4f98a2SYan Zheng 
19095d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
19105d4f98a2SYan Zheng 
19115d4f98a2SYan Zheng 	for (i = 0; i < *level; i++) {
19125d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19135d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19145d4f98a2SYan Zheng 	}
19155d4f98a2SYan Zheng 
19165d4f98a2SYan Zheng 	for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
19175d4f98a2SYan Zheng 		eb = path->nodes[i];
19185d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
19195d4f98a2SYan Zheng 		while (path->slots[i] + 1 < nritems) {
19205d4f98a2SYan Zheng 			path->slots[i]++;
19215d4f98a2SYan Zheng 			if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
19225d4f98a2SYan Zheng 			    last_snapshot)
19235d4f98a2SYan Zheng 				continue;
19245d4f98a2SYan Zheng 
19255d4f98a2SYan Zheng 			*level = i;
19265d4f98a2SYan Zheng 			return 0;
19275d4f98a2SYan Zheng 		}
19285d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19295d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19305d4f98a2SYan Zheng 	}
19315d4f98a2SYan Zheng 	return 1;
19325d4f98a2SYan Zheng }
19335d4f98a2SYan Zheng 
19345d4f98a2SYan Zheng /*
19355d4f98a2SYan Zheng  * walk down reloc tree to find relocated block of lowest level
19365d4f98a2SYan Zheng  */
19375d4f98a2SYan Zheng static noinline_for_stack
19385d4f98a2SYan Zheng int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19395d4f98a2SYan Zheng 			 int *level)
19405d4f98a2SYan Zheng {
19415d4f98a2SYan Zheng 	struct extent_buffer *eb = NULL;
19425d4f98a2SYan Zheng 	int i;
19435d4f98a2SYan Zheng 	u64 bytenr;
19445d4f98a2SYan Zheng 	u64 ptr_gen = 0;
19455d4f98a2SYan Zheng 	u64 last_snapshot;
19465d4f98a2SYan Zheng 	u32 blocksize;
19475d4f98a2SYan Zheng 	u32 nritems;
19485d4f98a2SYan Zheng 
19495d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
19505d4f98a2SYan Zheng 
19515d4f98a2SYan Zheng 	for (i = *level; i > 0; i--) {
19525d4f98a2SYan Zheng 		eb = path->nodes[i];
19535d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
19545d4f98a2SYan Zheng 		while (path->slots[i] < nritems) {
19555d4f98a2SYan Zheng 			ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
19565d4f98a2SYan Zheng 			if (ptr_gen > last_snapshot)
19575d4f98a2SYan Zheng 				break;
19585d4f98a2SYan Zheng 			path->slots[i]++;
19595d4f98a2SYan Zheng 		}
19605d4f98a2SYan Zheng 		if (path->slots[i] >= nritems) {
19615d4f98a2SYan Zheng 			if (i == *level)
19625d4f98a2SYan Zheng 				break;
19635d4f98a2SYan Zheng 			*level = i + 1;
19645d4f98a2SYan Zheng 			return 0;
19655d4f98a2SYan Zheng 		}
19665d4f98a2SYan Zheng 		if (i == 1) {
19675d4f98a2SYan Zheng 			*level = i;
19685d4f98a2SYan Zheng 			return 0;
19695d4f98a2SYan Zheng 		}
19705d4f98a2SYan Zheng 
19715d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(eb, path->slots[i]);
19725d4f98a2SYan Zheng 		blocksize = btrfs_level_size(root, i - 1);
19735d4f98a2SYan Zheng 		eb = read_tree_block(root, bytenr, blocksize, ptr_gen);
1974416bc658SJosef Bacik 		if (!eb || !extent_buffer_uptodate(eb)) {
1975416bc658SJosef Bacik 			free_extent_buffer(eb);
1976416bc658SJosef Bacik 			return -EIO;
1977416bc658SJosef Bacik 		}
19785d4f98a2SYan Zheng 		BUG_ON(btrfs_header_level(eb) != i - 1);
19795d4f98a2SYan Zheng 		path->nodes[i - 1] = eb;
19805d4f98a2SYan Zheng 		path->slots[i - 1] = 0;
19815d4f98a2SYan Zheng 	}
19825d4f98a2SYan Zheng 	return 1;
19835d4f98a2SYan Zheng }
19845d4f98a2SYan Zheng 
19855d4f98a2SYan Zheng /*
19865d4f98a2SYan Zheng  * invalidate extent cache for file extents whose key in range of
19875d4f98a2SYan Zheng  * [min_key, max_key)
19885d4f98a2SYan Zheng  */
19895d4f98a2SYan Zheng static int invalidate_extent_cache(struct btrfs_root *root,
19905d4f98a2SYan Zheng 				   struct btrfs_key *min_key,
19915d4f98a2SYan Zheng 				   struct btrfs_key *max_key)
19925d4f98a2SYan Zheng {
19935d4f98a2SYan Zheng 	struct inode *inode = NULL;
19945d4f98a2SYan Zheng 	u64 objectid;
19955d4f98a2SYan Zheng 	u64 start, end;
199633345d01SLi Zefan 	u64 ino;
19975d4f98a2SYan Zheng 
19985d4f98a2SYan Zheng 	objectid = min_key->objectid;
19995d4f98a2SYan Zheng 	while (1) {
20005d4f98a2SYan Zheng 		cond_resched();
20015d4f98a2SYan Zheng 		iput(inode);
20025d4f98a2SYan Zheng 
20035d4f98a2SYan Zheng 		if (objectid > max_key->objectid)
20045d4f98a2SYan Zheng 			break;
20055d4f98a2SYan Zheng 
20065d4f98a2SYan Zheng 		inode = find_next_inode(root, objectid);
20075d4f98a2SYan Zheng 		if (!inode)
20085d4f98a2SYan Zheng 			break;
200933345d01SLi Zefan 		ino = btrfs_ino(inode);
20105d4f98a2SYan Zheng 
201133345d01SLi Zefan 		if (ino > max_key->objectid) {
20125d4f98a2SYan Zheng 			iput(inode);
20135d4f98a2SYan Zheng 			break;
20145d4f98a2SYan Zheng 		}
20155d4f98a2SYan Zheng 
201633345d01SLi Zefan 		objectid = ino + 1;
20175d4f98a2SYan Zheng 		if (!S_ISREG(inode->i_mode))
20185d4f98a2SYan Zheng 			continue;
20195d4f98a2SYan Zheng 
202033345d01SLi Zefan 		if (unlikely(min_key->objectid == ino)) {
20215d4f98a2SYan Zheng 			if (min_key->type > BTRFS_EXTENT_DATA_KEY)
20225d4f98a2SYan Zheng 				continue;
20235d4f98a2SYan Zheng 			if (min_key->type < BTRFS_EXTENT_DATA_KEY)
20245d4f98a2SYan Zheng 				start = 0;
20255d4f98a2SYan Zheng 			else {
20265d4f98a2SYan Zheng 				start = min_key->offset;
20275d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(start, root->sectorsize));
20285d4f98a2SYan Zheng 			}
20295d4f98a2SYan Zheng 		} else {
20305d4f98a2SYan Zheng 			start = 0;
20315d4f98a2SYan Zheng 		}
20325d4f98a2SYan Zheng 
203333345d01SLi Zefan 		if (unlikely(max_key->objectid == ino)) {
20345d4f98a2SYan Zheng 			if (max_key->type < BTRFS_EXTENT_DATA_KEY)
20355d4f98a2SYan Zheng 				continue;
20365d4f98a2SYan Zheng 			if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
20375d4f98a2SYan Zheng 				end = (u64)-1;
20385d4f98a2SYan Zheng 			} else {
20395d4f98a2SYan Zheng 				if (max_key->offset == 0)
20405d4f98a2SYan Zheng 					continue;
20415d4f98a2SYan Zheng 				end = max_key->offset;
20425d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(end, root->sectorsize));
20435d4f98a2SYan Zheng 				end--;
20445d4f98a2SYan Zheng 			}
20455d4f98a2SYan Zheng 		} else {
20465d4f98a2SYan Zheng 			end = (u64)-1;
20475d4f98a2SYan Zheng 		}
20485d4f98a2SYan Zheng 
20495d4f98a2SYan Zheng 		/* the lock_extent waits for readpage to complete */
2050d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
20515d4f98a2SYan Zheng 		btrfs_drop_extent_cache(inode, start, end, 1);
2052d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
20535d4f98a2SYan Zheng 	}
20545d4f98a2SYan Zheng 	return 0;
20555d4f98a2SYan Zheng }
20565d4f98a2SYan Zheng 
20575d4f98a2SYan Zheng static int find_next_key(struct btrfs_path *path, int level,
20585d4f98a2SYan Zheng 			 struct btrfs_key *key)
20595d4f98a2SYan Zheng 
20605d4f98a2SYan Zheng {
20615d4f98a2SYan Zheng 	while (level < BTRFS_MAX_LEVEL) {
20625d4f98a2SYan Zheng 		if (!path->nodes[level])
20635d4f98a2SYan Zheng 			break;
20645d4f98a2SYan Zheng 		if (path->slots[level] + 1 <
20655d4f98a2SYan Zheng 		    btrfs_header_nritems(path->nodes[level])) {
20665d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], key,
20675d4f98a2SYan Zheng 					      path->slots[level] + 1);
20685d4f98a2SYan Zheng 			return 0;
20695d4f98a2SYan Zheng 		}
20705d4f98a2SYan Zheng 		level++;
20715d4f98a2SYan Zheng 	}
20725d4f98a2SYan Zheng 	return 1;
20735d4f98a2SYan Zheng }
20745d4f98a2SYan Zheng 
20755d4f98a2SYan Zheng /*
20765d4f98a2SYan Zheng  * merge the relocated tree blocks in reloc tree with corresponding
20775d4f98a2SYan Zheng  * fs tree.
20785d4f98a2SYan Zheng  */
20795d4f98a2SYan Zheng static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
20805d4f98a2SYan Zheng 					       struct btrfs_root *root)
20815d4f98a2SYan Zheng {
20825d4f98a2SYan Zheng 	LIST_HEAD(inode_list);
20835d4f98a2SYan Zheng 	struct btrfs_key key;
20845d4f98a2SYan Zheng 	struct btrfs_key next_key;
20859e6a0c52SJosef Bacik 	struct btrfs_trans_handle *trans = NULL;
20865d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
20875d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
20885d4f98a2SYan Zheng 	struct btrfs_path *path;
20893fd0a558SYan, Zheng 	struct extent_buffer *leaf;
20905d4f98a2SYan Zheng 	int level;
20915d4f98a2SYan Zheng 	int max_level;
20925d4f98a2SYan Zheng 	int replaced = 0;
20935d4f98a2SYan Zheng 	int ret;
20945d4f98a2SYan Zheng 	int err = 0;
20953fd0a558SYan, Zheng 	u32 min_reserved;
20965d4f98a2SYan Zheng 
20975d4f98a2SYan Zheng 	path = btrfs_alloc_path();
20985d4f98a2SYan Zheng 	if (!path)
20995d4f98a2SYan Zheng 		return -ENOMEM;
2100026fd317SJosef Bacik 	path->reada = 1;
21015d4f98a2SYan Zheng 
21025d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
21035d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
21045d4f98a2SYan Zheng 
21055d4f98a2SYan Zheng 	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
21065d4f98a2SYan Zheng 		level = btrfs_root_level(root_item);
21075d4f98a2SYan Zheng 		extent_buffer_get(reloc_root->node);
21085d4f98a2SYan Zheng 		path->nodes[level] = reloc_root->node;
21095d4f98a2SYan Zheng 		path->slots[level] = 0;
21105d4f98a2SYan Zheng 	} else {
21115d4f98a2SYan Zheng 		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
21125d4f98a2SYan Zheng 
21135d4f98a2SYan Zheng 		level = root_item->drop_level;
21145d4f98a2SYan Zheng 		BUG_ON(level == 0);
21155d4f98a2SYan Zheng 		path->lowest_level = level;
21165d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
211733c66f43SYan Zheng 		path->lowest_level = 0;
21185d4f98a2SYan Zheng 		if (ret < 0) {
21195d4f98a2SYan Zheng 			btrfs_free_path(path);
21205d4f98a2SYan Zheng 			return ret;
21215d4f98a2SYan Zheng 		}
21225d4f98a2SYan Zheng 
21235d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &next_key,
21245d4f98a2SYan Zheng 				      path->slots[level]);
21255d4f98a2SYan Zheng 		WARN_ON(memcmp(&key, &next_key, sizeof(key)));
21265d4f98a2SYan Zheng 
21275d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
21285d4f98a2SYan Zheng 	}
21295d4f98a2SYan Zheng 
21303fd0a558SYan, Zheng 	min_reserved = root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
21315d4f98a2SYan Zheng 	memset(&next_key, 0, sizeof(next_key));
21325d4f98a2SYan Zheng 
21335d4f98a2SYan Zheng 	while (1) {
213408e007d2SMiao Xie 		ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
213508e007d2SMiao Xie 					     BTRFS_RESERVE_FLUSH_ALL);
21363fd0a558SYan, Zheng 		if (ret) {
21379e6a0c52SJosef Bacik 			err = ret;
21389e6a0c52SJosef Bacik 			goto out;
21393fd0a558SYan, Zheng 		}
21409e6a0c52SJosef Bacik 		trans = btrfs_start_transaction(root, 0);
21419e6a0c52SJosef Bacik 		if (IS_ERR(trans)) {
21429e6a0c52SJosef Bacik 			err = PTR_ERR(trans);
21439e6a0c52SJosef Bacik 			trans = NULL;
21449e6a0c52SJosef Bacik 			goto out;
21459e6a0c52SJosef Bacik 		}
21469e6a0c52SJosef Bacik 		trans->block_rsv = rc->block_rsv;
21473fd0a558SYan, Zheng 
21483fd0a558SYan, Zheng 		replaced = 0;
21495d4f98a2SYan Zheng 		max_level = level;
21505d4f98a2SYan Zheng 
21515d4f98a2SYan Zheng 		ret = walk_down_reloc_tree(reloc_root, path, &level);
21525d4f98a2SYan Zheng 		if (ret < 0) {
21535d4f98a2SYan Zheng 			err = ret;
21545d4f98a2SYan Zheng 			goto out;
21555d4f98a2SYan Zheng 		}
21565d4f98a2SYan Zheng 		if (ret > 0)
21575d4f98a2SYan Zheng 			break;
21585d4f98a2SYan Zheng 
21595d4f98a2SYan Zheng 		if (!find_next_key(path, level, &key) &&
21605d4f98a2SYan Zheng 		    btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
21615d4f98a2SYan Zheng 			ret = 0;
21625d4f98a2SYan Zheng 		} else {
21633fd0a558SYan, Zheng 			ret = replace_path(trans, root, reloc_root, path,
21643fd0a558SYan, Zheng 					   &next_key, level, max_level);
21655d4f98a2SYan Zheng 		}
21665d4f98a2SYan Zheng 		if (ret < 0) {
21675d4f98a2SYan Zheng 			err = ret;
21685d4f98a2SYan Zheng 			goto out;
21695d4f98a2SYan Zheng 		}
21705d4f98a2SYan Zheng 
21715d4f98a2SYan Zheng 		if (ret > 0) {
21725d4f98a2SYan Zheng 			level = ret;
21735d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], &key,
21745d4f98a2SYan Zheng 					      path->slots[level]);
21755d4f98a2SYan Zheng 			replaced = 1;
21765d4f98a2SYan Zheng 		}
21775d4f98a2SYan Zheng 
21785d4f98a2SYan Zheng 		ret = walk_up_reloc_tree(reloc_root, path, &level);
21795d4f98a2SYan Zheng 		if (ret > 0)
21805d4f98a2SYan Zheng 			break;
21815d4f98a2SYan Zheng 
21825d4f98a2SYan Zheng 		BUG_ON(level == 0);
21835d4f98a2SYan Zheng 		/*
21845d4f98a2SYan Zheng 		 * save the merging progress in the drop_progress.
21855d4f98a2SYan Zheng 		 * this is OK since root refs == 1 in this case.
21865d4f98a2SYan Zheng 		 */
21875d4f98a2SYan Zheng 		btrfs_node_key(path->nodes[level], &root_item->drop_progress,
21885d4f98a2SYan Zheng 			       path->slots[level]);
21895d4f98a2SYan Zheng 		root_item->drop_level = level;
21905d4f98a2SYan Zheng 
21913fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, root);
21929e6a0c52SJosef Bacik 		trans = NULL;
21935d4f98a2SYan Zheng 
2194b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(root);
21955d4f98a2SYan Zheng 
21965d4f98a2SYan Zheng 		if (replaced && rc->stage == UPDATE_DATA_PTRS)
21975d4f98a2SYan Zheng 			invalidate_extent_cache(root, &key, &next_key);
21985d4f98a2SYan Zheng 	}
21995d4f98a2SYan Zheng 
22005d4f98a2SYan Zheng 	/*
22015d4f98a2SYan Zheng 	 * handle the case only one block in the fs tree need to be
22025d4f98a2SYan Zheng 	 * relocated and the block is tree root.
22035d4f98a2SYan Zheng 	 */
22045d4f98a2SYan Zheng 	leaf = btrfs_lock_root_node(root);
22055d4f98a2SYan Zheng 	ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
22065d4f98a2SYan Zheng 	btrfs_tree_unlock(leaf);
22075d4f98a2SYan Zheng 	free_extent_buffer(leaf);
22085d4f98a2SYan Zheng 	if (ret < 0)
22095d4f98a2SYan Zheng 		err = ret;
22105d4f98a2SYan Zheng out:
22115d4f98a2SYan Zheng 	btrfs_free_path(path);
22125d4f98a2SYan Zheng 
22135d4f98a2SYan Zheng 	if (err == 0) {
22145d4f98a2SYan Zheng 		memset(&root_item->drop_progress, 0,
22155d4f98a2SYan Zheng 		       sizeof(root_item->drop_progress));
22165d4f98a2SYan Zheng 		root_item->drop_level = 0;
22175d4f98a2SYan Zheng 		btrfs_set_root_refs(root_item, 0);
22183fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
22195d4f98a2SYan Zheng 	}
22205d4f98a2SYan Zheng 
22219e6a0c52SJosef Bacik 	if (trans)
22223fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, root);
22235d4f98a2SYan Zheng 
2224b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
22255d4f98a2SYan Zheng 
22265d4f98a2SYan Zheng 	if (replaced && rc->stage == UPDATE_DATA_PTRS)
22275d4f98a2SYan Zheng 		invalidate_extent_cache(root, &key, &next_key);
22285d4f98a2SYan Zheng 
22295d4f98a2SYan Zheng 	return err;
22305d4f98a2SYan Zheng }
22315d4f98a2SYan Zheng 
22323fd0a558SYan, Zheng static noinline_for_stack
22333fd0a558SYan, Zheng int prepare_to_merge(struct reloc_control *rc, int err)
22345d4f98a2SYan Zheng {
22353fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
22363fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
22375d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
22383fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
22393fd0a558SYan, Zheng 	u64 num_bytes = 0;
22403fd0a558SYan, Zheng 	int ret;
22413fd0a558SYan, Zheng 
22427585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
22433fd0a558SYan, Zheng 	rc->merging_rsv_size += root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
22443fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated * 2;
22457585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
22467585717fSChris Mason 
22473fd0a558SYan, Zheng again:
22483fd0a558SYan, Zheng 	if (!err) {
22493fd0a558SYan, Zheng 		num_bytes = rc->merging_rsv_size;
225008e007d2SMiao Xie 		ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
225108e007d2SMiao Xie 					  BTRFS_RESERVE_FLUSH_ALL);
22523fd0a558SYan, Zheng 		if (ret)
22533fd0a558SYan, Zheng 			err = ret;
22543fd0a558SYan, Zheng 	}
22553fd0a558SYan, Zheng 
22567a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
22573612b495STsutomu Itoh 	if (IS_ERR(trans)) {
22583612b495STsutomu Itoh 		if (!err)
22593612b495STsutomu Itoh 			btrfs_block_rsv_release(rc->extent_root,
22603612b495STsutomu Itoh 						rc->block_rsv, num_bytes);
22613612b495STsutomu Itoh 		return PTR_ERR(trans);
22623612b495STsutomu Itoh 	}
22633fd0a558SYan, Zheng 
22643fd0a558SYan, Zheng 	if (!err) {
22653fd0a558SYan, Zheng 		if (num_bytes != rc->merging_rsv_size) {
22663fd0a558SYan, Zheng 			btrfs_end_transaction(trans, rc->extent_root);
22673fd0a558SYan, Zheng 			btrfs_block_rsv_release(rc->extent_root,
22683fd0a558SYan, Zheng 						rc->block_rsv, num_bytes);
22693fd0a558SYan, Zheng 			goto again;
22703fd0a558SYan, Zheng 		}
22713fd0a558SYan, Zheng 	}
22723fd0a558SYan, Zheng 
22733fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
22743fd0a558SYan, Zheng 
22753fd0a558SYan, Zheng 	while (!list_empty(&rc->reloc_roots)) {
22763fd0a558SYan, Zheng 		reloc_root = list_entry(rc->reloc_roots.next,
22773fd0a558SYan, Zheng 					struct btrfs_root, root_list);
22783fd0a558SYan, Zheng 		list_del_init(&reloc_root->root_list);
22793fd0a558SYan, Zheng 
22803fd0a558SYan, Zheng 		root = read_fs_root(reloc_root->fs_info,
22813fd0a558SYan, Zheng 				    reloc_root->root_key.offset);
22823fd0a558SYan, Zheng 		BUG_ON(IS_ERR(root));
22833fd0a558SYan, Zheng 		BUG_ON(root->reloc_root != reloc_root);
22843fd0a558SYan, Zheng 
22853fd0a558SYan, Zheng 		/*
22863fd0a558SYan, Zheng 		 * set reference count to 1, so btrfs_recover_relocation
22873fd0a558SYan, Zheng 		 * knows it should resumes merging
22883fd0a558SYan, Zheng 		 */
22893fd0a558SYan, Zheng 		if (!err)
22903fd0a558SYan, Zheng 			btrfs_set_root_refs(&reloc_root->root_item, 1);
22913fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
22923fd0a558SYan, Zheng 
22933fd0a558SYan, Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
22943fd0a558SYan, Zheng 	}
22953fd0a558SYan, Zheng 
22963fd0a558SYan, Zheng 	list_splice(&reloc_roots, &rc->reloc_roots);
22973fd0a558SYan, Zheng 
22983fd0a558SYan, Zheng 	if (!err)
22993fd0a558SYan, Zheng 		btrfs_commit_transaction(trans, rc->extent_root);
23003fd0a558SYan, Zheng 	else
23013fd0a558SYan, Zheng 		btrfs_end_transaction(trans, rc->extent_root);
23023fd0a558SYan, Zheng 	return err;
23033fd0a558SYan, Zheng }
23043fd0a558SYan, Zheng 
23053fd0a558SYan, Zheng static noinline_for_stack
2306aca1bba6SLiu Bo void free_reloc_roots(struct list_head *list)
2307aca1bba6SLiu Bo {
2308aca1bba6SLiu Bo 	struct btrfs_root *reloc_root;
2309aca1bba6SLiu Bo 
2310aca1bba6SLiu Bo 	while (!list_empty(list)) {
2311aca1bba6SLiu Bo 		reloc_root = list_entry(list->next, struct btrfs_root,
2312aca1bba6SLiu Bo 					root_list);
2313c974c464SWang Shilong 		__del_reloc_root(reloc_root);
2314aca1bba6SLiu Bo 		free_extent_buffer(reloc_root->node);
2315aca1bba6SLiu Bo 		free_extent_buffer(reloc_root->commit_root);
2316aca1bba6SLiu Bo 		kfree(reloc_root);
2317aca1bba6SLiu Bo 	}
2318aca1bba6SLiu Bo }
2319aca1bba6SLiu Bo 
2320aca1bba6SLiu Bo static noinline_for_stack
23213fd0a558SYan, Zheng int merge_reloc_roots(struct reloc_control *rc)
23223fd0a558SYan, Zheng {
23235bc7247aSMiao Xie 	struct btrfs_trans_handle *trans;
23245d4f98a2SYan Zheng 	struct btrfs_root *root;
23255d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
23265bc7247aSMiao Xie 	u64 last_snap;
23275bc7247aSMiao Xie 	u64 otransid;
23285bc7247aSMiao Xie 	u64 objectid;
23293fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
23303fd0a558SYan, Zheng 	int found = 0;
2331aca1bba6SLiu Bo 	int ret = 0;
23323fd0a558SYan, Zheng again:
23333fd0a558SYan, Zheng 	root = rc->extent_root;
23347585717fSChris Mason 
23357585717fSChris Mason 	/*
23367585717fSChris Mason 	 * this serializes us with btrfs_record_root_in_transaction,
23377585717fSChris Mason 	 * we have to make sure nobody is in the middle of
23387585717fSChris Mason 	 * adding their roots to the list while we are
23397585717fSChris Mason 	 * doing this splice
23407585717fSChris Mason 	 */
23417585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
23423fd0a558SYan, Zheng 	list_splice_init(&rc->reloc_roots, &reloc_roots);
23437585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
23445d4f98a2SYan Zheng 
23453fd0a558SYan, Zheng 	while (!list_empty(&reloc_roots)) {
23463fd0a558SYan, Zheng 		found = 1;
23473fd0a558SYan, Zheng 		reloc_root = list_entry(reloc_roots.next,
23483fd0a558SYan, Zheng 					struct btrfs_root, root_list);
23495d4f98a2SYan Zheng 
23505d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
23515d4f98a2SYan Zheng 			root = read_fs_root(reloc_root->fs_info,
23525d4f98a2SYan Zheng 					    reloc_root->root_key.offset);
23535d4f98a2SYan Zheng 			BUG_ON(IS_ERR(root));
23545d4f98a2SYan Zheng 			BUG_ON(root->reloc_root != reloc_root);
23555d4f98a2SYan Zheng 
23563fd0a558SYan, Zheng 			ret = merge_reloc_root(rc, root);
2357b37b39cdSJosef Bacik 			if (ret) {
2358c974c464SWang Shilong 				__del_reloc_root(reloc_root);
2359b37b39cdSJosef Bacik 				free_extent_buffer(reloc_root->node);
2360b37b39cdSJosef Bacik 				free_extent_buffer(reloc_root->commit_root);
2361b37b39cdSJosef Bacik 				kfree(reloc_root);
2362aca1bba6SLiu Bo 				goto out;
2363b37b39cdSJosef Bacik 			}
23643fd0a558SYan, Zheng 		} else {
23653fd0a558SYan, Zheng 			list_del_init(&reloc_root->root_list);
23663fd0a558SYan, Zheng 		}
23675bc7247aSMiao Xie 
23685bc7247aSMiao Xie 		/*
23695bc7247aSMiao Xie 		 * we keep the old last snapshod transid in rtranid when we
23705bc7247aSMiao Xie 		 * created the relocation tree.
23715bc7247aSMiao Xie 		 */
23725bc7247aSMiao Xie 		last_snap = btrfs_root_rtransid(&reloc_root->root_item);
23735bc7247aSMiao Xie 		otransid = btrfs_root_otransid(&reloc_root->root_item);
23745bc7247aSMiao Xie 		objectid = reloc_root->root_key.offset;
23755bc7247aSMiao Xie 
23762c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(reloc_root, rc->block_rsv, 0, 1);
2377aca1bba6SLiu Bo 		if (ret < 0) {
2378aca1bba6SLiu Bo 			if (list_empty(&reloc_root->root_list))
2379aca1bba6SLiu Bo 				list_add_tail(&reloc_root->root_list,
2380aca1bba6SLiu Bo 					      &reloc_roots);
2381aca1bba6SLiu Bo 			goto out;
23825bc7247aSMiao Xie 		} else if (!ret) {
23835bc7247aSMiao Xie 			/*
23845bc7247aSMiao Xie 			 * recover the last snapshot tranid to avoid
23855bc7247aSMiao Xie 			 * the space balance break NOCOW.
23865bc7247aSMiao Xie 			 */
23875bc7247aSMiao Xie 			root = read_fs_root(rc->extent_root->fs_info,
23885bc7247aSMiao Xie 					    objectid);
23895bc7247aSMiao Xie 			if (IS_ERR(root))
23905bc7247aSMiao Xie 				continue;
23915bc7247aSMiao Xie 
23925bc7247aSMiao Xie 			trans = btrfs_join_transaction(root);
23935bc7247aSMiao Xie 			BUG_ON(IS_ERR(trans));
23945bc7247aSMiao Xie 
23955bc7247aSMiao Xie 			/* Check if the fs/file tree was snapshoted or not. */
23965bc7247aSMiao Xie 			if (btrfs_root_last_snapshot(&root->root_item) ==
23975bc7247aSMiao Xie 			    otransid - 1)
23985bc7247aSMiao Xie 				btrfs_set_root_last_snapshot(&root->root_item,
23995bc7247aSMiao Xie 							     last_snap);
24005bc7247aSMiao Xie 
24015bc7247aSMiao Xie 			btrfs_end_transaction(trans, root);
2402aca1bba6SLiu Bo 		}
24035d4f98a2SYan Zheng 	}
24045d4f98a2SYan Zheng 
24053fd0a558SYan, Zheng 	if (found) {
24063fd0a558SYan, Zheng 		found = 0;
24073fd0a558SYan, Zheng 		goto again;
24085d4f98a2SYan Zheng 	}
2409aca1bba6SLiu Bo out:
2410aca1bba6SLiu Bo 	if (ret) {
2411aca1bba6SLiu Bo 		btrfs_std_error(root->fs_info, ret);
2412aca1bba6SLiu Bo 		if (!list_empty(&reloc_roots))
2413aca1bba6SLiu Bo 			free_reloc_roots(&reloc_roots);
2414467bb1d2SWang Shilong 
2415467bb1d2SWang Shilong 		/* new reloc root may be added */
2416467bb1d2SWang Shilong 		mutex_lock(&root->fs_info->reloc_mutex);
2417467bb1d2SWang Shilong 		list_splice_init(&rc->reloc_roots, &reloc_roots);
2418467bb1d2SWang Shilong 		mutex_unlock(&root->fs_info->reloc_mutex);
2419467bb1d2SWang Shilong 		if (!list_empty(&reloc_roots))
2420467bb1d2SWang Shilong 			free_reloc_roots(&reloc_roots);
2421aca1bba6SLiu Bo 	}
2422aca1bba6SLiu Bo 
24235d4f98a2SYan Zheng 	BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
2424aca1bba6SLiu Bo 	return ret;
24255d4f98a2SYan Zheng }
24265d4f98a2SYan Zheng 
24275d4f98a2SYan Zheng static void free_block_list(struct rb_root *blocks)
24285d4f98a2SYan Zheng {
24295d4f98a2SYan Zheng 	struct tree_block *block;
24305d4f98a2SYan Zheng 	struct rb_node *rb_node;
24315d4f98a2SYan Zheng 	while ((rb_node = rb_first(blocks))) {
24325d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
24335d4f98a2SYan Zheng 		rb_erase(rb_node, blocks);
24345d4f98a2SYan Zheng 		kfree(block);
24355d4f98a2SYan Zheng 	}
24365d4f98a2SYan Zheng }
24375d4f98a2SYan Zheng 
24385d4f98a2SYan Zheng static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
24395d4f98a2SYan Zheng 				      struct btrfs_root *reloc_root)
24405d4f98a2SYan Zheng {
24415d4f98a2SYan Zheng 	struct btrfs_root *root;
24425d4f98a2SYan Zheng 
24435d4f98a2SYan Zheng 	if (reloc_root->last_trans == trans->transid)
24445d4f98a2SYan Zheng 		return 0;
24455d4f98a2SYan Zheng 
24465d4f98a2SYan Zheng 	root = read_fs_root(reloc_root->fs_info, reloc_root->root_key.offset);
24475d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
24485d4f98a2SYan Zheng 	BUG_ON(root->reloc_root != reloc_root);
24495d4f98a2SYan Zheng 
24505d4f98a2SYan Zheng 	return btrfs_record_root_in_trans(trans, root);
24515d4f98a2SYan Zheng }
24525d4f98a2SYan Zheng 
24533fd0a558SYan, Zheng static noinline_for_stack
24543fd0a558SYan, Zheng struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
24553fd0a558SYan, Zheng 				     struct reloc_control *rc,
24565d4f98a2SYan Zheng 				     struct backref_node *node,
24573fd0a558SYan, Zheng 				     struct backref_edge *edges[], int *nr)
24585d4f98a2SYan Zheng {
24595d4f98a2SYan Zheng 	struct backref_node *next;
24605d4f98a2SYan Zheng 	struct btrfs_root *root;
24613fd0a558SYan, Zheng 	int index = 0;
24623fd0a558SYan, Zheng 
24635d4f98a2SYan Zheng 	next = node;
24645d4f98a2SYan Zheng 	while (1) {
24655d4f98a2SYan Zheng 		cond_resched();
24665d4f98a2SYan Zheng 		next = walk_up_backref(next, edges, &index);
24675d4f98a2SYan Zheng 		root = next->root;
24683fd0a558SYan, Zheng 		BUG_ON(!root);
24693fd0a558SYan, Zheng 		BUG_ON(!root->ref_cows);
24705d4f98a2SYan Zheng 
24715d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
24725d4f98a2SYan Zheng 			record_reloc_root_in_trans(trans, root);
24735d4f98a2SYan Zheng 			break;
24745d4f98a2SYan Zheng 		}
24755d4f98a2SYan Zheng 
24765d4f98a2SYan Zheng 		btrfs_record_root_in_trans(trans, root);
24773fd0a558SYan, Zheng 		root = root->reloc_root;
24783fd0a558SYan, Zheng 
24793fd0a558SYan, Zheng 		if (next->new_bytenr != root->node->start) {
24803fd0a558SYan, Zheng 			BUG_ON(next->new_bytenr);
24813fd0a558SYan, Zheng 			BUG_ON(!list_empty(&next->list));
24823fd0a558SYan, Zheng 			next->new_bytenr = root->node->start;
24833fd0a558SYan, Zheng 			next->root = root;
24843fd0a558SYan, Zheng 			list_add_tail(&next->list,
24853fd0a558SYan, Zheng 				      &rc->backref_cache.changed);
24863fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
24875d4f98a2SYan Zheng 			break;
24885d4f98a2SYan Zheng 		}
24895d4f98a2SYan Zheng 
24903fd0a558SYan, Zheng 		WARN_ON(1);
24915d4f98a2SYan Zheng 		root = NULL;
24925d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
24935d4f98a2SYan Zheng 		if (!next || next->level <= node->level)
24945d4f98a2SYan Zheng 			break;
24955d4f98a2SYan Zheng 	}
24963fd0a558SYan, Zheng 	if (!root)
24973fd0a558SYan, Zheng 		return NULL;
24985d4f98a2SYan Zheng 
24995d4f98a2SYan Zheng 	*nr = index;
25003fd0a558SYan, Zheng 	next = node;
25013fd0a558SYan, Zheng 	/* setup backref node path for btrfs_reloc_cow_block */
25023fd0a558SYan, Zheng 	while (1) {
25033fd0a558SYan, Zheng 		rc->backref_cache.path[next->level] = next;
25043fd0a558SYan, Zheng 		if (--index < 0)
25053fd0a558SYan, Zheng 			break;
25063fd0a558SYan, Zheng 		next = edges[index]->node[UPPER];
25073fd0a558SYan, Zheng 	}
25085d4f98a2SYan Zheng 	return root;
25095d4f98a2SYan Zheng }
25105d4f98a2SYan Zheng 
25113fd0a558SYan, Zheng /*
25123fd0a558SYan, Zheng  * select a tree root for relocation. return NULL if the block
25133fd0a558SYan, Zheng  * is reference counted. we should use do_relocation() in this
25143fd0a558SYan, Zheng  * case. return a tree root pointer if the block isn't reference
25153fd0a558SYan, Zheng  * counted. return -ENOENT if the block is root of reloc tree.
25163fd0a558SYan, Zheng  */
25175d4f98a2SYan Zheng static noinline_for_stack
25185d4f98a2SYan Zheng struct btrfs_root *select_one_root(struct btrfs_trans_handle *trans,
25195d4f98a2SYan Zheng 				   struct backref_node *node)
25205d4f98a2SYan Zheng {
25213fd0a558SYan, Zheng 	struct backref_node *next;
25223fd0a558SYan, Zheng 	struct btrfs_root *root;
25233fd0a558SYan, Zheng 	struct btrfs_root *fs_root = NULL;
25245d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25253fd0a558SYan, Zheng 	int index = 0;
25263fd0a558SYan, Zheng 
25273fd0a558SYan, Zheng 	next = node;
25283fd0a558SYan, Zheng 	while (1) {
25293fd0a558SYan, Zheng 		cond_resched();
25303fd0a558SYan, Zheng 		next = walk_up_backref(next, edges, &index);
25313fd0a558SYan, Zheng 		root = next->root;
25323fd0a558SYan, Zheng 		BUG_ON(!root);
25333fd0a558SYan, Zheng 
253425985edcSLucas De Marchi 		/* no other choice for non-references counted tree */
25353fd0a558SYan, Zheng 		if (!root->ref_cows)
25363fd0a558SYan, Zheng 			return root;
25373fd0a558SYan, Zheng 
25383fd0a558SYan, Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
25393fd0a558SYan, Zheng 			fs_root = root;
25403fd0a558SYan, Zheng 
25413fd0a558SYan, Zheng 		if (next != node)
25423fd0a558SYan, Zheng 			return NULL;
25433fd0a558SYan, Zheng 
25443fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
25453fd0a558SYan, Zheng 		if (!next || next->level <= node->level)
25463fd0a558SYan, Zheng 			break;
25473fd0a558SYan, Zheng 	}
25483fd0a558SYan, Zheng 
25493fd0a558SYan, Zheng 	if (!fs_root)
25503fd0a558SYan, Zheng 		return ERR_PTR(-ENOENT);
25513fd0a558SYan, Zheng 	return fs_root;
25525d4f98a2SYan Zheng }
25535d4f98a2SYan Zheng 
25545d4f98a2SYan Zheng static noinline_for_stack
25553fd0a558SYan, Zheng u64 calcu_metadata_size(struct reloc_control *rc,
25563fd0a558SYan, Zheng 			struct backref_node *node, int reserve)
25575d4f98a2SYan Zheng {
25583fd0a558SYan, Zheng 	struct backref_node *next = node;
25593fd0a558SYan, Zheng 	struct backref_edge *edge;
25603fd0a558SYan, Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25613fd0a558SYan, Zheng 	u64 num_bytes = 0;
25623fd0a558SYan, Zheng 	int index = 0;
25635d4f98a2SYan Zheng 
25643fd0a558SYan, Zheng 	BUG_ON(reserve && node->processed);
25653fd0a558SYan, Zheng 
25663fd0a558SYan, Zheng 	while (next) {
25673fd0a558SYan, Zheng 		cond_resched();
25685d4f98a2SYan Zheng 		while (1) {
25693fd0a558SYan, Zheng 			if (next->processed && (reserve || next != node))
25705d4f98a2SYan Zheng 				break;
25715d4f98a2SYan Zheng 
25723fd0a558SYan, Zheng 			num_bytes += btrfs_level_size(rc->extent_root,
25733fd0a558SYan, Zheng 						      next->level);
25743fd0a558SYan, Zheng 
25753fd0a558SYan, Zheng 			if (list_empty(&next->upper))
25763fd0a558SYan, Zheng 				break;
25773fd0a558SYan, Zheng 
25783fd0a558SYan, Zheng 			edge = list_entry(next->upper.next,
25793fd0a558SYan, Zheng 					  struct backref_edge, list[LOWER]);
25803fd0a558SYan, Zheng 			edges[index++] = edge;
25813fd0a558SYan, Zheng 			next = edge->node[UPPER];
25825d4f98a2SYan Zheng 		}
25833fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
25843fd0a558SYan, Zheng 	}
25853fd0a558SYan, Zheng 	return num_bytes;
25863fd0a558SYan, Zheng }
25873fd0a558SYan, Zheng 
25883fd0a558SYan, Zheng static int reserve_metadata_space(struct btrfs_trans_handle *trans,
25893fd0a558SYan, Zheng 				  struct reloc_control *rc,
25903fd0a558SYan, Zheng 				  struct backref_node *node)
25913fd0a558SYan, Zheng {
25923fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
25933fd0a558SYan, Zheng 	u64 num_bytes;
25943fd0a558SYan, Zheng 	int ret;
25950647bf56SWang Shilong 	u64 tmp;
25963fd0a558SYan, Zheng 
25973fd0a558SYan, Zheng 	num_bytes = calcu_metadata_size(rc, node, 1) * 2;
25983fd0a558SYan, Zheng 
25993fd0a558SYan, Zheng 	trans->block_rsv = rc->block_rsv;
26000647bf56SWang Shilong 	rc->reserved_bytes += num_bytes;
26010647bf56SWang Shilong 	ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
260208e007d2SMiao Xie 				BTRFS_RESERVE_FLUSH_ALL);
26033fd0a558SYan, Zheng 	if (ret) {
26040647bf56SWang Shilong 		if (ret == -EAGAIN) {
26050647bf56SWang Shilong 			tmp = rc->extent_root->nodesize *
26060647bf56SWang Shilong 				RELOCATION_RESERVED_NODES;
26070647bf56SWang Shilong 			while (tmp <= rc->reserved_bytes)
26080647bf56SWang Shilong 				tmp <<= 1;
26090647bf56SWang Shilong 			/*
26100647bf56SWang Shilong 			 * only one thread can access block_rsv at this point,
26110647bf56SWang Shilong 			 * so we don't need hold lock to protect block_rsv.
26120647bf56SWang Shilong 			 * we expand more reservation size here to allow enough
26130647bf56SWang Shilong 			 * space for relocation and we will return eailer in
26140647bf56SWang Shilong 			 * enospc case.
26150647bf56SWang Shilong 			 */
26160647bf56SWang Shilong 			rc->block_rsv->size = tmp + rc->extent_root->nodesize *
26170647bf56SWang Shilong 					      RELOCATION_RESERVED_NODES;
26180647bf56SWang Shilong 		}
26193fd0a558SYan, Zheng 		return ret;
26203fd0a558SYan, Zheng 	}
26213fd0a558SYan, Zheng 
26223fd0a558SYan, Zheng 	return 0;
26233fd0a558SYan, Zheng }
26243fd0a558SYan, Zheng 
26255d4f98a2SYan Zheng /*
26265d4f98a2SYan Zheng  * relocate a block tree, and then update pointers in upper level
26275d4f98a2SYan Zheng  * blocks that reference the block to point to the new location.
26285d4f98a2SYan Zheng  *
26295d4f98a2SYan Zheng  * if called by link_to_upper, the block has already been relocated.
26305d4f98a2SYan Zheng  * in that case this function just updates pointers.
26315d4f98a2SYan Zheng  */
26325d4f98a2SYan Zheng static int do_relocation(struct btrfs_trans_handle *trans,
26333fd0a558SYan, Zheng 			 struct reloc_control *rc,
26345d4f98a2SYan Zheng 			 struct backref_node *node,
26355d4f98a2SYan Zheng 			 struct btrfs_key *key,
26365d4f98a2SYan Zheng 			 struct btrfs_path *path, int lowest)
26375d4f98a2SYan Zheng {
26385d4f98a2SYan Zheng 	struct backref_node *upper;
26395d4f98a2SYan Zheng 	struct backref_edge *edge;
26405d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
26415d4f98a2SYan Zheng 	struct btrfs_root *root;
26425d4f98a2SYan Zheng 	struct extent_buffer *eb;
26435d4f98a2SYan Zheng 	u32 blocksize;
26445d4f98a2SYan Zheng 	u64 bytenr;
26455d4f98a2SYan Zheng 	u64 generation;
26465d4f98a2SYan Zheng 	int nr;
26475d4f98a2SYan Zheng 	int slot;
26485d4f98a2SYan Zheng 	int ret;
26495d4f98a2SYan Zheng 	int err = 0;
26505d4f98a2SYan Zheng 
26515d4f98a2SYan Zheng 	BUG_ON(lowest && node->eb);
26525d4f98a2SYan Zheng 
26535d4f98a2SYan Zheng 	path->lowest_level = node->level + 1;
26543fd0a558SYan, Zheng 	rc->backref_cache.path[node->level] = node;
26555d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER]) {
26565d4f98a2SYan Zheng 		cond_resched();
26575d4f98a2SYan Zheng 
26585d4f98a2SYan Zheng 		upper = edge->node[UPPER];
26593fd0a558SYan, Zheng 		root = select_reloc_root(trans, rc, upper, edges, &nr);
26603fd0a558SYan, Zheng 		BUG_ON(!root);
26615d4f98a2SYan Zheng 
26623fd0a558SYan, Zheng 		if (upper->eb && !upper->locked) {
26633fd0a558SYan, Zheng 			if (!lowest) {
26643fd0a558SYan, Zheng 				ret = btrfs_bin_search(upper->eb, key,
26653fd0a558SYan, Zheng 						       upper->level, &slot);
26663fd0a558SYan, Zheng 				BUG_ON(ret);
26673fd0a558SYan, Zheng 				bytenr = btrfs_node_blockptr(upper->eb, slot);
26683fd0a558SYan, Zheng 				if (node->eb->start == bytenr)
26693fd0a558SYan, Zheng 					goto next;
26703fd0a558SYan, Zheng 			}
26715d4f98a2SYan Zheng 			drop_node_buffer(upper);
26723fd0a558SYan, Zheng 		}
26735d4f98a2SYan Zheng 
26745d4f98a2SYan Zheng 		if (!upper->eb) {
26755d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
26765d4f98a2SYan Zheng 			if (ret < 0) {
26775d4f98a2SYan Zheng 				err = ret;
26785d4f98a2SYan Zheng 				break;
26795d4f98a2SYan Zheng 			}
26805d4f98a2SYan Zheng 			BUG_ON(ret > 0);
26815d4f98a2SYan Zheng 
26823fd0a558SYan, Zheng 			if (!upper->eb) {
26833fd0a558SYan, Zheng 				upper->eb = path->nodes[upper->level];
26843fd0a558SYan, Zheng 				path->nodes[upper->level] = NULL;
26853fd0a558SYan, Zheng 			} else {
26863fd0a558SYan, Zheng 				BUG_ON(upper->eb != path->nodes[upper->level]);
26873fd0a558SYan, Zheng 			}
26883fd0a558SYan, Zheng 
26893fd0a558SYan, Zheng 			upper->locked = 1;
26903fd0a558SYan, Zheng 			path->locks[upper->level] = 0;
26913fd0a558SYan, Zheng 
26925d4f98a2SYan Zheng 			slot = path->slots[upper->level];
2693b3b4aa74SDavid Sterba 			btrfs_release_path(path);
26945d4f98a2SYan Zheng 		} else {
26955d4f98a2SYan Zheng 			ret = btrfs_bin_search(upper->eb, key, upper->level,
26965d4f98a2SYan Zheng 					       &slot);
26975d4f98a2SYan Zheng 			BUG_ON(ret);
26985d4f98a2SYan Zheng 		}
26995d4f98a2SYan Zheng 
27005d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(upper->eb, slot);
27013fd0a558SYan, Zheng 		if (lowest) {
27023fd0a558SYan, Zheng 			BUG_ON(bytenr != node->bytenr);
27035d4f98a2SYan Zheng 		} else {
27043fd0a558SYan, Zheng 			if (node->eb->start == bytenr)
27053fd0a558SYan, Zheng 				goto next;
27065d4f98a2SYan Zheng 		}
27075d4f98a2SYan Zheng 
27085d4f98a2SYan Zheng 		blocksize = btrfs_level_size(root, node->level);
27095d4f98a2SYan Zheng 		generation = btrfs_node_ptr_generation(upper->eb, slot);
27105d4f98a2SYan Zheng 		eb = read_tree_block(root, bytenr, blocksize, generation);
2711416bc658SJosef Bacik 		if (!eb || !extent_buffer_uptodate(eb)) {
2712416bc658SJosef Bacik 			free_extent_buffer(eb);
271397d9a8a4STsutomu Itoh 			err = -EIO;
271497d9a8a4STsutomu Itoh 			goto next;
271597d9a8a4STsutomu Itoh 		}
27165d4f98a2SYan Zheng 		btrfs_tree_lock(eb);
27175d4f98a2SYan Zheng 		btrfs_set_lock_blocking(eb);
27185d4f98a2SYan Zheng 
27195d4f98a2SYan Zheng 		if (!node->eb) {
27205d4f98a2SYan Zheng 			ret = btrfs_cow_block(trans, root, eb, upper->eb,
27215d4f98a2SYan Zheng 					      slot, &eb);
27223fd0a558SYan, Zheng 			btrfs_tree_unlock(eb);
27233fd0a558SYan, Zheng 			free_extent_buffer(eb);
27245d4f98a2SYan Zheng 			if (ret < 0) {
27255d4f98a2SYan Zheng 				err = ret;
27263fd0a558SYan, Zheng 				goto next;
27275d4f98a2SYan Zheng 			}
27283fd0a558SYan, Zheng 			BUG_ON(node->eb != eb);
27295d4f98a2SYan Zheng 		} else {
27305d4f98a2SYan Zheng 			btrfs_set_node_blockptr(upper->eb, slot,
27315d4f98a2SYan Zheng 						node->eb->start);
27325d4f98a2SYan Zheng 			btrfs_set_node_ptr_generation(upper->eb, slot,
27335d4f98a2SYan Zheng 						      trans->transid);
27345d4f98a2SYan Zheng 			btrfs_mark_buffer_dirty(upper->eb);
27355d4f98a2SYan Zheng 
27365d4f98a2SYan Zheng 			ret = btrfs_inc_extent_ref(trans, root,
27375d4f98a2SYan Zheng 						node->eb->start, blocksize,
27385d4f98a2SYan Zheng 						upper->eb->start,
27395d4f98a2SYan Zheng 						btrfs_header_owner(upper->eb),
274066d7e7f0SArne Jansen 						node->level, 0, 1);
27415d4f98a2SYan Zheng 			BUG_ON(ret);
27425d4f98a2SYan Zheng 
27435d4f98a2SYan Zheng 			ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
27445d4f98a2SYan Zheng 			BUG_ON(ret);
27455d4f98a2SYan Zheng 		}
27463fd0a558SYan, Zheng next:
27473fd0a558SYan, Zheng 		if (!upper->pending)
27483fd0a558SYan, Zheng 			drop_node_buffer(upper);
27493fd0a558SYan, Zheng 		else
27503fd0a558SYan, Zheng 			unlock_node_buffer(upper);
27513fd0a558SYan, Zheng 		if (err)
27523fd0a558SYan, Zheng 			break;
27535d4f98a2SYan Zheng 	}
27543fd0a558SYan, Zheng 
27553fd0a558SYan, Zheng 	if (!err && node->pending) {
27563fd0a558SYan, Zheng 		drop_node_buffer(node);
27573fd0a558SYan, Zheng 		list_move_tail(&node->list, &rc->backref_cache.changed);
27583fd0a558SYan, Zheng 		node->pending = 0;
27595d4f98a2SYan Zheng 	}
27603fd0a558SYan, Zheng 
27615d4f98a2SYan Zheng 	path->lowest_level = 0;
27623fd0a558SYan, Zheng 	BUG_ON(err == -ENOSPC);
27635d4f98a2SYan Zheng 	return err;
27645d4f98a2SYan Zheng }
27655d4f98a2SYan Zheng 
27665d4f98a2SYan Zheng static int link_to_upper(struct btrfs_trans_handle *trans,
27673fd0a558SYan, Zheng 			 struct reloc_control *rc,
27685d4f98a2SYan Zheng 			 struct backref_node *node,
27695d4f98a2SYan Zheng 			 struct btrfs_path *path)
27705d4f98a2SYan Zheng {
27715d4f98a2SYan Zheng 	struct btrfs_key key;
27725d4f98a2SYan Zheng 
27735d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(node->eb, &key, 0);
27743fd0a558SYan, Zheng 	return do_relocation(trans, rc, node, &key, path, 0);
27755d4f98a2SYan Zheng }
27765d4f98a2SYan Zheng 
27775d4f98a2SYan Zheng static int finish_pending_nodes(struct btrfs_trans_handle *trans,
27783fd0a558SYan, Zheng 				struct reloc_control *rc,
27793fd0a558SYan, Zheng 				struct btrfs_path *path, int err)
27805d4f98a2SYan Zheng {
27813fd0a558SYan, Zheng 	LIST_HEAD(list);
27823fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
27835d4f98a2SYan Zheng 	struct backref_node *node;
27845d4f98a2SYan Zheng 	int level;
27855d4f98a2SYan Zheng 	int ret;
27865d4f98a2SYan Zheng 
27875d4f98a2SYan Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
27885d4f98a2SYan Zheng 		while (!list_empty(&cache->pending[level])) {
27895d4f98a2SYan Zheng 			node = list_entry(cache->pending[level].next,
27903fd0a558SYan, Zheng 					  struct backref_node, list);
27913fd0a558SYan, Zheng 			list_move_tail(&node->list, &list);
27923fd0a558SYan, Zheng 			BUG_ON(!node->pending);
27935d4f98a2SYan Zheng 
27943fd0a558SYan, Zheng 			if (!err) {
27953fd0a558SYan, Zheng 				ret = link_to_upper(trans, rc, node, path);
27965d4f98a2SYan Zheng 				if (ret < 0)
27975d4f98a2SYan Zheng 					err = ret;
27985d4f98a2SYan Zheng 			}
27995d4f98a2SYan Zheng 		}
28003fd0a558SYan, Zheng 		list_splice_init(&list, &cache->pending[level]);
28013fd0a558SYan, Zheng 	}
28025d4f98a2SYan Zheng 	return err;
28035d4f98a2SYan Zheng }
28045d4f98a2SYan Zheng 
28055d4f98a2SYan Zheng static void mark_block_processed(struct reloc_control *rc,
28063fd0a558SYan, Zheng 				 u64 bytenr, u32 blocksize)
28073fd0a558SYan, Zheng {
28083fd0a558SYan, Zheng 	set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
28093fd0a558SYan, Zheng 			EXTENT_DIRTY, GFP_NOFS);
28103fd0a558SYan, Zheng }
28113fd0a558SYan, Zheng 
28123fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
28135d4f98a2SYan Zheng 				   struct backref_node *node)
28145d4f98a2SYan Zheng {
28155d4f98a2SYan Zheng 	u32 blocksize;
28165d4f98a2SYan Zheng 	if (node->level == 0 ||
28175d4f98a2SYan Zheng 	    in_block_group(node->bytenr, rc->block_group)) {
28185d4f98a2SYan Zheng 		blocksize = btrfs_level_size(rc->extent_root, node->level);
28193fd0a558SYan, Zheng 		mark_block_processed(rc, node->bytenr, blocksize);
28205d4f98a2SYan Zheng 	}
28215d4f98a2SYan Zheng 	node->processed = 1;
28225d4f98a2SYan Zheng }
28235d4f98a2SYan Zheng 
28245d4f98a2SYan Zheng /*
28255d4f98a2SYan Zheng  * mark a block and all blocks directly/indirectly reference the block
28265d4f98a2SYan Zheng  * as processed.
28275d4f98a2SYan Zheng  */
28285d4f98a2SYan Zheng static void update_processed_blocks(struct reloc_control *rc,
28295d4f98a2SYan Zheng 				    struct backref_node *node)
28305d4f98a2SYan Zheng {
28315d4f98a2SYan Zheng 	struct backref_node *next = node;
28325d4f98a2SYan Zheng 	struct backref_edge *edge;
28335d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
28345d4f98a2SYan Zheng 	int index = 0;
28355d4f98a2SYan Zheng 
28365d4f98a2SYan Zheng 	while (next) {
28375d4f98a2SYan Zheng 		cond_resched();
28385d4f98a2SYan Zheng 		while (1) {
28395d4f98a2SYan Zheng 			if (next->processed)
28405d4f98a2SYan Zheng 				break;
28415d4f98a2SYan Zheng 
28423fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
28435d4f98a2SYan Zheng 
28445d4f98a2SYan Zheng 			if (list_empty(&next->upper))
28455d4f98a2SYan Zheng 				break;
28465d4f98a2SYan Zheng 
28475d4f98a2SYan Zheng 			edge = list_entry(next->upper.next,
28485d4f98a2SYan Zheng 					  struct backref_edge, list[LOWER]);
28495d4f98a2SYan Zheng 			edges[index++] = edge;
28505d4f98a2SYan Zheng 			next = edge->node[UPPER];
28515d4f98a2SYan Zheng 		}
28525d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
28535d4f98a2SYan Zheng 	}
28545d4f98a2SYan Zheng }
28555d4f98a2SYan Zheng 
28565d4f98a2SYan Zheng static int tree_block_processed(u64 bytenr, u32 blocksize,
28575d4f98a2SYan Zheng 				struct reloc_control *rc)
28585d4f98a2SYan Zheng {
28595d4f98a2SYan Zheng 	if (test_range_bit(&rc->processed_blocks, bytenr,
28609655d298SChris Mason 			   bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
28615d4f98a2SYan Zheng 		return 1;
28625d4f98a2SYan Zheng 	return 0;
28635d4f98a2SYan Zheng }
28645d4f98a2SYan Zheng 
28655d4f98a2SYan Zheng static int get_tree_block_key(struct reloc_control *rc,
28665d4f98a2SYan Zheng 			      struct tree_block *block)
28675d4f98a2SYan Zheng {
28685d4f98a2SYan Zheng 	struct extent_buffer *eb;
28695d4f98a2SYan Zheng 
28705d4f98a2SYan Zheng 	BUG_ON(block->key_ready);
28715d4f98a2SYan Zheng 	eb = read_tree_block(rc->extent_root, block->bytenr,
28725d4f98a2SYan Zheng 			     block->key.objectid, block->key.offset);
2873416bc658SJosef Bacik 	if (!eb || !extent_buffer_uptodate(eb)) {
2874416bc658SJosef Bacik 		free_extent_buffer(eb);
2875416bc658SJosef Bacik 		return -EIO;
2876416bc658SJosef Bacik 	}
28775d4f98a2SYan Zheng 	WARN_ON(btrfs_header_level(eb) != block->level);
28785d4f98a2SYan Zheng 	if (block->level == 0)
28795d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &block->key, 0);
28805d4f98a2SYan Zheng 	else
28815d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(eb, &block->key, 0);
28825d4f98a2SYan Zheng 	free_extent_buffer(eb);
28835d4f98a2SYan Zheng 	block->key_ready = 1;
28845d4f98a2SYan Zheng 	return 0;
28855d4f98a2SYan Zheng }
28865d4f98a2SYan Zheng 
28875d4f98a2SYan Zheng static int reada_tree_block(struct reloc_control *rc,
28885d4f98a2SYan Zheng 			    struct tree_block *block)
28895d4f98a2SYan Zheng {
28905d4f98a2SYan Zheng 	BUG_ON(block->key_ready);
28913173a18fSJosef Bacik 	if (block->key.type == BTRFS_METADATA_ITEM_KEY)
28923173a18fSJosef Bacik 		readahead_tree_block(rc->extent_root, block->bytenr,
28933173a18fSJosef Bacik 				     block->key.objectid,
28943173a18fSJosef Bacik 				     rc->extent_root->leafsize);
28953173a18fSJosef Bacik 	else
28965d4f98a2SYan Zheng 		readahead_tree_block(rc->extent_root, block->bytenr,
28975d4f98a2SYan Zheng 				     block->key.objectid, block->key.offset);
28985d4f98a2SYan Zheng 	return 0;
28995d4f98a2SYan Zheng }
29005d4f98a2SYan Zheng 
29015d4f98a2SYan Zheng /*
29025d4f98a2SYan Zheng  * helper function to relocate a tree block
29035d4f98a2SYan Zheng  */
29045d4f98a2SYan Zheng static int relocate_tree_block(struct btrfs_trans_handle *trans,
29055d4f98a2SYan Zheng 				struct reloc_control *rc,
29065d4f98a2SYan Zheng 				struct backref_node *node,
29075d4f98a2SYan Zheng 				struct btrfs_key *key,
29085d4f98a2SYan Zheng 				struct btrfs_path *path)
29095d4f98a2SYan Zheng {
29105d4f98a2SYan Zheng 	struct btrfs_root *root;
29113fd0a558SYan, Zheng 	int ret = 0;
29125d4f98a2SYan Zheng 
29133fd0a558SYan, Zheng 	if (!node)
29145d4f98a2SYan Zheng 		return 0;
29153fd0a558SYan, Zheng 
29163fd0a558SYan, Zheng 	BUG_ON(node->processed);
29173fd0a558SYan, Zheng 	root = select_one_root(trans, node);
29183fd0a558SYan, Zheng 	if (root == ERR_PTR(-ENOENT)) {
29193fd0a558SYan, Zheng 		update_processed_blocks(rc, node);
29203fd0a558SYan, Zheng 		goto out;
29215d4f98a2SYan Zheng 	}
29225d4f98a2SYan Zheng 
29233fd0a558SYan, Zheng 	if (!root || root->ref_cows) {
29243fd0a558SYan, Zheng 		ret = reserve_metadata_space(trans, rc, node);
29253fd0a558SYan, Zheng 		if (ret)
29265d4f98a2SYan Zheng 			goto out;
29275d4f98a2SYan Zheng 	}
29283fd0a558SYan, Zheng 
29293fd0a558SYan, Zheng 	if (root) {
29303fd0a558SYan, Zheng 		if (root->ref_cows) {
29313fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr);
29323fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->list));
29333fd0a558SYan, Zheng 			btrfs_record_root_in_trans(trans, root);
29343fd0a558SYan, Zheng 			root = root->reloc_root;
29353fd0a558SYan, Zheng 			node->new_bytenr = root->node->start;
29363fd0a558SYan, Zheng 			node->root = root;
29373fd0a558SYan, Zheng 			list_add_tail(&node->list, &rc->backref_cache.changed);
29383fd0a558SYan, Zheng 		} else {
29395d4f98a2SYan Zheng 			path->lowest_level = node->level;
29405d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
2941b3b4aa74SDavid Sterba 			btrfs_release_path(path);
29423fd0a558SYan, Zheng 			if (ret > 0)
29435d4f98a2SYan Zheng 				ret = 0;
29443fd0a558SYan, Zheng 		}
29453fd0a558SYan, Zheng 		if (!ret)
29463fd0a558SYan, Zheng 			update_processed_blocks(rc, node);
29473fd0a558SYan, Zheng 	} else {
29483fd0a558SYan, Zheng 		ret = do_relocation(trans, rc, node, key, path, 1);
29493fd0a558SYan, Zheng 	}
29505d4f98a2SYan Zheng out:
29510647bf56SWang Shilong 	if (ret || node->level == 0 || node->cowonly)
29523fd0a558SYan, Zheng 		remove_backref_node(&rc->backref_cache, node);
29535d4f98a2SYan Zheng 	return ret;
29545d4f98a2SYan Zheng }
29555d4f98a2SYan Zheng 
29565d4f98a2SYan Zheng /*
29575d4f98a2SYan Zheng  * relocate a list of blocks
29585d4f98a2SYan Zheng  */
29595d4f98a2SYan Zheng static noinline_for_stack
29605d4f98a2SYan Zheng int relocate_tree_blocks(struct btrfs_trans_handle *trans,
29615d4f98a2SYan Zheng 			 struct reloc_control *rc, struct rb_root *blocks)
29625d4f98a2SYan Zheng {
29635d4f98a2SYan Zheng 	struct backref_node *node;
29645d4f98a2SYan Zheng 	struct btrfs_path *path;
29655d4f98a2SYan Zheng 	struct tree_block *block;
29665d4f98a2SYan Zheng 	struct rb_node *rb_node;
29675d4f98a2SYan Zheng 	int ret;
29685d4f98a2SYan Zheng 	int err = 0;
29695d4f98a2SYan Zheng 
29705d4f98a2SYan Zheng 	path = btrfs_alloc_path();
2971e1a12670SLiu Bo 	if (!path) {
2972e1a12670SLiu Bo 		err = -ENOMEM;
297334c2b290SDavid Sterba 		goto out_free_blocks;
2974e1a12670SLiu Bo 	}
29755d4f98a2SYan Zheng 
29765d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
29775d4f98a2SYan Zheng 	while (rb_node) {
29785d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
29795d4f98a2SYan Zheng 		if (!block->key_ready)
29805d4f98a2SYan Zheng 			reada_tree_block(rc, block);
29815d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
29825d4f98a2SYan Zheng 	}
29835d4f98a2SYan Zheng 
29845d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
29855d4f98a2SYan Zheng 	while (rb_node) {
29865d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
298734c2b290SDavid Sterba 		if (!block->key_ready) {
298834c2b290SDavid Sterba 			err = get_tree_block_key(rc, block);
298934c2b290SDavid Sterba 			if (err)
299034c2b290SDavid Sterba 				goto out_free_path;
299134c2b290SDavid Sterba 		}
29925d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
29935d4f98a2SYan Zheng 	}
29945d4f98a2SYan Zheng 
29955d4f98a2SYan Zheng 	rb_node = rb_first(blocks);
29965d4f98a2SYan Zheng 	while (rb_node) {
29975d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
29985d4f98a2SYan Zheng 
29993fd0a558SYan, Zheng 		node = build_backref_tree(rc, &block->key,
30005d4f98a2SYan Zheng 					  block->level, block->bytenr);
30015d4f98a2SYan Zheng 		if (IS_ERR(node)) {
30025d4f98a2SYan Zheng 			err = PTR_ERR(node);
30035d4f98a2SYan Zheng 			goto out;
30045d4f98a2SYan Zheng 		}
30055d4f98a2SYan Zheng 
30065d4f98a2SYan Zheng 		ret = relocate_tree_block(trans, rc, node, &block->key,
30075d4f98a2SYan Zheng 					  path);
30085d4f98a2SYan Zheng 		if (ret < 0) {
30093fd0a558SYan, Zheng 			if (ret != -EAGAIN || rb_node == rb_first(blocks))
30105d4f98a2SYan Zheng 				err = ret;
30115d4f98a2SYan Zheng 			goto out;
30125d4f98a2SYan Zheng 		}
30135d4f98a2SYan Zheng 		rb_node = rb_next(rb_node);
30145d4f98a2SYan Zheng 	}
30155d4f98a2SYan Zheng out:
30163fd0a558SYan, Zheng 	err = finish_pending_nodes(trans, rc, path, err);
30175d4f98a2SYan Zheng 
301834c2b290SDavid Sterba out_free_path:
30195d4f98a2SYan Zheng 	btrfs_free_path(path);
302034c2b290SDavid Sterba out_free_blocks:
3021e1a12670SLiu Bo 	free_block_list(blocks);
30225d4f98a2SYan Zheng 	return err;
30235d4f98a2SYan Zheng }
30245d4f98a2SYan Zheng 
30255d4f98a2SYan Zheng static noinline_for_stack
3026efa56464SYan, Zheng int prealloc_file_extent_cluster(struct inode *inode,
3027efa56464SYan, Zheng 				 struct file_extent_cluster *cluster)
3028efa56464SYan, Zheng {
3029efa56464SYan, Zheng 	u64 alloc_hint = 0;
3030efa56464SYan, Zheng 	u64 start;
3031efa56464SYan, Zheng 	u64 end;
3032efa56464SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
3033efa56464SYan, Zheng 	u64 num_bytes;
3034efa56464SYan, Zheng 	int nr = 0;
3035efa56464SYan, Zheng 	int ret = 0;
3036efa56464SYan, Zheng 
3037efa56464SYan, Zheng 	BUG_ON(cluster->start != cluster->boundary[0]);
3038efa56464SYan, Zheng 	mutex_lock(&inode->i_mutex);
3039efa56464SYan, Zheng 
3040efa56464SYan, Zheng 	ret = btrfs_check_data_free_space(inode, cluster->end +
3041efa56464SYan, Zheng 					  1 - cluster->start);
3042efa56464SYan, Zheng 	if (ret)
3043efa56464SYan, Zheng 		goto out;
3044efa56464SYan, Zheng 
3045efa56464SYan, Zheng 	while (nr < cluster->nr) {
3046efa56464SYan, Zheng 		start = cluster->boundary[nr] - offset;
3047efa56464SYan, Zheng 		if (nr + 1 < cluster->nr)
3048efa56464SYan, Zheng 			end = cluster->boundary[nr + 1] - 1 - offset;
3049efa56464SYan, Zheng 		else
3050efa56464SYan, Zheng 			end = cluster->end - offset;
3051efa56464SYan, Zheng 
3052d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
3053efa56464SYan, Zheng 		num_bytes = end + 1 - start;
3054efa56464SYan, Zheng 		ret = btrfs_prealloc_file_range(inode, 0, start,
3055efa56464SYan, Zheng 						num_bytes, num_bytes,
3056efa56464SYan, Zheng 						end + 1, &alloc_hint);
3057d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
3058efa56464SYan, Zheng 		if (ret)
3059efa56464SYan, Zheng 			break;
3060efa56464SYan, Zheng 		nr++;
3061efa56464SYan, Zheng 	}
3062efa56464SYan, Zheng 	btrfs_free_reserved_data_space(inode, cluster->end +
3063efa56464SYan, Zheng 				       1 - cluster->start);
3064efa56464SYan, Zheng out:
3065efa56464SYan, Zheng 	mutex_unlock(&inode->i_mutex);
3066efa56464SYan, Zheng 	return ret;
3067efa56464SYan, Zheng }
3068efa56464SYan, Zheng 
3069efa56464SYan, Zheng static noinline_for_stack
30700257bb82SYan, Zheng int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
30710257bb82SYan, Zheng 			 u64 block_start)
30725d4f98a2SYan Zheng {
30735d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(inode)->root;
30745d4f98a2SYan Zheng 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
30755d4f98a2SYan Zheng 	struct extent_map *em;
30760257bb82SYan, Zheng 	int ret = 0;
30775d4f98a2SYan Zheng 
3078172ddd60SDavid Sterba 	em = alloc_extent_map();
30790257bb82SYan, Zheng 	if (!em)
30800257bb82SYan, Zheng 		return -ENOMEM;
30810257bb82SYan, Zheng 
30825d4f98a2SYan Zheng 	em->start = start;
30830257bb82SYan, Zheng 	em->len = end + 1 - start;
30840257bb82SYan, Zheng 	em->block_len = em->len;
30850257bb82SYan, Zheng 	em->block_start = block_start;
30865d4f98a2SYan Zheng 	em->bdev = root->fs_info->fs_devices->latest_bdev;
30875d4f98a2SYan Zheng 	set_bit(EXTENT_FLAG_PINNED, &em->flags);
30885d4f98a2SYan Zheng 
3089d0082371SJeff Mahoney 	lock_extent(&BTRFS_I(inode)->io_tree, start, end);
30905d4f98a2SYan Zheng 	while (1) {
3091890871beSChris Mason 		write_lock(&em_tree->lock);
309209a2a8f9SJosef Bacik 		ret = add_extent_mapping(em_tree, em, 0);
3093890871beSChris Mason 		write_unlock(&em_tree->lock);
30945d4f98a2SYan Zheng 		if (ret != -EEXIST) {
30955d4f98a2SYan Zheng 			free_extent_map(em);
30965d4f98a2SYan Zheng 			break;
30975d4f98a2SYan Zheng 		}
30985d4f98a2SYan Zheng 		btrfs_drop_extent_cache(inode, start, end, 0);
30995d4f98a2SYan Zheng 	}
3100d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
31010257bb82SYan, Zheng 	return ret;
31020257bb82SYan, Zheng }
31035d4f98a2SYan Zheng 
31040257bb82SYan, Zheng static int relocate_file_extent_cluster(struct inode *inode,
31050257bb82SYan, Zheng 					struct file_extent_cluster *cluster)
31060257bb82SYan, Zheng {
31070257bb82SYan, Zheng 	u64 page_start;
31080257bb82SYan, Zheng 	u64 page_end;
31090257bb82SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
31100257bb82SYan, Zheng 	unsigned long index;
31110257bb82SYan, Zheng 	unsigned long last_index;
31120257bb82SYan, Zheng 	struct page *page;
31130257bb82SYan, Zheng 	struct file_ra_state *ra;
31143b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
31150257bb82SYan, Zheng 	int nr = 0;
31160257bb82SYan, Zheng 	int ret = 0;
31170257bb82SYan, Zheng 
31180257bb82SYan, Zheng 	if (!cluster->nr)
31190257bb82SYan, Zheng 		return 0;
31200257bb82SYan, Zheng 
31210257bb82SYan, Zheng 	ra = kzalloc(sizeof(*ra), GFP_NOFS);
31220257bb82SYan, Zheng 	if (!ra)
31230257bb82SYan, Zheng 		return -ENOMEM;
31240257bb82SYan, Zheng 
3125efa56464SYan, Zheng 	ret = prealloc_file_extent_cluster(inode, cluster);
31260257bb82SYan, Zheng 	if (ret)
3127efa56464SYan, Zheng 		goto out;
31280257bb82SYan, Zheng 
31290257bb82SYan, Zheng 	file_ra_state_init(ra, inode->i_mapping);
31300257bb82SYan, Zheng 
3131efa56464SYan, Zheng 	ret = setup_extent_mapping(inode, cluster->start - offset,
3132efa56464SYan, Zheng 				   cluster->end - offset, cluster->start);
3133efa56464SYan, Zheng 	if (ret)
3134efa56464SYan, Zheng 		goto out;
3135efa56464SYan, Zheng 
3136efa56464SYan, Zheng 	index = (cluster->start - offset) >> PAGE_CACHE_SHIFT;
3137efa56464SYan, Zheng 	last_index = (cluster->end - offset) >> PAGE_CACHE_SHIFT;
31380257bb82SYan, Zheng 	while (index <= last_index) {
3139efa56464SYan, Zheng 		ret = btrfs_delalloc_reserve_metadata(inode, PAGE_CACHE_SIZE);
3140efa56464SYan, Zheng 		if (ret)
3141efa56464SYan, Zheng 			goto out;
3142efa56464SYan, Zheng 
31430257bb82SYan, Zheng 		page = find_lock_page(inode->i_mapping, index);
31440257bb82SYan, Zheng 		if (!page) {
31450257bb82SYan, Zheng 			page_cache_sync_readahead(inode->i_mapping,
31460257bb82SYan, Zheng 						  ra, NULL, index,
31470257bb82SYan, Zheng 						  last_index + 1 - index);
3148a94733d0SJosef Bacik 			page = find_or_create_page(inode->i_mapping, index,
31493b16a4e3SJosef Bacik 						   mask);
31500257bb82SYan, Zheng 			if (!page) {
3151efa56464SYan, Zheng 				btrfs_delalloc_release_metadata(inode,
3152efa56464SYan, Zheng 							PAGE_CACHE_SIZE);
31530257bb82SYan, Zheng 				ret = -ENOMEM;
3154efa56464SYan, Zheng 				goto out;
31550257bb82SYan, Zheng 			}
31560257bb82SYan, Zheng 		}
31570257bb82SYan, Zheng 
31580257bb82SYan, Zheng 		if (PageReadahead(page)) {
31590257bb82SYan, Zheng 			page_cache_async_readahead(inode->i_mapping,
31600257bb82SYan, Zheng 						   ra, NULL, page, index,
31610257bb82SYan, Zheng 						   last_index + 1 - index);
31620257bb82SYan, Zheng 		}
31630257bb82SYan, Zheng 
31640257bb82SYan, Zheng 		if (!PageUptodate(page)) {
31650257bb82SYan, Zheng 			btrfs_readpage(NULL, page);
31660257bb82SYan, Zheng 			lock_page(page);
31670257bb82SYan, Zheng 			if (!PageUptodate(page)) {
31680257bb82SYan, Zheng 				unlock_page(page);
31690257bb82SYan, Zheng 				page_cache_release(page);
3170efa56464SYan, Zheng 				btrfs_delalloc_release_metadata(inode,
3171efa56464SYan, Zheng 							PAGE_CACHE_SIZE);
31720257bb82SYan, Zheng 				ret = -EIO;
3173efa56464SYan, Zheng 				goto out;
31740257bb82SYan, Zheng 			}
31750257bb82SYan, Zheng 		}
31760257bb82SYan, Zheng 
31774eee4fa4SMiao Xie 		page_start = page_offset(page);
31780257bb82SYan, Zheng 		page_end = page_start + PAGE_CACHE_SIZE - 1;
31790257bb82SYan, Zheng 
3180d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
31810257bb82SYan, Zheng 
31820257bb82SYan, Zheng 		set_page_extent_mapped(page);
31830257bb82SYan, Zheng 
31840257bb82SYan, Zheng 		if (nr < cluster->nr &&
31850257bb82SYan, Zheng 		    page_start + offset == cluster->boundary[nr]) {
31860257bb82SYan, Zheng 			set_extent_bits(&BTRFS_I(inode)->io_tree,
31870257bb82SYan, Zheng 					page_start, page_end,
31880257bb82SYan, Zheng 					EXTENT_BOUNDARY, GFP_NOFS);
31890257bb82SYan, Zheng 			nr++;
31900257bb82SYan, Zheng 		}
31910257bb82SYan, Zheng 
3192efa56464SYan, Zheng 		btrfs_set_extent_delalloc(inode, page_start, page_end, NULL);
31930257bb82SYan, Zheng 		set_page_dirty(page);
31940257bb82SYan, Zheng 
31950257bb82SYan, Zheng 		unlock_extent(&BTRFS_I(inode)->io_tree,
3196d0082371SJeff Mahoney 			      page_start, page_end);
31970257bb82SYan, Zheng 		unlock_page(page);
31980257bb82SYan, Zheng 		page_cache_release(page);
31990257bb82SYan, Zheng 
32000257bb82SYan, Zheng 		index++;
3201efa56464SYan, Zheng 		balance_dirty_pages_ratelimited(inode->i_mapping);
3202efa56464SYan, Zheng 		btrfs_throttle(BTRFS_I(inode)->root);
32030257bb82SYan, Zheng 	}
32040257bb82SYan, Zheng 	WARN_ON(nr != cluster->nr);
3205efa56464SYan, Zheng out:
32060257bb82SYan, Zheng 	kfree(ra);
32070257bb82SYan, Zheng 	return ret;
32080257bb82SYan, Zheng }
32090257bb82SYan, Zheng 
32100257bb82SYan, Zheng static noinline_for_stack
32110257bb82SYan, Zheng int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
32120257bb82SYan, Zheng 			 struct file_extent_cluster *cluster)
32130257bb82SYan, Zheng {
32140257bb82SYan, Zheng 	int ret;
32150257bb82SYan, Zheng 
32160257bb82SYan, Zheng 	if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
32170257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32180257bb82SYan, Zheng 		if (ret)
32190257bb82SYan, Zheng 			return ret;
32200257bb82SYan, Zheng 		cluster->nr = 0;
32210257bb82SYan, Zheng 	}
32220257bb82SYan, Zheng 
32230257bb82SYan, Zheng 	if (!cluster->nr)
32240257bb82SYan, Zheng 		cluster->start = extent_key->objectid;
32250257bb82SYan, Zheng 	else
32260257bb82SYan, Zheng 		BUG_ON(cluster->nr >= MAX_EXTENTS);
32270257bb82SYan, Zheng 	cluster->end = extent_key->objectid + extent_key->offset - 1;
32280257bb82SYan, Zheng 	cluster->boundary[cluster->nr] = extent_key->objectid;
32290257bb82SYan, Zheng 	cluster->nr++;
32300257bb82SYan, Zheng 
32310257bb82SYan, Zheng 	if (cluster->nr >= MAX_EXTENTS) {
32320257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32330257bb82SYan, Zheng 		if (ret)
32340257bb82SYan, Zheng 			return ret;
32350257bb82SYan, Zheng 		cluster->nr = 0;
32360257bb82SYan, Zheng 	}
32370257bb82SYan, Zheng 	return 0;
32385d4f98a2SYan Zheng }
32395d4f98a2SYan Zheng 
32405d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
32415d4f98a2SYan Zheng static int get_ref_objectid_v0(struct reloc_control *rc,
32425d4f98a2SYan Zheng 			       struct btrfs_path *path,
32435d4f98a2SYan Zheng 			       struct btrfs_key *extent_key,
32445d4f98a2SYan Zheng 			       u64 *ref_objectid, int *path_change)
32455d4f98a2SYan Zheng {
32465d4f98a2SYan Zheng 	struct btrfs_key key;
32475d4f98a2SYan Zheng 	struct extent_buffer *leaf;
32485d4f98a2SYan Zheng 	struct btrfs_extent_ref_v0 *ref0;
32495d4f98a2SYan Zheng 	int ret;
32505d4f98a2SYan Zheng 	int slot;
32515d4f98a2SYan Zheng 
32525d4f98a2SYan Zheng 	leaf = path->nodes[0];
32535d4f98a2SYan Zheng 	slot = path->slots[0];
32545d4f98a2SYan Zheng 	while (1) {
32555d4f98a2SYan Zheng 		if (slot >= btrfs_header_nritems(leaf)) {
32565d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
32575d4f98a2SYan Zheng 			if (ret < 0)
32585d4f98a2SYan Zheng 				return ret;
32595d4f98a2SYan Zheng 			BUG_ON(ret > 0);
32605d4f98a2SYan Zheng 			leaf = path->nodes[0];
32615d4f98a2SYan Zheng 			slot = path->slots[0];
32625d4f98a2SYan Zheng 			if (path_change)
32635d4f98a2SYan Zheng 				*path_change = 1;
32645d4f98a2SYan Zheng 		}
32655d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, slot);
32665d4f98a2SYan Zheng 		if (key.objectid != extent_key->objectid)
32675d4f98a2SYan Zheng 			return -ENOENT;
32685d4f98a2SYan Zheng 
32695d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_REF_V0_KEY) {
32705d4f98a2SYan Zheng 			slot++;
32715d4f98a2SYan Zheng 			continue;
32725d4f98a2SYan Zheng 		}
32735d4f98a2SYan Zheng 		ref0 = btrfs_item_ptr(leaf, slot,
32745d4f98a2SYan Zheng 				struct btrfs_extent_ref_v0);
32755d4f98a2SYan Zheng 		*ref_objectid = btrfs_ref_objectid_v0(leaf, ref0);
32765d4f98a2SYan Zheng 		break;
32775d4f98a2SYan Zheng 	}
32785d4f98a2SYan Zheng 	return 0;
32795d4f98a2SYan Zheng }
32805d4f98a2SYan Zheng #endif
32815d4f98a2SYan Zheng 
32825d4f98a2SYan Zheng /*
32835d4f98a2SYan Zheng  * helper to add a tree block to the list.
32845d4f98a2SYan Zheng  * the major work is getting the generation and level of the block
32855d4f98a2SYan Zheng  */
32865d4f98a2SYan Zheng static int add_tree_block(struct reloc_control *rc,
32875d4f98a2SYan Zheng 			  struct btrfs_key *extent_key,
32885d4f98a2SYan Zheng 			  struct btrfs_path *path,
32895d4f98a2SYan Zheng 			  struct rb_root *blocks)
32905d4f98a2SYan Zheng {
32915d4f98a2SYan Zheng 	struct extent_buffer *eb;
32925d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
32935d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
32945d4f98a2SYan Zheng 	struct tree_block *block;
32955d4f98a2SYan Zheng 	struct rb_node *rb_node;
32965d4f98a2SYan Zheng 	u32 item_size;
32975d4f98a2SYan Zheng 	int level = -1;
32987fdf4b60SWang Shilong 	u64 generation;
32995d4f98a2SYan Zheng 
33005d4f98a2SYan Zheng 	eb =  path->nodes[0];
33015d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(eb, path->slots[0]);
33025d4f98a2SYan Zheng 
33033173a18fSJosef Bacik 	if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
33043173a18fSJosef Bacik 	    item_size >= sizeof(*ei) + sizeof(*bi)) {
33055d4f98a2SYan Zheng 		ei = btrfs_item_ptr(eb, path->slots[0],
33065d4f98a2SYan Zheng 				struct btrfs_extent_item);
33073173a18fSJosef Bacik 		if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
33085d4f98a2SYan Zheng 			bi = (struct btrfs_tree_block_info *)(ei + 1);
33095d4f98a2SYan Zheng 			level = btrfs_tree_block_level(eb, bi);
33105d4f98a2SYan Zheng 		} else {
33113173a18fSJosef Bacik 			level = (int)extent_key->offset;
33123173a18fSJosef Bacik 		}
33133173a18fSJosef Bacik 		generation = btrfs_extent_generation(eb, ei);
33143173a18fSJosef Bacik 	} else {
33155d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
33165d4f98a2SYan Zheng 		u64 ref_owner;
33175d4f98a2SYan Zheng 		int ret;
33185d4f98a2SYan Zheng 
33195d4f98a2SYan Zheng 		BUG_ON(item_size != sizeof(struct btrfs_extent_item_v0));
33205d4f98a2SYan Zheng 		ret = get_ref_objectid_v0(rc, path, extent_key,
33215d4f98a2SYan Zheng 					  &ref_owner, NULL);
3322411fc6bcSAndi Kleen 		if (ret < 0)
3323411fc6bcSAndi Kleen 			return ret;
33245d4f98a2SYan Zheng 		BUG_ON(ref_owner >= BTRFS_MAX_LEVEL);
33255d4f98a2SYan Zheng 		level = (int)ref_owner;
33265d4f98a2SYan Zheng 		/* FIXME: get real generation */
33275d4f98a2SYan Zheng 		generation = 0;
33285d4f98a2SYan Zheng #else
33295d4f98a2SYan Zheng 		BUG();
33305d4f98a2SYan Zheng #endif
33315d4f98a2SYan Zheng 	}
33325d4f98a2SYan Zheng 
3333b3b4aa74SDavid Sterba 	btrfs_release_path(path);
33345d4f98a2SYan Zheng 
33355d4f98a2SYan Zheng 	BUG_ON(level == -1);
33365d4f98a2SYan Zheng 
33375d4f98a2SYan Zheng 	block = kmalloc(sizeof(*block), GFP_NOFS);
33385d4f98a2SYan Zheng 	if (!block)
33395d4f98a2SYan Zheng 		return -ENOMEM;
33405d4f98a2SYan Zheng 
33415d4f98a2SYan Zheng 	block->bytenr = extent_key->objectid;
33423173a18fSJosef Bacik 	block->key.objectid = rc->extent_root->leafsize;
33435d4f98a2SYan Zheng 	block->key.offset = generation;
33445d4f98a2SYan Zheng 	block->level = level;
33455d4f98a2SYan Zheng 	block->key_ready = 0;
33465d4f98a2SYan Zheng 
33475d4f98a2SYan Zheng 	rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
334843c04fb1SJeff Mahoney 	if (rb_node)
334943c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, block->bytenr);
33505d4f98a2SYan Zheng 
33515d4f98a2SYan Zheng 	return 0;
33525d4f98a2SYan Zheng }
33535d4f98a2SYan Zheng 
33545d4f98a2SYan Zheng /*
33555d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
33565d4f98a2SYan Zheng  */
33575d4f98a2SYan Zheng static int __add_tree_block(struct reloc_control *rc,
33585d4f98a2SYan Zheng 			    u64 bytenr, u32 blocksize,
33595d4f98a2SYan Zheng 			    struct rb_root *blocks)
33605d4f98a2SYan Zheng {
33615d4f98a2SYan Zheng 	struct btrfs_path *path;
33625d4f98a2SYan Zheng 	struct btrfs_key key;
33635d4f98a2SYan Zheng 	int ret;
3364aee68ee5SJosef Bacik 	bool skinny = btrfs_fs_incompat(rc->extent_root->fs_info,
3365aee68ee5SJosef Bacik 					SKINNY_METADATA);
33665d4f98a2SYan Zheng 
33675d4f98a2SYan Zheng 	if (tree_block_processed(bytenr, blocksize, rc))
33685d4f98a2SYan Zheng 		return 0;
33695d4f98a2SYan Zheng 
33705d4f98a2SYan Zheng 	if (tree_search(blocks, bytenr))
33715d4f98a2SYan Zheng 		return 0;
33725d4f98a2SYan Zheng 
33735d4f98a2SYan Zheng 	path = btrfs_alloc_path();
33745d4f98a2SYan Zheng 	if (!path)
33755d4f98a2SYan Zheng 		return -ENOMEM;
3376aee68ee5SJosef Bacik again:
33775d4f98a2SYan Zheng 	key.objectid = bytenr;
3378aee68ee5SJosef Bacik 	if (skinny) {
3379aee68ee5SJosef Bacik 		key.type = BTRFS_METADATA_ITEM_KEY;
3380aee68ee5SJosef Bacik 		key.offset = (u64)-1;
3381aee68ee5SJosef Bacik 	} else {
33825d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
33835d4f98a2SYan Zheng 		key.offset = blocksize;
3384aee68ee5SJosef Bacik 	}
33855d4f98a2SYan Zheng 
33865d4f98a2SYan Zheng 	path->search_commit_root = 1;
33875d4f98a2SYan Zheng 	path->skip_locking = 1;
33885d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
33895d4f98a2SYan Zheng 	if (ret < 0)
33905d4f98a2SYan Zheng 		goto out;
33915d4f98a2SYan Zheng 
3392aee68ee5SJosef Bacik 	if (ret > 0 && skinny) {
3393aee68ee5SJosef Bacik 		if (path->slots[0]) {
3394aee68ee5SJosef Bacik 			path->slots[0]--;
3395aee68ee5SJosef Bacik 			btrfs_item_key_to_cpu(path->nodes[0], &key,
3396aee68ee5SJosef Bacik 					      path->slots[0]);
33973173a18fSJosef Bacik 			if (key.objectid == bytenr &&
3398aee68ee5SJosef Bacik 			    (key.type == BTRFS_METADATA_ITEM_KEY ||
3399aee68ee5SJosef Bacik 			     (key.type == BTRFS_EXTENT_ITEM_KEY &&
3400aee68ee5SJosef Bacik 			      key.offset == blocksize)))
34013173a18fSJosef Bacik 				ret = 0;
34023173a18fSJosef Bacik 		}
3403aee68ee5SJosef Bacik 
3404aee68ee5SJosef Bacik 		if (ret) {
3405aee68ee5SJosef Bacik 			skinny = false;
3406aee68ee5SJosef Bacik 			btrfs_release_path(path);
3407aee68ee5SJosef Bacik 			goto again;
3408aee68ee5SJosef Bacik 		}
3409aee68ee5SJosef Bacik 	}
34103173a18fSJosef Bacik 	BUG_ON(ret);
34113173a18fSJosef Bacik 
34125d4f98a2SYan Zheng 	ret = add_tree_block(rc, &key, path, blocks);
34135d4f98a2SYan Zheng out:
34145d4f98a2SYan Zheng 	btrfs_free_path(path);
34155d4f98a2SYan Zheng 	return ret;
34165d4f98a2SYan Zheng }
34175d4f98a2SYan Zheng 
34185d4f98a2SYan Zheng /*
34195d4f98a2SYan Zheng  * helper to check if the block use full backrefs for pointers in it
34205d4f98a2SYan Zheng  */
34215d4f98a2SYan Zheng static int block_use_full_backref(struct reloc_control *rc,
34225d4f98a2SYan Zheng 				  struct extent_buffer *eb)
34235d4f98a2SYan Zheng {
34245d4f98a2SYan Zheng 	u64 flags;
34255d4f98a2SYan Zheng 	int ret;
34265d4f98a2SYan Zheng 
34275d4f98a2SYan Zheng 	if (btrfs_header_flag(eb, BTRFS_HEADER_FLAG_RELOC) ||
34285d4f98a2SYan Zheng 	    btrfs_header_backref_rev(eb) < BTRFS_MIXED_BACKREF_REV)
34295d4f98a2SYan Zheng 		return 1;
34305d4f98a2SYan Zheng 
34313fd0a558SYan, Zheng 	ret = btrfs_lookup_extent_info(NULL, rc->extent_root,
34323173a18fSJosef Bacik 				       eb->start, btrfs_header_level(eb), 1,
34333173a18fSJosef Bacik 				       NULL, &flags);
34345d4f98a2SYan Zheng 	BUG_ON(ret);
34355d4f98a2SYan Zheng 
34365d4f98a2SYan Zheng 	if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
34375d4f98a2SYan Zheng 		ret = 1;
34385d4f98a2SYan Zheng 	else
34395d4f98a2SYan Zheng 		ret = 0;
34405d4f98a2SYan Zheng 	return ret;
34415d4f98a2SYan Zheng }
34425d4f98a2SYan Zheng 
34430af3d00bSJosef Bacik static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
34440af3d00bSJosef Bacik 				    struct inode *inode, u64 ino)
34450af3d00bSJosef Bacik {
34460af3d00bSJosef Bacik 	struct btrfs_key key;
34470af3d00bSJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
34480af3d00bSJosef Bacik 	struct btrfs_trans_handle *trans;
34490af3d00bSJosef Bacik 	int ret = 0;
34500af3d00bSJosef Bacik 
34510af3d00bSJosef Bacik 	if (inode)
34520af3d00bSJosef Bacik 		goto truncate;
34530af3d00bSJosef Bacik 
34540af3d00bSJosef Bacik 	key.objectid = ino;
34550af3d00bSJosef Bacik 	key.type = BTRFS_INODE_ITEM_KEY;
34560af3d00bSJosef Bacik 	key.offset = 0;
34570af3d00bSJosef Bacik 
34580af3d00bSJosef Bacik 	inode = btrfs_iget(fs_info->sb, &key, root, NULL);
3459f54fb859STsutomu Itoh 	if (IS_ERR(inode) || is_bad_inode(inode)) {
3460f54fb859STsutomu Itoh 		if (!IS_ERR(inode))
34610af3d00bSJosef Bacik 			iput(inode);
34620af3d00bSJosef Bacik 		return -ENOENT;
34630af3d00bSJosef Bacik 	}
34640af3d00bSJosef Bacik 
34650af3d00bSJosef Bacik truncate:
34667b61cd92SMiao Xie 	ret = btrfs_check_trunc_cache_free_space(root,
34677b61cd92SMiao Xie 						 &fs_info->global_block_rsv);
34687b61cd92SMiao Xie 	if (ret)
34697b61cd92SMiao Xie 		goto out;
34707b61cd92SMiao Xie 
34717a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
34720af3d00bSJosef Bacik 	if (IS_ERR(trans)) {
34733612b495STsutomu Itoh 		ret = PTR_ERR(trans);
34740af3d00bSJosef Bacik 		goto out;
34750af3d00bSJosef Bacik 	}
34760af3d00bSJosef Bacik 
347774514323SFilipe David Borba Manana 	ret = btrfs_truncate_free_space_cache(root, trans, inode);
34780af3d00bSJosef Bacik 
34790af3d00bSJosef Bacik 	btrfs_end_transaction(trans, root);
3480b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
34810af3d00bSJosef Bacik out:
34820af3d00bSJosef Bacik 	iput(inode);
34830af3d00bSJosef Bacik 	return ret;
34840af3d00bSJosef Bacik }
34850af3d00bSJosef Bacik 
34865d4f98a2SYan Zheng /*
34875d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_EXTENT_DATA_REF_KEY
34885d4f98a2SYan Zheng  * this function scans fs tree to find blocks reference the data extent
34895d4f98a2SYan Zheng  */
34905d4f98a2SYan Zheng static int find_data_references(struct reloc_control *rc,
34915d4f98a2SYan Zheng 				struct btrfs_key *extent_key,
34925d4f98a2SYan Zheng 				struct extent_buffer *leaf,
34935d4f98a2SYan Zheng 				struct btrfs_extent_data_ref *ref,
34945d4f98a2SYan Zheng 				struct rb_root *blocks)
34955d4f98a2SYan Zheng {
34965d4f98a2SYan Zheng 	struct btrfs_path *path;
34975d4f98a2SYan Zheng 	struct tree_block *block;
34985d4f98a2SYan Zheng 	struct btrfs_root *root;
34995d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
35005d4f98a2SYan Zheng 	struct rb_node *rb_node;
35015d4f98a2SYan Zheng 	struct btrfs_key key;
35025d4f98a2SYan Zheng 	u64 ref_root;
35035d4f98a2SYan Zheng 	u64 ref_objectid;
35045d4f98a2SYan Zheng 	u64 ref_offset;
35055d4f98a2SYan Zheng 	u32 ref_count;
35065d4f98a2SYan Zheng 	u32 nritems;
35075d4f98a2SYan Zheng 	int err = 0;
35085d4f98a2SYan Zheng 	int added = 0;
35095d4f98a2SYan Zheng 	int counted;
35105d4f98a2SYan Zheng 	int ret;
35115d4f98a2SYan Zheng 
35125d4f98a2SYan Zheng 	ref_root = btrfs_extent_data_ref_root(leaf, ref);
35135d4f98a2SYan Zheng 	ref_objectid = btrfs_extent_data_ref_objectid(leaf, ref);
35145d4f98a2SYan Zheng 	ref_offset = btrfs_extent_data_ref_offset(leaf, ref);
35155d4f98a2SYan Zheng 	ref_count = btrfs_extent_data_ref_count(leaf, ref);
35165d4f98a2SYan Zheng 
35170af3d00bSJosef Bacik 	/*
35180af3d00bSJosef Bacik 	 * This is an extent belonging to the free space cache, lets just delete
35190af3d00bSJosef Bacik 	 * it and redo the search.
35200af3d00bSJosef Bacik 	 */
35210af3d00bSJosef Bacik 	if (ref_root == BTRFS_ROOT_TREE_OBJECTID) {
35220af3d00bSJosef Bacik 		ret = delete_block_group_cache(rc->extent_root->fs_info,
35230af3d00bSJosef Bacik 					       NULL, ref_objectid);
35240af3d00bSJosef Bacik 		if (ret != -ENOENT)
35250af3d00bSJosef Bacik 			return ret;
35260af3d00bSJosef Bacik 		ret = 0;
35270af3d00bSJosef Bacik 	}
35280af3d00bSJosef Bacik 
35290af3d00bSJosef Bacik 	path = btrfs_alloc_path();
35300af3d00bSJosef Bacik 	if (!path)
35310af3d00bSJosef Bacik 		return -ENOMEM;
3532026fd317SJosef Bacik 	path->reada = 1;
35330af3d00bSJosef Bacik 
35345d4f98a2SYan Zheng 	root = read_fs_root(rc->extent_root->fs_info, ref_root);
35355d4f98a2SYan Zheng 	if (IS_ERR(root)) {
35365d4f98a2SYan Zheng 		err = PTR_ERR(root);
35375d4f98a2SYan Zheng 		goto out;
35385d4f98a2SYan Zheng 	}
35395d4f98a2SYan Zheng 
35405d4f98a2SYan Zheng 	key.objectid = ref_objectid;
35415d4f98a2SYan Zheng 	key.type = BTRFS_EXTENT_DATA_KEY;
354284850e8dSYan, Zheng 	if (ref_offset > ((u64)-1 << 32))
354384850e8dSYan, Zheng 		key.offset = 0;
354484850e8dSYan, Zheng 	else
354584850e8dSYan, Zheng 		key.offset = ref_offset;
35465d4f98a2SYan Zheng 
35475d4f98a2SYan Zheng 	path->search_commit_root = 1;
35485d4f98a2SYan Zheng 	path->skip_locking = 1;
35495d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
35505d4f98a2SYan Zheng 	if (ret < 0) {
35515d4f98a2SYan Zheng 		err = ret;
35525d4f98a2SYan Zheng 		goto out;
35535d4f98a2SYan Zheng 	}
35545d4f98a2SYan Zheng 
35555d4f98a2SYan Zheng 	leaf = path->nodes[0];
35565d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
35575d4f98a2SYan Zheng 	/*
35585d4f98a2SYan Zheng 	 * the references in tree blocks that use full backrefs
35595d4f98a2SYan Zheng 	 * are not counted in
35605d4f98a2SYan Zheng 	 */
35615d4f98a2SYan Zheng 	if (block_use_full_backref(rc, leaf))
35625d4f98a2SYan Zheng 		counted = 0;
35635d4f98a2SYan Zheng 	else
35645d4f98a2SYan Zheng 		counted = 1;
35655d4f98a2SYan Zheng 	rb_node = tree_search(blocks, leaf->start);
35665d4f98a2SYan Zheng 	if (rb_node) {
35675d4f98a2SYan Zheng 		if (counted)
35685d4f98a2SYan Zheng 			added = 1;
35695d4f98a2SYan Zheng 		else
35705d4f98a2SYan Zheng 			path->slots[0] = nritems;
35715d4f98a2SYan Zheng 	}
35725d4f98a2SYan Zheng 
35735d4f98a2SYan Zheng 	while (ref_count > 0) {
35745d4f98a2SYan Zheng 		while (path->slots[0] >= nritems) {
35755d4f98a2SYan Zheng 			ret = btrfs_next_leaf(root, path);
35765d4f98a2SYan Zheng 			if (ret < 0) {
35775d4f98a2SYan Zheng 				err = ret;
35785d4f98a2SYan Zheng 				goto out;
35795d4f98a2SYan Zheng 			}
3580fae7f21cSDulshani Gunawardhana 			if (WARN_ON(ret > 0))
35815d4f98a2SYan Zheng 				goto out;
35825d4f98a2SYan Zheng 
35835d4f98a2SYan Zheng 			leaf = path->nodes[0];
35845d4f98a2SYan Zheng 			nritems = btrfs_header_nritems(leaf);
35855d4f98a2SYan Zheng 			added = 0;
35865d4f98a2SYan Zheng 
35875d4f98a2SYan Zheng 			if (block_use_full_backref(rc, leaf))
35885d4f98a2SYan Zheng 				counted = 0;
35895d4f98a2SYan Zheng 			else
35905d4f98a2SYan Zheng 				counted = 1;
35915d4f98a2SYan Zheng 			rb_node = tree_search(blocks, leaf->start);
35925d4f98a2SYan Zheng 			if (rb_node) {
35935d4f98a2SYan Zheng 				if (counted)
35945d4f98a2SYan Zheng 					added = 1;
35955d4f98a2SYan Zheng 				else
35965d4f98a2SYan Zheng 					path->slots[0] = nritems;
35975d4f98a2SYan Zheng 			}
35985d4f98a2SYan Zheng 		}
35995d4f98a2SYan Zheng 
36005d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3601fae7f21cSDulshani Gunawardhana 		if (WARN_ON(key.objectid != ref_objectid ||
3602fae7f21cSDulshani Gunawardhana 		    key.type != BTRFS_EXTENT_DATA_KEY))
36035d4f98a2SYan Zheng 			break;
36045d4f98a2SYan Zheng 
36055d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, path->slots[0],
36065d4f98a2SYan Zheng 				    struct btrfs_file_extent_item);
36075d4f98a2SYan Zheng 
36085d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
36095d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
36105d4f98a2SYan Zheng 			goto next;
36115d4f98a2SYan Zheng 
36125d4f98a2SYan Zheng 		if (btrfs_file_extent_disk_bytenr(leaf, fi) !=
36135d4f98a2SYan Zheng 		    extent_key->objectid)
36145d4f98a2SYan Zheng 			goto next;
36155d4f98a2SYan Zheng 
36165d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
36175d4f98a2SYan Zheng 		if (key.offset != ref_offset)
36185d4f98a2SYan Zheng 			goto next;
36195d4f98a2SYan Zheng 
36205d4f98a2SYan Zheng 		if (counted)
36215d4f98a2SYan Zheng 			ref_count--;
36225d4f98a2SYan Zheng 		if (added)
36235d4f98a2SYan Zheng 			goto next;
36245d4f98a2SYan Zheng 
36255d4f98a2SYan Zheng 		if (!tree_block_processed(leaf->start, leaf->len, rc)) {
36265d4f98a2SYan Zheng 			block = kmalloc(sizeof(*block), GFP_NOFS);
36275d4f98a2SYan Zheng 			if (!block) {
36285d4f98a2SYan Zheng 				err = -ENOMEM;
36295d4f98a2SYan Zheng 				break;
36305d4f98a2SYan Zheng 			}
36315d4f98a2SYan Zheng 			block->bytenr = leaf->start;
36325d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(leaf, &block->key, 0);
36335d4f98a2SYan Zheng 			block->level = 0;
36345d4f98a2SYan Zheng 			block->key_ready = 1;
36355d4f98a2SYan Zheng 			rb_node = tree_insert(blocks, block->bytenr,
36365d4f98a2SYan Zheng 					      &block->rb_node);
363743c04fb1SJeff Mahoney 			if (rb_node)
363843c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
363943c04fb1SJeff Mahoney 						   block->bytenr);
36405d4f98a2SYan Zheng 		}
36415d4f98a2SYan Zheng 		if (counted)
36425d4f98a2SYan Zheng 			added = 1;
36435d4f98a2SYan Zheng 		else
36445d4f98a2SYan Zheng 			path->slots[0] = nritems;
36455d4f98a2SYan Zheng next:
36465d4f98a2SYan Zheng 		path->slots[0]++;
36475d4f98a2SYan Zheng 
36485d4f98a2SYan Zheng 	}
36495d4f98a2SYan Zheng out:
36505d4f98a2SYan Zheng 	btrfs_free_path(path);
36515d4f98a2SYan Zheng 	return err;
36525d4f98a2SYan Zheng }
36535d4f98a2SYan Zheng 
36545d4f98a2SYan Zheng /*
36552c016dc2SLiu Bo  * helper to find all tree blocks that reference a given data extent
36565d4f98a2SYan Zheng  */
36575d4f98a2SYan Zheng static noinline_for_stack
36585d4f98a2SYan Zheng int add_data_references(struct reloc_control *rc,
36595d4f98a2SYan Zheng 			struct btrfs_key *extent_key,
36605d4f98a2SYan Zheng 			struct btrfs_path *path,
36615d4f98a2SYan Zheng 			struct rb_root *blocks)
36625d4f98a2SYan Zheng {
36635d4f98a2SYan Zheng 	struct btrfs_key key;
36645d4f98a2SYan Zheng 	struct extent_buffer *eb;
36655d4f98a2SYan Zheng 	struct btrfs_extent_data_ref *dref;
36665d4f98a2SYan Zheng 	struct btrfs_extent_inline_ref *iref;
36675d4f98a2SYan Zheng 	unsigned long ptr;
36685d4f98a2SYan Zheng 	unsigned long end;
36693fd0a558SYan, Zheng 	u32 blocksize = btrfs_level_size(rc->extent_root, 0);
3670647f63bdSFilipe David Borba Manana 	int ret = 0;
36715d4f98a2SYan Zheng 	int err = 0;
36725d4f98a2SYan Zheng 
36735d4f98a2SYan Zheng 	eb = path->nodes[0];
36745d4f98a2SYan Zheng 	ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
36755d4f98a2SYan Zheng 	end = ptr + btrfs_item_size_nr(eb, path->slots[0]);
36765d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
36775d4f98a2SYan Zheng 	if (ptr + sizeof(struct btrfs_extent_item_v0) == end)
36785d4f98a2SYan Zheng 		ptr = end;
36795d4f98a2SYan Zheng 	else
36805d4f98a2SYan Zheng #endif
36815d4f98a2SYan Zheng 		ptr += sizeof(struct btrfs_extent_item);
36825d4f98a2SYan Zheng 
36835d4f98a2SYan Zheng 	while (ptr < end) {
36845d4f98a2SYan Zheng 		iref = (struct btrfs_extent_inline_ref *)ptr;
36855d4f98a2SYan Zheng 		key.type = btrfs_extent_inline_ref_type(eb, iref);
36865d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
36875d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
36885d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
36895d4f98a2SYan Zheng 					       blocks);
36905d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
36915d4f98a2SYan Zheng 			dref = (struct btrfs_extent_data_ref *)(&iref->offset);
36925d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
36935d4f98a2SYan Zheng 						   eb, dref, blocks);
36945d4f98a2SYan Zheng 		} else {
36955d4f98a2SYan Zheng 			BUG();
36965d4f98a2SYan Zheng 		}
3697647f63bdSFilipe David Borba Manana 		if (ret) {
3698647f63bdSFilipe David Borba Manana 			err = ret;
3699647f63bdSFilipe David Borba Manana 			goto out;
3700647f63bdSFilipe David Borba Manana 		}
37015d4f98a2SYan Zheng 		ptr += btrfs_extent_inline_ref_size(key.type);
37025d4f98a2SYan Zheng 	}
37035d4f98a2SYan Zheng 	WARN_ON(ptr > end);
37045d4f98a2SYan Zheng 
37055d4f98a2SYan Zheng 	while (1) {
37065d4f98a2SYan Zheng 		cond_resched();
37075d4f98a2SYan Zheng 		eb = path->nodes[0];
37085d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(eb)) {
37095d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
37105d4f98a2SYan Zheng 			if (ret < 0) {
37115d4f98a2SYan Zheng 				err = ret;
37125d4f98a2SYan Zheng 				break;
37135d4f98a2SYan Zheng 			}
37145d4f98a2SYan Zheng 			if (ret > 0)
37155d4f98a2SYan Zheng 				break;
37165d4f98a2SYan Zheng 			eb = path->nodes[0];
37175d4f98a2SYan Zheng 		}
37185d4f98a2SYan Zheng 
37195d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
37205d4f98a2SYan Zheng 		if (key.objectid != extent_key->objectid)
37215d4f98a2SYan Zheng 			break;
37225d4f98a2SYan Zheng 
37235d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
37245d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY ||
37255d4f98a2SYan Zheng 		    key.type == BTRFS_EXTENT_REF_V0_KEY) {
37265d4f98a2SYan Zheng #else
37275d4f98a2SYan Zheng 		BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
37285d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
37295d4f98a2SYan Zheng #endif
37305d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
37315d4f98a2SYan Zheng 					       blocks);
37325d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
37335d4f98a2SYan Zheng 			dref = btrfs_item_ptr(eb, path->slots[0],
37345d4f98a2SYan Zheng 					      struct btrfs_extent_data_ref);
37355d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
37365d4f98a2SYan Zheng 						   eb, dref, blocks);
37375d4f98a2SYan Zheng 		} else {
37385d4f98a2SYan Zheng 			ret = 0;
37395d4f98a2SYan Zheng 		}
37405d4f98a2SYan Zheng 		if (ret) {
37415d4f98a2SYan Zheng 			err = ret;
37425d4f98a2SYan Zheng 			break;
37435d4f98a2SYan Zheng 		}
37445d4f98a2SYan Zheng 		path->slots[0]++;
37455d4f98a2SYan Zheng 	}
3746647f63bdSFilipe David Borba Manana out:
3747b3b4aa74SDavid Sterba 	btrfs_release_path(path);
37485d4f98a2SYan Zheng 	if (err)
37495d4f98a2SYan Zheng 		free_block_list(blocks);
37505d4f98a2SYan Zheng 	return err;
37515d4f98a2SYan Zheng }
37525d4f98a2SYan Zheng 
37535d4f98a2SYan Zheng /*
37542c016dc2SLiu Bo  * helper to find next unprocessed extent
37555d4f98a2SYan Zheng  */
37565d4f98a2SYan Zheng static noinline_for_stack
37575d4f98a2SYan Zheng int find_next_extent(struct btrfs_trans_handle *trans,
37583fd0a558SYan, Zheng 		     struct reloc_control *rc, struct btrfs_path *path,
37593fd0a558SYan, Zheng 		     struct btrfs_key *extent_key)
37605d4f98a2SYan Zheng {
37615d4f98a2SYan Zheng 	struct btrfs_key key;
37625d4f98a2SYan Zheng 	struct extent_buffer *leaf;
37635d4f98a2SYan Zheng 	u64 start, end, last;
37645d4f98a2SYan Zheng 	int ret;
37655d4f98a2SYan Zheng 
37665d4f98a2SYan Zheng 	last = rc->block_group->key.objectid + rc->block_group->key.offset;
37675d4f98a2SYan Zheng 	while (1) {
37685d4f98a2SYan Zheng 		cond_resched();
37695d4f98a2SYan Zheng 		if (rc->search_start >= last) {
37705d4f98a2SYan Zheng 			ret = 1;
37715d4f98a2SYan Zheng 			break;
37725d4f98a2SYan Zheng 		}
37735d4f98a2SYan Zheng 
37745d4f98a2SYan Zheng 		key.objectid = rc->search_start;
37755d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
37765d4f98a2SYan Zheng 		key.offset = 0;
37775d4f98a2SYan Zheng 
37785d4f98a2SYan Zheng 		path->search_commit_root = 1;
37795d4f98a2SYan Zheng 		path->skip_locking = 1;
37805d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
37815d4f98a2SYan Zheng 					0, 0);
37825d4f98a2SYan Zheng 		if (ret < 0)
37835d4f98a2SYan Zheng 			break;
37845d4f98a2SYan Zheng next:
37855d4f98a2SYan Zheng 		leaf = path->nodes[0];
37865d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(leaf)) {
37875d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
37885d4f98a2SYan Zheng 			if (ret != 0)
37895d4f98a2SYan Zheng 				break;
37905d4f98a2SYan Zheng 			leaf = path->nodes[0];
37915d4f98a2SYan Zheng 		}
37925d4f98a2SYan Zheng 
37935d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
37945d4f98a2SYan Zheng 		if (key.objectid >= last) {
37955d4f98a2SYan Zheng 			ret = 1;
37965d4f98a2SYan Zheng 			break;
37975d4f98a2SYan Zheng 		}
37985d4f98a2SYan Zheng 
37993173a18fSJosef Bacik 		if (key.type != BTRFS_EXTENT_ITEM_KEY &&
38003173a18fSJosef Bacik 		    key.type != BTRFS_METADATA_ITEM_KEY) {
38013173a18fSJosef Bacik 			path->slots[0]++;
38023173a18fSJosef Bacik 			goto next;
38033173a18fSJosef Bacik 		}
38043173a18fSJosef Bacik 
38053173a18fSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY &&
38065d4f98a2SYan Zheng 		    key.objectid + key.offset <= rc->search_start) {
38075d4f98a2SYan Zheng 			path->slots[0]++;
38085d4f98a2SYan Zheng 			goto next;
38095d4f98a2SYan Zheng 		}
38105d4f98a2SYan Zheng 
38113173a18fSJosef Bacik 		if (key.type == BTRFS_METADATA_ITEM_KEY &&
38123173a18fSJosef Bacik 		    key.objectid + rc->extent_root->leafsize <=
38133173a18fSJosef Bacik 		    rc->search_start) {
38143173a18fSJosef Bacik 			path->slots[0]++;
38153173a18fSJosef Bacik 			goto next;
38163173a18fSJosef Bacik 		}
38173173a18fSJosef Bacik 
38185d4f98a2SYan Zheng 		ret = find_first_extent_bit(&rc->processed_blocks,
38195d4f98a2SYan Zheng 					    key.objectid, &start, &end,
3820e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
38215d4f98a2SYan Zheng 
38225d4f98a2SYan Zheng 		if (ret == 0 && start <= key.objectid) {
3823b3b4aa74SDavid Sterba 			btrfs_release_path(path);
38245d4f98a2SYan Zheng 			rc->search_start = end + 1;
38255d4f98a2SYan Zheng 		} else {
38263173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY)
38275d4f98a2SYan Zheng 				rc->search_start = key.objectid + key.offset;
38283173a18fSJosef Bacik 			else
38293173a18fSJosef Bacik 				rc->search_start = key.objectid +
38303173a18fSJosef Bacik 					rc->extent_root->leafsize;
38313fd0a558SYan, Zheng 			memcpy(extent_key, &key, sizeof(key));
38325d4f98a2SYan Zheng 			return 0;
38335d4f98a2SYan Zheng 		}
38345d4f98a2SYan Zheng 	}
3835b3b4aa74SDavid Sterba 	btrfs_release_path(path);
38365d4f98a2SYan Zheng 	return ret;
38375d4f98a2SYan Zheng }
38385d4f98a2SYan Zheng 
38395d4f98a2SYan Zheng static void set_reloc_control(struct reloc_control *rc)
38405d4f98a2SYan Zheng {
38415d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38427585717fSChris Mason 
38437585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38445d4f98a2SYan Zheng 	fs_info->reloc_ctl = rc;
38457585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38465d4f98a2SYan Zheng }
38475d4f98a2SYan Zheng 
38485d4f98a2SYan Zheng static void unset_reloc_control(struct reloc_control *rc)
38495d4f98a2SYan Zheng {
38505d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38517585717fSChris Mason 
38527585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38535d4f98a2SYan Zheng 	fs_info->reloc_ctl = NULL;
38547585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38555d4f98a2SYan Zheng }
38565d4f98a2SYan Zheng 
38575d4f98a2SYan Zheng static int check_extent_flags(u64 flags)
38585d4f98a2SYan Zheng {
38595d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
38605d4f98a2SYan Zheng 	    (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
38615d4f98a2SYan Zheng 		return 1;
38625d4f98a2SYan Zheng 	if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
38635d4f98a2SYan Zheng 	    !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
38645d4f98a2SYan Zheng 		return 1;
38655d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
38665d4f98a2SYan Zheng 	    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
38675d4f98a2SYan Zheng 		return 1;
38685d4f98a2SYan Zheng 	return 0;
38695d4f98a2SYan Zheng }
38705d4f98a2SYan Zheng 
38713fd0a558SYan, Zheng static noinline_for_stack
38723fd0a558SYan, Zheng int prepare_to_relocate(struct reloc_control *rc)
38733fd0a558SYan, Zheng {
38743fd0a558SYan, Zheng 	struct btrfs_trans_handle *trans;
38753fd0a558SYan, Zheng 
387666d8f3ddSMiao Xie 	rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root,
387766d8f3ddSMiao Xie 					      BTRFS_BLOCK_RSV_TEMP);
38783fd0a558SYan, Zheng 	if (!rc->block_rsv)
38793fd0a558SYan, Zheng 		return -ENOMEM;
38803fd0a558SYan, Zheng 
38813fd0a558SYan, Zheng 	memset(&rc->cluster, 0, sizeof(rc->cluster));
38823fd0a558SYan, Zheng 	rc->search_start = rc->block_group->key.objectid;
38833fd0a558SYan, Zheng 	rc->extents_found = 0;
38843fd0a558SYan, Zheng 	rc->nodes_relocated = 0;
38853fd0a558SYan, Zheng 	rc->merging_rsv_size = 0;
38860647bf56SWang Shilong 	rc->reserved_bytes = 0;
38870647bf56SWang Shilong 	rc->block_rsv->size = rc->extent_root->nodesize *
38880647bf56SWang Shilong 			      RELOCATION_RESERVED_NODES;
38893fd0a558SYan, Zheng 
38903fd0a558SYan, Zheng 	rc->create_reloc_tree = 1;
38913fd0a558SYan, Zheng 	set_reloc_control(rc);
38923fd0a558SYan, Zheng 
38937a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
389428818947SLiu Bo 	if (IS_ERR(trans)) {
389528818947SLiu Bo 		unset_reloc_control(rc);
389628818947SLiu Bo 		/*
389728818947SLiu Bo 		 * extent tree is not a ref_cow tree and has no reloc_root to
389828818947SLiu Bo 		 * cleanup.  And callers are responsible to free the above
389928818947SLiu Bo 		 * block rsv.
390028818947SLiu Bo 		 */
390128818947SLiu Bo 		return PTR_ERR(trans);
390228818947SLiu Bo 	}
39033fd0a558SYan, Zheng 	btrfs_commit_transaction(trans, rc->extent_root);
39043fd0a558SYan, Zheng 	return 0;
39053fd0a558SYan, Zheng }
390676dda93cSYan, Zheng 
39075d4f98a2SYan Zheng static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
39085d4f98a2SYan Zheng {
39095d4f98a2SYan Zheng 	struct rb_root blocks = RB_ROOT;
39105d4f98a2SYan Zheng 	struct btrfs_key key;
39115d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans = NULL;
39125d4f98a2SYan Zheng 	struct btrfs_path *path;
39135d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
39145d4f98a2SYan Zheng 	u64 flags;
39155d4f98a2SYan Zheng 	u32 item_size;
39165d4f98a2SYan Zheng 	int ret;
39175d4f98a2SYan Zheng 	int err = 0;
3918c87f08caSChris Mason 	int progress = 0;
39195d4f98a2SYan Zheng 
39205d4f98a2SYan Zheng 	path = btrfs_alloc_path();
39213fd0a558SYan, Zheng 	if (!path)
39225d4f98a2SYan Zheng 		return -ENOMEM;
3923026fd317SJosef Bacik 	path->reada = 1;
39243fd0a558SYan, Zheng 
39253fd0a558SYan, Zheng 	ret = prepare_to_relocate(rc);
39263fd0a558SYan, Zheng 	if (ret) {
39273fd0a558SYan, Zheng 		err = ret;
39283fd0a558SYan, Zheng 		goto out_free;
39292423fdfbSJiri Slaby 	}
39305d4f98a2SYan Zheng 
39315d4f98a2SYan Zheng 	while (1) {
39320647bf56SWang Shilong 		rc->reserved_bytes = 0;
39330647bf56SWang Shilong 		ret = btrfs_block_rsv_refill(rc->extent_root,
39340647bf56SWang Shilong 					rc->block_rsv, rc->block_rsv->size,
39350647bf56SWang Shilong 					BTRFS_RESERVE_FLUSH_ALL);
39360647bf56SWang Shilong 		if (ret) {
39370647bf56SWang Shilong 			err = ret;
39380647bf56SWang Shilong 			break;
39390647bf56SWang Shilong 		}
3940c87f08caSChris Mason 		progress++;
3941a22285a6SYan, Zheng 		trans = btrfs_start_transaction(rc->extent_root, 0);
39420f788c58SLiu Bo 		if (IS_ERR(trans)) {
39430f788c58SLiu Bo 			err = PTR_ERR(trans);
39440f788c58SLiu Bo 			trans = NULL;
39450f788c58SLiu Bo 			break;
39460f788c58SLiu Bo 		}
3947c87f08caSChris Mason restart:
39483fd0a558SYan, Zheng 		if (update_backref_cache(trans, &rc->backref_cache)) {
39493fd0a558SYan, Zheng 			btrfs_end_transaction(trans, rc->extent_root);
39503fd0a558SYan, Zheng 			continue;
39513fd0a558SYan, Zheng 		}
39523fd0a558SYan, Zheng 
39533fd0a558SYan, Zheng 		ret = find_next_extent(trans, rc, path, &key);
39545d4f98a2SYan Zheng 		if (ret < 0)
39555d4f98a2SYan Zheng 			err = ret;
39565d4f98a2SYan Zheng 		if (ret != 0)
39575d4f98a2SYan Zheng 			break;
39585d4f98a2SYan Zheng 
39595d4f98a2SYan Zheng 		rc->extents_found++;
39605d4f98a2SYan Zheng 
39615d4f98a2SYan Zheng 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
39625d4f98a2SYan Zheng 				    struct btrfs_extent_item);
39633fd0a558SYan, Zheng 		item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
39645d4f98a2SYan Zheng 		if (item_size >= sizeof(*ei)) {
39655d4f98a2SYan Zheng 			flags = btrfs_extent_flags(path->nodes[0], ei);
39665d4f98a2SYan Zheng 			ret = check_extent_flags(flags);
39675d4f98a2SYan Zheng 			BUG_ON(ret);
39685d4f98a2SYan Zheng 
39695d4f98a2SYan Zheng 		} else {
39705d4f98a2SYan Zheng #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
39715d4f98a2SYan Zheng 			u64 ref_owner;
39725d4f98a2SYan Zheng 			int path_change = 0;
39735d4f98a2SYan Zheng 
39745d4f98a2SYan Zheng 			BUG_ON(item_size !=
39755d4f98a2SYan Zheng 			       sizeof(struct btrfs_extent_item_v0));
39765d4f98a2SYan Zheng 			ret = get_ref_objectid_v0(rc, path, &key, &ref_owner,
39775d4f98a2SYan Zheng 						  &path_change);
39785d4f98a2SYan Zheng 			if (ref_owner < BTRFS_FIRST_FREE_OBJECTID)
39795d4f98a2SYan Zheng 				flags = BTRFS_EXTENT_FLAG_TREE_BLOCK;
39805d4f98a2SYan Zheng 			else
39815d4f98a2SYan Zheng 				flags = BTRFS_EXTENT_FLAG_DATA;
39825d4f98a2SYan Zheng 
39835d4f98a2SYan Zheng 			if (path_change) {
3984b3b4aa74SDavid Sterba 				btrfs_release_path(path);
39855d4f98a2SYan Zheng 
39865d4f98a2SYan Zheng 				path->search_commit_root = 1;
39875d4f98a2SYan Zheng 				path->skip_locking = 1;
39885d4f98a2SYan Zheng 				ret = btrfs_search_slot(NULL, rc->extent_root,
39895d4f98a2SYan Zheng 							&key, path, 0, 0);
39905d4f98a2SYan Zheng 				if (ret < 0) {
39915d4f98a2SYan Zheng 					err = ret;
39925d4f98a2SYan Zheng 					break;
39935d4f98a2SYan Zheng 				}
39945d4f98a2SYan Zheng 				BUG_ON(ret > 0);
39955d4f98a2SYan Zheng 			}
39965d4f98a2SYan Zheng #else
39975d4f98a2SYan Zheng 			BUG();
39985d4f98a2SYan Zheng #endif
39995d4f98a2SYan Zheng 		}
40005d4f98a2SYan Zheng 
40015d4f98a2SYan Zheng 		if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
40025d4f98a2SYan Zheng 			ret = add_tree_block(rc, &key, path, &blocks);
40035d4f98a2SYan Zheng 		} else if (rc->stage == UPDATE_DATA_PTRS &&
40045d4f98a2SYan Zheng 			   (flags & BTRFS_EXTENT_FLAG_DATA)) {
40055d4f98a2SYan Zheng 			ret = add_data_references(rc, &key, path, &blocks);
40065d4f98a2SYan Zheng 		} else {
4007b3b4aa74SDavid Sterba 			btrfs_release_path(path);
40085d4f98a2SYan Zheng 			ret = 0;
40095d4f98a2SYan Zheng 		}
40105d4f98a2SYan Zheng 		if (ret < 0) {
40113fd0a558SYan, Zheng 			err = ret;
40125d4f98a2SYan Zheng 			break;
40135d4f98a2SYan Zheng 		}
40145d4f98a2SYan Zheng 
40155d4f98a2SYan Zheng 		if (!RB_EMPTY_ROOT(&blocks)) {
40165d4f98a2SYan Zheng 			ret = relocate_tree_blocks(trans, rc, &blocks);
40175d4f98a2SYan Zheng 			if (ret < 0) {
40183fd0a558SYan, Zheng 				if (ret != -EAGAIN) {
40195d4f98a2SYan Zheng 					err = ret;
40205d4f98a2SYan Zheng 					break;
40215d4f98a2SYan Zheng 				}
40223fd0a558SYan, Zheng 				rc->extents_found--;
40233fd0a558SYan, Zheng 				rc->search_start = key.objectid;
40243fd0a558SYan, Zheng 			}
40255d4f98a2SYan Zheng 		}
40265d4f98a2SYan Zheng 
40273fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, rc->extent_root);
4028b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(rc->extent_root);
40293fd0a558SYan, Zheng 		trans = NULL;
40305d4f98a2SYan Zheng 
40315d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS &&
40325d4f98a2SYan Zheng 		    (flags & BTRFS_EXTENT_FLAG_DATA)) {
40335d4f98a2SYan Zheng 			rc->found_file_extent = 1;
40340257bb82SYan, Zheng 			ret = relocate_data_extent(rc->data_inode,
40353fd0a558SYan, Zheng 						   &key, &rc->cluster);
40365d4f98a2SYan Zheng 			if (ret < 0) {
40375d4f98a2SYan Zheng 				err = ret;
40385d4f98a2SYan Zheng 				break;
40395d4f98a2SYan Zheng 			}
40405d4f98a2SYan Zheng 		}
40415d4f98a2SYan Zheng 	}
4042c87f08caSChris Mason 	if (trans && progress && err == -ENOSPC) {
4043c87f08caSChris Mason 		ret = btrfs_force_chunk_alloc(trans, rc->extent_root,
4044c87f08caSChris Mason 					      rc->block_group->flags);
4045c87f08caSChris Mason 		if (ret == 0) {
4046c87f08caSChris Mason 			err = 0;
4047c87f08caSChris Mason 			progress = 0;
4048c87f08caSChris Mason 			goto restart;
4049c87f08caSChris Mason 		}
4050c87f08caSChris Mason 	}
40513fd0a558SYan, Zheng 
4052b3b4aa74SDavid Sterba 	btrfs_release_path(path);
40533fd0a558SYan, Zheng 	clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY,
40543fd0a558SYan, Zheng 			  GFP_NOFS);
40555d4f98a2SYan Zheng 
40565d4f98a2SYan Zheng 	if (trans) {
40573fd0a558SYan, Zheng 		btrfs_end_transaction_throttle(trans, rc->extent_root);
4058b53d3f5dSLiu Bo 		btrfs_btree_balance_dirty(rc->extent_root);
40595d4f98a2SYan Zheng 	}
40605d4f98a2SYan Zheng 
40610257bb82SYan, Zheng 	if (!err) {
40623fd0a558SYan, Zheng 		ret = relocate_file_extent_cluster(rc->data_inode,
40633fd0a558SYan, Zheng 						   &rc->cluster);
40640257bb82SYan, Zheng 		if (ret < 0)
40650257bb82SYan, Zheng 			err = ret;
40660257bb82SYan, Zheng 	}
40670257bb82SYan, Zheng 
40683fd0a558SYan, Zheng 	rc->create_reloc_tree = 0;
40693fd0a558SYan, Zheng 	set_reloc_control(rc);
40700257bb82SYan, Zheng 
40713fd0a558SYan, Zheng 	backref_cache_cleanup(&rc->backref_cache);
40723fd0a558SYan, Zheng 	btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
40735d4f98a2SYan Zheng 
40743fd0a558SYan, Zheng 	err = prepare_to_merge(rc, err);
40755d4f98a2SYan Zheng 
40765d4f98a2SYan Zheng 	merge_reloc_roots(rc);
40775d4f98a2SYan Zheng 
40783fd0a558SYan, Zheng 	rc->merge_reloc_tree = 0;
40795d4f98a2SYan Zheng 	unset_reloc_control(rc);
40803fd0a558SYan, Zheng 	btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
40815d4f98a2SYan Zheng 
40825d4f98a2SYan Zheng 	/* get rid of pinned extents */
40837a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
40843612b495STsutomu Itoh 	if (IS_ERR(trans))
40853612b495STsutomu Itoh 		err = PTR_ERR(trans);
40863612b495STsutomu Itoh 	else
40875d4f98a2SYan Zheng 		btrfs_commit_transaction(trans, rc->extent_root);
40883fd0a558SYan, Zheng out_free:
40893fd0a558SYan, Zheng 	btrfs_free_block_rsv(rc->extent_root, rc->block_rsv);
40903fd0a558SYan, Zheng 	btrfs_free_path(path);
40915d4f98a2SYan Zheng 	return err;
40925d4f98a2SYan Zheng }
40935d4f98a2SYan Zheng 
40945d4f98a2SYan Zheng static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
40950257bb82SYan, Zheng 				 struct btrfs_root *root, u64 objectid)
40965d4f98a2SYan Zheng {
40975d4f98a2SYan Zheng 	struct btrfs_path *path;
40985d4f98a2SYan Zheng 	struct btrfs_inode_item *item;
40995d4f98a2SYan Zheng 	struct extent_buffer *leaf;
41005d4f98a2SYan Zheng 	int ret;
41015d4f98a2SYan Zheng 
41025d4f98a2SYan Zheng 	path = btrfs_alloc_path();
41035d4f98a2SYan Zheng 	if (!path)
41045d4f98a2SYan Zheng 		return -ENOMEM;
41055d4f98a2SYan Zheng 
41065d4f98a2SYan Zheng 	ret = btrfs_insert_empty_inode(trans, root, path, objectid);
41075d4f98a2SYan Zheng 	if (ret)
41085d4f98a2SYan Zheng 		goto out;
41095d4f98a2SYan Zheng 
41105d4f98a2SYan Zheng 	leaf = path->nodes[0];
41115d4f98a2SYan Zheng 	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
41125d4f98a2SYan Zheng 	memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
41135d4f98a2SYan Zheng 	btrfs_set_inode_generation(leaf, item, 1);
41140257bb82SYan, Zheng 	btrfs_set_inode_size(leaf, item, 0);
41155d4f98a2SYan Zheng 	btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
41163fd0a558SYan, Zheng 	btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
41173fd0a558SYan, Zheng 					  BTRFS_INODE_PREALLOC);
41185d4f98a2SYan Zheng 	btrfs_mark_buffer_dirty(leaf);
4119b3b4aa74SDavid Sterba 	btrfs_release_path(path);
41205d4f98a2SYan Zheng out:
41215d4f98a2SYan Zheng 	btrfs_free_path(path);
41225d4f98a2SYan Zheng 	return ret;
41235d4f98a2SYan Zheng }
41245d4f98a2SYan Zheng 
41255d4f98a2SYan Zheng /*
41265d4f98a2SYan Zheng  * helper to create inode for data relocation.
41275d4f98a2SYan Zheng  * the inode is in data relocation tree and its link count is 0
41285d4f98a2SYan Zheng  */
41293fd0a558SYan, Zheng static noinline_for_stack
41303fd0a558SYan, Zheng struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
41315d4f98a2SYan Zheng 				 struct btrfs_block_group_cache *group)
41325d4f98a2SYan Zheng {
41335d4f98a2SYan Zheng 	struct inode *inode = NULL;
41345d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
41355d4f98a2SYan Zheng 	struct btrfs_root *root;
41365d4f98a2SYan Zheng 	struct btrfs_key key;
41375d4f98a2SYan Zheng 	u64 objectid = BTRFS_FIRST_FREE_OBJECTID;
41385d4f98a2SYan Zheng 	int err = 0;
41395d4f98a2SYan Zheng 
41405d4f98a2SYan Zheng 	root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
41415d4f98a2SYan Zheng 	if (IS_ERR(root))
41425d4f98a2SYan Zheng 		return ERR_CAST(root);
41435d4f98a2SYan Zheng 
4144a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
41453fd0a558SYan, Zheng 	if (IS_ERR(trans))
41463fd0a558SYan, Zheng 		return ERR_CAST(trans);
41475d4f98a2SYan Zheng 
4148581bb050SLi Zefan 	err = btrfs_find_free_objectid(root, &objectid);
41495d4f98a2SYan Zheng 	if (err)
41505d4f98a2SYan Zheng 		goto out;
41515d4f98a2SYan Zheng 
41520257bb82SYan, Zheng 	err = __insert_orphan_inode(trans, root, objectid);
41535d4f98a2SYan Zheng 	BUG_ON(err);
41545d4f98a2SYan Zheng 
41555d4f98a2SYan Zheng 	key.objectid = objectid;
41565d4f98a2SYan Zheng 	key.type = BTRFS_INODE_ITEM_KEY;
41575d4f98a2SYan Zheng 	key.offset = 0;
415873f73415SJosef Bacik 	inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
41595d4f98a2SYan Zheng 	BUG_ON(IS_ERR(inode) || is_bad_inode(inode));
41605d4f98a2SYan Zheng 	BTRFS_I(inode)->index_cnt = group->key.objectid;
41615d4f98a2SYan Zheng 
41625d4f98a2SYan Zheng 	err = btrfs_orphan_add(trans, inode);
41635d4f98a2SYan Zheng out:
41645d4f98a2SYan Zheng 	btrfs_end_transaction(trans, root);
4165b53d3f5dSLiu Bo 	btrfs_btree_balance_dirty(root);
41665d4f98a2SYan Zheng 	if (err) {
41675d4f98a2SYan Zheng 		if (inode)
41685d4f98a2SYan Zheng 			iput(inode);
41695d4f98a2SYan Zheng 		inode = ERR_PTR(err);
41705d4f98a2SYan Zheng 	}
41715d4f98a2SYan Zheng 	return inode;
41725d4f98a2SYan Zheng }
41735d4f98a2SYan Zheng 
4174a9995eecSJosef Bacik static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
41753fd0a558SYan, Zheng {
41763fd0a558SYan, Zheng 	struct reloc_control *rc;
41773fd0a558SYan, Zheng 
41783fd0a558SYan, Zheng 	rc = kzalloc(sizeof(*rc), GFP_NOFS);
41793fd0a558SYan, Zheng 	if (!rc)
41803fd0a558SYan, Zheng 		return NULL;
41813fd0a558SYan, Zheng 
41823fd0a558SYan, Zheng 	INIT_LIST_HEAD(&rc->reloc_roots);
41833fd0a558SYan, Zheng 	backref_cache_init(&rc->backref_cache);
41843fd0a558SYan, Zheng 	mapping_tree_init(&rc->reloc_root_tree);
4185a9995eecSJosef Bacik 	extent_io_tree_init(&rc->processed_blocks,
4186a9995eecSJosef Bacik 			    fs_info->btree_inode->i_mapping);
41873fd0a558SYan, Zheng 	return rc;
41883fd0a558SYan, Zheng }
41893fd0a558SYan, Zheng 
41905d4f98a2SYan Zheng /*
41915d4f98a2SYan Zheng  * function to relocate all extents in a block group.
41925d4f98a2SYan Zheng  */
41935d4f98a2SYan Zheng int btrfs_relocate_block_group(struct btrfs_root *extent_root, u64 group_start)
41945d4f98a2SYan Zheng {
41955d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = extent_root->fs_info;
41965d4f98a2SYan Zheng 	struct reloc_control *rc;
41970af3d00bSJosef Bacik 	struct inode *inode;
41980af3d00bSJosef Bacik 	struct btrfs_path *path;
41995d4f98a2SYan Zheng 	int ret;
4200f0486c68SYan, Zheng 	int rw = 0;
42015d4f98a2SYan Zheng 	int err = 0;
42025d4f98a2SYan Zheng 
4203a9995eecSJosef Bacik 	rc = alloc_reloc_control(fs_info);
42045d4f98a2SYan Zheng 	if (!rc)
42055d4f98a2SYan Zheng 		return -ENOMEM;
42065d4f98a2SYan Zheng 
4207f0486c68SYan, Zheng 	rc->extent_root = extent_root;
42083fd0a558SYan, Zheng 
42095d4f98a2SYan Zheng 	rc->block_group = btrfs_lookup_block_group(fs_info, group_start);
42105d4f98a2SYan Zheng 	BUG_ON(!rc->block_group);
42115d4f98a2SYan Zheng 
4212f0486c68SYan, Zheng 	if (!rc->block_group->ro) {
4213f0486c68SYan, Zheng 		ret = btrfs_set_block_group_ro(extent_root, rc->block_group);
4214f0486c68SYan, Zheng 		if (ret) {
4215f0486c68SYan, Zheng 			err = ret;
4216f0486c68SYan, Zheng 			goto out;
4217f0486c68SYan, Zheng 		}
4218f0486c68SYan, Zheng 		rw = 1;
4219f0486c68SYan, Zheng 	}
4220f0486c68SYan, Zheng 
42210af3d00bSJosef Bacik 	path = btrfs_alloc_path();
42220af3d00bSJosef Bacik 	if (!path) {
42230af3d00bSJosef Bacik 		err = -ENOMEM;
42240af3d00bSJosef Bacik 		goto out;
42250af3d00bSJosef Bacik 	}
42260af3d00bSJosef Bacik 
42270af3d00bSJosef Bacik 	inode = lookup_free_space_inode(fs_info->tree_root, rc->block_group,
42280af3d00bSJosef Bacik 					path);
42290af3d00bSJosef Bacik 	btrfs_free_path(path);
42300af3d00bSJosef Bacik 
42310af3d00bSJosef Bacik 	if (!IS_ERR(inode))
42320af3d00bSJosef Bacik 		ret = delete_block_group_cache(fs_info, inode, 0);
42330af3d00bSJosef Bacik 	else
42340af3d00bSJosef Bacik 		ret = PTR_ERR(inode);
42350af3d00bSJosef Bacik 
42360af3d00bSJosef Bacik 	if (ret && ret != -ENOENT) {
42370af3d00bSJosef Bacik 		err = ret;
42380af3d00bSJosef Bacik 		goto out;
42390af3d00bSJosef Bacik 	}
42400af3d00bSJosef Bacik 
42415d4f98a2SYan Zheng 	rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
42425d4f98a2SYan Zheng 	if (IS_ERR(rc->data_inode)) {
42435d4f98a2SYan Zheng 		err = PTR_ERR(rc->data_inode);
42445d4f98a2SYan Zheng 		rc->data_inode = NULL;
42455d4f98a2SYan Zheng 		goto out;
42465d4f98a2SYan Zheng 	}
42475d4f98a2SYan Zheng 
4248efe120a0SFrank Holton 	btrfs_info(extent_root->fs_info, "relocating block group %llu flags %llu",
4249c1c9ff7cSGeert Uytterhoeven 	       rc->block_group->key.objectid, rc->block_group->flags);
42505d4f98a2SYan Zheng 
425191aef86fSMiao Xie 	ret = btrfs_start_delalloc_roots(fs_info, 0);
42528ccf6f19SMiao Xie 	if (ret < 0) {
42538ccf6f19SMiao Xie 		err = ret;
42548ccf6f19SMiao Xie 		goto out;
42558ccf6f19SMiao Xie 	}
4256b0244199SMiao Xie 	btrfs_wait_ordered_roots(fs_info, -1);
42575d4f98a2SYan Zheng 
42585d4f98a2SYan Zheng 	while (1) {
425976dda93cSYan, Zheng 		mutex_lock(&fs_info->cleaner_mutex);
42605d4f98a2SYan Zheng 		ret = relocate_block_group(rc);
426176dda93cSYan, Zheng 		mutex_unlock(&fs_info->cleaner_mutex);
42625d4f98a2SYan Zheng 		if (ret < 0) {
42635d4f98a2SYan Zheng 			err = ret;
42643fd0a558SYan, Zheng 			goto out;
42655d4f98a2SYan Zheng 		}
42665d4f98a2SYan Zheng 
42675d4f98a2SYan Zheng 		if (rc->extents_found == 0)
42685d4f98a2SYan Zheng 			break;
42695d4f98a2SYan Zheng 
4270efe120a0SFrank Holton 		btrfs_info(extent_root->fs_info, "found %llu extents",
4271c1c9ff7cSGeert Uytterhoeven 			rc->extents_found);
42725d4f98a2SYan Zheng 
42735d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
42740ef8b726SJosef Bacik 			ret = btrfs_wait_ordered_range(rc->data_inode, 0,
42750ef8b726SJosef Bacik 						       (u64)-1);
42760ef8b726SJosef Bacik 			if (ret) {
42770ef8b726SJosef Bacik 				err = ret;
42780ef8b726SJosef Bacik 				goto out;
42790ef8b726SJosef Bacik 			}
42805d4f98a2SYan Zheng 			invalidate_mapping_pages(rc->data_inode->i_mapping,
42815d4f98a2SYan Zheng 						 0, -1);
42825d4f98a2SYan Zheng 			rc->stage = UPDATE_DATA_PTRS;
42835d4f98a2SYan Zheng 		}
42845d4f98a2SYan Zheng 	}
42855d4f98a2SYan Zheng 
42865d4f98a2SYan Zheng 	WARN_ON(rc->block_group->pinned > 0);
42875d4f98a2SYan Zheng 	WARN_ON(rc->block_group->reserved > 0);
42885d4f98a2SYan Zheng 	WARN_ON(btrfs_block_group_used(&rc->block_group->item) > 0);
42895d4f98a2SYan Zheng out:
4290f0486c68SYan, Zheng 	if (err && rw)
4291f0486c68SYan, Zheng 		btrfs_set_block_group_rw(extent_root, rc->block_group);
42925d4f98a2SYan Zheng 	iput(rc->data_inode);
42935d4f98a2SYan Zheng 	btrfs_put_block_group(rc->block_group);
42945d4f98a2SYan Zheng 	kfree(rc);
42955d4f98a2SYan Zheng 	return err;
42965d4f98a2SYan Zheng }
42975d4f98a2SYan Zheng 
429876dda93cSYan, Zheng static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
429976dda93cSYan, Zheng {
430076dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
430179787eaaSJeff Mahoney 	int ret, err;
430276dda93cSYan, Zheng 
4303a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root->fs_info->tree_root, 0);
430479787eaaSJeff Mahoney 	if (IS_ERR(trans))
430579787eaaSJeff Mahoney 		return PTR_ERR(trans);
430676dda93cSYan, Zheng 
430776dda93cSYan, Zheng 	memset(&root->root_item.drop_progress, 0,
430876dda93cSYan, Zheng 		sizeof(root->root_item.drop_progress));
430976dda93cSYan, Zheng 	root->root_item.drop_level = 0;
431076dda93cSYan, Zheng 	btrfs_set_root_refs(&root->root_item, 0);
431176dda93cSYan, Zheng 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
431276dda93cSYan, Zheng 				&root->root_key, &root->root_item);
431376dda93cSYan, Zheng 
431479787eaaSJeff Mahoney 	err = btrfs_end_transaction(trans, root->fs_info->tree_root);
431579787eaaSJeff Mahoney 	if (err)
431679787eaaSJeff Mahoney 		return err;
431779787eaaSJeff Mahoney 	return ret;
431876dda93cSYan, Zheng }
431976dda93cSYan, Zheng 
43205d4f98a2SYan Zheng /*
43215d4f98a2SYan Zheng  * recover relocation interrupted by system crash.
43225d4f98a2SYan Zheng  *
43235d4f98a2SYan Zheng  * this function resumes merging reloc trees with corresponding fs trees.
43245d4f98a2SYan Zheng  * this is important for keeping the sharing of tree blocks
43255d4f98a2SYan Zheng  */
43265d4f98a2SYan Zheng int btrfs_recover_relocation(struct btrfs_root *root)
43275d4f98a2SYan Zheng {
43285d4f98a2SYan Zheng 	LIST_HEAD(reloc_roots);
43295d4f98a2SYan Zheng 	struct btrfs_key key;
43305d4f98a2SYan Zheng 	struct btrfs_root *fs_root;
43315d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
43325d4f98a2SYan Zheng 	struct btrfs_path *path;
43335d4f98a2SYan Zheng 	struct extent_buffer *leaf;
43345d4f98a2SYan Zheng 	struct reloc_control *rc = NULL;
43355d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
43365d4f98a2SYan Zheng 	int ret;
43375d4f98a2SYan Zheng 	int err = 0;
43385d4f98a2SYan Zheng 
43395d4f98a2SYan Zheng 	path = btrfs_alloc_path();
43405d4f98a2SYan Zheng 	if (!path)
43415d4f98a2SYan Zheng 		return -ENOMEM;
4342026fd317SJosef Bacik 	path->reada = -1;
43435d4f98a2SYan Zheng 
43445d4f98a2SYan Zheng 	key.objectid = BTRFS_TREE_RELOC_OBJECTID;
43455d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
43465d4f98a2SYan Zheng 	key.offset = (u64)-1;
43475d4f98a2SYan Zheng 
43485d4f98a2SYan Zheng 	while (1) {
43495d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key,
43505d4f98a2SYan Zheng 					path, 0, 0);
43515d4f98a2SYan Zheng 		if (ret < 0) {
43525d4f98a2SYan Zheng 			err = ret;
43535d4f98a2SYan Zheng 			goto out;
43545d4f98a2SYan Zheng 		}
43555d4f98a2SYan Zheng 		if (ret > 0) {
43565d4f98a2SYan Zheng 			if (path->slots[0] == 0)
43575d4f98a2SYan Zheng 				break;
43585d4f98a2SYan Zheng 			path->slots[0]--;
43595d4f98a2SYan Zheng 		}
43605d4f98a2SYan Zheng 		leaf = path->nodes[0];
43615d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4362b3b4aa74SDavid Sterba 		btrfs_release_path(path);
43635d4f98a2SYan Zheng 
43645d4f98a2SYan Zheng 		if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
43655d4f98a2SYan Zheng 		    key.type != BTRFS_ROOT_ITEM_KEY)
43665d4f98a2SYan Zheng 			break;
43675d4f98a2SYan Zheng 
4368cb517eabSMiao Xie 		reloc_root = btrfs_read_fs_root(root, &key);
43695d4f98a2SYan Zheng 		if (IS_ERR(reloc_root)) {
43705d4f98a2SYan Zheng 			err = PTR_ERR(reloc_root);
43715d4f98a2SYan Zheng 			goto out;
43725d4f98a2SYan Zheng 		}
43735d4f98a2SYan Zheng 
43745d4f98a2SYan Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
43755d4f98a2SYan Zheng 
43765d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
43775d4f98a2SYan Zheng 			fs_root = read_fs_root(root->fs_info,
43785d4f98a2SYan Zheng 					       reloc_root->root_key.offset);
43795d4f98a2SYan Zheng 			if (IS_ERR(fs_root)) {
438076dda93cSYan, Zheng 				ret = PTR_ERR(fs_root);
438176dda93cSYan, Zheng 				if (ret != -ENOENT) {
438276dda93cSYan, Zheng 					err = ret;
43835d4f98a2SYan Zheng 					goto out;
43845d4f98a2SYan Zheng 				}
438579787eaaSJeff Mahoney 				ret = mark_garbage_root(reloc_root);
438679787eaaSJeff Mahoney 				if (ret < 0) {
438779787eaaSJeff Mahoney 					err = ret;
438879787eaaSJeff Mahoney 					goto out;
438979787eaaSJeff Mahoney 				}
439076dda93cSYan, Zheng 			}
43915d4f98a2SYan Zheng 		}
43925d4f98a2SYan Zheng 
43935d4f98a2SYan Zheng 		if (key.offset == 0)
43945d4f98a2SYan Zheng 			break;
43955d4f98a2SYan Zheng 
43965d4f98a2SYan Zheng 		key.offset--;
43975d4f98a2SYan Zheng 	}
4398b3b4aa74SDavid Sterba 	btrfs_release_path(path);
43995d4f98a2SYan Zheng 
44005d4f98a2SYan Zheng 	if (list_empty(&reloc_roots))
44015d4f98a2SYan Zheng 		goto out;
44025d4f98a2SYan Zheng 
4403a9995eecSJosef Bacik 	rc = alloc_reloc_control(root->fs_info);
44045d4f98a2SYan Zheng 	if (!rc) {
44055d4f98a2SYan Zheng 		err = -ENOMEM;
44065d4f98a2SYan Zheng 		goto out;
44075d4f98a2SYan Zheng 	}
44085d4f98a2SYan Zheng 
44095d4f98a2SYan Zheng 	rc->extent_root = root->fs_info->extent_root;
44105d4f98a2SYan Zheng 
44115d4f98a2SYan Zheng 	set_reloc_control(rc);
44125d4f98a2SYan Zheng 
44137a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
44143612b495STsutomu Itoh 	if (IS_ERR(trans)) {
44153612b495STsutomu Itoh 		unset_reloc_control(rc);
44163612b495STsutomu Itoh 		err = PTR_ERR(trans);
44173612b495STsutomu Itoh 		goto out_free;
44183612b495STsutomu Itoh 	}
44193fd0a558SYan, Zheng 
44203fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
44213fd0a558SYan, Zheng 
44225d4f98a2SYan Zheng 	while (!list_empty(&reloc_roots)) {
44235d4f98a2SYan Zheng 		reloc_root = list_entry(reloc_roots.next,
44245d4f98a2SYan Zheng 					struct btrfs_root, root_list);
44255d4f98a2SYan Zheng 		list_del(&reloc_root->root_list);
44265d4f98a2SYan Zheng 
44275d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) == 0) {
44285d4f98a2SYan Zheng 			list_add_tail(&reloc_root->root_list,
44295d4f98a2SYan Zheng 				      &rc->reloc_roots);
44305d4f98a2SYan Zheng 			continue;
44315d4f98a2SYan Zheng 		}
44325d4f98a2SYan Zheng 
44335d4f98a2SYan Zheng 		fs_root = read_fs_root(root->fs_info,
44345d4f98a2SYan Zheng 				       reloc_root->root_key.offset);
443579787eaaSJeff Mahoney 		if (IS_ERR(fs_root)) {
443679787eaaSJeff Mahoney 			err = PTR_ERR(fs_root);
443779787eaaSJeff Mahoney 			goto out_free;
443879787eaaSJeff Mahoney 		}
44395d4f98a2SYan Zheng 
4440ffd7b339SJeff Mahoney 		err = __add_reloc_root(reloc_root);
444179787eaaSJeff Mahoney 		BUG_ON(err < 0); /* -ENOMEM or logic error */
44425d4f98a2SYan Zheng 		fs_root->reloc_root = reloc_root;
44435d4f98a2SYan Zheng 	}
44445d4f98a2SYan Zheng 
444579787eaaSJeff Mahoney 	err = btrfs_commit_transaction(trans, rc->extent_root);
444679787eaaSJeff Mahoney 	if (err)
444779787eaaSJeff Mahoney 		goto out_free;
44485d4f98a2SYan Zheng 
44495d4f98a2SYan Zheng 	merge_reloc_roots(rc);
44505d4f98a2SYan Zheng 
44515d4f98a2SYan Zheng 	unset_reloc_control(rc);
44525d4f98a2SYan Zheng 
44537a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
44543612b495STsutomu Itoh 	if (IS_ERR(trans))
44553612b495STsutomu Itoh 		err = PTR_ERR(trans);
44563612b495STsutomu Itoh 	else
445779787eaaSJeff Mahoney 		err = btrfs_commit_transaction(trans, rc->extent_root);
44583612b495STsutomu Itoh out_free:
44595d4f98a2SYan Zheng 	kfree(rc);
44603612b495STsutomu Itoh out:
4461aca1bba6SLiu Bo 	if (!list_empty(&reloc_roots))
4462aca1bba6SLiu Bo 		free_reloc_roots(&reloc_roots);
4463aca1bba6SLiu Bo 
44645d4f98a2SYan Zheng 	btrfs_free_path(path);
44655d4f98a2SYan Zheng 
44665d4f98a2SYan Zheng 	if (err == 0) {
44675d4f98a2SYan Zheng 		/* cleanup orphan inode in data relocation tree */
44685d4f98a2SYan Zheng 		fs_root = read_fs_root(root->fs_info,
44695d4f98a2SYan Zheng 				       BTRFS_DATA_RELOC_TREE_OBJECTID);
44705d4f98a2SYan Zheng 		if (IS_ERR(fs_root))
44715d4f98a2SYan Zheng 			err = PTR_ERR(fs_root);
4472d7ce5843SMiao Xie 		else
447366b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(fs_root);
44745d4f98a2SYan Zheng 	}
44755d4f98a2SYan Zheng 	return err;
44765d4f98a2SYan Zheng }
44775d4f98a2SYan Zheng 
44785d4f98a2SYan Zheng /*
44795d4f98a2SYan Zheng  * helper to add ordered checksum for data relocation.
44805d4f98a2SYan Zheng  *
44815d4f98a2SYan Zheng  * cloning checksum properly handles the nodatasum extents.
44825d4f98a2SYan Zheng  * it also saves CPU time to re-calculate the checksum.
44835d4f98a2SYan Zheng  */
44845d4f98a2SYan Zheng int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
44855d4f98a2SYan Zheng {
44865d4f98a2SYan Zheng 	struct btrfs_ordered_sum *sums;
44875d4f98a2SYan Zheng 	struct btrfs_ordered_extent *ordered;
44885d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(inode)->root;
44895d4f98a2SYan Zheng 	int ret;
44905d4f98a2SYan Zheng 	u64 disk_bytenr;
44914577b014SJosef Bacik 	u64 new_bytenr;
44925d4f98a2SYan Zheng 	LIST_HEAD(list);
44935d4f98a2SYan Zheng 
44945d4f98a2SYan Zheng 	ordered = btrfs_lookup_ordered_extent(inode, file_pos);
44955d4f98a2SYan Zheng 	BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
44965d4f98a2SYan Zheng 
44975d4f98a2SYan Zheng 	disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
44985d4f98a2SYan Zheng 	ret = btrfs_lookup_csums_range(root->fs_info->csum_root, disk_bytenr,
4499a2de733cSArne Jansen 				       disk_bytenr + len - 1, &list, 0);
450079787eaaSJeff Mahoney 	if (ret)
450179787eaaSJeff Mahoney 		goto out;
45025d4f98a2SYan Zheng 
45035d4f98a2SYan Zheng 	while (!list_empty(&list)) {
45045d4f98a2SYan Zheng 		sums = list_entry(list.next, struct btrfs_ordered_sum, list);
45055d4f98a2SYan Zheng 		list_del_init(&sums->list);
45065d4f98a2SYan Zheng 
45074577b014SJosef Bacik 		/*
45084577b014SJosef Bacik 		 * We need to offset the new_bytenr based on where the csum is.
45094577b014SJosef Bacik 		 * We need to do this because we will read in entire prealloc
45104577b014SJosef Bacik 		 * extents but we may have written to say the middle of the
45114577b014SJosef Bacik 		 * prealloc extent, so we need to make sure the csum goes with
45124577b014SJosef Bacik 		 * the right disk offset.
45134577b014SJosef Bacik 		 *
45144577b014SJosef Bacik 		 * We can do this because the data reloc inode refers strictly
45154577b014SJosef Bacik 		 * to the on disk bytes, so we don't have to worry about
45164577b014SJosef Bacik 		 * disk_len vs real len like with real inodes since it's all
45174577b014SJosef Bacik 		 * disk length.
45184577b014SJosef Bacik 		 */
45194577b014SJosef Bacik 		new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
45204577b014SJosef Bacik 		sums->bytenr = new_bytenr;
45215d4f98a2SYan Zheng 
45225d4f98a2SYan Zheng 		btrfs_add_ordered_sum(inode, ordered, sums);
45235d4f98a2SYan Zheng 	}
452479787eaaSJeff Mahoney out:
45255d4f98a2SYan Zheng 	btrfs_put_ordered_extent(ordered);
4526411fc6bcSAndi Kleen 	return ret;
45275d4f98a2SYan Zheng }
45283fd0a558SYan, Zheng 
452983d4cfd4SJosef Bacik int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
45303fd0a558SYan, Zheng 			  struct btrfs_root *root, struct extent_buffer *buf,
45313fd0a558SYan, Zheng 			  struct extent_buffer *cow)
45323fd0a558SYan, Zheng {
45333fd0a558SYan, Zheng 	struct reloc_control *rc;
45343fd0a558SYan, Zheng 	struct backref_node *node;
45353fd0a558SYan, Zheng 	int first_cow = 0;
45363fd0a558SYan, Zheng 	int level;
453783d4cfd4SJosef Bacik 	int ret = 0;
45383fd0a558SYan, Zheng 
45393fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
45403fd0a558SYan, Zheng 	if (!rc)
454183d4cfd4SJosef Bacik 		return 0;
45423fd0a558SYan, Zheng 
45433fd0a558SYan, Zheng 	BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
45443fd0a558SYan, Zheng 	       root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
45453fd0a558SYan, Zheng 
4546c974c464SWang Shilong 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
4547c974c464SWang Shilong 		if (buf == root->node)
4548c974c464SWang Shilong 			__update_reloc_root(root, cow->start);
4549c974c464SWang Shilong 	}
4550c974c464SWang Shilong 
45513fd0a558SYan, Zheng 	level = btrfs_header_level(buf);
45523fd0a558SYan, Zheng 	if (btrfs_header_generation(buf) <=
45533fd0a558SYan, Zheng 	    btrfs_root_last_snapshot(&root->root_item))
45543fd0a558SYan, Zheng 		first_cow = 1;
45553fd0a558SYan, Zheng 
45563fd0a558SYan, Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
45573fd0a558SYan, Zheng 	    rc->create_reloc_tree) {
45583fd0a558SYan, Zheng 		WARN_ON(!first_cow && level == 0);
45593fd0a558SYan, Zheng 
45603fd0a558SYan, Zheng 		node = rc->backref_cache.path[level];
45613fd0a558SYan, Zheng 		BUG_ON(node->bytenr != buf->start &&
45623fd0a558SYan, Zheng 		       node->new_bytenr != buf->start);
45633fd0a558SYan, Zheng 
45643fd0a558SYan, Zheng 		drop_node_buffer(node);
45653fd0a558SYan, Zheng 		extent_buffer_get(cow);
45663fd0a558SYan, Zheng 		node->eb = cow;
45673fd0a558SYan, Zheng 		node->new_bytenr = cow->start;
45683fd0a558SYan, Zheng 
45693fd0a558SYan, Zheng 		if (!node->pending) {
45703fd0a558SYan, Zheng 			list_move_tail(&node->list,
45713fd0a558SYan, Zheng 				       &rc->backref_cache.pending[level]);
45723fd0a558SYan, Zheng 			node->pending = 1;
45733fd0a558SYan, Zheng 		}
45743fd0a558SYan, Zheng 
45753fd0a558SYan, Zheng 		if (first_cow)
45763fd0a558SYan, Zheng 			__mark_block_processed(rc, node);
45773fd0a558SYan, Zheng 
45783fd0a558SYan, Zheng 		if (first_cow && level > 0)
45793fd0a558SYan, Zheng 			rc->nodes_relocated += buf->len;
45803fd0a558SYan, Zheng 	}
45813fd0a558SYan, Zheng 
458283d4cfd4SJosef Bacik 	if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
45833fd0a558SYan, Zheng 		ret = replace_file_extents(trans, rc, root, cow);
458483d4cfd4SJosef Bacik 	return ret;
45853fd0a558SYan, Zheng }
45863fd0a558SYan, Zheng 
45873fd0a558SYan, Zheng /*
45883fd0a558SYan, Zheng  * called before creating snapshot. it calculates metadata reservation
45893fd0a558SYan, Zheng  * requried for relocating tree blocks in the snapshot
45903fd0a558SYan, Zheng  */
45913fd0a558SYan, Zheng void btrfs_reloc_pre_snapshot(struct btrfs_trans_handle *trans,
45923fd0a558SYan, Zheng 			      struct btrfs_pending_snapshot *pending,
45933fd0a558SYan, Zheng 			      u64 *bytes_to_reserve)
45943fd0a558SYan, Zheng {
45953fd0a558SYan, Zheng 	struct btrfs_root *root;
45963fd0a558SYan, Zheng 	struct reloc_control *rc;
45973fd0a558SYan, Zheng 
45983fd0a558SYan, Zheng 	root = pending->root;
45993fd0a558SYan, Zheng 	if (!root->reloc_root)
46003fd0a558SYan, Zheng 		return;
46013fd0a558SYan, Zheng 
46023fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
46033fd0a558SYan, Zheng 	if (!rc->merge_reloc_tree)
46043fd0a558SYan, Zheng 		return;
46053fd0a558SYan, Zheng 
46063fd0a558SYan, Zheng 	root = root->reloc_root;
46073fd0a558SYan, Zheng 	BUG_ON(btrfs_root_refs(&root->root_item) == 0);
46083fd0a558SYan, Zheng 	/*
46093fd0a558SYan, Zheng 	 * relocation is in the stage of merging trees. the space
46103fd0a558SYan, Zheng 	 * used by merging a reloc tree is twice the size of
46113fd0a558SYan, Zheng 	 * relocated tree nodes in the worst case. half for cowing
46123fd0a558SYan, Zheng 	 * the reloc tree, half for cowing the fs tree. the space
46133fd0a558SYan, Zheng 	 * used by cowing the reloc tree will be freed after the
46143fd0a558SYan, Zheng 	 * tree is dropped. if we create snapshot, cowing the fs
46153fd0a558SYan, Zheng 	 * tree may use more space than it frees. so we need
46163fd0a558SYan, Zheng 	 * reserve extra space.
46173fd0a558SYan, Zheng 	 */
46183fd0a558SYan, Zheng 	*bytes_to_reserve += rc->nodes_relocated;
46193fd0a558SYan, Zheng }
46203fd0a558SYan, Zheng 
46213fd0a558SYan, Zheng /*
46223fd0a558SYan, Zheng  * called after snapshot is created. migrate block reservation
46233fd0a558SYan, Zheng  * and create reloc root for the newly created snapshot
46243fd0a558SYan, Zheng  */
462549b25e05SJeff Mahoney int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
46263fd0a558SYan, Zheng 			       struct btrfs_pending_snapshot *pending)
46273fd0a558SYan, Zheng {
46283fd0a558SYan, Zheng 	struct btrfs_root *root = pending->root;
46293fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
46303fd0a558SYan, Zheng 	struct btrfs_root *new_root;
46313fd0a558SYan, Zheng 	struct reloc_control *rc;
46323fd0a558SYan, Zheng 	int ret;
46333fd0a558SYan, Zheng 
46343fd0a558SYan, Zheng 	if (!root->reloc_root)
463549b25e05SJeff Mahoney 		return 0;
46363fd0a558SYan, Zheng 
46373fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
46383fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated;
46393fd0a558SYan, Zheng 
46403fd0a558SYan, Zheng 	if (rc->merge_reloc_tree) {
46413fd0a558SYan, Zheng 		ret = btrfs_block_rsv_migrate(&pending->block_rsv,
46423fd0a558SYan, Zheng 					      rc->block_rsv,
46433fd0a558SYan, Zheng 					      rc->nodes_relocated);
464449b25e05SJeff Mahoney 		if (ret)
464549b25e05SJeff Mahoney 			return ret;
46463fd0a558SYan, Zheng 	}
46473fd0a558SYan, Zheng 
46483fd0a558SYan, Zheng 	new_root = pending->snap;
46493fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root->reloc_root,
46503fd0a558SYan, Zheng 				       new_root->root_key.objectid);
465149b25e05SJeff Mahoney 	if (IS_ERR(reloc_root))
465249b25e05SJeff Mahoney 		return PTR_ERR(reloc_root);
46533fd0a558SYan, Zheng 
4654ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
4655ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
46563fd0a558SYan, Zheng 	new_root->reloc_root = reloc_root;
46573fd0a558SYan, Zheng 
465849b25e05SJeff Mahoney 	if (rc->create_reloc_tree)
46593fd0a558SYan, Zheng 		ret = clone_backref_node(trans, rc, root, reloc_root);
466049b25e05SJeff Mahoney 	return ret;
46613fd0a558SYan, Zheng }
4662