xref: /openbmc/linux/fs/btrfs/transaction.c (revision a6d155d2)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
26cbd5570SChris Mason /*
36cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
46cbd5570SChris Mason  */
56cbd5570SChris Mason 
679154b1bSChris Mason #include <linux/fs.h>
75a0e3ad6STejun Heo #include <linux/slab.h>
834088780SChris Mason #include <linux/sched.h>
9d3c2fdcfSChris Mason #include <linux/writeback.h>
105f39d397SChris Mason #include <linux/pagemap.h>
115f2cc086SChris Mason #include <linux/blkdev.h>
128ea05e3aSAlexander Block #include <linux/uuid.h>
1379154b1bSChris Mason #include "ctree.h"
1479154b1bSChris Mason #include "disk-io.h"
1579154b1bSChris Mason #include "transaction.h"
16925baeddSChris Mason #include "locking.h"
17e02119d5SChris Mason #include "tree-log.h"
18581bb050SLi Zefan #include "inode-map.h"
19733f4fbbSStefan Behrens #include "volumes.h"
208dabb742SStefan Behrens #include "dev-replace.h"
21fcebe456SJosef Bacik #include "qgroup.h"
2279154b1bSChris Mason 
230f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
240f7d52f4SChris Mason 
25e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
264a9d8bdeSMiao Xie 	[TRANS_STATE_RUNNING]		= 0U,
27bcf3a3e7SNikolay Borisov 	[TRANS_STATE_BLOCKED]		=  __TRANS_START,
28bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_START]	= (__TRANS_START | __TRANS_ATTACH),
29bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_DOING]	= (__TRANS_START |
304a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
31a6d155d2SFilipe Manana 					   __TRANS_JOIN |
32a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
33bcf3a3e7SNikolay Borisov 	[TRANS_STATE_UNBLOCKED]		= (__TRANS_START |
344a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
354a9d8bdeSMiao Xie 					   __TRANS_JOIN |
36a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
37a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
38bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMPLETED]		= (__TRANS_START |
394a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
404a9d8bdeSMiao Xie 					   __TRANS_JOIN |
41a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
42a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
434a9d8bdeSMiao Xie };
444a9d8bdeSMiao Xie 
45724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction)
4679154b1bSChris Mason {
479b64f57dSElena Reshetova 	WARN_ON(refcount_read(&transaction->use_count) == 0);
489b64f57dSElena Reshetova 	if (refcount_dec_and_test(&transaction->use_count)) {
49a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
505c9d028bSLiu Bo 		WARN_ON(!RB_EMPTY_ROOT(
515c9d028bSLiu Bo 				&transaction->delayed_refs.href_root.rb_root));
521262133bSJosef Bacik 		if (transaction->delayed_refs.pending_csums)
53ab8d0fc4SJeff Mahoney 			btrfs_err(transaction->fs_info,
54ab8d0fc4SJeff Mahoney 				  "pending csums is %llu",
551262133bSJosef Bacik 				  transaction->delayed_refs.pending_csums);
567785a663SFilipe Manana 		/*
577785a663SFilipe Manana 		 * If any block groups are found in ->deleted_bgs then it's
587785a663SFilipe Manana 		 * because the transaction was aborted and a commit did not
597785a663SFilipe Manana 		 * happen (things failed before writing the new superblock
607785a663SFilipe Manana 		 * and calling btrfs_finish_extent_commit()), so we can not
617785a663SFilipe Manana 		 * discard the physical locations of the block groups.
627785a663SFilipe Manana 		 */
637785a663SFilipe Manana 		while (!list_empty(&transaction->deleted_bgs)) {
647785a663SFilipe Manana 			struct btrfs_block_group_cache *cache;
657785a663SFilipe Manana 
667785a663SFilipe Manana 			cache = list_first_entry(&transaction->deleted_bgs,
677785a663SFilipe Manana 						 struct btrfs_block_group_cache,
687785a663SFilipe Manana 						 bg_list);
697785a663SFilipe Manana 			list_del_init(&cache->bg_list);
707785a663SFilipe Manana 			btrfs_put_block_group_trimming(cache);
717785a663SFilipe Manana 			btrfs_put_block_group(cache);
727785a663SFilipe Manana 		}
73bbbf7243SNikolay Borisov 		WARN_ON(!list_empty(&transaction->dev_update_list));
744b5faeacSDavid Sterba 		kfree(transaction);
7579154b1bSChris Mason 	}
7678fae27eSChris Mason }
7779154b1bSChris Mason 
7816916a88SNikolay Borisov static noinline void switch_commit_roots(struct btrfs_transaction *trans)
79817d52f8SJosef Bacik {
8016916a88SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
819e351cc8SJosef Bacik 	struct btrfs_root *root, *tmp;
829e351cc8SJosef Bacik 
839e351cc8SJosef Bacik 	down_write(&fs_info->commit_root_sem);
849e351cc8SJosef Bacik 	list_for_each_entry_safe(root, tmp, &trans->switch_commits,
859e351cc8SJosef Bacik 				 dirty_list) {
869e351cc8SJosef Bacik 		list_del_init(&root->dirty_list);
87817d52f8SJosef Bacik 		free_extent_buffer(root->commit_root);
88817d52f8SJosef Bacik 		root->commit_root = btrfs_root_node(root);
894fd786e6SMisono Tomohiro 		if (is_fstree(root->root_key.objectid))
909e351cc8SJosef Bacik 			btrfs_unpin_free_ino(root);
9141e7acd3SNikolay Borisov 		extent_io_tree_release(&root->dirty_log_pages);
92370a11b8SQu Wenruo 		btrfs_qgroup_clean_swapped_blocks(root);
939e351cc8SJosef Bacik 	}
942b9dbef2SJosef Bacik 
952b9dbef2SJosef Bacik 	/* We can free old roots now. */
962b9dbef2SJosef Bacik 	spin_lock(&trans->dropped_roots_lock);
972b9dbef2SJosef Bacik 	while (!list_empty(&trans->dropped_roots)) {
982b9dbef2SJosef Bacik 		root = list_first_entry(&trans->dropped_roots,
992b9dbef2SJosef Bacik 					struct btrfs_root, root_list);
1002b9dbef2SJosef Bacik 		list_del_init(&root->root_list);
1012b9dbef2SJosef Bacik 		spin_unlock(&trans->dropped_roots_lock);
1022b9dbef2SJosef Bacik 		btrfs_drop_and_free_fs_root(fs_info, root);
1032b9dbef2SJosef Bacik 		spin_lock(&trans->dropped_roots_lock);
1042b9dbef2SJosef Bacik 	}
1052b9dbef2SJosef Bacik 	spin_unlock(&trans->dropped_roots_lock);
1069e351cc8SJosef Bacik 	up_write(&fs_info->commit_root_sem);
107817d52f8SJosef Bacik }
108817d52f8SJosef Bacik 
1090860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
1100860adfdSMiao Xie 					 unsigned int type)
1110860adfdSMiao Xie {
1120860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
1130860adfdSMiao Xie 		atomic_inc(&trans->num_extwriters);
1140860adfdSMiao Xie }
1150860adfdSMiao Xie 
1160860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
1170860adfdSMiao Xie 					 unsigned int type)
1180860adfdSMiao Xie {
1190860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
1200860adfdSMiao Xie 		atomic_dec(&trans->num_extwriters);
1210860adfdSMiao Xie }
1220860adfdSMiao Xie 
1230860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans,
1240860adfdSMiao Xie 					  unsigned int type)
1250860adfdSMiao Xie {
1260860adfdSMiao Xie 	atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
1270860adfdSMiao Xie }
1280860adfdSMiao Xie 
1290860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans)
1300860adfdSMiao Xie {
1310860adfdSMiao Xie 	return atomic_read(&trans->num_extwriters);
132178260b2SMiao Xie }
133178260b2SMiao Xie 
134d352ac68SChris Mason /*
135fb6dea26SJosef Bacik  * To be called after all the new block groups attached to the transaction
136fb6dea26SJosef Bacik  * handle have been created (btrfs_create_pending_block_groups()).
137fb6dea26SJosef Bacik  */
138fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
139fb6dea26SJosef Bacik {
140fb6dea26SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
141fb6dea26SJosef Bacik 
142fb6dea26SJosef Bacik 	if (!trans->chunk_bytes_reserved)
143fb6dea26SJosef Bacik 		return;
144fb6dea26SJosef Bacik 
145fb6dea26SJosef Bacik 	WARN_ON_ONCE(!list_empty(&trans->new_bgs));
146fb6dea26SJosef Bacik 
147fb6dea26SJosef Bacik 	btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
148fb6dea26SJosef Bacik 				trans->chunk_bytes_reserved);
149fb6dea26SJosef Bacik 	trans->chunk_bytes_reserved = 0;
150fb6dea26SJosef Bacik }
151fb6dea26SJosef Bacik 
152fb6dea26SJosef Bacik /*
153d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
154d352ac68SChris Mason  */
1552ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info,
1562ff7e61eSJeff Mahoney 				     unsigned int type)
15779154b1bSChris Mason {
15879154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
159a4abeea4SJosef Bacik 
16019ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
161d43317dcSChris Mason loop:
16249b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
16387533c47SMiao Xie 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
16419ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
16549b25e05SJeff Mahoney 		return -EROFS;
16649b25e05SJeff Mahoney 	}
16749b25e05SJeff Mahoney 
16819ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
169a4abeea4SJosef Bacik 	if (cur_trans) {
170871383beSDavid Sterba 		if (cur_trans->aborted) {
17119ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
17249b25e05SJeff Mahoney 			return cur_trans->aborted;
173871383beSDavid Sterba 		}
1744a9d8bdeSMiao Xie 		if (btrfs_blocked_trans_types[cur_trans->state] & type) {
175178260b2SMiao Xie 			spin_unlock(&fs_info->trans_lock);
176178260b2SMiao Xie 			return -EBUSY;
177178260b2SMiao Xie 		}
1789b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
179a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
1800860adfdSMiao Xie 		extwriter_counter_inc(cur_trans, type);
18119ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
182a4abeea4SJosef Bacik 		return 0;
183a4abeea4SJosef Bacik 	}
18419ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
185a4abeea4SJosef Bacik 
186354aa0fbSMiao Xie 	/*
187354aa0fbSMiao Xie 	 * If we are ATTACH, we just want to catch the current transaction,
188354aa0fbSMiao Xie 	 * and commit it. If there is no transaction, just return ENOENT.
189354aa0fbSMiao Xie 	 */
190354aa0fbSMiao Xie 	if (type == TRANS_ATTACH)
191354aa0fbSMiao Xie 		return -ENOENT;
192354aa0fbSMiao Xie 
1934a9d8bdeSMiao Xie 	/*
1944a9d8bdeSMiao Xie 	 * JOIN_NOLOCK only happens during the transaction commit, so
1954a9d8bdeSMiao Xie 	 * it is impossible that ->running_transaction is NULL
1964a9d8bdeSMiao Xie 	 */
1974a9d8bdeSMiao Xie 	BUG_ON(type == TRANS_JOIN_NOLOCK);
1984a9d8bdeSMiao Xie 
1994b5faeacSDavid Sterba 	cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
200db5b493aSTsutomu Itoh 	if (!cur_trans)
201db5b493aSTsutomu Itoh 		return -ENOMEM;
202d43317dcSChris Mason 
20319ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
20419ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
205d43317dcSChris Mason 		/*
206d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
2074a9d8bdeSMiao Xie 		 * to redo the checks above
208d43317dcSChris Mason 		 */
2094b5faeacSDavid Sterba 		kfree(cur_trans);
210d43317dcSChris Mason 		goto loop;
21187533c47SMiao Xie 	} else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
212e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
2134b5faeacSDavid Sterba 		kfree(cur_trans);
2147b8b92afSJosef Bacik 		return -EROFS;
215a4abeea4SJosef Bacik 	}
216d43317dcSChris Mason 
217ab8d0fc4SJeff Mahoney 	cur_trans->fs_info = fs_info;
21813c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
2190860adfdSMiao Xie 	extwriter_counter_init(cur_trans, type);
22079154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
22179154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
2224a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_RUNNING;
223a4abeea4SJosef Bacik 	/*
224a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
225a4abeea4SJosef Bacik 	 * commit the transaction.
226a4abeea4SJosef Bacik 	 */
2279b64f57dSElena Reshetova 	refcount_set(&cur_trans->use_count, 2);
2283204d33cSJosef Bacik 	cur_trans->flags = 0;
229afd48513SArnd Bergmann 	cur_trans->start_time = ktime_get_seconds();
23056bec294SChris Mason 
231a099d0fdSAlexandru Moise 	memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
232a099d0fdSAlexandru Moise 
2335c9d028bSLiu Bo 	cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
2343368d001SQu Wenruo 	cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
235d7df2c79SJosef Bacik 	atomic_set(&cur_trans->delayed_refs.num_entries, 0);
23620b297d6SJan Schmidt 
23720b297d6SJan Schmidt 	/*
23820b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
23920b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
24020b297d6SJan Schmidt 	 */
24120b297d6SJan Schmidt 	smp_mb();
24231b1a2bdSJulia Lawall 	if (!list_empty(&fs_info->tree_mod_seq_list))
2435d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
24431b1a2bdSJulia Lawall 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
2455d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
246fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
24720b297d6SJan Schmidt 
24856bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
24956bec294SChris Mason 
2503063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
251bbbf7243SNikolay Borisov 	INIT_LIST_HEAD(&cur_trans->dev_update_list);
2529e351cc8SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->switch_commits);
253ce93ec54SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dirty_bgs);
2541bbc621eSChris Mason 	INIT_LIST_HEAD(&cur_trans->io_bgs);
2552b9dbef2SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dropped_roots);
2561bbc621eSChris Mason 	mutex_init(&cur_trans->cache_write_mutex);
257ce93ec54SJosef Bacik 	spin_lock_init(&cur_trans->dirty_bgs_lock);
258e33e17eeSJeff Mahoney 	INIT_LIST_HEAD(&cur_trans->deleted_bgs);
2592b9dbef2SJosef Bacik 	spin_lock_init(&cur_trans->dropped_roots_lock);
26019ae4e81SJan Schmidt 	list_add_tail(&cur_trans->list, &fs_info->trans_list);
261c258d6e3SQu Wenruo 	extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
26243eb5f29SQu Wenruo 			IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode);
26319ae4e81SJan Schmidt 	fs_info->generation++;
26419ae4e81SJan Schmidt 	cur_trans->transid = fs_info->generation;
26519ae4e81SJan Schmidt 	fs_info->running_transaction = cur_trans;
26649b25e05SJeff Mahoney 	cur_trans->aborted = 0;
26719ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
26815ee9bc7SJosef Bacik 
26979154b1bSChris Mason 	return 0;
27079154b1bSChris Mason }
27179154b1bSChris Mason 
272d352ac68SChris Mason /*
273d397712bSChris Mason  * this does all the record keeping required to make sure that a reference
274d397712bSChris Mason  * counted root is properly recorded in a given transaction.  This is required
275d397712bSChris Mason  * to make sure the old root from before we joined the transaction is deleted
276d397712bSChris Mason  * when the transaction commits
277d352ac68SChris Mason  */
2787585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans,
2796426c7adSQu Wenruo 			       struct btrfs_root *root,
2806426c7adSQu Wenruo 			       int force)
2816702ed49SChris Mason {
2820b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
2830b246afaSJeff Mahoney 
2846426c7adSQu Wenruo 	if ((test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
2856426c7adSQu Wenruo 	    root->last_trans < trans->transid) || force) {
2860b246afaSJeff Mahoney 		WARN_ON(root == fs_info->extent_root);
2874d31778aSQu Wenruo 		WARN_ON(!force && root->commit_root != root->node);
2885d4f98a2SYan Zheng 
2897585717fSChris Mason 		/*
29027cdeb70SMiao Xie 		 * see below for IN_TRANS_SETUP usage rules
2917585717fSChris Mason 		 * we have the reloc mutex held now, so there
2927585717fSChris Mason 		 * is only one writer in this function
2937585717fSChris Mason 		 */
29427cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
2957585717fSChris Mason 
29627cdeb70SMiao Xie 		/* make sure readers find IN_TRANS_SETUP before
2977585717fSChris Mason 		 * they find our root->last_trans update
2987585717fSChris Mason 		 */
2997585717fSChris Mason 		smp_wmb();
3007585717fSChris Mason 
3010b246afaSJeff Mahoney 		spin_lock(&fs_info->fs_roots_radix_lock);
3026426c7adSQu Wenruo 		if (root->last_trans == trans->transid && !force) {
3030b246afaSJeff Mahoney 			spin_unlock(&fs_info->fs_roots_radix_lock);
304a4abeea4SJosef Bacik 			return 0;
305a4abeea4SJosef Bacik 		}
3060b246afaSJeff Mahoney 		radix_tree_tag_set(&fs_info->fs_roots_radix,
3076702ed49SChris Mason 				   (unsigned long)root->root_key.objectid,
3086702ed49SChris Mason 				   BTRFS_ROOT_TRANS_TAG);
3090b246afaSJeff Mahoney 		spin_unlock(&fs_info->fs_roots_radix_lock);
3107585717fSChris Mason 		root->last_trans = trans->transid;
3117585717fSChris Mason 
3127585717fSChris Mason 		/* this is pretty tricky.  We don't want to
3137585717fSChris Mason 		 * take the relocation lock in btrfs_record_root_in_trans
3147585717fSChris Mason 		 * unless we're really doing the first setup for this root in
3157585717fSChris Mason 		 * this transaction.
3167585717fSChris Mason 		 *
3177585717fSChris Mason 		 * Normally we'd use root->last_trans as a flag to decide
3187585717fSChris Mason 		 * if we want to take the expensive mutex.
3197585717fSChris Mason 		 *
3207585717fSChris Mason 		 * But, we have to set root->last_trans before we
3217585717fSChris Mason 		 * init the relocation root, otherwise, we trip over warnings
3227585717fSChris Mason 		 * in ctree.c.  The solution used here is to flag ourselves
32327cdeb70SMiao Xie 		 * with root IN_TRANS_SETUP.  When this is 1, we're still
3247585717fSChris Mason 		 * fixing up the reloc trees and everyone must wait.
3257585717fSChris Mason 		 *
3267585717fSChris Mason 		 * When this is zero, they can trust root->last_trans and fly
3277585717fSChris Mason 		 * through btrfs_record_root_in_trans without having to take the
3287585717fSChris Mason 		 * lock.  smp_wmb() makes sure that all the writes above are
3297585717fSChris Mason 		 * done before we pop in the zero below
3307585717fSChris Mason 		 */
3315d4f98a2SYan Zheng 		btrfs_init_reloc_root(trans, root);
332c7548af6SChris Mason 		smp_mb__before_atomic();
33327cdeb70SMiao Xie 		clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
3346702ed49SChris Mason 	}
3355d4f98a2SYan Zheng 	return 0;
3366702ed49SChris Mason }
3375d4f98a2SYan Zheng 
3387585717fSChris Mason 
3392b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
3402b9dbef2SJosef Bacik 			    struct btrfs_root *root)
3412b9dbef2SJosef Bacik {
3420b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
3432b9dbef2SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
3442b9dbef2SJosef Bacik 
3452b9dbef2SJosef Bacik 	/* Add ourselves to the transaction dropped list */
3462b9dbef2SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
3472b9dbef2SJosef Bacik 	list_add_tail(&root->root_list, &cur_trans->dropped_roots);
3482b9dbef2SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
3492b9dbef2SJosef Bacik 
3502b9dbef2SJosef Bacik 	/* Make sure we don't try to update the root at commit time */
3510b246afaSJeff Mahoney 	spin_lock(&fs_info->fs_roots_radix_lock);
3520b246afaSJeff Mahoney 	radix_tree_tag_clear(&fs_info->fs_roots_radix,
3532b9dbef2SJosef Bacik 			     (unsigned long)root->root_key.objectid,
3542b9dbef2SJosef Bacik 			     BTRFS_ROOT_TRANS_TAG);
3550b246afaSJeff Mahoney 	spin_unlock(&fs_info->fs_roots_radix_lock);
3562b9dbef2SJosef Bacik }
3572b9dbef2SJosef Bacik 
3587585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
3597585717fSChris Mason 			       struct btrfs_root *root)
3607585717fSChris Mason {
3610b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
3620b246afaSJeff Mahoney 
36327cdeb70SMiao Xie 	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
3647585717fSChris Mason 		return 0;
3657585717fSChris Mason 
3667585717fSChris Mason 	/*
36727cdeb70SMiao Xie 	 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
3687585717fSChris Mason 	 * and barriers
3697585717fSChris Mason 	 */
3707585717fSChris Mason 	smp_rmb();
3717585717fSChris Mason 	if (root->last_trans == trans->transid &&
37227cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
3737585717fSChris Mason 		return 0;
3747585717fSChris Mason 
3750b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
3766426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
3770b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
3787585717fSChris Mason 
3797585717fSChris Mason 	return 0;
3807585717fSChris Mason }
3817585717fSChris Mason 
3824a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans)
3834a9d8bdeSMiao Xie {
3844a9d8bdeSMiao Xie 	return (trans->state >= TRANS_STATE_BLOCKED &&
385501407aaSJosef Bacik 		trans->state < TRANS_STATE_UNBLOCKED &&
386501407aaSJosef Bacik 		!trans->aborted);
3874a9d8bdeSMiao Xie }
3884a9d8bdeSMiao Xie 
389d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
390d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
391d352ac68SChris Mason  * transaction might not be fully on disk.
392d352ac68SChris Mason  */
3932ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info)
39479154b1bSChris Mason {
395f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
39679154b1bSChris Mason 
3970b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
3980b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
3994a9d8bdeSMiao Xie 	if (cur_trans && is_transaction_blocked(cur_trans)) {
4009b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
4010b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
40272d63ed6SLi Zefan 
4030b246afaSJeff Mahoney 		wait_event(fs_info->transaction_wait,
404501407aaSJosef Bacik 			   cur_trans->state >= TRANS_STATE_UNBLOCKED ||
405501407aaSJosef Bacik 			   cur_trans->aborted);
406724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
407a4abeea4SJosef Bacik 	} else {
4080b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
409f9295749SChris Mason 	}
41037d1aeeeSChris Mason }
41137d1aeeeSChris Mason 
4122ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
41337d1aeeeSChris Mason {
4140b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
415a4abeea4SJosef Bacik 		return 0;
416a4abeea4SJosef Bacik 
41792e2f7e3SNikolay Borisov 	if (type == TRANS_START)
418a4abeea4SJosef Bacik 		return 1;
419a4abeea4SJosef Bacik 
420a22285a6SYan, Zheng 	return 0;
421a22285a6SYan, Zheng }
422a22285a6SYan, Zheng 
42320dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root)
42420dd2cbfSMiao Xie {
4250b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4260b246afaSJeff Mahoney 
4270b246afaSJeff Mahoney 	if (!fs_info->reloc_ctl ||
42827cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
42920dd2cbfSMiao Xie 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
43020dd2cbfSMiao Xie 	    root->reloc_root)
43120dd2cbfSMiao Xie 		return false;
43220dd2cbfSMiao Xie 
43320dd2cbfSMiao Xie 	return true;
43420dd2cbfSMiao Xie }
43520dd2cbfSMiao Xie 
43608e007d2SMiao Xie static struct btrfs_trans_handle *
4375aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items,
438003d7c59SJeff Mahoney 		  unsigned int type, enum btrfs_reserve_flush_enum flush,
439003d7c59SJeff Mahoney 		  bool enforce_qgroups)
440a22285a6SYan, Zheng {
4410b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
442ba2c4d4eSJosef Bacik 	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
443a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
444a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
445b5009945SJosef Bacik 	u64 num_bytes = 0;
446c5567237SArne Jansen 	u64 qgroup_reserved = 0;
44720dd2cbfSMiao Xie 	bool reloc_reserved = false;
44820dd2cbfSMiao Xie 	int ret;
449acce952bSliubo 
45046c4e71eSFilipe Manana 	/* Send isn't supposed to start transactions. */
4512755a0deSDavid Sterba 	ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB);
45246c4e71eSFilipe Manana 
4530b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
454acce952bSliubo 		return ERR_PTR(-EROFS);
4552a1eb461SJosef Bacik 
45646c4e71eSFilipe Manana 	if (current->journal_info) {
4570860adfdSMiao Xie 		WARN_ON(type & TRANS_EXTWRITERS);
4582a1eb461SJosef Bacik 		h = current->journal_info;
459b50fff81SDavid Sterba 		refcount_inc(&h->use_count);
460b50fff81SDavid Sterba 		WARN_ON(refcount_read(&h->use_count) > 2);
4612a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
4622a1eb461SJosef Bacik 		h->block_rsv = NULL;
4632a1eb461SJosef Bacik 		goto got_it;
4642a1eb461SJosef Bacik 	}
465b5009945SJosef Bacik 
466b5009945SJosef Bacik 	/*
467b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
468b5009945SJosef Bacik 	 * the appropriate flushing if need be.
469b5009945SJosef Bacik 	 */
470003d7c59SJeff Mahoney 	if (num_items && root != fs_info->chunk_root) {
471ba2c4d4eSJosef Bacik 		struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
472ba2c4d4eSJosef Bacik 		u64 delayed_refs_bytes = 0;
473ba2c4d4eSJosef Bacik 
4740b246afaSJeff Mahoney 		qgroup_reserved = num_items * fs_info->nodesize;
475733e03a0SQu Wenruo 		ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
476003d7c59SJeff Mahoney 				enforce_qgroups);
477c5567237SArne Jansen 		if (ret)
478c5567237SArne Jansen 			return ERR_PTR(ret);
479c5567237SArne Jansen 
480ba2c4d4eSJosef Bacik 		/*
481ba2c4d4eSJosef Bacik 		 * We want to reserve all the bytes we may need all at once, so
482ba2c4d4eSJosef Bacik 		 * we only do 1 enospc flushing cycle per transaction start.  We
483ba2c4d4eSJosef Bacik 		 * accomplish this by simply assuming we'll do 2 x num_items
484ba2c4d4eSJosef Bacik 		 * worth of delayed refs updates in this trans handle, and
485ba2c4d4eSJosef Bacik 		 * refill that amount for whatever is missing in the reserve.
486ba2c4d4eSJosef Bacik 		 */
4870b246afaSJeff Mahoney 		num_bytes = btrfs_calc_trans_metadata_size(fs_info, num_items);
488ba2c4d4eSJosef Bacik 		if (delayed_refs_rsv->full == 0) {
489ba2c4d4eSJosef Bacik 			delayed_refs_bytes = num_bytes;
490ba2c4d4eSJosef Bacik 			num_bytes <<= 1;
491ba2c4d4eSJosef Bacik 		}
492ba2c4d4eSJosef Bacik 
49320dd2cbfSMiao Xie 		/*
49420dd2cbfSMiao Xie 		 * Do the reservation for the relocation root creation
49520dd2cbfSMiao Xie 		 */
496ee39b432SDavid Sterba 		if (need_reserve_reloc_root(root)) {
4970b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
49820dd2cbfSMiao Xie 			reloc_reserved = true;
49920dd2cbfSMiao Xie 		}
50020dd2cbfSMiao Xie 
501ba2c4d4eSJosef Bacik 		ret = btrfs_block_rsv_add(root, rsv, num_bytes, flush);
502ba2c4d4eSJosef Bacik 		if (ret)
503ba2c4d4eSJosef Bacik 			goto reserve_fail;
504ba2c4d4eSJosef Bacik 		if (delayed_refs_bytes) {
505ba2c4d4eSJosef Bacik 			btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
506ba2c4d4eSJosef Bacik 							  delayed_refs_bytes);
507ba2c4d4eSJosef Bacik 			num_bytes -= delayed_refs_bytes;
508ba2c4d4eSJosef Bacik 		}
509ba2c4d4eSJosef Bacik 	} else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
510ba2c4d4eSJosef Bacik 		   !delayed_refs_rsv->full) {
511ba2c4d4eSJosef Bacik 		/*
512ba2c4d4eSJosef Bacik 		 * Some people call with btrfs_start_transaction(root, 0)
513ba2c4d4eSJosef Bacik 		 * because they can be throttled, but have some other mechanism
514ba2c4d4eSJosef Bacik 		 * for reserving space.  We still want these guys to refill the
515ba2c4d4eSJosef Bacik 		 * delayed block_rsv so just add 1 items worth of reservation
516ba2c4d4eSJosef Bacik 		 * here.
517ba2c4d4eSJosef Bacik 		 */
518ba2c4d4eSJosef Bacik 		ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
519b5009945SJosef Bacik 		if (ret)
520843fcf35SMiao Xie 			goto reserve_fail;
521b5009945SJosef Bacik 	}
522a22285a6SYan, Zheng again:
523f2f767e7SAlexandru Moise 	h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
524843fcf35SMiao Xie 	if (!h) {
525843fcf35SMiao Xie 		ret = -ENOMEM;
526843fcf35SMiao Xie 		goto alloc_fail;
527843fcf35SMiao Xie 	}
528a22285a6SYan, Zheng 
52998114659SJosef Bacik 	/*
53098114659SJosef Bacik 	 * If we are JOIN_NOLOCK we're already committing a transaction and
53198114659SJosef Bacik 	 * waiting on this guy, so we don't need to do the sb_start_intwrite
53298114659SJosef Bacik 	 * because we're already holding a ref.  We need this because we could
53398114659SJosef Bacik 	 * have raced in and did an fsync() on a file which can kick a commit
53498114659SJosef Bacik 	 * and then we deadlock with somebody doing a freeze.
535354aa0fbSMiao Xie 	 *
536354aa0fbSMiao Xie 	 * If we are ATTACH, it means we just want to catch the current
537354aa0fbSMiao Xie 	 * transaction and commit it, so we needn't do sb_start_intwrite().
53898114659SJosef Bacik 	 */
5390860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
5400b246afaSJeff Mahoney 		sb_start_intwrite(fs_info->sb);
541b2b5ef5cSJan Kara 
5422ff7e61eSJeff Mahoney 	if (may_wait_transaction(fs_info, type))
5432ff7e61eSJeff Mahoney 		wait_current_trans(fs_info);
544a22285a6SYan, Zheng 
545a4abeea4SJosef Bacik 	do {
5462ff7e61eSJeff Mahoney 		ret = join_transaction(fs_info, type);
547178260b2SMiao Xie 		if (ret == -EBUSY) {
5482ff7e61eSJeff Mahoney 			wait_current_trans(fs_info);
549a6d155d2SFilipe Manana 			if (unlikely(type == TRANS_ATTACH ||
550a6d155d2SFilipe Manana 				     type == TRANS_JOIN_NOSTART))
551178260b2SMiao Xie 				ret = -ENOENT;
552178260b2SMiao Xie 		}
553a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
554a4abeea4SJosef Bacik 
555a43f7f82SLiu Bo 	if (ret < 0)
556843fcf35SMiao Xie 		goto join_fail;
5570f7d52f4SChris Mason 
5580b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
559a22285a6SYan, Zheng 
560a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
561a22285a6SYan, Zheng 	h->transaction = cur_trans;
562d13603efSArne Jansen 	h->root = root;
563b50fff81SDavid Sterba 	refcount_set(&h->use_count, 1);
56464b63580SJeff Mahoney 	h->fs_info = root->fs_info;
5657174109cSQu Wenruo 
566a698d075SMiao Xie 	h->type = type;
567d9a0540aSFilipe Manana 	h->can_flush_pending_bgs = true;
568ea658badSJosef Bacik 	INIT_LIST_HEAD(&h->new_bgs);
569b7ec40d7SChris Mason 
570a22285a6SYan, Zheng 	smp_mb();
5714a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_BLOCKED &&
5722ff7e61eSJeff Mahoney 	    may_wait_transaction(fs_info, type)) {
573abdd2e80SFilipe Manana 		current->journal_info = h;
5743a45bb20SJeff Mahoney 		btrfs_commit_transaction(h);
575a22285a6SYan, Zheng 		goto again;
576a22285a6SYan, Zheng 	}
5779ed74f2dSJosef Bacik 
578b5009945SJosef Bacik 	if (num_bytes) {
5790b246afaSJeff Mahoney 		trace_btrfs_space_reservation(fs_info, "transaction",
5802bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
5810b246afaSJeff Mahoney 		h->block_rsv = &fs_info->trans_block_rsv;
582b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
58320dd2cbfSMiao Xie 		h->reloc_reserved = reloc_reserved;
584a22285a6SYan, Zheng 	}
585a22285a6SYan, Zheng 
5862a1eb461SJosef Bacik got_it:
587a4abeea4SJosef Bacik 	btrfs_record_root_in_trans(h, root);
588a22285a6SYan, Zheng 
589bcf3a3e7SNikolay Borisov 	if (!current->journal_info)
590a22285a6SYan, Zheng 		current->journal_info = h;
59179154b1bSChris Mason 	return h;
592843fcf35SMiao Xie 
593843fcf35SMiao Xie join_fail:
5940860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
5950b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
596843fcf35SMiao Xie 	kmem_cache_free(btrfs_trans_handle_cachep, h);
597843fcf35SMiao Xie alloc_fail:
598843fcf35SMiao Xie 	if (num_bytes)
5992ff7e61eSJeff Mahoney 		btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
600843fcf35SMiao Xie 					num_bytes);
601843fcf35SMiao Xie reserve_fail:
602733e03a0SQu Wenruo 	btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
603843fcf35SMiao Xie 	return ERR_PTR(ret);
60479154b1bSChris Mason }
60579154b1bSChris Mason 
606f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
6075aed1dd8SAlexandru Moise 						   unsigned int num_items)
608f9295749SChris Mason {
60908e007d2SMiao Xie 	return start_transaction(root, num_items, TRANS_START,
610003d7c59SJeff Mahoney 				 BTRFS_RESERVE_FLUSH_ALL, true);
611f9295749SChris Mason }
612003d7c59SJeff Mahoney 
6138eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
6148eab77ffSFilipe Manana 					struct btrfs_root *root,
6158eab77ffSFilipe Manana 					unsigned int num_items,
6168eab77ffSFilipe Manana 					int min_factor)
6178eab77ffSFilipe Manana {
6180b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
6198eab77ffSFilipe Manana 	struct btrfs_trans_handle *trans;
6208eab77ffSFilipe Manana 	u64 num_bytes;
6218eab77ffSFilipe Manana 	int ret;
6228eab77ffSFilipe Manana 
623003d7c59SJeff Mahoney 	/*
624003d7c59SJeff Mahoney 	 * We have two callers: unlink and block group removal.  The
625003d7c59SJeff Mahoney 	 * former should succeed even if we will temporarily exceed
626003d7c59SJeff Mahoney 	 * quota and the latter operates on the extent root so
627003d7c59SJeff Mahoney 	 * qgroup enforcement is ignored anyway.
628003d7c59SJeff Mahoney 	 */
629003d7c59SJeff Mahoney 	trans = start_transaction(root, num_items, TRANS_START,
630003d7c59SJeff Mahoney 				  BTRFS_RESERVE_FLUSH_ALL, false);
6318eab77ffSFilipe Manana 	if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
6328eab77ffSFilipe Manana 		return trans;
6338eab77ffSFilipe Manana 
6348eab77ffSFilipe Manana 	trans = btrfs_start_transaction(root, 0);
6358eab77ffSFilipe Manana 	if (IS_ERR(trans))
6368eab77ffSFilipe Manana 		return trans;
6378eab77ffSFilipe Manana 
6380b246afaSJeff Mahoney 	num_bytes = btrfs_calc_trans_metadata_size(fs_info, num_items);
6390b246afaSJeff Mahoney 	ret = btrfs_cond_migrate_bytes(fs_info, &fs_info->trans_block_rsv,
6400b246afaSJeff Mahoney 				       num_bytes, min_factor);
6418eab77ffSFilipe Manana 	if (ret) {
6423a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
6438eab77ffSFilipe Manana 		return ERR_PTR(ret);
6448eab77ffSFilipe Manana 	}
6458eab77ffSFilipe Manana 
6460b246afaSJeff Mahoney 	trans->block_rsv = &fs_info->trans_block_rsv;
6478eab77ffSFilipe Manana 	trans->bytes_reserved = num_bytes;
6480b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
64988d3a5aaSJosef Bacik 				      trans->transid, num_bytes, 1);
6508eab77ffSFilipe Manana 
6518eab77ffSFilipe Manana 	return trans;
6528eab77ffSFilipe Manana }
6538407aa46SMiao Xie 
6547a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
655f9295749SChris Mason {
656003d7c59SJeff Mahoney 	return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
657003d7c59SJeff Mahoney 				 true);
658f9295749SChris Mason }
659f9295749SChris Mason 
6607a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root)
6610af3d00bSJosef Bacik {
662575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
663003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
6640af3d00bSJosef Bacik }
6650af3d00bSJosef Bacik 
666d4edf39bSMiao Xie /*
667a6d155d2SFilipe Manana  * Similar to regular join but it never starts a transaction when none is
668a6d155d2SFilipe Manana  * running or after waiting for the current one to finish.
669a6d155d2SFilipe Manana  */
670a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
671a6d155d2SFilipe Manana {
672a6d155d2SFilipe Manana 	return start_transaction(root, 0, TRANS_JOIN_NOSTART,
673a6d155d2SFilipe Manana 				 BTRFS_RESERVE_NO_FLUSH, true);
674a6d155d2SFilipe Manana }
675a6d155d2SFilipe Manana 
676a6d155d2SFilipe Manana /*
677d4edf39bSMiao Xie  * btrfs_attach_transaction() - catch the running transaction
678d4edf39bSMiao Xie  *
679d4edf39bSMiao Xie  * It is used when we want to commit the current the transaction, but
680d4edf39bSMiao Xie  * don't want to start a new one.
681d4edf39bSMiao Xie  *
682d4edf39bSMiao Xie  * Note: If this function return -ENOENT, it just means there is no
683d4edf39bSMiao Xie  * running transaction. But it is possible that the inactive transaction
684d4edf39bSMiao Xie  * is still in the memory, not fully on disk. If you hope there is no
685d4edf39bSMiao Xie  * inactive transaction in the fs when -ENOENT is returned, you should
686d4edf39bSMiao Xie  * invoke
687d4edf39bSMiao Xie  *     btrfs_attach_transaction_barrier()
688d4edf39bSMiao Xie  */
689354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
69060376ce4SJosef Bacik {
691575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_ATTACH,
692003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
69360376ce4SJosef Bacik }
69460376ce4SJosef Bacik 
695d4edf39bSMiao Xie /*
69690b6d283SWang Sheng-Hui  * btrfs_attach_transaction_barrier() - catch the running transaction
697d4edf39bSMiao Xie  *
69852042d8eSAndrea Gelmini  * It is similar to the above function, the difference is this one
699d4edf39bSMiao Xie  * will wait for all the inactive transactions until they fully
700d4edf39bSMiao Xie  * complete.
701d4edf39bSMiao Xie  */
702d4edf39bSMiao Xie struct btrfs_trans_handle *
703d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root)
704d4edf39bSMiao Xie {
705d4edf39bSMiao Xie 	struct btrfs_trans_handle *trans;
706d4edf39bSMiao Xie 
707575a75d6SAlexandru Moise 	trans = start_transaction(root, 0, TRANS_ATTACH,
708003d7c59SJeff Mahoney 				  BTRFS_RESERVE_NO_FLUSH, true);
7098d9e220cSAl Viro 	if (trans == ERR_PTR(-ENOENT))
7102ff7e61eSJeff Mahoney 		btrfs_wait_for_commit(root->fs_info, 0);
711d4edf39bSMiao Xie 
712d4edf39bSMiao Xie 	return trans;
713d4edf39bSMiao Xie }
714d4edf39bSMiao Xie 
715d352ac68SChris Mason /* wait for a transaction commit to be fully complete */
7162ff7e61eSJeff Mahoney static noinline void wait_for_commit(struct btrfs_transaction *commit)
71789ce8a63SChris Mason {
7184a9d8bdeSMiao Xie 	wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED);
71989ce8a63SChris Mason }
72089ce8a63SChris Mason 
7212ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
72246204592SSage Weil {
72346204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
7248cd2807fSMiao Xie 	int ret = 0;
72546204592SSage Weil 
72646204592SSage Weil 	if (transid) {
7270b246afaSJeff Mahoney 		if (transid <= fs_info->last_trans_committed)
728a4abeea4SJosef Bacik 			goto out;
72946204592SSage Weil 
73046204592SSage Weil 		/* find specified transaction */
7310b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
7320b246afaSJeff Mahoney 		list_for_each_entry(t, &fs_info->trans_list, list) {
73346204592SSage Weil 			if (t->transid == transid) {
73446204592SSage Weil 				cur_trans = t;
7359b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
7368cd2807fSMiao Xie 				ret = 0;
73746204592SSage Weil 				break;
73846204592SSage Weil 			}
7398cd2807fSMiao Xie 			if (t->transid > transid) {
7408cd2807fSMiao Xie 				ret = 0;
74146204592SSage Weil 				break;
74246204592SSage Weil 			}
7438cd2807fSMiao Xie 		}
7440b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
74542383020SSage Weil 
74642383020SSage Weil 		/*
74742383020SSage Weil 		 * The specified transaction doesn't exist, or we
74842383020SSage Weil 		 * raced with btrfs_commit_transaction
74942383020SSage Weil 		 */
75042383020SSage Weil 		if (!cur_trans) {
7510b246afaSJeff Mahoney 			if (transid > fs_info->last_trans_committed)
75242383020SSage Weil 				ret = -EINVAL;
7538cd2807fSMiao Xie 			goto out;
75442383020SSage Weil 		}
75546204592SSage Weil 	} else {
75646204592SSage Weil 		/* find newest transaction that is committing | committed */
7570b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
7580b246afaSJeff Mahoney 		list_for_each_entry_reverse(t, &fs_info->trans_list,
75946204592SSage Weil 					    list) {
7604a9d8bdeSMiao Xie 			if (t->state >= TRANS_STATE_COMMIT_START) {
7614a9d8bdeSMiao Xie 				if (t->state == TRANS_STATE_COMPLETED)
7623473f3c0SJosef Bacik 					break;
76346204592SSage Weil 				cur_trans = t;
7649b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
76546204592SSage Weil 				break;
76646204592SSage Weil 			}
76746204592SSage Weil 		}
7680b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
76946204592SSage Weil 		if (!cur_trans)
770a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
77146204592SSage Weil 	}
77246204592SSage Weil 
7732ff7e61eSJeff Mahoney 	wait_for_commit(cur_trans);
774724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
775a4abeea4SJosef Bacik out:
77646204592SSage Weil 	return ret;
77746204592SSage Weil }
77846204592SSage Weil 
7792ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info)
78037d1aeeeSChris Mason {
7812ff7e61eSJeff Mahoney 	wait_current_trans(fs_info);
78237d1aeeeSChris Mason }
78337d1aeeeSChris Mason 
7842ff7e61eSJeff Mahoney static int should_end_transaction(struct btrfs_trans_handle *trans)
7858929ecfaSYan, Zheng {
7862ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
7870b246afaSJeff Mahoney 
78864403612SJosef Bacik 	if (btrfs_check_space_for_delayed_refs(fs_info))
7891be41b78SJosef Bacik 		return 1;
79036ba022aSJosef Bacik 
7912ff7e61eSJeff Mahoney 	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
7928929ecfaSYan, Zheng }
7938929ecfaSYan, Zheng 
7943a45bb20SJeff Mahoney int btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
7958929ecfaSYan, Zheng {
7968929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
7978929ecfaSYan, Zheng 
798a4abeea4SJosef Bacik 	smp_mb();
7994a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_BLOCKED ||
8004a9d8bdeSMiao Xie 	    cur_trans->delayed_refs.flushing)
8018929ecfaSYan, Zheng 		return 1;
8028929ecfaSYan, Zheng 
8032ff7e61eSJeff Mahoney 	return should_end_transaction(trans);
8048929ecfaSYan, Zheng }
8058929ecfaSYan, Zheng 
806dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
807dc60c525SNikolay Borisov 
8080e34693fSNikolay Borisov {
809dc60c525SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
810dc60c525SNikolay Borisov 
8110e34693fSNikolay Borisov 	if (!trans->block_rsv) {
8120e34693fSNikolay Borisov 		ASSERT(!trans->bytes_reserved);
8130e34693fSNikolay Borisov 		return;
8140e34693fSNikolay Borisov 	}
8150e34693fSNikolay Borisov 
8160e34693fSNikolay Borisov 	if (!trans->bytes_reserved)
8170e34693fSNikolay Borisov 		return;
8180e34693fSNikolay Borisov 
8190e34693fSNikolay Borisov 	ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
8200e34693fSNikolay Borisov 	trace_btrfs_space_reservation(fs_info, "transaction",
8210e34693fSNikolay Borisov 				      trans->transid, trans->bytes_reserved, 0);
8220e34693fSNikolay Borisov 	btrfs_block_rsv_release(fs_info, trans->block_rsv,
8230e34693fSNikolay Borisov 				trans->bytes_reserved);
8240e34693fSNikolay Borisov 	trans->bytes_reserved = 0;
8250e34693fSNikolay Borisov }
8260e34693fSNikolay Borisov 
82789ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
8283a45bb20SJeff Mahoney 				   int throttle)
82979154b1bSChris Mason {
8303a45bb20SJeff Mahoney 	struct btrfs_fs_info *info = trans->fs_info;
8318929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
832a698d075SMiao Xie 	int lock = (trans->type != TRANS_JOIN_NOLOCK);
8334edc2ca3SDave Jones 	int err = 0;
834d6e4a428SChris Mason 
835b50fff81SDavid Sterba 	if (refcount_read(&trans->use_count) > 1) {
836b50fff81SDavid Sterba 		refcount_dec(&trans->use_count);
8372a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
8382a1eb461SJosef Bacik 		return 0;
8392a1eb461SJosef Bacik 	}
8402a1eb461SJosef Bacik 
841dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
8424c13d758SJosef Bacik 	trans->block_rsv = NULL;
843c5567237SArne Jansen 
8446c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
845ea658badSJosef Bacik 
8464fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
8474fbcdf66SFilipe Manana 
84820c7bcecSSeraphime Kirkovski 	if (lock && READ_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) {
8493bbb24b2SJosef Bacik 		if (throttle)
8503a45bb20SJeff Mahoney 			return btrfs_commit_transaction(trans);
8513bbb24b2SJosef Bacik 		else
8528929ecfaSYan, Zheng 			wake_up_process(info->transaction_kthread);
8538929ecfaSYan, Zheng 	}
8548929ecfaSYan, Zheng 
8550860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
8560b246afaSJeff Mahoney 		sb_end_intwrite(info->sb);
8576df7881aSJosef Bacik 
8588929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
85913c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
86013c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
8610860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
86289ce8a63SChris Mason 
863093258e6SDavid Sterba 	cond_wake_up(&cur_trans->writer_wait);
864724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
8659ed74f2dSJosef Bacik 
8669ed74f2dSJosef Bacik 	if (current->journal_info == trans)
8679ed74f2dSJosef Bacik 		current->journal_info = NULL;
868ab78c84dSChris Mason 
86924bbcf04SYan, Zheng 	if (throttle)
8702ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(info);
87124bbcf04SYan, Zheng 
87249b25e05SJeff Mahoney 	if (trans->aborted ||
8730b246afaSJeff Mahoney 	    test_bit(BTRFS_FS_STATE_ERROR, &info->fs_state)) {
8744e121c06SJosef Bacik 		wake_up_process(info->transaction_kthread);
8754edc2ca3SDave Jones 		err = -EIO;
8764e121c06SJosef Bacik 	}
87749b25e05SJeff Mahoney 
8784edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
8794edc2ca3SDave Jones 	return err;
88079154b1bSChris Mason }
88179154b1bSChris Mason 
8823a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans)
88389ce8a63SChris Mason {
8843a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 0);
88589ce8a63SChris Mason }
88689ce8a63SChris Mason 
8873a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
88889ce8a63SChris Mason {
8893a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 1);
89016cdcec7SMiao Xie }
89116cdcec7SMiao Xie 
892d352ac68SChris Mason /*
893d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
894d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
895690587d1SChris Mason  * those extents are sent to disk but does not wait on them
896d352ac68SChris Mason  */
8972ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
8988cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
89979154b1bSChris Mason {
900777e6bd7SChris Mason 	int err = 0;
9017c4452b9SChris Mason 	int werr = 0;
9020b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
903e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
904777e6bd7SChris Mason 	u64 start = 0;
9055f39d397SChris Mason 	u64 end;
9067c4452b9SChris Mason 
9076300463bSLiu Bo 	atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
9081728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
909e6138876SJosef Bacik 				      mark, &cached_state)) {
910663dfbb0SFilipe Manana 		bool wait_writeback = false;
911663dfbb0SFilipe Manana 
912663dfbb0SFilipe Manana 		err = convert_extent_bit(dirty_pages, start, end,
913663dfbb0SFilipe Manana 					 EXTENT_NEED_WAIT,
914210aa277SDavid Sterba 					 mark, &cached_state);
915663dfbb0SFilipe Manana 		/*
916663dfbb0SFilipe Manana 		 * convert_extent_bit can return -ENOMEM, which is most of the
917663dfbb0SFilipe Manana 		 * time a temporary error. So when it happens, ignore the error
918663dfbb0SFilipe Manana 		 * and wait for writeback of this range to finish - because we
919663dfbb0SFilipe Manana 		 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
920bf89d38fSJeff Mahoney 		 * to __btrfs_wait_marked_extents() would not know that
921bf89d38fSJeff Mahoney 		 * writeback for this range started and therefore wouldn't
922bf89d38fSJeff Mahoney 		 * wait for it to finish - we don't want to commit a
923bf89d38fSJeff Mahoney 		 * superblock that points to btree nodes/leafs for which
924bf89d38fSJeff Mahoney 		 * writeback hasn't finished yet (and without errors).
925663dfbb0SFilipe Manana 		 * We cleanup any entries left in the io tree when committing
92641e7acd3SNikolay Borisov 		 * the transaction (through extent_io_tree_release()).
927663dfbb0SFilipe Manana 		 */
928663dfbb0SFilipe Manana 		if (err == -ENOMEM) {
929663dfbb0SFilipe Manana 			err = 0;
930663dfbb0SFilipe Manana 			wait_writeback = true;
931663dfbb0SFilipe Manana 		}
932663dfbb0SFilipe Manana 		if (!err)
9331728366eSJosef Bacik 			err = filemap_fdatawrite_range(mapping, start, end);
9347c4452b9SChris Mason 		if (err)
9357c4452b9SChris Mason 			werr = err;
936663dfbb0SFilipe Manana 		else if (wait_writeback)
937663dfbb0SFilipe Manana 			werr = filemap_fdatawait_range(mapping, start, end);
938e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
939663dfbb0SFilipe Manana 		cached_state = NULL;
9401728366eSJosef Bacik 		cond_resched();
9411728366eSJosef Bacik 		start = end + 1;
9427c4452b9SChris Mason 	}
9436300463bSLiu Bo 	atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
944690587d1SChris Mason 	return werr;
945690587d1SChris Mason }
946690587d1SChris Mason 
947690587d1SChris Mason /*
948690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
949690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
950690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
951690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
952690587d1SChris Mason  */
953bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
954bf89d38fSJeff Mahoney 				       struct extent_io_tree *dirty_pages)
955690587d1SChris Mason {
956690587d1SChris Mason 	int err = 0;
957690587d1SChris Mason 	int werr = 0;
9580b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
959e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
960690587d1SChris Mason 	u64 start = 0;
961690587d1SChris Mason 	u64 end;
962690587d1SChris Mason 
9631728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
964e6138876SJosef Bacik 				      EXTENT_NEED_WAIT, &cached_state)) {
965663dfbb0SFilipe Manana 		/*
966663dfbb0SFilipe Manana 		 * Ignore -ENOMEM errors returned by clear_extent_bit().
967663dfbb0SFilipe Manana 		 * When committing the transaction, we'll remove any entries
968663dfbb0SFilipe Manana 		 * left in the io tree. For a log commit, we don't remove them
969663dfbb0SFilipe Manana 		 * after committing the log because the tree can be accessed
970663dfbb0SFilipe Manana 		 * concurrently - we do it only at transaction commit time when
97141e7acd3SNikolay Borisov 		 * it's safe to do it (through extent_io_tree_release()).
972663dfbb0SFilipe Manana 		 */
973663dfbb0SFilipe Manana 		err = clear_extent_bit(dirty_pages, start, end,
974ae0f1625SDavid Sterba 				       EXTENT_NEED_WAIT, 0, 0, &cached_state);
975663dfbb0SFilipe Manana 		if (err == -ENOMEM)
976663dfbb0SFilipe Manana 			err = 0;
977663dfbb0SFilipe Manana 		if (!err)
9781728366eSJosef Bacik 			err = filemap_fdatawait_range(mapping, start, end);
979777e6bd7SChris Mason 		if (err)
980777e6bd7SChris Mason 			werr = err;
981e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
982e38e2ed7SFilipe Manana 		cached_state = NULL;
983777e6bd7SChris Mason 		cond_resched();
9841728366eSJosef Bacik 		start = end + 1;
985777e6bd7SChris Mason 	}
9867c4452b9SChris Mason 	if (err)
9877c4452b9SChris Mason 		werr = err;
988bf89d38fSJeff Mahoney 	return werr;
989bf89d38fSJeff Mahoney }
990656f30dbSFilipe Manana 
991bf89d38fSJeff Mahoney int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
992bf89d38fSJeff Mahoney 		       struct extent_io_tree *dirty_pages)
993bf89d38fSJeff Mahoney {
994bf89d38fSJeff Mahoney 	bool errors = false;
995bf89d38fSJeff Mahoney 	int err;
996bf89d38fSJeff Mahoney 
997bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
998bf89d38fSJeff Mahoney 	if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
999bf89d38fSJeff Mahoney 		errors = true;
1000bf89d38fSJeff Mahoney 
1001bf89d38fSJeff Mahoney 	if (errors && !err)
1002bf89d38fSJeff Mahoney 		err = -EIO;
1003bf89d38fSJeff Mahoney 	return err;
1004bf89d38fSJeff Mahoney }
1005bf89d38fSJeff Mahoney 
1006bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1007bf89d38fSJeff Mahoney {
1008bf89d38fSJeff Mahoney 	struct btrfs_fs_info *fs_info = log_root->fs_info;
1009bf89d38fSJeff Mahoney 	struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1010bf89d38fSJeff Mahoney 	bool errors = false;
1011bf89d38fSJeff Mahoney 	int err;
1012bf89d38fSJeff Mahoney 
1013bf89d38fSJeff Mahoney 	ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1014bf89d38fSJeff Mahoney 
1015bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1016656f30dbSFilipe Manana 	if ((mark & EXTENT_DIRTY) &&
10170b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1018656f30dbSFilipe Manana 		errors = true;
1019656f30dbSFilipe Manana 
1020656f30dbSFilipe Manana 	if ((mark & EXTENT_NEW) &&
10210b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1022656f30dbSFilipe Manana 		errors = true;
1023656f30dbSFilipe Manana 
1024bf89d38fSJeff Mahoney 	if (errors && !err)
1025bf89d38fSJeff Mahoney 		err = -EIO;
1026bf89d38fSJeff Mahoney 	return err;
102779154b1bSChris Mason }
102879154b1bSChris Mason 
1029690587d1SChris Mason /*
1030c9b577c0SNikolay Borisov  * When btree blocks are allocated the corresponding extents are marked dirty.
1031c9b577c0SNikolay Borisov  * This function ensures such extents are persisted on disk for transaction or
1032c9b577c0SNikolay Borisov  * log commit.
1033c9b577c0SNikolay Borisov  *
1034c9b577c0SNikolay Borisov  * @trans: transaction whose dirty pages we'd like to write
1035690587d1SChris Mason  */
103670458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
1037d0c803c4SChris Mason {
1038663dfbb0SFilipe Manana 	int ret;
1039c9b577c0SNikolay Borisov 	int ret2;
1040c9b577c0SNikolay Borisov 	struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
104170458a58SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1042c9b577c0SNikolay Borisov 	struct blk_plug plug;
1043663dfbb0SFilipe Manana 
1044c9b577c0SNikolay Borisov 	blk_start_plug(&plug);
1045c9b577c0SNikolay Borisov 	ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
1046c9b577c0SNikolay Borisov 	blk_finish_plug(&plug);
1047c9b577c0SNikolay Borisov 	ret2 = btrfs_wait_extents(fs_info, dirty_pages);
1048c9b577c0SNikolay Borisov 
104941e7acd3SNikolay Borisov 	extent_io_tree_release(&trans->transaction->dirty_pages);
1050663dfbb0SFilipe Manana 
1051c9b577c0SNikolay Borisov 	if (ret)
1052663dfbb0SFilipe Manana 		return ret;
1053c9b577c0SNikolay Borisov 	else if (ret2)
1054c9b577c0SNikolay Borisov 		return ret2;
1055c9b577c0SNikolay Borisov 	else
1056c9b577c0SNikolay Borisov 		return 0;
1057d0c803c4SChris Mason }
1058d0c803c4SChris Mason 
1059d352ac68SChris Mason /*
1060d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
1061d352ac68SChris Mason  *
1062d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
1063d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
1064d352ac68SChris Mason  * allocation tree.
1065d352ac68SChris Mason  *
1066d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
1067d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
1068d352ac68SChris Mason  */
10690b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
107079154b1bSChris Mason 			       struct btrfs_root *root)
107179154b1bSChris Mason {
107279154b1bSChris Mason 	int ret;
10730b86a832SChris Mason 	u64 old_root_bytenr;
107486b9f2ecSYan, Zheng 	u64 old_root_used;
10750b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
10760b246afaSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
107779154b1bSChris Mason 
107886b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
107956bec294SChris Mason 
108079154b1bSChris Mason 	while (1) {
10810b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
108286b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
1083ea526d18SJosef Bacik 		    old_root_used == btrfs_root_used(&root->root_item))
108479154b1bSChris Mason 			break;
108587ef2bb4SChris Mason 
10865d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
108779154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
10880b86a832SChris Mason 					&root->root_key,
10890b86a832SChris Mason 					&root->root_item);
109049b25e05SJeff Mahoney 		if (ret)
109149b25e05SJeff Mahoney 			return ret;
109256bec294SChris Mason 
109386b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
1094e7070be1SJosef Bacik 	}
1095276e680dSYan Zheng 
10960b86a832SChris Mason 	return 0;
10970b86a832SChris Mason }
10980b86a832SChris Mason 
1099d352ac68SChris Mason /*
1100d352ac68SChris Mason  * update all the cowonly tree roots on disk
110149b25e05SJeff Mahoney  *
110249b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
110349b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
110449b25e05SJeff Mahoney  * to clean up the delayed refs.
1105d352ac68SChris Mason  */
11069386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
11070b86a832SChris Mason {
11089386d8bcSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1109ea526d18SJosef Bacik 	struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
11101bbc621eSChris Mason 	struct list_head *io_bgs = &trans->transaction->io_bgs;
11110b86a832SChris Mason 	struct list_head *next;
111284234f3aSYan Zheng 	struct extent_buffer *eb;
111356bec294SChris Mason 	int ret;
111484234f3aSYan Zheng 
111584234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
111649b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
111749b25e05SJeff Mahoney 			      0, &eb);
111884234f3aSYan Zheng 	btrfs_tree_unlock(eb);
111984234f3aSYan Zheng 	free_extent_buffer(eb);
11200b86a832SChris Mason 
112149b25e05SJeff Mahoney 	if (ret)
112249b25e05SJeff Mahoney 		return ret;
112349b25e05SJeff Mahoney 
1124c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
112549b25e05SJeff Mahoney 	if (ret)
112649b25e05SJeff Mahoney 		return ret;
112787ef2bb4SChris Mason 
1128196c9d8dSDavid Sterba 	ret = btrfs_run_dev_stats(trans);
1129c16ce190SJosef Bacik 	if (ret)
1130c16ce190SJosef Bacik 		return ret;
11312b584c68SDavid Sterba 	ret = btrfs_run_dev_replace(trans);
1132c16ce190SJosef Bacik 	if (ret)
1133c16ce190SJosef Bacik 		return ret;
1134280f8bd2SLu Fengqi 	ret = btrfs_run_qgroups(trans);
1135c16ce190SJosef Bacik 	if (ret)
1136c16ce190SJosef Bacik 		return ret;
1137546adb0dSJan Schmidt 
1138bbebb3e0SDavid Sterba 	ret = btrfs_setup_space_cache(trans);
1139dcdf7f6dSJosef Bacik 	if (ret)
1140dcdf7f6dSJosef Bacik 		return ret;
1141dcdf7f6dSJosef Bacik 
1142546adb0dSJan Schmidt 	/* run_qgroups might have added some more refs */
1143c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1144c16ce190SJosef Bacik 	if (ret)
1145c16ce190SJosef Bacik 		return ret;
1146ea526d18SJosef Bacik again:
11470b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
11482ff7e61eSJeff Mahoney 		struct btrfs_root *root;
11490b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
11500b86a832SChris Mason 		list_del_init(next);
11510b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
1152e7070be1SJosef Bacik 		clear_bit(BTRFS_ROOT_DIRTY, &root->state);
115387ef2bb4SChris Mason 
11549e351cc8SJosef Bacik 		if (root != fs_info->extent_root)
11559e351cc8SJosef Bacik 			list_add_tail(&root->dirty_list,
11569e351cc8SJosef Bacik 				      &trans->transaction->switch_commits);
115749b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
115849b25e05SJeff Mahoney 		if (ret)
115949b25e05SJeff Mahoney 			return ret;
1160c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1161ea526d18SJosef Bacik 		if (ret)
1162ea526d18SJosef Bacik 			return ret;
116379154b1bSChris Mason 	}
1164276e680dSYan Zheng 
11651bbc621eSChris Mason 	while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
11665742d15fSDavid Sterba 		ret = btrfs_write_dirty_block_groups(trans);
1167ea526d18SJosef Bacik 		if (ret)
1168ea526d18SJosef Bacik 			return ret;
1169c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1170ea526d18SJosef Bacik 		if (ret)
1171ea526d18SJosef Bacik 			return ret;
1172ea526d18SJosef Bacik 	}
1173ea526d18SJosef Bacik 
1174ea526d18SJosef Bacik 	if (!list_empty(&fs_info->dirty_cowonly_roots))
1175ea526d18SJosef Bacik 		goto again;
1176ea526d18SJosef Bacik 
11779e351cc8SJosef Bacik 	list_add_tail(&fs_info->extent_root->dirty_list,
11789e351cc8SJosef Bacik 		      &trans->transaction->switch_commits);
11799f6cbcbbSDavid Sterba 
11809f6cbcbbSDavid Sterba 	/* Update dev-replace pointer once everything is committed */
11819f6cbcbbSDavid Sterba 	fs_info->dev_replace.committed_cursor_left =
11829f6cbcbbSDavid Sterba 		fs_info->dev_replace.cursor_left_last_write_of_item;
11838dabb742SStefan Behrens 
118479154b1bSChris Mason 	return 0;
118579154b1bSChris Mason }
118679154b1bSChris Mason 
1187d352ac68SChris Mason /*
1188d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
1189d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
1190d352ac68SChris Mason  * be deleted
1191d352ac68SChris Mason  */
1192cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root)
11935eda7b5eSChris Mason {
11940b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
11950b246afaSJeff Mahoney 
11960b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1197cfad392bSJosef Bacik 	if (list_empty(&root->root_list))
11980b246afaSJeff Mahoney 		list_add_tail(&root->root_list, &fs_info->dead_roots);
11990b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
12005eda7b5eSChris Mason }
12015eda7b5eSChris Mason 
1202d352ac68SChris Mason /*
12035d4f98a2SYan Zheng  * update all the cowonly tree roots on disk
1204d352ac68SChris Mason  */
12057e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
12060f7d52f4SChris Mason {
12077e4443d9SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
12080f7d52f4SChris Mason 	struct btrfs_root *gang[8];
12090f7d52f4SChris Mason 	int i;
12100f7d52f4SChris Mason 	int ret;
121154aa1f4dSChris Mason 	int err = 0;
121254aa1f4dSChris Mason 
1213a4abeea4SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
12140f7d52f4SChris Mason 	while (1) {
12155d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
12165d4f98a2SYan Zheng 						 (void **)gang, 0,
12170f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
12180f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
12190f7d52f4SChris Mason 		if (ret == 0)
12200f7d52f4SChris Mason 			break;
12210f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
12225b4aacefSJeff Mahoney 			struct btrfs_root *root = gang[i];
12235d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
12242619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
12250f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
1226a4abeea4SJosef Bacik 			spin_unlock(&fs_info->fs_roots_radix_lock);
122731153d81SYan Zheng 
1228e02119d5SChris Mason 			btrfs_free_log(trans, root);
12295d4f98a2SYan Zheng 			btrfs_update_reloc_root(trans, root);
1230e02119d5SChris Mason 
123182d5902dSLi Zefan 			btrfs_save_ino_cache(root, trans);
123282d5902dSLi Zefan 
1233f1ebcc74SLiu Bo 			/* see comments in should_cow_block() */
123427cdeb70SMiao Xie 			clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1235c7548af6SChris Mason 			smp_mb__after_atomic();
1236f1ebcc74SLiu Bo 
1237978d910dSYan Zheng 			if (root->commit_root != root->node) {
12389e351cc8SJosef Bacik 				list_add_tail(&root->dirty_list,
12399e351cc8SJosef Bacik 					&trans->transaction->switch_commits);
1240978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
1241978d910dSYan Zheng 						    root->node);
1242978d910dSYan Zheng 			}
124331153d81SYan Zheng 
12445d4f98a2SYan Zheng 			err = btrfs_update_root(trans, fs_info->tree_root,
12450f7d52f4SChris Mason 						&root->root_key,
12460f7d52f4SChris Mason 						&root->root_item);
1247a4abeea4SJosef Bacik 			spin_lock(&fs_info->fs_roots_radix_lock);
124854aa1f4dSChris Mason 			if (err)
124954aa1f4dSChris Mason 				break;
1250733e03a0SQu Wenruo 			btrfs_qgroup_free_meta_all_pertrans(root);
12510f7d52f4SChris Mason 		}
12529f3a7427SChris Mason 	}
1253a4abeea4SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
125454aa1f4dSChris Mason 	return err;
12550f7d52f4SChris Mason }
12560f7d52f4SChris Mason 
1257d352ac68SChris Mason /*
1258de78b51aSEric Sandeen  * defrag a given btree.
1259de78b51aSEric Sandeen  * Every leaf in the btree is read and defragged.
1260d352ac68SChris Mason  */
1261de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root)
1262e9d0b13bSChris Mason {
1263e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
1264e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
12658929ecfaSYan, Zheng 	int ret;
1266e9d0b13bSChris Mason 
126727cdeb70SMiao Xie 	if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
1268e9d0b13bSChris Mason 		return 0;
12698929ecfaSYan, Zheng 
12706b80053dSChris Mason 	while (1) {
12718929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
12728929ecfaSYan, Zheng 		if (IS_ERR(trans))
12738929ecfaSYan, Zheng 			return PTR_ERR(trans);
12748929ecfaSYan, Zheng 
1275de78b51aSEric Sandeen 		ret = btrfs_defrag_leaves(trans, root);
12768929ecfaSYan, Zheng 
12773a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
12782ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(info);
1279e9d0b13bSChris Mason 		cond_resched();
1280e9d0b13bSChris Mason 
1281ab8d0fc4SJeff Mahoney 		if (btrfs_fs_closing(info) || ret != -EAGAIN)
1282e9d0b13bSChris Mason 			break;
1283210549ebSDavid Sterba 
1284ab8d0fc4SJeff Mahoney 		if (btrfs_defrag_cancelled(info)) {
1285ab8d0fc4SJeff Mahoney 			btrfs_debug(info, "defrag_root cancelled");
1286210549ebSDavid Sterba 			ret = -EAGAIN;
1287210549ebSDavid Sterba 			break;
1288210549ebSDavid Sterba 		}
1289e9d0b13bSChris Mason 	}
129027cdeb70SMiao Xie 	clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
12918929ecfaSYan, Zheng 	return ret;
1292e9d0b13bSChris Mason }
1293e9d0b13bSChris Mason 
1294d352ac68SChris Mason /*
12956426c7adSQu Wenruo  * Do all special snapshot related qgroup dirty hack.
12966426c7adSQu Wenruo  *
12976426c7adSQu Wenruo  * Will do all needed qgroup inherit and dirty hack like switch commit
12986426c7adSQu Wenruo  * roots inside one transaction and write all btree into disk, to make
12996426c7adSQu Wenruo  * qgroup works.
13006426c7adSQu Wenruo  */
13016426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
13026426c7adSQu Wenruo 				   struct btrfs_root *src,
13036426c7adSQu Wenruo 				   struct btrfs_root *parent,
13046426c7adSQu Wenruo 				   struct btrfs_qgroup_inherit *inherit,
13056426c7adSQu Wenruo 				   u64 dst_objectid)
13066426c7adSQu Wenruo {
13076426c7adSQu Wenruo 	struct btrfs_fs_info *fs_info = src->fs_info;
13086426c7adSQu Wenruo 	int ret;
13096426c7adSQu Wenruo 
13106426c7adSQu Wenruo 	/*
13116426c7adSQu Wenruo 	 * Save some performance in the case that qgroups are not
13126426c7adSQu Wenruo 	 * enabled. If this check races with the ioctl, rescan will
13136426c7adSQu Wenruo 	 * kick in anyway.
13146426c7adSQu Wenruo 	 */
13159ea6e2b5SDavid Sterba 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
13166426c7adSQu Wenruo 		return 0;
13176426c7adSQu Wenruo 
13186426c7adSQu Wenruo 	/*
131952042d8eSAndrea Gelmini 	 * Ensure dirty @src will be committed.  Or, after coming
13204d31778aSQu Wenruo 	 * commit_fs_roots() and switch_commit_roots(), any dirty but not
13214d31778aSQu Wenruo 	 * recorded root will never be updated again, causing an outdated root
13224d31778aSQu Wenruo 	 * item.
13234d31778aSQu Wenruo 	 */
13244d31778aSQu Wenruo 	record_root_in_trans(trans, src, 1);
13254d31778aSQu Wenruo 
13264d31778aSQu Wenruo 	/*
13276426c7adSQu Wenruo 	 * We are going to commit transaction, see btrfs_commit_transaction()
13286426c7adSQu Wenruo 	 * comment for reason locking tree_log_mutex
13296426c7adSQu Wenruo 	 */
13306426c7adSQu Wenruo 	mutex_lock(&fs_info->tree_log_mutex);
13316426c7adSQu Wenruo 
13327e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
13336426c7adSQu Wenruo 	if (ret)
13346426c7adSQu Wenruo 		goto out;
1335460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
13366426c7adSQu Wenruo 	if (ret < 0)
13376426c7adSQu Wenruo 		goto out;
13386426c7adSQu Wenruo 
13396426c7adSQu Wenruo 	/* Now qgroup are all updated, we can inherit it to new qgroups */
1340a9377422SLu Fengqi 	ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
13416426c7adSQu Wenruo 				   inherit);
13426426c7adSQu Wenruo 	if (ret < 0)
13436426c7adSQu Wenruo 		goto out;
13446426c7adSQu Wenruo 
13456426c7adSQu Wenruo 	/*
13466426c7adSQu Wenruo 	 * Now we do a simplified commit transaction, which will:
13476426c7adSQu Wenruo 	 * 1) commit all subvolume and extent tree
13486426c7adSQu Wenruo 	 *    To ensure all subvolume and extent tree have a valid
13496426c7adSQu Wenruo 	 *    commit_root to accounting later insert_dir_item()
13506426c7adSQu Wenruo 	 * 2) write all btree blocks onto disk
13516426c7adSQu Wenruo 	 *    This is to make sure later btree modification will be cowed
13526426c7adSQu Wenruo 	 *    Or commit_root can be populated and cause wrong qgroup numbers
13536426c7adSQu Wenruo 	 * In this simplified commit, we don't really care about other trees
13546426c7adSQu Wenruo 	 * like chunk and root tree, as they won't affect qgroup.
13556426c7adSQu Wenruo 	 * And we don't write super to avoid half committed status.
13566426c7adSQu Wenruo 	 */
13579386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
13586426c7adSQu Wenruo 	if (ret)
13596426c7adSQu Wenruo 		goto out;
136016916a88SNikolay Borisov 	switch_commit_roots(trans->transaction);
136170458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
13626426c7adSQu Wenruo 	if (ret)
1363f7af3934SDavid Sterba 		btrfs_handle_fs_error(fs_info, ret,
13646426c7adSQu Wenruo 			"Error while writing out transaction for qgroup");
13656426c7adSQu Wenruo 
13666426c7adSQu Wenruo out:
13676426c7adSQu Wenruo 	mutex_unlock(&fs_info->tree_log_mutex);
13686426c7adSQu Wenruo 
13696426c7adSQu Wenruo 	/*
13706426c7adSQu Wenruo 	 * Force parent root to be updated, as we recorded it before so its
13716426c7adSQu Wenruo 	 * last_trans == cur_transid.
13726426c7adSQu Wenruo 	 * Or it won't be committed again onto disk after later
13736426c7adSQu Wenruo 	 * insert_dir_item()
13746426c7adSQu Wenruo 	 */
13756426c7adSQu Wenruo 	if (!ret)
13766426c7adSQu Wenruo 		record_root_in_trans(trans, parent, 1);
13776426c7adSQu Wenruo 	return ret;
13786426c7adSQu Wenruo }
13796426c7adSQu Wenruo 
13806426c7adSQu Wenruo /*
1381d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
1382aec8030aSMiao Xie  * transaction commit.  This does the actual creation.
1383aec8030aSMiao Xie  *
1384aec8030aSMiao Xie  * Note:
1385aec8030aSMiao Xie  * If the error which may affect the commitment of the current transaction
1386aec8030aSMiao Xie  * happens, we should return the error number. If the error which just affect
1387aec8030aSMiao Xie  * the creation of the pending snapshots, just return 0.
1388d352ac68SChris Mason  */
138980b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
13903063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
13913063d29fSChris Mason {
139208d50ca3SNikolay Borisov 
139308d50ca3SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
13943063d29fSChris Mason 	struct btrfs_key key;
139580b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
13963063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
13973063d29fSChris Mason 	struct btrfs_root *root = pending->root;
13986bdb72deSSage Weil 	struct btrfs_root *parent_root;
139998c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
14006bdb72deSSage Weil 	struct inode *parent_inode;
140142874b3dSMiao Xie 	struct btrfs_path *path;
140242874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
1403a22285a6SYan, Zheng 	struct dentry *dentry;
14043063d29fSChris Mason 	struct extent_buffer *tmp;
1405925baeddSChris Mason 	struct extent_buffer *old;
140695582b00SDeepa Dinamani 	struct timespec64 cur_time;
1407aec8030aSMiao Xie 	int ret = 0;
1408d68fc57bSYan, Zheng 	u64 to_reserve = 0;
14096bdb72deSSage Weil 	u64 index = 0;
1410a22285a6SYan, Zheng 	u64 objectid;
1411b83cc969SLi Zefan 	u64 root_flags;
14128ea05e3aSAlexander Block 	uuid_le new_uuid;
14133063d29fSChris Mason 
14148546b570SDavid Sterba 	ASSERT(pending->path);
14158546b570SDavid Sterba 	path = pending->path;
141642874b3dSMiao Xie 
1417b0c0ea63SDavid Sterba 	ASSERT(pending->root_item);
1418b0c0ea63SDavid Sterba 	new_root_item = pending->root_item;
1419a22285a6SYan, Zheng 
1420aec8030aSMiao Xie 	pending->error = btrfs_find_free_objectid(tree_root, &objectid);
1421aec8030aSMiao Xie 	if (pending->error)
14226fa9700eSMiao Xie 		goto no_free_objectid;
14233063d29fSChris Mason 
1424d6726335SQu Wenruo 	/*
1425d6726335SQu Wenruo 	 * Make qgroup to skip current new snapshot's qgroupid, as it is
1426d6726335SQu Wenruo 	 * accounted by later btrfs_qgroup_inherit().
1427d6726335SQu Wenruo 	 */
1428d6726335SQu Wenruo 	btrfs_set_skip_qgroup(trans, objectid);
1429d6726335SQu Wenruo 
1430147d256eSZhaolei 	btrfs_reloc_pre_snapshot(pending, &to_reserve);
1431d68fc57bSYan, Zheng 
1432d68fc57bSYan, Zheng 	if (to_reserve > 0) {
1433aec8030aSMiao Xie 		pending->error = btrfs_block_rsv_add(root,
1434aec8030aSMiao Xie 						     &pending->block_rsv,
143508e007d2SMiao Xie 						     to_reserve,
143608e007d2SMiao Xie 						     BTRFS_RESERVE_NO_FLUSH);
1437aec8030aSMiao Xie 		if (pending->error)
1438d6726335SQu Wenruo 			goto clear_skip_qgroup;
1439d68fc57bSYan, Zheng 	}
1440d68fc57bSYan, Zheng 
14413063d29fSChris Mason 	key.objectid = objectid;
1442a22285a6SYan, Zheng 	key.offset = (u64)-1;
1443a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
14443063d29fSChris Mason 
14456fa9700eSMiao Xie 	rsv = trans->block_rsv;
1446a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
14472382c5ccSLiu Bo 	trans->bytes_reserved = trans->block_rsv->reserved;
14480b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
144988d3a5aaSJosef Bacik 				      trans->transid,
145088d3a5aaSJosef Bacik 				      trans->bytes_reserved, 1);
1451a22285a6SYan, Zheng 	dentry = pending->dentry;
1452e9662f70SMiao Xie 	parent_inode = pending->dir;
1453a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
14546426c7adSQu Wenruo 	record_root_in_trans(trans, parent_root, 0);
1455a22285a6SYan, Zheng 
1456c2050a45SDeepa Dinamani 	cur_time = current_time(parent_inode);
145704b285f3SDeepa Dinamani 
14586bdb72deSSage Weil 	/*
14596bdb72deSSage Weil 	 * insert the directory item
14606bdb72deSSage Weil 	 */
1461877574e2SNikolay Borisov 	ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
146249b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
146342874b3dSMiao Xie 
146442874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
146542874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
14664a0cc7caSNikolay Borisov 					 btrfs_ino(BTRFS_I(parent_inode)),
146742874b3dSMiao Xie 					 dentry->d_name.name,
146842874b3dSMiao Xie 					 dentry->d_name.len, 0);
146942874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1470fe66a05aSChris Mason 		pending->error = -EEXIST;
1471aec8030aSMiao Xie 		goto dir_item_existed;
147242874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
147342874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
147466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
14758732d44fSMiao Xie 		goto fail;
147679787eaaSJeff Mahoney 	}
147742874b3dSMiao Xie 	btrfs_release_path(path);
14786bdb72deSSage Weil 
1479e999376fSChris Mason 	/*
1480e999376fSChris Mason 	 * pull in the delayed directory update
1481e999376fSChris Mason 	 * and the delayed inode item
1482e999376fSChris Mason 	 * otherwise we corrupt the FS during
1483e999376fSChris Mason 	 * snapshot
1484e999376fSChris Mason 	 */
1485e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
14868732d44fSMiao Xie 	if (ret) {	/* Transaction aborted */
148766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
14888732d44fSMiao Xie 		goto fail;
14898732d44fSMiao Xie 	}
1490e999376fSChris Mason 
14916426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
14926bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
14936bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
149408fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
14956bdb72deSSage Weil 
1496b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1497b83cc969SLi Zefan 	if (pending->readonly)
1498b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1499b83cc969SLi Zefan 	else
1500b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1501b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1502b83cc969SLi Zefan 
15038ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
15048ea05e3aSAlexander Block 			trans->transid);
15058ea05e3aSAlexander Block 	uuid_le_gen(&new_uuid);
15068ea05e3aSAlexander Block 	memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
15078ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
15088ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
150970023da2SStefan Behrens 	if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
151070023da2SStefan Behrens 		memset(new_root_item->received_uuid, 0,
151170023da2SStefan Behrens 		       sizeof(new_root_item->received_uuid));
15128ea05e3aSAlexander Block 		memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
15138ea05e3aSAlexander Block 		memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
15148ea05e3aSAlexander Block 		btrfs_set_root_stransid(new_root_item, 0);
15158ea05e3aSAlexander Block 		btrfs_set_root_rtransid(new_root_item, 0);
151670023da2SStefan Behrens 	}
15173cae210fSQu Wenruo 	btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
15183cae210fSQu Wenruo 	btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
151970023da2SStefan Behrens 	btrfs_set_root_otransid(new_root_item, trans->transid);
15208ea05e3aSAlexander Block 
1521925baeddSChris Mason 	old = btrfs_lock_root_node(root);
152249b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old);
152379787eaaSJeff Mahoney 	if (ret) {
152479787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
152579787eaaSJeff Mahoney 		free_extent_buffer(old);
152666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15278732d44fSMiao Xie 		goto fail;
152879787eaaSJeff Mahoney 	}
152949b25e05SJeff Mahoney 
15308bead258SDavid Sterba 	btrfs_set_lock_blocking_write(old);
15313063d29fSChris Mason 
153249b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
153379787eaaSJeff Mahoney 	/* clean up in any case */
1534925baeddSChris Mason 	btrfs_tree_unlock(old);
1535925baeddSChris Mason 	free_extent_buffer(old);
15368732d44fSMiao Xie 	if (ret) {
153766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15388732d44fSMiao Xie 		goto fail;
15398732d44fSMiao Xie 	}
1540f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
154127cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1542f1ebcc74SLiu Bo 	smp_wmb();
1543f1ebcc74SLiu Bo 
15445d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1545a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1546a22285a6SYan, Zheng 	key.offset = trans->transid;
1547a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1548925baeddSChris Mason 	btrfs_tree_unlock(tmp);
15493063d29fSChris Mason 	free_extent_buffer(tmp);
15508732d44fSMiao Xie 	if (ret) {
155166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15528732d44fSMiao Xie 		goto fail;
15538732d44fSMiao Xie 	}
15540660b5afSChris Mason 
1555a22285a6SYan, Zheng 	/*
1556a22285a6SYan, Zheng 	 * insert root back/forward references
1557a22285a6SYan, Zheng 	 */
15586025c19fSLu Fengqi 	ret = btrfs_add_root_ref(trans, objectid,
1559a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
15604a0cc7caSNikolay Borisov 				 btrfs_ino(BTRFS_I(parent_inode)), index,
1561a22285a6SYan, Zheng 				 dentry->d_name.name, dentry->d_name.len);
15628732d44fSMiao Xie 	if (ret) {
156366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15648732d44fSMiao Xie 		goto fail;
15658732d44fSMiao Xie 	}
1566a22285a6SYan, Zheng 
1567a22285a6SYan, Zheng 	key.offset = (u64)-1;
15680b246afaSJeff Mahoney 	pending->snap = btrfs_read_fs_root_no_name(fs_info, &key);
156979787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
157079787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
157166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15728732d44fSMiao Xie 		goto fail;
157379787eaaSJeff Mahoney 	}
1574d68fc57bSYan, Zheng 
157549b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
15768732d44fSMiao Xie 	if (ret) {
157766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15788732d44fSMiao Xie 		goto fail;
15798732d44fSMiao Xie 	}
1580361048f5SMiao Xie 
1581c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
15828732d44fSMiao Xie 	if (ret) {
158366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15848732d44fSMiao Xie 		goto fail;
15858732d44fSMiao Xie 	}
158642874b3dSMiao Xie 
15876426c7adSQu Wenruo 	/*
15886426c7adSQu Wenruo 	 * Do special qgroup accounting for snapshot, as we do some qgroup
15896426c7adSQu Wenruo 	 * snapshot hack to do fast snapshot.
15906426c7adSQu Wenruo 	 * To co-operate with that hack, we do hack again.
15916426c7adSQu Wenruo 	 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
15926426c7adSQu Wenruo 	 */
15936426c7adSQu Wenruo 	ret = qgroup_account_snapshot(trans, root, parent_root,
15946426c7adSQu Wenruo 				      pending->inherit, objectid);
15956426c7adSQu Wenruo 	if (ret < 0)
15966426c7adSQu Wenruo 		goto fail;
15976426c7adSQu Wenruo 
1598684572dfSLu Fengqi 	ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1599684572dfSLu Fengqi 				    dentry->d_name.len, BTRFS_I(parent_inode),
1600684572dfSLu Fengqi 				    &key, BTRFS_FT_DIR, index);
160142874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
16029c52057cSChris Mason 	BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
16038732d44fSMiao Xie 	if (ret) {
160466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16058732d44fSMiao Xie 		goto fail;
16068732d44fSMiao Xie 	}
160742874b3dSMiao Xie 
16086ef06d27SNikolay Borisov 	btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
160942874b3dSMiao Xie 					 dentry->d_name.len * 2);
161004b285f3SDeepa Dinamani 	parent_inode->i_mtime = parent_inode->i_ctime =
1611c2050a45SDeepa Dinamani 		current_time(parent_inode);
1612be6aef60SJosef Bacik 	ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode);
1613dd5f9615SStefan Behrens 	if (ret) {
161466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1615dd5f9615SStefan Behrens 		goto fail;
1616dd5f9615SStefan Behrens 	}
1617cdb345a8SLu Fengqi 	ret = btrfs_uuid_tree_add(trans, new_uuid.b, BTRFS_UUID_KEY_SUBVOL,
1618cdb345a8SLu Fengqi 				  objectid);
1619dd5f9615SStefan Behrens 	if (ret) {
162066642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1621dd5f9615SStefan Behrens 		goto fail;
1622dd5f9615SStefan Behrens 	}
1623dd5f9615SStefan Behrens 	if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1624cdb345a8SLu Fengqi 		ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
1625dd5f9615SStefan Behrens 					  BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1626dd5f9615SStefan Behrens 					  objectid);
1627dd5f9615SStefan Behrens 		if (ret && ret != -EEXIST) {
162866642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
1629dd5f9615SStefan Behrens 			goto fail;
1630dd5f9615SStefan Behrens 		}
1631dd5f9615SStefan Behrens 	}
1632d6726335SQu Wenruo 
1633c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1634d6726335SQu Wenruo 	if (ret) {
163566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1636d6726335SQu Wenruo 		goto fail;
1637d6726335SQu Wenruo 	}
1638d6726335SQu Wenruo 
16393063d29fSChris Mason fail:
1640aec8030aSMiao Xie 	pending->error = ret;
1641aec8030aSMiao Xie dir_item_existed:
164298c9942aSLiu Bo 	trans->block_rsv = rsv;
16432382c5ccSLiu Bo 	trans->bytes_reserved = 0;
1644d6726335SQu Wenruo clear_skip_qgroup:
1645d6726335SQu Wenruo 	btrfs_clear_skip_qgroup(trans);
16466fa9700eSMiao Xie no_free_objectid:
16476fa9700eSMiao Xie 	kfree(new_root_item);
1648b0c0ea63SDavid Sterba 	pending->root_item = NULL;
164942874b3dSMiao Xie 	btrfs_free_path(path);
16508546b570SDavid Sterba 	pending->path = NULL;
16518546b570SDavid Sterba 
165249b25e05SJeff Mahoney 	return ret;
16533063d29fSChris Mason }
16543063d29fSChris Mason 
1655d352ac68SChris Mason /*
1656d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1657d352ac68SChris Mason  */
165808d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
16593063d29fSChris Mason {
1660aec8030aSMiao Xie 	struct btrfs_pending_snapshot *pending, *next;
16613063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
1662aec8030aSMiao Xie 	int ret = 0;
16633de4586cSChris Mason 
1664aec8030aSMiao Xie 	list_for_each_entry_safe(pending, next, head, list) {
1665aec8030aSMiao Xie 		list_del(&pending->list);
166608d50ca3SNikolay Borisov 		ret = create_pending_snapshot(trans, pending);
1667aec8030aSMiao Xie 		if (ret)
1668aec8030aSMiao Xie 			break;
1669aec8030aSMiao Xie 	}
1670aec8030aSMiao Xie 	return ret;
16713de4586cSChris Mason }
16723de4586cSChris Mason 
16732ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info)
16745d4f98a2SYan Zheng {
16755d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
16765d4f98a2SYan Zheng 	struct btrfs_super_block *super;
16775d4f98a2SYan Zheng 
16780b246afaSJeff Mahoney 	super = fs_info->super_copy;
16795d4f98a2SYan Zheng 
16800b246afaSJeff Mahoney 	root_item = &fs_info->chunk_root->root_item;
1681093e037cSDavid Sterba 	super->chunk_root = root_item->bytenr;
1682093e037cSDavid Sterba 	super->chunk_root_generation = root_item->generation;
1683093e037cSDavid Sterba 	super->chunk_root_level = root_item->level;
16845d4f98a2SYan Zheng 
16850b246afaSJeff Mahoney 	root_item = &fs_info->tree_root->root_item;
1686093e037cSDavid Sterba 	super->root = root_item->bytenr;
1687093e037cSDavid Sterba 	super->generation = root_item->generation;
1688093e037cSDavid Sterba 	super->root_level = root_item->level;
16890b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
1690093e037cSDavid Sterba 		super->cache_generation = root_item->generation;
16910b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
1692093e037cSDavid Sterba 		super->uuid_tree_generation = root_item->generation;
16935d4f98a2SYan Zheng }
16945d4f98a2SYan Zheng 
1695f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1696f36f3042SChris Mason {
16974a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
1698f36f3042SChris Mason 	int ret = 0;
16994a9d8bdeSMiao Xie 
1700a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
17014a9d8bdeSMiao Xie 	trans = info->running_transaction;
17024a9d8bdeSMiao Xie 	if (trans)
17034a9d8bdeSMiao Xie 		ret = (trans->state >= TRANS_STATE_COMMIT_START);
1704a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1705f36f3042SChris Mason 	return ret;
1706f36f3042SChris Mason }
1707f36f3042SChris Mason 
17088929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
17098929ecfaSYan, Zheng {
17104a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
17118929ecfaSYan, Zheng 	int ret = 0;
17124a9d8bdeSMiao Xie 
1713a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
17144a9d8bdeSMiao Xie 	trans = info->running_transaction;
17154a9d8bdeSMiao Xie 	if (trans)
17164a9d8bdeSMiao Xie 		ret = is_transaction_blocked(trans);
1717a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
17188929ecfaSYan, Zheng 	return ret;
17198929ecfaSYan, Zheng }
17208929ecfaSYan, Zheng 
1721bb9c12c9SSage Weil /*
1722bb9c12c9SSage Weil  * wait for the current transaction commit to start and block subsequent
1723bb9c12c9SSage Weil  * transaction joins
1724bb9c12c9SSage Weil  */
17252ff7e61eSJeff Mahoney static void wait_current_trans_commit_start(struct btrfs_fs_info *fs_info,
1726bb9c12c9SSage Weil 					    struct btrfs_transaction *trans)
1727bb9c12c9SSage Weil {
17282ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_blocked_wait,
17292ff7e61eSJeff Mahoney 		   trans->state >= TRANS_STATE_COMMIT_START || trans->aborted);
1730bb9c12c9SSage Weil }
1731bb9c12c9SSage Weil 
1732bb9c12c9SSage Weil /*
1733bb9c12c9SSage Weil  * wait for the current transaction to start and then become unblocked.
1734bb9c12c9SSage Weil  * caller holds ref.
1735bb9c12c9SSage Weil  */
17362ff7e61eSJeff Mahoney static void wait_current_trans_commit_start_and_unblock(
17372ff7e61eSJeff Mahoney 					struct btrfs_fs_info *fs_info,
1738bb9c12c9SSage Weil 					struct btrfs_transaction *trans)
1739bb9c12c9SSage Weil {
17402ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_wait,
17412ff7e61eSJeff Mahoney 		   trans->state >= TRANS_STATE_UNBLOCKED || trans->aborted);
1742bb9c12c9SSage Weil }
1743bb9c12c9SSage Weil 
1744bb9c12c9SSage Weil /*
1745bb9c12c9SSage Weil  * commit transactions asynchronously. once btrfs_commit_transaction_async
1746bb9c12c9SSage Weil  * returns, any subsequent transaction will not be allowed to join.
1747bb9c12c9SSage Weil  */
1748bb9c12c9SSage Weil struct btrfs_async_commit {
1749bb9c12c9SSage Weil 	struct btrfs_trans_handle *newtrans;
17507892b5afSMiao Xie 	struct work_struct work;
1751bb9c12c9SSage Weil };
1752bb9c12c9SSage Weil 
1753bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work)
1754bb9c12c9SSage Weil {
1755bb9c12c9SSage Weil 	struct btrfs_async_commit *ac =
17567892b5afSMiao Xie 		container_of(work, struct btrfs_async_commit, work);
1757bb9c12c9SSage Weil 
17586fc4e354SSage Weil 	/*
17596fc4e354SSage Weil 	 * We've got freeze protection passed with the transaction.
17606fc4e354SSage Weil 	 * Tell lockdep about it.
17616fc4e354SSage Weil 	 */
1762b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
17633a45bb20SJeff Mahoney 		__sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS);
17646fc4e354SSage Weil 
1765e209db7aSSage Weil 	current->journal_info = ac->newtrans;
1766e209db7aSSage Weil 
17673a45bb20SJeff Mahoney 	btrfs_commit_transaction(ac->newtrans);
1768bb9c12c9SSage Weil 	kfree(ac);
1769bb9c12c9SSage Weil }
1770bb9c12c9SSage Weil 
1771bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1772bb9c12c9SSage Weil 				   int wait_for_unblock)
1773bb9c12c9SSage Weil {
17743a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
1775bb9c12c9SSage Weil 	struct btrfs_async_commit *ac;
1776bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1777bb9c12c9SSage Weil 
1778bb9c12c9SSage Weil 	ac = kmalloc(sizeof(*ac), GFP_NOFS);
1779db5b493aSTsutomu Itoh 	if (!ac)
1780db5b493aSTsutomu Itoh 		return -ENOMEM;
1781bb9c12c9SSage Weil 
17827892b5afSMiao Xie 	INIT_WORK(&ac->work, do_async_commit);
17833a45bb20SJeff Mahoney 	ac->newtrans = btrfs_join_transaction(trans->root);
17843612b495STsutomu Itoh 	if (IS_ERR(ac->newtrans)) {
17853612b495STsutomu Itoh 		int err = PTR_ERR(ac->newtrans);
17863612b495STsutomu Itoh 		kfree(ac);
17873612b495STsutomu Itoh 		return err;
17883612b495STsutomu Itoh 	}
1789bb9c12c9SSage Weil 
1790bb9c12c9SSage Weil 	/* take transaction reference */
1791bb9c12c9SSage Weil 	cur_trans = trans->transaction;
17929b64f57dSElena Reshetova 	refcount_inc(&cur_trans->use_count);
1793bb9c12c9SSage Weil 
17943a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
17956fc4e354SSage Weil 
17966fc4e354SSage Weil 	/*
17976fc4e354SSage Weil 	 * Tell lockdep we've released the freeze rwsem, since the
17986fc4e354SSage Weil 	 * async commit thread will be the one to unlock it.
17996fc4e354SSage Weil 	 */
1800b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
18010b246afaSJeff Mahoney 		__sb_writers_release(fs_info->sb, SB_FREEZE_FS);
18026fc4e354SSage Weil 
18037892b5afSMiao Xie 	schedule_work(&ac->work);
1804bb9c12c9SSage Weil 
1805bb9c12c9SSage Weil 	/* wait for transaction to start and unblock */
1806bb9c12c9SSage Weil 	if (wait_for_unblock)
18072ff7e61eSJeff Mahoney 		wait_current_trans_commit_start_and_unblock(fs_info, cur_trans);
1808bb9c12c9SSage Weil 	else
18092ff7e61eSJeff Mahoney 		wait_current_trans_commit_start(fs_info, cur_trans);
1810bb9c12c9SSage Weil 
181138e88054SSage Weil 	if (current->journal_info == trans)
181238e88054SSage Weil 		current->journal_info = NULL;
181338e88054SSage Weil 
1814724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1815bb9c12c9SSage Weil 	return 0;
1816bb9c12c9SSage Weil }
1817bb9c12c9SSage Weil 
181849b25e05SJeff Mahoney 
181997cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
182049b25e05SJeff Mahoney {
182197cb39bbSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
182249b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
182349b25e05SJeff Mahoney 
1824b50fff81SDavid Sterba 	WARN_ON(refcount_read(&trans->use_count) > 1);
182549b25e05SJeff Mahoney 
182666642832SJeff Mahoney 	btrfs_abort_transaction(trans, err);
18277b8b92afSJosef Bacik 
18280b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
182966b6135bSLiu Bo 
183025d8c284SMiao Xie 	/*
183125d8c284SMiao Xie 	 * If the transaction is removed from the list, it means this
183225d8c284SMiao Xie 	 * transaction has been committed successfully, so it is impossible
183325d8c284SMiao Xie 	 * to call the cleanup function.
183425d8c284SMiao Xie 	 */
183525d8c284SMiao Xie 	BUG_ON(list_empty(&cur_trans->list));
183666b6135bSLiu Bo 
183749b25e05SJeff Mahoney 	list_del_init(&cur_trans->list);
18380b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction) {
18394a9d8bdeSMiao Xie 		cur_trans->state = TRANS_STATE_COMMIT_DOING;
18400b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
1841f094ac32SLiu Bo 		wait_event(cur_trans->writer_wait,
1842f094ac32SLiu Bo 			   atomic_read(&cur_trans->num_writers) == 1);
1843f094ac32SLiu Bo 
18440b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
1845d7096fc3SJosef Bacik 	}
18460b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
184749b25e05SJeff Mahoney 
18482ff7e61eSJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, fs_info);
184949b25e05SJeff Mahoney 
18500b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
18510b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction)
18520b246afaSJeff Mahoney 		fs_info->running_transaction = NULL;
18530b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
18544a9d8bdeSMiao Xie 
1855e0228285SJosef Bacik 	if (trans->type & __TRANS_FREEZABLE)
18560b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
1857724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1858724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
185949b25e05SJeff Mahoney 
186097cb39bbSNikolay Borisov 	trace_btrfs_transaction_commit(trans->root);
186149b25e05SJeff Mahoney 
186249b25e05SJeff Mahoney 	if (current->journal_info == trans)
186349b25e05SJeff Mahoney 		current->journal_info = NULL;
18640b246afaSJeff Mahoney 	btrfs_scrub_cancel(fs_info);
186549b25e05SJeff Mahoney 
186649b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
186749b25e05SJeff Mahoney }
186849b25e05SJeff Mahoney 
1869c7cc64a9SDavid Sterba /*
1870c7cc64a9SDavid Sterba  * Release reserved delayed ref space of all pending block groups of the
1871c7cc64a9SDavid Sterba  * transaction and remove them from the list
1872c7cc64a9SDavid Sterba  */
1873c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
1874c7cc64a9SDavid Sterba {
1875c7cc64a9SDavid Sterba        struct btrfs_fs_info *fs_info = trans->fs_info;
1876c7cc64a9SDavid Sterba        struct btrfs_block_group_cache *block_group, *tmp;
1877c7cc64a9SDavid Sterba 
1878c7cc64a9SDavid Sterba        list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
1879c7cc64a9SDavid Sterba                btrfs_delayed_refs_rsv_release(fs_info, 1);
1880c7cc64a9SDavid Sterba                list_del_init(&block_group->bg_list);
1881c7cc64a9SDavid Sterba        }
1882c7cc64a9SDavid Sterba }
1883c7cc64a9SDavid Sterba 
1884609e804dSFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_trans_handle *trans)
188582436617SMiao Xie {
1886609e804dSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
1887609e804dSFilipe Manana 
1888ce8ea7ccSJosef Bacik 	/*
1889ce8ea7ccSJosef Bacik 	 * We use writeback_inodes_sb here because if we used
1890ce8ea7ccSJosef Bacik 	 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
1891ce8ea7ccSJosef Bacik 	 * Currently are holding the fs freeze lock, if we do an async flush
1892ce8ea7ccSJosef Bacik 	 * we'll do btrfs_join_transaction() and deadlock because we need to
1893ce8ea7ccSJosef Bacik 	 * wait for the fs freeze lock.  Using the direct flushing we benefit
1894ce8ea7ccSJosef Bacik 	 * from already being in a transaction and our join_transaction doesn't
1895ce8ea7ccSJosef Bacik 	 * have to re-take the fs freeze lock.
1896ce8ea7ccSJosef Bacik 	 */
1897609e804dSFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) {
1898ce8ea7ccSJosef Bacik 		writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
1899609e804dSFilipe Manana 	} else {
1900609e804dSFilipe Manana 		struct btrfs_pending_snapshot *pending;
1901609e804dSFilipe Manana 		struct list_head *head = &trans->transaction->pending_snapshots;
1902609e804dSFilipe Manana 
1903609e804dSFilipe Manana 		/*
1904609e804dSFilipe Manana 		 * Flush dellaloc for any root that is going to be snapshotted.
1905609e804dSFilipe Manana 		 * This is done to avoid a corrupted version of files, in the
1906609e804dSFilipe Manana 		 * snapshots, that had both buffered and direct IO writes (even
1907609e804dSFilipe Manana 		 * if they were done sequentially) due to an unordered update of
1908609e804dSFilipe Manana 		 * the inode's size on disk.
1909609e804dSFilipe Manana 		 */
1910609e804dSFilipe Manana 		list_for_each_entry(pending, head, list) {
1911609e804dSFilipe Manana 			int ret;
1912609e804dSFilipe Manana 
1913609e804dSFilipe Manana 			ret = btrfs_start_delalloc_snapshot(pending->root);
1914609e804dSFilipe Manana 			if (ret)
1915609e804dSFilipe Manana 				return ret;
1916609e804dSFilipe Manana 		}
1917609e804dSFilipe Manana 	}
191882436617SMiao Xie 	return 0;
191982436617SMiao Xie }
192082436617SMiao Xie 
1921609e804dSFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_trans_handle *trans)
192282436617SMiao Xie {
1923609e804dSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
1924609e804dSFilipe Manana 
1925609e804dSFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) {
19266374e57aSChris Mason 		btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
1927609e804dSFilipe Manana 	} else {
1928609e804dSFilipe Manana 		struct btrfs_pending_snapshot *pending;
1929609e804dSFilipe Manana 		struct list_head *head = &trans->transaction->pending_snapshots;
1930609e804dSFilipe Manana 
1931609e804dSFilipe Manana 		/*
1932609e804dSFilipe Manana 		 * Wait for any dellaloc that we started previously for the roots
1933609e804dSFilipe Manana 		 * that are going to be snapshotted. This is to avoid a corrupted
1934609e804dSFilipe Manana 		 * version of files in the snapshots that had both buffered and
1935609e804dSFilipe Manana 		 * direct IO writes (even if they were done sequentially).
1936609e804dSFilipe Manana 		 */
1937609e804dSFilipe Manana 		list_for_each_entry(pending, head, list)
1938609e804dSFilipe Manana 			btrfs_wait_ordered_extents(pending->root,
1939609e804dSFilipe Manana 						   U64_MAX, 0, U64_MAX);
1940609e804dSFilipe Manana 	}
194182436617SMiao Xie }
194282436617SMiao Xie 
19433a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
194479154b1bSChris Mason {
19453a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
194649b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
19478fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
194825287e0aSMiao Xie 	int ret;
194979154b1bSChris Mason 
19508d25a086SMiao Xie 	/* Stop the commit early if ->aborted is set */
195120c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
195225287e0aSMiao Xie 		ret = cur_trans->aborted;
19533a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
1954e4a2bcacSJosef Bacik 		return ret;
195525287e0aSMiao Xie 	}
195649b25e05SJeff Mahoney 
1957f45c752bSJosef Bacik 	btrfs_trans_release_metadata(trans);
1958f45c752bSJosef Bacik 	trans->block_rsv = NULL;
1959f45c752bSJosef Bacik 
196056bec294SChris Mason 	/* make a pass through all the delayed refs we have so far
196156bec294SChris Mason 	 * any runnings procs may add more while we are here
196256bec294SChris Mason 	 */
1963c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
1964e4a2bcacSJosef Bacik 	if (ret) {
19653a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
1966e4a2bcacSJosef Bacik 		return ret;
1967e4a2bcacSJosef Bacik 	}
196856bec294SChris Mason 
1969b7ec40d7SChris Mason 	cur_trans = trans->transaction;
197049b25e05SJeff Mahoney 
197156bec294SChris Mason 	/*
197256bec294SChris Mason 	 * set the flushing flag so procs in this transaction have to
197356bec294SChris Mason 	 * start sending their work down.
197456bec294SChris Mason 	 */
1975b7ec40d7SChris Mason 	cur_trans->delayed_refs.flushing = 1;
19761be41b78SJosef Bacik 	smp_wmb();
197756bec294SChris Mason 
19786c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
1979ea658badSJosef Bacik 
1980c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
1981e4a2bcacSJosef Bacik 	if (ret) {
19823a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
1983e4a2bcacSJosef Bacik 		return ret;
1984e4a2bcacSJosef Bacik 	}
198556bec294SChris Mason 
19863204d33cSJosef Bacik 	if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
19871bbc621eSChris Mason 		int run_it = 0;
19881bbc621eSChris Mason 
19891bbc621eSChris Mason 		/* this mutex is also taken before trying to set
19901bbc621eSChris Mason 		 * block groups readonly.  We need to make sure
19911bbc621eSChris Mason 		 * that nobody has set a block group readonly
19921bbc621eSChris Mason 		 * after a extents from that block group have been
19931bbc621eSChris Mason 		 * allocated for cache files.  btrfs_set_block_group_ro
19941bbc621eSChris Mason 		 * will wait for the transaction to commit if it
19953204d33cSJosef Bacik 		 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
19961bbc621eSChris Mason 		 *
19973204d33cSJosef Bacik 		 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
19983204d33cSJosef Bacik 		 * only one process starts all the block group IO.  It wouldn't
19991bbc621eSChris Mason 		 * hurt to have more than one go through, but there's no
20001bbc621eSChris Mason 		 * real advantage to it either.
20011bbc621eSChris Mason 		 */
20020b246afaSJeff Mahoney 		mutex_lock(&fs_info->ro_block_group_mutex);
20033204d33cSJosef Bacik 		if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
20043204d33cSJosef Bacik 				      &cur_trans->flags))
20051bbc621eSChris Mason 			run_it = 1;
20060b246afaSJeff Mahoney 		mutex_unlock(&fs_info->ro_block_group_mutex);
20071bbc621eSChris Mason 
2008f9cacae3SNikolay Borisov 		if (run_it) {
200921217054SNikolay Borisov 			ret = btrfs_start_dirty_block_groups(trans);
20101bbc621eSChris Mason 			if (ret) {
20113a45bb20SJeff Mahoney 				btrfs_end_transaction(trans);
20121bbc621eSChris Mason 				return ret;
20131bbc621eSChris Mason 			}
2014f9cacae3SNikolay Borisov 		}
2015f9cacae3SNikolay Borisov 	}
20161bbc621eSChris Mason 
20170b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
20184a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
20190b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
20209b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
20213a45bb20SJeff Mahoney 		ret = btrfs_end_transaction(trans);
2022ccd467d6SChris Mason 
20232ff7e61eSJeff Mahoney 		wait_for_commit(cur_trans);
202415ee9bc7SJosef Bacik 
2025b4924a0fSLiu Bo 		if (unlikely(cur_trans->aborted))
2026b4924a0fSLiu Bo 			ret = cur_trans->aborted;
2027b4924a0fSLiu Bo 
2028724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
202915ee9bc7SJosef Bacik 
203049b25e05SJeff Mahoney 		return ret;
203179154b1bSChris Mason 	}
20324313b399SChris Mason 
20334a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
20340b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
2035bb9c12c9SSage Weil 
20360b246afaSJeff Mahoney 	if (cur_trans->list.prev != &fs_info->trans_list) {
2037ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
2038ccd467d6SChris Mason 					struct btrfs_transaction, list);
20394a9d8bdeSMiao Xie 		if (prev_trans->state != TRANS_STATE_COMPLETED) {
20409b64f57dSElena Reshetova 			refcount_inc(&prev_trans->use_count);
20410b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2042ccd467d6SChris Mason 
20432ff7e61eSJeff Mahoney 			wait_for_commit(prev_trans);
20441f9b8c8fSFilipe Manana 			ret = prev_trans->aborted;
2045ccd467d6SChris Mason 
2046724e2315SJosef Bacik 			btrfs_put_transaction(prev_trans);
20471f9b8c8fSFilipe Manana 			if (ret)
20481f9b8c8fSFilipe Manana 				goto cleanup_transaction;
2049a4abeea4SJosef Bacik 		} else {
20500b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2051ccd467d6SChris Mason 		}
2052a4abeea4SJosef Bacik 	} else {
20530b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
2054cb2d3dadSFilipe Manana 		/*
2055cb2d3dadSFilipe Manana 		 * The previous transaction was aborted and was already removed
2056cb2d3dadSFilipe Manana 		 * from the list of transactions at fs_info->trans_list. So we
2057cb2d3dadSFilipe Manana 		 * abort to prevent writing a new superblock that reflects a
2058cb2d3dadSFilipe Manana 		 * corrupt state (pointing to trees with unwritten nodes/leafs).
2059cb2d3dadSFilipe Manana 		 */
2060cb2d3dadSFilipe Manana 		if (test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state)) {
2061cb2d3dadSFilipe Manana 			ret = -EROFS;
2062cb2d3dadSFilipe Manana 			goto cleanup_transaction;
2063cb2d3dadSFilipe Manana 		}
2064ccd467d6SChris Mason 	}
206515ee9bc7SJosef Bacik 
20660860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
20670860adfdSMiao Xie 
2068609e804dSFilipe Manana 	ret = btrfs_start_delalloc_flush(trans);
206982436617SMiao Xie 	if (ret)
207082436617SMiao Xie 		goto cleanup_transaction;
207182436617SMiao Xie 
2072e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
207349b25e05SJeff Mahoney 	if (ret)
207449b25e05SJeff Mahoney 		goto cleanup_transaction;
207516cdcec7SMiao Xie 
2076581227d0SMiao Xie 	wait_event(cur_trans->writer_wait,
2077581227d0SMiao Xie 		   extwriter_counter_read(cur_trans) == 0);
2078ed3b3d31SChris Mason 
2079581227d0SMiao Xie 	/* some pending stuffs might be added after the previous flush. */
2080e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
2081ca469637SMiao Xie 	if (ret)
2082ca469637SMiao Xie 		goto cleanup_transaction;
2083ca469637SMiao Xie 
2084609e804dSFilipe Manana 	btrfs_wait_delalloc_flush(trans);
2085cb7ab021SWang Shilong 
20862ff7e61eSJeff Mahoney 	btrfs_scrub_pause(fs_info);
2087ed0ca140SJosef Bacik 	/*
2088ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
2089ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
20904a9d8bdeSMiao Xie 	 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
2091ed0ca140SJosef Bacik 	 */
20920b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
20934a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_DOING;
20940b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2095ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
2096ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
209715ee9bc7SJosef Bacik 
20982cba30f1SMiao Xie 	/* ->aborted might be set after the previous check, so check it */
209920c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
21002cba30f1SMiao Xie 		ret = cur_trans->aborted;
21016cf7f77eSWang Shilong 		goto scrub_continue;
21022cba30f1SMiao Xie 	}
21037585717fSChris Mason 	/*
21047585717fSChris Mason 	 * the reloc mutex makes sure that we stop
21057585717fSChris Mason 	 * the balancing code from coming in and moving
21067585717fSChris Mason 	 * extents around in the middle of the commit
21077585717fSChris Mason 	 */
21080b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
21097585717fSChris Mason 
211042874b3dSMiao Xie 	/*
211142874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
211242874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
211342874b3dSMiao Xie 	 * core function of the snapshot creation.
211442874b3dSMiao Xie 	 */
211508d50ca3SNikolay Borisov 	ret = create_pending_snapshots(trans);
211649b25e05SJeff Mahoney 	if (ret) {
21170b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
21186cf7f77eSWang Shilong 		goto scrub_continue;
211949b25e05SJeff Mahoney 	}
21203063d29fSChris Mason 
212142874b3dSMiao Xie 	/*
212242874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
212342874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
212442874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
212542874b3dSMiao Xie 	 * them.
212642874b3dSMiao Xie 	 *
212742874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
212842874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
212942874b3dSMiao Xie 	 * the nodes and leaves.
213042874b3dSMiao Xie 	 */
2131e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
213249b25e05SJeff Mahoney 	if (ret) {
21330b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
21346cf7f77eSWang Shilong 		goto scrub_continue;
213549b25e05SJeff Mahoney 	}
213616cdcec7SMiao Xie 
2137c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
213849b25e05SJeff Mahoney 	if (ret) {
21390b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
21406cf7f77eSWang Shilong 		goto scrub_continue;
214149b25e05SJeff Mahoney 	}
214256bec294SChris Mason 
2143e999376fSChris Mason 	/*
2144e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
2145e999376fSChris Mason 	 * delayed item
2146e999376fSChris Mason 	 */
2147ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
2148e999376fSChris Mason 
21492c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
2150dc17ff8fSChris Mason 
2151e02119d5SChris Mason 	/* btrfs_commit_tree_roots is responsible for getting the
2152e02119d5SChris Mason 	 * various roots consistent with each other.  Every pointer
2153e02119d5SChris Mason 	 * in the tree of tree roots has to point to the most up to date
2154e02119d5SChris Mason 	 * root for every subvolume and other tree.  So, we have to keep
2155e02119d5SChris Mason 	 * the tree logging code from jumping in and changing any
2156e02119d5SChris Mason 	 * of the trees.
2157e02119d5SChris Mason 	 *
2158e02119d5SChris Mason 	 * At this point in the commit, there can't be any tree-log
2159e02119d5SChris Mason 	 * writers, but a little lower down we drop the trans mutex
2160e02119d5SChris Mason 	 * and let new people in.  By holding the tree_log_mutex
2161e02119d5SChris Mason 	 * from now until after the super is written, we avoid races
2162e02119d5SChris Mason 	 * with the tree-log code.
2163e02119d5SChris Mason 	 */
21640b246afaSJeff Mahoney 	mutex_lock(&fs_info->tree_log_mutex);
21651a40e23bSZheng Yan 
21667e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
216749b25e05SJeff Mahoney 	if (ret) {
21680b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
21690b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
21706cf7f77eSWang Shilong 		goto scrub_continue;
217149b25e05SJeff Mahoney 	}
217254aa1f4dSChris Mason 
21733818aea2SQu Wenruo 	/*
21747e1876acSDavid Sterba 	 * Since the transaction is done, we can apply the pending changes
21757e1876acSDavid Sterba 	 * before the next transaction.
21763818aea2SQu Wenruo 	 */
21770b246afaSJeff Mahoney 	btrfs_apply_pending_changes(fs_info);
21783818aea2SQu Wenruo 
21795d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
2180e02119d5SChris Mason 	 * safe to free the root of tree log roots
2181e02119d5SChris Mason 	 */
21820b246afaSJeff Mahoney 	btrfs_free_log_root_tree(trans, fs_info);
2183e02119d5SChris Mason 
21840ed4792aSQu Wenruo 	/*
218582bafb38SQu Wenruo 	 * commit_fs_roots() can call btrfs_save_ino_cache(), which generates
218682bafb38SQu Wenruo 	 * new delayed refs. Must handle them or qgroup can be wrong.
218782bafb38SQu Wenruo 	 */
2188c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
218982bafb38SQu Wenruo 	if (ret) {
219082bafb38SQu Wenruo 		mutex_unlock(&fs_info->tree_log_mutex);
219182bafb38SQu Wenruo 		mutex_unlock(&fs_info->reloc_mutex);
219282bafb38SQu Wenruo 		goto scrub_continue;
219382bafb38SQu Wenruo 	}
219482bafb38SQu Wenruo 
219582bafb38SQu Wenruo 	/*
21960ed4792aSQu Wenruo 	 * Since fs roots are all committed, we can get a quite accurate
21970ed4792aSQu Wenruo 	 * new_roots. So let's do quota accounting.
21980ed4792aSQu Wenruo 	 */
2199460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
22000ed4792aSQu Wenruo 	if (ret < 0) {
22010b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22020b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22030ed4792aSQu Wenruo 		goto scrub_continue;
22040ed4792aSQu Wenruo 	}
22050ed4792aSQu Wenruo 
22069386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
220749b25e05SJeff Mahoney 	if (ret) {
22080b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22090b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22106cf7f77eSWang Shilong 		goto scrub_continue;
221149b25e05SJeff Mahoney 	}
221254aa1f4dSChris Mason 
22132cba30f1SMiao Xie 	/*
22142cba30f1SMiao Xie 	 * The tasks which save the space cache and inode cache may also
22152cba30f1SMiao Xie 	 * update ->aborted, check it.
22162cba30f1SMiao Xie 	 */
221720c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
22182cba30f1SMiao Xie 		ret = cur_trans->aborted;
22190b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22200b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22216cf7f77eSWang Shilong 		goto scrub_continue;
22222cba30f1SMiao Xie 	}
22232cba30f1SMiao Xie 
22248b74c03eSDavid Sterba 	btrfs_prepare_extent_commit(fs_info);
222511833d66SYan Zheng 
22260b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
22275f39d397SChris Mason 
22280b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->tree_root->root_item,
22290b246afaSJeff Mahoney 			    fs_info->tree_root->node);
22300b246afaSJeff Mahoney 	list_add_tail(&fs_info->tree_root->dirty_list,
22319e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
22325d4f98a2SYan Zheng 
22330b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->chunk_root->root_item,
22340b246afaSJeff Mahoney 			    fs_info->chunk_root->node);
22350b246afaSJeff Mahoney 	list_add_tail(&fs_info->chunk_root->dirty_list,
22369e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
22379e351cc8SJosef Bacik 
223816916a88SNikolay Borisov 	switch_commit_roots(cur_trans);
22395d4f98a2SYan Zheng 
2240ce93ec54SJosef Bacik 	ASSERT(list_empty(&cur_trans->dirty_bgs));
22411bbc621eSChris Mason 	ASSERT(list_empty(&cur_trans->io_bgs));
22422ff7e61eSJeff Mahoney 	update_super_roots(fs_info);
2243e02119d5SChris Mason 
22440b246afaSJeff Mahoney 	btrfs_set_super_log_root(fs_info->super_copy, 0);
22450b246afaSJeff Mahoney 	btrfs_set_super_log_root_level(fs_info->super_copy, 0);
22460b246afaSJeff Mahoney 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
22470b246afaSJeff Mahoney 	       sizeof(*fs_info->super_copy));
2248ccd467d6SChris Mason 
2249bbbf7243SNikolay Borisov 	btrfs_commit_device_sizes(cur_trans);
2250935e5cc9SMiao Xie 
22510b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
22520b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
2253656f30dbSFilipe Manana 
22544fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
22554fbcdf66SFilipe Manana 
22560b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
22574a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
22580b246afaSJeff Mahoney 	fs_info->running_transaction = NULL;
22590b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
22600b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
2261b7ec40d7SChris Mason 
22620b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
2263e6dcd2dcSChris Mason 
226470458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
226549b25e05SJeff Mahoney 	if (ret) {
22660b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
226708748810SDavid Sterba 				      "Error while writing out transaction");
22680b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22696cf7f77eSWang Shilong 		goto scrub_continue;
227049b25e05SJeff Mahoney 	}
227149b25e05SJeff Mahoney 
2272eece6a9cSDavid Sterba 	ret = write_all_supers(fs_info, 0);
2273e02119d5SChris Mason 	/*
2274e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
2275e02119d5SChris Mason 	 * to go about their business
2276e02119d5SChris Mason 	 */
22770b246afaSJeff Mahoney 	mutex_unlock(&fs_info->tree_log_mutex);
2278c1f32b7cSAnand Jain 	if (ret)
2279c1f32b7cSAnand Jain 		goto scrub_continue;
2280e02119d5SChris Mason 
22815ead2dd0SNikolay Borisov 	btrfs_finish_extent_commit(trans);
22824313b399SChris Mason 
22833204d33cSJosef Bacik 	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
22840b246afaSJeff Mahoney 		btrfs_clear_space_info_full(fs_info);
228513212b54SZhao Lei 
22860b246afaSJeff Mahoney 	fs_info->last_trans_committed = cur_trans->transid;
22874a9d8bdeSMiao Xie 	/*
22884a9d8bdeSMiao Xie 	 * We needn't acquire the lock here because there is no other task
22894a9d8bdeSMiao Xie 	 * which can change it.
22904a9d8bdeSMiao Xie 	 */
22914a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMPLETED;
22922c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
2293a514d638SQu Wenruo 	clear_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags);
22943de4586cSChris Mason 
22950b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
229613c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
22970b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2298a4abeea4SJosef Bacik 
2299724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2300724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
230158176a96SJosef Bacik 
23020860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
23030b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2304b2b5ef5cSJan Kara 
23053a45bb20SJeff Mahoney 	trace_btrfs_transaction_commit(trans->root);
23061abe9b8aSliubo 
23072ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
2308a2de733cSArne Jansen 
23099ed74f2dSJosef Bacik 	if (current->journal_info == trans)
23109ed74f2dSJosef Bacik 		current->journal_info = NULL;
23119ed74f2dSJosef Bacik 
23122c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
231324bbcf04SYan, Zheng 
231479154b1bSChris Mason 	return ret;
231549b25e05SJeff Mahoney 
23166cf7f77eSWang Shilong scrub_continue:
23172ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
231849b25e05SJeff Mahoney cleanup_transaction:
2319dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
2320c7cc64a9SDavid Sterba 	btrfs_cleanup_pending_block_groups(trans);
23214fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
23220e721106SJosef Bacik 	trans->block_rsv = NULL;
23230b246afaSJeff Mahoney 	btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
232449b25e05SJeff Mahoney 	if (current->journal_info == trans)
232549b25e05SJeff Mahoney 		current->journal_info = NULL;
232697cb39bbSNikolay Borisov 	cleanup_transaction(trans, ret);
232749b25e05SJeff Mahoney 
232849b25e05SJeff Mahoney 	return ret;
232979154b1bSChris Mason }
233079154b1bSChris Mason 
2331d352ac68SChris Mason /*
23329d1a2a3aSDavid Sterba  * return < 0 if error
23339d1a2a3aSDavid Sterba  * 0 if there are no more dead_roots at the time of call
23349d1a2a3aSDavid Sterba  * 1 there are more to be processed, call me again
23359d1a2a3aSDavid Sterba  *
23369d1a2a3aSDavid Sterba  * The return value indicates there are certainly more snapshots to delete, but
23379d1a2a3aSDavid Sterba  * if there comes a new one during processing, it may return 0. We don't mind,
23389d1a2a3aSDavid Sterba  * because btrfs_commit_super will poke cleaner thread and it will process it a
23399d1a2a3aSDavid Sterba  * few seconds later.
2340d352ac68SChris Mason  */
23419d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
2342e9d0b13bSChris Mason {
23439d1a2a3aSDavid Sterba 	int ret;
23445d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
2345e9d0b13bSChris Mason 
2346a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
23479d1a2a3aSDavid Sterba 	if (list_empty(&fs_info->dead_roots)) {
23489d1a2a3aSDavid Sterba 		spin_unlock(&fs_info->trans_lock);
23499d1a2a3aSDavid Sterba 		return 0;
23509d1a2a3aSDavid Sterba 	}
23519d1a2a3aSDavid Sterba 	root = list_first_entry(&fs_info->dead_roots,
23529d1a2a3aSDavid Sterba 			struct btrfs_root, root_list);
2353cfad392bSJosef Bacik 	list_del_init(&root->root_list);
2354a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
23555d4f98a2SYan Zheng 
23564fd786e6SMisono Tomohiro 	btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
235776dda93cSYan, Zheng 
235816cdcec7SMiao Xie 	btrfs_kill_all_delayed_nodes(root);
235916cdcec7SMiao Xie 
236076dda93cSYan, Zheng 	if (btrfs_header_backref_rev(root->node) <
236176dda93cSYan, Zheng 			BTRFS_MIXED_BACKREF_REV)
23622c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(root, NULL, 0, 0);
236376dda93cSYan, Zheng 	else
23642c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(root, NULL, 1, 0);
236532471dc2SDavid Sterba 
23666596a928SJosef Bacik 	return (ret < 0) ? 0 : 1;
2367e9d0b13bSChris Mason }
2368572d9ab7SDavid Sterba 
2369572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2370572d9ab7SDavid Sterba {
2371572d9ab7SDavid Sterba 	unsigned long prev;
2372572d9ab7SDavid Sterba 	unsigned long bit;
2373572d9ab7SDavid Sterba 
23746c9fe14fSQu Wenruo 	prev = xchg(&fs_info->pending_changes, 0);
2375572d9ab7SDavid Sterba 	if (!prev)
2376572d9ab7SDavid Sterba 		return;
2377572d9ab7SDavid Sterba 
23787e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE;
23797e1876acSDavid Sterba 	if (prev & bit)
23807e1876acSDavid Sterba 		btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE);
23817e1876acSDavid Sterba 	prev &= ~bit;
23827e1876acSDavid Sterba 
23837e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE;
23847e1876acSDavid Sterba 	if (prev & bit)
23857e1876acSDavid Sterba 		btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE);
23867e1876acSDavid Sterba 	prev &= ~bit;
23877e1876acSDavid Sterba 
2388d51033d0SDavid Sterba 	bit = 1 << BTRFS_PENDING_COMMIT;
2389d51033d0SDavid Sterba 	if (prev & bit)
2390d51033d0SDavid Sterba 		btrfs_debug(fs_info, "pending commit done");
2391d51033d0SDavid Sterba 	prev &= ~bit;
2392d51033d0SDavid Sterba 
2393572d9ab7SDavid Sterba 	if (prev)
2394572d9ab7SDavid Sterba 		btrfs_warn(fs_info,
2395572d9ab7SDavid Sterba 			"unknown pending changes left 0x%lx, ignoring", prev);
2396572d9ab7SDavid Sterba }
2397