xref: /openbmc/linux/fs/btrfs/relocation.c (revision 52042d8e)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
25d4f98a2SYan Zheng /*
35d4f98a2SYan Zheng  * Copyright (C) 2009 Oracle.  All rights reserved.
45d4f98a2SYan Zheng  */
55d4f98a2SYan Zheng 
65d4f98a2SYan Zheng #include <linux/sched.h>
75d4f98a2SYan Zheng #include <linux/pagemap.h>
85d4f98a2SYan Zheng #include <linux/writeback.h>
95d4f98a2SYan Zheng #include <linux/blkdev.h>
105d4f98a2SYan Zheng #include <linux/rbtree.h>
115a0e3ad6STejun Heo #include <linux/slab.h>
125d4f98a2SYan Zheng #include "ctree.h"
135d4f98a2SYan Zheng #include "disk-io.h"
145d4f98a2SYan Zheng #include "transaction.h"
155d4f98a2SYan Zheng #include "volumes.h"
165d4f98a2SYan Zheng #include "locking.h"
175d4f98a2SYan Zheng #include "btrfs_inode.h"
185d4f98a2SYan Zheng #include "async-thread.h"
190af3d00bSJosef Bacik #include "free-space-cache.h"
20581bb050SLi Zefan #include "inode-map.h"
2162b99540SQu Wenruo #include "qgroup.h"
22cdccee99SLiu Bo #include "print-tree.h"
235d4f98a2SYan Zheng 
245d4f98a2SYan Zheng /*
255d4f98a2SYan Zheng  * backref_node, mapping_node and tree_block start with this
265d4f98a2SYan Zheng  */
275d4f98a2SYan Zheng struct tree_entry {
285d4f98a2SYan Zheng 	struct rb_node rb_node;
295d4f98a2SYan Zheng 	u64 bytenr;
305d4f98a2SYan Zheng };
315d4f98a2SYan Zheng 
325d4f98a2SYan Zheng /*
335d4f98a2SYan Zheng  * present a tree block in the backref cache
345d4f98a2SYan Zheng  */
355d4f98a2SYan Zheng struct backref_node {
365d4f98a2SYan Zheng 	struct rb_node rb_node;
375d4f98a2SYan Zheng 	u64 bytenr;
383fd0a558SYan, Zheng 
393fd0a558SYan, Zheng 	u64 new_bytenr;
403fd0a558SYan, Zheng 	/* objectid of tree block owner, can be not uptodate */
415d4f98a2SYan Zheng 	u64 owner;
423fd0a558SYan, Zheng 	/* link to pending, changed or detached list */
433fd0a558SYan, Zheng 	struct list_head list;
445d4f98a2SYan Zheng 	/* list of upper level blocks reference this block */
455d4f98a2SYan Zheng 	struct list_head upper;
465d4f98a2SYan Zheng 	/* list of child blocks in the cache */
475d4f98a2SYan Zheng 	struct list_head lower;
485d4f98a2SYan Zheng 	/* NULL if this node is not tree root */
495d4f98a2SYan Zheng 	struct btrfs_root *root;
505d4f98a2SYan Zheng 	/* extent buffer got by COW the block */
515d4f98a2SYan Zheng 	struct extent_buffer *eb;
525d4f98a2SYan Zheng 	/* level of tree block */
535d4f98a2SYan Zheng 	unsigned int level:8;
543fd0a558SYan, Zheng 	/* is the block in non-reference counted tree */
553fd0a558SYan, Zheng 	unsigned int cowonly:1;
563fd0a558SYan, Zheng 	/* 1 if no child node in the cache */
575d4f98a2SYan Zheng 	unsigned int lowest:1;
585d4f98a2SYan Zheng 	/* is the extent buffer locked */
595d4f98a2SYan Zheng 	unsigned int locked:1;
605d4f98a2SYan Zheng 	/* has the block been processed */
615d4f98a2SYan Zheng 	unsigned int processed:1;
625d4f98a2SYan Zheng 	/* have backrefs of this block been checked */
635d4f98a2SYan Zheng 	unsigned int checked:1;
643fd0a558SYan, Zheng 	/*
653fd0a558SYan, Zheng 	 * 1 if corresponding block has been cowed but some upper
663fd0a558SYan, Zheng 	 * level block pointers may not point to the new location
673fd0a558SYan, Zheng 	 */
683fd0a558SYan, Zheng 	unsigned int pending:1;
693fd0a558SYan, Zheng 	/*
703fd0a558SYan, Zheng 	 * 1 if the backref node isn't connected to any other
713fd0a558SYan, Zheng 	 * backref node.
723fd0a558SYan, Zheng 	 */
733fd0a558SYan, Zheng 	unsigned int detached:1;
745d4f98a2SYan Zheng };
755d4f98a2SYan Zheng 
765d4f98a2SYan Zheng /*
775d4f98a2SYan Zheng  * present a block pointer in the backref cache
785d4f98a2SYan Zheng  */
795d4f98a2SYan Zheng struct backref_edge {
805d4f98a2SYan Zheng 	struct list_head list[2];
815d4f98a2SYan Zheng 	struct backref_node *node[2];
825d4f98a2SYan Zheng };
835d4f98a2SYan Zheng 
845d4f98a2SYan Zheng #define LOWER	0
855d4f98a2SYan Zheng #define UPPER	1
860647bf56SWang Shilong #define RELOCATION_RESERVED_NODES	256
875d4f98a2SYan Zheng 
885d4f98a2SYan Zheng struct backref_cache {
895d4f98a2SYan Zheng 	/* red black tree of all backref nodes in the cache */
905d4f98a2SYan Zheng 	struct rb_root rb_root;
913fd0a558SYan, Zheng 	/* for passing backref nodes to btrfs_reloc_cow_block */
923fd0a558SYan, Zheng 	struct backref_node *path[BTRFS_MAX_LEVEL];
933fd0a558SYan, Zheng 	/*
943fd0a558SYan, Zheng 	 * list of blocks that have been cowed but some block
953fd0a558SYan, Zheng 	 * pointers in upper level blocks may not reflect the
963fd0a558SYan, Zheng 	 * new location
973fd0a558SYan, Zheng 	 */
985d4f98a2SYan Zheng 	struct list_head pending[BTRFS_MAX_LEVEL];
993fd0a558SYan, Zheng 	/* list of backref nodes with no child node */
1003fd0a558SYan, Zheng 	struct list_head leaves;
1013fd0a558SYan, Zheng 	/* list of blocks that have been cowed in current transaction */
1023fd0a558SYan, Zheng 	struct list_head changed;
1033fd0a558SYan, Zheng 	/* list of detached backref node. */
1043fd0a558SYan, Zheng 	struct list_head detached;
1053fd0a558SYan, Zheng 
1063fd0a558SYan, Zheng 	u64 last_trans;
1073fd0a558SYan, Zheng 
1083fd0a558SYan, Zheng 	int nr_nodes;
1093fd0a558SYan, Zheng 	int nr_edges;
1105d4f98a2SYan Zheng };
1115d4f98a2SYan Zheng 
1125d4f98a2SYan Zheng /*
1135d4f98a2SYan Zheng  * map address of tree root to tree
1145d4f98a2SYan Zheng  */
1155d4f98a2SYan Zheng struct mapping_node {
1165d4f98a2SYan Zheng 	struct rb_node rb_node;
1175d4f98a2SYan Zheng 	u64 bytenr;
1185d4f98a2SYan Zheng 	void *data;
1195d4f98a2SYan Zheng };
1205d4f98a2SYan Zheng 
1215d4f98a2SYan Zheng struct mapping_tree {
1225d4f98a2SYan Zheng 	struct rb_root rb_root;
1235d4f98a2SYan Zheng 	spinlock_t lock;
1245d4f98a2SYan Zheng };
1255d4f98a2SYan Zheng 
1265d4f98a2SYan Zheng /*
1275d4f98a2SYan Zheng  * present a tree block to process
1285d4f98a2SYan Zheng  */
1295d4f98a2SYan Zheng struct tree_block {
1305d4f98a2SYan Zheng 	struct rb_node rb_node;
1315d4f98a2SYan Zheng 	u64 bytenr;
1325d4f98a2SYan Zheng 	struct btrfs_key key;
1335d4f98a2SYan Zheng 	unsigned int level:8;
1345d4f98a2SYan Zheng 	unsigned int key_ready:1;
1355d4f98a2SYan Zheng };
1365d4f98a2SYan Zheng 
1370257bb82SYan, Zheng #define MAX_EXTENTS 128
1380257bb82SYan, Zheng 
1390257bb82SYan, Zheng struct file_extent_cluster {
1400257bb82SYan, Zheng 	u64 start;
1410257bb82SYan, Zheng 	u64 end;
1420257bb82SYan, Zheng 	u64 boundary[MAX_EXTENTS];
1430257bb82SYan, Zheng 	unsigned int nr;
1440257bb82SYan, Zheng };
1450257bb82SYan, Zheng 
1465d4f98a2SYan Zheng struct reloc_control {
1475d4f98a2SYan Zheng 	/* block group to relocate */
1485d4f98a2SYan Zheng 	struct btrfs_block_group_cache *block_group;
1495d4f98a2SYan Zheng 	/* extent tree */
1505d4f98a2SYan Zheng 	struct btrfs_root *extent_root;
1515d4f98a2SYan Zheng 	/* inode for moving data */
1525d4f98a2SYan Zheng 	struct inode *data_inode;
1533fd0a558SYan, Zheng 
1543fd0a558SYan, Zheng 	struct btrfs_block_rsv *block_rsv;
1553fd0a558SYan, Zheng 
1563fd0a558SYan, Zheng 	struct backref_cache backref_cache;
1573fd0a558SYan, Zheng 
1583fd0a558SYan, Zheng 	struct file_extent_cluster cluster;
1595d4f98a2SYan Zheng 	/* tree blocks have been processed */
1605d4f98a2SYan Zheng 	struct extent_io_tree processed_blocks;
1615d4f98a2SYan Zheng 	/* map start of tree root to corresponding reloc tree */
1625d4f98a2SYan Zheng 	struct mapping_tree reloc_root_tree;
1635d4f98a2SYan Zheng 	/* list of reloc trees */
1645d4f98a2SYan Zheng 	struct list_head reloc_roots;
1653fd0a558SYan, Zheng 	/* size of metadata reservation for merging reloc trees */
1663fd0a558SYan, Zheng 	u64 merging_rsv_size;
1673fd0a558SYan, Zheng 	/* size of relocated tree nodes */
1683fd0a558SYan, Zheng 	u64 nodes_relocated;
1690647bf56SWang Shilong 	/* reserved size for block group relocation*/
1700647bf56SWang Shilong 	u64 reserved_bytes;
1713fd0a558SYan, Zheng 
1725d4f98a2SYan Zheng 	u64 search_start;
1735d4f98a2SYan Zheng 	u64 extents_found;
1743fd0a558SYan, Zheng 
1753fd0a558SYan, Zheng 	unsigned int stage:8;
1763fd0a558SYan, Zheng 	unsigned int create_reloc_tree:1;
1773fd0a558SYan, Zheng 	unsigned int merge_reloc_tree:1;
1785d4f98a2SYan Zheng 	unsigned int found_file_extent:1;
1795d4f98a2SYan Zheng };
1805d4f98a2SYan Zheng 
1815d4f98a2SYan Zheng /* stages of data relocation */
1825d4f98a2SYan Zheng #define MOVE_DATA_EXTENTS	0
1835d4f98a2SYan Zheng #define UPDATE_DATA_PTRS	1
1845d4f98a2SYan Zheng 
1853fd0a558SYan, Zheng static void remove_backref_node(struct backref_cache *cache,
1863fd0a558SYan, Zheng 				struct backref_node *node);
1873fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
1883fd0a558SYan, Zheng 				   struct backref_node *node);
1895d4f98a2SYan Zheng 
1905d4f98a2SYan Zheng static void mapping_tree_init(struct mapping_tree *tree)
1915d4f98a2SYan Zheng {
1926bef4d31SEric Paris 	tree->rb_root = RB_ROOT;
1935d4f98a2SYan Zheng 	spin_lock_init(&tree->lock);
1945d4f98a2SYan Zheng }
1955d4f98a2SYan Zheng 
1965d4f98a2SYan Zheng static void backref_cache_init(struct backref_cache *cache)
1975d4f98a2SYan Zheng {
1985d4f98a2SYan Zheng 	int i;
1996bef4d31SEric Paris 	cache->rb_root = RB_ROOT;
2005d4f98a2SYan Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2015d4f98a2SYan Zheng 		INIT_LIST_HEAD(&cache->pending[i]);
2023fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->changed);
2033fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->detached);
2043fd0a558SYan, Zheng 	INIT_LIST_HEAD(&cache->leaves);
2055d4f98a2SYan Zheng }
2065d4f98a2SYan Zheng 
2073fd0a558SYan, Zheng static void backref_cache_cleanup(struct backref_cache *cache)
2085d4f98a2SYan Zheng {
2093fd0a558SYan, Zheng 	struct backref_node *node;
2103fd0a558SYan, Zheng 	int i;
2113fd0a558SYan, Zheng 
2123fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
2133fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
2143fd0a558SYan, Zheng 				  struct backref_node, list);
2153fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2163fd0a558SYan, Zheng 	}
2173fd0a558SYan, Zheng 
2183fd0a558SYan, Zheng 	while (!list_empty(&cache->leaves)) {
2193fd0a558SYan, Zheng 		node = list_entry(cache->leaves.next,
2203fd0a558SYan, Zheng 				  struct backref_node, lower);
2213fd0a558SYan, Zheng 		remove_backref_node(cache, node);
2223fd0a558SYan, Zheng 	}
2233fd0a558SYan, Zheng 
2243fd0a558SYan, Zheng 	cache->last_trans = 0;
2253fd0a558SYan, Zheng 
2263fd0a558SYan, Zheng 	for (i = 0; i < BTRFS_MAX_LEVEL; i++)
227f4907095SLiu Bo 		ASSERT(list_empty(&cache->pending[i]));
228f4907095SLiu Bo 	ASSERT(list_empty(&cache->changed));
229f4907095SLiu Bo 	ASSERT(list_empty(&cache->detached));
230f4907095SLiu Bo 	ASSERT(RB_EMPTY_ROOT(&cache->rb_root));
231f4907095SLiu Bo 	ASSERT(!cache->nr_nodes);
232f4907095SLiu Bo 	ASSERT(!cache->nr_edges);
2333fd0a558SYan, Zheng }
2343fd0a558SYan, Zheng 
2353fd0a558SYan, Zheng static struct backref_node *alloc_backref_node(struct backref_cache *cache)
2363fd0a558SYan, Zheng {
2373fd0a558SYan, Zheng 	struct backref_node *node;
2383fd0a558SYan, Zheng 
2393fd0a558SYan, Zheng 	node = kzalloc(sizeof(*node), GFP_NOFS);
2403fd0a558SYan, Zheng 	if (node) {
2413fd0a558SYan, Zheng 		INIT_LIST_HEAD(&node->list);
2425d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->upper);
2435d4f98a2SYan Zheng 		INIT_LIST_HEAD(&node->lower);
2445d4f98a2SYan Zheng 		RB_CLEAR_NODE(&node->rb_node);
2453fd0a558SYan, Zheng 		cache->nr_nodes++;
2463fd0a558SYan, Zheng 	}
2473fd0a558SYan, Zheng 	return node;
2483fd0a558SYan, Zheng }
2493fd0a558SYan, Zheng 
2503fd0a558SYan, Zheng static void free_backref_node(struct backref_cache *cache,
2513fd0a558SYan, Zheng 			      struct backref_node *node)
2523fd0a558SYan, Zheng {
2533fd0a558SYan, Zheng 	if (node) {
2543fd0a558SYan, Zheng 		cache->nr_nodes--;
2553fd0a558SYan, Zheng 		kfree(node);
2563fd0a558SYan, Zheng 	}
2573fd0a558SYan, Zheng }
2583fd0a558SYan, Zheng 
2593fd0a558SYan, Zheng static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
2603fd0a558SYan, Zheng {
2613fd0a558SYan, Zheng 	struct backref_edge *edge;
2623fd0a558SYan, Zheng 
2633fd0a558SYan, Zheng 	edge = kzalloc(sizeof(*edge), GFP_NOFS);
2643fd0a558SYan, Zheng 	if (edge)
2653fd0a558SYan, Zheng 		cache->nr_edges++;
2663fd0a558SYan, Zheng 	return edge;
2673fd0a558SYan, Zheng }
2683fd0a558SYan, Zheng 
2693fd0a558SYan, Zheng static void free_backref_edge(struct backref_cache *cache,
2703fd0a558SYan, Zheng 			      struct backref_edge *edge)
2713fd0a558SYan, Zheng {
2723fd0a558SYan, Zheng 	if (edge) {
2733fd0a558SYan, Zheng 		cache->nr_edges--;
2743fd0a558SYan, Zheng 		kfree(edge);
2753fd0a558SYan, Zheng 	}
2765d4f98a2SYan Zheng }
2775d4f98a2SYan Zheng 
2785d4f98a2SYan Zheng static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
2795d4f98a2SYan Zheng 				   struct rb_node *node)
2805d4f98a2SYan Zheng {
2815d4f98a2SYan Zheng 	struct rb_node **p = &root->rb_node;
2825d4f98a2SYan Zheng 	struct rb_node *parent = NULL;
2835d4f98a2SYan Zheng 	struct tree_entry *entry;
2845d4f98a2SYan Zheng 
2855d4f98a2SYan Zheng 	while (*p) {
2865d4f98a2SYan Zheng 		parent = *p;
2875d4f98a2SYan Zheng 		entry = rb_entry(parent, struct tree_entry, rb_node);
2885d4f98a2SYan Zheng 
2895d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
2905d4f98a2SYan Zheng 			p = &(*p)->rb_left;
2915d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
2925d4f98a2SYan Zheng 			p = &(*p)->rb_right;
2935d4f98a2SYan Zheng 		else
2945d4f98a2SYan Zheng 			return parent;
2955d4f98a2SYan Zheng 	}
2965d4f98a2SYan Zheng 
2975d4f98a2SYan Zheng 	rb_link_node(node, parent, p);
2985d4f98a2SYan Zheng 	rb_insert_color(node, root);
2995d4f98a2SYan Zheng 	return NULL;
3005d4f98a2SYan Zheng }
3015d4f98a2SYan Zheng 
3025d4f98a2SYan Zheng static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
3035d4f98a2SYan Zheng {
3045d4f98a2SYan Zheng 	struct rb_node *n = root->rb_node;
3055d4f98a2SYan Zheng 	struct tree_entry *entry;
3065d4f98a2SYan Zheng 
3075d4f98a2SYan Zheng 	while (n) {
3085d4f98a2SYan Zheng 		entry = rb_entry(n, struct tree_entry, rb_node);
3095d4f98a2SYan Zheng 
3105d4f98a2SYan Zheng 		if (bytenr < entry->bytenr)
3115d4f98a2SYan Zheng 			n = n->rb_left;
3125d4f98a2SYan Zheng 		else if (bytenr > entry->bytenr)
3135d4f98a2SYan Zheng 			n = n->rb_right;
3145d4f98a2SYan Zheng 		else
3155d4f98a2SYan Zheng 			return n;
3165d4f98a2SYan Zheng 	}
3175d4f98a2SYan Zheng 	return NULL;
3185d4f98a2SYan Zheng }
3195d4f98a2SYan Zheng 
32048a3b636SEric Sandeen static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
32143c04fb1SJeff Mahoney {
32243c04fb1SJeff Mahoney 
32343c04fb1SJeff Mahoney 	struct btrfs_fs_info *fs_info = NULL;
32443c04fb1SJeff Mahoney 	struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
32543c04fb1SJeff Mahoney 					      rb_node);
32643c04fb1SJeff Mahoney 	if (bnode->root)
32743c04fb1SJeff Mahoney 		fs_info = bnode->root->fs_info;
3285d163e0eSJeff Mahoney 	btrfs_panic(fs_info, errno,
3295d163e0eSJeff Mahoney 		    "Inconsistency in backref cache found at offset %llu",
3305d163e0eSJeff Mahoney 		    bytenr);
33143c04fb1SJeff Mahoney }
33243c04fb1SJeff Mahoney 
3335d4f98a2SYan Zheng /*
3345d4f98a2SYan Zheng  * walk up backref nodes until reach node presents tree root
3355d4f98a2SYan Zheng  */
3365d4f98a2SYan Zheng static struct backref_node *walk_up_backref(struct backref_node *node,
3375d4f98a2SYan Zheng 					    struct backref_edge *edges[],
3385d4f98a2SYan Zheng 					    int *index)
3395d4f98a2SYan Zheng {
3405d4f98a2SYan Zheng 	struct backref_edge *edge;
3415d4f98a2SYan Zheng 	int idx = *index;
3425d4f98a2SYan Zheng 
3435d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
3445d4f98a2SYan Zheng 		edge = list_entry(node->upper.next,
3455d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3465d4f98a2SYan Zheng 		edges[idx++] = edge;
3475d4f98a2SYan Zheng 		node = edge->node[UPPER];
3485d4f98a2SYan Zheng 	}
3493fd0a558SYan, Zheng 	BUG_ON(node->detached);
3505d4f98a2SYan Zheng 	*index = idx;
3515d4f98a2SYan Zheng 	return node;
3525d4f98a2SYan Zheng }
3535d4f98a2SYan Zheng 
3545d4f98a2SYan Zheng /*
3555d4f98a2SYan Zheng  * walk down backref nodes to find start of next reference path
3565d4f98a2SYan Zheng  */
3575d4f98a2SYan Zheng static struct backref_node *walk_down_backref(struct backref_edge *edges[],
3585d4f98a2SYan Zheng 					      int *index)
3595d4f98a2SYan Zheng {
3605d4f98a2SYan Zheng 	struct backref_edge *edge;
3615d4f98a2SYan Zheng 	struct backref_node *lower;
3625d4f98a2SYan Zheng 	int idx = *index;
3635d4f98a2SYan Zheng 
3645d4f98a2SYan Zheng 	while (idx > 0) {
3655d4f98a2SYan Zheng 		edge = edges[idx - 1];
3665d4f98a2SYan Zheng 		lower = edge->node[LOWER];
3675d4f98a2SYan Zheng 		if (list_is_last(&edge->list[LOWER], &lower->upper)) {
3685d4f98a2SYan Zheng 			idx--;
3695d4f98a2SYan Zheng 			continue;
3705d4f98a2SYan Zheng 		}
3715d4f98a2SYan Zheng 		edge = list_entry(edge->list[LOWER].next,
3725d4f98a2SYan Zheng 				  struct backref_edge, list[LOWER]);
3735d4f98a2SYan Zheng 		edges[idx - 1] = edge;
3745d4f98a2SYan Zheng 		*index = idx;
3755d4f98a2SYan Zheng 		return edge->node[UPPER];
3765d4f98a2SYan Zheng 	}
3775d4f98a2SYan Zheng 	*index = 0;
3785d4f98a2SYan Zheng 	return NULL;
3795d4f98a2SYan Zheng }
3805d4f98a2SYan Zheng 
3813fd0a558SYan, Zheng static void unlock_node_buffer(struct backref_node *node)
3825d4f98a2SYan Zheng {
3835d4f98a2SYan Zheng 	if (node->locked) {
3845d4f98a2SYan Zheng 		btrfs_tree_unlock(node->eb);
3855d4f98a2SYan Zheng 		node->locked = 0;
3865d4f98a2SYan Zheng 	}
3873fd0a558SYan, Zheng }
3883fd0a558SYan, Zheng 
3893fd0a558SYan, Zheng static void drop_node_buffer(struct backref_node *node)
3903fd0a558SYan, Zheng {
3913fd0a558SYan, Zheng 	if (node->eb) {
3923fd0a558SYan, Zheng 		unlock_node_buffer(node);
3935d4f98a2SYan Zheng 		free_extent_buffer(node->eb);
3945d4f98a2SYan Zheng 		node->eb = NULL;
3955d4f98a2SYan Zheng 	}
3965d4f98a2SYan Zheng }
3975d4f98a2SYan Zheng 
3985d4f98a2SYan Zheng static void drop_backref_node(struct backref_cache *tree,
3995d4f98a2SYan Zheng 			      struct backref_node *node)
4005d4f98a2SYan Zheng {
4015d4f98a2SYan Zheng 	BUG_ON(!list_empty(&node->upper));
4025d4f98a2SYan Zheng 
4035d4f98a2SYan Zheng 	drop_node_buffer(node);
4043fd0a558SYan, Zheng 	list_del(&node->list);
4055d4f98a2SYan Zheng 	list_del(&node->lower);
4063fd0a558SYan, Zheng 	if (!RB_EMPTY_NODE(&node->rb_node))
4075d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &tree->rb_root);
4083fd0a558SYan, Zheng 	free_backref_node(tree, node);
4095d4f98a2SYan Zheng }
4105d4f98a2SYan Zheng 
4115d4f98a2SYan Zheng /*
4125d4f98a2SYan Zheng  * remove a backref node from the backref cache
4135d4f98a2SYan Zheng  */
4145d4f98a2SYan Zheng static void remove_backref_node(struct backref_cache *cache,
4155d4f98a2SYan Zheng 				struct backref_node *node)
4165d4f98a2SYan Zheng {
4175d4f98a2SYan Zheng 	struct backref_node *upper;
4185d4f98a2SYan Zheng 	struct backref_edge *edge;
4195d4f98a2SYan Zheng 
4205d4f98a2SYan Zheng 	if (!node)
4215d4f98a2SYan Zheng 		return;
4225d4f98a2SYan Zheng 
4233fd0a558SYan, Zheng 	BUG_ON(!node->lowest && !node->detached);
4245d4f98a2SYan Zheng 	while (!list_empty(&node->upper)) {
4255d4f98a2SYan Zheng 		edge = list_entry(node->upper.next, struct backref_edge,
4265d4f98a2SYan Zheng 				  list[LOWER]);
4275d4f98a2SYan Zheng 		upper = edge->node[UPPER];
4285d4f98a2SYan Zheng 		list_del(&edge->list[LOWER]);
4295d4f98a2SYan Zheng 		list_del(&edge->list[UPPER]);
4303fd0a558SYan, Zheng 		free_backref_edge(cache, edge);
4313fd0a558SYan, Zheng 
4323fd0a558SYan, Zheng 		if (RB_EMPTY_NODE(&upper->rb_node)) {
4333fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->upper));
4343fd0a558SYan, Zheng 			drop_backref_node(cache, node);
4353fd0a558SYan, Zheng 			node = upper;
4363fd0a558SYan, Zheng 			node->lowest = 1;
4373fd0a558SYan, Zheng 			continue;
4383fd0a558SYan, Zheng 		}
4395d4f98a2SYan Zheng 		/*
4403fd0a558SYan, Zheng 		 * add the node to leaf node list if no other
4415d4f98a2SYan Zheng 		 * child block cached.
4425d4f98a2SYan Zheng 		 */
4435d4f98a2SYan Zheng 		if (list_empty(&upper->lower)) {
4443fd0a558SYan, Zheng 			list_add_tail(&upper->lower, &cache->leaves);
4455d4f98a2SYan Zheng 			upper->lowest = 1;
4465d4f98a2SYan Zheng 		}
4475d4f98a2SYan Zheng 	}
4483fd0a558SYan, Zheng 
4495d4f98a2SYan Zheng 	drop_backref_node(cache, node);
4505d4f98a2SYan Zheng }
4515d4f98a2SYan Zheng 
4523fd0a558SYan, Zheng static void update_backref_node(struct backref_cache *cache,
4533fd0a558SYan, Zheng 				struct backref_node *node, u64 bytenr)
4543fd0a558SYan, Zheng {
4553fd0a558SYan, Zheng 	struct rb_node *rb_node;
4563fd0a558SYan, Zheng 	rb_erase(&node->rb_node, &cache->rb_root);
4573fd0a558SYan, Zheng 	node->bytenr = bytenr;
4583fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
45943c04fb1SJeff Mahoney 	if (rb_node)
46043c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, bytenr);
4613fd0a558SYan, Zheng }
4623fd0a558SYan, Zheng 
4633fd0a558SYan, Zheng /*
4643fd0a558SYan, Zheng  * update backref cache after a transaction commit
4653fd0a558SYan, Zheng  */
4663fd0a558SYan, Zheng static int update_backref_cache(struct btrfs_trans_handle *trans,
4673fd0a558SYan, Zheng 				struct backref_cache *cache)
4683fd0a558SYan, Zheng {
4693fd0a558SYan, Zheng 	struct backref_node *node;
4703fd0a558SYan, Zheng 	int level = 0;
4713fd0a558SYan, Zheng 
4723fd0a558SYan, Zheng 	if (cache->last_trans == 0) {
4733fd0a558SYan, Zheng 		cache->last_trans = trans->transid;
4743fd0a558SYan, Zheng 		return 0;
4753fd0a558SYan, Zheng 	}
4763fd0a558SYan, Zheng 
4773fd0a558SYan, Zheng 	if (cache->last_trans == trans->transid)
4783fd0a558SYan, Zheng 		return 0;
4793fd0a558SYan, Zheng 
4803fd0a558SYan, Zheng 	/*
4813fd0a558SYan, Zheng 	 * detached nodes are used to avoid unnecessary backref
4823fd0a558SYan, Zheng 	 * lookup. transaction commit changes the extent tree.
4833fd0a558SYan, Zheng 	 * so the detached nodes are no longer useful.
4843fd0a558SYan, Zheng 	 */
4853fd0a558SYan, Zheng 	while (!list_empty(&cache->detached)) {
4863fd0a558SYan, Zheng 		node = list_entry(cache->detached.next,
4873fd0a558SYan, Zheng 				  struct backref_node, list);
4883fd0a558SYan, Zheng 		remove_backref_node(cache, node);
4893fd0a558SYan, Zheng 	}
4903fd0a558SYan, Zheng 
4913fd0a558SYan, Zheng 	while (!list_empty(&cache->changed)) {
4923fd0a558SYan, Zheng 		node = list_entry(cache->changed.next,
4933fd0a558SYan, Zheng 				  struct backref_node, list);
4943fd0a558SYan, Zheng 		list_del_init(&node->list);
4953fd0a558SYan, Zheng 		BUG_ON(node->pending);
4963fd0a558SYan, Zheng 		update_backref_node(cache, node, node->new_bytenr);
4973fd0a558SYan, Zheng 	}
4983fd0a558SYan, Zheng 
4993fd0a558SYan, Zheng 	/*
5003fd0a558SYan, Zheng 	 * some nodes can be left in the pending list if there were
5013fd0a558SYan, Zheng 	 * errors during processing the pending nodes.
5023fd0a558SYan, Zheng 	 */
5033fd0a558SYan, Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
5043fd0a558SYan, Zheng 		list_for_each_entry(node, &cache->pending[level], list) {
5053fd0a558SYan, Zheng 			BUG_ON(!node->pending);
5063fd0a558SYan, Zheng 			if (node->bytenr == node->new_bytenr)
5073fd0a558SYan, Zheng 				continue;
5083fd0a558SYan, Zheng 			update_backref_node(cache, node, node->new_bytenr);
5093fd0a558SYan, Zheng 		}
5103fd0a558SYan, Zheng 	}
5113fd0a558SYan, Zheng 
5123fd0a558SYan, Zheng 	cache->last_trans = 0;
5133fd0a558SYan, Zheng 	return 1;
5143fd0a558SYan, Zheng }
5153fd0a558SYan, Zheng 
516f2a97a9dSDavid Sterba 
5173fd0a558SYan, Zheng static int should_ignore_root(struct btrfs_root *root)
5183fd0a558SYan, Zheng {
5193fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
5203fd0a558SYan, Zheng 
52127cdeb70SMiao Xie 	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
5223fd0a558SYan, Zheng 		return 0;
5233fd0a558SYan, Zheng 
5243fd0a558SYan, Zheng 	reloc_root = root->reloc_root;
5253fd0a558SYan, Zheng 	if (!reloc_root)
5263fd0a558SYan, Zheng 		return 0;
5273fd0a558SYan, Zheng 
5283fd0a558SYan, Zheng 	if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
5293fd0a558SYan, Zheng 	    root->fs_info->running_transaction->transid - 1)
5303fd0a558SYan, Zheng 		return 0;
5313fd0a558SYan, Zheng 	/*
5323fd0a558SYan, Zheng 	 * if there is reloc tree and it was created in previous
5333fd0a558SYan, Zheng 	 * transaction backref lookup can find the reloc tree,
5343fd0a558SYan, Zheng 	 * so backref node for the fs tree root is useless for
5353fd0a558SYan, Zheng 	 * relocation.
5363fd0a558SYan, Zheng 	 */
5373fd0a558SYan, Zheng 	return 1;
5383fd0a558SYan, Zheng }
5395d4f98a2SYan Zheng /*
5405d4f98a2SYan Zheng  * find reloc tree by address of tree root
5415d4f98a2SYan Zheng  */
5425d4f98a2SYan Zheng static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
5435d4f98a2SYan Zheng 					  u64 bytenr)
5445d4f98a2SYan Zheng {
5455d4f98a2SYan Zheng 	struct rb_node *rb_node;
5465d4f98a2SYan Zheng 	struct mapping_node *node;
5475d4f98a2SYan Zheng 	struct btrfs_root *root = NULL;
5485d4f98a2SYan Zheng 
5495d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
5505d4f98a2SYan Zheng 	rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
5515d4f98a2SYan Zheng 	if (rb_node) {
5525d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
5535d4f98a2SYan Zheng 		root = (struct btrfs_root *)node->data;
5545d4f98a2SYan Zheng 	}
5555d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
5565d4f98a2SYan Zheng 	return root;
5575d4f98a2SYan Zheng }
5585d4f98a2SYan Zheng 
5595d4f98a2SYan Zheng static int is_cowonly_root(u64 root_objectid)
5605d4f98a2SYan Zheng {
5615d4f98a2SYan Zheng 	if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
5625d4f98a2SYan Zheng 	    root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
5635d4f98a2SYan Zheng 	    root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
5645d4f98a2SYan Zheng 	    root_objectid == BTRFS_DEV_TREE_OBJECTID ||
5655d4f98a2SYan Zheng 	    root_objectid == BTRFS_TREE_LOG_OBJECTID ||
56666463748SWang Shilong 	    root_objectid == BTRFS_CSUM_TREE_OBJECTID ||
56766463748SWang Shilong 	    root_objectid == BTRFS_UUID_TREE_OBJECTID ||
5683e4c5efbSDavid Sterba 	    root_objectid == BTRFS_QUOTA_TREE_OBJECTID ||
5693e4c5efbSDavid Sterba 	    root_objectid == BTRFS_FREE_SPACE_TREE_OBJECTID)
5705d4f98a2SYan Zheng 		return 1;
5715d4f98a2SYan Zheng 	return 0;
5725d4f98a2SYan Zheng }
5735d4f98a2SYan Zheng 
5745d4f98a2SYan Zheng static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
5755d4f98a2SYan Zheng 					u64 root_objectid)
5765d4f98a2SYan Zheng {
5775d4f98a2SYan Zheng 	struct btrfs_key key;
5785d4f98a2SYan Zheng 
5795d4f98a2SYan Zheng 	key.objectid = root_objectid;
5805d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
5815d4f98a2SYan Zheng 	if (is_cowonly_root(root_objectid))
5825d4f98a2SYan Zheng 		key.offset = 0;
5835d4f98a2SYan Zheng 	else
5845d4f98a2SYan Zheng 		key.offset = (u64)-1;
5855d4f98a2SYan Zheng 
586c00869f1SMiao Xie 	return btrfs_get_fs_root(fs_info, &key, false);
5875d4f98a2SYan Zheng }
5885d4f98a2SYan Zheng 
5895d4f98a2SYan Zheng static noinline_for_stack
5905d4f98a2SYan Zheng int find_inline_backref(struct extent_buffer *leaf, int slot,
5915d4f98a2SYan Zheng 			unsigned long *ptr, unsigned long *end)
5925d4f98a2SYan Zheng {
5933173a18fSJosef Bacik 	struct btrfs_key key;
5945d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
5955d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
5965d4f98a2SYan Zheng 	u32 item_size;
5975d4f98a2SYan Zheng 
5983173a18fSJosef Bacik 	btrfs_item_key_to_cpu(leaf, &key, slot);
5993173a18fSJosef Bacik 
6005d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(leaf, slot);
601ba3c2b19SNikolay Borisov 	if (item_size < sizeof(*ei)) {
602ba3c2b19SNikolay Borisov 		btrfs_print_v0_err(leaf->fs_info);
603ba3c2b19SNikolay Borisov 		btrfs_handle_fs_error(leaf->fs_info, -EINVAL, NULL);
604ba3c2b19SNikolay Borisov 		return 1;
605ba3c2b19SNikolay Borisov 	}
6065d4f98a2SYan Zheng 	ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
6075d4f98a2SYan Zheng 	WARN_ON(!(btrfs_extent_flags(leaf, ei) &
6085d4f98a2SYan Zheng 		  BTRFS_EXTENT_FLAG_TREE_BLOCK));
6095d4f98a2SYan Zheng 
6103173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6113173a18fSJosef Bacik 	    item_size <= sizeof(*ei) + sizeof(*bi)) {
6125d4f98a2SYan Zheng 		WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
6135d4f98a2SYan Zheng 		return 1;
6145d4f98a2SYan Zheng 	}
615d062d13cSJosef Bacik 	if (key.type == BTRFS_METADATA_ITEM_KEY &&
616d062d13cSJosef Bacik 	    item_size <= sizeof(*ei)) {
617d062d13cSJosef Bacik 		WARN_ON(item_size < sizeof(*ei));
618d062d13cSJosef Bacik 		return 1;
619d062d13cSJosef Bacik 	}
6205d4f98a2SYan Zheng 
6213173a18fSJosef Bacik 	if (key.type == BTRFS_EXTENT_ITEM_KEY) {
6225d4f98a2SYan Zheng 		bi = (struct btrfs_tree_block_info *)(ei + 1);
6235d4f98a2SYan Zheng 		*ptr = (unsigned long)(bi + 1);
6243173a18fSJosef Bacik 	} else {
6253173a18fSJosef Bacik 		*ptr = (unsigned long)(ei + 1);
6263173a18fSJosef Bacik 	}
6275d4f98a2SYan Zheng 	*end = (unsigned long)ei + item_size;
6285d4f98a2SYan Zheng 	return 0;
6295d4f98a2SYan Zheng }
6305d4f98a2SYan Zheng 
6315d4f98a2SYan Zheng /*
6325d4f98a2SYan Zheng  * build backref tree for a given tree block. root of the backref tree
6335d4f98a2SYan Zheng  * corresponds the tree block, leaves of the backref tree correspond
6345d4f98a2SYan Zheng  * roots of b-trees that reference the tree block.
6355d4f98a2SYan Zheng  *
6365d4f98a2SYan Zheng  * the basic idea of this function is check backrefs of a given block
63701327610SNicholas D Steeves  * to find upper level blocks that reference the block, and then check
63801327610SNicholas D Steeves  * backrefs of these upper level blocks recursively. the recursion stop
6395d4f98a2SYan Zheng  * when tree root is reached or backrefs for the block is cached.
6405d4f98a2SYan Zheng  *
6415d4f98a2SYan Zheng  * NOTE: if we find backrefs for a block are cached, we know backrefs
6425d4f98a2SYan Zheng  * for all upper level blocks that directly/indirectly reference the
6435d4f98a2SYan Zheng  * block are also cached.
6445d4f98a2SYan Zheng  */
6453fd0a558SYan, Zheng static noinline_for_stack
6463fd0a558SYan, Zheng struct backref_node *build_backref_tree(struct reloc_control *rc,
6475d4f98a2SYan Zheng 					struct btrfs_key *node_key,
6485d4f98a2SYan Zheng 					int level, u64 bytenr)
6495d4f98a2SYan Zheng {
6503fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
651fa6ac715SQu Wenruo 	struct btrfs_path *path1; /* For searching extent root */
652fa6ac715SQu Wenruo 	struct btrfs_path *path2; /* For searching parent of TREE_BLOCK_REF */
6535d4f98a2SYan Zheng 	struct extent_buffer *eb;
6545d4f98a2SYan Zheng 	struct btrfs_root *root;
6555d4f98a2SYan Zheng 	struct backref_node *cur;
6565d4f98a2SYan Zheng 	struct backref_node *upper;
6575d4f98a2SYan Zheng 	struct backref_node *lower;
6585d4f98a2SYan Zheng 	struct backref_node *node = NULL;
6595d4f98a2SYan Zheng 	struct backref_node *exist = NULL;
6605d4f98a2SYan Zheng 	struct backref_edge *edge;
6615d4f98a2SYan Zheng 	struct rb_node *rb_node;
6625d4f98a2SYan Zheng 	struct btrfs_key key;
6635d4f98a2SYan Zheng 	unsigned long end;
6645d4f98a2SYan Zheng 	unsigned long ptr;
665fa6ac715SQu Wenruo 	LIST_HEAD(list); /* Pending edge list, upper node needs to be checked */
6663fd0a558SYan, Zheng 	LIST_HEAD(useless);
6673fd0a558SYan, Zheng 	int cowonly;
6685d4f98a2SYan Zheng 	int ret;
6695d4f98a2SYan Zheng 	int err = 0;
670b6c60c80SJosef Bacik 	bool need_check = true;
6715d4f98a2SYan Zheng 
6725d4f98a2SYan Zheng 	path1 = btrfs_alloc_path();
6735d4f98a2SYan Zheng 	path2 = btrfs_alloc_path();
6745d4f98a2SYan Zheng 	if (!path1 || !path2) {
6755d4f98a2SYan Zheng 		err = -ENOMEM;
6765d4f98a2SYan Zheng 		goto out;
6775d4f98a2SYan Zheng 	}
678e4058b54SDavid Sterba 	path1->reada = READA_FORWARD;
679e4058b54SDavid Sterba 	path2->reada = READA_FORWARD;
6805d4f98a2SYan Zheng 
6813fd0a558SYan, Zheng 	node = alloc_backref_node(cache);
6825d4f98a2SYan Zheng 	if (!node) {
6835d4f98a2SYan Zheng 		err = -ENOMEM;
6845d4f98a2SYan Zheng 		goto out;
6855d4f98a2SYan Zheng 	}
6865d4f98a2SYan Zheng 
6875d4f98a2SYan Zheng 	node->bytenr = bytenr;
6885d4f98a2SYan Zheng 	node->level = level;
6895d4f98a2SYan Zheng 	node->lowest = 1;
6905d4f98a2SYan Zheng 	cur = node;
6915d4f98a2SYan Zheng again:
6925d4f98a2SYan Zheng 	end = 0;
6935d4f98a2SYan Zheng 	ptr = 0;
6945d4f98a2SYan Zheng 	key.objectid = cur->bytenr;
6953173a18fSJosef Bacik 	key.type = BTRFS_METADATA_ITEM_KEY;
6965d4f98a2SYan Zheng 	key.offset = (u64)-1;
6975d4f98a2SYan Zheng 
6985d4f98a2SYan Zheng 	path1->search_commit_root = 1;
6995d4f98a2SYan Zheng 	path1->skip_locking = 1;
7005d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
7015d4f98a2SYan Zheng 				0, 0);
7025d4f98a2SYan Zheng 	if (ret < 0) {
7035d4f98a2SYan Zheng 		err = ret;
7045d4f98a2SYan Zheng 		goto out;
7055d4f98a2SYan Zheng 	}
70675bfb9afSJosef Bacik 	ASSERT(ret);
70775bfb9afSJosef Bacik 	ASSERT(path1->slots[0]);
7085d4f98a2SYan Zheng 
7095d4f98a2SYan Zheng 	path1->slots[0]--;
7105d4f98a2SYan Zheng 
7115d4f98a2SYan Zheng 	WARN_ON(cur->checked);
7125d4f98a2SYan Zheng 	if (!list_empty(&cur->upper)) {
7135d4f98a2SYan Zheng 		/*
71470f23fd6SJustin P. Mattock 		 * the backref was added previously when processing
7155d4f98a2SYan Zheng 		 * backref of type BTRFS_TREE_BLOCK_REF_KEY
7165d4f98a2SYan Zheng 		 */
71775bfb9afSJosef Bacik 		ASSERT(list_is_singular(&cur->upper));
7185d4f98a2SYan Zheng 		edge = list_entry(cur->upper.next, struct backref_edge,
7195d4f98a2SYan Zheng 				  list[LOWER]);
72075bfb9afSJosef Bacik 		ASSERT(list_empty(&edge->list[UPPER]));
7215d4f98a2SYan Zheng 		exist = edge->node[UPPER];
7225d4f98a2SYan Zheng 		/*
7235d4f98a2SYan Zheng 		 * add the upper level block to pending list if we need
7245d4f98a2SYan Zheng 		 * check its backrefs
7255d4f98a2SYan Zheng 		 */
7265d4f98a2SYan Zheng 		if (!exist->checked)
7275d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
7285d4f98a2SYan Zheng 	} else {
7295d4f98a2SYan Zheng 		exist = NULL;
7305d4f98a2SYan Zheng 	}
7315d4f98a2SYan Zheng 
7325d4f98a2SYan Zheng 	while (1) {
7335d4f98a2SYan Zheng 		cond_resched();
7345d4f98a2SYan Zheng 		eb = path1->nodes[0];
7355d4f98a2SYan Zheng 
7365d4f98a2SYan Zheng 		if (ptr >= end) {
7375d4f98a2SYan Zheng 			if (path1->slots[0] >= btrfs_header_nritems(eb)) {
7385d4f98a2SYan Zheng 				ret = btrfs_next_leaf(rc->extent_root, path1);
7395d4f98a2SYan Zheng 				if (ret < 0) {
7405d4f98a2SYan Zheng 					err = ret;
7415d4f98a2SYan Zheng 					goto out;
7425d4f98a2SYan Zheng 				}
7435d4f98a2SYan Zheng 				if (ret > 0)
7445d4f98a2SYan Zheng 					break;
7455d4f98a2SYan Zheng 				eb = path1->nodes[0];
7465d4f98a2SYan Zheng 			}
7475d4f98a2SYan Zheng 
7485d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
7495d4f98a2SYan Zheng 			if (key.objectid != cur->bytenr) {
7505d4f98a2SYan Zheng 				WARN_ON(exist);
7515d4f98a2SYan Zheng 				break;
7525d4f98a2SYan Zheng 			}
7535d4f98a2SYan Zheng 
7543173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY ||
7553173a18fSJosef Bacik 			    key.type == BTRFS_METADATA_ITEM_KEY) {
7565d4f98a2SYan Zheng 				ret = find_inline_backref(eb, path1->slots[0],
7575d4f98a2SYan Zheng 							  &ptr, &end);
7585d4f98a2SYan Zheng 				if (ret)
7595d4f98a2SYan Zheng 					goto next;
7605d4f98a2SYan Zheng 			}
7615d4f98a2SYan Zheng 		}
7625d4f98a2SYan Zheng 
7635d4f98a2SYan Zheng 		if (ptr < end) {
7645d4f98a2SYan Zheng 			/* update key for inline back ref */
7655d4f98a2SYan Zheng 			struct btrfs_extent_inline_ref *iref;
7663de28d57SLiu Bo 			int type;
7675d4f98a2SYan Zheng 			iref = (struct btrfs_extent_inline_ref *)ptr;
7683de28d57SLiu Bo 			type = btrfs_get_extent_inline_ref_type(eb, iref,
7693de28d57SLiu Bo 							BTRFS_REF_TYPE_BLOCK);
7703de28d57SLiu Bo 			if (type == BTRFS_REF_TYPE_INVALID) {
771af431dcbSSu Yue 				err = -EUCLEAN;
7723de28d57SLiu Bo 				goto out;
7733de28d57SLiu Bo 			}
7743de28d57SLiu Bo 			key.type = type;
7755d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
7763de28d57SLiu Bo 
7775d4f98a2SYan Zheng 			WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
7785d4f98a2SYan Zheng 				key.type != BTRFS_SHARED_BLOCK_REF_KEY);
7795d4f98a2SYan Zheng 		}
7805d4f98a2SYan Zheng 
781fa6ac715SQu Wenruo 		/*
782fa6ac715SQu Wenruo 		 * Parent node found and matches current inline ref, no need to
783fa6ac715SQu Wenruo 		 * rebuild this node for this inline ref.
784fa6ac715SQu Wenruo 		 */
7855d4f98a2SYan Zheng 		if (exist &&
7865d4f98a2SYan Zheng 		    ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
7875d4f98a2SYan Zheng 		      exist->owner == key.offset) ||
7885d4f98a2SYan Zheng 		     (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
7895d4f98a2SYan Zheng 		      exist->bytenr == key.offset))) {
7905d4f98a2SYan Zheng 			exist = NULL;
7915d4f98a2SYan Zheng 			goto next;
7925d4f98a2SYan Zheng 		}
7935d4f98a2SYan Zheng 
794fa6ac715SQu Wenruo 		/* SHARED_BLOCK_REF means key.offset is the parent bytenr */
7955d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
7965d4f98a2SYan Zheng 			if (key.objectid == key.offset) {
7975d4f98a2SYan Zheng 				/*
798fa6ac715SQu Wenruo 				 * Only root blocks of reloc trees use backref
799fa6ac715SQu Wenruo 				 * pointing to itself.
8005d4f98a2SYan Zheng 				 */
8015d4f98a2SYan Zheng 				root = find_reloc_root(rc, cur->bytenr);
80275bfb9afSJosef Bacik 				ASSERT(root);
8035d4f98a2SYan Zheng 				cur->root = root;
8045d4f98a2SYan Zheng 				break;
8055d4f98a2SYan Zheng 			}
8065d4f98a2SYan Zheng 
8073fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
8085d4f98a2SYan Zheng 			if (!edge) {
8095d4f98a2SYan Zheng 				err = -ENOMEM;
8105d4f98a2SYan Zheng 				goto out;
8115d4f98a2SYan Zheng 			}
8125d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, key.offset);
8135d4f98a2SYan Zheng 			if (!rb_node) {
8143fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
8155d4f98a2SYan Zheng 				if (!upper) {
8163fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
8175d4f98a2SYan Zheng 					err = -ENOMEM;
8185d4f98a2SYan Zheng 					goto out;
8195d4f98a2SYan Zheng 				}
8205d4f98a2SYan Zheng 				upper->bytenr = key.offset;
8215d4f98a2SYan Zheng 				upper->level = cur->level + 1;
8225d4f98a2SYan Zheng 				/*
8235d4f98a2SYan Zheng 				 *  backrefs for the upper level block isn't
8245d4f98a2SYan Zheng 				 *  cached, add the block to pending list
8255d4f98a2SYan Zheng 				 */
8265d4f98a2SYan Zheng 				list_add_tail(&edge->list[UPPER], &list);
8275d4f98a2SYan Zheng 			} else {
8285d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
8295d4f98a2SYan Zheng 						 rb_node);
83075bfb9afSJosef Bacik 				ASSERT(upper->checked);
8315d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
8325d4f98a2SYan Zheng 			}
8333fd0a558SYan, Zheng 			list_add_tail(&edge->list[LOWER], &cur->upper);
8345d4f98a2SYan Zheng 			edge->node[LOWER] = cur;
8353fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
8365d4f98a2SYan Zheng 
8375d4f98a2SYan Zheng 			goto next;
8386d8ff4e4SDavid Sterba 		} else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
839ba3c2b19SNikolay Borisov 			err = -EINVAL;
840ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(rc->extent_root->fs_info);
841ba3c2b19SNikolay Borisov 			btrfs_handle_fs_error(rc->extent_root->fs_info, err,
842ba3c2b19SNikolay Borisov 					      NULL);
843ba3c2b19SNikolay Borisov 			goto out;
8445d4f98a2SYan Zheng 		} else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
8455d4f98a2SYan Zheng 			goto next;
8465d4f98a2SYan Zheng 		}
8475d4f98a2SYan Zheng 
848fa6ac715SQu Wenruo 		/*
849fa6ac715SQu Wenruo 		 * key.type == BTRFS_TREE_BLOCK_REF_KEY, inline ref offset
850fa6ac715SQu Wenruo 		 * means the root objectid. We need to search the tree to get
851fa6ac715SQu Wenruo 		 * its parent bytenr.
852fa6ac715SQu Wenruo 		 */
8535d4f98a2SYan Zheng 		root = read_fs_root(rc->extent_root->fs_info, key.offset);
8545d4f98a2SYan Zheng 		if (IS_ERR(root)) {
8555d4f98a2SYan Zheng 			err = PTR_ERR(root);
8565d4f98a2SYan Zheng 			goto out;
8575d4f98a2SYan Zheng 		}
8585d4f98a2SYan Zheng 
85927cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
8603fd0a558SYan, Zheng 			cur->cowonly = 1;
8613fd0a558SYan, Zheng 
8625d4f98a2SYan Zheng 		if (btrfs_root_level(&root->root_item) == cur->level) {
8635d4f98a2SYan Zheng 			/* tree root */
86475bfb9afSJosef Bacik 			ASSERT(btrfs_root_bytenr(&root->root_item) ==
8655d4f98a2SYan Zheng 			       cur->bytenr);
8663fd0a558SYan, Zheng 			if (should_ignore_root(root))
8673fd0a558SYan, Zheng 				list_add(&cur->list, &useless);
8683fd0a558SYan, Zheng 			else
8695d4f98a2SYan Zheng 				cur->root = root;
8705d4f98a2SYan Zheng 			break;
8715d4f98a2SYan Zheng 		}
8725d4f98a2SYan Zheng 
8735d4f98a2SYan Zheng 		level = cur->level + 1;
8745d4f98a2SYan Zheng 
875fa6ac715SQu Wenruo 		/* Search the tree to find parent blocks referring the block. */
8765d4f98a2SYan Zheng 		path2->search_commit_root = 1;
8775d4f98a2SYan Zheng 		path2->skip_locking = 1;
8785d4f98a2SYan Zheng 		path2->lowest_level = level;
8795d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
8805d4f98a2SYan Zheng 		path2->lowest_level = 0;
8815d4f98a2SYan Zheng 		if (ret < 0) {
8825d4f98a2SYan Zheng 			err = ret;
8835d4f98a2SYan Zheng 			goto out;
8845d4f98a2SYan Zheng 		}
88533c66f43SYan Zheng 		if (ret > 0 && path2->slots[level] > 0)
88633c66f43SYan Zheng 			path2->slots[level]--;
8875d4f98a2SYan Zheng 
8885d4f98a2SYan Zheng 		eb = path2->nodes[level];
8893561b9dbSLiu Bo 		if (btrfs_node_blockptr(eb, path2->slots[level]) !=
8903561b9dbSLiu Bo 		    cur->bytenr) {
8913561b9dbSLiu Bo 			btrfs_err(root->fs_info,
8923561b9dbSLiu Bo 	"couldn't find block (%llu) (level %d) in tree (%llu) with key (%llu %u %llu)",
8934fd786e6SMisono Tomohiro 				  cur->bytenr, level - 1,
8944fd786e6SMisono Tomohiro 				  root->root_key.objectid,
8953561b9dbSLiu Bo 				  node_key->objectid, node_key->type,
8963561b9dbSLiu Bo 				  node_key->offset);
8973561b9dbSLiu Bo 			err = -ENOENT;
8983561b9dbSLiu Bo 			goto out;
8993561b9dbSLiu Bo 		}
9005d4f98a2SYan Zheng 		lower = cur;
901b6c60c80SJosef Bacik 		need_check = true;
902fa6ac715SQu Wenruo 
903fa6ac715SQu Wenruo 		/* Add all nodes and edges in the path */
9045d4f98a2SYan Zheng 		for (; level < BTRFS_MAX_LEVEL; level++) {
9055d4f98a2SYan Zheng 			if (!path2->nodes[level]) {
90675bfb9afSJosef Bacik 				ASSERT(btrfs_root_bytenr(&root->root_item) ==
9075d4f98a2SYan Zheng 				       lower->bytenr);
9083fd0a558SYan, Zheng 				if (should_ignore_root(root))
9093fd0a558SYan, Zheng 					list_add(&lower->list, &useless);
9103fd0a558SYan, Zheng 				else
9115d4f98a2SYan Zheng 					lower->root = root;
9125d4f98a2SYan Zheng 				break;
9135d4f98a2SYan Zheng 			}
9145d4f98a2SYan Zheng 
9153fd0a558SYan, Zheng 			edge = alloc_backref_edge(cache);
9165d4f98a2SYan Zheng 			if (!edge) {
9175d4f98a2SYan Zheng 				err = -ENOMEM;
9185d4f98a2SYan Zheng 				goto out;
9195d4f98a2SYan Zheng 			}
9205d4f98a2SYan Zheng 
9215d4f98a2SYan Zheng 			eb = path2->nodes[level];
9225d4f98a2SYan Zheng 			rb_node = tree_search(&cache->rb_root, eb->start);
9235d4f98a2SYan Zheng 			if (!rb_node) {
9243fd0a558SYan, Zheng 				upper = alloc_backref_node(cache);
9255d4f98a2SYan Zheng 				if (!upper) {
9263fd0a558SYan, Zheng 					free_backref_edge(cache, edge);
9275d4f98a2SYan Zheng 					err = -ENOMEM;
9285d4f98a2SYan Zheng 					goto out;
9295d4f98a2SYan Zheng 				}
9305d4f98a2SYan Zheng 				upper->bytenr = eb->start;
9315d4f98a2SYan Zheng 				upper->owner = btrfs_header_owner(eb);
9325d4f98a2SYan Zheng 				upper->level = lower->level + 1;
93327cdeb70SMiao Xie 				if (!test_bit(BTRFS_ROOT_REF_COWS,
93427cdeb70SMiao Xie 					      &root->state))
9353fd0a558SYan, Zheng 					upper->cowonly = 1;
9365d4f98a2SYan Zheng 
9375d4f98a2SYan Zheng 				/*
9385d4f98a2SYan Zheng 				 * if we know the block isn't shared
9395d4f98a2SYan Zheng 				 * we can void checking its backrefs.
9405d4f98a2SYan Zheng 				 */
9415d4f98a2SYan Zheng 				if (btrfs_block_can_be_shared(root, eb))
9425d4f98a2SYan Zheng 					upper->checked = 0;
9435d4f98a2SYan Zheng 				else
9445d4f98a2SYan Zheng 					upper->checked = 1;
9455d4f98a2SYan Zheng 
9465d4f98a2SYan Zheng 				/*
9475d4f98a2SYan Zheng 				 * add the block to pending list if we
948b6c60c80SJosef Bacik 				 * need check its backrefs, we only do this once
949b6c60c80SJosef Bacik 				 * while walking up a tree as we will catch
950b6c60c80SJosef Bacik 				 * anything else later on.
9515d4f98a2SYan Zheng 				 */
952b6c60c80SJosef Bacik 				if (!upper->checked && need_check) {
953b6c60c80SJosef Bacik 					need_check = false;
9545d4f98a2SYan Zheng 					list_add_tail(&edge->list[UPPER],
9555d4f98a2SYan Zheng 						      &list);
956bbe90514SJosef Bacik 				} else {
957bbe90514SJosef Bacik 					if (upper->checked)
958bbe90514SJosef Bacik 						need_check = true;
9595d4f98a2SYan Zheng 					INIT_LIST_HEAD(&edge->list[UPPER]);
960bbe90514SJosef Bacik 				}
9615d4f98a2SYan Zheng 			} else {
9625d4f98a2SYan Zheng 				upper = rb_entry(rb_node, struct backref_node,
9635d4f98a2SYan Zheng 						 rb_node);
96475bfb9afSJosef Bacik 				ASSERT(upper->checked);
9655d4f98a2SYan Zheng 				INIT_LIST_HEAD(&edge->list[UPPER]);
9663fd0a558SYan, Zheng 				if (!upper->owner)
9673fd0a558SYan, Zheng 					upper->owner = btrfs_header_owner(eb);
9685d4f98a2SYan Zheng 			}
9695d4f98a2SYan Zheng 			list_add_tail(&edge->list[LOWER], &lower->upper);
9705d4f98a2SYan Zheng 			edge->node[LOWER] = lower;
9713fd0a558SYan, Zheng 			edge->node[UPPER] = upper;
9725d4f98a2SYan Zheng 
9735d4f98a2SYan Zheng 			if (rb_node)
9745d4f98a2SYan Zheng 				break;
9755d4f98a2SYan Zheng 			lower = upper;
9765d4f98a2SYan Zheng 			upper = NULL;
9775d4f98a2SYan Zheng 		}
978b3b4aa74SDavid Sterba 		btrfs_release_path(path2);
9795d4f98a2SYan Zheng next:
9805d4f98a2SYan Zheng 		if (ptr < end) {
9815d4f98a2SYan Zheng 			ptr += btrfs_extent_inline_ref_size(key.type);
9825d4f98a2SYan Zheng 			if (ptr >= end) {
9835d4f98a2SYan Zheng 				WARN_ON(ptr > end);
9845d4f98a2SYan Zheng 				ptr = 0;
9855d4f98a2SYan Zheng 				end = 0;
9865d4f98a2SYan Zheng 			}
9875d4f98a2SYan Zheng 		}
9885d4f98a2SYan Zheng 		if (ptr >= end)
9895d4f98a2SYan Zheng 			path1->slots[0]++;
9905d4f98a2SYan Zheng 	}
991b3b4aa74SDavid Sterba 	btrfs_release_path(path1);
9925d4f98a2SYan Zheng 
9935d4f98a2SYan Zheng 	cur->checked = 1;
9945d4f98a2SYan Zheng 	WARN_ON(exist);
9955d4f98a2SYan Zheng 
9965d4f98a2SYan Zheng 	/* the pending list isn't empty, take the first block to process */
9975d4f98a2SYan Zheng 	if (!list_empty(&list)) {
9985d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
9995d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10005d4f98a2SYan Zheng 		cur = edge->node[UPPER];
10015d4f98a2SYan Zheng 		goto again;
10025d4f98a2SYan Zheng 	}
10035d4f98a2SYan Zheng 
10045d4f98a2SYan Zheng 	/*
10055d4f98a2SYan Zheng 	 * everything goes well, connect backref nodes and insert backref nodes
10065d4f98a2SYan Zheng 	 * into the cache.
10075d4f98a2SYan Zheng 	 */
100875bfb9afSJosef Bacik 	ASSERT(node->checked);
10093fd0a558SYan, Zheng 	cowonly = node->cowonly;
10103fd0a558SYan, Zheng 	if (!cowonly) {
10113fd0a558SYan, Zheng 		rb_node = tree_insert(&cache->rb_root, node->bytenr,
10123fd0a558SYan, Zheng 				      &node->rb_node);
101343c04fb1SJeff Mahoney 		if (rb_node)
101443c04fb1SJeff Mahoney 			backref_tree_panic(rb_node, -EEXIST, node->bytenr);
10153fd0a558SYan, Zheng 		list_add_tail(&node->lower, &cache->leaves);
10163fd0a558SYan, Zheng 	}
10175d4f98a2SYan Zheng 
10185d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER])
10195d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &list);
10205d4f98a2SYan Zheng 
10215d4f98a2SYan Zheng 	while (!list_empty(&list)) {
10225d4f98a2SYan Zheng 		edge = list_entry(list.next, struct backref_edge, list[UPPER]);
10235d4f98a2SYan Zheng 		list_del_init(&edge->list[UPPER]);
10245d4f98a2SYan Zheng 		upper = edge->node[UPPER];
10253fd0a558SYan, Zheng 		if (upper->detached) {
10263fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
10273fd0a558SYan, Zheng 			lower = edge->node[LOWER];
10283fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
10293fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
10303fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
10313fd0a558SYan, Zheng 			continue;
10323fd0a558SYan, Zheng 		}
10335d4f98a2SYan Zheng 
10345d4f98a2SYan Zheng 		if (!RB_EMPTY_NODE(&upper->rb_node)) {
10355d4f98a2SYan Zheng 			if (upper->lowest) {
10365d4f98a2SYan Zheng 				list_del_init(&upper->lower);
10375d4f98a2SYan Zheng 				upper->lowest = 0;
10385d4f98a2SYan Zheng 			}
10395d4f98a2SYan Zheng 
10405d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &upper->lower);
10415d4f98a2SYan Zheng 			continue;
10425d4f98a2SYan Zheng 		}
10435d4f98a2SYan Zheng 
104475bfb9afSJosef Bacik 		if (!upper->checked) {
104575bfb9afSJosef Bacik 			/*
104675bfb9afSJosef Bacik 			 * Still want to blow up for developers since this is a
104775bfb9afSJosef Bacik 			 * logic bug.
104875bfb9afSJosef Bacik 			 */
104975bfb9afSJosef Bacik 			ASSERT(0);
105075bfb9afSJosef Bacik 			err = -EINVAL;
105175bfb9afSJosef Bacik 			goto out;
105275bfb9afSJosef Bacik 		}
105375bfb9afSJosef Bacik 		if (cowonly != upper->cowonly) {
105475bfb9afSJosef Bacik 			ASSERT(0);
105575bfb9afSJosef Bacik 			err = -EINVAL;
105675bfb9afSJosef Bacik 			goto out;
105775bfb9afSJosef Bacik 		}
105875bfb9afSJosef Bacik 
10593fd0a558SYan, Zheng 		if (!cowonly) {
10605d4f98a2SYan Zheng 			rb_node = tree_insert(&cache->rb_root, upper->bytenr,
10615d4f98a2SYan Zheng 					      &upper->rb_node);
106243c04fb1SJeff Mahoney 			if (rb_node)
106343c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
106443c04fb1SJeff Mahoney 						   upper->bytenr);
10653fd0a558SYan, Zheng 		}
10665d4f98a2SYan Zheng 
10675d4f98a2SYan Zheng 		list_add_tail(&edge->list[UPPER], &upper->lower);
10685d4f98a2SYan Zheng 
10695d4f98a2SYan Zheng 		list_for_each_entry(edge, &upper->upper, list[LOWER])
10705d4f98a2SYan Zheng 			list_add_tail(&edge->list[UPPER], &list);
10715d4f98a2SYan Zheng 	}
10723fd0a558SYan, Zheng 	/*
10733fd0a558SYan, Zheng 	 * process useless backref nodes. backref nodes for tree leaves
10743fd0a558SYan, Zheng 	 * are deleted from the cache. backref nodes for upper level
10753fd0a558SYan, Zheng 	 * tree blocks are left in the cache to avoid unnecessary backref
10763fd0a558SYan, Zheng 	 * lookup.
10773fd0a558SYan, Zheng 	 */
10783fd0a558SYan, Zheng 	while (!list_empty(&useless)) {
10793fd0a558SYan, Zheng 		upper = list_entry(useless.next, struct backref_node, list);
10803fd0a558SYan, Zheng 		list_del_init(&upper->list);
108175bfb9afSJosef Bacik 		ASSERT(list_empty(&upper->upper));
10823fd0a558SYan, Zheng 		if (upper == node)
10833fd0a558SYan, Zheng 			node = NULL;
10843fd0a558SYan, Zheng 		if (upper->lowest) {
10853fd0a558SYan, Zheng 			list_del_init(&upper->lower);
10863fd0a558SYan, Zheng 			upper->lowest = 0;
10873fd0a558SYan, Zheng 		}
10883fd0a558SYan, Zheng 		while (!list_empty(&upper->lower)) {
10893fd0a558SYan, Zheng 			edge = list_entry(upper->lower.next,
10903fd0a558SYan, Zheng 					  struct backref_edge, list[UPPER]);
10913fd0a558SYan, Zheng 			list_del(&edge->list[UPPER]);
10923fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
10933fd0a558SYan, Zheng 			lower = edge->node[LOWER];
10943fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
10953fd0a558SYan, Zheng 
10963fd0a558SYan, Zheng 			if (list_empty(&lower->upper))
10973fd0a558SYan, Zheng 				list_add(&lower->list, &useless);
10983fd0a558SYan, Zheng 		}
10993fd0a558SYan, Zheng 		__mark_block_processed(rc, upper);
11003fd0a558SYan, Zheng 		if (upper->level > 0) {
11013fd0a558SYan, Zheng 			list_add(&upper->list, &cache->detached);
11023fd0a558SYan, Zheng 			upper->detached = 1;
11033fd0a558SYan, Zheng 		} else {
11043fd0a558SYan, Zheng 			rb_erase(&upper->rb_node, &cache->rb_root);
11053fd0a558SYan, Zheng 			free_backref_node(cache, upper);
11063fd0a558SYan, Zheng 		}
11073fd0a558SYan, Zheng 	}
11085d4f98a2SYan Zheng out:
11095d4f98a2SYan Zheng 	btrfs_free_path(path1);
11105d4f98a2SYan Zheng 	btrfs_free_path(path2);
11115d4f98a2SYan Zheng 	if (err) {
11123fd0a558SYan, Zheng 		while (!list_empty(&useless)) {
11133fd0a558SYan, Zheng 			lower = list_entry(useless.next,
111475bfb9afSJosef Bacik 					   struct backref_node, list);
111575bfb9afSJosef Bacik 			list_del_init(&lower->list);
11163fd0a558SYan, Zheng 		}
111775bfb9afSJosef Bacik 		while (!list_empty(&list)) {
111875bfb9afSJosef Bacik 			edge = list_first_entry(&list, struct backref_edge,
111975bfb9afSJosef Bacik 						list[UPPER]);
112075bfb9afSJosef Bacik 			list_del(&edge->list[UPPER]);
11213fd0a558SYan, Zheng 			list_del(&edge->list[LOWER]);
112275bfb9afSJosef Bacik 			lower = edge->node[LOWER];
11235d4f98a2SYan Zheng 			upper = edge->node[UPPER];
11243fd0a558SYan, Zheng 			free_backref_edge(cache, edge);
112575bfb9afSJosef Bacik 
112675bfb9afSJosef Bacik 			/*
112775bfb9afSJosef Bacik 			 * Lower is no longer linked to any upper backref nodes
112875bfb9afSJosef Bacik 			 * and isn't in the cache, we can free it ourselves.
112975bfb9afSJosef Bacik 			 */
113075bfb9afSJosef Bacik 			if (list_empty(&lower->upper) &&
113175bfb9afSJosef Bacik 			    RB_EMPTY_NODE(&lower->rb_node))
113275bfb9afSJosef Bacik 				list_add(&lower->list, &useless);
113375bfb9afSJosef Bacik 
113475bfb9afSJosef Bacik 			if (!RB_EMPTY_NODE(&upper->rb_node))
113575bfb9afSJosef Bacik 				continue;
113675bfb9afSJosef Bacik 
113701327610SNicholas D Steeves 			/* Add this guy's upper edges to the list to process */
113875bfb9afSJosef Bacik 			list_for_each_entry(edge, &upper->upper, list[LOWER])
113975bfb9afSJosef Bacik 				list_add_tail(&edge->list[UPPER], &list);
114075bfb9afSJosef Bacik 			if (list_empty(&upper->upper))
114175bfb9afSJosef Bacik 				list_add(&upper->list, &useless);
114275bfb9afSJosef Bacik 		}
114375bfb9afSJosef Bacik 
114475bfb9afSJosef Bacik 		while (!list_empty(&useless)) {
114575bfb9afSJosef Bacik 			lower = list_entry(useless.next,
114675bfb9afSJosef Bacik 					   struct backref_node, list);
114775bfb9afSJosef Bacik 			list_del_init(&lower->list);
11480fd8c3daSLiu Bo 			if (lower == node)
11490fd8c3daSLiu Bo 				node = NULL;
115075bfb9afSJosef Bacik 			free_backref_node(cache, lower);
11515d4f98a2SYan Zheng 		}
11520fd8c3daSLiu Bo 
11530fd8c3daSLiu Bo 		free_backref_node(cache, node);
11545d4f98a2SYan Zheng 		return ERR_PTR(err);
11555d4f98a2SYan Zheng 	}
115675bfb9afSJosef Bacik 	ASSERT(!node || !node->detached);
11575d4f98a2SYan Zheng 	return node;
11585d4f98a2SYan Zheng }
11595d4f98a2SYan Zheng 
11605d4f98a2SYan Zheng /*
11613fd0a558SYan, Zheng  * helper to add backref node for the newly created snapshot.
11623fd0a558SYan, Zheng  * the backref node is created by cloning backref node that
11633fd0a558SYan, Zheng  * corresponds to root of source tree
11643fd0a558SYan, Zheng  */
11653fd0a558SYan, Zheng static int clone_backref_node(struct btrfs_trans_handle *trans,
11663fd0a558SYan, Zheng 			      struct reloc_control *rc,
11673fd0a558SYan, Zheng 			      struct btrfs_root *src,
11683fd0a558SYan, Zheng 			      struct btrfs_root *dest)
11693fd0a558SYan, Zheng {
11703fd0a558SYan, Zheng 	struct btrfs_root *reloc_root = src->reloc_root;
11713fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
11723fd0a558SYan, Zheng 	struct backref_node *node = NULL;
11733fd0a558SYan, Zheng 	struct backref_node *new_node;
11743fd0a558SYan, Zheng 	struct backref_edge *edge;
11753fd0a558SYan, Zheng 	struct backref_edge *new_edge;
11763fd0a558SYan, Zheng 	struct rb_node *rb_node;
11773fd0a558SYan, Zheng 
11783fd0a558SYan, Zheng 	if (cache->last_trans > 0)
11793fd0a558SYan, Zheng 		update_backref_cache(trans, cache);
11803fd0a558SYan, Zheng 
11813fd0a558SYan, Zheng 	rb_node = tree_search(&cache->rb_root, src->commit_root->start);
11823fd0a558SYan, Zheng 	if (rb_node) {
11833fd0a558SYan, Zheng 		node = rb_entry(rb_node, struct backref_node, rb_node);
11843fd0a558SYan, Zheng 		if (node->detached)
11853fd0a558SYan, Zheng 			node = NULL;
11863fd0a558SYan, Zheng 		else
11873fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr != reloc_root->node->start);
11883fd0a558SYan, Zheng 	}
11893fd0a558SYan, Zheng 
11903fd0a558SYan, Zheng 	if (!node) {
11913fd0a558SYan, Zheng 		rb_node = tree_search(&cache->rb_root,
11923fd0a558SYan, Zheng 				      reloc_root->commit_root->start);
11933fd0a558SYan, Zheng 		if (rb_node) {
11943fd0a558SYan, Zheng 			node = rb_entry(rb_node, struct backref_node,
11953fd0a558SYan, Zheng 					rb_node);
11963fd0a558SYan, Zheng 			BUG_ON(node->detached);
11973fd0a558SYan, Zheng 		}
11983fd0a558SYan, Zheng 	}
11993fd0a558SYan, Zheng 
12003fd0a558SYan, Zheng 	if (!node)
12013fd0a558SYan, Zheng 		return 0;
12023fd0a558SYan, Zheng 
12033fd0a558SYan, Zheng 	new_node = alloc_backref_node(cache);
12043fd0a558SYan, Zheng 	if (!new_node)
12053fd0a558SYan, Zheng 		return -ENOMEM;
12063fd0a558SYan, Zheng 
12073fd0a558SYan, Zheng 	new_node->bytenr = dest->node->start;
12083fd0a558SYan, Zheng 	new_node->level = node->level;
12093fd0a558SYan, Zheng 	new_node->lowest = node->lowest;
12106848ad64SYan, Zheng 	new_node->checked = 1;
12113fd0a558SYan, Zheng 	new_node->root = dest;
12123fd0a558SYan, Zheng 
12133fd0a558SYan, Zheng 	if (!node->lowest) {
12143fd0a558SYan, Zheng 		list_for_each_entry(edge, &node->lower, list[UPPER]) {
12153fd0a558SYan, Zheng 			new_edge = alloc_backref_edge(cache);
12163fd0a558SYan, Zheng 			if (!new_edge)
12173fd0a558SYan, Zheng 				goto fail;
12183fd0a558SYan, Zheng 
12193fd0a558SYan, Zheng 			new_edge->node[UPPER] = new_node;
12203fd0a558SYan, Zheng 			new_edge->node[LOWER] = edge->node[LOWER];
12213fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[UPPER],
12223fd0a558SYan, Zheng 				      &new_node->lower);
12233fd0a558SYan, Zheng 		}
122476b9e23dSMiao Xie 	} else {
122576b9e23dSMiao Xie 		list_add_tail(&new_node->lower, &cache->leaves);
12263fd0a558SYan, Zheng 	}
12273fd0a558SYan, Zheng 
12283fd0a558SYan, Zheng 	rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
12293fd0a558SYan, Zheng 			      &new_node->rb_node);
123043c04fb1SJeff Mahoney 	if (rb_node)
123143c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
12323fd0a558SYan, Zheng 
12333fd0a558SYan, Zheng 	if (!new_node->lowest) {
12343fd0a558SYan, Zheng 		list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
12353fd0a558SYan, Zheng 			list_add_tail(&new_edge->list[LOWER],
12363fd0a558SYan, Zheng 				      &new_edge->node[LOWER]->upper);
12373fd0a558SYan, Zheng 		}
12383fd0a558SYan, Zheng 	}
12393fd0a558SYan, Zheng 	return 0;
12403fd0a558SYan, Zheng fail:
12413fd0a558SYan, Zheng 	while (!list_empty(&new_node->lower)) {
12423fd0a558SYan, Zheng 		new_edge = list_entry(new_node->lower.next,
12433fd0a558SYan, Zheng 				      struct backref_edge, list[UPPER]);
12443fd0a558SYan, Zheng 		list_del(&new_edge->list[UPPER]);
12453fd0a558SYan, Zheng 		free_backref_edge(cache, new_edge);
12463fd0a558SYan, Zheng 	}
12473fd0a558SYan, Zheng 	free_backref_node(cache, new_node);
12483fd0a558SYan, Zheng 	return -ENOMEM;
12493fd0a558SYan, Zheng }
12503fd0a558SYan, Zheng 
12513fd0a558SYan, Zheng /*
12525d4f98a2SYan Zheng  * helper to add 'address of tree root -> reloc tree' mapping
12535d4f98a2SYan Zheng  */
1254ffd7b339SJeff Mahoney static int __must_check __add_reloc_root(struct btrfs_root *root)
12555d4f98a2SYan Zheng {
12560b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12575d4f98a2SYan Zheng 	struct rb_node *rb_node;
12585d4f98a2SYan Zheng 	struct mapping_node *node;
12590b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
12605d4f98a2SYan Zheng 
12615d4f98a2SYan Zheng 	node = kmalloc(sizeof(*node), GFP_NOFS);
1262ffd7b339SJeff Mahoney 	if (!node)
1263ffd7b339SJeff Mahoney 		return -ENOMEM;
12645d4f98a2SYan Zheng 
12655d4f98a2SYan Zheng 	node->bytenr = root->node->start;
12665d4f98a2SYan Zheng 	node->data = root;
12675d4f98a2SYan Zheng 
12685d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
12695d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
12705d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
12715d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
1272ffd7b339SJeff Mahoney 	if (rb_node) {
12730b246afaSJeff Mahoney 		btrfs_panic(fs_info, -EEXIST,
12745d163e0eSJeff Mahoney 			    "Duplicate root found for start=%llu while inserting into relocation tree",
12755d163e0eSJeff Mahoney 			    node->bytenr);
1276ffd7b339SJeff Mahoney 	}
12775d4f98a2SYan Zheng 
12785d4f98a2SYan Zheng 	list_add_tail(&root->root_list, &rc->reloc_roots);
12795d4f98a2SYan Zheng 	return 0;
12805d4f98a2SYan Zheng }
12815d4f98a2SYan Zheng 
12825d4f98a2SYan Zheng /*
1283c974c464SWang Shilong  * helper to delete the 'address of tree root -> reloc tree'
12845d4f98a2SYan Zheng  * mapping
12855d4f98a2SYan Zheng  */
1286c974c464SWang Shilong static void __del_reloc_root(struct btrfs_root *root)
12875d4f98a2SYan Zheng {
12880b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12895d4f98a2SYan Zheng 	struct rb_node *rb_node;
12905d4f98a2SYan Zheng 	struct mapping_node *node = NULL;
12910b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
12925d4f98a2SYan Zheng 
129365c6e82bSQu Wenruo 	if (rc && root->node) {
12945d4f98a2SYan Zheng 		spin_lock(&rc->reloc_root_tree.lock);
12955d4f98a2SYan Zheng 		rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1296c974c464SWang Shilong 				      root->node->start);
1297c974c464SWang Shilong 		if (rb_node) {
1298c974c464SWang Shilong 			node = rb_entry(rb_node, struct mapping_node, rb_node);
1299c974c464SWang Shilong 			rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1300c974c464SWang Shilong 		}
1301c974c464SWang Shilong 		spin_unlock(&rc->reloc_root_tree.lock);
1302c974c464SWang Shilong 		if (!node)
1303c974c464SWang Shilong 			return;
1304c974c464SWang Shilong 		BUG_ON((struct btrfs_root *)node->data != root);
1305389305b2SQu Wenruo 	}
1306c974c464SWang Shilong 
13070b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1308c974c464SWang Shilong 	list_del_init(&root->root_list);
13090b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
1310c974c464SWang Shilong 	kfree(node);
1311c974c464SWang Shilong }
1312c974c464SWang Shilong 
1313c974c464SWang Shilong /*
1314c974c464SWang Shilong  * helper to update the 'address of tree root -> reloc tree'
1315c974c464SWang Shilong  * mapping
1316c974c464SWang Shilong  */
1317c974c464SWang Shilong static int __update_reloc_root(struct btrfs_root *root, u64 new_bytenr)
1318c974c464SWang Shilong {
13190b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
1320c974c464SWang Shilong 	struct rb_node *rb_node;
1321c974c464SWang Shilong 	struct mapping_node *node = NULL;
13220b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
1323c974c464SWang Shilong 
1324c974c464SWang Shilong 	spin_lock(&rc->reloc_root_tree.lock);
1325c974c464SWang Shilong 	rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1326c974c464SWang Shilong 			      root->node->start);
13275d4f98a2SYan Zheng 	if (rb_node) {
13285d4f98a2SYan Zheng 		node = rb_entry(rb_node, struct mapping_node, rb_node);
13295d4f98a2SYan Zheng 		rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
13305d4f98a2SYan Zheng 	}
13315d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
13325d4f98a2SYan Zheng 
13338f71f3e0SLiu Bo 	if (!node)
13348f71f3e0SLiu Bo 		return 0;
13355d4f98a2SYan Zheng 	BUG_ON((struct btrfs_root *)node->data != root);
13365d4f98a2SYan Zheng 
13375d4f98a2SYan Zheng 	spin_lock(&rc->reloc_root_tree.lock);
1338c974c464SWang Shilong 	node->bytenr = new_bytenr;
13395d4f98a2SYan Zheng 	rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
13405d4f98a2SYan Zheng 			      node->bytenr, &node->rb_node);
13415d4f98a2SYan Zheng 	spin_unlock(&rc->reloc_root_tree.lock);
134243c04fb1SJeff Mahoney 	if (rb_node)
134343c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, node->bytenr);
13445d4f98a2SYan Zheng 	return 0;
13455d4f98a2SYan Zheng }
13465d4f98a2SYan Zheng 
13473fd0a558SYan, Zheng static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
13483fd0a558SYan, Zheng 					struct btrfs_root *root, u64 objectid)
13495d4f98a2SYan Zheng {
13500b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13515d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
13525d4f98a2SYan Zheng 	struct extent_buffer *eb;
13535d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
13545d4f98a2SYan Zheng 	struct btrfs_key root_key;
13555d4f98a2SYan Zheng 	int ret;
13565d4f98a2SYan Zheng 
13575d4f98a2SYan Zheng 	root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
13585d4f98a2SYan Zheng 	BUG_ON(!root_item);
13595d4f98a2SYan Zheng 
13605d4f98a2SYan Zheng 	root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
13615d4f98a2SYan Zheng 	root_key.type = BTRFS_ROOT_ITEM_KEY;
13623fd0a558SYan, Zheng 	root_key.offset = objectid;
13635d4f98a2SYan Zheng 
13643fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
1365054570a1SFilipe Manana 		u64 commit_root_gen;
1366054570a1SFilipe Manana 
13673fd0a558SYan, Zheng 		/* called by btrfs_init_reloc_root */
13685d4f98a2SYan Zheng 		ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
13695d4f98a2SYan Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
13705d4f98a2SYan Zheng 		BUG_ON(ret);
1371054570a1SFilipe Manana 		/*
1372054570a1SFilipe Manana 		 * Set the last_snapshot field to the generation of the commit
1373054570a1SFilipe Manana 		 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
1374054570a1SFilipe Manana 		 * correctly (returns true) when the relocation root is created
1375054570a1SFilipe Manana 		 * either inside the critical section of a transaction commit
1376054570a1SFilipe Manana 		 * (through transaction.c:qgroup_account_snapshot()) and when
1377054570a1SFilipe Manana 		 * it's created before the transaction commit is started.
1378054570a1SFilipe Manana 		 */
1379054570a1SFilipe Manana 		commit_root_gen = btrfs_header_generation(root->commit_root);
1380054570a1SFilipe Manana 		btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
13813fd0a558SYan, Zheng 	} else {
13823fd0a558SYan, Zheng 		/*
13833fd0a558SYan, Zheng 		 * called by btrfs_reloc_post_snapshot_hook.
13843fd0a558SYan, Zheng 		 * the source tree is a reloc tree, all tree blocks
13853fd0a558SYan, Zheng 		 * modified after it was created have RELOC flag
13863fd0a558SYan, Zheng 		 * set in their headers. so it's OK to not update
13873fd0a558SYan, Zheng 		 * the 'last_snapshot'.
13883fd0a558SYan, Zheng 		 */
13893fd0a558SYan, Zheng 		ret = btrfs_copy_root(trans, root, root->node, &eb,
13903fd0a558SYan, Zheng 				      BTRFS_TREE_RELOC_OBJECTID);
13913fd0a558SYan, Zheng 		BUG_ON(ret);
13923fd0a558SYan, Zheng 	}
13933fd0a558SYan, Zheng 
13945d4f98a2SYan Zheng 	memcpy(root_item, &root->root_item, sizeof(*root_item));
13955d4f98a2SYan Zheng 	btrfs_set_root_bytenr(root_item, eb->start);
13965d4f98a2SYan Zheng 	btrfs_set_root_level(root_item, btrfs_header_level(eb));
13975d4f98a2SYan Zheng 	btrfs_set_root_generation(root_item, trans->transid);
13983fd0a558SYan, Zheng 
13993fd0a558SYan, Zheng 	if (root->root_key.objectid == objectid) {
14003fd0a558SYan, Zheng 		btrfs_set_root_refs(root_item, 0);
14013fd0a558SYan, Zheng 		memset(&root_item->drop_progress, 0,
14023fd0a558SYan, Zheng 		       sizeof(struct btrfs_disk_key));
14035d4f98a2SYan Zheng 		root_item->drop_level = 0;
14043fd0a558SYan, Zheng 	}
14055d4f98a2SYan Zheng 
14065d4f98a2SYan Zheng 	btrfs_tree_unlock(eb);
14075d4f98a2SYan Zheng 	free_extent_buffer(eb);
14085d4f98a2SYan Zheng 
14090b246afaSJeff Mahoney 	ret = btrfs_insert_root(trans, fs_info->tree_root,
14105d4f98a2SYan Zheng 				&root_key, root_item);
14115d4f98a2SYan Zheng 	BUG_ON(ret);
14125d4f98a2SYan Zheng 	kfree(root_item);
14135d4f98a2SYan Zheng 
14140b246afaSJeff Mahoney 	reloc_root = btrfs_read_fs_root(fs_info->tree_root, &root_key);
14155d4f98a2SYan Zheng 	BUG_ON(IS_ERR(reloc_root));
14165d4f98a2SYan Zheng 	reloc_root->last_trans = trans->transid;
14173fd0a558SYan, Zheng 	return reloc_root;
14183fd0a558SYan, Zheng }
14193fd0a558SYan, Zheng 
14203fd0a558SYan, Zheng /*
14213fd0a558SYan, Zheng  * create reloc tree for a given fs tree. reloc tree is just a
14223fd0a558SYan, Zheng  * snapshot of the fs tree with special root objectid.
14233fd0a558SYan, Zheng  */
14243fd0a558SYan, Zheng int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
14253fd0a558SYan, Zheng 			  struct btrfs_root *root)
14263fd0a558SYan, Zheng {
14270b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
14283fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
14290b246afaSJeff Mahoney 	struct reloc_control *rc = fs_info->reloc_ctl;
143020dd2cbfSMiao Xie 	struct btrfs_block_rsv *rsv;
14313fd0a558SYan, Zheng 	int clear_rsv = 0;
1432ffd7b339SJeff Mahoney 	int ret;
14333fd0a558SYan, Zheng 
14343fd0a558SYan, Zheng 	if (root->reloc_root) {
14353fd0a558SYan, Zheng 		reloc_root = root->reloc_root;
14363fd0a558SYan, Zheng 		reloc_root->last_trans = trans->transid;
14373fd0a558SYan, Zheng 		return 0;
14383fd0a558SYan, Zheng 	}
14393fd0a558SYan, Zheng 
14403fd0a558SYan, Zheng 	if (!rc || !rc->create_reloc_tree ||
14413fd0a558SYan, Zheng 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
14423fd0a558SYan, Zheng 		return 0;
14433fd0a558SYan, Zheng 
144420dd2cbfSMiao Xie 	if (!trans->reloc_reserved) {
144520dd2cbfSMiao Xie 		rsv = trans->block_rsv;
14463fd0a558SYan, Zheng 		trans->block_rsv = rc->block_rsv;
14473fd0a558SYan, Zheng 		clear_rsv = 1;
14483fd0a558SYan, Zheng 	}
14493fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
14503fd0a558SYan, Zheng 	if (clear_rsv)
145120dd2cbfSMiao Xie 		trans->block_rsv = rsv;
14525d4f98a2SYan Zheng 
1453ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
1454ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
14555d4f98a2SYan Zheng 	root->reloc_root = reloc_root;
14565d4f98a2SYan Zheng 	return 0;
14575d4f98a2SYan Zheng }
14585d4f98a2SYan Zheng 
14595d4f98a2SYan Zheng /*
14605d4f98a2SYan Zheng  * update root item of reloc tree
14615d4f98a2SYan Zheng  */
14625d4f98a2SYan Zheng int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
14635d4f98a2SYan Zheng 			    struct btrfs_root *root)
14645d4f98a2SYan Zheng {
14650b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
14665d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
14675d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
14685d4f98a2SYan Zheng 	int ret;
14695d4f98a2SYan Zheng 
14705d4f98a2SYan Zheng 	if (!root->reloc_root)
14717585717fSChris Mason 		goto out;
14725d4f98a2SYan Zheng 
14735d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
14745d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
14755d4f98a2SYan Zheng 
14760b246afaSJeff Mahoney 	if (fs_info->reloc_ctl->merge_reloc_tree &&
14773fd0a558SYan, Zheng 	    btrfs_root_refs(root_item) == 0) {
14785d4f98a2SYan Zheng 		root->reloc_root = NULL;
1479c974c464SWang Shilong 		__del_reloc_root(reloc_root);
14805d4f98a2SYan Zheng 	}
14815d4f98a2SYan Zheng 
14825d4f98a2SYan Zheng 	if (reloc_root->commit_root != reloc_root->node) {
14835d4f98a2SYan Zheng 		btrfs_set_root_node(root_item, reloc_root->node);
14845d4f98a2SYan Zheng 		free_extent_buffer(reloc_root->commit_root);
14855d4f98a2SYan Zheng 		reloc_root->commit_root = btrfs_root_node(reloc_root);
14865d4f98a2SYan Zheng 	}
14875d4f98a2SYan Zheng 
14880b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
14895d4f98a2SYan Zheng 				&reloc_root->root_key, root_item);
14905d4f98a2SYan Zheng 	BUG_ON(ret);
14917585717fSChris Mason 
14927585717fSChris Mason out:
14935d4f98a2SYan Zheng 	return 0;
14945d4f98a2SYan Zheng }
14955d4f98a2SYan Zheng 
14965d4f98a2SYan Zheng /*
14975d4f98a2SYan Zheng  * helper to find first cached inode with inode number >= objectid
14985d4f98a2SYan Zheng  * in a subvolume
14995d4f98a2SYan Zheng  */
15005d4f98a2SYan Zheng static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
15015d4f98a2SYan Zheng {
15025d4f98a2SYan Zheng 	struct rb_node *node;
15035d4f98a2SYan Zheng 	struct rb_node *prev;
15045d4f98a2SYan Zheng 	struct btrfs_inode *entry;
15055d4f98a2SYan Zheng 	struct inode *inode;
15065d4f98a2SYan Zheng 
15075d4f98a2SYan Zheng 	spin_lock(&root->inode_lock);
15085d4f98a2SYan Zheng again:
15095d4f98a2SYan Zheng 	node = root->inode_tree.rb_node;
15105d4f98a2SYan Zheng 	prev = NULL;
15115d4f98a2SYan Zheng 	while (node) {
15125d4f98a2SYan Zheng 		prev = node;
15135d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
15145d4f98a2SYan Zheng 
15154a0cc7caSNikolay Borisov 		if (objectid < btrfs_ino(entry))
15165d4f98a2SYan Zheng 			node = node->rb_left;
15174a0cc7caSNikolay Borisov 		else if (objectid > btrfs_ino(entry))
15185d4f98a2SYan Zheng 			node = node->rb_right;
15195d4f98a2SYan Zheng 		else
15205d4f98a2SYan Zheng 			break;
15215d4f98a2SYan Zheng 	}
15225d4f98a2SYan Zheng 	if (!node) {
15235d4f98a2SYan Zheng 		while (prev) {
15245d4f98a2SYan Zheng 			entry = rb_entry(prev, struct btrfs_inode, rb_node);
15254a0cc7caSNikolay Borisov 			if (objectid <= btrfs_ino(entry)) {
15265d4f98a2SYan Zheng 				node = prev;
15275d4f98a2SYan Zheng 				break;
15285d4f98a2SYan Zheng 			}
15295d4f98a2SYan Zheng 			prev = rb_next(prev);
15305d4f98a2SYan Zheng 		}
15315d4f98a2SYan Zheng 	}
15325d4f98a2SYan Zheng 	while (node) {
15335d4f98a2SYan Zheng 		entry = rb_entry(node, struct btrfs_inode, rb_node);
15345d4f98a2SYan Zheng 		inode = igrab(&entry->vfs_inode);
15355d4f98a2SYan Zheng 		if (inode) {
15365d4f98a2SYan Zheng 			spin_unlock(&root->inode_lock);
15375d4f98a2SYan Zheng 			return inode;
15385d4f98a2SYan Zheng 		}
15395d4f98a2SYan Zheng 
15404a0cc7caSNikolay Borisov 		objectid = btrfs_ino(entry) + 1;
15415d4f98a2SYan Zheng 		if (cond_resched_lock(&root->inode_lock))
15425d4f98a2SYan Zheng 			goto again;
15435d4f98a2SYan Zheng 
15445d4f98a2SYan Zheng 		node = rb_next(node);
15455d4f98a2SYan Zheng 	}
15465d4f98a2SYan Zheng 	spin_unlock(&root->inode_lock);
15475d4f98a2SYan Zheng 	return NULL;
15485d4f98a2SYan Zheng }
15495d4f98a2SYan Zheng 
15505d4f98a2SYan Zheng static int in_block_group(u64 bytenr,
15515d4f98a2SYan Zheng 			  struct btrfs_block_group_cache *block_group)
15525d4f98a2SYan Zheng {
15535d4f98a2SYan Zheng 	if (bytenr >= block_group->key.objectid &&
15545d4f98a2SYan Zheng 	    bytenr < block_group->key.objectid + block_group->key.offset)
15555d4f98a2SYan Zheng 		return 1;
15565d4f98a2SYan Zheng 	return 0;
15575d4f98a2SYan Zheng }
15585d4f98a2SYan Zheng 
15595d4f98a2SYan Zheng /*
15605d4f98a2SYan Zheng  * get new location of data
15615d4f98a2SYan Zheng  */
15625d4f98a2SYan Zheng static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
15635d4f98a2SYan Zheng 			    u64 bytenr, u64 num_bytes)
15645d4f98a2SYan Zheng {
15655d4f98a2SYan Zheng 	struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
15665d4f98a2SYan Zheng 	struct btrfs_path *path;
15675d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
15685d4f98a2SYan Zheng 	struct extent_buffer *leaf;
15695d4f98a2SYan Zheng 	int ret;
15705d4f98a2SYan Zheng 
15715d4f98a2SYan Zheng 	path = btrfs_alloc_path();
15725d4f98a2SYan Zheng 	if (!path)
15735d4f98a2SYan Zheng 		return -ENOMEM;
15745d4f98a2SYan Zheng 
15755d4f98a2SYan Zheng 	bytenr -= BTRFS_I(reloc_inode)->index_cnt;
1576f85b7379SDavid Sterba 	ret = btrfs_lookup_file_extent(NULL, root, path,
1577f85b7379SDavid Sterba 			btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
15785d4f98a2SYan Zheng 	if (ret < 0)
15795d4f98a2SYan Zheng 		goto out;
15805d4f98a2SYan Zheng 	if (ret > 0) {
15815d4f98a2SYan Zheng 		ret = -ENOENT;
15825d4f98a2SYan Zheng 		goto out;
15835d4f98a2SYan Zheng 	}
15845d4f98a2SYan Zheng 
15855d4f98a2SYan Zheng 	leaf = path->nodes[0];
15865d4f98a2SYan Zheng 	fi = btrfs_item_ptr(leaf, path->slots[0],
15875d4f98a2SYan Zheng 			    struct btrfs_file_extent_item);
15885d4f98a2SYan Zheng 
15895d4f98a2SYan Zheng 	BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
15905d4f98a2SYan Zheng 	       btrfs_file_extent_compression(leaf, fi) ||
15915d4f98a2SYan Zheng 	       btrfs_file_extent_encryption(leaf, fi) ||
15925d4f98a2SYan Zheng 	       btrfs_file_extent_other_encoding(leaf, fi));
15935d4f98a2SYan Zheng 
15945d4f98a2SYan Zheng 	if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
159583d4cfd4SJosef Bacik 		ret = -EINVAL;
15965d4f98a2SYan Zheng 		goto out;
15975d4f98a2SYan Zheng 	}
15985d4f98a2SYan Zheng 
15995d4f98a2SYan Zheng 	*new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
16005d4f98a2SYan Zheng 	ret = 0;
16015d4f98a2SYan Zheng out:
16025d4f98a2SYan Zheng 	btrfs_free_path(path);
16035d4f98a2SYan Zheng 	return ret;
16045d4f98a2SYan Zheng }
16055d4f98a2SYan Zheng 
16065d4f98a2SYan Zheng /*
16075d4f98a2SYan Zheng  * update file extent items in the tree leaf to point to
16085d4f98a2SYan Zheng  * the new locations.
16095d4f98a2SYan Zheng  */
16103fd0a558SYan, Zheng static noinline_for_stack
16113fd0a558SYan, Zheng int replace_file_extents(struct btrfs_trans_handle *trans,
16125d4f98a2SYan Zheng 			 struct reloc_control *rc,
16135d4f98a2SYan Zheng 			 struct btrfs_root *root,
16143fd0a558SYan, Zheng 			 struct extent_buffer *leaf)
16155d4f98a2SYan Zheng {
16160b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
16175d4f98a2SYan Zheng 	struct btrfs_key key;
16185d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
16195d4f98a2SYan Zheng 	struct inode *inode = NULL;
16205d4f98a2SYan Zheng 	u64 parent;
16215d4f98a2SYan Zheng 	u64 bytenr;
16223fd0a558SYan, Zheng 	u64 new_bytenr = 0;
16235d4f98a2SYan Zheng 	u64 num_bytes;
16245d4f98a2SYan Zheng 	u64 end;
16255d4f98a2SYan Zheng 	u32 nritems;
16265d4f98a2SYan Zheng 	u32 i;
162783d4cfd4SJosef Bacik 	int ret = 0;
16285d4f98a2SYan Zheng 	int first = 1;
16295d4f98a2SYan Zheng 	int dirty = 0;
16305d4f98a2SYan Zheng 
16315d4f98a2SYan Zheng 	if (rc->stage != UPDATE_DATA_PTRS)
16325d4f98a2SYan Zheng 		return 0;
16335d4f98a2SYan Zheng 
16345d4f98a2SYan Zheng 	/* reloc trees always use full backref */
16355d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
16365d4f98a2SYan Zheng 		parent = leaf->start;
16375d4f98a2SYan Zheng 	else
16385d4f98a2SYan Zheng 		parent = 0;
16395d4f98a2SYan Zheng 
16405d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
16415d4f98a2SYan Zheng 	for (i = 0; i < nritems; i++) {
16425d4f98a2SYan Zheng 		cond_resched();
16435d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, i);
16445d4f98a2SYan Zheng 		if (key.type != BTRFS_EXTENT_DATA_KEY)
16455d4f98a2SYan Zheng 			continue;
16465d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
16475d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
16485d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
16495d4f98a2SYan Zheng 			continue;
16505d4f98a2SYan Zheng 		bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
16515d4f98a2SYan Zheng 		num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
16525d4f98a2SYan Zheng 		if (bytenr == 0)
16535d4f98a2SYan Zheng 			continue;
16545d4f98a2SYan Zheng 		if (!in_block_group(bytenr, rc->block_group))
16555d4f98a2SYan Zheng 			continue;
16565d4f98a2SYan Zheng 
16575d4f98a2SYan Zheng 		/*
16585d4f98a2SYan Zheng 		 * if we are modifying block in fs tree, wait for readpage
16595d4f98a2SYan Zheng 		 * to complete and drop the extent cache
16605d4f98a2SYan Zheng 		 */
16615d4f98a2SYan Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
16625d4f98a2SYan Zheng 			if (first) {
16635d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
16645d4f98a2SYan Zheng 				first = 0;
16654a0cc7caSNikolay Borisov 			} else if (inode && btrfs_ino(BTRFS_I(inode)) < key.objectid) {
16663fd0a558SYan, Zheng 				btrfs_add_delayed_iput(inode);
16675d4f98a2SYan Zheng 				inode = find_next_inode(root, key.objectid);
16685d4f98a2SYan Zheng 			}
16694a0cc7caSNikolay Borisov 			if (inode && btrfs_ino(BTRFS_I(inode)) == key.objectid) {
16705d4f98a2SYan Zheng 				end = key.offset +
16715d4f98a2SYan Zheng 				      btrfs_file_extent_num_bytes(leaf, fi);
16725d4f98a2SYan Zheng 				WARN_ON(!IS_ALIGNED(key.offset,
16730b246afaSJeff Mahoney 						    fs_info->sectorsize));
16740b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
16755d4f98a2SYan Zheng 				end--;
16765d4f98a2SYan Zheng 				ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
1677d0082371SJeff Mahoney 						      key.offset, end);
16785d4f98a2SYan Zheng 				if (!ret)
16795d4f98a2SYan Zheng 					continue;
16805d4f98a2SYan Zheng 
1681dcdbc059SNikolay Borisov 				btrfs_drop_extent_cache(BTRFS_I(inode),
1682dcdbc059SNikolay Borisov 						key.offset,	end, 1);
16835d4f98a2SYan Zheng 				unlock_extent(&BTRFS_I(inode)->io_tree,
1684d0082371SJeff Mahoney 					      key.offset, end);
16855d4f98a2SYan Zheng 			}
16865d4f98a2SYan Zheng 		}
16875d4f98a2SYan Zheng 
16885d4f98a2SYan Zheng 		ret = get_new_location(rc->data_inode, &new_bytenr,
16895d4f98a2SYan Zheng 				       bytenr, num_bytes);
169083d4cfd4SJosef Bacik 		if (ret) {
169183d4cfd4SJosef Bacik 			/*
169283d4cfd4SJosef Bacik 			 * Don't have to abort since we've not changed anything
169383d4cfd4SJosef Bacik 			 * in the file extent yet.
169483d4cfd4SJosef Bacik 			 */
169583d4cfd4SJosef Bacik 			break;
16963fd0a558SYan, Zheng 		}
16975d4f98a2SYan Zheng 
16985d4f98a2SYan Zheng 		btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
16995d4f98a2SYan Zheng 		dirty = 1;
17005d4f98a2SYan Zheng 
17015d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
170284f7d8e6SJosef Bacik 		ret = btrfs_inc_extent_ref(trans, root, new_bytenr,
17035d4f98a2SYan Zheng 					   num_bytes, parent,
17045d4f98a2SYan Zheng 					   btrfs_header_owner(leaf),
1705b06c4bf5SFilipe Manana 					   key.objectid, key.offset);
170683d4cfd4SJosef Bacik 		if (ret) {
170766642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
170883d4cfd4SJosef Bacik 			break;
170983d4cfd4SJosef Bacik 		}
17105d4f98a2SYan Zheng 
171184f7d8e6SJosef Bacik 		ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
17125d4f98a2SYan Zheng 					parent, btrfs_header_owner(leaf),
1713b06c4bf5SFilipe Manana 					key.objectid, key.offset);
171483d4cfd4SJosef Bacik 		if (ret) {
171566642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
171683d4cfd4SJosef Bacik 			break;
171783d4cfd4SJosef Bacik 		}
17185d4f98a2SYan Zheng 	}
17195d4f98a2SYan Zheng 	if (dirty)
17205d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(leaf);
17213fd0a558SYan, Zheng 	if (inode)
17223fd0a558SYan, Zheng 		btrfs_add_delayed_iput(inode);
172383d4cfd4SJosef Bacik 	return ret;
17245d4f98a2SYan Zheng }
17255d4f98a2SYan Zheng 
17265d4f98a2SYan Zheng static noinline_for_stack
17275d4f98a2SYan Zheng int memcmp_node_keys(struct extent_buffer *eb, int slot,
17285d4f98a2SYan Zheng 		     struct btrfs_path *path, int level)
17295d4f98a2SYan Zheng {
17305d4f98a2SYan Zheng 	struct btrfs_disk_key key1;
17315d4f98a2SYan Zheng 	struct btrfs_disk_key key2;
17325d4f98a2SYan Zheng 	btrfs_node_key(eb, &key1, slot);
17335d4f98a2SYan Zheng 	btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
17345d4f98a2SYan Zheng 	return memcmp(&key1, &key2, sizeof(key1));
17355d4f98a2SYan Zheng }
17365d4f98a2SYan Zheng 
17375d4f98a2SYan Zheng /*
17385d4f98a2SYan Zheng  * try to replace tree blocks in fs tree with the new blocks
17395d4f98a2SYan Zheng  * in reloc tree. tree blocks haven't been modified since the
17405d4f98a2SYan Zheng  * reloc tree was create can be replaced.
17415d4f98a2SYan Zheng  *
17425d4f98a2SYan Zheng  * if a block was replaced, level of the block + 1 is returned.
17435d4f98a2SYan Zheng  * if no block got replaced, 0 is returned. if there are other
17445d4f98a2SYan Zheng  * errors, a negative error number is returned.
17455d4f98a2SYan Zheng  */
17463fd0a558SYan, Zheng static noinline_for_stack
17473d0174f7SQu Wenruo int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
17485d4f98a2SYan Zheng 		 struct btrfs_root *dest, struct btrfs_root *src,
17495d4f98a2SYan Zheng 		 struct btrfs_path *path, struct btrfs_key *next_key,
17505d4f98a2SYan Zheng 		 int lowest_level, int max_level)
17515d4f98a2SYan Zheng {
17520b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = dest->fs_info;
17535d4f98a2SYan Zheng 	struct extent_buffer *eb;
17545d4f98a2SYan Zheng 	struct extent_buffer *parent;
17555d4f98a2SYan Zheng 	struct btrfs_key key;
17565d4f98a2SYan Zheng 	u64 old_bytenr;
17575d4f98a2SYan Zheng 	u64 new_bytenr;
17585d4f98a2SYan Zheng 	u64 old_ptr_gen;
17595d4f98a2SYan Zheng 	u64 new_ptr_gen;
17605d4f98a2SYan Zheng 	u64 last_snapshot;
17615d4f98a2SYan Zheng 	u32 blocksize;
17623fd0a558SYan, Zheng 	int cow = 0;
17635d4f98a2SYan Zheng 	int level;
17645d4f98a2SYan Zheng 	int ret;
17655d4f98a2SYan Zheng 	int slot;
17665d4f98a2SYan Zheng 
17675d4f98a2SYan Zheng 	BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
17685d4f98a2SYan Zheng 	BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
17695d4f98a2SYan Zheng 
17705d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&src->root_item);
17713fd0a558SYan, Zheng again:
17725d4f98a2SYan Zheng 	slot = path->slots[lowest_level];
17735d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
17745d4f98a2SYan Zheng 
17755d4f98a2SYan Zheng 	eb = btrfs_lock_root_node(dest);
17765d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
17775d4f98a2SYan Zheng 	level = btrfs_header_level(eb);
17785d4f98a2SYan Zheng 
17795d4f98a2SYan Zheng 	if (level < lowest_level) {
17805d4f98a2SYan Zheng 		btrfs_tree_unlock(eb);
17815d4f98a2SYan Zheng 		free_extent_buffer(eb);
17825d4f98a2SYan Zheng 		return 0;
17835d4f98a2SYan Zheng 	}
17845d4f98a2SYan Zheng 
17853fd0a558SYan, Zheng 	if (cow) {
17865d4f98a2SYan Zheng 		ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
17875d4f98a2SYan Zheng 		BUG_ON(ret);
17883fd0a558SYan, Zheng 	}
17895d4f98a2SYan Zheng 	btrfs_set_lock_blocking(eb);
17905d4f98a2SYan Zheng 
17915d4f98a2SYan Zheng 	if (next_key) {
17925d4f98a2SYan Zheng 		next_key->objectid = (u64)-1;
17935d4f98a2SYan Zheng 		next_key->type = (u8)-1;
17945d4f98a2SYan Zheng 		next_key->offset = (u64)-1;
17955d4f98a2SYan Zheng 	}
17965d4f98a2SYan Zheng 
17975d4f98a2SYan Zheng 	parent = eb;
17985d4f98a2SYan Zheng 	while (1) {
1799581c1760SQu Wenruo 		struct btrfs_key first_key;
1800581c1760SQu Wenruo 
18015d4f98a2SYan Zheng 		level = btrfs_header_level(parent);
18025d4f98a2SYan Zheng 		BUG_ON(level < lowest_level);
18035d4f98a2SYan Zheng 
18045d4f98a2SYan Zheng 		ret = btrfs_bin_search(parent, &key, level, &slot);
18055d4f98a2SYan Zheng 		if (ret && slot > 0)
18065d4f98a2SYan Zheng 			slot--;
18075d4f98a2SYan Zheng 
18085d4f98a2SYan Zheng 		if (next_key && slot + 1 < btrfs_header_nritems(parent))
18095d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(parent, next_key, slot + 1);
18105d4f98a2SYan Zheng 
18115d4f98a2SYan Zheng 		old_bytenr = btrfs_node_blockptr(parent, slot);
18120b246afaSJeff Mahoney 		blocksize = fs_info->nodesize;
18135d4f98a2SYan Zheng 		old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
181417515f1bSQu Wenruo 		btrfs_node_key_to_cpu(parent, &first_key, slot);
18155d4f98a2SYan Zheng 
18165d4f98a2SYan Zheng 		if (level <= max_level) {
18175d4f98a2SYan Zheng 			eb = path->nodes[level];
18185d4f98a2SYan Zheng 			new_bytenr = btrfs_node_blockptr(eb,
18195d4f98a2SYan Zheng 							path->slots[level]);
18205d4f98a2SYan Zheng 			new_ptr_gen = btrfs_node_ptr_generation(eb,
18215d4f98a2SYan Zheng 							path->slots[level]);
18225d4f98a2SYan Zheng 		} else {
18235d4f98a2SYan Zheng 			new_bytenr = 0;
18245d4f98a2SYan Zheng 			new_ptr_gen = 0;
18255d4f98a2SYan Zheng 		}
18265d4f98a2SYan Zheng 
1827fae7f21cSDulshani Gunawardhana 		if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
18285d4f98a2SYan Zheng 			ret = level;
18295d4f98a2SYan Zheng 			break;
18305d4f98a2SYan Zheng 		}
18315d4f98a2SYan Zheng 
18325d4f98a2SYan Zheng 		if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
18335d4f98a2SYan Zheng 		    memcmp_node_keys(parent, slot, path, level)) {
18343fd0a558SYan, Zheng 			if (level <= lowest_level) {
18355d4f98a2SYan Zheng 				ret = 0;
18365d4f98a2SYan Zheng 				break;
18375d4f98a2SYan Zheng 			}
18385d4f98a2SYan Zheng 
1839581c1760SQu Wenruo 			eb = read_tree_block(fs_info, old_bytenr, old_ptr_gen,
1840581c1760SQu Wenruo 					     level - 1, &first_key);
184164c043deSLiu Bo 			if (IS_ERR(eb)) {
184264c043deSLiu Bo 				ret = PTR_ERR(eb);
1843264813acSLiu Bo 				break;
184464c043deSLiu Bo 			} else if (!extent_buffer_uptodate(eb)) {
184564c043deSLiu Bo 				ret = -EIO;
1846416bc658SJosef Bacik 				free_extent_buffer(eb);
1847379cde74SStefan Behrens 				break;
1848416bc658SJosef Bacik 			}
18495d4f98a2SYan Zheng 			btrfs_tree_lock(eb);
18503fd0a558SYan, Zheng 			if (cow) {
18515d4f98a2SYan Zheng 				ret = btrfs_cow_block(trans, dest, eb, parent,
18525d4f98a2SYan Zheng 						      slot, &eb);
18535d4f98a2SYan Zheng 				BUG_ON(ret);
18545d4f98a2SYan Zheng 			}
18553fd0a558SYan, Zheng 			btrfs_set_lock_blocking(eb);
18565d4f98a2SYan Zheng 
18575d4f98a2SYan Zheng 			btrfs_tree_unlock(parent);
18585d4f98a2SYan Zheng 			free_extent_buffer(parent);
18595d4f98a2SYan Zheng 
18605d4f98a2SYan Zheng 			parent = eb;
18615d4f98a2SYan Zheng 			continue;
18625d4f98a2SYan Zheng 		}
18635d4f98a2SYan Zheng 
18643fd0a558SYan, Zheng 		if (!cow) {
18653fd0a558SYan, Zheng 			btrfs_tree_unlock(parent);
18663fd0a558SYan, Zheng 			free_extent_buffer(parent);
18673fd0a558SYan, Zheng 			cow = 1;
18683fd0a558SYan, Zheng 			goto again;
18693fd0a558SYan, Zheng 		}
18703fd0a558SYan, Zheng 
18715d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &key,
18725d4f98a2SYan Zheng 				      path->slots[level]);
1873b3b4aa74SDavid Sterba 		btrfs_release_path(path);
18745d4f98a2SYan Zheng 
18755d4f98a2SYan Zheng 		path->lowest_level = level;
18765d4f98a2SYan Zheng 		ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
18775d4f98a2SYan Zheng 		path->lowest_level = 0;
18785d4f98a2SYan Zheng 		BUG_ON(ret);
18795d4f98a2SYan Zheng 
18805d4f98a2SYan Zheng 		/*
1881824d8dffSQu Wenruo 		 * Info qgroup to trace both subtrees.
1882824d8dffSQu Wenruo 		 *
1883824d8dffSQu Wenruo 		 * We must trace both trees.
1884824d8dffSQu Wenruo 		 * 1) Tree reloc subtree
1885824d8dffSQu Wenruo 		 *    If not traced, we will leak data numbers
1886824d8dffSQu Wenruo 		 * 2) Fs subtree
1887824d8dffSQu Wenruo 		 *    If not traced, we will double count old data
1888824d8dffSQu Wenruo 		 *    and tree block numbers, if current trans doesn't free
1889824d8dffSQu Wenruo 		 *    data reloc tree inode.
1890824d8dffSQu Wenruo 		 */
18913d0174f7SQu Wenruo 		ret = btrfs_qgroup_trace_subtree_swap(trans, rc->block_group,
18923d0174f7SQu Wenruo 				parent, slot, path->nodes[level],
18933d0174f7SQu Wenruo 				path->slots[level], last_snapshot);
1894824d8dffSQu Wenruo 		if (ret < 0)
1895824d8dffSQu Wenruo 			break;
1896824d8dffSQu Wenruo 
1897824d8dffSQu Wenruo 		/*
18985d4f98a2SYan Zheng 		 * swap blocks in fs tree and reloc tree.
18995d4f98a2SYan Zheng 		 */
19005d4f98a2SYan Zheng 		btrfs_set_node_blockptr(parent, slot, new_bytenr);
19015d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
19025d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(parent);
19035d4f98a2SYan Zheng 
19045d4f98a2SYan Zheng 		btrfs_set_node_blockptr(path->nodes[level],
19055d4f98a2SYan Zheng 					path->slots[level], old_bytenr);
19065d4f98a2SYan Zheng 		btrfs_set_node_ptr_generation(path->nodes[level],
19075d4f98a2SYan Zheng 					      path->slots[level], old_ptr_gen);
19085d4f98a2SYan Zheng 		btrfs_mark_buffer_dirty(path->nodes[level]);
19095d4f98a2SYan Zheng 
191084f7d8e6SJosef Bacik 		ret = btrfs_inc_extent_ref(trans, src, old_bytenr,
19112ff7e61eSJeff Mahoney 					blocksize, path->nodes[level]->start,
1912b06c4bf5SFilipe Manana 					src->root_key.objectid, level - 1, 0);
19135d4f98a2SYan Zheng 		BUG_ON(ret);
191484f7d8e6SJosef Bacik 		ret = btrfs_inc_extent_ref(trans, dest, new_bytenr,
19152ff7e61eSJeff Mahoney 					blocksize, 0, dest->root_key.objectid,
19162ff7e61eSJeff Mahoney 					level - 1, 0);
19175d4f98a2SYan Zheng 		BUG_ON(ret);
19185d4f98a2SYan Zheng 
191984f7d8e6SJosef Bacik 		ret = btrfs_free_extent(trans, src, new_bytenr, blocksize,
19205d4f98a2SYan Zheng 					path->nodes[level]->start,
1921b06c4bf5SFilipe Manana 					src->root_key.objectid, level - 1, 0);
19225d4f98a2SYan Zheng 		BUG_ON(ret);
19235d4f98a2SYan Zheng 
192484f7d8e6SJosef Bacik 		ret = btrfs_free_extent(trans, dest, old_bytenr, blocksize,
19255d4f98a2SYan Zheng 					0, dest->root_key.objectid, level - 1,
1926b06c4bf5SFilipe Manana 					0);
19275d4f98a2SYan Zheng 		BUG_ON(ret);
19285d4f98a2SYan Zheng 
19295d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
19305d4f98a2SYan Zheng 
19315d4f98a2SYan Zheng 		ret = level;
19325d4f98a2SYan Zheng 		break;
19335d4f98a2SYan Zheng 	}
19345d4f98a2SYan Zheng 	btrfs_tree_unlock(parent);
19355d4f98a2SYan Zheng 	free_extent_buffer(parent);
19365d4f98a2SYan Zheng 	return ret;
19375d4f98a2SYan Zheng }
19385d4f98a2SYan Zheng 
19395d4f98a2SYan Zheng /*
19405d4f98a2SYan Zheng  * helper to find next relocated block in reloc tree
19415d4f98a2SYan Zheng  */
19425d4f98a2SYan Zheng static noinline_for_stack
19435d4f98a2SYan Zheng int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19445d4f98a2SYan Zheng 		       int *level)
19455d4f98a2SYan Zheng {
19465d4f98a2SYan Zheng 	struct extent_buffer *eb;
19475d4f98a2SYan Zheng 	int i;
19485d4f98a2SYan Zheng 	u64 last_snapshot;
19495d4f98a2SYan Zheng 	u32 nritems;
19505d4f98a2SYan Zheng 
19515d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
19525d4f98a2SYan Zheng 
19535d4f98a2SYan Zheng 	for (i = 0; i < *level; i++) {
19545d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19555d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19565d4f98a2SYan Zheng 	}
19575d4f98a2SYan Zheng 
19585d4f98a2SYan Zheng 	for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
19595d4f98a2SYan Zheng 		eb = path->nodes[i];
19605d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
19615d4f98a2SYan Zheng 		while (path->slots[i] + 1 < nritems) {
19625d4f98a2SYan Zheng 			path->slots[i]++;
19635d4f98a2SYan Zheng 			if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
19645d4f98a2SYan Zheng 			    last_snapshot)
19655d4f98a2SYan Zheng 				continue;
19665d4f98a2SYan Zheng 
19675d4f98a2SYan Zheng 			*level = i;
19685d4f98a2SYan Zheng 			return 0;
19695d4f98a2SYan Zheng 		}
19705d4f98a2SYan Zheng 		free_extent_buffer(path->nodes[i]);
19715d4f98a2SYan Zheng 		path->nodes[i] = NULL;
19725d4f98a2SYan Zheng 	}
19735d4f98a2SYan Zheng 	return 1;
19745d4f98a2SYan Zheng }
19755d4f98a2SYan Zheng 
19765d4f98a2SYan Zheng /*
19775d4f98a2SYan Zheng  * walk down reloc tree to find relocated block of lowest level
19785d4f98a2SYan Zheng  */
19795d4f98a2SYan Zheng static noinline_for_stack
19805d4f98a2SYan Zheng int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
19815d4f98a2SYan Zheng 			 int *level)
19825d4f98a2SYan Zheng {
19832ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
19845d4f98a2SYan Zheng 	struct extent_buffer *eb = NULL;
19855d4f98a2SYan Zheng 	int i;
19865d4f98a2SYan Zheng 	u64 bytenr;
19875d4f98a2SYan Zheng 	u64 ptr_gen = 0;
19885d4f98a2SYan Zheng 	u64 last_snapshot;
19895d4f98a2SYan Zheng 	u32 nritems;
19905d4f98a2SYan Zheng 
19915d4f98a2SYan Zheng 	last_snapshot = btrfs_root_last_snapshot(&root->root_item);
19925d4f98a2SYan Zheng 
19935d4f98a2SYan Zheng 	for (i = *level; i > 0; i--) {
1994581c1760SQu Wenruo 		struct btrfs_key first_key;
1995581c1760SQu Wenruo 
19965d4f98a2SYan Zheng 		eb = path->nodes[i];
19975d4f98a2SYan Zheng 		nritems = btrfs_header_nritems(eb);
19985d4f98a2SYan Zheng 		while (path->slots[i] < nritems) {
19995d4f98a2SYan Zheng 			ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
20005d4f98a2SYan Zheng 			if (ptr_gen > last_snapshot)
20015d4f98a2SYan Zheng 				break;
20025d4f98a2SYan Zheng 			path->slots[i]++;
20035d4f98a2SYan Zheng 		}
20045d4f98a2SYan Zheng 		if (path->slots[i] >= nritems) {
20055d4f98a2SYan Zheng 			if (i == *level)
20065d4f98a2SYan Zheng 				break;
20075d4f98a2SYan Zheng 			*level = i + 1;
20085d4f98a2SYan Zheng 			return 0;
20095d4f98a2SYan Zheng 		}
20105d4f98a2SYan Zheng 		if (i == 1) {
20115d4f98a2SYan Zheng 			*level = i;
20125d4f98a2SYan Zheng 			return 0;
20135d4f98a2SYan Zheng 		}
20145d4f98a2SYan Zheng 
20155d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(eb, path->slots[i]);
2016581c1760SQu Wenruo 		btrfs_node_key_to_cpu(eb, &first_key, path->slots[i]);
2017581c1760SQu Wenruo 		eb = read_tree_block(fs_info, bytenr, ptr_gen, i - 1,
2018581c1760SQu Wenruo 				     &first_key);
201964c043deSLiu Bo 		if (IS_ERR(eb)) {
202064c043deSLiu Bo 			return PTR_ERR(eb);
202164c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2022416bc658SJosef Bacik 			free_extent_buffer(eb);
2023416bc658SJosef Bacik 			return -EIO;
2024416bc658SJosef Bacik 		}
20255d4f98a2SYan Zheng 		BUG_ON(btrfs_header_level(eb) != i - 1);
20265d4f98a2SYan Zheng 		path->nodes[i - 1] = eb;
20275d4f98a2SYan Zheng 		path->slots[i - 1] = 0;
20285d4f98a2SYan Zheng 	}
20295d4f98a2SYan Zheng 	return 1;
20305d4f98a2SYan Zheng }
20315d4f98a2SYan Zheng 
20325d4f98a2SYan Zheng /*
20335d4f98a2SYan Zheng  * invalidate extent cache for file extents whose key in range of
20345d4f98a2SYan Zheng  * [min_key, max_key)
20355d4f98a2SYan Zheng  */
20365d4f98a2SYan Zheng static int invalidate_extent_cache(struct btrfs_root *root,
20375d4f98a2SYan Zheng 				   struct btrfs_key *min_key,
20385d4f98a2SYan Zheng 				   struct btrfs_key *max_key)
20395d4f98a2SYan Zheng {
20400b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
20415d4f98a2SYan Zheng 	struct inode *inode = NULL;
20425d4f98a2SYan Zheng 	u64 objectid;
20435d4f98a2SYan Zheng 	u64 start, end;
204433345d01SLi Zefan 	u64 ino;
20455d4f98a2SYan Zheng 
20465d4f98a2SYan Zheng 	objectid = min_key->objectid;
20475d4f98a2SYan Zheng 	while (1) {
20485d4f98a2SYan Zheng 		cond_resched();
20495d4f98a2SYan Zheng 		iput(inode);
20505d4f98a2SYan Zheng 
20515d4f98a2SYan Zheng 		if (objectid > max_key->objectid)
20525d4f98a2SYan Zheng 			break;
20535d4f98a2SYan Zheng 
20545d4f98a2SYan Zheng 		inode = find_next_inode(root, objectid);
20555d4f98a2SYan Zheng 		if (!inode)
20565d4f98a2SYan Zheng 			break;
20574a0cc7caSNikolay Borisov 		ino = btrfs_ino(BTRFS_I(inode));
20585d4f98a2SYan Zheng 
205933345d01SLi Zefan 		if (ino > max_key->objectid) {
20605d4f98a2SYan Zheng 			iput(inode);
20615d4f98a2SYan Zheng 			break;
20625d4f98a2SYan Zheng 		}
20635d4f98a2SYan Zheng 
206433345d01SLi Zefan 		objectid = ino + 1;
20655d4f98a2SYan Zheng 		if (!S_ISREG(inode->i_mode))
20665d4f98a2SYan Zheng 			continue;
20675d4f98a2SYan Zheng 
206833345d01SLi Zefan 		if (unlikely(min_key->objectid == ino)) {
20695d4f98a2SYan Zheng 			if (min_key->type > BTRFS_EXTENT_DATA_KEY)
20705d4f98a2SYan Zheng 				continue;
20715d4f98a2SYan Zheng 			if (min_key->type < BTRFS_EXTENT_DATA_KEY)
20725d4f98a2SYan Zheng 				start = 0;
20735d4f98a2SYan Zheng 			else {
20745d4f98a2SYan Zheng 				start = min_key->offset;
20750b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(start, fs_info->sectorsize));
20765d4f98a2SYan Zheng 			}
20775d4f98a2SYan Zheng 		} else {
20785d4f98a2SYan Zheng 			start = 0;
20795d4f98a2SYan Zheng 		}
20805d4f98a2SYan Zheng 
208133345d01SLi Zefan 		if (unlikely(max_key->objectid == ino)) {
20825d4f98a2SYan Zheng 			if (max_key->type < BTRFS_EXTENT_DATA_KEY)
20835d4f98a2SYan Zheng 				continue;
20845d4f98a2SYan Zheng 			if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
20855d4f98a2SYan Zheng 				end = (u64)-1;
20865d4f98a2SYan Zheng 			} else {
20875d4f98a2SYan Zheng 				if (max_key->offset == 0)
20885d4f98a2SYan Zheng 					continue;
20895d4f98a2SYan Zheng 				end = max_key->offset;
20900b246afaSJeff Mahoney 				WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
20915d4f98a2SYan Zheng 				end--;
20925d4f98a2SYan Zheng 			}
20935d4f98a2SYan Zheng 		} else {
20945d4f98a2SYan Zheng 			end = (u64)-1;
20955d4f98a2SYan Zheng 		}
20965d4f98a2SYan Zheng 
20975d4f98a2SYan Zheng 		/* the lock_extent waits for readpage to complete */
2098d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
2099dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 1);
2100d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
21015d4f98a2SYan Zheng 	}
21025d4f98a2SYan Zheng 	return 0;
21035d4f98a2SYan Zheng }
21045d4f98a2SYan Zheng 
21055d4f98a2SYan Zheng static int find_next_key(struct btrfs_path *path, int level,
21065d4f98a2SYan Zheng 			 struct btrfs_key *key)
21075d4f98a2SYan Zheng 
21085d4f98a2SYan Zheng {
21095d4f98a2SYan Zheng 	while (level < BTRFS_MAX_LEVEL) {
21105d4f98a2SYan Zheng 		if (!path->nodes[level])
21115d4f98a2SYan Zheng 			break;
21125d4f98a2SYan Zheng 		if (path->slots[level] + 1 <
21135d4f98a2SYan Zheng 		    btrfs_header_nritems(path->nodes[level])) {
21145d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], key,
21155d4f98a2SYan Zheng 					      path->slots[level] + 1);
21165d4f98a2SYan Zheng 			return 0;
21175d4f98a2SYan Zheng 		}
21185d4f98a2SYan Zheng 		level++;
21195d4f98a2SYan Zheng 	}
21205d4f98a2SYan Zheng 	return 1;
21215d4f98a2SYan Zheng }
21225d4f98a2SYan Zheng 
21235d4f98a2SYan Zheng /*
21245d4f98a2SYan Zheng  * merge the relocated tree blocks in reloc tree with corresponding
21255d4f98a2SYan Zheng  * fs tree.
21265d4f98a2SYan Zheng  */
21275d4f98a2SYan Zheng static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
21285d4f98a2SYan Zheng 					       struct btrfs_root *root)
21295d4f98a2SYan Zheng {
21300b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
21315d4f98a2SYan Zheng 	LIST_HEAD(inode_list);
21325d4f98a2SYan Zheng 	struct btrfs_key key;
21335d4f98a2SYan Zheng 	struct btrfs_key next_key;
21349e6a0c52SJosef Bacik 	struct btrfs_trans_handle *trans = NULL;
21355d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
21365d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
21375d4f98a2SYan Zheng 	struct btrfs_path *path;
21383fd0a558SYan, Zheng 	struct extent_buffer *leaf;
21395d4f98a2SYan Zheng 	int level;
21405d4f98a2SYan Zheng 	int max_level;
21415d4f98a2SYan Zheng 	int replaced = 0;
21425d4f98a2SYan Zheng 	int ret;
21435d4f98a2SYan Zheng 	int err = 0;
21443fd0a558SYan, Zheng 	u32 min_reserved;
21455d4f98a2SYan Zheng 
21465d4f98a2SYan Zheng 	path = btrfs_alloc_path();
21475d4f98a2SYan Zheng 	if (!path)
21485d4f98a2SYan Zheng 		return -ENOMEM;
2149e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
21505d4f98a2SYan Zheng 
21515d4f98a2SYan Zheng 	reloc_root = root->reloc_root;
21525d4f98a2SYan Zheng 	root_item = &reloc_root->root_item;
21535d4f98a2SYan Zheng 
21545d4f98a2SYan Zheng 	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
21555d4f98a2SYan Zheng 		level = btrfs_root_level(root_item);
21565d4f98a2SYan Zheng 		extent_buffer_get(reloc_root->node);
21575d4f98a2SYan Zheng 		path->nodes[level] = reloc_root->node;
21585d4f98a2SYan Zheng 		path->slots[level] = 0;
21595d4f98a2SYan Zheng 	} else {
21605d4f98a2SYan Zheng 		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
21615d4f98a2SYan Zheng 
21625d4f98a2SYan Zheng 		level = root_item->drop_level;
21635d4f98a2SYan Zheng 		BUG_ON(level == 0);
21645d4f98a2SYan Zheng 		path->lowest_level = level;
21655d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
216633c66f43SYan Zheng 		path->lowest_level = 0;
21675d4f98a2SYan Zheng 		if (ret < 0) {
21685d4f98a2SYan Zheng 			btrfs_free_path(path);
21695d4f98a2SYan Zheng 			return ret;
21705d4f98a2SYan Zheng 		}
21715d4f98a2SYan Zheng 
21725d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(path->nodes[level], &next_key,
21735d4f98a2SYan Zheng 				      path->slots[level]);
21745d4f98a2SYan Zheng 		WARN_ON(memcmp(&key, &next_key, sizeof(key)));
21755d4f98a2SYan Zheng 
21765d4f98a2SYan Zheng 		btrfs_unlock_up_safe(path, 0);
21775d4f98a2SYan Zheng 	}
21785d4f98a2SYan Zheng 
21790b246afaSJeff Mahoney 	min_reserved = fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
21805d4f98a2SYan Zheng 	memset(&next_key, 0, sizeof(next_key));
21815d4f98a2SYan Zheng 
21825d4f98a2SYan Zheng 	while (1) {
218308e007d2SMiao Xie 		ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
218408e007d2SMiao Xie 					     BTRFS_RESERVE_FLUSH_ALL);
21853fd0a558SYan, Zheng 		if (ret) {
21869e6a0c52SJosef Bacik 			err = ret;
21879e6a0c52SJosef Bacik 			goto out;
21883fd0a558SYan, Zheng 		}
21899e6a0c52SJosef Bacik 		trans = btrfs_start_transaction(root, 0);
21909e6a0c52SJosef Bacik 		if (IS_ERR(trans)) {
21919e6a0c52SJosef Bacik 			err = PTR_ERR(trans);
21929e6a0c52SJosef Bacik 			trans = NULL;
21939e6a0c52SJosef Bacik 			goto out;
21949e6a0c52SJosef Bacik 		}
21959e6a0c52SJosef Bacik 		trans->block_rsv = rc->block_rsv;
21963fd0a558SYan, Zheng 
21973fd0a558SYan, Zheng 		replaced = 0;
21985d4f98a2SYan Zheng 		max_level = level;
21995d4f98a2SYan Zheng 
22005d4f98a2SYan Zheng 		ret = walk_down_reloc_tree(reloc_root, path, &level);
22015d4f98a2SYan Zheng 		if (ret < 0) {
22025d4f98a2SYan Zheng 			err = ret;
22035d4f98a2SYan Zheng 			goto out;
22045d4f98a2SYan Zheng 		}
22055d4f98a2SYan Zheng 		if (ret > 0)
22065d4f98a2SYan Zheng 			break;
22075d4f98a2SYan Zheng 
22085d4f98a2SYan Zheng 		if (!find_next_key(path, level, &key) &&
22095d4f98a2SYan Zheng 		    btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
22105d4f98a2SYan Zheng 			ret = 0;
22115d4f98a2SYan Zheng 		} else {
22123d0174f7SQu Wenruo 			ret = replace_path(trans, rc, root, reloc_root, path,
22133fd0a558SYan, Zheng 					   &next_key, level, max_level);
22145d4f98a2SYan Zheng 		}
22155d4f98a2SYan Zheng 		if (ret < 0) {
22165d4f98a2SYan Zheng 			err = ret;
22175d4f98a2SYan Zheng 			goto out;
22185d4f98a2SYan Zheng 		}
22195d4f98a2SYan Zheng 
22205d4f98a2SYan Zheng 		if (ret > 0) {
22215d4f98a2SYan Zheng 			level = ret;
22225d4f98a2SYan Zheng 			btrfs_node_key_to_cpu(path->nodes[level], &key,
22235d4f98a2SYan Zheng 					      path->slots[level]);
22245d4f98a2SYan Zheng 			replaced = 1;
22255d4f98a2SYan Zheng 		}
22265d4f98a2SYan Zheng 
22275d4f98a2SYan Zheng 		ret = walk_up_reloc_tree(reloc_root, path, &level);
22285d4f98a2SYan Zheng 		if (ret > 0)
22295d4f98a2SYan Zheng 			break;
22305d4f98a2SYan Zheng 
22315d4f98a2SYan Zheng 		BUG_ON(level == 0);
22325d4f98a2SYan Zheng 		/*
22335d4f98a2SYan Zheng 		 * save the merging progress in the drop_progress.
22345d4f98a2SYan Zheng 		 * this is OK since root refs == 1 in this case.
22355d4f98a2SYan Zheng 		 */
22365d4f98a2SYan Zheng 		btrfs_node_key(path->nodes[level], &root_item->drop_progress,
22375d4f98a2SYan Zheng 			       path->slots[level]);
22385d4f98a2SYan Zheng 		root_item->drop_level = level;
22395d4f98a2SYan Zheng 
22403a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
22419e6a0c52SJosef Bacik 		trans = NULL;
22425d4f98a2SYan Zheng 
22432ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
22445d4f98a2SYan Zheng 
22455d4f98a2SYan Zheng 		if (replaced && rc->stage == UPDATE_DATA_PTRS)
22465d4f98a2SYan Zheng 			invalidate_extent_cache(root, &key, &next_key);
22475d4f98a2SYan Zheng 	}
22485d4f98a2SYan Zheng 
22495d4f98a2SYan Zheng 	/*
22505d4f98a2SYan Zheng 	 * handle the case only one block in the fs tree need to be
22515d4f98a2SYan Zheng 	 * relocated and the block is tree root.
22525d4f98a2SYan Zheng 	 */
22535d4f98a2SYan Zheng 	leaf = btrfs_lock_root_node(root);
22545d4f98a2SYan Zheng 	ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
22555d4f98a2SYan Zheng 	btrfs_tree_unlock(leaf);
22565d4f98a2SYan Zheng 	free_extent_buffer(leaf);
22575d4f98a2SYan Zheng 	if (ret < 0)
22585d4f98a2SYan Zheng 		err = ret;
22595d4f98a2SYan Zheng out:
22605d4f98a2SYan Zheng 	btrfs_free_path(path);
22615d4f98a2SYan Zheng 
22625d4f98a2SYan Zheng 	if (err == 0) {
22635d4f98a2SYan Zheng 		memset(&root_item->drop_progress, 0,
22645d4f98a2SYan Zheng 		       sizeof(root_item->drop_progress));
22655d4f98a2SYan Zheng 		root_item->drop_level = 0;
22665d4f98a2SYan Zheng 		btrfs_set_root_refs(root_item, 0);
22673fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
22685d4f98a2SYan Zheng 	}
22695d4f98a2SYan Zheng 
22709e6a0c52SJosef Bacik 	if (trans)
22713a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
22725d4f98a2SYan Zheng 
22732ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
22745d4f98a2SYan Zheng 
22755d4f98a2SYan Zheng 	if (replaced && rc->stage == UPDATE_DATA_PTRS)
22765d4f98a2SYan Zheng 		invalidate_extent_cache(root, &key, &next_key);
22775d4f98a2SYan Zheng 
22785d4f98a2SYan Zheng 	return err;
22795d4f98a2SYan Zheng }
22805d4f98a2SYan Zheng 
22813fd0a558SYan, Zheng static noinline_for_stack
22823fd0a558SYan, Zheng int prepare_to_merge(struct reloc_control *rc, int err)
22835d4f98a2SYan Zheng {
22843fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
22850b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
22863fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
22875d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
22883fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
22893fd0a558SYan, Zheng 	u64 num_bytes = 0;
22903fd0a558SYan, Zheng 	int ret;
22913fd0a558SYan, Zheng 
22920b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
22930b246afaSJeff Mahoney 	rc->merging_rsv_size += fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
22943fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated * 2;
22950b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
22967585717fSChris Mason 
22973fd0a558SYan, Zheng again:
22983fd0a558SYan, Zheng 	if (!err) {
22993fd0a558SYan, Zheng 		num_bytes = rc->merging_rsv_size;
230008e007d2SMiao Xie 		ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
230108e007d2SMiao Xie 					  BTRFS_RESERVE_FLUSH_ALL);
23023fd0a558SYan, Zheng 		if (ret)
23033fd0a558SYan, Zheng 			err = ret;
23043fd0a558SYan, Zheng 	}
23053fd0a558SYan, Zheng 
23067a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
23073612b495STsutomu Itoh 	if (IS_ERR(trans)) {
23083612b495STsutomu Itoh 		if (!err)
23092ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
23102ff7e61eSJeff Mahoney 						num_bytes);
23113612b495STsutomu Itoh 		return PTR_ERR(trans);
23123612b495STsutomu Itoh 	}
23133fd0a558SYan, Zheng 
23143fd0a558SYan, Zheng 	if (!err) {
23153fd0a558SYan, Zheng 		if (num_bytes != rc->merging_rsv_size) {
23163a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
23172ff7e61eSJeff Mahoney 			btrfs_block_rsv_release(fs_info, rc->block_rsv,
23182ff7e61eSJeff Mahoney 						num_bytes);
23193fd0a558SYan, Zheng 			goto again;
23203fd0a558SYan, Zheng 		}
23213fd0a558SYan, Zheng 	}
23223fd0a558SYan, Zheng 
23233fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
23243fd0a558SYan, Zheng 
23253fd0a558SYan, Zheng 	while (!list_empty(&rc->reloc_roots)) {
23263fd0a558SYan, Zheng 		reloc_root = list_entry(rc->reloc_roots.next,
23273fd0a558SYan, Zheng 					struct btrfs_root, root_list);
23283fd0a558SYan, Zheng 		list_del_init(&reloc_root->root_list);
23293fd0a558SYan, Zheng 
23300b246afaSJeff Mahoney 		root = read_fs_root(fs_info, reloc_root->root_key.offset);
23313fd0a558SYan, Zheng 		BUG_ON(IS_ERR(root));
23323fd0a558SYan, Zheng 		BUG_ON(root->reloc_root != reloc_root);
23333fd0a558SYan, Zheng 
23343fd0a558SYan, Zheng 		/*
23353fd0a558SYan, Zheng 		 * set reference count to 1, so btrfs_recover_relocation
23363fd0a558SYan, Zheng 		 * knows it should resumes merging
23373fd0a558SYan, Zheng 		 */
23383fd0a558SYan, Zheng 		if (!err)
23393fd0a558SYan, Zheng 			btrfs_set_root_refs(&reloc_root->root_item, 1);
23403fd0a558SYan, Zheng 		btrfs_update_reloc_root(trans, root);
23413fd0a558SYan, Zheng 
23423fd0a558SYan, Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
23433fd0a558SYan, Zheng 	}
23443fd0a558SYan, Zheng 
23453fd0a558SYan, Zheng 	list_splice(&reloc_roots, &rc->reloc_roots);
23463fd0a558SYan, Zheng 
23473fd0a558SYan, Zheng 	if (!err)
23483a45bb20SJeff Mahoney 		btrfs_commit_transaction(trans);
23493fd0a558SYan, Zheng 	else
23503a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
23513fd0a558SYan, Zheng 	return err;
23523fd0a558SYan, Zheng }
23533fd0a558SYan, Zheng 
23543fd0a558SYan, Zheng static noinline_for_stack
2355aca1bba6SLiu Bo void free_reloc_roots(struct list_head *list)
2356aca1bba6SLiu Bo {
2357aca1bba6SLiu Bo 	struct btrfs_root *reloc_root;
2358aca1bba6SLiu Bo 
2359aca1bba6SLiu Bo 	while (!list_empty(list)) {
2360aca1bba6SLiu Bo 		reloc_root = list_entry(list->next, struct btrfs_root,
2361aca1bba6SLiu Bo 					root_list);
2362bb166d72SNaohiro Aota 		__del_reloc_root(reloc_root);
23636bdf131fSJosef Bacik 		free_extent_buffer(reloc_root->node);
23646bdf131fSJosef Bacik 		free_extent_buffer(reloc_root->commit_root);
23656bdf131fSJosef Bacik 		reloc_root->node = NULL;
23666bdf131fSJosef Bacik 		reloc_root->commit_root = NULL;
2367aca1bba6SLiu Bo 	}
2368aca1bba6SLiu Bo }
2369aca1bba6SLiu Bo 
2370aca1bba6SLiu Bo static noinline_for_stack
237194404e82SDavid Sterba void merge_reloc_roots(struct reloc_control *rc)
23723fd0a558SYan, Zheng {
23730b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
23745d4f98a2SYan Zheng 	struct btrfs_root *root;
23755d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
23763fd0a558SYan, Zheng 	LIST_HEAD(reloc_roots);
23773fd0a558SYan, Zheng 	int found = 0;
2378aca1bba6SLiu Bo 	int ret = 0;
23793fd0a558SYan, Zheng again:
23803fd0a558SYan, Zheng 	root = rc->extent_root;
23817585717fSChris Mason 
23827585717fSChris Mason 	/*
23837585717fSChris Mason 	 * this serializes us with btrfs_record_root_in_transaction,
23847585717fSChris Mason 	 * we have to make sure nobody is in the middle of
23857585717fSChris Mason 	 * adding their roots to the list while we are
23867585717fSChris Mason 	 * doing this splice
23877585717fSChris Mason 	 */
23880b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
23893fd0a558SYan, Zheng 	list_splice_init(&rc->reloc_roots, &reloc_roots);
23900b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
23915d4f98a2SYan Zheng 
23923fd0a558SYan, Zheng 	while (!list_empty(&reloc_roots)) {
23933fd0a558SYan, Zheng 		found = 1;
23943fd0a558SYan, Zheng 		reloc_root = list_entry(reloc_roots.next,
23953fd0a558SYan, Zheng 					struct btrfs_root, root_list);
23965d4f98a2SYan Zheng 
23975d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
23980b246afaSJeff Mahoney 			root = read_fs_root(fs_info,
23995d4f98a2SYan Zheng 					    reloc_root->root_key.offset);
24005d4f98a2SYan Zheng 			BUG_ON(IS_ERR(root));
24015d4f98a2SYan Zheng 			BUG_ON(root->reloc_root != reloc_root);
24025d4f98a2SYan Zheng 
24033fd0a558SYan, Zheng 			ret = merge_reloc_root(rc, root);
2404b37b39cdSJosef Bacik 			if (ret) {
240525e293c2SWang Shilong 				if (list_empty(&reloc_root->root_list))
240625e293c2SWang Shilong 					list_add_tail(&reloc_root->root_list,
240725e293c2SWang Shilong 						      &reloc_roots);
2408aca1bba6SLiu Bo 				goto out;
2409b37b39cdSJosef Bacik 			}
24103fd0a558SYan, Zheng 		} else {
24113fd0a558SYan, Zheng 			list_del_init(&reloc_root->root_list);
24123fd0a558SYan, Zheng 		}
24135bc7247aSMiao Xie 
24142c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(reloc_root, rc->block_rsv, 0, 1);
2415aca1bba6SLiu Bo 		if (ret < 0) {
2416aca1bba6SLiu Bo 			if (list_empty(&reloc_root->root_list))
2417aca1bba6SLiu Bo 				list_add_tail(&reloc_root->root_list,
2418aca1bba6SLiu Bo 					      &reloc_roots);
2419aca1bba6SLiu Bo 			goto out;
2420aca1bba6SLiu Bo 		}
24215d4f98a2SYan Zheng 	}
24225d4f98a2SYan Zheng 
24233fd0a558SYan, Zheng 	if (found) {
24243fd0a558SYan, Zheng 		found = 0;
24253fd0a558SYan, Zheng 		goto again;
24265d4f98a2SYan Zheng 	}
2427aca1bba6SLiu Bo out:
2428aca1bba6SLiu Bo 	if (ret) {
24290b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret, NULL);
2430aca1bba6SLiu Bo 		if (!list_empty(&reloc_roots))
2431aca1bba6SLiu Bo 			free_reloc_roots(&reloc_roots);
2432467bb1d2SWang Shilong 
2433467bb1d2SWang Shilong 		/* new reloc root may be added */
24340b246afaSJeff Mahoney 		mutex_lock(&fs_info->reloc_mutex);
2435467bb1d2SWang Shilong 		list_splice_init(&rc->reloc_roots, &reloc_roots);
24360b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
2437467bb1d2SWang Shilong 		if (!list_empty(&reloc_roots))
2438467bb1d2SWang Shilong 			free_reloc_roots(&reloc_roots);
2439aca1bba6SLiu Bo 	}
2440aca1bba6SLiu Bo 
24415d4f98a2SYan Zheng 	BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
24425d4f98a2SYan Zheng }
24435d4f98a2SYan Zheng 
24445d4f98a2SYan Zheng static void free_block_list(struct rb_root *blocks)
24455d4f98a2SYan Zheng {
24465d4f98a2SYan Zheng 	struct tree_block *block;
24475d4f98a2SYan Zheng 	struct rb_node *rb_node;
24485d4f98a2SYan Zheng 	while ((rb_node = rb_first(blocks))) {
24495d4f98a2SYan Zheng 		block = rb_entry(rb_node, struct tree_block, rb_node);
24505d4f98a2SYan Zheng 		rb_erase(rb_node, blocks);
24515d4f98a2SYan Zheng 		kfree(block);
24525d4f98a2SYan Zheng 	}
24535d4f98a2SYan Zheng }
24545d4f98a2SYan Zheng 
24555d4f98a2SYan Zheng static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
24565d4f98a2SYan Zheng 				      struct btrfs_root *reloc_root)
24575d4f98a2SYan Zheng {
24580b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = reloc_root->fs_info;
24595d4f98a2SYan Zheng 	struct btrfs_root *root;
24605d4f98a2SYan Zheng 
24615d4f98a2SYan Zheng 	if (reloc_root->last_trans == trans->transid)
24625d4f98a2SYan Zheng 		return 0;
24635d4f98a2SYan Zheng 
24640b246afaSJeff Mahoney 	root = read_fs_root(fs_info, reloc_root->root_key.offset);
24655d4f98a2SYan Zheng 	BUG_ON(IS_ERR(root));
24665d4f98a2SYan Zheng 	BUG_ON(root->reloc_root != reloc_root);
24675d4f98a2SYan Zheng 
24685d4f98a2SYan Zheng 	return btrfs_record_root_in_trans(trans, root);
24695d4f98a2SYan Zheng }
24705d4f98a2SYan Zheng 
24713fd0a558SYan, Zheng static noinline_for_stack
24723fd0a558SYan, Zheng struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
24733fd0a558SYan, Zheng 				     struct reloc_control *rc,
24745d4f98a2SYan Zheng 				     struct backref_node *node,
2475dc4103f9SWang Shilong 				     struct backref_edge *edges[])
24765d4f98a2SYan Zheng {
24775d4f98a2SYan Zheng 	struct backref_node *next;
24785d4f98a2SYan Zheng 	struct btrfs_root *root;
24793fd0a558SYan, Zheng 	int index = 0;
24803fd0a558SYan, Zheng 
24815d4f98a2SYan Zheng 	next = node;
24825d4f98a2SYan Zheng 	while (1) {
24835d4f98a2SYan Zheng 		cond_resched();
24845d4f98a2SYan Zheng 		next = walk_up_backref(next, edges, &index);
24855d4f98a2SYan Zheng 		root = next->root;
24863fd0a558SYan, Zheng 		BUG_ON(!root);
248727cdeb70SMiao Xie 		BUG_ON(!test_bit(BTRFS_ROOT_REF_COWS, &root->state));
24885d4f98a2SYan Zheng 
24895d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
24905d4f98a2SYan Zheng 			record_reloc_root_in_trans(trans, root);
24915d4f98a2SYan Zheng 			break;
24925d4f98a2SYan Zheng 		}
24935d4f98a2SYan Zheng 
24945d4f98a2SYan Zheng 		btrfs_record_root_in_trans(trans, root);
24953fd0a558SYan, Zheng 		root = root->reloc_root;
24963fd0a558SYan, Zheng 
24973fd0a558SYan, Zheng 		if (next->new_bytenr != root->node->start) {
24983fd0a558SYan, Zheng 			BUG_ON(next->new_bytenr);
24993fd0a558SYan, Zheng 			BUG_ON(!list_empty(&next->list));
25003fd0a558SYan, Zheng 			next->new_bytenr = root->node->start;
25013fd0a558SYan, Zheng 			next->root = root;
25023fd0a558SYan, Zheng 			list_add_tail(&next->list,
25033fd0a558SYan, Zheng 				      &rc->backref_cache.changed);
25043fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
25055d4f98a2SYan Zheng 			break;
25065d4f98a2SYan Zheng 		}
25075d4f98a2SYan Zheng 
25083fd0a558SYan, Zheng 		WARN_ON(1);
25095d4f98a2SYan Zheng 		root = NULL;
25105d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
25115d4f98a2SYan Zheng 		if (!next || next->level <= node->level)
25125d4f98a2SYan Zheng 			break;
25135d4f98a2SYan Zheng 	}
25143fd0a558SYan, Zheng 	if (!root)
25153fd0a558SYan, Zheng 		return NULL;
25165d4f98a2SYan Zheng 
25173fd0a558SYan, Zheng 	next = node;
25183fd0a558SYan, Zheng 	/* setup backref node path for btrfs_reloc_cow_block */
25193fd0a558SYan, Zheng 	while (1) {
25203fd0a558SYan, Zheng 		rc->backref_cache.path[next->level] = next;
25213fd0a558SYan, Zheng 		if (--index < 0)
25223fd0a558SYan, Zheng 			break;
25233fd0a558SYan, Zheng 		next = edges[index]->node[UPPER];
25243fd0a558SYan, Zheng 	}
25255d4f98a2SYan Zheng 	return root;
25265d4f98a2SYan Zheng }
25275d4f98a2SYan Zheng 
25283fd0a558SYan, Zheng /*
25293fd0a558SYan, Zheng  * select a tree root for relocation. return NULL if the block
25303fd0a558SYan, Zheng  * is reference counted. we should use do_relocation() in this
25313fd0a558SYan, Zheng  * case. return a tree root pointer if the block isn't reference
25323fd0a558SYan, Zheng  * counted. return -ENOENT if the block is root of reloc tree.
25333fd0a558SYan, Zheng  */
25345d4f98a2SYan Zheng static noinline_for_stack
2535147d256eSZhaolei struct btrfs_root *select_one_root(struct backref_node *node)
25365d4f98a2SYan Zheng {
25373fd0a558SYan, Zheng 	struct backref_node *next;
25383fd0a558SYan, Zheng 	struct btrfs_root *root;
25393fd0a558SYan, Zheng 	struct btrfs_root *fs_root = NULL;
25405d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25413fd0a558SYan, Zheng 	int index = 0;
25423fd0a558SYan, Zheng 
25433fd0a558SYan, Zheng 	next = node;
25443fd0a558SYan, Zheng 	while (1) {
25453fd0a558SYan, Zheng 		cond_resched();
25463fd0a558SYan, Zheng 		next = walk_up_backref(next, edges, &index);
25473fd0a558SYan, Zheng 		root = next->root;
25483fd0a558SYan, Zheng 		BUG_ON(!root);
25493fd0a558SYan, Zheng 
255025985edcSLucas De Marchi 		/* no other choice for non-references counted tree */
255127cdeb70SMiao Xie 		if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
25523fd0a558SYan, Zheng 			return root;
25533fd0a558SYan, Zheng 
25543fd0a558SYan, Zheng 		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
25553fd0a558SYan, Zheng 			fs_root = root;
25563fd0a558SYan, Zheng 
25573fd0a558SYan, Zheng 		if (next != node)
25583fd0a558SYan, Zheng 			return NULL;
25593fd0a558SYan, Zheng 
25603fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
25613fd0a558SYan, Zheng 		if (!next || next->level <= node->level)
25623fd0a558SYan, Zheng 			break;
25633fd0a558SYan, Zheng 	}
25643fd0a558SYan, Zheng 
25653fd0a558SYan, Zheng 	if (!fs_root)
25663fd0a558SYan, Zheng 		return ERR_PTR(-ENOENT);
25673fd0a558SYan, Zheng 	return fs_root;
25685d4f98a2SYan Zheng }
25695d4f98a2SYan Zheng 
25705d4f98a2SYan Zheng static noinline_for_stack
25713fd0a558SYan, Zheng u64 calcu_metadata_size(struct reloc_control *rc,
25723fd0a558SYan, Zheng 			struct backref_node *node, int reserve)
25735d4f98a2SYan Zheng {
25740b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
25753fd0a558SYan, Zheng 	struct backref_node *next = node;
25763fd0a558SYan, Zheng 	struct backref_edge *edge;
25773fd0a558SYan, Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
25783fd0a558SYan, Zheng 	u64 num_bytes = 0;
25793fd0a558SYan, Zheng 	int index = 0;
25805d4f98a2SYan Zheng 
25813fd0a558SYan, Zheng 	BUG_ON(reserve && node->processed);
25823fd0a558SYan, Zheng 
25833fd0a558SYan, Zheng 	while (next) {
25843fd0a558SYan, Zheng 		cond_resched();
25855d4f98a2SYan Zheng 		while (1) {
25863fd0a558SYan, Zheng 			if (next->processed && (reserve || next != node))
25875d4f98a2SYan Zheng 				break;
25885d4f98a2SYan Zheng 
25890b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
25903fd0a558SYan, Zheng 
25913fd0a558SYan, Zheng 			if (list_empty(&next->upper))
25923fd0a558SYan, Zheng 				break;
25933fd0a558SYan, Zheng 
25943fd0a558SYan, Zheng 			edge = list_entry(next->upper.next,
25953fd0a558SYan, Zheng 					  struct backref_edge, list[LOWER]);
25963fd0a558SYan, Zheng 			edges[index++] = edge;
25973fd0a558SYan, Zheng 			next = edge->node[UPPER];
25985d4f98a2SYan Zheng 		}
25993fd0a558SYan, Zheng 		next = walk_down_backref(edges, &index);
26003fd0a558SYan, Zheng 	}
26013fd0a558SYan, Zheng 	return num_bytes;
26023fd0a558SYan, Zheng }
26033fd0a558SYan, Zheng 
26043fd0a558SYan, Zheng static int reserve_metadata_space(struct btrfs_trans_handle *trans,
26053fd0a558SYan, Zheng 				  struct reloc_control *rc,
26063fd0a558SYan, Zheng 				  struct backref_node *node)
26073fd0a558SYan, Zheng {
26083fd0a558SYan, Zheng 	struct btrfs_root *root = rc->extent_root;
2609da17066cSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
26103fd0a558SYan, Zheng 	u64 num_bytes;
26113fd0a558SYan, Zheng 	int ret;
26120647bf56SWang Shilong 	u64 tmp;
26133fd0a558SYan, Zheng 
26143fd0a558SYan, Zheng 	num_bytes = calcu_metadata_size(rc, node, 1) * 2;
26153fd0a558SYan, Zheng 
26163fd0a558SYan, Zheng 	trans->block_rsv = rc->block_rsv;
26170647bf56SWang Shilong 	rc->reserved_bytes += num_bytes;
26188ca17f0fSJosef Bacik 
26198ca17f0fSJosef Bacik 	/*
26208ca17f0fSJosef Bacik 	 * We are under a transaction here so we can only do limited flushing.
26218ca17f0fSJosef Bacik 	 * If we get an enospc just kick back -EAGAIN so we know to drop the
26228ca17f0fSJosef Bacik 	 * transaction and try to refill when we can flush all the things.
26238ca17f0fSJosef Bacik 	 */
26240647bf56SWang Shilong 	ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
26258ca17f0fSJosef Bacik 				BTRFS_RESERVE_FLUSH_LIMIT);
26263fd0a558SYan, Zheng 	if (ret) {
2627da17066cSJeff Mahoney 		tmp = fs_info->nodesize * RELOCATION_RESERVED_NODES;
26280647bf56SWang Shilong 		while (tmp <= rc->reserved_bytes)
26290647bf56SWang Shilong 			tmp <<= 1;
26300647bf56SWang Shilong 		/*
26310647bf56SWang Shilong 		 * only one thread can access block_rsv at this point,
26320647bf56SWang Shilong 		 * so we don't need hold lock to protect block_rsv.
26330647bf56SWang Shilong 		 * we expand more reservation size here to allow enough
263452042d8eSAndrea Gelmini 		 * space for relocation and we will return earlier in
26350647bf56SWang Shilong 		 * enospc case.
26360647bf56SWang Shilong 		 */
2637da17066cSJeff Mahoney 		rc->block_rsv->size = tmp + fs_info->nodesize *
26380647bf56SWang Shilong 				      RELOCATION_RESERVED_NODES;
26398ca17f0fSJosef Bacik 		return -EAGAIN;
26403fd0a558SYan, Zheng 	}
26413fd0a558SYan, Zheng 
26423fd0a558SYan, Zheng 	return 0;
26433fd0a558SYan, Zheng }
26443fd0a558SYan, Zheng 
26455d4f98a2SYan Zheng /*
26465d4f98a2SYan Zheng  * relocate a block tree, and then update pointers in upper level
26475d4f98a2SYan Zheng  * blocks that reference the block to point to the new location.
26485d4f98a2SYan Zheng  *
26495d4f98a2SYan Zheng  * if called by link_to_upper, the block has already been relocated.
26505d4f98a2SYan Zheng  * in that case this function just updates pointers.
26515d4f98a2SYan Zheng  */
26525d4f98a2SYan Zheng static int do_relocation(struct btrfs_trans_handle *trans,
26533fd0a558SYan, Zheng 			 struct reloc_control *rc,
26545d4f98a2SYan Zheng 			 struct backref_node *node,
26555d4f98a2SYan Zheng 			 struct btrfs_key *key,
26565d4f98a2SYan Zheng 			 struct btrfs_path *path, int lowest)
26575d4f98a2SYan Zheng {
26582ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
26595d4f98a2SYan Zheng 	struct backref_node *upper;
26605d4f98a2SYan Zheng 	struct backref_edge *edge;
26615d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
26625d4f98a2SYan Zheng 	struct btrfs_root *root;
26635d4f98a2SYan Zheng 	struct extent_buffer *eb;
26645d4f98a2SYan Zheng 	u32 blocksize;
26655d4f98a2SYan Zheng 	u64 bytenr;
26665d4f98a2SYan Zheng 	u64 generation;
26675d4f98a2SYan Zheng 	int slot;
26685d4f98a2SYan Zheng 	int ret;
26695d4f98a2SYan Zheng 	int err = 0;
26705d4f98a2SYan Zheng 
26715d4f98a2SYan Zheng 	BUG_ON(lowest && node->eb);
26725d4f98a2SYan Zheng 
26735d4f98a2SYan Zheng 	path->lowest_level = node->level + 1;
26743fd0a558SYan, Zheng 	rc->backref_cache.path[node->level] = node;
26755d4f98a2SYan Zheng 	list_for_each_entry(edge, &node->upper, list[LOWER]) {
2676581c1760SQu Wenruo 		struct btrfs_key first_key;
2677581c1760SQu Wenruo 
26785d4f98a2SYan Zheng 		cond_resched();
26795d4f98a2SYan Zheng 
26805d4f98a2SYan Zheng 		upper = edge->node[UPPER];
2681dc4103f9SWang Shilong 		root = select_reloc_root(trans, rc, upper, edges);
26823fd0a558SYan, Zheng 		BUG_ON(!root);
26835d4f98a2SYan Zheng 
26843fd0a558SYan, Zheng 		if (upper->eb && !upper->locked) {
26853fd0a558SYan, Zheng 			if (!lowest) {
26863fd0a558SYan, Zheng 				ret = btrfs_bin_search(upper->eb, key,
26873fd0a558SYan, Zheng 						       upper->level, &slot);
26883fd0a558SYan, Zheng 				BUG_ON(ret);
26893fd0a558SYan, Zheng 				bytenr = btrfs_node_blockptr(upper->eb, slot);
26903fd0a558SYan, Zheng 				if (node->eb->start == bytenr)
26913fd0a558SYan, Zheng 					goto next;
26923fd0a558SYan, Zheng 			}
26935d4f98a2SYan Zheng 			drop_node_buffer(upper);
26943fd0a558SYan, Zheng 		}
26955d4f98a2SYan Zheng 
26965d4f98a2SYan Zheng 		if (!upper->eb) {
26975d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
26983561b9dbSLiu Bo 			if (ret) {
26993561b9dbSLiu Bo 				if (ret < 0)
27005d4f98a2SYan Zheng 					err = ret;
27013561b9dbSLiu Bo 				else
27023561b9dbSLiu Bo 					err = -ENOENT;
27033561b9dbSLiu Bo 
27043561b9dbSLiu Bo 				btrfs_release_path(path);
27055d4f98a2SYan Zheng 				break;
27065d4f98a2SYan Zheng 			}
27075d4f98a2SYan Zheng 
27083fd0a558SYan, Zheng 			if (!upper->eb) {
27093fd0a558SYan, Zheng 				upper->eb = path->nodes[upper->level];
27103fd0a558SYan, Zheng 				path->nodes[upper->level] = NULL;
27113fd0a558SYan, Zheng 			} else {
27123fd0a558SYan, Zheng 				BUG_ON(upper->eb != path->nodes[upper->level]);
27133fd0a558SYan, Zheng 			}
27143fd0a558SYan, Zheng 
27153fd0a558SYan, Zheng 			upper->locked = 1;
27163fd0a558SYan, Zheng 			path->locks[upper->level] = 0;
27173fd0a558SYan, Zheng 
27185d4f98a2SYan Zheng 			slot = path->slots[upper->level];
2719b3b4aa74SDavid Sterba 			btrfs_release_path(path);
27205d4f98a2SYan Zheng 		} else {
27215d4f98a2SYan Zheng 			ret = btrfs_bin_search(upper->eb, key, upper->level,
27225d4f98a2SYan Zheng 					       &slot);
27235d4f98a2SYan Zheng 			BUG_ON(ret);
27245d4f98a2SYan Zheng 		}
27255d4f98a2SYan Zheng 
27265d4f98a2SYan Zheng 		bytenr = btrfs_node_blockptr(upper->eb, slot);
27273fd0a558SYan, Zheng 		if (lowest) {
27284547f4d8SLiu Bo 			if (bytenr != node->bytenr) {
27294547f4d8SLiu Bo 				btrfs_err(root->fs_info,
27304547f4d8SLiu Bo 		"lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
27314547f4d8SLiu Bo 					  bytenr, node->bytenr, slot,
27324547f4d8SLiu Bo 					  upper->eb->start);
27334547f4d8SLiu Bo 				err = -EIO;
27344547f4d8SLiu Bo 				goto next;
27354547f4d8SLiu Bo 			}
27365d4f98a2SYan Zheng 		} else {
27373fd0a558SYan, Zheng 			if (node->eb->start == bytenr)
27383fd0a558SYan, Zheng 				goto next;
27395d4f98a2SYan Zheng 		}
27405d4f98a2SYan Zheng 
2741da17066cSJeff Mahoney 		blocksize = root->fs_info->nodesize;
27425d4f98a2SYan Zheng 		generation = btrfs_node_ptr_generation(upper->eb, slot);
2743581c1760SQu Wenruo 		btrfs_node_key_to_cpu(upper->eb, &first_key, slot);
2744581c1760SQu Wenruo 		eb = read_tree_block(fs_info, bytenr, generation,
2745581c1760SQu Wenruo 				     upper->level - 1, &first_key);
274664c043deSLiu Bo 		if (IS_ERR(eb)) {
274764c043deSLiu Bo 			err = PTR_ERR(eb);
274864c043deSLiu Bo 			goto next;
274964c043deSLiu Bo 		} else if (!extent_buffer_uptodate(eb)) {
2750416bc658SJosef Bacik 			free_extent_buffer(eb);
275197d9a8a4STsutomu Itoh 			err = -EIO;
275297d9a8a4STsutomu Itoh 			goto next;
275397d9a8a4STsutomu Itoh 		}
27545d4f98a2SYan Zheng 		btrfs_tree_lock(eb);
27555d4f98a2SYan Zheng 		btrfs_set_lock_blocking(eb);
27565d4f98a2SYan Zheng 
27575d4f98a2SYan Zheng 		if (!node->eb) {
27585d4f98a2SYan Zheng 			ret = btrfs_cow_block(trans, root, eb, upper->eb,
27595d4f98a2SYan Zheng 					      slot, &eb);
27603fd0a558SYan, Zheng 			btrfs_tree_unlock(eb);
27613fd0a558SYan, Zheng 			free_extent_buffer(eb);
27625d4f98a2SYan Zheng 			if (ret < 0) {
27635d4f98a2SYan Zheng 				err = ret;
27643fd0a558SYan, Zheng 				goto next;
27655d4f98a2SYan Zheng 			}
27663fd0a558SYan, Zheng 			BUG_ON(node->eb != eb);
27675d4f98a2SYan Zheng 		} else {
27685d4f98a2SYan Zheng 			btrfs_set_node_blockptr(upper->eb, slot,
27695d4f98a2SYan Zheng 						node->eb->start);
27705d4f98a2SYan Zheng 			btrfs_set_node_ptr_generation(upper->eb, slot,
27715d4f98a2SYan Zheng 						      trans->transid);
27725d4f98a2SYan Zheng 			btrfs_mark_buffer_dirty(upper->eb);
27735d4f98a2SYan Zheng 
277484f7d8e6SJosef Bacik 			ret = btrfs_inc_extent_ref(trans, root,
27755d4f98a2SYan Zheng 						node->eb->start, blocksize,
27765d4f98a2SYan Zheng 						upper->eb->start,
27775d4f98a2SYan Zheng 						btrfs_header_owner(upper->eb),
2778b06c4bf5SFilipe Manana 						node->level, 0);
27795d4f98a2SYan Zheng 			BUG_ON(ret);
27805d4f98a2SYan Zheng 
27815d4f98a2SYan Zheng 			ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
27825d4f98a2SYan Zheng 			BUG_ON(ret);
27835d4f98a2SYan Zheng 		}
27843fd0a558SYan, Zheng next:
27853fd0a558SYan, Zheng 		if (!upper->pending)
27863fd0a558SYan, Zheng 			drop_node_buffer(upper);
27873fd0a558SYan, Zheng 		else
27883fd0a558SYan, Zheng 			unlock_node_buffer(upper);
27893fd0a558SYan, Zheng 		if (err)
27903fd0a558SYan, Zheng 			break;
27915d4f98a2SYan Zheng 	}
27923fd0a558SYan, Zheng 
27933fd0a558SYan, Zheng 	if (!err && node->pending) {
27943fd0a558SYan, Zheng 		drop_node_buffer(node);
27953fd0a558SYan, Zheng 		list_move_tail(&node->list, &rc->backref_cache.changed);
27963fd0a558SYan, Zheng 		node->pending = 0;
27975d4f98a2SYan Zheng 	}
27983fd0a558SYan, Zheng 
27995d4f98a2SYan Zheng 	path->lowest_level = 0;
28003fd0a558SYan, Zheng 	BUG_ON(err == -ENOSPC);
28015d4f98a2SYan Zheng 	return err;
28025d4f98a2SYan Zheng }
28035d4f98a2SYan Zheng 
28045d4f98a2SYan Zheng static int link_to_upper(struct btrfs_trans_handle *trans,
28053fd0a558SYan, Zheng 			 struct reloc_control *rc,
28065d4f98a2SYan Zheng 			 struct backref_node *node,
28075d4f98a2SYan Zheng 			 struct btrfs_path *path)
28085d4f98a2SYan Zheng {
28095d4f98a2SYan Zheng 	struct btrfs_key key;
28105d4f98a2SYan Zheng 
28115d4f98a2SYan Zheng 	btrfs_node_key_to_cpu(node->eb, &key, 0);
28123fd0a558SYan, Zheng 	return do_relocation(trans, rc, node, &key, path, 0);
28135d4f98a2SYan Zheng }
28145d4f98a2SYan Zheng 
28155d4f98a2SYan Zheng static int finish_pending_nodes(struct btrfs_trans_handle *trans,
28163fd0a558SYan, Zheng 				struct reloc_control *rc,
28173fd0a558SYan, Zheng 				struct btrfs_path *path, int err)
28185d4f98a2SYan Zheng {
28193fd0a558SYan, Zheng 	LIST_HEAD(list);
28203fd0a558SYan, Zheng 	struct backref_cache *cache = &rc->backref_cache;
28215d4f98a2SYan Zheng 	struct backref_node *node;
28225d4f98a2SYan Zheng 	int level;
28235d4f98a2SYan Zheng 	int ret;
28245d4f98a2SYan Zheng 
28255d4f98a2SYan Zheng 	for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
28265d4f98a2SYan Zheng 		while (!list_empty(&cache->pending[level])) {
28275d4f98a2SYan Zheng 			node = list_entry(cache->pending[level].next,
28283fd0a558SYan, Zheng 					  struct backref_node, list);
28293fd0a558SYan, Zheng 			list_move_tail(&node->list, &list);
28303fd0a558SYan, Zheng 			BUG_ON(!node->pending);
28315d4f98a2SYan Zheng 
28323fd0a558SYan, Zheng 			if (!err) {
28333fd0a558SYan, Zheng 				ret = link_to_upper(trans, rc, node, path);
28345d4f98a2SYan Zheng 				if (ret < 0)
28355d4f98a2SYan Zheng 					err = ret;
28365d4f98a2SYan Zheng 			}
28375d4f98a2SYan Zheng 		}
28383fd0a558SYan, Zheng 		list_splice_init(&list, &cache->pending[level]);
28393fd0a558SYan, Zheng 	}
28405d4f98a2SYan Zheng 	return err;
28415d4f98a2SYan Zheng }
28425d4f98a2SYan Zheng 
28435d4f98a2SYan Zheng static void mark_block_processed(struct reloc_control *rc,
28443fd0a558SYan, Zheng 				 u64 bytenr, u32 blocksize)
28453fd0a558SYan, Zheng {
28463fd0a558SYan, Zheng 	set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
2847ceeb0ae7SDavid Sterba 			EXTENT_DIRTY);
28483fd0a558SYan, Zheng }
28493fd0a558SYan, Zheng 
28503fd0a558SYan, Zheng static void __mark_block_processed(struct reloc_control *rc,
28515d4f98a2SYan Zheng 				   struct backref_node *node)
28525d4f98a2SYan Zheng {
28535d4f98a2SYan Zheng 	u32 blocksize;
28545d4f98a2SYan Zheng 	if (node->level == 0 ||
28555d4f98a2SYan Zheng 	    in_block_group(node->bytenr, rc->block_group)) {
2856da17066cSJeff Mahoney 		blocksize = rc->extent_root->fs_info->nodesize;
28573fd0a558SYan, Zheng 		mark_block_processed(rc, node->bytenr, blocksize);
28585d4f98a2SYan Zheng 	}
28595d4f98a2SYan Zheng 	node->processed = 1;
28605d4f98a2SYan Zheng }
28615d4f98a2SYan Zheng 
28625d4f98a2SYan Zheng /*
28635d4f98a2SYan Zheng  * mark a block and all blocks directly/indirectly reference the block
28645d4f98a2SYan Zheng  * as processed.
28655d4f98a2SYan Zheng  */
28665d4f98a2SYan Zheng static void update_processed_blocks(struct reloc_control *rc,
28675d4f98a2SYan Zheng 				    struct backref_node *node)
28685d4f98a2SYan Zheng {
28695d4f98a2SYan Zheng 	struct backref_node *next = node;
28705d4f98a2SYan Zheng 	struct backref_edge *edge;
28715d4f98a2SYan Zheng 	struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
28725d4f98a2SYan Zheng 	int index = 0;
28735d4f98a2SYan Zheng 
28745d4f98a2SYan Zheng 	while (next) {
28755d4f98a2SYan Zheng 		cond_resched();
28765d4f98a2SYan Zheng 		while (1) {
28775d4f98a2SYan Zheng 			if (next->processed)
28785d4f98a2SYan Zheng 				break;
28795d4f98a2SYan Zheng 
28803fd0a558SYan, Zheng 			__mark_block_processed(rc, next);
28815d4f98a2SYan Zheng 
28825d4f98a2SYan Zheng 			if (list_empty(&next->upper))
28835d4f98a2SYan Zheng 				break;
28845d4f98a2SYan Zheng 
28855d4f98a2SYan Zheng 			edge = list_entry(next->upper.next,
28865d4f98a2SYan Zheng 					  struct backref_edge, list[LOWER]);
28875d4f98a2SYan Zheng 			edges[index++] = edge;
28885d4f98a2SYan Zheng 			next = edge->node[UPPER];
28895d4f98a2SYan Zheng 		}
28905d4f98a2SYan Zheng 		next = walk_down_backref(edges, &index);
28915d4f98a2SYan Zheng 	}
28925d4f98a2SYan Zheng }
28935d4f98a2SYan Zheng 
28947476dfdaSDavid Sterba static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
28955d4f98a2SYan Zheng {
2896da17066cSJeff Mahoney 	u32 blocksize = rc->extent_root->fs_info->nodesize;
28977476dfdaSDavid Sterba 
28985d4f98a2SYan Zheng 	if (test_range_bit(&rc->processed_blocks, bytenr,
28999655d298SChris Mason 			   bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
29005d4f98a2SYan Zheng 		return 1;
29015d4f98a2SYan Zheng 	return 0;
29025d4f98a2SYan Zheng }
29035d4f98a2SYan Zheng 
29042ff7e61eSJeff Mahoney static int get_tree_block_key(struct btrfs_fs_info *fs_info,
29055d4f98a2SYan Zheng 			      struct tree_block *block)
29065d4f98a2SYan Zheng {
29075d4f98a2SYan Zheng 	struct extent_buffer *eb;
29085d4f98a2SYan Zheng 
29095d4f98a2SYan Zheng 	BUG_ON(block->key_ready);
2910581c1760SQu Wenruo 	eb = read_tree_block(fs_info, block->bytenr, block->key.offset,
2911581c1760SQu Wenruo 			     block->level, NULL);
291264c043deSLiu Bo 	if (IS_ERR(eb)) {
291364c043deSLiu Bo 		return PTR_ERR(eb);
291464c043deSLiu Bo 	} else if (!extent_buffer_uptodate(eb)) {
2915416bc658SJosef Bacik 		free_extent_buffer(eb);
2916416bc658SJosef Bacik 		return -EIO;
2917416bc658SJosef Bacik 	}
29185d4f98a2SYan Zheng 	if (block->level == 0)
29195d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &block->key, 0);
29205d4f98a2SYan Zheng 	else
29215d4f98a2SYan Zheng 		btrfs_node_key_to_cpu(eb, &block->key, 0);
29225d4f98a2SYan Zheng 	free_extent_buffer(eb);
29235d4f98a2SYan Zheng 	block->key_ready = 1;
29245d4f98a2SYan Zheng 	return 0;
29255d4f98a2SYan Zheng }
29265d4f98a2SYan Zheng 
29275d4f98a2SYan Zheng /*
29285d4f98a2SYan Zheng  * helper function to relocate a tree block
29295d4f98a2SYan Zheng  */
29305d4f98a2SYan Zheng static int relocate_tree_block(struct btrfs_trans_handle *trans,
29315d4f98a2SYan Zheng 				struct reloc_control *rc,
29325d4f98a2SYan Zheng 				struct backref_node *node,
29335d4f98a2SYan Zheng 				struct btrfs_key *key,
29345d4f98a2SYan Zheng 				struct btrfs_path *path)
29355d4f98a2SYan Zheng {
29365d4f98a2SYan Zheng 	struct btrfs_root *root;
29373fd0a558SYan, Zheng 	int ret = 0;
29385d4f98a2SYan Zheng 
29393fd0a558SYan, Zheng 	if (!node)
29405d4f98a2SYan Zheng 		return 0;
29413fd0a558SYan, Zheng 
29423fd0a558SYan, Zheng 	BUG_ON(node->processed);
2943147d256eSZhaolei 	root = select_one_root(node);
29443fd0a558SYan, Zheng 	if (root == ERR_PTR(-ENOENT)) {
29453fd0a558SYan, Zheng 		update_processed_blocks(rc, node);
29463fd0a558SYan, Zheng 		goto out;
29475d4f98a2SYan Zheng 	}
29485d4f98a2SYan Zheng 
294927cdeb70SMiao Xie 	if (!root || test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
29503fd0a558SYan, Zheng 		ret = reserve_metadata_space(trans, rc, node);
29513fd0a558SYan, Zheng 		if (ret)
29525d4f98a2SYan Zheng 			goto out;
29535d4f98a2SYan Zheng 	}
29543fd0a558SYan, Zheng 
29553fd0a558SYan, Zheng 	if (root) {
295627cdeb70SMiao Xie 		if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
29573fd0a558SYan, Zheng 			BUG_ON(node->new_bytenr);
29583fd0a558SYan, Zheng 			BUG_ON(!list_empty(&node->list));
29593fd0a558SYan, Zheng 			btrfs_record_root_in_trans(trans, root);
29603fd0a558SYan, Zheng 			root = root->reloc_root;
29613fd0a558SYan, Zheng 			node->new_bytenr = root->node->start;
29623fd0a558SYan, Zheng 			node->root = root;
29633fd0a558SYan, Zheng 			list_add_tail(&node->list, &rc->backref_cache.changed);
29643fd0a558SYan, Zheng 		} else {
29655d4f98a2SYan Zheng 			path->lowest_level = node->level;
29665d4f98a2SYan Zheng 			ret = btrfs_search_slot(trans, root, key, path, 0, 1);
2967b3b4aa74SDavid Sterba 			btrfs_release_path(path);
29683fd0a558SYan, Zheng 			if (ret > 0)
29695d4f98a2SYan Zheng 				ret = 0;
29703fd0a558SYan, Zheng 		}
29713fd0a558SYan, Zheng 		if (!ret)
29723fd0a558SYan, Zheng 			update_processed_blocks(rc, node);
29733fd0a558SYan, Zheng 	} else {
29743fd0a558SYan, Zheng 		ret = do_relocation(trans, rc, node, key, path, 1);
29753fd0a558SYan, Zheng 	}
29765d4f98a2SYan Zheng out:
29770647bf56SWang Shilong 	if (ret || node->level == 0 || node->cowonly)
29783fd0a558SYan, Zheng 		remove_backref_node(&rc->backref_cache, node);
29795d4f98a2SYan Zheng 	return ret;
29805d4f98a2SYan Zheng }
29815d4f98a2SYan Zheng 
29825d4f98a2SYan Zheng /*
29835d4f98a2SYan Zheng  * relocate a list of blocks
29845d4f98a2SYan Zheng  */
29855d4f98a2SYan Zheng static noinline_for_stack
29865d4f98a2SYan Zheng int relocate_tree_blocks(struct btrfs_trans_handle *trans,
29875d4f98a2SYan Zheng 			 struct reloc_control *rc, struct rb_root *blocks)
29885d4f98a2SYan Zheng {
29892ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
29905d4f98a2SYan Zheng 	struct backref_node *node;
29915d4f98a2SYan Zheng 	struct btrfs_path *path;
29925d4f98a2SYan Zheng 	struct tree_block *block;
299398ff7b94SQu Wenruo 	struct tree_block *next;
29945d4f98a2SYan Zheng 	int ret;
29955d4f98a2SYan Zheng 	int err = 0;
29965d4f98a2SYan Zheng 
29975d4f98a2SYan Zheng 	path = btrfs_alloc_path();
2998e1a12670SLiu Bo 	if (!path) {
2999e1a12670SLiu Bo 		err = -ENOMEM;
300034c2b290SDavid Sterba 		goto out_free_blocks;
3001e1a12670SLiu Bo 	}
30025d4f98a2SYan Zheng 
300398ff7b94SQu Wenruo 	/* Kick in readahead for tree blocks with missing keys */
300498ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
30055d4f98a2SYan Zheng 		if (!block->key_ready)
30062ff7e61eSJeff Mahoney 			readahead_tree_block(fs_info, block->bytenr);
30075d4f98a2SYan Zheng 	}
30085d4f98a2SYan Zheng 
300998ff7b94SQu Wenruo 	/* Get first keys */
301098ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
301134c2b290SDavid Sterba 		if (!block->key_ready) {
30122ff7e61eSJeff Mahoney 			err = get_tree_block_key(fs_info, block);
301334c2b290SDavid Sterba 			if (err)
301434c2b290SDavid Sterba 				goto out_free_path;
301534c2b290SDavid Sterba 		}
30165d4f98a2SYan Zheng 	}
30175d4f98a2SYan Zheng 
301898ff7b94SQu Wenruo 	/* Do tree relocation */
301998ff7b94SQu Wenruo 	rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
30203fd0a558SYan, Zheng 		node = build_backref_tree(rc, &block->key,
30215d4f98a2SYan Zheng 					  block->level, block->bytenr);
30225d4f98a2SYan Zheng 		if (IS_ERR(node)) {
30235d4f98a2SYan Zheng 			err = PTR_ERR(node);
30245d4f98a2SYan Zheng 			goto out;
30255d4f98a2SYan Zheng 		}
30265d4f98a2SYan Zheng 
30275d4f98a2SYan Zheng 		ret = relocate_tree_block(trans, rc, node, &block->key,
30285d4f98a2SYan Zheng 					  path);
30295d4f98a2SYan Zheng 		if (ret < 0) {
303098ff7b94SQu Wenruo 			if (ret != -EAGAIN || &block->rb_node == rb_first(blocks))
30315d4f98a2SYan Zheng 				err = ret;
30325d4f98a2SYan Zheng 			goto out;
30335d4f98a2SYan Zheng 		}
30345d4f98a2SYan Zheng 	}
30355d4f98a2SYan Zheng out:
30363fd0a558SYan, Zheng 	err = finish_pending_nodes(trans, rc, path, err);
30375d4f98a2SYan Zheng 
303834c2b290SDavid Sterba out_free_path:
30395d4f98a2SYan Zheng 	btrfs_free_path(path);
304034c2b290SDavid Sterba out_free_blocks:
3041e1a12670SLiu Bo 	free_block_list(blocks);
30425d4f98a2SYan Zheng 	return err;
30435d4f98a2SYan Zheng }
30445d4f98a2SYan Zheng 
30455d4f98a2SYan Zheng static noinline_for_stack
3046efa56464SYan, Zheng int prealloc_file_extent_cluster(struct inode *inode,
3047efa56464SYan, Zheng 				 struct file_extent_cluster *cluster)
3048efa56464SYan, Zheng {
3049efa56464SYan, Zheng 	u64 alloc_hint = 0;
3050efa56464SYan, Zheng 	u64 start;
3051efa56464SYan, Zheng 	u64 end;
3052efa56464SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
3053efa56464SYan, Zheng 	u64 num_bytes;
3054efa56464SYan, Zheng 	int nr = 0;
3055efa56464SYan, Zheng 	int ret = 0;
3056dcb40c19SWang Xiaoguang 	u64 prealloc_start = cluster->start - offset;
3057dcb40c19SWang Xiaoguang 	u64 prealloc_end = cluster->end - offset;
305818513091SWang Xiaoguang 	u64 cur_offset;
3059364ecf36SQu Wenruo 	struct extent_changeset *data_reserved = NULL;
3060efa56464SYan, Zheng 
3061efa56464SYan, Zheng 	BUG_ON(cluster->start != cluster->boundary[0]);
30625955102cSAl Viro 	inode_lock(inode);
3063efa56464SYan, Zheng 
3064364ecf36SQu Wenruo 	ret = btrfs_check_data_free_space(inode, &data_reserved, prealloc_start,
3065dcb40c19SWang Xiaoguang 					  prealloc_end + 1 - prealloc_start);
3066efa56464SYan, Zheng 	if (ret)
3067efa56464SYan, Zheng 		goto out;
3068efa56464SYan, Zheng 
306918513091SWang Xiaoguang 	cur_offset = prealloc_start;
3070efa56464SYan, Zheng 	while (nr < cluster->nr) {
3071efa56464SYan, Zheng 		start = cluster->boundary[nr] - offset;
3072efa56464SYan, Zheng 		if (nr + 1 < cluster->nr)
3073efa56464SYan, Zheng 			end = cluster->boundary[nr + 1] - 1 - offset;
3074efa56464SYan, Zheng 		else
3075efa56464SYan, Zheng 			end = cluster->end - offset;
3076efa56464SYan, Zheng 
3077d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, start, end);
3078efa56464SYan, Zheng 		num_bytes = end + 1 - start;
307918513091SWang Xiaoguang 		if (cur_offset < start)
3080bc42bda2SQu Wenruo 			btrfs_free_reserved_data_space(inode, data_reserved,
3081bc42bda2SQu Wenruo 					cur_offset, start - cur_offset);
3082efa56464SYan, Zheng 		ret = btrfs_prealloc_file_range(inode, 0, start,
3083efa56464SYan, Zheng 						num_bytes, num_bytes,
3084efa56464SYan, Zheng 						end + 1, &alloc_hint);
308518513091SWang Xiaoguang 		cur_offset = end + 1;
3086d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
3087efa56464SYan, Zheng 		if (ret)
3088efa56464SYan, Zheng 			break;
3089efa56464SYan, Zheng 		nr++;
3090efa56464SYan, Zheng 	}
309118513091SWang Xiaoguang 	if (cur_offset < prealloc_end)
3092bc42bda2SQu Wenruo 		btrfs_free_reserved_data_space(inode, data_reserved,
3093bc42bda2SQu Wenruo 				cur_offset, prealloc_end + 1 - cur_offset);
3094efa56464SYan, Zheng out:
30955955102cSAl Viro 	inode_unlock(inode);
3096364ecf36SQu Wenruo 	extent_changeset_free(data_reserved);
3097efa56464SYan, Zheng 	return ret;
3098efa56464SYan, Zheng }
3099efa56464SYan, Zheng 
3100efa56464SYan, Zheng static noinline_for_stack
31010257bb82SYan, Zheng int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
31020257bb82SYan, Zheng 			 u64 block_start)
31035d4f98a2SYan Zheng {
31040b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
31055d4f98a2SYan Zheng 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
31065d4f98a2SYan Zheng 	struct extent_map *em;
31070257bb82SYan, Zheng 	int ret = 0;
31085d4f98a2SYan Zheng 
3109172ddd60SDavid Sterba 	em = alloc_extent_map();
31100257bb82SYan, Zheng 	if (!em)
31110257bb82SYan, Zheng 		return -ENOMEM;
31120257bb82SYan, Zheng 
31135d4f98a2SYan Zheng 	em->start = start;
31140257bb82SYan, Zheng 	em->len = end + 1 - start;
31150257bb82SYan, Zheng 	em->block_len = em->len;
31160257bb82SYan, Zheng 	em->block_start = block_start;
31170b246afaSJeff Mahoney 	em->bdev = fs_info->fs_devices->latest_bdev;
31185d4f98a2SYan Zheng 	set_bit(EXTENT_FLAG_PINNED, &em->flags);
31195d4f98a2SYan Zheng 
3120d0082371SJeff Mahoney 	lock_extent(&BTRFS_I(inode)->io_tree, start, end);
31215d4f98a2SYan Zheng 	while (1) {
3122890871beSChris Mason 		write_lock(&em_tree->lock);
312309a2a8f9SJosef Bacik 		ret = add_extent_mapping(em_tree, em, 0);
3124890871beSChris Mason 		write_unlock(&em_tree->lock);
31255d4f98a2SYan Zheng 		if (ret != -EEXIST) {
31265d4f98a2SYan Zheng 			free_extent_map(em);
31275d4f98a2SYan Zheng 			break;
31285d4f98a2SYan Zheng 		}
3129dcdbc059SNikolay Borisov 		btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
31305d4f98a2SYan Zheng 	}
3131d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
31320257bb82SYan, Zheng 	return ret;
31330257bb82SYan, Zheng }
31345d4f98a2SYan Zheng 
31350257bb82SYan, Zheng static int relocate_file_extent_cluster(struct inode *inode,
31360257bb82SYan, Zheng 					struct file_extent_cluster *cluster)
31370257bb82SYan, Zheng {
31382ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
31390257bb82SYan, Zheng 	u64 page_start;
31400257bb82SYan, Zheng 	u64 page_end;
31410257bb82SYan, Zheng 	u64 offset = BTRFS_I(inode)->index_cnt;
31420257bb82SYan, Zheng 	unsigned long index;
31430257bb82SYan, Zheng 	unsigned long last_index;
31440257bb82SYan, Zheng 	struct page *page;
31450257bb82SYan, Zheng 	struct file_ra_state *ra;
31463b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
31470257bb82SYan, Zheng 	int nr = 0;
31480257bb82SYan, Zheng 	int ret = 0;
31490257bb82SYan, Zheng 
31500257bb82SYan, Zheng 	if (!cluster->nr)
31510257bb82SYan, Zheng 		return 0;
31520257bb82SYan, Zheng 
31530257bb82SYan, Zheng 	ra = kzalloc(sizeof(*ra), GFP_NOFS);
31540257bb82SYan, Zheng 	if (!ra)
31550257bb82SYan, Zheng 		return -ENOMEM;
31560257bb82SYan, Zheng 
3157efa56464SYan, Zheng 	ret = prealloc_file_extent_cluster(inode, cluster);
31580257bb82SYan, Zheng 	if (ret)
3159efa56464SYan, Zheng 		goto out;
31600257bb82SYan, Zheng 
31610257bb82SYan, Zheng 	file_ra_state_init(ra, inode->i_mapping);
31620257bb82SYan, Zheng 
3163efa56464SYan, Zheng 	ret = setup_extent_mapping(inode, cluster->start - offset,
3164efa56464SYan, Zheng 				   cluster->end - offset, cluster->start);
3165efa56464SYan, Zheng 	if (ret)
3166efa56464SYan, Zheng 		goto out;
3167efa56464SYan, Zheng 
316809cbfeafSKirill A. Shutemov 	index = (cluster->start - offset) >> PAGE_SHIFT;
316909cbfeafSKirill A. Shutemov 	last_index = (cluster->end - offset) >> PAGE_SHIFT;
31700257bb82SYan, Zheng 	while (index <= last_index) {
31719f3db423SNikolay Borisov 		ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
31729f3db423SNikolay Borisov 				PAGE_SIZE);
3173efa56464SYan, Zheng 		if (ret)
3174efa56464SYan, Zheng 			goto out;
3175efa56464SYan, Zheng 
31760257bb82SYan, Zheng 		page = find_lock_page(inode->i_mapping, index);
31770257bb82SYan, Zheng 		if (!page) {
31780257bb82SYan, Zheng 			page_cache_sync_readahead(inode->i_mapping,
31790257bb82SYan, Zheng 						  ra, NULL, index,
31800257bb82SYan, Zheng 						  last_index + 1 - index);
3181a94733d0SJosef Bacik 			page = find_or_create_page(inode->i_mapping, index,
31823b16a4e3SJosef Bacik 						   mask);
31830257bb82SYan, Zheng 			if (!page) {
3184691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
318543b18595SQu Wenruo 							PAGE_SIZE, true);
31860257bb82SYan, Zheng 				ret = -ENOMEM;
3187efa56464SYan, Zheng 				goto out;
31880257bb82SYan, Zheng 			}
31890257bb82SYan, Zheng 		}
31900257bb82SYan, Zheng 
31910257bb82SYan, Zheng 		if (PageReadahead(page)) {
31920257bb82SYan, Zheng 			page_cache_async_readahead(inode->i_mapping,
31930257bb82SYan, Zheng 						   ra, NULL, page, index,
31940257bb82SYan, Zheng 						   last_index + 1 - index);
31950257bb82SYan, Zheng 		}
31960257bb82SYan, Zheng 
31970257bb82SYan, Zheng 		if (!PageUptodate(page)) {
31980257bb82SYan, Zheng 			btrfs_readpage(NULL, page);
31990257bb82SYan, Zheng 			lock_page(page);
32000257bb82SYan, Zheng 			if (!PageUptodate(page)) {
32010257bb82SYan, Zheng 				unlock_page(page);
320209cbfeafSKirill A. Shutemov 				put_page(page);
3203691fa059SNikolay Borisov 				btrfs_delalloc_release_metadata(BTRFS_I(inode),
320443b18595SQu Wenruo 							PAGE_SIZE, true);
32058b62f87bSJosef Bacik 				btrfs_delalloc_release_extents(BTRFS_I(inode),
320643b18595SQu Wenruo 							       PAGE_SIZE, true);
32070257bb82SYan, Zheng 				ret = -EIO;
3208efa56464SYan, Zheng 				goto out;
32090257bb82SYan, Zheng 			}
32100257bb82SYan, Zheng 		}
32110257bb82SYan, Zheng 
32124eee4fa4SMiao Xie 		page_start = page_offset(page);
321309cbfeafSKirill A. Shutemov 		page_end = page_start + PAGE_SIZE - 1;
32140257bb82SYan, Zheng 
3215d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
32160257bb82SYan, Zheng 
32170257bb82SYan, Zheng 		set_page_extent_mapped(page);
32180257bb82SYan, Zheng 
32190257bb82SYan, Zheng 		if (nr < cluster->nr &&
32200257bb82SYan, Zheng 		    page_start + offset == cluster->boundary[nr]) {
32210257bb82SYan, Zheng 			set_extent_bits(&BTRFS_I(inode)->io_tree,
32220257bb82SYan, Zheng 					page_start, page_end,
3223ceeb0ae7SDavid Sterba 					EXTENT_BOUNDARY);
32240257bb82SYan, Zheng 			nr++;
32250257bb82SYan, Zheng 		}
32260257bb82SYan, Zheng 
3227765f3cebSNikolay Borisov 		ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
3228765f3cebSNikolay Borisov 						NULL, 0);
3229765f3cebSNikolay Borisov 		if (ret) {
3230765f3cebSNikolay Borisov 			unlock_page(page);
3231765f3cebSNikolay Borisov 			put_page(page);
3232765f3cebSNikolay Borisov 			btrfs_delalloc_release_metadata(BTRFS_I(inode),
323343b18595SQu Wenruo 							 PAGE_SIZE, true);
3234765f3cebSNikolay Borisov 			btrfs_delalloc_release_extents(BTRFS_I(inode),
323543b18595SQu Wenruo 			                               PAGE_SIZE, true);
3236765f3cebSNikolay Borisov 
3237765f3cebSNikolay Borisov 			clear_extent_bits(&BTRFS_I(inode)->io_tree,
3238765f3cebSNikolay Borisov 					  page_start, page_end,
3239765f3cebSNikolay Borisov 					  EXTENT_LOCKED | EXTENT_BOUNDARY);
3240765f3cebSNikolay Borisov 			goto out;
3241765f3cebSNikolay Borisov 
3242765f3cebSNikolay Borisov 		}
32430257bb82SYan, Zheng 		set_page_dirty(page);
32440257bb82SYan, Zheng 
32450257bb82SYan, Zheng 		unlock_extent(&BTRFS_I(inode)->io_tree,
3246d0082371SJeff Mahoney 			      page_start, page_end);
32470257bb82SYan, Zheng 		unlock_page(page);
324809cbfeafSKirill A. Shutemov 		put_page(page);
32490257bb82SYan, Zheng 
32500257bb82SYan, Zheng 		index++;
325143b18595SQu Wenruo 		btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE,
325243b18595SQu Wenruo 					       false);
3253efa56464SYan, Zheng 		balance_dirty_pages_ratelimited(inode->i_mapping);
32542ff7e61eSJeff Mahoney 		btrfs_throttle(fs_info);
32550257bb82SYan, Zheng 	}
32560257bb82SYan, Zheng 	WARN_ON(nr != cluster->nr);
3257efa56464SYan, Zheng out:
32580257bb82SYan, Zheng 	kfree(ra);
32590257bb82SYan, Zheng 	return ret;
32600257bb82SYan, Zheng }
32610257bb82SYan, Zheng 
32620257bb82SYan, Zheng static noinline_for_stack
32630257bb82SYan, Zheng int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
32640257bb82SYan, Zheng 			 struct file_extent_cluster *cluster)
32650257bb82SYan, Zheng {
32660257bb82SYan, Zheng 	int ret;
32670257bb82SYan, Zheng 
32680257bb82SYan, Zheng 	if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
32690257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32700257bb82SYan, Zheng 		if (ret)
32710257bb82SYan, Zheng 			return ret;
32720257bb82SYan, Zheng 		cluster->nr = 0;
32730257bb82SYan, Zheng 	}
32740257bb82SYan, Zheng 
32750257bb82SYan, Zheng 	if (!cluster->nr)
32760257bb82SYan, Zheng 		cluster->start = extent_key->objectid;
32770257bb82SYan, Zheng 	else
32780257bb82SYan, Zheng 		BUG_ON(cluster->nr >= MAX_EXTENTS);
32790257bb82SYan, Zheng 	cluster->end = extent_key->objectid + extent_key->offset - 1;
32800257bb82SYan, Zheng 	cluster->boundary[cluster->nr] = extent_key->objectid;
32810257bb82SYan, Zheng 	cluster->nr++;
32820257bb82SYan, Zheng 
32830257bb82SYan, Zheng 	if (cluster->nr >= MAX_EXTENTS) {
32840257bb82SYan, Zheng 		ret = relocate_file_extent_cluster(inode, cluster);
32850257bb82SYan, Zheng 		if (ret)
32860257bb82SYan, Zheng 			return ret;
32870257bb82SYan, Zheng 		cluster->nr = 0;
32880257bb82SYan, Zheng 	}
32890257bb82SYan, Zheng 	return 0;
32905d4f98a2SYan Zheng }
32915d4f98a2SYan Zheng 
32925d4f98a2SYan Zheng /*
32935d4f98a2SYan Zheng  * helper to add a tree block to the list.
32945d4f98a2SYan Zheng  * the major work is getting the generation and level of the block
32955d4f98a2SYan Zheng  */
32965d4f98a2SYan Zheng static int add_tree_block(struct reloc_control *rc,
32975d4f98a2SYan Zheng 			  struct btrfs_key *extent_key,
32985d4f98a2SYan Zheng 			  struct btrfs_path *path,
32995d4f98a2SYan Zheng 			  struct rb_root *blocks)
33005d4f98a2SYan Zheng {
33015d4f98a2SYan Zheng 	struct extent_buffer *eb;
33025d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
33035d4f98a2SYan Zheng 	struct btrfs_tree_block_info *bi;
33045d4f98a2SYan Zheng 	struct tree_block *block;
33055d4f98a2SYan Zheng 	struct rb_node *rb_node;
33065d4f98a2SYan Zheng 	u32 item_size;
33075d4f98a2SYan Zheng 	int level = -1;
33087fdf4b60SWang Shilong 	u64 generation;
33095d4f98a2SYan Zheng 
33105d4f98a2SYan Zheng 	eb =  path->nodes[0];
33115d4f98a2SYan Zheng 	item_size = btrfs_item_size_nr(eb, path->slots[0]);
33125d4f98a2SYan Zheng 
33133173a18fSJosef Bacik 	if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
33143173a18fSJosef Bacik 	    item_size >= sizeof(*ei) + sizeof(*bi)) {
33155d4f98a2SYan Zheng 		ei = btrfs_item_ptr(eb, path->slots[0],
33165d4f98a2SYan Zheng 				struct btrfs_extent_item);
33173173a18fSJosef Bacik 		if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
33185d4f98a2SYan Zheng 			bi = (struct btrfs_tree_block_info *)(ei + 1);
33195d4f98a2SYan Zheng 			level = btrfs_tree_block_level(eb, bi);
33205d4f98a2SYan Zheng 		} else {
33213173a18fSJosef Bacik 			level = (int)extent_key->offset;
33223173a18fSJosef Bacik 		}
33233173a18fSJosef Bacik 		generation = btrfs_extent_generation(eb, ei);
33246d8ff4e4SDavid Sterba 	} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
3325ba3c2b19SNikolay Borisov 		btrfs_print_v0_err(eb->fs_info);
3326ba3c2b19SNikolay Borisov 		btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3327ba3c2b19SNikolay Borisov 		return -EINVAL;
33283173a18fSJosef Bacik 	} else {
33295d4f98a2SYan Zheng 		BUG();
33305d4f98a2SYan Zheng 	}
33315d4f98a2SYan Zheng 
3332b3b4aa74SDavid Sterba 	btrfs_release_path(path);
33335d4f98a2SYan Zheng 
33345d4f98a2SYan Zheng 	BUG_ON(level == -1);
33355d4f98a2SYan Zheng 
33365d4f98a2SYan Zheng 	block = kmalloc(sizeof(*block), GFP_NOFS);
33375d4f98a2SYan Zheng 	if (!block)
33385d4f98a2SYan Zheng 		return -ENOMEM;
33395d4f98a2SYan Zheng 
33405d4f98a2SYan Zheng 	block->bytenr = extent_key->objectid;
3341da17066cSJeff Mahoney 	block->key.objectid = rc->extent_root->fs_info->nodesize;
33425d4f98a2SYan Zheng 	block->key.offset = generation;
33435d4f98a2SYan Zheng 	block->level = level;
33445d4f98a2SYan Zheng 	block->key_ready = 0;
33455d4f98a2SYan Zheng 
33465d4f98a2SYan Zheng 	rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
334743c04fb1SJeff Mahoney 	if (rb_node)
334843c04fb1SJeff Mahoney 		backref_tree_panic(rb_node, -EEXIST, block->bytenr);
33495d4f98a2SYan Zheng 
33505d4f98a2SYan Zheng 	return 0;
33515d4f98a2SYan Zheng }
33525d4f98a2SYan Zheng 
33535d4f98a2SYan Zheng /*
33545d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
33555d4f98a2SYan Zheng  */
33565d4f98a2SYan Zheng static int __add_tree_block(struct reloc_control *rc,
33575d4f98a2SYan Zheng 			    u64 bytenr, u32 blocksize,
33585d4f98a2SYan Zheng 			    struct rb_root *blocks)
33595d4f98a2SYan Zheng {
33600b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
33615d4f98a2SYan Zheng 	struct btrfs_path *path;
33625d4f98a2SYan Zheng 	struct btrfs_key key;
33635d4f98a2SYan Zheng 	int ret;
33640b246afaSJeff Mahoney 	bool skinny = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
33655d4f98a2SYan Zheng 
33667476dfdaSDavid Sterba 	if (tree_block_processed(bytenr, rc))
33675d4f98a2SYan Zheng 		return 0;
33685d4f98a2SYan Zheng 
33695d4f98a2SYan Zheng 	if (tree_search(blocks, bytenr))
33705d4f98a2SYan Zheng 		return 0;
33715d4f98a2SYan Zheng 
33725d4f98a2SYan Zheng 	path = btrfs_alloc_path();
33735d4f98a2SYan Zheng 	if (!path)
33745d4f98a2SYan Zheng 		return -ENOMEM;
3375aee68ee5SJosef Bacik again:
33765d4f98a2SYan Zheng 	key.objectid = bytenr;
3377aee68ee5SJosef Bacik 	if (skinny) {
3378aee68ee5SJosef Bacik 		key.type = BTRFS_METADATA_ITEM_KEY;
3379aee68ee5SJosef Bacik 		key.offset = (u64)-1;
3380aee68ee5SJosef Bacik 	} else {
33815d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
33825d4f98a2SYan Zheng 		key.offset = blocksize;
3383aee68ee5SJosef Bacik 	}
33845d4f98a2SYan Zheng 
33855d4f98a2SYan Zheng 	path->search_commit_root = 1;
33865d4f98a2SYan Zheng 	path->skip_locking = 1;
33875d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
33885d4f98a2SYan Zheng 	if (ret < 0)
33895d4f98a2SYan Zheng 		goto out;
33905d4f98a2SYan Zheng 
3391aee68ee5SJosef Bacik 	if (ret > 0 && skinny) {
3392aee68ee5SJosef Bacik 		if (path->slots[0]) {
3393aee68ee5SJosef Bacik 			path->slots[0]--;
3394aee68ee5SJosef Bacik 			btrfs_item_key_to_cpu(path->nodes[0], &key,
3395aee68ee5SJosef Bacik 					      path->slots[0]);
33963173a18fSJosef Bacik 			if (key.objectid == bytenr &&
3397aee68ee5SJosef Bacik 			    (key.type == BTRFS_METADATA_ITEM_KEY ||
3398aee68ee5SJosef Bacik 			     (key.type == BTRFS_EXTENT_ITEM_KEY &&
3399aee68ee5SJosef Bacik 			      key.offset == blocksize)))
34003173a18fSJosef Bacik 				ret = 0;
34013173a18fSJosef Bacik 		}
3402aee68ee5SJosef Bacik 
3403aee68ee5SJosef Bacik 		if (ret) {
3404aee68ee5SJosef Bacik 			skinny = false;
3405aee68ee5SJosef Bacik 			btrfs_release_path(path);
3406aee68ee5SJosef Bacik 			goto again;
3407aee68ee5SJosef Bacik 		}
3408aee68ee5SJosef Bacik 	}
3409cdccee99SLiu Bo 	if (ret) {
3410cdccee99SLiu Bo 		ASSERT(ret == 1);
3411cdccee99SLiu Bo 		btrfs_print_leaf(path->nodes[0]);
3412cdccee99SLiu Bo 		btrfs_err(fs_info,
3413cdccee99SLiu Bo 	     "tree block extent item (%llu) is not found in extent tree",
3414cdccee99SLiu Bo 		     bytenr);
3415cdccee99SLiu Bo 		WARN_ON(1);
3416cdccee99SLiu Bo 		ret = -EINVAL;
3417cdccee99SLiu Bo 		goto out;
3418cdccee99SLiu Bo 	}
34193173a18fSJosef Bacik 
34205d4f98a2SYan Zheng 	ret = add_tree_block(rc, &key, path, blocks);
34215d4f98a2SYan Zheng out:
34225d4f98a2SYan Zheng 	btrfs_free_path(path);
34235d4f98a2SYan Zheng 	return ret;
34245d4f98a2SYan Zheng }
34255d4f98a2SYan Zheng 
34265d4f98a2SYan Zheng /*
34275d4f98a2SYan Zheng  * helper to check if the block use full backrefs for pointers in it
34285d4f98a2SYan Zheng  */
34295d4f98a2SYan Zheng static int block_use_full_backref(struct reloc_control *rc,
34305d4f98a2SYan Zheng 				  struct extent_buffer *eb)
34315d4f98a2SYan Zheng {
34325d4f98a2SYan Zheng 	u64 flags;
34335d4f98a2SYan Zheng 	int ret;
34345d4f98a2SYan Zheng 
34355d4f98a2SYan Zheng 	if (btrfs_header_flag(eb, BTRFS_HEADER_FLAG_RELOC) ||
34365d4f98a2SYan Zheng 	    btrfs_header_backref_rev(eb) < BTRFS_MIXED_BACKREF_REV)
34375d4f98a2SYan Zheng 		return 1;
34385d4f98a2SYan Zheng 
34392ff7e61eSJeff Mahoney 	ret = btrfs_lookup_extent_info(NULL, rc->extent_root->fs_info,
34403173a18fSJosef Bacik 				       eb->start, btrfs_header_level(eb), 1,
34413173a18fSJosef Bacik 				       NULL, &flags);
34425d4f98a2SYan Zheng 	BUG_ON(ret);
34435d4f98a2SYan Zheng 
34445d4f98a2SYan Zheng 	if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
34455d4f98a2SYan Zheng 		ret = 1;
34465d4f98a2SYan Zheng 	else
34475d4f98a2SYan Zheng 		ret = 0;
34485d4f98a2SYan Zheng 	return ret;
34495d4f98a2SYan Zheng }
34505d4f98a2SYan Zheng 
34510af3d00bSJosef Bacik static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
34521bbc621eSChris Mason 				    struct btrfs_block_group_cache *block_group,
34531bbc621eSChris Mason 				    struct inode *inode,
34541bbc621eSChris Mason 				    u64 ino)
34550af3d00bSJosef Bacik {
34560af3d00bSJosef Bacik 	struct btrfs_key key;
34570af3d00bSJosef Bacik 	struct btrfs_root *root = fs_info->tree_root;
34580af3d00bSJosef Bacik 	struct btrfs_trans_handle *trans;
34590af3d00bSJosef Bacik 	int ret = 0;
34600af3d00bSJosef Bacik 
34610af3d00bSJosef Bacik 	if (inode)
34620af3d00bSJosef Bacik 		goto truncate;
34630af3d00bSJosef Bacik 
34640af3d00bSJosef Bacik 	key.objectid = ino;
34650af3d00bSJosef Bacik 	key.type = BTRFS_INODE_ITEM_KEY;
34660af3d00bSJosef Bacik 	key.offset = 0;
34670af3d00bSJosef Bacik 
34680af3d00bSJosef Bacik 	inode = btrfs_iget(fs_info->sb, &key, root, NULL);
34692e19f1f9SAl Viro 	if (IS_ERR(inode))
34700af3d00bSJosef Bacik 		return -ENOENT;
34710af3d00bSJosef Bacik 
34720af3d00bSJosef Bacik truncate:
34732ff7e61eSJeff Mahoney 	ret = btrfs_check_trunc_cache_free_space(fs_info,
34747b61cd92SMiao Xie 						 &fs_info->global_block_rsv);
34757b61cd92SMiao Xie 	if (ret)
34767b61cd92SMiao Xie 		goto out;
34777b61cd92SMiao Xie 
34787a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
34790af3d00bSJosef Bacik 	if (IS_ERR(trans)) {
34803612b495STsutomu Itoh 		ret = PTR_ERR(trans);
34810af3d00bSJosef Bacik 		goto out;
34820af3d00bSJosef Bacik 	}
34830af3d00bSJosef Bacik 
348477ab86bfSJeff Mahoney 	ret = btrfs_truncate_free_space_cache(trans, block_group, inode);
34850af3d00bSJosef Bacik 
34863a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
34872ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
34880af3d00bSJosef Bacik out:
34890af3d00bSJosef Bacik 	iput(inode);
34900af3d00bSJosef Bacik 	return ret;
34910af3d00bSJosef Bacik }
34920af3d00bSJosef Bacik 
34935d4f98a2SYan Zheng /*
34945d4f98a2SYan Zheng  * helper to add tree blocks for backref of type BTRFS_EXTENT_DATA_REF_KEY
34955d4f98a2SYan Zheng  * this function scans fs tree to find blocks reference the data extent
34965d4f98a2SYan Zheng  */
34975d4f98a2SYan Zheng static int find_data_references(struct reloc_control *rc,
34985d4f98a2SYan Zheng 				struct btrfs_key *extent_key,
34995d4f98a2SYan Zheng 				struct extent_buffer *leaf,
35005d4f98a2SYan Zheng 				struct btrfs_extent_data_ref *ref,
35015d4f98a2SYan Zheng 				struct rb_root *blocks)
35025d4f98a2SYan Zheng {
35030b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
35045d4f98a2SYan Zheng 	struct btrfs_path *path;
35055d4f98a2SYan Zheng 	struct tree_block *block;
35065d4f98a2SYan Zheng 	struct btrfs_root *root;
35075d4f98a2SYan Zheng 	struct btrfs_file_extent_item *fi;
35085d4f98a2SYan Zheng 	struct rb_node *rb_node;
35095d4f98a2SYan Zheng 	struct btrfs_key key;
35105d4f98a2SYan Zheng 	u64 ref_root;
35115d4f98a2SYan Zheng 	u64 ref_objectid;
35125d4f98a2SYan Zheng 	u64 ref_offset;
35135d4f98a2SYan Zheng 	u32 ref_count;
35145d4f98a2SYan Zheng 	u32 nritems;
35155d4f98a2SYan Zheng 	int err = 0;
35165d4f98a2SYan Zheng 	int added = 0;
35175d4f98a2SYan Zheng 	int counted;
35185d4f98a2SYan Zheng 	int ret;
35195d4f98a2SYan Zheng 
35205d4f98a2SYan Zheng 	ref_root = btrfs_extent_data_ref_root(leaf, ref);
35215d4f98a2SYan Zheng 	ref_objectid = btrfs_extent_data_ref_objectid(leaf, ref);
35225d4f98a2SYan Zheng 	ref_offset = btrfs_extent_data_ref_offset(leaf, ref);
35235d4f98a2SYan Zheng 	ref_count = btrfs_extent_data_ref_count(leaf, ref);
35245d4f98a2SYan Zheng 
35250af3d00bSJosef Bacik 	/*
35260af3d00bSJosef Bacik 	 * This is an extent belonging to the free space cache, lets just delete
35270af3d00bSJosef Bacik 	 * it and redo the search.
35280af3d00bSJosef Bacik 	 */
35290af3d00bSJosef Bacik 	if (ref_root == BTRFS_ROOT_TREE_OBJECTID) {
35300b246afaSJeff Mahoney 		ret = delete_block_group_cache(fs_info, rc->block_group,
35310af3d00bSJosef Bacik 					       NULL, ref_objectid);
35320af3d00bSJosef Bacik 		if (ret != -ENOENT)
35330af3d00bSJosef Bacik 			return ret;
35340af3d00bSJosef Bacik 		ret = 0;
35350af3d00bSJosef Bacik 	}
35360af3d00bSJosef Bacik 
35370af3d00bSJosef Bacik 	path = btrfs_alloc_path();
35380af3d00bSJosef Bacik 	if (!path)
35390af3d00bSJosef Bacik 		return -ENOMEM;
3540e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
35410af3d00bSJosef Bacik 
35420b246afaSJeff Mahoney 	root = read_fs_root(fs_info, ref_root);
35435d4f98a2SYan Zheng 	if (IS_ERR(root)) {
35445d4f98a2SYan Zheng 		err = PTR_ERR(root);
35455d4f98a2SYan Zheng 		goto out;
35465d4f98a2SYan Zheng 	}
35475d4f98a2SYan Zheng 
35485d4f98a2SYan Zheng 	key.objectid = ref_objectid;
35495d4f98a2SYan Zheng 	key.type = BTRFS_EXTENT_DATA_KEY;
355084850e8dSYan, Zheng 	if (ref_offset > ((u64)-1 << 32))
355184850e8dSYan, Zheng 		key.offset = 0;
355284850e8dSYan, Zheng 	else
355384850e8dSYan, Zheng 		key.offset = ref_offset;
35545d4f98a2SYan Zheng 
35555d4f98a2SYan Zheng 	path->search_commit_root = 1;
35565d4f98a2SYan Zheng 	path->skip_locking = 1;
35575d4f98a2SYan Zheng 	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
35585d4f98a2SYan Zheng 	if (ret < 0) {
35595d4f98a2SYan Zheng 		err = ret;
35605d4f98a2SYan Zheng 		goto out;
35615d4f98a2SYan Zheng 	}
35625d4f98a2SYan Zheng 
35635d4f98a2SYan Zheng 	leaf = path->nodes[0];
35645d4f98a2SYan Zheng 	nritems = btrfs_header_nritems(leaf);
35655d4f98a2SYan Zheng 	/*
35665d4f98a2SYan Zheng 	 * the references in tree blocks that use full backrefs
35675d4f98a2SYan Zheng 	 * are not counted in
35685d4f98a2SYan Zheng 	 */
35695d4f98a2SYan Zheng 	if (block_use_full_backref(rc, leaf))
35705d4f98a2SYan Zheng 		counted = 0;
35715d4f98a2SYan Zheng 	else
35725d4f98a2SYan Zheng 		counted = 1;
35735d4f98a2SYan Zheng 	rb_node = tree_search(blocks, leaf->start);
35745d4f98a2SYan Zheng 	if (rb_node) {
35755d4f98a2SYan Zheng 		if (counted)
35765d4f98a2SYan Zheng 			added = 1;
35775d4f98a2SYan Zheng 		else
35785d4f98a2SYan Zheng 			path->slots[0] = nritems;
35795d4f98a2SYan Zheng 	}
35805d4f98a2SYan Zheng 
35815d4f98a2SYan Zheng 	while (ref_count > 0) {
35825d4f98a2SYan Zheng 		while (path->slots[0] >= nritems) {
35835d4f98a2SYan Zheng 			ret = btrfs_next_leaf(root, path);
35845d4f98a2SYan Zheng 			if (ret < 0) {
35855d4f98a2SYan Zheng 				err = ret;
35865d4f98a2SYan Zheng 				goto out;
35875d4f98a2SYan Zheng 			}
3588fae7f21cSDulshani Gunawardhana 			if (WARN_ON(ret > 0))
35895d4f98a2SYan Zheng 				goto out;
35905d4f98a2SYan Zheng 
35915d4f98a2SYan Zheng 			leaf = path->nodes[0];
35925d4f98a2SYan Zheng 			nritems = btrfs_header_nritems(leaf);
35935d4f98a2SYan Zheng 			added = 0;
35945d4f98a2SYan Zheng 
35955d4f98a2SYan Zheng 			if (block_use_full_backref(rc, leaf))
35965d4f98a2SYan Zheng 				counted = 0;
35975d4f98a2SYan Zheng 			else
35985d4f98a2SYan Zheng 				counted = 1;
35995d4f98a2SYan Zheng 			rb_node = tree_search(blocks, leaf->start);
36005d4f98a2SYan Zheng 			if (rb_node) {
36015d4f98a2SYan Zheng 				if (counted)
36025d4f98a2SYan Zheng 					added = 1;
36035d4f98a2SYan Zheng 				else
36045d4f98a2SYan Zheng 					path->slots[0] = nritems;
36055d4f98a2SYan Zheng 			}
36065d4f98a2SYan Zheng 		}
36075d4f98a2SYan Zheng 
36085d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3609fae7f21cSDulshani Gunawardhana 		if (WARN_ON(key.objectid != ref_objectid ||
3610fae7f21cSDulshani Gunawardhana 		    key.type != BTRFS_EXTENT_DATA_KEY))
36115d4f98a2SYan Zheng 			break;
36125d4f98a2SYan Zheng 
36135d4f98a2SYan Zheng 		fi = btrfs_item_ptr(leaf, path->slots[0],
36145d4f98a2SYan Zheng 				    struct btrfs_file_extent_item);
36155d4f98a2SYan Zheng 
36165d4f98a2SYan Zheng 		if (btrfs_file_extent_type(leaf, fi) ==
36175d4f98a2SYan Zheng 		    BTRFS_FILE_EXTENT_INLINE)
36185d4f98a2SYan Zheng 			goto next;
36195d4f98a2SYan Zheng 
36205d4f98a2SYan Zheng 		if (btrfs_file_extent_disk_bytenr(leaf, fi) !=
36215d4f98a2SYan Zheng 		    extent_key->objectid)
36225d4f98a2SYan Zheng 			goto next;
36235d4f98a2SYan Zheng 
36245d4f98a2SYan Zheng 		key.offset -= btrfs_file_extent_offset(leaf, fi);
36255d4f98a2SYan Zheng 		if (key.offset != ref_offset)
36265d4f98a2SYan Zheng 			goto next;
36275d4f98a2SYan Zheng 
36285d4f98a2SYan Zheng 		if (counted)
36295d4f98a2SYan Zheng 			ref_count--;
36305d4f98a2SYan Zheng 		if (added)
36315d4f98a2SYan Zheng 			goto next;
36325d4f98a2SYan Zheng 
36337476dfdaSDavid Sterba 		if (!tree_block_processed(leaf->start, rc)) {
36345d4f98a2SYan Zheng 			block = kmalloc(sizeof(*block), GFP_NOFS);
36355d4f98a2SYan Zheng 			if (!block) {
36365d4f98a2SYan Zheng 				err = -ENOMEM;
36375d4f98a2SYan Zheng 				break;
36385d4f98a2SYan Zheng 			}
36395d4f98a2SYan Zheng 			block->bytenr = leaf->start;
36405d4f98a2SYan Zheng 			btrfs_item_key_to_cpu(leaf, &block->key, 0);
36415d4f98a2SYan Zheng 			block->level = 0;
36425d4f98a2SYan Zheng 			block->key_ready = 1;
36435d4f98a2SYan Zheng 			rb_node = tree_insert(blocks, block->bytenr,
36445d4f98a2SYan Zheng 					      &block->rb_node);
364543c04fb1SJeff Mahoney 			if (rb_node)
364643c04fb1SJeff Mahoney 				backref_tree_panic(rb_node, -EEXIST,
364743c04fb1SJeff Mahoney 						   block->bytenr);
36485d4f98a2SYan Zheng 		}
36495d4f98a2SYan Zheng 		if (counted)
36505d4f98a2SYan Zheng 			added = 1;
36515d4f98a2SYan Zheng 		else
36525d4f98a2SYan Zheng 			path->slots[0] = nritems;
36535d4f98a2SYan Zheng next:
36545d4f98a2SYan Zheng 		path->slots[0]++;
36555d4f98a2SYan Zheng 
36565d4f98a2SYan Zheng 	}
36575d4f98a2SYan Zheng out:
36585d4f98a2SYan Zheng 	btrfs_free_path(path);
36595d4f98a2SYan Zheng 	return err;
36605d4f98a2SYan Zheng }
36615d4f98a2SYan Zheng 
36625d4f98a2SYan Zheng /*
36632c016dc2SLiu Bo  * helper to find all tree blocks that reference a given data extent
36645d4f98a2SYan Zheng  */
36655d4f98a2SYan Zheng static noinline_for_stack
36665d4f98a2SYan Zheng int add_data_references(struct reloc_control *rc,
36675d4f98a2SYan Zheng 			struct btrfs_key *extent_key,
36685d4f98a2SYan Zheng 			struct btrfs_path *path,
36695d4f98a2SYan Zheng 			struct rb_root *blocks)
36705d4f98a2SYan Zheng {
36715d4f98a2SYan Zheng 	struct btrfs_key key;
36725d4f98a2SYan Zheng 	struct extent_buffer *eb;
36735d4f98a2SYan Zheng 	struct btrfs_extent_data_ref *dref;
36745d4f98a2SYan Zheng 	struct btrfs_extent_inline_ref *iref;
36755d4f98a2SYan Zheng 	unsigned long ptr;
36765d4f98a2SYan Zheng 	unsigned long end;
3677da17066cSJeff Mahoney 	u32 blocksize = rc->extent_root->fs_info->nodesize;
3678647f63bdSFilipe David Borba Manana 	int ret = 0;
36795d4f98a2SYan Zheng 	int err = 0;
36805d4f98a2SYan Zheng 
36815d4f98a2SYan Zheng 	eb = path->nodes[0];
36825d4f98a2SYan Zheng 	ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
36835d4f98a2SYan Zheng 	end = ptr + btrfs_item_size_nr(eb, path->slots[0]);
36845d4f98a2SYan Zheng 	ptr += sizeof(struct btrfs_extent_item);
36855d4f98a2SYan Zheng 
36865d4f98a2SYan Zheng 	while (ptr < end) {
36875d4f98a2SYan Zheng 		iref = (struct btrfs_extent_inline_ref *)ptr;
36883de28d57SLiu Bo 		key.type = btrfs_get_extent_inline_ref_type(eb, iref,
36893de28d57SLiu Bo 							BTRFS_REF_TYPE_DATA);
36905d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
36915d4f98a2SYan Zheng 			key.offset = btrfs_extent_inline_ref_offset(eb, iref);
36925d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
36935d4f98a2SYan Zheng 					       blocks);
36945d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
36955d4f98a2SYan Zheng 			dref = (struct btrfs_extent_data_ref *)(&iref->offset);
36965d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
36975d4f98a2SYan Zheng 						   eb, dref, blocks);
36985d4f98a2SYan Zheng 		} else {
3699af431dcbSSu Yue 			ret = -EUCLEAN;
3700b14c55a1SLiu Bo 			btrfs_err(rc->extent_root->fs_info,
3701b14c55a1SLiu Bo 		     "extent %llu slot %d has an invalid inline ref type",
3702b14c55a1SLiu Bo 			     eb->start, path->slots[0]);
37035d4f98a2SYan Zheng 		}
3704647f63bdSFilipe David Borba Manana 		if (ret) {
3705647f63bdSFilipe David Borba Manana 			err = ret;
3706647f63bdSFilipe David Borba Manana 			goto out;
3707647f63bdSFilipe David Borba Manana 		}
37085d4f98a2SYan Zheng 		ptr += btrfs_extent_inline_ref_size(key.type);
37095d4f98a2SYan Zheng 	}
37105d4f98a2SYan Zheng 	WARN_ON(ptr > end);
37115d4f98a2SYan Zheng 
37125d4f98a2SYan Zheng 	while (1) {
37135d4f98a2SYan Zheng 		cond_resched();
37145d4f98a2SYan Zheng 		eb = path->nodes[0];
37155d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(eb)) {
37165d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
37175d4f98a2SYan Zheng 			if (ret < 0) {
37185d4f98a2SYan Zheng 				err = ret;
37195d4f98a2SYan Zheng 				break;
37205d4f98a2SYan Zheng 			}
37215d4f98a2SYan Zheng 			if (ret > 0)
37225d4f98a2SYan Zheng 				break;
37235d4f98a2SYan Zheng 			eb = path->nodes[0];
37245d4f98a2SYan Zheng 		}
37255d4f98a2SYan Zheng 
37265d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
37275d4f98a2SYan Zheng 		if (key.objectid != extent_key->objectid)
37285d4f98a2SYan Zheng 			break;
37295d4f98a2SYan Zheng 
37305d4f98a2SYan Zheng 		if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
37315d4f98a2SYan Zheng 			ret = __add_tree_block(rc, key.offset, blocksize,
37325d4f98a2SYan Zheng 					       blocks);
37335d4f98a2SYan Zheng 		} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
37345d4f98a2SYan Zheng 			dref = btrfs_item_ptr(eb, path->slots[0],
37355d4f98a2SYan Zheng 					      struct btrfs_extent_data_ref);
37365d4f98a2SYan Zheng 			ret = find_data_references(rc, extent_key,
37375d4f98a2SYan Zheng 						   eb, dref, blocks);
37386d8ff4e4SDavid Sterba 		} else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
3739ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(eb->fs_info);
3740ba3c2b19SNikolay Borisov 			btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3741ba3c2b19SNikolay Borisov 			ret = -EINVAL;
37425d4f98a2SYan Zheng 		} else {
37435d4f98a2SYan Zheng 			ret = 0;
37445d4f98a2SYan Zheng 		}
37455d4f98a2SYan Zheng 		if (ret) {
37465d4f98a2SYan Zheng 			err = ret;
37475d4f98a2SYan Zheng 			break;
37485d4f98a2SYan Zheng 		}
37495d4f98a2SYan Zheng 		path->slots[0]++;
37505d4f98a2SYan Zheng 	}
3751647f63bdSFilipe David Borba Manana out:
3752b3b4aa74SDavid Sterba 	btrfs_release_path(path);
37535d4f98a2SYan Zheng 	if (err)
37545d4f98a2SYan Zheng 		free_block_list(blocks);
37555d4f98a2SYan Zheng 	return err;
37565d4f98a2SYan Zheng }
37575d4f98a2SYan Zheng 
37585d4f98a2SYan Zheng /*
37592c016dc2SLiu Bo  * helper to find next unprocessed extent
37605d4f98a2SYan Zheng  */
37615d4f98a2SYan Zheng static noinline_for_stack
3762147d256eSZhaolei int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
37633fd0a558SYan, Zheng 		     struct btrfs_key *extent_key)
37645d4f98a2SYan Zheng {
37650b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
37665d4f98a2SYan Zheng 	struct btrfs_key key;
37675d4f98a2SYan Zheng 	struct extent_buffer *leaf;
37685d4f98a2SYan Zheng 	u64 start, end, last;
37695d4f98a2SYan Zheng 	int ret;
37705d4f98a2SYan Zheng 
37715d4f98a2SYan Zheng 	last = rc->block_group->key.objectid + rc->block_group->key.offset;
37725d4f98a2SYan Zheng 	while (1) {
37735d4f98a2SYan Zheng 		cond_resched();
37745d4f98a2SYan Zheng 		if (rc->search_start >= last) {
37755d4f98a2SYan Zheng 			ret = 1;
37765d4f98a2SYan Zheng 			break;
37775d4f98a2SYan Zheng 		}
37785d4f98a2SYan Zheng 
37795d4f98a2SYan Zheng 		key.objectid = rc->search_start;
37805d4f98a2SYan Zheng 		key.type = BTRFS_EXTENT_ITEM_KEY;
37815d4f98a2SYan Zheng 		key.offset = 0;
37825d4f98a2SYan Zheng 
37835d4f98a2SYan Zheng 		path->search_commit_root = 1;
37845d4f98a2SYan Zheng 		path->skip_locking = 1;
37855d4f98a2SYan Zheng 		ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
37865d4f98a2SYan Zheng 					0, 0);
37875d4f98a2SYan Zheng 		if (ret < 0)
37885d4f98a2SYan Zheng 			break;
37895d4f98a2SYan Zheng next:
37905d4f98a2SYan Zheng 		leaf = path->nodes[0];
37915d4f98a2SYan Zheng 		if (path->slots[0] >= btrfs_header_nritems(leaf)) {
37925d4f98a2SYan Zheng 			ret = btrfs_next_leaf(rc->extent_root, path);
37935d4f98a2SYan Zheng 			if (ret != 0)
37945d4f98a2SYan Zheng 				break;
37955d4f98a2SYan Zheng 			leaf = path->nodes[0];
37965d4f98a2SYan Zheng 		}
37975d4f98a2SYan Zheng 
37985d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
37995d4f98a2SYan Zheng 		if (key.objectid >= last) {
38005d4f98a2SYan Zheng 			ret = 1;
38015d4f98a2SYan Zheng 			break;
38025d4f98a2SYan Zheng 		}
38035d4f98a2SYan Zheng 
38043173a18fSJosef Bacik 		if (key.type != BTRFS_EXTENT_ITEM_KEY &&
38053173a18fSJosef Bacik 		    key.type != BTRFS_METADATA_ITEM_KEY) {
38063173a18fSJosef Bacik 			path->slots[0]++;
38073173a18fSJosef Bacik 			goto next;
38083173a18fSJosef Bacik 		}
38093173a18fSJosef Bacik 
38103173a18fSJosef Bacik 		if (key.type == BTRFS_EXTENT_ITEM_KEY &&
38115d4f98a2SYan Zheng 		    key.objectid + key.offset <= rc->search_start) {
38125d4f98a2SYan Zheng 			path->slots[0]++;
38135d4f98a2SYan Zheng 			goto next;
38145d4f98a2SYan Zheng 		}
38155d4f98a2SYan Zheng 
38163173a18fSJosef Bacik 		if (key.type == BTRFS_METADATA_ITEM_KEY &&
38170b246afaSJeff Mahoney 		    key.objectid + fs_info->nodesize <=
38183173a18fSJosef Bacik 		    rc->search_start) {
38193173a18fSJosef Bacik 			path->slots[0]++;
38203173a18fSJosef Bacik 			goto next;
38213173a18fSJosef Bacik 		}
38223173a18fSJosef Bacik 
38235d4f98a2SYan Zheng 		ret = find_first_extent_bit(&rc->processed_blocks,
38245d4f98a2SYan Zheng 					    key.objectid, &start, &end,
3825e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
38265d4f98a2SYan Zheng 
38275d4f98a2SYan Zheng 		if (ret == 0 && start <= key.objectid) {
3828b3b4aa74SDavid Sterba 			btrfs_release_path(path);
38295d4f98a2SYan Zheng 			rc->search_start = end + 1;
38305d4f98a2SYan Zheng 		} else {
38313173a18fSJosef Bacik 			if (key.type == BTRFS_EXTENT_ITEM_KEY)
38325d4f98a2SYan Zheng 				rc->search_start = key.objectid + key.offset;
38333173a18fSJosef Bacik 			else
38343173a18fSJosef Bacik 				rc->search_start = key.objectid +
38350b246afaSJeff Mahoney 					fs_info->nodesize;
38363fd0a558SYan, Zheng 			memcpy(extent_key, &key, sizeof(key));
38375d4f98a2SYan Zheng 			return 0;
38385d4f98a2SYan Zheng 		}
38395d4f98a2SYan Zheng 	}
3840b3b4aa74SDavid Sterba 	btrfs_release_path(path);
38415d4f98a2SYan Zheng 	return ret;
38425d4f98a2SYan Zheng }
38435d4f98a2SYan Zheng 
38445d4f98a2SYan Zheng static void set_reloc_control(struct reloc_control *rc)
38455d4f98a2SYan Zheng {
38465d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38477585717fSChris Mason 
38487585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38495d4f98a2SYan Zheng 	fs_info->reloc_ctl = rc;
38507585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38515d4f98a2SYan Zheng }
38525d4f98a2SYan Zheng 
38535d4f98a2SYan Zheng static void unset_reloc_control(struct reloc_control *rc)
38545d4f98a2SYan Zheng {
38555d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
38567585717fSChris Mason 
38577585717fSChris Mason 	mutex_lock(&fs_info->reloc_mutex);
38585d4f98a2SYan Zheng 	fs_info->reloc_ctl = NULL;
38597585717fSChris Mason 	mutex_unlock(&fs_info->reloc_mutex);
38605d4f98a2SYan Zheng }
38615d4f98a2SYan Zheng 
38625d4f98a2SYan Zheng static int check_extent_flags(u64 flags)
38635d4f98a2SYan Zheng {
38645d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
38655d4f98a2SYan Zheng 	    (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
38665d4f98a2SYan Zheng 		return 1;
38675d4f98a2SYan Zheng 	if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
38685d4f98a2SYan Zheng 	    !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
38695d4f98a2SYan Zheng 		return 1;
38705d4f98a2SYan Zheng 	if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
38715d4f98a2SYan Zheng 	    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
38725d4f98a2SYan Zheng 		return 1;
38735d4f98a2SYan Zheng 	return 0;
38745d4f98a2SYan Zheng }
38755d4f98a2SYan Zheng 
38763fd0a558SYan, Zheng static noinline_for_stack
38773fd0a558SYan, Zheng int prepare_to_relocate(struct reloc_control *rc)
38783fd0a558SYan, Zheng {
38793fd0a558SYan, Zheng 	struct btrfs_trans_handle *trans;
3880ac2fabacSJosef Bacik 	int ret;
38813fd0a558SYan, Zheng 
38822ff7e61eSJeff Mahoney 	rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root->fs_info,
388366d8f3ddSMiao Xie 					      BTRFS_BLOCK_RSV_TEMP);
38843fd0a558SYan, Zheng 	if (!rc->block_rsv)
38853fd0a558SYan, Zheng 		return -ENOMEM;
38863fd0a558SYan, Zheng 
38873fd0a558SYan, Zheng 	memset(&rc->cluster, 0, sizeof(rc->cluster));
38883fd0a558SYan, Zheng 	rc->search_start = rc->block_group->key.objectid;
38893fd0a558SYan, Zheng 	rc->extents_found = 0;
38903fd0a558SYan, Zheng 	rc->nodes_relocated = 0;
38913fd0a558SYan, Zheng 	rc->merging_rsv_size = 0;
38920647bf56SWang Shilong 	rc->reserved_bytes = 0;
3893da17066cSJeff Mahoney 	rc->block_rsv->size = rc->extent_root->fs_info->nodesize *
38940647bf56SWang Shilong 			      RELOCATION_RESERVED_NODES;
3895ac2fabacSJosef Bacik 	ret = btrfs_block_rsv_refill(rc->extent_root,
3896ac2fabacSJosef Bacik 				     rc->block_rsv, rc->block_rsv->size,
3897ac2fabacSJosef Bacik 				     BTRFS_RESERVE_FLUSH_ALL);
3898ac2fabacSJosef Bacik 	if (ret)
3899ac2fabacSJosef Bacik 		return ret;
39003fd0a558SYan, Zheng 
39013fd0a558SYan, Zheng 	rc->create_reloc_tree = 1;
39023fd0a558SYan, Zheng 	set_reloc_control(rc);
39033fd0a558SYan, Zheng 
39047a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
390528818947SLiu Bo 	if (IS_ERR(trans)) {
390628818947SLiu Bo 		unset_reloc_control(rc);
390728818947SLiu Bo 		/*
390828818947SLiu Bo 		 * extent tree is not a ref_cow tree and has no reloc_root to
390928818947SLiu Bo 		 * cleanup.  And callers are responsible to free the above
391028818947SLiu Bo 		 * block rsv.
391128818947SLiu Bo 		 */
391228818947SLiu Bo 		return PTR_ERR(trans);
391328818947SLiu Bo 	}
39143a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
39153fd0a558SYan, Zheng 	return 0;
39163fd0a558SYan, Zheng }
391776dda93cSYan, Zheng 
39185d4f98a2SYan Zheng static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
39195d4f98a2SYan Zheng {
39202ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
39215d4f98a2SYan Zheng 	struct rb_root blocks = RB_ROOT;
39225d4f98a2SYan Zheng 	struct btrfs_key key;
39235d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans = NULL;
39245d4f98a2SYan Zheng 	struct btrfs_path *path;
39255d4f98a2SYan Zheng 	struct btrfs_extent_item *ei;
39265d4f98a2SYan Zheng 	u64 flags;
39275d4f98a2SYan Zheng 	u32 item_size;
39285d4f98a2SYan Zheng 	int ret;
39295d4f98a2SYan Zheng 	int err = 0;
3930c87f08caSChris Mason 	int progress = 0;
39315d4f98a2SYan Zheng 
39325d4f98a2SYan Zheng 	path = btrfs_alloc_path();
39333fd0a558SYan, Zheng 	if (!path)
39345d4f98a2SYan Zheng 		return -ENOMEM;
3935e4058b54SDavid Sterba 	path->reada = READA_FORWARD;
39363fd0a558SYan, Zheng 
39373fd0a558SYan, Zheng 	ret = prepare_to_relocate(rc);
39383fd0a558SYan, Zheng 	if (ret) {
39393fd0a558SYan, Zheng 		err = ret;
39403fd0a558SYan, Zheng 		goto out_free;
39412423fdfbSJiri Slaby 	}
39425d4f98a2SYan Zheng 
39435d4f98a2SYan Zheng 	while (1) {
39440647bf56SWang Shilong 		rc->reserved_bytes = 0;
39450647bf56SWang Shilong 		ret = btrfs_block_rsv_refill(rc->extent_root,
39460647bf56SWang Shilong 					rc->block_rsv, rc->block_rsv->size,
39470647bf56SWang Shilong 					BTRFS_RESERVE_FLUSH_ALL);
39480647bf56SWang Shilong 		if (ret) {
39490647bf56SWang Shilong 			err = ret;
39500647bf56SWang Shilong 			break;
39510647bf56SWang Shilong 		}
3952c87f08caSChris Mason 		progress++;
3953a22285a6SYan, Zheng 		trans = btrfs_start_transaction(rc->extent_root, 0);
39540f788c58SLiu Bo 		if (IS_ERR(trans)) {
39550f788c58SLiu Bo 			err = PTR_ERR(trans);
39560f788c58SLiu Bo 			trans = NULL;
39570f788c58SLiu Bo 			break;
39580f788c58SLiu Bo 		}
3959c87f08caSChris Mason restart:
39603fd0a558SYan, Zheng 		if (update_backref_cache(trans, &rc->backref_cache)) {
39613a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
396242a657f5SPan Bian 			trans = NULL;
39633fd0a558SYan, Zheng 			continue;
39643fd0a558SYan, Zheng 		}
39653fd0a558SYan, Zheng 
3966147d256eSZhaolei 		ret = find_next_extent(rc, path, &key);
39675d4f98a2SYan Zheng 		if (ret < 0)
39685d4f98a2SYan Zheng 			err = ret;
39695d4f98a2SYan Zheng 		if (ret != 0)
39705d4f98a2SYan Zheng 			break;
39715d4f98a2SYan Zheng 
39725d4f98a2SYan Zheng 		rc->extents_found++;
39735d4f98a2SYan Zheng 
39745d4f98a2SYan Zheng 		ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
39755d4f98a2SYan Zheng 				    struct btrfs_extent_item);
39763fd0a558SYan, Zheng 		item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
39775d4f98a2SYan Zheng 		if (item_size >= sizeof(*ei)) {
39785d4f98a2SYan Zheng 			flags = btrfs_extent_flags(path->nodes[0], ei);
39795d4f98a2SYan Zheng 			ret = check_extent_flags(flags);
39805d4f98a2SYan Zheng 			BUG_ON(ret);
39816d8ff4e4SDavid Sterba 		} else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
3982ba3c2b19SNikolay Borisov 			err = -EINVAL;
3983ba3c2b19SNikolay Borisov 			btrfs_print_v0_err(trans->fs_info);
3984ba3c2b19SNikolay Borisov 			btrfs_abort_transaction(trans, err);
3985ba3c2b19SNikolay Borisov 			break;
39865d4f98a2SYan Zheng 		} else {
39875d4f98a2SYan Zheng 			BUG();
39885d4f98a2SYan Zheng 		}
39895d4f98a2SYan Zheng 
39905d4f98a2SYan Zheng 		if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
39915d4f98a2SYan Zheng 			ret = add_tree_block(rc, &key, path, &blocks);
39925d4f98a2SYan Zheng 		} else if (rc->stage == UPDATE_DATA_PTRS &&
39935d4f98a2SYan Zheng 			   (flags & BTRFS_EXTENT_FLAG_DATA)) {
39945d4f98a2SYan Zheng 			ret = add_data_references(rc, &key, path, &blocks);
39955d4f98a2SYan Zheng 		} else {
3996b3b4aa74SDavid Sterba 			btrfs_release_path(path);
39975d4f98a2SYan Zheng 			ret = 0;
39985d4f98a2SYan Zheng 		}
39995d4f98a2SYan Zheng 		if (ret < 0) {
40003fd0a558SYan, Zheng 			err = ret;
40015d4f98a2SYan Zheng 			break;
40025d4f98a2SYan Zheng 		}
40035d4f98a2SYan Zheng 
40045d4f98a2SYan Zheng 		if (!RB_EMPTY_ROOT(&blocks)) {
40055d4f98a2SYan Zheng 			ret = relocate_tree_blocks(trans, rc, &blocks);
40065d4f98a2SYan Zheng 			if (ret < 0) {
40071708cc57SWang Shilong 				/*
40081708cc57SWang Shilong 				 * if we fail to relocate tree blocks, force to update
40091708cc57SWang Shilong 				 * backref cache when committing transaction.
40101708cc57SWang Shilong 				 */
40111708cc57SWang Shilong 				rc->backref_cache.last_trans = trans->transid - 1;
40121708cc57SWang Shilong 
40133fd0a558SYan, Zheng 				if (ret != -EAGAIN) {
40145d4f98a2SYan Zheng 					err = ret;
40155d4f98a2SYan Zheng 					break;
40165d4f98a2SYan Zheng 				}
40173fd0a558SYan, Zheng 				rc->extents_found--;
40183fd0a558SYan, Zheng 				rc->search_start = key.objectid;
40193fd0a558SYan, Zheng 			}
40205d4f98a2SYan Zheng 		}
40215d4f98a2SYan Zheng 
40223a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
40232ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
40243fd0a558SYan, Zheng 		trans = NULL;
40255d4f98a2SYan Zheng 
40265d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS &&
40275d4f98a2SYan Zheng 		    (flags & BTRFS_EXTENT_FLAG_DATA)) {
40285d4f98a2SYan Zheng 			rc->found_file_extent = 1;
40290257bb82SYan, Zheng 			ret = relocate_data_extent(rc->data_inode,
40303fd0a558SYan, Zheng 						   &key, &rc->cluster);
40315d4f98a2SYan Zheng 			if (ret < 0) {
40325d4f98a2SYan Zheng 				err = ret;
40335d4f98a2SYan Zheng 				break;
40345d4f98a2SYan Zheng 			}
40355d4f98a2SYan Zheng 		}
40365d4f98a2SYan Zheng 	}
4037c87f08caSChris Mason 	if (trans && progress && err == -ENOSPC) {
403843a7e99dSNikolay Borisov 		ret = btrfs_force_chunk_alloc(trans, rc->block_group->flags);
40399689457bSShilong Wang 		if (ret == 1) {
4040c87f08caSChris Mason 			err = 0;
4041c87f08caSChris Mason 			progress = 0;
4042c87f08caSChris Mason 			goto restart;
4043c87f08caSChris Mason 		}
4044c87f08caSChris Mason 	}
40453fd0a558SYan, Zheng 
4046b3b4aa74SDavid Sterba 	btrfs_release_path(path);
404791166212SDavid Sterba 	clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
40485d4f98a2SYan Zheng 
40495d4f98a2SYan Zheng 	if (trans) {
40503a45bb20SJeff Mahoney 		btrfs_end_transaction_throttle(trans);
40512ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(fs_info);
40525d4f98a2SYan Zheng 	}
40535d4f98a2SYan Zheng 
40540257bb82SYan, Zheng 	if (!err) {
40553fd0a558SYan, Zheng 		ret = relocate_file_extent_cluster(rc->data_inode,
40563fd0a558SYan, Zheng 						   &rc->cluster);
40570257bb82SYan, Zheng 		if (ret < 0)
40580257bb82SYan, Zheng 			err = ret;
40590257bb82SYan, Zheng 	}
40600257bb82SYan, Zheng 
40613fd0a558SYan, Zheng 	rc->create_reloc_tree = 0;
40623fd0a558SYan, Zheng 	set_reloc_control(rc);
40630257bb82SYan, Zheng 
40643fd0a558SYan, Zheng 	backref_cache_cleanup(&rc->backref_cache);
40652ff7e61eSJeff Mahoney 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1);
40665d4f98a2SYan Zheng 
40673fd0a558SYan, Zheng 	err = prepare_to_merge(rc, err);
40685d4f98a2SYan Zheng 
40695d4f98a2SYan Zheng 	merge_reloc_roots(rc);
40705d4f98a2SYan Zheng 
40713fd0a558SYan, Zheng 	rc->merge_reloc_tree = 0;
40725d4f98a2SYan Zheng 	unset_reloc_control(rc);
40732ff7e61eSJeff Mahoney 	btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1);
40745d4f98a2SYan Zheng 
40755d4f98a2SYan Zheng 	/* get rid of pinned extents */
40767a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
407762b99540SQu Wenruo 	if (IS_ERR(trans)) {
40783612b495STsutomu Itoh 		err = PTR_ERR(trans);
407962b99540SQu Wenruo 		goto out_free;
408062b99540SQu Wenruo 	}
40813a45bb20SJeff Mahoney 	btrfs_commit_transaction(trans);
40823fd0a558SYan, Zheng out_free:
40832ff7e61eSJeff Mahoney 	btrfs_free_block_rsv(fs_info, rc->block_rsv);
40843fd0a558SYan, Zheng 	btrfs_free_path(path);
40855d4f98a2SYan Zheng 	return err;
40865d4f98a2SYan Zheng }
40875d4f98a2SYan Zheng 
40885d4f98a2SYan Zheng static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
40890257bb82SYan, Zheng 				 struct btrfs_root *root, u64 objectid)
40905d4f98a2SYan Zheng {
40915d4f98a2SYan Zheng 	struct btrfs_path *path;
40925d4f98a2SYan Zheng 	struct btrfs_inode_item *item;
40935d4f98a2SYan Zheng 	struct extent_buffer *leaf;
40945d4f98a2SYan Zheng 	int ret;
40955d4f98a2SYan Zheng 
40965d4f98a2SYan Zheng 	path = btrfs_alloc_path();
40975d4f98a2SYan Zheng 	if (!path)
40985d4f98a2SYan Zheng 		return -ENOMEM;
40995d4f98a2SYan Zheng 
41005d4f98a2SYan Zheng 	ret = btrfs_insert_empty_inode(trans, root, path, objectid);
41015d4f98a2SYan Zheng 	if (ret)
41025d4f98a2SYan Zheng 		goto out;
41035d4f98a2SYan Zheng 
41045d4f98a2SYan Zheng 	leaf = path->nodes[0];
41055d4f98a2SYan Zheng 	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
4106b159fa28SDavid Sterba 	memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
41075d4f98a2SYan Zheng 	btrfs_set_inode_generation(leaf, item, 1);
41080257bb82SYan, Zheng 	btrfs_set_inode_size(leaf, item, 0);
41095d4f98a2SYan Zheng 	btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
41103fd0a558SYan, Zheng 	btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
41113fd0a558SYan, Zheng 					  BTRFS_INODE_PREALLOC);
41125d4f98a2SYan Zheng 	btrfs_mark_buffer_dirty(leaf);
41135d4f98a2SYan Zheng out:
41145d4f98a2SYan Zheng 	btrfs_free_path(path);
41155d4f98a2SYan Zheng 	return ret;
41165d4f98a2SYan Zheng }
41175d4f98a2SYan Zheng 
41185d4f98a2SYan Zheng /*
41195d4f98a2SYan Zheng  * helper to create inode for data relocation.
41205d4f98a2SYan Zheng  * the inode is in data relocation tree and its link count is 0
41215d4f98a2SYan Zheng  */
41223fd0a558SYan, Zheng static noinline_for_stack
41233fd0a558SYan, Zheng struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
41245d4f98a2SYan Zheng 				 struct btrfs_block_group_cache *group)
41255d4f98a2SYan Zheng {
41265d4f98a2SYan Zheng 	struct inode *inode = NULL;
41275d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
41285d4f98a2SYan Zheng 	struct btrfs_root *root;
41295d4f98a2SYan Zheng 	struct btrfs_key key;
41304624900dSZhaolei 	u64 objectid;
41315d4f98a2SYan Zheng 	int err = 0;
41325d4f98a2SYan Zheng 
41335d4f98a2SYan Zheng 	root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
41345d4f98a2SYan Zheng 	if (IS_ERR(root))
41355d4f98a2SYan Zheng 		return ERR_CAST(root);
41365d4f98a2SYan Zheng 
4137a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
41383fd0a558SYan, Zheng 	if (IS_ERR(trans))
41393fd0a558SYan, Zheng 		return ERR_CAST(trans);
41405d4f98a2SYan Zheng 
4141581bb050SLi Zefan 	err = btrfs_find_free_objectid(root, &objectid);
41425d4f98a2SYan Zheng 	if (err)
41435d4f98a2SYan Zheng 		goto out;
41445d4f98a2SYan Zheng 
41450257bb82SYan, Zheng 	err = __insert_orphan_inode(trans, root, objectid);
41465d4f98a2SYan Zheng 	BUG_ON(err);
41475d4f98a2SYan Zheng 
41485d4f98a2SYan Zheng 	key.objectid = objectid;
41495d4f98a2SYan Zheng 	key.type = BTRFS_INODE_ITEM_KEY;
41505d4f98a2SYan Zheng 	key.offset = 0;
41510b246afaSJeff Mahoney 	inode = btrfs_iget(fs_info->sb, &key, root, NULL);
41522e19f1f9SAl Viro 	BUG_ON(IS_ERR(inode));
41535d4f98a2SYan Zheng 	BTRFS_I(inode)->index_cnt = group->key.objectid;
41545d4f98a2SYan Zheng 
415573f2e545SNikolay Borisov 	err = btrfs_orphan_add(trans, BTRFS_I(inode));
41565d4f98a2SYan Zheng out:
41573a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
41582ff7e61eSJeff Mahoney 	btrfs_btree_balance_dirty(fs_info);
41595d4f98a2SYan Zheng 	if (err) {
41605d4f98a2SYan Zheng 		if (inode)
41615d4f98a2SYan Zheng 			iput(inode);
41625d4f98a2SYan Zheng 		inode = ERR_PTR(err);
41635d4f98a2SYan Zheng 	}
41645d4f98a2SYan Zheng 	return inode;
41655d4f98a2SYan Zheng }
41665d4f98a2SYan Zheng 
41679113493eSGu Jinxiang static struct reloc_control *alloc_reloc_control(void)
41683fd0a558SYan, Zheng {
41693fd0a558SYan, Zheng 	struct reloc_control *rc;
41703fd0a558SYan, Zheng 
41713fd0a558SYan, Zheng 	rc = kzalloc(sizeof(*rc), GFP_NOFS);
41723fd0a558SYan, Zheng 	if (!rc)
41733fd0a558SYan, Zheng 		return NULL;
41743fd0a558SYan, Zheng 
41753fd0a558SYan, Zheng 	INIT_LIST_HEAD(&rc->reloc_roots);
41763fd0a558SYan, Zheng 	backref_cache_init(&rc->backref_cache);
41773fd0a558SYan, Zheng 	mapping_tree_init(&rc->reloc_root_tree);
4178c6100a4bSJosef Bacik 	extent_io_tree_init(&rc->processed_blocks, NULL);
41793fd0a558SYan, Zheng 	return rc;
41803fd0a558SYan, Zheng }
41813fd0a558SYan, Zheng 
41825d4f98a2SYan Zheng /*
4183ebce0e01SAdam Borowski  * Print the block group being relocated
4184ebce0e01SAdam Borowski  */
4185ebce0e01SAdam Borowski static void describe_relocation(struct btrfs_fs_info *fs_info,
4186ebce0e01SAdam Borowski 				struct btrfs_block_group_cache *block_group)
4187ebce0e01SAdam Borowski {
4188f89e09cfSAnand Jain 	char buf[128] = {'\0'};
4189ebce0e01SAdam Borowski 
4190f89e09cfSAnand Jain 	btrfs_describe_block_groups(block_group->flags, buf, sizeof(buf));
4191ebce0e01SAdam Borowski 
4192ebce0e01SAdam Borowski 	btrfs_info(fs_info,
4193ebce0e01SAdam Borowski 		   "relocating block group %llu flags %s",
4194f89e09cfSAnand Jain 		   block_group->key.objectid, buf);
4195ebce0e01SAdam Borowski }
4196ebce0e01SAdam Borowski 
4197ebce0e01SAdam Borowski /*
41985d4f98a2SYan Zheng  * function to relocate all extents in a block group.
41995d4f98a2SYan Zheng  */
42006bccf3abSJeff Mahoney int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
42015d4f98a2SYan Zheng {
4202eede2bf3SOmar Sandoval 	struct btrfs_block_group_cache *bg;
42036bccf3abSJeff Mahoney 	struct btrfs_root *extent_root = fs_info->extent_root;
42045d4f98a2SYan Zheng 	struct reloc_control *rc;
42050af3d00bSJosef Bacik 	struct inode *inode;
42060af3d00bSJosef Bacik 	struct btrfs_path *path;
42075d4f98a2SYan Zheng 	int ret;
4208f0486c68SYan, Zheng 	int rw = 0;
42095d4f98a2SYan Zheng 	int err = 0;
42105d4f98a2SYan Zheng 
4211eede2bf3SOmar Sandoval 	bg = btrfs_lookup_block_group(fs_info, group_start);
4212eede2bf3SOmar Sandoval 	if (!bg)
4213eede2bf3SOmar Sandoval 		return -ENOENT;
4214eede2bf3SOmar Sandoval 
4215eede2bf3SOmar Sandoval 	if (btrfs_pinned_by_swapfile(fs_info, bg)) {
4216eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
4217eede2bf3SOmar Sandoval 		return -ETXTBSY;
4218eede2bf3SOmar Sandoval 	}
4219eede2bf3SOmar Sandoval 
42209113493eSGu Jinxiang 	rc = alloc_reloc_control();
4221eede2bf3SOmar Sandoval 	if (!rc) {
4222eede2bf3SOmar Sandoval 		btrfs_put_block_group(bg);
42235d4f98a2SYan Zheng 		return -ENOMEM;
4224eede2bf3SOmar Sandoval 	}
42255d4f98a2SYan Zheng 
4226f0486c68SYan, Zheng 	rc->extent_root = extent_root;
4227eede2bf3SOmar Sandoval 	rc->block_group = bg;
42285d4f98a2SYan Zheng 
4229c83488afSNikolay Borisov 	ret = btrfs_inc_block_group_ro(rc->block_group);
4230f0486c68SYan, Zheng 	if (ret) {
4231f0486c68SYan, Zheng 		err = ret;
4232f0486c68SYan, Zheng 		goto out;
4233f0486c68SYan, Zheng 	}
4234f0486c68SYan, Zheng 	rw = 1;
4235f0486c68SYan, Zheng 
42360af3d00bSJosef Bacik 	path = btrfs_alloc_path();
42370af3d00bSJosef Bacik 	if (!path) {
42380af3d00bSJosef Bacik 		err = -ENOMEM;
42390af3d00bSJosef Bacik 		goto out;
42400af3d00bSJosef Bacik 	}
42410af3d00bSJosef Bacik 
424277ab86bfSJeff Mahoney 	inode = lookup_free_space_inode(fs_info, rc->block_group, path);
42430af3d00bSJosef Bacik 	btrfs_free_path(path);
42440af3d00bSJosef Bacik 
42450af3d00bSJosef Bacik 	if (!IS_ERR(inode))
42461bbc621eSChris Mason 		ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
42470af3d00bSJosef Bacik 	else
42480af3d00bSJosef Bacik 		ret = PTR_ERR(inode);
42490af3d00bSJosef Bacik 
42500af3d00bSJosef Bacik 	if (ret && ret != -ENOENT) {
42510af3d00bSJosef Bacik 		err = ret;
42520af3d00bSJosef Bacik 		goto out;
42530af3d00bSJosef Bacik 	}
42540af3d00bSJosef Bacik 
42555d4f98a2SYan Zheng 	rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
42565d4f98a2SYan Zheng 	if (IS_ERR(rc->data_inode)) {
42575d4f98a2SYan Zheng 		err = PTR_ERR(rc->data_inode);
42585d4f98a2SYan Zheng 		rc->data_inode = NULL;
42595d4f98a2SYan Zheng 		goto out;
42605d4f98a2SYan Zheng 	}
42615d4f98a2SYan Zheng 
42620b246afaSJeff Mahoney 	describe_relocation(fs_info, rc->block_group);
42635d4f98a2SYan Zheng 
42649cfa3e34SFilipe Manana 	btrfs_wait_block_group_reservations(rc->block_group);
4265f78c436cSFilipe Manana 	btrfs_wait_nocow_writers(rc->block_group);
42666374e57aSChris Mason 	btrfs_wait_ordered_roots(fs_info, U64_MAX,
4267578def7cSFilipe Manana 				 rc->block_group->key.objectid,
4268578def7cSFilipe Manana 				 rc->block_group->key.offset);
42695d4f98a2SYan Zheng 
42705d4f98a2SYan Zheng 	while (1) {
427176dda93cSYan, Zheng 		mutex_lock(&fs_info->cleaner_mutex);
42725d4f98a2SYan Zheng 		ret = relocate_block_group(rc);
427376dda93cSYan, Zheng 		mutex_unlock(&fs_info->cleaner_mutex);
42745d4f98a2SYan Zheng 		if (ret < 0) {
42755d4f98a2SYan Zheng 			err = ret;
42763fd0a558SYan, Zheng 			goto out;
42775d4f98a2SYan Zheng 		}
42785d4f98a2SYan Zheng 
42795d4f98a2SYan Zheng 		if (rc->extents_found == 0)
42805d4f98a2SYan Zheng 			break;
42815d4f98a2SYan Zheng 
42820b246afaSJeff Mahoney 		btrfs_info(fs_info, "found %llu extents", rc->extents_found);
42835d4f98a2SYan Zheng 
42845d4f98a2SYan Zheng 		if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
42850ef8b726SJosef Bacik 			ret = btrfs_wait_ordered_range(rc->data_inode, 0,
42860ef8b726SJosef Bacik 						       (u64)-1);
42870ef8b726SJosef Bacik 			if (ret) {
42880ef8b726SJosef Bacik 				err = ret;
42890ef8b726SJosef Bacik 				goto out;
42900ef8b726SJosef Bacik 			}
42915d4f98a2SYan Zheng 			invalidate_mapping_pages(rc->data_inode->i_mapping,
42925d4f98a2SYan Zheng 						 0, -1);
42935d4f98a2SYan Zheng 			rc->stage = UPDATE_DATA_PTRS;
42945d4f98a2SYan Zheng 		}
42955d4f98a2SYan Zheng 	}
42965d4f98a2SYan Zheng 
42975d4f98a2SYan Zheng 	WARN_ON(rc->block_group->pinned > 0);
42985d4f98a2SYan Zheng 	WARN_ON(rc->block_group->reserved > 0);
42995d4f98a2SYan Zheng 	WARN_ON(btrfs_block_group_used(&rc->block_group->item) > 0);
43005d4f98a2SYan Zheng out:
4301f0486c68SYan, Zheng 	if (err && rw)
43022ff7e61eSJeff Mahoney 		btrfs_dec_block_group_ro(rc->block_group);
43035d4f98a2SYan Zheng 	iput(rc->data_inode);
43045d4f98a2SYan Zheng 	btrfs_put_block_group(rc->block_group);
43055d4f98a2SYan Zheng 	kfree(rc);
43065d4f98a2SYan Zheng 	return err;
43075d4f98a2SYan Zheng }
43085d4f98a2SYan Zheng 
430976dda93cSYan, Zheng static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
431076dda93cSYan, Zheng {
43110b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
431276dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
431379787eaaSJeff Mahoney 	int ret, err;
431476dda93cSYan, Zheng 
43150b246afaSJeff Mahoney 	trans = btrfs_start_transaction(fs_info->tree_root, 0);
431679787eaaSJeff Mahoney 	if (IS_ERR(trans))
431779787eaaSJeff Mahoney 		return PTR_ERR(trans);
431876dda93cSYan, Zheng 
431976dda93cSYan, Zheng 	memset(&root->root_item.drop_progress, 0,
432076dda93cSYan, Zheng 		sizeof(root->root_item.drop_progress));
432176dda93cSYan, Zheng 	root->root_item.drop_level = 0;
432276dda93cSYan, Zheng 	btrfs_set_root_refs(&root->root_item, 0);
43230b246afaSJeff Mahoney 	ret = btrfs_update_root(trans, fs_info->tree_root,
432476dda93cSYan, Zheng 				&root->root_key, &root->root_item);
432576dda93cSYan, Zheng 
43263a45bb20SJeff Mahoney 	err = btrfs_end_transaction(trans);
432779787eaaSJeff Mahoney 	if (err)
432879787eaaSJeff Mahoney 		return err;
432979787eaaSJeff Mahoney 	return ret;
433076dda93cSYan, Zheng }
433176dda93cSYan, Zheng 
43325d4f98a2SYan Zheng /*
43335d4f98a2SYan Zheng  * recover relocation interrupted by system crash.
43345d4f98a2SYan Zheng  *
43355d4f98a2SYan Zheng  * this function resumes merging reloc trees with corresponding fs trees.
43365d4f98a2SYan Zheng  * this is important for keeping the sharing of tree blocks
43375d4f98a2SYan Zheng  */
43385d4f98a2SYan Zheng int btrfs_recover_relocation(struct btrfs_root *root)
43395d4f98a2SYan Zheng {
43400b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
43415d4f98a2SYan Zheng 	LIST_HEAD(reloc_roots);
43425d4f98a2SYan Zheng 	struct btrfs_key key;
43435d4f98a2SYan Zheng 	struct btrfs_root *fs_root;
43445d4f98a2SYan Zheng 	struct btrfs_root *reloc_root;
43455d4f98a2SYan Zheng 	struct btrfs_path *path;
43465d4f98a2SYan Zheng 	struct extent_buffer *leaf;
43475d4f98a2SYan Zheng 	struct reloc_control *rc = NULL;
43485d4f98a2SYan Zheng 	struct btrfs_trans_handle *trans;
43495d4f98a2SYan Zheng 	int ret;
43505d4f98a2SYan Zheng 	int err = 0;
43515d4f98a2SYan Zheng 
43525d4f98a2SYan Zheng 	path = btrfs_alloc_path();
43535d4f98a2SYan Zheng 	if (!path)
43545d4f98a2SYan Zheng 		return -ENOMEM;
4355e4058b54SDavid Sterba 	path->reada = READA_BACK;
43565d4f98a2SYan Zheng 
43575d4f98a2SYan Zheng 	key.objectid = BTRFS_TREE_RELOC_OBJECTID;
43585d4f98a2SYan Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
43595d4f98a2SYan Zheng 	key.offset = (u64)-1;
43605d4f98a2SYan Zheng 
43615d4f98a2SYan Zheng 	while (1) {
43620b246afaSJeff Mahoney 		ret = btrfs_search_slot(NULL, fs_info->tree_root, &key,
43635d4f98a2SYan Zheng 					path, 0, 0);
43645d4f98a2SYan Zheng 		if (ret < 0) {
43655d4f98a2SYan Zheng 			err = ret;
43665d4f98a2SYan Zheng 			goto out;
43675d4f98a2SYan Zheng 		}
43685d4f98a2SYan Zheng 		if (ret > 0) {
43695d4f98a2SYan Zheng 			if (path->slots[0] == 0)
43705d4f98a2SYan Zheng 				break;
43715d4f98a2SYan Zheng 			path->slots[0]--;
43725d4f98a2SYan Zheng 		}
43735d4f98a2SYan Zheng 		leaf = path->nodes[0];
43745d4f98a2SYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4375b3b4aa74SDavid Sterba 		btrfs_release_path(path);
43765d4f98a2SYan Zheng 
43775d4f98a2SYan Zheng 		if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
43785d4f98a2SYan Zheng 		    key.type != BTRFS_ROOT_ITEM_KEY)
43795d4f98a2SYan Zheng 			break;
43805d4f98a2SYan Zheng 
4381cb517eabSMiao Xie 		reloc_root = btrfs_read_fs_root(root, &key);
43825d4f98a2SYan Zheng 		if (IS_ERR(reloc_root)) {
43835d4f98a2SYan Zheng 			err = PTR_ERR(reloc_root);
43845d4f98a2SYan Zheng 			goto out;
43855d4f98a2SYan Zheng 		}
43865d4f98a2SYan Zheng 
43875d4f98a2SYan Zheng 		list_add(&reloc_root->root_list, &reloc_roots);
43885d4f98a2SYan Zheng 
43895d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) > 0) {
43900b246afaSJeff Mahoney 			fs_root = read_fs_root(fs_info,
43915d4f98a2SYan Zheng 					       reloc_root->root_key.offset);
43925d4f98a2SYan Zheng 			if (IS_ERR(fs_root)) {
439376dda93cSYan, Zheng 				ret = PTR_ERR(fs_root);
439476dda93cSYan, Zheng 				if (ret != -ENOENT) {
439576dda93cSYan, Zheng 					err = ret;
43965d4f98a2SYan Zheng 					goto out;
43975d4f98a2SYan Zheng 				}
439879787eaaSJeff Mahoney 				ret = mark_garbage_root(reloc_root);
439979787eaaSJeff Mahoney 				if (ret < 0) {
440079787eaaSJeff Mahoney 					err = ret;
440179787eaaSJeff Mahoney 					goto out;
440279787eaaSJeff Mahoney 				}
440376dda93cSYan, Zheng 			}
44045d4f98a2SYan Zheng 		}
44055d4f98a2SYan Zheng 
44065d4f98a2SYan Zheng 		if (key.offset == 0)
44075d4f98a2SYan Zheng 			break;
44085d4f98a2SYan Zheng 
44095d4f98a2SYan Zheng 		key.offset--;
44105d4f98a2SYan Zheng 	}
4411b3b4aa74SDavid Sterba 	btrfs_release_path(path);
44125d4f98a2SYan Zheng 
44135d4f98a2SYan Zheng 	if (list_empty(&reloc_roots))
44145d4f98a2SYan Zheng 		goto out;
44155d4f98a2SYan Zheng 
44169113493eSGu Jinxiang 	rc = alloc_reloc_control();
44175d4f98a2SYan Zheng 	if (!rc) {
44185d4f98a2SYan Zheng 		err = -ENOMEM;
44195d4f98a2SYan Zheng 		goto out;
44205d4f98a2SYan Zheng 	}
44215d4f98a2SYan Zheng 
44220b246afaSJeff Mahoney 	rc->extent_root = fs_info->extent_root;
44235d4f98a2SYan Zheng 
44245d4f98a2SYan Zheng 	set_reloc_control(rc);
44255d4f98a2SYan Zheng 
44267a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
44273612b495STsutomu Itoh 	if (IS_ERR(trans)) {
44283612b495STsutomu Itoh 		unset_reloc_control(rc);
44293612b495STsutomu Itoh 		err = PTR_ERR(trans);
44303612b495STsutomu Itoh 		goto out_free;
44313612b495STsutomu Itoh 	}
44323fd0a558SYan, Zheng 
44333fd0a558SYan, Zheng 	rc->merge_reloc_tree = 1;
44343fd0a558SYan, Zheng 
44355d4f98a2SYan Zheng 	while (!list_empty(&reloc_roots)) {
44365d4f98a2SYan Zheng 		reloc_root = list_entry(reloc_roots.next,
44375d4f98a2SYan Zheng 					struct btrfs_root, root_list);
44385d4f98a2SYan Zheng 		list_del(&reloc_root->root_list);
44395d4f98a2SYan Zheng 
44405d4f98a2SYan Zheng 		if (btrfs_root_refs(&reloc_root->root_item) == 0) {
44415d4f98a2SYan Zheng 			list_add_tail(&reloc_root->root_list,
44425d4f98a2SYan Zheng 				      &rc->reloc_roots);
44435d4f98a2SYan Zheng 			continue;
44445d4f98a2SYan Zheng 		}
44455d4f98a2SYan Zheng 
44460b246afaSJeff Mahoney 		fs_root = read_fs_root(fs_info, reloc_root->root_key.offset);
444779787eaaSJeff Mahoney 		if (IS_ERR(fs_root)) {
444879787eaaSJeff Mahoney 			err = PTR_ERR(fs_root);
444979787eaaSJeff Mahoney 			goto out_free;
445079787eaaSJeff Mahoney 		}
44515d4f98a2SYan Zheng 
4452ffd7b339SJeff Mahoney 		err = __add_reloc_root(reloc_root);
445379787eaaSJeff Mahoney 		BUG_ON(err < 0); /* -ENOMEM or logic error */
44545d4f98a2SYan Zheng 		fs_root->reloc_root = reloc_root;
44555d4f98a2SYan Zheng 	}
44565d4f98a2SYan Zheng 
44573a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
445879787eaaSJeff Mahoney 	if (err)
445979787eaaSJeff Mahoney 		goto out_free;
44605d4f98a2SYan Zheng 
44615d4f98a2SYan Zheng 	merge_reloc_roots(rc);
44625d4f98a2SYan Zheng 
44635d4f98a2SYan Zheng 	unset_reloc_control(rc);
44645d4f98a2SYan Zheng 
44657a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(rc->extent_root);
446662b99540SQu Wenruo 	if (IS_ERR(trans)) {
44673612b495STsutomu Itoh 		err = PTR_ERR(trans);
446862b99540SQu Wenruo 		goto out_free;
446962b99540SQu Wenruo 	}
44703a45bb20SJeff Mahoney 	err = btrfs_commit_transaction(trans);
44713612b495STsutomu Itoh out_free:
44725d4f98a2SYan Zheng 	kfree(rc);
44733612b495STsutomu Itoh out:
4474aca1bba6SLiu Bo 	if (!list_empty(&reloc_roots))
4475aca1bba6SLiu Bo 		free_reloc_roots(&reloc_roots);
4476aca1bba6SLiu Bo 
44775d4f98a2SYan Zheng 	btrfs_free_path(path);
44785d4f98a2SYan Zheng 
44795d4f98a2SYan Zheng 	if (err == 0) {
44805d4f98a2SYan Zheng 		/* cleanup orphan inode in data relocation tree */
44810b246afaSJeff Mahoney 		fs_root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
44825d4f98a2SYan Zheng 		if (IS_ERR(fs_root))
44835d4f98a2SYan Zheng 			err = PTR_ERR(fs_root);
4484d7ce5843SMiao Xie 		else
448566b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(fs_root);
44865d4f98a2SYan Zheng 	}
44875d4f98a2SYan Zheng 	return err;
44885d4f98a2SYan Zheng }
44895d4f98a2SYan Zheng 
44905d4f98a2SYan Zheng /*
44915d4f98a2SYan Zheng  * helper to add ordered checksum for data relocation.
44925d4f98a2SYan Zheng  *
44935d4f98a2SYan Zheng  * cloning checksum properly handles the nodatasum extents.
44945d4f98a2SYan Zheng  * it also saves CPU time to re-calculate the checksum.
44955d4f98a2SYan Zheng  */
44965d4f98a2SYan Zheng int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
44975d4f98a2SYan Zheng {
44980b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
44995d4f98a2SYan Zheng 	struct btrfs_ordered_sum *sums;
45005d4f98a2SYan Zheng 	struct btrfs_ordered_extent *ordered;
45015d4f98a2SYan Zheng 	int ret;
45025d4f98a2SYan Zheng 	u64 disk_bytenr;
45034577b014SJosef Bacik 	u64 new_bytenr;
45045d4f98a2SYan Zheng 	LIST_HEAD(list);
45055d4f98a2SYan Zheng 
45065d4f98a2SYan Zheng 	ordered = btrfs_lookup_ordered_extent(inode, file_pos);
45075d4f98a2SYan Zheng 	BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
45085d4f98a2SYan Zheng 
45095d4f98a2SYan Zheng 	disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
45100b246afaSJeff Mahoney 	ret = btrfs_lookup_csums_range(fs_info->csum_root, disk_bytenr,
4511a2de733cSArne Jansen 				       disk_bytenr + len - 1, &list, 0);
451279787eaaSJeff Mahoney 	if (ret)
451379787eaaSJeff Mahoney 		goto out;
45145d4f98a2SYan Zheng 
45155d4f98a2SYan Zheng 	while (!list_empty(&list)) {
45165d4f98a2SYan Zheng 		sums = list_entry(list.next, struct btrfs_ordered_sum, list);
45175d4f98a2SYan Zheng 		list_del_init(&sums->list);
45185d4f98a2SYan Zheng 
45194577b014SJosef Bacik 		/*
45204577b014SJosef Bacik 		 * We need to offset the new_bytenr based on where the csum is.
45214577b014SJosef Bacik 		 * We need to do this because we will read in entire prealloc
45224577b014SJosef Bacik 		 * extents but we may have written to say the middle of the
45234577b014SJosef Bacik 		 * prealloc extent, so we need to make sure the csum goes with
45244577b014SJosef Bacik 		 * the right disk offset.
45254577b014SJosef Bacik 		 *
45264577b014SJosef Bacik 		 * We can do this because the data reloc inode refers strictly
45274577b014SJosef Bacik 		 * to the on disk bytes, so we don't have to worry about
45284577b014SJosef Bacik 		 * disk_len vs real len like with real inodes since it's all
45294577b014SJosef Bacik 		 * disk length.
45304577b014SJosef Bacik 		 */
45314577b014SJosef Bacik 		new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
45324577b014SJosef Bacik 		sums->bytenr = new_bytenr;
45335d4f98a2SYan Zheng 
45345d4f98a2SYan Zheng 		btrfs_add_ordered_sum(inode, ordered, sums);
45355d4f98a2SYan Zheng 	}
453679787eaaSJeff Mahoney out:
45375d4f98a2SYan Zheng 	btrfs_put_ordered_extent(ordered);
4538411fc6bcSAndi Kleen 	return ret;
45395d4f98a2SYan Zheng }
45403fd0a558SYan, Zheng 
454183d4cfd4SJosef Bacik int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
45423fd0a558SYan, Zheng 			  struct btrfs_root *root, struct extent_buffer *buf,
45433fd0a558SYan, Zheng 			  struct extent_buffer *cow)
45443fd0a558SYan, Zheng {
45450b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
45463fd0a558SYan, Zheng 	struct reloc_control *rc;
45473fd0a558SYan, Zheng 	struct backref_node *node;
45483fd0a558SYan, Zheng 	int first_cow = 0;
45493fd0a558SYan, Zheng 	int level;
455083d4cfd4SJosef Bacik 	int ret = 0;
45513fd0a558SYan, Zheng 
45520b246afaSJeff Mahoney 	rc = fs_info->reloc_ctl;
45533fd0a558SYan, Zheng 	if (!rc)
455483d4cfd4SJosef Bacik 		return 0;
45553fd0a558SYan, Zheng 
45563fd0a558SYan, Zheng 	BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
45573fd0a558SYan, Zheng 	       root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
45583fd0a558SYan, Zheng 
4559c974c464SWang Shilong 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
4560c974c464SWang Shilong 		if (buf == root->node)
4561c974c464SWang Shilong 			__update_reloc_root(root, cow->start);
4562c974c464SWang Shilong 	}
4563c974c464SWang Shilong 
45643fd0a558SYan, Zheng 	level = btrfs_header_level(buf);
45653fd0a558SYan, Zheng 	if (btrfs_header_generation(buf) <=
45663fd0a558SYan, Zheng 	    btrfs_root_last_snapshot(&root->root_item))
45673fd0a558SYan, Zheng 		first_cow = 1;
45683fd0a558SYan, Zheng 
45693fd0a558SYan, Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
45703fd0a558SYan, Zheng 	    rc->create_reloc_tree) {
45713fd0a558SYan, Zheng 		WARN_ON(!first_cow && level == 0);
45723fd0a558SYan, Zheng 
45733fd0a558SYan, Zheng 		node = rc->backref_cache.path[level];
45743fd0a558SYan, Zheng 		BUG_ON(node->bytenr != buf->start &&
45753fd0a558SYan, Zheng 		       node->new_bytenr != buf->start);
45763fd0a558SYan, Zheng 
45773fd0a558SYan, Zheng 		drop_node_buffer(node);
45783fd0a558SYan, Zheng 		extent_buffer_get(cow);
45793fd0a558SYan, Zheng 		node->eb = cow;
45803fd0a558SYan, Zheng 		node->new_bytenr = cow->start;
45813fd0a558SYan, Zheng 
45823fd0a558SYan, Zheng 		if (!node->pending) {
45833fd0a558SYan, Zheng 			list_move_tail(&node->list,
45843fd0a558SYan, Zheng 				       &rc->backref_cache.pending[level]);
45853fd0a558SYan, Zheng 			node->pending = 1;
45863fd0a558SYan, Zheng 		}
45873fd0a558SYan, Zheng 
45883fd0a558SYan, Zheng 		if (first_cow)
45893fd0a558SYan, Zheng 			__mark_block_processed(rc, node);
45903fd0a558SYan, Zheng 
45913fd0a558SYan, Zheng 		if (first_cow && level > 0)
45923fd0a558SYan, Zheng 			rc->nodes_relocated += buf->len;
45933fd0a558SYan, Zheng 	}
45943fd0a558SYan, Zheng 
459583d4cfd4SJosef Bacik 	if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
45963fd0a558SYan, Zheng 		ret = replace_file_extents(trans, rc, root, cow);
459783d4cfd4SJosef Bacik 	return ret;
45983fd0a558SYan, Zheng }
45993fd0a558SYan, Zheng 
46003fd0a558SYan, Zheng /*
46013fd0a558SYan, Zheng  * called before creating snapshot. it calculates metadata reservation
460201327610SNicholas D Steeves  * required for relocating tree blocks in the snapshot
46033fd0a558SYan, Zheng  */
4604147d256eSZhaolei void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
46053fd0a558SYan, Zheng 			      u64 *bytes_to_reserve)
46063fd0a558SYan, Zheng {
46073fd0a558SYan, Zheng 	struct btrfs_root *root;
46083fd0a558SYan, Zheng 	struct reloc_control *rc;
46093fd0a558SYan, Zheng 
46103fd0a558SYan, Zheng 	root = pending->root;
46113fd0a558SYan, Zheng 	if (!root->reloc_root)
46123fd0a558SYan, Zheng 		return;
46133fd0a558SYan, Zheng 
46143fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
46153fd0a558SYan, Zheng 	if (!rc->merge_reloc_tree)
46163fd0a558SYan, Zheng 		return;
46173fd0a558SYan, Zheng 
46183fd0a558SYan, Zheng 	root = root->reloc_root;
46193fd0a558SYan, Zheng 	BUG_ON(btrfs_root_refs(&root->root_item) == 0);
46203fd0a558SYan, Zheng 	/*
46213fd0a558SYan, Zheng 	 * relocation is in the stage of merging trees. the space
46223fd0a558SYan, Zheng 	 * used by merging a reloc tree is twice the size of
46233fd0a558SYan, Zheng 	 * relocated tree nodes in the worst case. half for cowing
46243fd0a558SYan, Zheng 	 * the reloc tree, half for cowing the fs tree. the space
46253fd0a558SYan, Zheng 	 * used by cowing the reloc tree will be freed after the
46263fd0a558SYan, Zheng 	 * tree is dropped. if we create snapshot, cowing the fs
46273fd0a558SYan, Zheng 	 * tree may use more space than it frees. so we need
46283fd0a558SYan, Zheng 	 * reserve extra space.
46293fd0a558SYan, Zheng 	 */
46303fd0a558SYan, Zheng 	*bytes_to_reserve += rc->nodes_relocated;
46313fd0a558SYan, Zheng }
46323fd0a558SYan, Zheng 
46333fd0a558SYan, Zheng /*
46343fd0a558SYan, Zheng  * called after snapshot is created. migrate block reservation
46353fd0a558SYan, Zheng  * and create reloc root for the newly created snapshot
46363fd0a558SYan, Zheng  */
463749b25e05SJeff Mahoney int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
46383fd0a558SYan, Zheng 			       struct btrfs_pending_snapshot *pending)
46393fd0a558SYan, Zheng {
46403fd0a558SYan, Zheng 	struct btrfs_root *root = pending->root;
46413fd0a558SYan, Zheng 	struct btrfs_root *reloc_root;
46423fd0a558SYan, Zheng 	struct btrfs_root *new_root;
46433fd0a558SYan, Zheng 	struct reloc_control *rc;
46443fd0a558SYan, Zheng 	int ret;
46453fd0a558SYan, Zheng 
46463fd0a558SYan, Zheng 	if (!root->reloc_root)
464749b25e05SJeff Mahoney 		return 0;
46483fd0a558SYan, Zheng 
46493fd0a558SYan, Zheng 	rc = root->fs_info->reloc_ctl;
46503fd0a558SYan, Zheng 	rc->merging_rsv_size += rc->nodes_relocated;
46513fd0a558SYan, Zheng 
46523fd0a558SYan, Zheng 	if (rc->merge_reloc_tree) {
46533fd0a558SYan, Zheng 		ret = btrfs_block_rsv_migrate(&pending->block_rsv,
46543fd0a558SYan, Zheng 					      rc->block_rsv,
46553a584174SLu Fengqi 					      rc->nodes_relocated, true);
465649b25e05SJeff Mahoney 		if (ret)
465749b25e05SJeff Mahoney 			return ret;
46583fd0a558SYan, Zheng 	}
46593fd0a558SYan, Zheng 
46603fd0a558SYan, Zheng 	new_root = pending->snap;
46613fd0a558SYan, Zheng 	reloc_root = create_reloc_root(trans, root->reloc_root,
46623fd0a558SYan, Zheng 				       new_root->root_key.objectid);
466349b25e05SJeff Mahoney 	if (IS_ERR(reloc_root))
466449b25e05SJeff Mahoney 		return PTR_ERR(reloc_root);
46653fd0a558SYan, Zheng 
4666ffd7b339SJeff Mahoney 	ret = __add_reloc_root(reloc_root);
4667ffd7b339SJeff Mahoney 	BUG_ON(ret < 0);
46683fd0a558SYan, Zheng 	new_root->reloc_root = reloc_root;
46693fd0a558SYan, Zheng 
467049b25e05SJeff Mahoney 	if (rc->create_reloc_tree)
46713fd0a558SYan, Zheng 		ret = clone_backref_node(trans, rc, root, reloc_root);
467249b25e05SJeff Mahoney 	return ret;
46733fd0a558SYan, Zheng }
4674