xref: /openbmc/linux/fs/btrfs/transaction.c (revision dfba78dc)
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>
13602cbe91SDavid Sterba #include "misc.h"
1479154b1bSChris Mason #include "ctree.h"
1579154b1bSChris Mason #include "disk-io.h"
1679154b1bSChris Mason #include "transaction.h"
17925baeddSChris Mason #include "locking.h"
18e02119d5SChris Mason #include "tree-log.h"
19733f4fbbSStefan Behrens #include "volumes.h"
208dabb742SStefan Behrens #include "dev-replace.h"
21fcebe456SJosef Bacik #include "qgroup.h"
22aac0023cSJosef Bacik #include "block-group.h"
239c343784SJosef Bacik #include "space-info.h"
24d3575156SNaohiro Aota #include "zoned.h"
2579154b1bSChris Mason 
260f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
270f7d52f4SChris Mason 
2861c047b5SQu Wenruo /*
2961c047b5SQu Wenruo  * Transaction states and transitions
3061c047b5SQu Wenruo  *
3161c047b5SQu Wenruo  * No running transaction (fs tree blocks are not modified)
3261c047b5SQu Wenruo  * |
3361c047b5SQu Wenruo  * | To next stage:
3461c047b5SQu Wenruo  * |  Call start_transaction() variants. Except btrfs_join_transaction_nostart().
3561c047b5SQu Wenruo  * V
3661c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_RUNNING]]
3761c047b5SQu Wenruo  * |
3861c047b5SQu Wenruo  * | New trans handles can be attached to transaction N by calling all
3961c047b5SQu Wenruo  * | start_transaction() variants.
4061c047b5SQu Wenruo  * |
4161c047b5SQu Wenruo  * | To next stage:
4261c047b5SQu Wenruo  * |  Call btrfs_commit_transaction() on any trans handle attached to
4361c047b5SQu Wenruo  * |  transaction N
4461c047b5SQu Wenruo  * V
4561c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_START]]
4661c047b5SQu Wenruo  * |
4761c047b5SQu Wenruo  * | Will wait for previous running transaction to completely finish if there
4861c047b5SQu Wenruo  * | is one
4961c047b5SQu Wenruo  * |
5061c047b5SQu Wenruo  * | Then one of the following happes:
5161c047b5SQu Wenruo  * | - Wait for all other trans handle holders to release.
5261c047b5SQu Wenruo  * |   The btrfs_commit_transaction() caller will do the commit work.
5361c047b5SQu Wenruo  * | - Wait for current transaction to be committed by others.
5461c047b5SQu Wenruo  * |   Other btrfs_commit_transaction() caller will do the commit work.
5561c047b5SQu Wenruo  * |
5661c047b5SQu Wenruo  * | At this stage, only btrfs_join_transaction*() variants can attach
5761c047b5SQu Wenruo  * | to this running transaction.
5861c047b5SQu Wenruo  * | All other variants will wait for current one to finish and attach to
5961c047b5SQu Wenruo  * | transaction N+1.
6061c047b5SQu Wenruo  * |
6161c047b5SQu Wenruo  * | To next stage:
6261c047b5SQu Wenruo  * |  Caller is chosen to commit transaction N, and all other trans handle
6361c047b5SQu Wenruo  * |  haven been released.
6461c047b5SQu Wenruo  * V
6561c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_DOING]]
6661c047b5SQu Wenruo  * |
6761c047b5SQu Wenruo  * | The heavy lifting transaction work is started.
6861c047b5SQu Wenruo  * | From running delayed refs (modifying extent tree) to creating pending
6961c047b5SQu Wenruo  * | snapshots, running qgroups.
7061c047b5SQu Wenruo  * | In short, modify supporting trees to reflect modifications of subvolume
7161c047b5SQu Wenruo  * | trees.
7261c047b5SQu Wenruo  * |
7361c047b5SQu Wenruo  * | At this stage, all start_transaction() calls will wait for this
7461c047b5SQu Wenruo  * | transaction to finish and attach to transaction N+1.
7561c047b5SQu Wenruo  * |
7661c047b5SQu Wenruo  * | To next stage:
7761c047b5SQu Wenruo  * |  Until all supporting trees are updated.
7861c047b5SQu Wenruo  * V
7961c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_UNBLOCKED]]
8061c047b5SQu Wenruo  * |						    Transaction N+1
8161c047b5SQu Wenruo  * | All needed trees are modified, thus we only    [[TRANS_STATE_RUNNING]]
8261c047b5SQu Wenruo  * | need to write them back to disk and update	    |
8361c047b5SQu Wenruo  * | super blocks.				    |
8461c047b5SQu Wenruo  * |						    |
8561c047b5SQu Wenruo  * | At this stage, new transaction is allowed to   |
8661c047b5SQu Wenruo  * | start.					    |
8761c047b5SQu Wenruo  * | All new start_transaction() calls will be	    |
8861c047b5SQu Wenruo  * | attached to transid N+1.			    |
8961c047b5SQu Wenruo  * |						    |
9061c047b5SQu Wenruo  * | To next stage:				    |
9161c047b5SQu Wenruo  * |  Until all tree blocks are super blocks are    |
9261c047b5SQu Wenruo  * |  written to block devices			    |
9361c047b5SQu Wenruo  * V						    |
9461c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMPLETED]]	    V
9561c047b5SQu Wenruo  *   All tree blocks and super blocks are written.  Transaction N+1
9661c047b5SQu Wenruo  *   This transaction is finished and all its	    [[TRANS_STATE_COMMIT_START]]
9761c047b5SQu Wenruo  *   data structures will be cleaned up.	    | Life goes on
9861c047b5SQu Wenruo  */
99e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
1004a9d8bdeSMiao Xie 	[TRANS_STATE_RUNNING]		= 0U,
101bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_START]	= (__TRANS_START | __TRANS_ATTACH),
102bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_DOING]	= (__TRANS_START |
1034a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
104a6d155d2SFilipe Manana 					   __TRANS_JOIN |
105a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
106bcf3a3e7SNikolay Borisov 	[TRANS_STATE_UNBLOCKED]		= (__TRANS_START |
1074a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1084a9d8bdeSMiao Xie 					   __TRANS_JOIN |
109a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
110a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
111d0c2f4faSFilipe Manana 	[TRANS_STATE_SUPER_COMMITTED]	= (__TRANS_START |
112d0c2f4faSFilipe Manana 					   __TRANS_ATTACH |
113d0c2f4faSFilipe Manana 					   __TRANS_JOIN |
114d0c2f4faSFilipe Manana 					   __TRANS_JOIN_NOLOCK |
115d0c2f4faSFilipe Manana 					   __TRANS_JOIN_NOSTART),
116bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMPLETED]		= (__TRANS_START |
1174a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1184a9d8bdeSMiao Xie 					   __TRANS_JOIN |
119a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
120a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
1214a9d8bdeSMiao Xie };
1224a9d8bdeSMiao Xie 
123724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction)
12479154b1bSChris Mason {
1259b64f57dSElena Reshetova 	WARN_ON(refcount_read(&transaction->use_count) == 0);
1269b64f57dSElena Reshetova 	if (refcount_dec_and_test(&transaction->use_count)) {
127a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
1285c9d028bSLiu Bo 		WARN_ON(!RB_EMPTY_ROOT(
1295c9d028bSLiu Bo 				&transaction->delayed_refs.href_root.rb_root));
13081f7eb00SJeff Mahoney 		WARN_ON(!RB_EMPTY_ROOT(
13181f7eb00SJeff Mahoney 				&transaction->delayed_refs.dirty_extent_root));
1321262133bSJosef Bacik 		if (transaction->delayed_refs.pending_csums)
133ab8d0fc4SJeff Mahoney 			btrfs_err(transaction->fs_info,
134ab8d0fc4SJeff Mahoney 				  "pending csums is %llu",
1351262133bSJosef Bacik 				  transaction->delayed_refs.pending_csums);
1367785a663SFilipe Manana 		/*
1377785a663SFilipe Manana 		 * If any block groups are found in ->deleted_bgs then it's
1387785a663SFilipe Manana 		 * because the transaction was aborted and a commit did not
1397785a663SFilipe Manana 		 * happen (things failed before writing the new superblock
1407785a663SFilipe Manana 		 * and calling btrfs_finish_extent_commit()), so we can not
1417785a663SFilipe Manana 		 * discard the physical locations of the block groups.
1427785a663SFilipe Manana 		 */
1437785a663SFilipe Manana 		while (!list_empty(&transaction->deleted_bgs)) {
14432da5386SDavid Sterba 			struct btrfs_block_group *cache;
1457785a663SFilipe Manana 
1467785a663SFilipe Manana 			cache = list_first_entry(&transaction->deleted_bgs,
14732da5386SDavid Sterba 						 struct btrfs_block_group,
1487785a663SFilipe Manana 						 bg_list);
1497785a663SFilipe Manana 			list_del_init(&cache->bg_list);
1506b7304afSFilipe Manana 			btrfs_unfreeze_block_group(cache);
1517785a663SFilipe Manana 			btrfs_put_block_group(cache);
1527785a663SFilipe Manana 		}
153bbbf7243SNikolay Borisov 		WARN_ON(!list_empty(&transaction->dev_update_list));
1544b5faeacSDavid Sterba 		kfree(transaction);
15579154b1bSChris Mason 	}
15678fae27eSChris Mason }
15779154b1bSChris Mason 
158889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
159817d52f8SJosef Bacik {
160889bfa39SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
16116916a88SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1629e351cc8SJosef Bacik 	struct btrfs_root *root, *tmp;
16327d56e62SJosef Bacik 	struct btrfs_caching_control *caching_ctl, *next;
1649e351cc8SJosef Bacik 
165*dfba78dcSFilipe Manana 	/*
166*dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
167*dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
168*dfba78dcSFilipe Manana 	 */
169*dfba78dcSFilipe Manana 	ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING);
170*dfba78dcSFilipe Manana 
1719e351cc8SJosef Bacik 	down_write(&fs_info->commit_root_sem);
172889bfa39SJosef Bacik 	list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
1739e351cc8SJosef Bacik 				 dirty_list) {
1749e351cc8SJosef Bacik 		list_del_init(&root->dirty_list);
175817d52f8SJosef Bacik 		free_extent_buffer(root->commit_root);
176817d52f8SJosef Bacik 		root->commit_root = btrfs_root_node(root);
17741e7acd3SNikolay Borisov 		extent_io_tree_release(&root->dirty_log_pages);
178370a11b8SQu Wenruo 		btrfs_qgroup_clean_swapped_blocks(root);
1799e351cc8SJosef Bacik 	}
1802b9dbef2SJosef Bacik 
1812b9dbef2SJosef Bacik 	/* We can free old roots now. */
182889bfa39SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
183889bfa39SJosef Bacik 	while (!list_empty(&cur_trans->dropped_roots)) {
184889bfa39SJosef Bacik 		root = list_first_entry(&cur_trans->dropped_roots,
1852b9dbef2SJosef Bacik 					struct btrfs_root, root_list);
1862b9dbef2SJosef Bacik 		list_del_init(&root->root_list);
187889bfa39SJosef Bacik 		spin_unlock(&cur_trans->dropped_roots_lock);
188889bfa39SJosef Bacik 		btrfs_free_log(trans, root);
1892b9dbef2SJosef Bacik 		btrfs_drop_and_free_fs_root(fs_info, root);
190889bfa39SJosef Bacik 		spin_lock(&cur_trans->dropped_roots_lock);
1912b9dbef2SJosef Bacik 	}
192889bfa39SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
19327d56e62SJosef Bacik 
19427d56e62SJosef Bacik 	/*
19527d56e62SJosef Bacik 	 * We have to update the last_byte_to_unpin under the commit_root_sem,
19627d56e62SJosef Bacik 	 * at the same time we swap out the commit roots.
19727d56e62SJosef Bacik 	 *
19827d56e62SJosef Bacik 	 * This is because we must have a real view of the last spot the caching
19927d56e62SJosef Bacik 	 * kthreads were while caching.  Consider the following views of the
20027d56e62SJosef Bacik 	 * extent tree for a block group
20127d56e62SJosef Bacik 	 *
20227d56e62SJosef Bacik 	 * commit root
20327d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
20427d56e62SJosef Bacik 	 * |\\\\|    |\\\\|\\\\|    |\\\\|\\\\|
20527d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
20627d56e62SJosef Bacik 	 * 0    1    2    3    4    5    6    7
20727d56e62SJosef Bacik 	 *
20827d56e62SJosef Bacik 	 * new commit root
20927d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
21027d56e62SJosef Bacik 	 * |    |    |    |\\\\|    |    |\\\\|
21127d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
21227d56e62SJosef Bacik 	 * 0    1    2    3    4    5    6    7
21327d56e62SJosef Bacik 	 *
21427d56e62SJosef Bacik 	 * If the cache_ctl->progress was at 3, then we are only allowed to
21527d56e62SJosef Bacik 	 * unpin [0,1) and [2,3], because the caching thread has already
21627d56e62SJosef Bacik 	 * processed those extents.  We are not allowed to unpin [5,6), because
21727d56e62SJosef Bacik 	 * the caching thread will re-start it's search from 3, and thus find
21827d56e62SJosef Bacik 	 * the hole from [4,6) to add to the free space cache.
21927d56e62SJosef Bacik 	 */
220bbb86a37SJosef Bacik 	spin_lock(&fs_info->block_group_cache_lock);
22127d56e62SJosef Bacik 	list_for_each_entry_safe(caching_ctl, next,
22227d56e62SJosef Bacik 				 &fs_info->caching_block_groups, list) {
22327d56e62SJosef Bacik 		struct btrfs_block_group *cache = caching_ctl->block_group;
22427d56e62SJosef Bacik 
22527d56e62SJosef Bacik 		if (btrfs_block_group_done(cache)) {
22627d56e62SJosef Bacik 			cache->last_byte_to_unpin = (u64)-1;
22727d56e62SJosef Bacik 			list_del_init(&caching_ctl->list);
22827d56e62SJosef Bacik 			btrfs_put_caching_control(caching_ctl);
22927d56e62SJosef Bacik 		} else {
23027d56e62SJosef Bacik 			cache->last_byte_to_unpin = caching_ctl->progress;
23127d56e62SJosef Bacik 		}
23227d56e62SJosef Bacik 	}
233bbb86a37SJosef Bacik 	spin_unlock(&fs_info->block_group_cache_lock);
2349e351cc8SJosef Bacik 	up_write(&fs_info->commit_root_sem);
235817d52f8SJosef Bacik }
236817d52f8SJosef Bacik 
2370860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
2380860adfdSMiao Xie 					 unsigned int type)
2390860adfdSMiao Xie {
2400860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2410860adfdSMiao Xie 		atomic_inc(&trans->num_extwriters);
2420860adfdSMiao Xie }
2430860adfdSMiao Xie 
2440860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
2450860adfdSMiao Xie 					 unsigned int type)
2460860adfdSMiao Xie {
2470860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2480860adfdSMiao Xie 		atomic_dec(&trans->num_extwriters);
2490860adfdSMiao Xie }
2500860adfdSMiao Xie 
2510860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans,
2520860adfdSMiao Xie 					  unsigned int type)
2530860adfdSMiao Xie {
2540860adfdSMiao Xie 	atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
2550860adfdSMiao Xie }
2560860adfdSMiao Xie 
2570860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans)
2580860adfdSMiao Xie {
2590860adfdSMiao Xie 	return atomic_read(&trans->num_extwriters);
260178260b2SMiao Xie }
261178260b2SMiao Xie 
262d352ac68SChris Mason /*
26379bd3712SFilipe Manana  * To be called after doing the chunk btree updates right after allocating a new
26479bd3712SFilipe Manana  * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a
26579bd3712SFilipe Manana  * chunk after all chunk btree updates and after finishing the second phase of
26679bd3712SFilipe Manana  * chunk allocation (btrfs_create_pending_block_groups()) in case some block
26779bd3712SFilipe Manana  * group had its chunk item insertion delayed to the second phase.
268fb6dea26SJosef Bacik  */
269fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
270fb6dea26SJosef Bacik {
271fb6dea26SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
272fb6dea26SJosef Bacik 
273fb6dea26SJosef Bacik 	if (!trans->chunk_bytes_reserved)
274fb6dea26SJosef Bacik 		return;
275fb6dea26SJosef Bacik 
276fb6dea26SJosef Bacik 	btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
27763f018beSNikolay Borisov 				trans->chunk_bytes_reserved, NULL);
278fb6dea26SJosef Bacik 	trans->chunk_bytes_reserved = 0;
279fb6dea26SJosef Bacik }
280fb6dea26SJosef Bacik 
281fb6dea26SJosef Bacik /*
282d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
283d352ac68SChris Mason  */
2842ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info,
2852ff7e61eSJeff Mahoney 				     unsigned int type)
28679154b1bSChris Mason {
28779154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
288a4abeea4SJosef Bacik 
28919ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
290d43317dcSChris Mason loop:
29149b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
29284961539SJosef Bacik 	if (BTRFS_FS_ERROR(fs_info)) {
29319ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
29449b25e05SJeff Mahoney 		return -EROFS;
29549b25e05SJeff Mahoney 	}
29649b25e05SJeff Mahoney 
29719ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
298a4abeea4SJosef Bacik 	if (cur_trans) {
299bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans)) {
30019ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
30149b25e05SJeff Mahoney 			return cur_trans->aborted;
302871383beSDavid Sterba 		}
3034a9d8bdeSMiao Xie 		if (btrfs_blocked_trans_types[cur_trans->state] & type) {
304178260b2SMiao Xie 			spin_unlock(&fs_info->trans_lock);
305178260b2SMiao Xie 			return -EBUSY;
306178260b2SMiao Xie 		}
3079b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
308a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
3090860adfdSMiao Xie 		extwriter_counter_inc(cur_trans, type);
31019ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
311a4abeea4SJosef Bacik 		return 0;
312a4abeea4SJosef Bacik 	}
31319ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
314a4abeea4SJosef Bacik 
315354aa0fbSMiao Xie 	/*
316354aa0fbSMiao Xie 	 * If we are ATTACH, we just want to catch the current transaction,
317354aa0fbSMiao Xie 	 * and commit it. If there is no transaction, just return ENOENT.
318354aa0fbSMiao Xie 	 */
319354aa0fbSMiao Xie 	if (type == TRANS_ATTACH)
320354aa0fbSMiao Xie 		return -ENOENT;
321354aa0fbSMiao Xie 
3224a9d8bdeSMiao Xie 	/*
3234a9d8bdeSMiao Xie 	 * JOIN_NOLOCK only happens during the transaction commit, so
3244a9d8bdeSMiao Xie 	 * it is impossible that ->running_transaction is NULL
3254a9d8bdeSMiao Xie 	 */
3264a9d8bdeSMiao Xie 	BUG_ON(type == TRANS_JOIN_NOLOCK);
3274a9d8bdeSMiao Xie 
3284b5faeacSDavid Sterba 	cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
329db5b493aSTsutomu Itoh 	if (!cur_trans)
330db5b493aSTsutomu Itoh 		return -ENOMEM;
331d43317dcSChris Mason 
33219ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
33319ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
334d43317dcSChris Mason 		/*
335d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
3364a9d8bdeSMiao Xie 		 * to redo the checks above
337d43317dcSChris Mason 		 */
3384b5faeacSDavid Sterba 		kfree(cur_trans);
339d43317dcSChris Mason 		goto loop;
34084961539SJosef Bacik 	} else if (BTRFS_FS_ERROR(fs_info)) {
341e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
3424b5faeacSDavid Sterba 		kfree(cur_trans);
3437b8b92afSJosef Bacik 		return -EROFS;
344a4abeea4SJosef Bacik 	}
345d43317dcSChris Mason 
346ab8d0fc4SJeff Mahoney 	cur_trans->fs_info = fs_info;
34748778179SFilipe Manana 	atomic_set(&cur_trans->pending_ordered, 0);
34848778179SFilipe Manana 	init_waitqueue_head(&cur_trans->pending_wait);
34913c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
3500860adfdSMiao Xie 	extwriter_counter_init(cur_trans, type);
35179154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
35279154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
3534a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_RUNNING;
354a4abeea4SJosef Bacik 	/*
355a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
356a4abeea4SJosef Bacik 	 * commit the transaction.
357a4abeea4SJosef Bacik 	 */
3589b64f57dSElena Reshetova 	refcount_set(&cur_trans->use_count, 2);
3593204d33cSJosef Bacik 	cur_trans->flags = 0;
360afd48513SArnd Bergmann 	cur_trans->start_time = ktime_get_seconds();
36156bec294SChris Mason 
362a099d0fdSAlexandru Moise 	memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
363a099d0fdSAlexandru Moise 
3645c9d028bSLiu Bo 	cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3653368d001SQu Wenruo 	cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
366d7df2c79SJosef Bacik 	atomic_set(&cur_trans->delayed_refs.num_entries, 0);
36720b297d6SJan Schmidt 
36820b297d6SJan Schmidt 	/*
36920b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
37020b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
37120b297d6SJan Schmidt 	 */
37220b297d6SJan Schmidt 	smp_mb();
37331b1a2bdSJulia Lawall 	if (!list_empty(&fs_info->tree_mod_seq_list))
3745d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
37531b1a2bdSJulia Lawall 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
3765d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
377fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
37820b297d6SJan Schmidt 
37956bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
38056bec294SChris Mason 
3813063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
382bbbf7243SNikolay Borisov 	INIT_LIST_HEAD(&cur_trans->dev_update_list);
3839e351cc8SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->switch_commits);
384ce93ec54SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dirty_bgs);
3851bbc621eSChris Mason 	INIT_LIST_HEAD(&cur_trans->io_bgs);
3862b9dbef2SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dropped_roots);
3871bbc621eSChris Mason 	mutex_init(&cur_trans->cache_write_mutex);
388ce93ec54SJosef Bacik 	spin_lock_init(&cur_trans->dirty_bgs_lock);
389e33e17eeSJeff Mahoney 	INIT_LIST_HEAD(&cur_trans->deleted_bgs);
3902b9dbef2SJosef Bacik 	spin_lock_init(&cur_trans->dropped_roots_lock);
391d3575156SNaohiro Aota 	INIT_LIST_HEAD(&cur_trans->releasing_ebs);
392d3575156SNaohiro Aota 	spin_lock_init(&cur_trans->releasing_ebs_lock);
39319ae4e81SJan Schmidt 	list_add_tail(&cur_trans->list, &fs_info->trans_list);
394c258d6e3SQu Wenruo 	extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
39543eb5f29SQu Wenruo 			IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode);
396fe119a6eSNikolay Borisov 	extent_io_tree_init(fs_info, &cur_trans->pinned_extents,
397fe119a6eSNikolay Borisov 			IO_TREE_FS_PINNED_EXTENTS, NULL);
39819ae4e81SJan Schmidt 	fs_info->generation++;
39919ae4e81SJan Schmidt 	cur_trans->transid = fs_info->generation;
40019ae4e81SJan Schmidt 	fs_info->running_transaction = cur_trans;
40149b25e05SJeff Mahoney 	cur_trans->aborted = 0;
40219ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
40315ee9bc7SJosef Bacik 
40479154b1bSChris Mason 	return 0;
40579154b1bSChris Mason }
40679154b1bSChris Mason 
407d352ac68SChris Mason /*
40892a7cc42SQu Wenruo  * This does all the record keeping required to make sure that a shareable root
40992a7cc42SQu Wenruo  * is properly recorded in a given transaction.  This is required to make sure
41092a7cc42SQu Wenruo  * the old root from before we joined the transaction is deleted when the
41192a7cc42SQu Wenruo  * transaction commits.
412d352ac68SChris Mason  */
4137585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans,
4146426c7adSQu Wenruo 			       struct btrfs_root *root,
4156426c7adSQu Wenruo 			       int force)
4166702ed49SChris Mason {
4170b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
41803a7e111SJosef Bacik 	int ret = 0;
4190b246afaSJeff Mahoney 
42092a7cc42SQu Wenruo 	if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
4216426c7adSQu Wenruo 	    root->last_trans < trans->transid) || force) {
4220b246afaSJeff Mahoney 		WARN_ON(root == fs_info->extent_root);
4234d31778aSQu Wenruo 		WARN_ON(!force && root->commit_root != root->node);
4245d4f98a2SYan Zheng 
4257585717fSChris Mason 		/*
42627cdeb70SMiao Xie 		 * see below for IN_TRANS_SETUP usage rules
4277585717fSChris Mason 		 * we have the reloc mutex held now, so there
4287585717fSChris Mason 		 * is only one writer in this function
4297585717fSChris Mason 		 */
43027cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
4317585717fSChris Mason 
43227cdeb70SMiao Xie 		/* make sure readers find IN_TRANS_SETUP before
4337585717fSChris Mason 		 * they find our root->last_trans update
4347585717fSChris Mason 		 */
4357585717fSChris Mason 		smp_wmb();
4367585717fSChris Mason 
4370b246afaSJeff Mahoney 		spin_lock(&fs_info->fs_roots_radix_lock);
4386426c7adSQu Wenruo 		if (root->last_trans == trans->transid && !force) {
4390b246afaSJeff Mahoney 			spin_unlock(&fs_info->fs_roots_radix_lock);
440a4abeea4SJosef Bacik 			return 0;
441a4abeea4SJosef Bacik 		}
4420b246afaSJeff Mahoney 		radix_tree_tag_set(&fs_info->fs_roots_radix,
4436702ed49SChris Mason 				   (unsigned long)root->root_key.objectid,
4446702ed49SChris Mason 				   BTRFS_ROOT_TRANS_TAG);
4450b246afaSJeff Mahoney 		spin_unlock(&fs_info->fs_roots_radix_lock);
4467585717fSChris Mason 		root->last_trans = trans->transid;
4477585717fSChris Mason 
4487585717fSChris Mason 		/* this is pretty tricky.  We don't want to
4497585717fSChris Mason 		 * take the relocation lock in btrfs_record_root_in_trans
4507585717fSChris Mason 		 * unless we're really doing the first setup for this root in
4517585717fSChris Mason 		 * this transaction.
4527585717fSChris Mason 		 *
4537585717fSChris Mason 		 * Normally we'd use root->last_trans as a flag to decide
4547585717fSChris Mason 		 * if we want to take the expensive mutex.
4557585717fSChris Mason 		 *
4567585717fSChris Mason 		 * But, we have to set root->last_trans before we
4577585717fSChris Mason 		 * init the relocation root, otherwise, we trip over warnings
4587585717fSChris Mason 		 * in ctree.c.  The solution used here is to flag ourselves
45927cdeb70SMiao Xie 		 * with root IN_TRANS_SETUP.  When this is 1, we're still
4607585717fSChris Mason 		 * fixing up the reloc trees and everyone must wait.
4617585717fSChris Mason 		 *
4627585717fSChris Mason 		 * When this is zero, they can trust root->last_trans and fly
4637585717fSChris Mason 		 * through btrfs_record_root_in_trans without having to take the
4647585717fSChris Mason 		 * lock.  smp_wmb() makes sure that all the writes above are
4657585717fSChris Mason 		 * done before we pop in the zero below
4667585717fSChris Mason 		 */
46703a7e111SJosef Bacik 		ret = btrfs_init_reloc_root(trans, root);
468c7548af6SChris Mason 		smp_mb__before_atomic();
46927cdeb70SMiao Xie 		clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
4706702ed49SChris Mason 	}
47103a7e111SJosef Bacik 	return ret;
4726702ed49SChris Mason }
4735d4f98a2SYan Zheng 
4747585717fSChris Mason 
4752b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
4762b9dbef2SJosef Bacik 			    struct btrfs_root *root)
4772b9dbef2SJosef Bacik {
4780b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4792b9dbef2SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
4802b9dbef2SJosef Bacik 
4812b9dbef2SJosef Bacik 	/* Add ourselves to the transaction dropped list */
4822b9dbef2SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
4832b9dbef2SJosef Bacik 	list_add_tail(&root->root_list, &cur_trans->dropped_roots);
4842b9dbef2SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
4852b9dbef2SJosef Bacik 
4862b9dbef2SJosef Bacik 	/* Make sure we don't try to update the root at commit time */
4870b246afaSJeff Mahoney 	spin_lock(&fs_info->fs_roots_radix_lock);
4880b246afaSJeff Mahoney 	radix_tree_tag_clear(&fs_info->fs_roots_radix,
4892b9dbef2SJosef Bacik 			     (unsigned long)root->root_key.objectid,
4902b9dbef2SJosef Bacik 			     BTRFS_ROOT_TRANS_TAG);
4910b246afaSJeff Mahoney 	spin_unlock(&fs_info->fs_roots_radix_lock);
4922b9dbef2SJosef Bacik }
4932b9dbef2SJosef Bacik 
4947585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
4957585717fSChris Mason 			       struct btrfs_root *root)
4967585717fSChris Mason {
4970b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4981409e6ccSJosef Bacik 	int ret;
4990b246afaSJeff Mahoney 
50092a7cc42SQu Wenruo 	if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
5017585717fSChris Mason 		return 0;
5027585717fSChris Mason 
5037585717fSChris Mason 	/*
50427cdeb70SMiao Xie 	 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
5057585717fSChris Mason 	 * and barriers
5067585717fSChris Mason 	 */
5077585717fSChris Mason 	smp_rmb();
5087585717fSChris Mason 	if (root->last_trans == trans->transid &&
50927cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
5107585717fSChris Mason 		return 0;
5117585717fSChris Mason 
5120b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
5131409e6ccSJosef Bacik 	ret = record_root_in_trans(trans, root, 0);
5140b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
5157585717fSChris Mason 
5161409e6ccSJosef Bacik 	return ret;
5177585717fSChris Mason }
5187585717fSChris Mason 
5194a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans)
5204a9d8bdeSMiao Xie {
5213296bf56SQu Wenruo 	return (trans->state >= TRANS_STATE_COMMIT_START &&
522501407aaSJosef Bacik 		trans->state < TRANS_STATE_UNBLOCKED &&
523bf31f87fSDavid Sterba 		!TRANS_ABORTED(trans));
5244a9d8bdeSMiao Xie }
5254a9d8bdeSMiao Xie 
526d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
527d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
528d352ac68SChris Mason  * transaction might not be fully on disk.
529d352ac68SChris Mason  */
5302ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info)
53179154b1bSChris Mason {
532f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
53379154b1bSChris Mason 
5340b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
5350b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
5364a9d8bdeSMiao Xie 	if (cur_trans && is_transaction_blocked(cur_trans)) {
5379b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
5380b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
53972d63ed6SLi Zefan 
5400b246afaSJeff Mahoney 		wait_event(fs_info->transaction_wait,
541501407aaSJosef Bacik 			   cur_trans->state >= TRANS_STATE_UNBLOCKED ||
542bf31f87fSDavid Sterba 			   TRANS_ABORTED(cur_trans));
543724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
544a4abeea4SJosef Bacik 	} else {
5450b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
546f9295749SChris Mason 	}
54737d1aeeeSChris Mason }
54837d1aeeeSChris Mason 
5492ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
55037d1aeeeSChris Mason {
5510b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
552a4abeea4SJosef Bacik 		return 0;
553a4abeea4SJosef Bacik 
55492e2f7e3SNikolay Borisov 	if (type == TRANS_START)
555a4abeea4SJosef Bacik 		return 1;
556a4abeea4SJosef Bacik 
557a22285a6SYan, Zheng 	return 0;
558a22285a6SYan, Zheng }
559a22285a6SYan, Zheng 
56020dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root)
56120dd2cbfSMiao Xie {
5620b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
5630b246afaSJeff Mahoney 
5640b246afaSJeff Mahoney 	if (!fs_info->reloc_ctl ||
56592a7cc42SQu Wenruo 	    !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
56620dd2cbfSMiao Xie 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
56720dd2cbfSMiao Xie 	    root->reloc_root)
56820dd2cbfSMiao Xie 		return false;
56920dd2cbfSMiao Xie 
57020dd2cbfSMiao Xie 	return true;
57120dd2cbfSMiao Xie }
57220dd2cbfSMiao Xie 
57308e007d2SMiao Xie static struct btrfs_trans_handle *
5745aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items,
575003d7c59SJeff Mahoney 		  unsigned int type, enum btrfs_reserve_flush_enum flush,
576003d7c59SJeff Mahoney 		  bool enforce_qgroups)
577a22285a6SYan, Zheng {
5780b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
579ba2c4d4eSJosef Bacik 	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
580a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
581a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
582b5009945SJosef Bacik 	u64 num_bytes = 0;
583c5567237SArne Jansen 	u64 qgroup_reserved = 0;
58420dd2cbfSMiao Xie 	bool reloc_reserved = false;
5859c343784SJosef Bacik 	bool do_chunk_alloc = false;
58620dd2cbfSMiao Xie 	int ret;
587acce952bSliubo 
58884961539SJosef Bacik 	if (BTRFS_FS_ERROR(fs_info))
589acce952bSliubo 		return ERR_PTR(-EROFS);
5902a1eb461SJosef Bacik 
59146c4e71eSFilipe Manana 	if (current->journal_info) {
5920860adfdSMiao Xie 		WARN_ON(type & TRANS_EXTWRITERS);
5932a1eb461SJosef Bacik 		h = current->journal_info;
594b50fff81SDavid Sterba 		refcount_inc(&h->use_count);
595b50fff81SDavid Sterba 		WARN_ON(refcount_read(&h->use_count) > 2);
5962a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
5972a1eb461SJosef Bacik 		h->block_rsv = NULL;
5982a1eb461SJosef Bacik 		goto got_it;
5992a1eb461SJosef Bacik 	}
600b5009945SJosef Bacik 
601b5009945SJosef Bacik 	/*
602b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
603b5009945SJosef Bacik 	 * the appropriate flushing if need be.
604b5009945SJosef Bacik 	 */
605003d7c59SJeff Mahoney 	if (num_items && root != fs_info->chunk_root) {
606ba2c4d4eSJosef Bacik 		struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
607ba2c4d4eSJosef Bacik 		u64 delayed_refs_bytes = 0;
608ba2c4d4eSJosef Bacik 
6090b246afaSJeff Mahoney 		qgroup_reserved = num_items * fs_info->nodesize;
610733e03a0SQu Wenruo 		ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
611003d7c59SJeff Mahoney 				enforce_qgroups);
612c5567237SArne Jansen 		if (ret)
613c5567237SArne Jansen 			return ERR_PTR(ret);
614c5567237SArne Jansen 
615ba2c4d4eSJosef Bacik 		/*
616ba2c4d4eSJosef Bacik 		 * We want to reserve all the bytes we may need all at once, so
617ba2c4d4eSJosef Bacik 		 * we only do 1 enospc flushing cycle per transaction start.  We
618ba2c4d4eSJosef Bacik 		 * accomplish this by simply assuming we'll do 2 x num_items
619ba2c4d4eSJosef Bacik 		 * worth of delayed refs updates in this trans handle, and
620ba2c4d4eSJosef Bacik 		 * refill that amount for whatever is missing in the reserve.
621ba2c4d4eSJosef Bacik 		 */
6222bd36e7bSJosef Bacik 		num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
6237f9fe614SJosef Bacik 		if (flush == BTRFS_RESERVE_FLUSH_ALL &&
6247f9fe614SJosef Bacik 		    delayed_refs_rsv->full == 0) {
625ba2c4d4eSJosef Bacik 			delayed_refs_bytes = num_bytes;
626ba2c4d4eSJosef Bacik 			num_bytes <<= 1;
627ba2c4d4eSJosef Bacik 		}
628ba2c4d4eSJosef Bacik 
62920dd2cbfSMiao Xie 		/*
63020dd2cbfSMiao Xie 		 * Do the reservation for the relocation root creation
63120dd2cbfSMiao Xie 		 */
632ee39b432SDavid Sterba 		if (need_reserve_reloc_root(root)) {
6330b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
63420dd2cbfSMiao Xie 			reloc_reserved = true;
63520dd2cbfSMiao Xie 		}
63620dd2cbfSMiao Xie 
637ba2c4d4eSJosef Bacik 		ret = btrfs_block_rsv_add(root, rsv, num_bytes, flush);
638ba2c4d4eSJosef Bacik 		if (ret)
639ba2c4d4eSJosef Bacik 			goto reserve_fail;
640ba2c4d4eSJosef Bacik 		if (delayed_refs_bytes) {
641ba2c4d4eSJosef Bacik 			btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
642ba2c4d4eSJosef Bacik 							  delayed_refs_bytes);
643ba2c4d4eSJosef Bacik 			num_bytes -= delayed_refs_bytes;
644ba2c4d4eSJosef Bacik 		}
6459c343784SJosef Bacik 
6469c343784SJosef Bacik 		if (rsv->space_info->force_alloc)
6479c343784SJosef Bacik 			do_chunk_alloc = true;
648ba2c4d4eSJosef Bacik 	} else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
649ba2c4d4eSJosef Bacik 		   !delayed_refs_rsv->full) {
650ba2c4d4eSJosef Bacik 		/*
651ba2c4d4eSJosef Bacik 		 * Some people call with btrfs_start_transaction(root, 0)
652ba2c4d4eSJosef Bacik 		 * because they can be throttled, but have some other mechanism
653ba2c4d4eSJosef Bacik 		 * for reserving space.  We still want these guys to refill the
654ba2c4d4eSJosef Bacik 		 * delayed block_rsv so just add 1 items worth of reservation
655ba2c4d4eSJosef Bacik 		 * here.
656ba2c4d4eSJosef Bacik 		 */
657ba2c4d4eSJosef Bacik 		ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
658b5009945SJosef Bacik 		if (ret)
659843fcf35SMiao Xie 			goto reserve_fail;
660b5009945SJosef Bacik 	}
661a22285a6SYan, Zheng again:
662f2f767e7SAlexandru Moise 	h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
663843fcf35SMiao Xie 	if (!h) {
664843fcf35SMiao Xie 		ret = -ENOMEM;
665843fcf35SMiao Xie 		goto alloc_fail;
666843fcf35SMiao Xie 	}
667a22285a6SYan, Zheng 
66898114659SJosef Bacik 	/*
66998114659SJosef Bacik 	 * If we are JOIN_NOLOCK we're already committing a transaction and
67098114659SJosef Bacik 	 * waiting on this guy, so we don't need to do the sb_start_intwrite
67198114659SJosef Bacik 	 * because we're already holding a ref.  We need this because we could
67298114659SJosef Bacik 	 * have raced in and did an fsync() on a file which can kick a commit
67398114659SJosef Bacik 	 * and then we deadlock with somebody doing a freeze.
674354aa0fbSMiao Xie 	 *
675354aa0fbSMiao Xie 	 * If we are ATTACH, it means we just want to catch the current
676354aa0fbSMiao Xie 	 * transaction and commit it, so we needn't do sb_start_intwrite().
67798114659SJosef Bacik 	 */
6780860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
6790b246afaSJeff Mahoney 		sb_start_intwrite(fs_info->sb);
680b2b5ef5cSJan Kara 
6812ff7e61eSJeff Mahoney 	if (may_wait_transaction(fs_info, type))
6822ff7e61eSJeff Mahoney 		wait_current_trans(fs_info);
683a22285a6SYan, Zheng 
684a4abeea4SJosef Bacik 	do {
6852ff7e61eSJeff Mahoney 		ret = join_transaction(fs_info, type);
686178260b2SMiao Xie 		if (ret == -EBUSY) {
6872ff7e61eSJeff Mahoney 			wait_current_trans(fs_info);
688a6d155d2SFilipe Manana 			if (unlikely(type == TRANS_ATTACH ||
689a6d155d2SFilipe Manana 				     type == TRANS_JOIN_NOSTART))
690178260b2SMiao Xie 				ret = -ENOENT;
691178260b2SMiao Xie 		}
692a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
693a4abeea4SJosef Bacik 
694a43f7f82SLiu Bo 	if (ret < 0)
695843fcf35SMiao Xie 		goto join_fail;
6960f7d52f4SChris Mason 
6970b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
698a22285a6SYan, Zheng 
699a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
700a22285a6SYan, Zheng 	h->transaction = cur_trans;
701d13603efSArne Jansen 	h->root = root;
702b50fff81SDavid Sterba 	refcount_set(&h->use_count, 1);
70364b63580SJeff Mahoney 	h->fs_info = root->fs_info;
7047174109cSQu Wenruo 
705a698d075SMiao Xie 	h->type = type;
706ea658badSJosef Bacik 	INIT_LIST_HEAD(&h->new_bgs);
707b7ec40d7SChris Mason 
708a22285a6SYan, Zheng 	smp_mb();
7093296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
7102ff7e61eSJeff Mahoney 	    may_wait_transaction(fs_info, type)) {
711abdd2e80SFilipe Manana 		current->journal_info = h;
7123a45bb20SJeff Mahoney 		btrfs_commit_transaction(h);
713a22285a6SYan, Zheng 		goto again;
714a22285a6SYan, Zheng 	}
7159ed74f2dSJosef Bacik 
716b5009945SJosef Bacik 	if (num_bytes) {
7170b246afaSJeff Mahoney 		trace_btrfs_space_reservation(fs_info, "transaction",
7182bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
7190b246afaSJeff Mahoney 		h->block_rsv = &fs_info->trans_block_rsv;
720b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
72120dd2cbfSMiao Xie 		h->reloc_reserved = reloc_reserved;
722a22285a6SYan, Zheng 	}
723a22285a6SYan, Zheng 
7242a1eb461SJosef Bacik got_it:
725bcf3a3e7SNikolay Borisov 	if (!current->journal_info)
726a22285a6SYan, Zheng 		current->journal_info = h;
727fcc99734SQu Wenruo 
728fcc99734SQu Wenruo 	/*
7299c343784SJosef Bacik 	 * If the space_info is marked ALLOC_FORCE then we'll get upgraded to
7309c343784SJosef Bacik 	 * ALLOC_FORCE the first run through, and then we won't allocate for
7319c343784SJosef Bacik 	 * anybody else who races in later.  We don't care about the return
7329c343784SJosef Bacik 	 * value here.
7339c343784SJosef Bacik 	 */
7349c343784SJosef Bacik 	if (do_chunk_alloc && num_bytes) {
7359c343784SJosef Bacik 		u64 flags = h->block_rsv->space_info->flags;
7369c343784SJosef Bacik 
7379c343784SJosef Bacik 		btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags),
7389c343784SJosef Bacik 				  CHUNK_ALLOC_NO_FORCE);
7399c343784SJosef Bacik 	}
7409c343784SJosef Bacik 
7419c343784SJosef Bacik 	/*
742fcc99734SQu Wenruo 	 * btrfs_record_root_in_trans() needs to alloc new extents, and may
743fcc99734SQu Wenruo 	 * call btrfs_join_transaction() while we're also starting a
744fcc99734SQu Wenruo 	 * transaction.
745fcc99734SQu Wenruo 	 *
746fcc99734SQu Wenruo 	 * Thus it need to be called after current->journal_info initialized,
747fcc99734SQu Wenruo 	 * or we can deadlock.
748fcc99734SQu Wenruo 	 */
74968075ea8SJosef Bacik 	ret = btrfs_record_root_in_trans(h, root);
75068075ea8SJosef Bacik 	if (ret) {
75168075ea8SJosef Bacik 		/*
75268075ea8SJosef Bacik 		 * The transaction handle is fully initialized and linked with
75368075ea8SJosef Bacik 		 * other structures so it needs to be ended in case of errors,
75468075ea8SJosef Bacik 		 * not just freed.
75568075ea8SJosef Bacik 		 */
75668075ea8SJosef Bacik 		btrfs_end_transaction(h);
75768075ea8SJosef Bacik 		return ERR_PTR(ret);
75868075ea8SJosef Bacik 	}
759fcc99734SQu Wenruo 
76079154b1bSChris Mason 	return h;
761843fcf35SMiao Xie 
762843fcf35SMiao Xie join_fail:
7630860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
7640b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
765843fcf35SMiao Xie 	kmem_cache_free(btrfs_trans_handle_cachep, h);
766843fcf35SMiao Xie alloc_fail:
767843fcf35SMiao Xie 	if (num_bytes)
7682ff7e61eSJeff Mahoney 		btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
76963f018beSNikolay Borisov 					num_bytes, NULL);
770843fcf35SMiao Xie reserve_fail:
771733e03a0SQu Wenruo 	btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
772843fcf35SMiao Xie 	return ERR_PTR(ret);
77379154b1bSChris Mason }
77479154b1bSChris Mason 
775f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
7765aed1dd8SAlexandru Moise 						   unsigned int num_items)
777f9295749SChris Mason {
77808e007d2SMiao Xie 	return start_transaction(root, num_items, TRANS_START,
779003d7c59SJeff Mahoney 				 BTRFS_RESERVE_FLUSH_ALL, true);
780f9295749SChris Mason }
781003d7c59SJeff Mahoney 
7828eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
7838eab77ffSFilipe Manana 					struct btrfs_root *root,
7847f9fe614SJosef Bacik 					unsigned int num_items)
7858eab77ffSFilipe Manana {
7867f9fe614SJosef Bacik 	return start_transaction(root, num_items, TRANS_START,
7877f9fe614SJosef Bacik 				 BTRFS_RESERVE_FLUSH_ALL_STEAL, false);
7888eab77ffSFilipe Manana }
7898407aa46SMiao Xie 
7907a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
791f9295749SChris Mason {
792003d7c59SJeff Mahoney 	return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
793003d7c59SJeff Mahoney 				 true);
794f9295749SChris Mason }
795f9295749SChris Mason 
7968d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
7970af3d00bSJosef Bacik {
798575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
799003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
8000af3d00bSJosef Bacik }
8010af3d00bSJosef Bacik 
802d4edf39bSMiao Xie /*
803a6d155d2SFilipe Manana  * Similar to regular join but it never starts a transaction when none is
804a6d155d2SFilipe Manana  * running or after waiting for the current one to finish.
805a6d155d2SFilipe Manana  */
806a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
807a6d155d2SFilipe Manana {
808a6d155d2SFilipe Manana 	return start_transaction(root, 0, TRANS_JOIN_NOSTART,
809a6d155d2SFilipe Manana 				 BTRFS_RESERVE_NO_FLUSH, true);
810a6d155d2SFilipe Manana }
811a6d155d2SFilipe Manana 
812a6d155d2SFilipe Manana /*
813d4edf39bSMiao Xie  * btrfs_attach_transaction() - catch the running transaction
814d4edf39bSMiao Xie  *
815d4edf39bSMiao Xie  * It is used when we want to commit the current the transaction, but
816d4edf39bSMiao Xie  * don't want to start a new one.
817d4edf39bSMiao Xie  *
818d4edf39bSMiao Xie  * Note: If this function return -ENOENT, it just means there is no
819d4edf39bSMiao Xie  * running transaction. But it is possible that the inactive transaction
820d4edf39bSMiao Xie  * is still in the memory, not fully on disk. If you hope there is no
821d4edf39bSMiao Xie  * inactive transaction in the fs when -ENOENT is returned, you should
822d4edf39bSMiao Xie  * invoke
823d4edf39bSMiao Xie  *     btrfs_attach_transaction_barrier()
824d4edf39bSMiao Xie  */
825354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
82660376ce4SJosef Bacik {
827575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_ATTACH,
828003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
82960376ce4SJosef Bacik }
83060376ce4SJosef Bacik 
831d4edf39bSMiao Xie /*
83290b6d283SWang Sheng-Hui  * btrfs_attach_transaction_barrier() - catch the running transaction
833d4edf39bSMiao Xie  *
83452042d8eSAndrea Gelmini  * It is similar to the above function, the difference is this one
835d4edf39bSMiao Xie  * will wait for all the inactive transactions until they fully
836d4edf39bSMiao Xie  * complete.
837d4edf39bSMiao Xie  */
838d4edf39bSMiao Xie struct btrfs_trans_handle *
839d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root)
840d4edf39bSMiao Xie {
841d4edf39bSMiao Xie 	struct btrfs_trans_handle *trans;
842d4edf39bSMiao Xie 
843575a75d6SAlexandru Moise 	trans = start_transaction(root, 0, TRANS_ATTACH,
844003d7c59SJeff Mahoney 				  BTRFS_RESERVE_NO_FLUSH, true);
8458d9e220cSAl Viro 	if (trans == ERR_PTR(-ENOENT))
8462ff7e61eSJeff Mahoney 		btrfs_wait_for_commit(root->fs_info, 0);
847d4edf39bSMiao Xie 
848d4edf39bSMiao Xie 	return trans;
849d4edf39bSMiao Xie }
850d4edf39bSMiao Xie 
851d0c2f4faSFilipe Manana /* Wait for a transaction commit to reach at least the given state. */
852d0c2f4faSFilipe Manana static noinline void wait_for_commit(struct btrfs_transaction *commit,
853d0c2f4faSFilipe Manana 				     const enum btrfs_trans_state min_state)
85489ce8a63SChris Mason {
855d0c2f4faSFilipe Manana 	wait_event(commit->commit_wait, commit->state >= min_state);
85689ce8a63SChris Mason }
85789ce8a63SChris Mason 
8582ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
85946204592SSage Weil {
86046204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
8618cd2807fSMiao Xie 	int ret = 0;
86246204592SSage Weil 
86346204592SSage Weil 	if (transid) {
8640b246afaSJeff Mahoney 		if (transid <= fs_info->last_trans_committed)
865a4abeea4SJosef Bacik 			goto out;
86646204592SSage Weil 
86746204592SSage Weil 		/* find specified transaction */
8680b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8690b246afaSJeff Mahoney 		list_for_each_entry(t, &fs_info->trans_list, list) {
87046204592SSage Weil 			if (t->transid == transid) {
87146204592SSage Weil 				cur_trans = t;
8729b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
8738cd2807fSMiao Xie 				ret = 0;
87446204592SSage Weil 				break;
87546204592SSage Weil 			}
8768cd2807fSMiao Xie 			if (t->transid > transid) {
8778cd2807fSMiao Xie 				ret = 0;
87846204592SSage Weil 				break;
87946204592SSage Weil 			}
8808cd2807fSMiao Xie 		}
8810b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
88242383020SSage Weil 
88342383020SSage Weil 		/*
88442383020SSage Weil 		 * The specified transaction doesn't exist, or we
88542383020SSage Weil 		 * raced with btrfs_commit_transaction
88642383020SSage Weil 		 */
88742383020SSage Weil 		if (!cur_trans) {
8880b246afaSJeff Mahoney 			if (transid > fs_info->last_trans_committed)
88942383020SSage Weil 				ret = -EINVAL;
8908cd2807fSMiao Xie 			goto out;
89142383020SSage Weil 		}
89246204592SSage Weil 	} else {
89346204592SSage Weil 		/* find newest transaction that is committing | committed */
8940b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8950b246afaSJeff Mahoney 		list_for_each_entry_reverse(t, &fs_info->trans_list,
89646204592SSage Weil 					    list) {
8974a9d8bdeSMiao Xie 			if (t->state >= TRANS_STATE_COMMIT_START) {
8984a9d8bdeSMiao Xie 				if (t->state == TRANS_STATE_COMPLETED)
8993473f3c0SJosef Bacik 					break;
90046204592SSage Weil 				cur_trans = t;
9019b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
90246204592SSage Weil 				break;
90346204592SSage Weil 			}
90446204592SSage Weil 		}
9050b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
90646204592SSage Weil 		if (!cur_trans)
907a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
90846204592SSage Weil 	}
90946204592SSage Weil 
910d0c2f4faSFilipe Manana 	wait_for_commit(cur_trans, TRANS_STATE_COMPLETED);
911724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
912a4abeea4SJosef Bacik out:
91346204592SSage Weil 	return ret;
91446204592SSage Weil }
91546204592SSage Weil 
9162ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info)
91737d1aeeeSChris Mason {
9182ff7e61eSJeff Mahoney 	wait_current_trans(fs_info);
91937d1aeeeSChris Mason }
92037d1aeeeSChris Mason 
9218a8f4deaSNikolay Borisov static bool should_end_transaction(struct btrfs_trans_handle *trans)
9228929ecfaSYan, Zheng {
9232ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
9240b246afaSJeff Mahoney 
92564403612SJosef Bacik 	if (btrfs_check_space_for_delayed_refs(fs_info))
9268a8f4deaSNikolay Borisov 		return true;
92736ba022aSJosef Bacik 
9282ff7e61eSJeff Mahoney 	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
9298929ecfaSYan, Zheng }
9308929ecfaSYan, Zheng 
931a2633b6aSNikolay Borisov bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
9328929ecfaSYan, Zheng {
9338929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9348929ecfaSYan, Zheng 
9353296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
936e19eb11fSJosef Bacik 	    test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags))
937a2633b6aSNikolay Borisov 		return true;
9388929ecfaSYan, Zheng 
9392ff7e61eSJeff Mahoney 	return should_end_transaction(trans);
9408929ecfaSYan, Zheng }
9418929ecfaSYan, Zheng 
942dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
943dc60c525SNikolay Borisov 
9440e34693fSNikolay Borisov {
945dc60c525SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
946dc60c525SNikolay Borisov 
9470e34693fSNikolay Borisov 	if (!trans->block_rsv) {
9480e34693fSNikolay Borisov 		ASSERT(!trans->bytes_reserved);
9490e34693fSNikolay Borisov 		return;
9500e34693fSNikolay Borisov 	}
9510e34693fSNikolay Borisov 
9520e34693fSNikolay Borisov 	if (!trans->bytes_reserved)
9530e34693fSNikolay Borisov 		return;
9540e34693fSNikolay Borisov 
9550e34693fSNikolay Borisov 	ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
9560e34693fSNikolay Borisov 	trace_btrfs_space_reservation(fs_info, "transaction",
9570e34693fSNikolay Borisov 				      trans->transid, trans->bytes_reserved, 0);
9580e34693fSNikolay Borisov 	btrfs_block_rsv_release(fs_info, trans->block_rsv,
95963f018beSNikolay Borisov 				trans->bytes_reserved, NULL);
9600e34693fSNikolay Borisov 	trans->bytes_reserved = 0;
9610e34693fSNikolay Borisov }
9620e34693fSNikolay Borisov 
96389ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
9643a45bb20SJeff Mahoney 				   int throttle)
96579154b1bSChris Mason {
9663a45bb20SJeff Mahoney 	struct btrfs_fs_info *info = trans->fs_info;
9678929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9684edc2ca3SDave Jones 	int err = 0;
969d6e4a428SChris Mason 
970b50fff81SDavid Sterba 	if (refcount_read(&trans->use_count) > 1) {
971b50fff81SDavid Sterba 		refcount_dec(&trans->use_count);
9722a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
9732a1eb461SJosef Bacik 		return 0;
9742a1eb461SJosef Bacik 	}
9752a1eb461SJosef Bacik 
976dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
9774c13d758SJosef Bacik 	trans->block_rsv = NULL;
978c5567237SArne Jansen 
9796c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
980ea658badSJosef Bacik 
9814fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
9824fbcdf66SFilipe Manana 
9830860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
9840b246afaSJeff Mahoney 		sb_end_intwrite(info->sb);
9856df7881aSJosef Bacik 
9868929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
98713c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
98813c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
9890860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
99089ce8a63SChris Mason 
991093258e6SDavid Sterba 	cond_wake_up(&cur_trans->writer_wait);
992724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
9939ed74f2dSJosef Bacik 
9949ed74f2dSJosef Bacik 	if (current->journal_info == trans)
9959ed74f2dSJosef Bacik 		current->journal_info = NULL;
996ab78c84dSChris Mason 
99724bbcf04SYan, Zheng 	if (throttle)
9982ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(info);
99924bbcf04SYan, Zheng 
100084961539SJosef Bacik 	if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) {
10014e121c06SJosef Bacik 		wake_up_process(info->transaction_kthread);
1002fbabd4a3SJosef Bacik 		if (TRANS_ABORTED(trans))
1003fbabd4a3SJosef Bacik 			err = trans->aborted;
1004fbabd4a3SJosef Bacik 		else
1005fbabd4a3SJosef Bacik 			err = -EROFS;
10064e121c06SJosef Bacik 	}
100749b25e05SJeff Mahoney 
10084edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
10094edc2ca3SDave Jones 	return err;
101079154b1bSChris Mason }
101179154b1bSChris Mason 
10123a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans)
101389ce8a63SChris Mason {
10143a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 0);
101589ce8a63SChris Mason }
101689ce8a63SChris Mason 
10173a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
101889ce8a63SChris Mason {
10193a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 1);
102016cdcec7SMiao Xie }
102116cdcec7SMiao Xie 
1022d352ac68SChris Mason /*
1023d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1024d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1025690587d1SChris Mason  * those extents are sent to disk but does not wait on them
1026d352ac68SChris Mason  */
10272ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
10288cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
102979154b1bSChris Mason {
1030777e6bd7SChris Mason 	int err = 0;
10317c4452b9SChris Mason 	int werr = 0;
10320b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1033e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1034777e6bd7SChris Mason 	u64 start = 0;
10355f39d397SChris Mason 	u64 end;
10367c4452b9SChris Mason 
10376300463bSLiu Bo 	atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
10381728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1039e6138876SJosef Bacik 				      mark, &cached_state)) {
1040663dfbb0SFilipe Manana 		bool wait_writeback = false;
1041663dfbb0SFilipe Manana 
1042663dfbb0SFilipe Manana 		err = convert_extent_bit(dirty_pages, start, end,
1043663dfbb0SFilipe Manana 					 EXTENT_NEED_WAIT,
1044210aa277SDavid Sterba 					 mark, &cached_state);
1045663dfbb0SFilipe Manana 		/*
1046663dfbb0SFilipe Manana 		 * convert_extent_bit can return -ENOMEM, which is most of the
1047663dfbb0SFilipe Manana 		 * time a temporary error. So when it happens, ignore the error
1048663dfbb0SFilipe Manana 		 * and wait for writeback of this range to finish - because we
1049663dfbb0SFilipe Manana 		 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
1050bf89d38fSJeff Mahoney 		 * to __btrfs_wait_marked_extents() would not know that
1051bf89d38fSJeff Mahoney 		 * writeback for this range started and therefore wouldn't
1052bf89d38fSJeff Mahoney 		 * wait for it to finish - we don't want to commit a
1053bf89d38fSJeff Mahoney 		 * superblock that points to btree nodes/leafs for which
1054bf89d38fSJeff Mahoney 		 * writeback hasn't finished yet (and without errors).
1055663dfbb0SFilipe Manana 		 * We cleanup any entries left in the io tree when committing
105641e7acd3SNikolay Borisov 		 * the transaction (through extent_io_tree_release()).
1057663dfbb0SFilipe Manana 		 */
1058663dfbb0SFilipe Manana 		if (err == -ENOMEM) {
1059663dfbb0SFilipe Manana 			err = 0;
1060663dfbb0SFilipe Manana 			wait_writeback = true;
1061663dfbb0SFilipe Manana 		}
1062663dfbb0SFilipe Manana 		if (!err)
10631728366eSJosef Bacik 			err = filemap_fdatawrite_range(mapping, start, end);
10647c4452b9SChris Mason 		if (err)
10657c4452b9SChris Mason 			werr = err;
1066663dfbb0SFilipe Manana 		else if (wait_writeback)
1067663dfbb0SFilipe Manana 			werr = filemap_fdatawait_range(mapping, start, end);
1068e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1069663dfbb0SFilipe Manana 		cached_state = NULL;
10701728366eSJosef Bacik 		cond_resched();
10711728366eSJosef Bacik 		start = end + 1;
10727c4452b9SChris Mason 	}
10736300463bSLiu Bo 	atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1074690587d1SChris Mason 	return werr;
1075690587d1SChris Mason }
1076690587d1SChris Mason 
1077690587d1SChris Mason /*
1078690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1079690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1080690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
1081690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
1082690587d1SChris Mason  */
1083bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1084bf89d38fSJeff Mahoney 				       struct extent_io_tree *dirty_pages)
1085690587d1SChris Mason {
1086690587d1SChris Mason 	int err = 0;
1087690587d1SChris Mason 	int werr = 0;
10880b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1089e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1090690587d1SChris Mason 	u64 start = 0;
1091690587d1SChris Mason 	u64 end;
1092690587d1SChris Mason 
10931728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1094e6138876SJosef Bacik 				      EXTENT_NEED_WAIT, &cached_state)) {
1095663dfbb0SFilipe Manana 		/*
1096663dfbb0SFilipe Manana 		 * Ignore -ENOMEM errors returned by clear_extent_bit().
1097663dfbb0SFilipe Manana 		 * When committing the transaction, we'll remove any entries
1098663dfbb0SFilipe Manana 		 * left in the io tree. For a log commit, we don't remove them
1099663dfbb0SFilipe Manana 		 * after committing the log because the tree can be accessed
1100663dfbb0SFilipe Manana 		 * concurrently - we do it only at transaction commit time when
110141e7acd3SNikolay Borisov 		 * it's safe to do it (through extent_io_tree_release()).
1102663dfbb0SFilipe Manana 		 */
1103663dfbb0SFilipe Manana 		err = clear_extent_bit(dirty_pages, start, end,
1104ae0f1625SDavid Sterba 				       EXTENT_NEED_WAIT, 0, 0, &cached_state);
1105663dfbb0SFilipe Manana 		if (err == -ENOMEM)
1106663dfbb0SFilipe Manana 			err = 0;
1107663dfbb0SFilipe Manana 		if (!err)
11081728366eSJosef Bacik 			err = filemap_fdatawait_range(mapping, start, end);
1109777e6bd7SChris Mason 		if (err)
1110777e6bd7SChris Mason 			werr = err;
1111e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1112e38e2ed7SFilipe Manana 		cached_state = NULL;
1113777e6bd7SChris Mason 		cond_resched();
11141728366eSJosef Bacik 		start = end + 1;
1115777e6bd7SChris Mason 	}
11167c4452b9SChris Mason 	if (err)
11177c4452b9SChris Mason 		werr = err;
1118bf89d38fSJeff Mahoney 	return werr;
1119bf89d38fSJeff Mahoney }
1120656f30dbSFilipe Manana 
1121b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
1122bf89d38fSJeff Mahoney 		       struct extent_io_tree *dirty_pages)
1123bf89d38fSJeff Mahoney {
1124bf89d38fSJeff Mahoney 	bool errors = false;
1125bf89d38fSJeff Mahoney 	int err;
1126bf89d38fSJeff Mahoney 
1127bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1128bf89d38fSJeff Mahoney 	if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1129bf89d38fSJeff Mahoney 		errors = true;
1130bf89d38fSJeff Mahoney 
1131bf89d38fSJeff Mahoney 	if (errors && !err)
1132bf89d38fSJeff Mahoney 		err = -EIO;
1133bf89d38fSJeff Mahoney 	return err;
1134bf89d38fSJeff Mahoney }
1135bf89d38fSJeff Mahoney 
1136bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1137bf89d38fSJeff Mahoney {
1138bf89d38fSJeff Mahoney 	struct btrfs_fs_info *fs_info = log_root->fs_info;
1139bf89d38fSJeff Mahoney 	struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1140bf89d38fSJeff Mahoney 	bool errors = false;
1141bf89d38fSJeff Mahoney 	int err;
1142bf89d38fSJeff Mahoney 
1143bf89d38fSJeff Mahoney 	ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1144bf89d38fSJeff Mahoney 
1145bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1146656f30dbSFilipe Manana 	if ((mark & EXTENT_DIRTY) &&
11470b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1148656f30dbSFilipe Manana 		errors = true;
1149656f30dbSFilipe Manana 
1150656f30dbSFilipe Manana 	if ((mark & EXTENT_NEW) &&
11510b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1152656f30dbSFilipe Manana 		errors = true;
1153656f30dbSFilipe Manana 
1154bf89d38fSJeff Mahoney 	if (errors && !err)
1155bf89d38fSJeff Mahoney 		err = -EIO;
1156bf89d38fSJeff Mahoney 	return err;
115779154b1bSChris Mason }
115879154b1bSChris Mason 
1159690587d1SChris Mason /*
1160c9b577c0SNikolay Borisov  * When btree blocks are allocated the corresponding extents are marked dirty.
1161c9b577c0SNikolay Borisov  * This function ensures such extents are persisted on disk for transaction or
1162c9b577c0SNikolay Borisov  * log commit.
1163c9b577c0SNikolay Borisov  *
1164c9b577c0SNikolay Borisov  * @trans: transaction whose dirty pages we'd like to write
1165690587d1SChris Mason  */
116670458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
1167d0c803c4SChris Mason {
1168663dfbb0SFilipe Manana 	int ret;
1169c9b577c0SNikolay Borisov 	int ret2;
1170c9b577c0SNikolay Borisov 	struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
117170458a58SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1172c9b577c0SNikolay Borisov 	struct blk_plug plug;
1173663dfbb0SFilipe Manana 
1174c9b577c0SNikolay Borisov 	blk_start_plug(&plug);
1175c9b577c0SNikolay Borisov 	ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
1176c9b577c0SNikolay Borisov 	blk_finish_plug(&plug);
1177c9b577c0SNikolay Borisov 	ret2 = btrfs_wait_extents(fs_info, dirty_pages);
1178c9b577c0SNikolay Borisov 
117941e7acd3SNikolay Borisov 	extent_io_tree_release(&trans->transaction->dirty_pages);
1180663dfbb0SFilipe Manana 
1181c9b577c0SNikolay Borisov 	if (ret)
1182663dfbb0SFilipe Manana 		return ret;
1183c9b577c0SNikolay Borisov 	else if (ret2)
1184c9b577c0SNikolay Borisov 		return ret2;
1185c9b577c0SNikolay Borisov 	else
1186c9b577c0SNikolay Borisov 		return 0;
1187d0c803c4SChris Mason }
1188d0c803c4SChris Mason 
1189d352ac68SChris Mason /*
1190d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
1191d352ac68SChris Mason  *
1192d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
1193d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
1194d352ac68SChris Mason  * allocation tree.
1195d352ac68SChris Mason  *
1196d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
1197d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
1198d352ac68SChris Mason  */
11990b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
120079154b1bSChris Mason 			       struct btrfs_root *root)
120179154b1bSChris Mason {
120279154b1bSChris Mason 	int ret;
12030b86a832SChris Mason 	u64 old_root_bytenr;
120486b9f2ecSYan, Zheng 	u64 old_root_used;
12050b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12060b246afaSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
120779154b1bSChris Mason 
120886b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
120956bec294SChris Mason 
121079154b1bSChris Mason 	while (1) {
12110b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
121286b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
1213ea526d18SJosef Bacik 		    old_root_used == btrfs_root_used(&root->root_item))
121479154b1bSChris Mason 			break;
121587ef2bb4SChris Mason 
12165d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
121779154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
12180b86a832SChris Mason 					&root->root_key,
12190b86a832SChris Mason 					&root->root_item);
122049b25e05SJeff Mahoney 		if (ret)
122149b25e05SJeff Mahoney 			return ret;
122256bec294SChris Mason 
122386b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
1224e7070be1SJosef Bacik 	}
1225276e680dSYan Zheng 
12260b86a832SChris Mason 	return 0;
12270b86a832SChris Mason }
12280b86a832SChris Mason 
1229d352ac68SChris Mason /*
1230d352ac68SChris Mason  * update all the cowonly tree roots on disk
123149b25e05SJeff Mahoney  *
123249b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
123349b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
123449b25e05SJeff Mahoney  * to clean up the delayed refs.
1235d352ac68SChris Mason  */
12369386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
12370b86a832SChris Mason {
12389386d8bcSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1239ea526d18SJosef Bacik 	struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
12401bbc621eSChris Mason 	struct list_head *io_bgs = &trans->transaction->io_bgs;
12410b86a832SChris Mason 	struct list_head *next;
124284234f3aSYan Zheng 	struct extent_buffer *eb;
124356bec294SChris Mason 	int ret;
124484234f3aSYan Zheng 
1245*dfba78dcSFilipe Manana 	/*
1246*dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
1247*dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
1248*dfba78dcSFilipe Manana 	 */
1249*dfba78dcSFilipe Manana 	ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1250*dfba78dcSFilipe Manana 
125184234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
125249b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
12539631e4ccSJosef Bacik 			      0, &eb, BTRFS_NESTING_COW);
125484234f3aSYan Zheng 	btrfs_tree_unlock(eb);
125584234f3aSYan Zheng 	free_extent_buffer(eb);
12560b86a832SChris Mason 
125749b25e05SJeff Mahoney 	if (ret)
125849b25e05SJeff Mahoney 		return ret;
125949b25e05SJeff Mahoney 
1260196c9d8dSDavid Sterba 	ret = btrfs_run_dev_stats(trans);
1261c16ce190SJosef Bacik 	if (ret)
1262c16ce190SJosef Bacik 		return ret;
12632b584c68SDavid Sterba 	ret = btrfs_run_dev_replace(trans);
1264c16ce190SJosef Bacik 	if (ret)
1265c16ce190SJosef Bacik 		return ret;
1266280f8bd2SLu Fengqi 	ret = btrfs_run_qgroups(trans);
1267c16ce190SJosef Bacik 	if (ret)
1268c16ce190SJosef Bacik 		return ret;
1269546adb0dSJan Schmidt 
1270bbebb3e0SDavid Sterba 	ret = btrfs_setup_space_cache(trans);
1271dcdf7f6dSJosef Bacik 	if (ret)
1272dcdf7f6dSJosef Bacik 		return ret;
1273dcdf7f6dSJosef Bacik 
1274ea526d18SJosef Bacik again:
12750b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
12762ff7e61eSJeff Mahoney 		struct btrfs_root *root;
12770b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
12780b86a832SChris Mason 		list_del_init(next);
12790b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
1280e7070be1SJosef Bacik 		clear_bit(BTRFS_ROOT_DIRTY, &root->state);
128187ef2bb4SChris Mason 
12829e351cc8SJosef Bacik 		if (root != fs_info->extent_root)
12839e351cc8SJosef Bacik 			list_add_tail(&root->dirty_list,
12849e351cc8SJosef Bacik 				      &trans->transaction->switch_commits);
128549b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
128649b25e05SJeff Mahoney 		if (ret)
128749b25e05SJeff Mahoney 			return ret;
1288488bc2a2SJosef Bacik 	}
1289488bc2a2SJosef Bacik 
1290488bc2a2SJosef Bacik 	/* Now flush any delayed refs generated by updating all of the roots */
1291c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1292ea526d18SJosef Bacik 	if (ret)
1293ea526d18SJosef Bacik 		return ret;
1294276e680dSYan Zheng 
12951bbc621eSChris Mason 	while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
12965742d15fSDavid Sterba 		ret = btrfs_write_dirty_block_groups(trans);
1297ea526d18SJosef Bacik 		if (ret)
1298ea526d18SJosef Bacik 			return ret;
1299488bc2a2SJosef Bacik 
1300488bc2a2SJosef Bacik 		/*
1301488bc2a2SJosef Bacik 		 * We're writing the dirty block groups, which could generate
1302488bc2a2SJosef Bacik 		 * delayed refs, which could generate more dirty block groups,
1303488bc2a2SJosef Bacik 		 * so we want to keep this flushing in this loop to make sure
1304488bc2a2SJosef Bacik 		 * everything gets run.
1305488bc2a2SJosef Bacik 		 */
1306c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1307ea526d18SJosef Bacik 		if (ret)
1308ea526d18SJosef Bacik 			return ret;
1309ea526d18SJosef Bacik 	}
1310ea526d18SJosef Bacik 
1311ea526d18SJosef Bacik 	if (!list_empty(&fs_info->dirty_cowonly_roots))
1312ea526d18SJosef Bacik 		goto again;
1313ea526d18SJosef Bacik 
13149e351cc8SJosef Bacik 	list_add_tail(&fs_info->extent_root->dirty_list,
13159e351cc8SJosef Bacik 		      &trans->transaction->switch_commits);
13169f6cbcbbSDavid Sterba 
13179f6cbcbbSDavid Sterba 	/* Update dev-replace pointer once everything is committed */
13189f6cbcbbSDavid Sterba 	fs_info->dev_replace.committed_cursor_left =
13199f6cbcbbSDavid Sterba 		fs_info->dev_replace.cursor_left_last_write_of_item;
13208dabb742SStefan Behrens 
132179154b1bSChris Mason 	return 0;
132279154b1bSChris Mason }
132379154b1bSChris Mason 
1324d352ac68SChris Mason /*
1325d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
1326d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
1327d352ac68SChris Mason  * be deleted
1328d352ac68SChris Mason  */
1329cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root)
13305eda7b5eSChris Mason {
13310b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13320b246afaSJeff Mahoney 
13330b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1334dc9492c1SJosef Bacik 	if (list_empty(&root->root_list)) {
1335dc9492c1SJosef Bacik 		btrfs_grab_root(root);
13360b246afaSJeff Mahoney 		list_add_tail(&root->root_list, &fs_info->dead_roots);
1337dc9492c1SJosef Bacik 	}
13380b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
13395eda7b5eSChris Mason }
13405eda7b5eSChris Mason 
1341d352ac68SChris Mason /*
1342*dfba78dcSFilipe Manana  * Update each subvolume root and its relocation root, if it exists, in the tree
1343*dfba78dcSFilipe Manana  * of tree roots. Also free log roots if they exist.
1344d352ac68SChris Mason  */
13457e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
13460f7d52f4SChris Mason {
13477e4443d9SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
13480f7d52f4SChris Mason 	struct btrfs_root *gang[8];
13490f7d52f4SChris Mason 	int i;
13500f7d52f4SChris Mason 	int ret;
135154aa1f4dSChris Mason 
1352*dfba78dcSFilipe Manana 	/*
1353*dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
1354*dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
1355*dfba78dcSFilipe Manana 	 */
1356*dfba78dcSFilipe Manana 	ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1357*dfba78dcSFilipe Manana 
1358a4abeea4SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
13590f7d52f4SChris Mason 	while (1) {
13605d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
13615d4f98a2SYan Zheng 						 (void **)gang, 0,
13620f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
13630f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
13640f7d52f4SChris Mason 		if (ret == 0)
13650f7d52f4SChris Mason 			break;
13660f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
13675b4aacefSJeff Mahoney 			struct btrfs_root *root = gang[i];
13684f4317c1SJosef Bacik 			int ret2;
13694f4317c1SJosef Bacik 
1370*dfba78dcSFilipe Manana 			/*
1371*dfba78dcSFilipe Manana 			 * At this point we can neither have tasks logging inodes
1372*dfba78dcSFilipe Manana 			 * from a root nor trying to commit a log tree.
1373*dfba78dcSFilipe Manana 			 */
1374*dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_writers) == 0);
1375*dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_commit[0]) == 0);
1376*dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_commit[1]) == 0);
1377*dfba78dcSFilipe Manana 
13785d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
13792619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
13800f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
1381a4abeea4SJosef Bacik 			spin_unlock(&fs_info->fs_roots_radix_lock);
138231153d81SYan Zheng 
1383e02119d5SChris Mason 			btrfs_free_log(trans, root);
13842dd8298eSJosef Bacik 			ret2 = btrfs_update_reloc_root(trans, root);
13852dd8298eSJosef Bacik 			if (ret2)
13862dd8298eSJosef Bacik 				return ret2;
1387e02119d5SChris Mason 
1388f1ebcc74SLiu Bo 			/* see comments in should_cow_block() */
138927cdeb70SMiao Xie 			clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1390c7548af6SChris Mason 			smp_mb__after_atomic();
1391f1ebcc74SLiu Bo 
1392978d910dSYan Zheng 			if (root->commit_root != root->node) {
13939e351cc8SJosef Bacik 				list_add_tail(&root->dirty_list,
13949e351cc8SJosef Bacik 					&trans->transaction->switch_commits);
1395978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
1396978d910dSYan Zheng 						    root->node);
1397978d910dSYan Zheng 			}
139831153d81SYan Zheng 
13994f4317c1SJosef Bacik 			ret2 = btrfs_update_root(trans, fs_info->tree_root,
14000f7d52f4SChris Mason 						&root->root_key,
14010f7d52f4SChris Mason 						&root->root_item);
14024f4317c1SJosef Bacik 			if (ret2)
14034f4317c1SJosef Bacik 				return ret2;
1404a4abeea4SJosef Bacik 			spin_lock(&fs_info->fs_roots_radix_lock);
1405733e03a0SQu Wenruo 			btrfs_qgroup_free_meta_all_pertrans(root);
14060f7d52f4SChris Mason 		}
14079f3a7427SChris Mason 	}
1408a4abeea4SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
14094f4317c1SJosef Bacik 	return 0;
14100f7d52f4SChris Mason }
14110f7d52f4SChris Mason 
1412d352ac68SChris Mason /*
1413de78b51aSEric Sandeen  * defrag a given btree.
1414de78b51aSEric Sandeen  * Every leaf in the btree is read and defragged.
1415d352ac68SChris Mason  */
1416de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root)
1417e9d0b13bSChris Mason {
1418e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
1419e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
14208929ecfaSYan, Zheng 	int ret;
1421e9d0b13bSChris Mason 
142227cdeb70SMiao Xie 	if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
1423e9d0b13bSChris Mason 		return 0;
14248929ecfaSYan, Zheng 
14256b80053dSChris Mason 	while (1) {
14268929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
14276819703fSDavid Sterba 		if (IS_ERR(trans)) {
14286819703fSDavid Sterba 			ret = PTR_ERR(trans);
14296819703fSDavid Sterba 			break;
14306819703fSDavid Sterba 		}
14318929ecfaSYan, Zheng 
1432de78b51aSEric Sandeen 		ret = btrfs_defrag_leaves(trans, root);
14338929ecfaSYan, Zheng 
14343a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
14352ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(info);
1436e9d0b13bSChris Mason 		cond_resched();
1437e9d0b13bSChris Mason 
1438ab8d0fc4SJeff Mahoney 		if (btrfs_fs_closing(info) || ret != -EAGAIN)
1439e9d0b13bSChris Mason 			break;
1440210549ebSDavid Sterba 
1441ab8d0fc4SJeff Mahoney 		if (btrfs_defrag_cancelled(info)) {
1442ab8d0fc4SJeff Mahoney 			btrfs_debug(info, "defrag_root cancelled");
1443210549ebSDavid Sterba 			ret = -EAGAIN;
1444210549ebSDavid Sterba 			break;
1445210549ebSDavid Sterba 		}
1446e9d0b13bSChris Mason 	}
144727cdeb70SMiao Xie 	clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
14488929ecfaSYan, Zheng 	return ret;
1449e9d0b13bSChris Mason }
1450e9d0b13bSChris Mason 
1451d352ac68SChris Mason /*
14526426c7adSQu Wenruo  * Do all special snapshot related qgroup dirty hack.
14536426c7adSQu Wenruo  *
14546426c7adSQu Wenruo  * Will do all needed qgroup inherit and dirty hack like switch commit
14556426c7adSQu Wenruo  * roots inside one transaction and write all btree into disk, to make
14566426c7adSQu Wenruo  * qgroup works.
14576426c7adSQu Wenruo  */
14586426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
14596426c7adSQu Wenruo 				   struct btrfs_root *src,
14606426c7adSQu Wenruo 				   struct btrfs_root *parent,
14616426c7adSQu Wenruo 				   struct btrfs_qgroup_inherit *inherit,
14626426c7adSQu Wenruo 				   u64 dst_objectid)
14636426c7adSQu Wenruo {
14646426c7adSQu Wenruo 	struct btrfs_fs_info *fs_info = src->fs_info;
14656426c7adSQu Wenruo 	int ret;
14666426c7adSQu Wenruo 
14676426c7adSQu Wenruo 	/*
14686426c7adSQu Wenruo 	 * Save some performance in the case that qgroups are not
14696426c7adSQu Wenruo 	 * enabled. If this check races with the ioctl, rescan will
14706426c7adSQu Wenruo 	 * kick in anyway.
14716426c7adSQu Wenruo 	 */
14729ea6e2b5SDavid Sterba 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
14736426c7adSQu Wenruo 		return 0;
14746426c7adSQu Wenruo 
14756426c7adSQu Wenruo 	/*
147652042d8eSAndrea Gelmini 	 * Ensure dirty @src will be committed.  Or, after coming
14774d31778aSQu Wenruo 	 * commit_fs_roots() and switch_commit_roots(), any dirty but not
14784d31778aSQu Wenruo 	 * recorded root will never be updated again, causing an outdated root
14794d31778aSQu Wenruo 	 * item.
14804d31778aSQu Wenruo 	 */
14811c442d22SJosef Bacik 	ret = record_root_in_trans(trans, src, 1);
14821c442d22SJosef Bacik 	if (ret)
14831c442d22SJosef Bacik 		return ret;
14844d31778aSQu Wenruo 
14854d31778aSQu Wenruo 	/*
14862a4d84c1SJosef Bacik 	 * btrfs_qgroup_inherit relies on a consistent view of the usage for the
14872a4d84c1SJosef Bacik 	 * src root, so we must run the delayed refs here.
14882a4d84c1SJosef Bacik 	 *
14892a4d84c1SJosef Bacik 	 * However this isn't particularly fool proof, because there's no
14902a4d84c1SJosef Bacik 	 * synchronization keeping us from changing the tree after this point
14912a4d84c1SJosef Bacik 	 * before we do the qgroup_inherit, or even from making changes while
14922a4d84c1SJosef Bacik 	 * we're doing the qgroup_inherit.  But that's a problem for the future,
14932a4d84c1SJosef Bacik 	 * for now flush the delayed refs to narrow the race window where the
14942a4d84c1SJosef Bacik 	 * qgroup counters could end up wrong.
14952a4d84c1SJosef Bacik 	 */
14962a4d84c1SJosef Bacik 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
14972a4d84c1SJosef Bacik 	if (ret) {
14982a4d84c1SJosef Bacik 		btrfs_abort_transaction(trans, ret);
149944365827SNaohiro Aota 		return ret;
15002a4d84c1SJosef Bacik 	}
15012a4d84c1SJosef Bacik 
15027e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
15036426c7adSQu Wenruo 	if (ret)
15046426c7adSQu Wenruo 		goto out;
1505460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
15066426c7adSQu Wenruo 	if (ret < 0)
15076426c7adSQu Wenruo 		goto out;
15086426c7adSQu Wenruo 
15096426c7adSQu Wenruo 	/* Now qgroup are all updated, we can inherit it to new qgroups */
1510a9377422SLu Fengqi 	ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
15116426c7adSQu Wenruo 				   inherit);
15126426c7adSQu Wenruo 	if (ret < 0)
15136426c7adSQu Wenruo 		goto out;
15146426c7adSQu Wenruo 
15156426c7adSQu Wenruo 	/*
15166426c7adSQu Wenruo 	 * Now we do a simplified commit transaction, which will:
15176426c7adSQu Wenruo 	 * 1) commit all subvolume and extent tree
15186426c7adSQu Wenruo 	 *    To ensure all subvolume and extent tree have a valid
15196426c7adSQu Wenruo 	 *    commit_root to accounting later insert_dir_item()
15206426c7adSQu Wenruo 	 * 2) write all btree blocks onto disk
15216426c7adSQu Wenruo 	 *    This is to make sure later btree modification will be cowed
15226426c7adSQu Wenruo 	 *    Or commit_root can be populated and cause wrong qgroup numbers
15236426c7adSQu Wenruo 	 * In this simplified commit, we don't really care about other trees
15246426c7adSQu Wenruo 	 * like chunk and root tree, as they won't affect qgroup.
15256426c7adSQu Wenruo 	 * And we don't write super to avoid half committed status.
15266426c7adSQu Wenruo 	 */
15279386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
15286426c7adSQu Wenruo 	if (ret)
15296426c7adSQu Wenruo 		goto out;
1530889bfa39SJosef Bacik 	switch_commit_roots(trans);
153170458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
15326426c7adSQu Wenruo 	if (ret)
1533f7af3934SDavid Sterba 		btrfs_handle_fs_error(fs_info, ret,
15346426c7adSQu Wenruo 			"Error while writing out transaction for qgroup");
15356426c7adSQu Wenruo 
15366426c7adSQu Wenruo out:
15376426c7adSQu Wenruo 	/*
15386426c7adSQu Wenruo 	 * Force parent root to be updated, as we recorded it before so its
15396426c7adSQu Wenruo 	 * last_trans == cur_transid.
15406426c7adSQu Wenruo 	 * Or it won't be committed again onto disk after later
15416426c7adSQu Wenruo 	 * insert_dir_item()
15426426c7adSQu Wenruo 	 */
15436426c7adSQu Wenruo 	if (!ret)
15441c442d22SJosef Bacik 		ret = record_root_in_trans(trans, parent, 1);
15456426c7adSQu Wenruo 	return ret;
15466426c7adSQu Wenruo }
15476426c7adSQu Wenruo 
15486426c7adSQu Wenruo /*
1549d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
1550aec8030aSMiao Xie  * transaction commit.  This does the actual creation.
1551aec8030aSMiao Xie  *
1552aec8030aSMiao Xie  * Note:
1553aec8030aSMiao Xie  * If the error which may affect the commitment of the current transaction
1554aec8030aSMiao Xie  * happens, we should return the error number. If the error which just affect
1555aec8030aSMiao Xie  * the creation of the pending snapshots, just return 0.
1556d352ac68SChris Mason  */
155780b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
15583063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
15593063d29fSChris Mason {
156008d50ca3SNikolay Borisov 
156108d50ca3SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
15623063d29fSChris Mason 	struct btrfs_key key;
156380b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
15643063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
15653063d29fSChris Mason 	struct btrfs_root *root = pending->root;
15666bdb72deSSage Weil 	struct btrfs_root *parent_root;
156798c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
15686bdb72deSSage Weil 	struct inode *parent_inode;
156942874b3dSMiao Xie 	struct btrfs_path *path;
157042874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
1571a22285a6SYan, Zheng 	struct dentry *dentry;
15723063d29fSChris Mason 	struct extent_buffer *tmp;
1573925baeddSChris Mason 	struct extent_buffer *old;
157495582b00SDeepa Dinamani 	struct timespec64 cur_time;
1575aec8030aSMiao Xie 	int ret = 0;
1576d68fc57bSYan, Zheng 	u64 to_reserve = 0;
15776bdb72deSSage Weil 	u64 index = 0;
1578a22285a6SYan, Zheng 	u64 objectid;
1579b83cc969SLi Zefan 	u64 root_flags;
15803063d29fSChris Mason 
15818546b570SDavid Sterba 	ASSERT(pending->path);
15828546b570SDavid Sterba 	path = pending->path;
158342874b3dSMiao Xie 
1584b0c0ea63SDavid Sterba 	ASSERT(pending->root_item);
1585b0c0ea63SDavid Sterba 	new_root_item = pending->root_item;
1586a22285a6SYan, Zheng 
1587543068a2SNikolay Borisov 	pending->error = btrfs_get_free_objectid(tree_root, &objectid);
1588aec8030aSMiao Xie 	if (pending->error)
15896fa9700eSMiao Xie 		goto no_free_objectid;
15903063d29fSChris Mason 
1591d6726335SQu Wenruo 	/*
1592d6726335SQu Wenruo 	 * Make qgroup to skip current new snapshot's qgroupid, as it is
1593d6726335SQu Wenruo 	 * accounted by later btrfs_qgroup_inherit().
1594d6726335SQu Wenruo 	 */
1595d6726335SQu Wenruo 	btrfs_set_skip_qgroup(trans, objectid);
1596d6726335SQu Wenruo 
1597147d256eSZhaolei 	btrfs_reloc_pre_snapshot(pending, &to_reserve);
1598d68fc57bSYan, Zheng 
1599d68fc57bSYan, Zheng 	if (to_reserve > 0) {
1600aec8030aSMiao Xie 		pending->error = btrfs_block_rsv_add(root,
1601aec8030aSMiao Xie 						     &pending->block_rsv,
160208e007d2SMiao Xie 						     to_reserve,
160308e007d2SMiao Xie 						     BTRFS_RESERVE_NO_FLUSH);
1604aec8030aSMiao Xie 		if (pending->error)
1605d6726335SQu Wenruo 			goto clear_skip_qgroup;
1606d68fc57bSYan, Zheng 	}
1607d68fc57bSYan, Zheng 
16083063d29fSChris Mason 	key.objectid = objectid;
1609a22285a6SYan, Zheng 	key.offset = (u64)-1;
1610a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
16113063d29fSChris Mason 
16126fa9700eSMiao Xie 	rsv = trans->block_rsv;
1613a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
16142382c5ccSLiu Bo 	trans->bytes_reserved = trans->block_rsv->reserved;
16150b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
161688d3a5aaSJosef Bacik 				      trans->transid,
161788d3a5aaSJosef Bacik 				      trans->bytes_reserved, 1);
1618a22285a6SYan, Zheng 	dentry = pending->dentry;
1619e9662f70SMiao Xie 	parent_inode = pending->dir;
1620a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
1621f0118cb6SJosef Bacik 	ret = record_root_in_trans(trans, parent_root, 0);
1622f0118cb6SJosef Bacik 	if (ret)
1623f0118cb6SJosef Bacik 		goto fail;
1624c2050a45SDeepa Dinamani 	cur_time = current_time(parent_inode);
162504b285f3SDeepa Dinamani 
16266bdb72deSSage Weil 	/*
16276bdb72deSSage Weil 	 * insert the directory item
16286bdb72deSSage Weil 	 */
1629877574e2SNikolay Borisov 	ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
163049b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
163142874b3dSMiao Xie 
163242874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
163342874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
16344a0cc7caSNikolay Borisov 					 btrfs_ino(BTRFS_I(parent_inode)),
163542874b3dSMiao Xie 					 dentry->d_name.name,
163642874b3dSMiao Xie 					 dentry->d_name.len, 0);
163742874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1638fe66a05aSChris Mason 		pending->error = -EEXIST;
1639aec8030aSMiao Xie 		goto dir_item_existed;
164042874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
164142874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
164266642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16438732d44fSMiao Xie 		goto fail;
164479787eaaSJeff Mahoney 	}
164542874b3dSMiao Xie 	btrfs_release_path(path);
16466bdb72deSSage Weil 
1647e999376fSChris Mason 	/*
1648e999376fSChris Mason 	 * pull in the delayed directory update
1649e999376fSChris Mason 	 * and the delayed inode item
1650e999376fSChris Mason 	 * otherwise we corrupt the FS during
1651e999376fSChris Mason 	 * snapshot
1652e999376fSChris Mason 	 */
1653e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
16548732d44fSMiao Xie 	if (ret) {	/* Transaction aborted */
165566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16568732d44fSMiao Xie 		goto fail;
16578732d44fSMiao Xie 	}
1658e999376fSChris Mason 
1659f0118cb6SJosef Bacik 	ret = record_root_in_trans(trans, root, 0);
1660f0118cb6SJosef Bacik 	if (ret) {
1661f0118cb6SJosef Bacik 		btrfs_abort_transaction(trans, ret);
1662f0118cb6SJosef Bacik 		goto fail;
1663f0118cb6SJosef Bacik 	}
16646bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
16656bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
166608fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
16676bdb72deSSage Weil 
1668b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1669b83cc969SLi Zefan 	if (pending->readonly)
1670b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1671b83cc969SLi Zefan 	else
1672b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1673b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1674b83cc969SLi Zefan 
16758ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
16768ea05e3aSAlexander Block 			trans->transid);
1677807fc790SAndy Shevchenko 	generate_random_guid(new_root_item->uuid);
16788ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
16798ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
168070023da2SStefan Behrens 	if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
168170023da2SStefan Behrens 		memset(new_root_item->received_uuid, 0,
168270023da2SStefan Behrens 		       sizeof(new_root_item->received_uuid));
16838ea05e3aSAlexander Block 		memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
16848ea05e3aSAlexander Block 		memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
16858ea05e3aSAlexander Block 		btrfs_set_root_stransid(new_root_item, 0);
16868ea05e3aSAlexander Block 		btrfs_set_root_rtransid(new_root_item, 0);
168770023da2SStefan Behrens 	}
16883cae210fSQu Wenruo 	btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
16893cae210fSQu Wenruo 	btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
169070023da2SStefan Behrens 	btrfs_set_root_otransid(new_root_item, trans->transid);
16918ea05e3aSAlexander Block 
1692925baeddSChris Mason 	old = btrfs_lock_root_node(root);
16939631e4ccSJosef Bacik 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old,
16949631e4ccSJosef Bacik 			      BTRFS_NESTING_COW);
169579787eaaSJeff Mahoney 	if (ret) {
169679787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
169779787eaaSJeff Mahoney 		free_extent_buffer(old);
169866642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16998732d44fSMiao Xie 		goto fail;
170079787eaaSJeff Mahoney 	}
170149b25e05SJeff Mahoney 
170249b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
170379787eaaSJeff Mahoney 	/* clean up in any case */
1704925baeddSChris Mason 	btrfs_tree_unlock(old);
1705925baeddSChris Mason 	free_extent_buffer(old);
17068732d44fSMiao Xie 	if (ret) {
170766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17088732d44fSMiao Xie 		goto fail;
17098732d44fSMiao Xie 	}
1710f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
171127cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1712f1ebcc74SLiu Bo 	smp_wmb();
1713f1ebcc74SLiu Bo 
17145d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1715a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1716a22285a6SYan, Zheng 	key.offset = trans->transid;
1717a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1718925baeddSChris Mason 	btrfs_tree_unlock(tmp);
17193063d29fSChris Mason 	free_extent_buffer(tmp);
17208732d44fSMiao Xie 	if (ret) {
172166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17228732d44fSMiao Xie 		goto fail;
17238732d44fSMiao Xie 	}
17240660b5afSChris Mason 
1725a22285a6SYan, Zheng 	/*
1726a22285a6SYan, Zheng 	 * insert root back/forward references
1727a22285a6SYan, Zheng 	 */
17286025c19fSLu Fengqi 	ret = btrfs_add_root_ref(trans, objectid,
1729a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
17304a0cc7caSNikolay Borisov 				 btrfs_ino(BTRFS_I(parent_inode)), index,
1731a22285a6SYan, Zheng 				 dentry->d_name.name, dentry->d_name.len);
17328732d44fSMiao Xie 	if (ret) {
173366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17348732d44fSMiao Xie 		goto fail;
17358732d44fSMiao Xie 	}
1736a22285a6SYan, Zheng 
1737a22285a6SYan, Zheng 	key.offset = (u64)-1;
17382dfb1e43SQu Wenruo 	pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev);
173979787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
174079787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
17412d892ccdSFilipe Manana 		pending->snap = NULL;
174266642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17438732d44fSMiao Xie 		goto fail;
174479787eaaSJeff Mahoney 	}
1745d68fc57bSYan, Zheng 
174649b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
17478732d44fSMiao Xie 	if (ret) {
174866642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17498732d44fSMiao Xie 		goto fail;
17508732d44fSMiao Xie 	}
1751361048f5SMiao Xie 
17526426c7adSQu Wenruo 	/*
17536426c7adSQu Wenruo 	 * Do special qgroup accounting for snapshot, as we do some qgroup
17546426c7adSQu Wenruo 	 * snapshot hack to do fast snapshot.
17556426c7adSQu Wenruo 	 * To co-operate with that hack, we do hack again.
17566426c7adSQu Wenruo 	 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
17576426c7adSQu Wenruo 	 */
17586426c7adSQu Wenruo 	ret = qgroup_account_snapshot(trans, root, parent_root,
17596426c7adSQu Wenruo 				      pending->inherit, objectid);
17606426c7adSQu Wenruo 	if (ret < 0)
17616426c7adSQu Wenruo 		goto fail;
17626426c7adSQu Wenruo 
1763684572dfSLu Fengqi 	ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1764684572dfSLu Fengqi 				    dentry->d_name.len, BTRFS_I(parent_inode),
1765684572dfSLu Fengqi 				    &key, BTRFS_FT_DIR, index);
176642874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
17679c52057cSChris Mason 	BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
17688732d44fSMiao Xie 	if (ret) {
176966642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17708732d44fSMiao Xie 		goto fail;
17718732d44fSMiao Xie 	}
177242874b3dSMiao Xie 
17736ef06d27SNikolay Borisov 	btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
177442874b3dSMiao Xie 					 dentry->d_name.len * 2);
177504b285f3SDeepa Dinamani 	parent_inode->i_mtime = parent_inode->i_ctime =
1776c2050a45SDeepa Dinamani 		current_time(parent_inode);
1777729f7961SNikolay Borisov 	ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode));
1778dd5f9615SStefan Behrens 	if (ret) {
177966642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1780dd5f9615SStefan Behrens 		goto fail;
1781dd5f9615SStefan Behrens 	}
1782807fc790SAndy Shevchenko 	ret = btrfs_uuid_tree_add(trans, new_root_item->uuid,
1783807fc790SAndy Shevchenko 				  BTRFS_UUID_KEY_SUBVOL,
1784cdb345a8SLu Fengqi 				  objectid);
1785dd5f9615SStefan Behrens 	if (ret) {
178666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1787dd5f9615SStefan Behrens 		goto fail;
1788dd5f9615SStefan Behrens 	}
1789dd5f9615SStefan Behrens 	if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1790cdb345a8SLu Fengqi 		ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
1791dd5f9615SStefan Behrens 					  BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1792dd5f9615SStefan Behrens 					  objectid);
1793dd5f9615SStefan Behrens 		if (ret && ret != -EEXIST) {
179466642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
1795dd5f9615SStefan Behrens 			goto fail;
1796dd5f9615SStefan Behrens 		}
1797dd5f9615SStefan Behrens 	}
1798d6726335SQu Wenruo 
17993063d29fSChris Mason fail:
1800aec8030aSMiao Xie 	pending->error = ret;
1801aec8030aSMiao Xie dir_item_existed:
180298c9942aSLiu Bo 	trans->block_rsv = rsv;
18032382c5ccSLiu Bo 	trans->bytes_reserved = 0;
1804d6726335SQu Wenruo clear_skip_qgroup:
1805d6726335SQu Wenruo 	btrfs_clear_skip_qgroup(trans);
18066fa9700eSMiao Xie no_free_objectid:
18076fa9700eSMiao Xie 	kfree(new_root_item);
1808b0c0ea63SDavid Sterba 	pending->root_item = NULL;
180942874b3dSMiao Xie 	btrfs_free_path(path);
18108546b570SDavid Sterba 	pending->path = NULL;
18118546b570SDavid Sterba 
181249b25e05SJeff Mahoney 	return ret;
18133063d29fSChris Mason }
18143063d29fSChris Mason 
1815d352ac68SChris Mason /*
1816d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1817d352ac68SChris Mason  */
181808d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
18193063d29fSChris Mason {
1820aec8030aSMiao Xie 	struct btrfs_pending_snapshot *pending, *next;
18213063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
1822aec8030aSMiao Xie 	int ret = 0;
18233de4586cSChris Mason 
1824aec8030aSMiao Xie 	list_for_each_entry_safe(pending, next, head, list) {
1825aec8030aSMiao Xie 		list_del(&pending->list);
182608d50ca3SNikolay Borisov 		ret = create_pending_snapshot(trans, pending);
1827aec8030aSMiao Xie 		if (ret)
1828aec8030aSMiao Xie 			break;
1829aec8030aSMiao Xie 	}
1830aec8030aSMiao Xie 	return ret;
18313de4586cSChris Mason }
18323de4586cSChris Mason 
18332ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info)
18345d4f98a2SYan Zheng {
18355d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
18365d4f98a2SYan Zheng 	struct btrfs_super_block *super;
18375d4f98a2SYan Zheng 
18380b246afaSJeff Mahoney 	super = fs_info->super_copy;
18395d4f98a2SYan Zheng 
18400b246afaSJeff Mahoney 	root_item = &fs_info->chunk_root->root_item;
1841093e037cSDavid Sterba 	super->chunk_root = root_item->bytenr;
1842093e037cSDavid Sterba 	super->chunk_root_generation = root_item->generation;
1843093e037cSDavid Sterba 	super->chunk_root_level = root_item->level;
18445d4f98a2SYan Zheng 
18450b246afaSJeff Mahoney 	root_item = &fs_info->tree_root->root_item;
1846093e037cSDavid Sterba 	super->root = root_item->bytenr;
1847093e037cSDavid Sterba 	super->generation = root_item->generation;
1848093e037cSDavid Sterba 	super->root_level = root_item->level;
18490b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
1850093e037cSDavid Sterba 		super->cache_generation = root_item->generation;
185194846229SBoris Burkov 	else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags))
185294846229SBoris Burkov 		super->cache_generation = 0;
18530b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
1854093e037cSDavid Sterba 		super->uuid_tree_generation = root_item->generation;
18555d4f98a2SYan Zheng }
18565d4f98a2SYan Zheng 
1857f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1858f36f3042SChris Mason {
18594a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
1860f36f3042SChris Mason 	int ret = 0;
18614a9d8bdeSMiao Xie 
1862a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
18634a9d8bdeSMiao Xie 	trans = info->running_transaction;
18644a9d8bdeSMiao Xie 	if (trans)
18654a9d8bdeSMiao Xie 		ret = (trans->state >= TRANS_STATE_COMMIT_START);
1866a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1867f36f3042SChris Mason 	return ret;
1868f36f3042SChris Mason }
1869f36f3042SChris Mason 
18708929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
18718929ecfaSYan, Zheng {
18724a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
18738929ecfaSYan, Zheng 	int ret = 0;
18744a9d8bdeSMiao Xie 
1875a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
18764a9d8bdeSMiao Xie 	trans = info->running_transaction;
18774a9d8bdeSMiao Xie 	if (trans)
18784a9d8bdeSMiao Xie 		ret = is_transaction_blocked(trans);
1879a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
18808929ecfaSYan, Zheng 	return ret;
18818929ecfaSYan, Zheng }
18828929ecfaSYan, Zheng 
1883bb9c12c9SSage Weil /*
1884bb9c12c9SSage Weil  * commit transactions asynchronously. once btrfs_commit_transaction_async
1885bb9c12c9SSage Weil  * returns, any subsequent transaction will not be allowed to join.
1886bb9c12c9SSage Weil  */
1887bb9c12c9SSage Weil struct btrfs_async_commit {
1888bb9c12c9SSage Weil 	struct btrfs_trans_handle *newtrans;
18897892b5afSMiao Xie 	struct work_struct work;
1890bb9c12c9SSage Weil };
1891bb9c12c9SSage Weil 
1892bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work)
1893bb9c12c9SSage Weil {
1894bb9c12c9SSage Weil 	struct btrfs_async_commit *ac =
18957892b5afSMiao Xie 		container_of(work, struct btrfs_async_commit, work);
1896bb9c12c9SSage Weil 
18976fc4e354SSage Weil 	/*
18986fc4e354SSage Weil 	 * We've got freeze protection passed with the transaction.
18996fc4e354SSage Weil 	 * Tell lockdep about it.
19006fc4e354SSage Weil 	 */
1901b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
19023a45bb20SJeff Mahoney 		__sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS);
19036fc4e354SSage Weil 
1904e209db7aSSage Weil 	current->journal_info = ac->newtrans;
1905e209db7aSSage Weil 
19063a45bb20SJeff Mahoney 	btrfs_commit_transaction(ac->newtrans);
1907bb9c12c9SSage Weil 	kfree(ac);
1908bb9c12c9SSage Weil }
1909bb9c12c9SSage Weil 
191032cc4f87SDavid Sterba int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans)
1911bb9c12c9SSage Weil {
19123a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
1913bb9c12c9SSage Weil 	struct btrfs_async_commit *ac;
1914bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1915bb9c12c9SSage Weil 
1916bb9c12c9SSage Weil 	ac = kmalloc(sizeof(*ac), GFP_NOFS);
1917db5b493aSTsutomu Itoh 	if (!ac)
1918db5b493aSTsutomu Itoh 		return -ENOMEM;
1919bb9c12c9SSage Weil 
19207892b5afSMiao Xie 	INIT_WORK(&ac->work, do_async_commit);
19213a45bb20SJeff Mahoney 	ac->newtrans = btrfs_join_transaction(trans->root);
19223612b495STsutomu Itoh 	if (IS_ERR(ac->newtrans)) {
19233612b495STsutomu Itoh 		int err = PTR_ERR(ac->newtrans);
19243612b495STsutomu Itoh 		kfree(ac);
19253612b495STsutomu Itoh 		return err;
19263612b495STsutomu Itoh 	}
1927bb9c12c9SSage Weil 
1928bb9c12c9SSage Weil 	/* take transaction reference */
1929bb9c12c9SSage Weil 	cur_trans = trans->transaction;
19309b64f57dSElena Reshetova 	refcount_inc(&cur_trans->use_count);
1931bb9c12c9SSage Weil 
19323a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
19336fc4e354SSage Weil 
19346fc4e354SSage Weil 	/*
19356fc4e354SSage Weil 	 * Tell lockdep we've released the freeze rwsem, since the
19366fc4e354SSage Weil 	 * async commit thread will be the one to unlock it.
19376fc4e354SSage Weil 	 */
1938b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
19390b246afaSJeff Mahoney 		__sb_writers_release(fs_info->sb, SB_FREEZE_FS);
19406fc4e354SSage Weil 
19417892b5afSMiao Xie 	schedule_work(&ac->work);
1942ae5d29d4SDavid Sterba 	/*
1943ae5d29d4SDavid Sterba 	 * Wait for the current transaction commit to start and block
1944ae5d29d4SDavid Sterba 	 * subsequent transaction joins
1945ae5d29d4SDavid Sterba 	 */
1946ae5d29d4SDavid Sterba 	wait_event(fs_info->transaction_blocked_wait,
1947ae5d29d4SDavid Sterba 		   cur_trans->state >= TRANS_STATE_COMMIT_START ||
1948ae5d29d4SDavid Sterba 		   TRANS_ABORTED(cur_trans));
194938e88054SSage Weil 	if (current->journal_info == trans)
195038e88054SSage Weil 		current->journal_info = NULL;
195138e88054SSage Weil 
1952724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1953bb9c12c9SSage Weil 	return 0;
1954bb9c12c9SSage Weil }
1955bb9c12c9SSage Weil 
195649b25e05SJeff Mahoney 
195797cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
195849b25e05SJeff Mahoney {
195997cb39bbSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
196049b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
196149b25e05SJeff Mahoney 
1962b50fff81SDavid Sterba 	WARN_ON(refcount_read(&trans->use_count) > 1);
196349b25e05SJeff Mahoney 
196466642832SJeff Mahoney 	btrfs_abort_transaction(trans, err);
19657b8b92afSJosef Bacik 
19660b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
196766b6135bSLiu Bo 
196825d8c284SMiao Xie 	/*
196925d8c284SMiao Xie 	 * If the transaction is removed from the list, it means this
197025d8c284SMiao Xie 	 * transaction has been committed successfully, so it is impossible
197125d8c284SMiao Xie 	 * to call the cleanup function.
197225d8c284SMiao Xie 	 */
197325d8c284SMiao Xie 	BUG_ON(list_empty(&cur_trans->list));
197466b6135bSLiu Bo 
19750b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction) {
19764a9d8bdeSMiao Xie 		cur_trans->state = TRANS_STATE_COMMIT_DOING;
19770b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
1978f094ac32SLiu Bo 		wait_event(cur_trans->writer_wait,
1979f094ac32SLiu Bo 			   atomic_read(&cur_trans->num_writers) == 1);
1980f094ac32SLiu Bo 
19810b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
1982d7096fc3SJosef Bacik 	}
1983061dde82SFilipe Manana 
1984061dde82SFilipe Manana 	/*
1985061dde82SFilipe Manana 	 * Now that we know no one else is still using the transaction we can
1986061dde82SFilipe Manana 	 * remove the transaction from the list of transactions. This avoids
1987061dde82SFilipe Manana 	 * the transaction kthread from cleaning up the transaction while some
1988061dde82SFilipe Manana 	 * other task is still using it, which could result in a use-after-free
1989061dde82SFilipe Manana 	 * on things like log trees, as it forces the transaction kthread to
1990061dde82SFilipe Manana 	 * wait for this transaction to be cleaned up by us.
1991061dde82SFilipe Manana 	 */
1992061dde82SFilipe Manana 	list_del_init(&cur_trans->list);
1993061dde82SFilipe Manana 
19940b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
199549b25e05SJeff Mahoney 
19962ff7e61eSJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, fs_info);
199749b25e05SJeff Mahoney 
19980b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
19990b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction)
20000b246afaSJeff Mahoney 		fs_info->running_transaction = NULL;
20010b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
20024a9d8bdeSMiao Xie 
2003e0228285SJosef Bacik 	if (trans->type & __TRANS_FREEZABLE)
20040b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2005724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2006724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
200749b25e05SJeff Mahoney 
200897cb39bbSNikolay Borisov 	trace_btrfs_transaction_commit(trans->root);
200949b25e05SJeff Mahoney 
201049b25e05SJeff Mahoney 	if (current->journal_info == trans)
201149b25e05SJeff Mahoney 		current->journal_info = NULL;
20120b246afaSJeff Mahoney 	btrfs_scrub_cancel(fs_info);
201349b25e05SJeff Mahoney 
201449b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
201549b25e05SJeff Mahoney }
201649b25e05SJeff Mahoney 
2017c7cc64a9SDavid Sterba /*
2018c7cc64a9SDavid Sterba  * Release reserved delayed ref space of all pending block groups of the
2019c7cc64a9SDavid Sterba  * transaction and remove them from the list
2020c7cc64a9SDavid Sterba  */
2021c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
2022c7cc64a9SDavid Sterba {
2023c7cc64a9SDavid Sterba        struct btrfs_fs_info *fs_info = trans->fs_info;
202432da5386SDavid Sterba        struct btrfs_block_group *block_group, *tmp;
2025c7cc64a9SDavid Sterba 
2026c7cc64a9SDavid Sterba        list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
2027c7cc64a9SDavid Sterba                btrfs_delayed_refs_rsv_release(fs_info, 1);
2028c7cc64a9SDavid Sterba                list_del_init(&block_group->bg_list);
2029c7cc64a9SDavid Sterba        }
2030c7cc64a9SDavid Sterba }
2031c7cc64a9SDavid Sterba 
203288090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
203382436617SMiao Xie {
2034ce8ea7ccSJosef Bacik 	/*
2035ce8ea7ccSJosef Bacik 	 * We use writeback_inodes_sb here because if we used
2036ce8ea7ccSJosef Bacik 	 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
2037ce8ea7ccSJosef Bacik 	 * Currently are holding the fs freeze lock, if we do an async flush
2038ce8ea7ccSJosef Bacik 	 * we'll do btrfs_join_transaction() and deadlock because we need to
2039ce8ea7ccSJosef Bacik 	 * wait for the fs freeze lock.  Using the direct flushing we benefit
2040ce8ea7ccSJosef Bacik 	 * from already being in a transaction and our join_transaction doesn't
2041ce8ea7ccSJosef Bacik 	 * have to re-take the fs freeze lock.
2042ce8ea7ccSJosef Bacik 	 */
204388090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
2044ce8ea7ccSJosef Bacik 		writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
204582436617SMiao Xie 	return 0;
204682436617SMiao Xie }
204782436617SMiao Xie 
204888090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
204982436617SMiao Xie {
205088090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
20516374e57aSChris Mason 		btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
205282436617SMiao Xie }
205382436617SMiao Xie 
20543a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
205579154b1bSChris Mason {
20563a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
205749b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
20588fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
205925287e0aSMiao Xie 	int ret;
206079154b1bSChris Mason 
206135b814f3SNikolay Borisov 	ASSERT(refcount_read(&trans->use_count) == 1);
206235b814f3SNikolay Borisov 
20638d25a086SMiao Xie 	/* Stop the commit early if ->aborted is set */
2064bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
206525287e0aSMiao Xie 		ret = cur_trans->aborted;
20663a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2067e4a2bcacSJosef Bacik 		return ret;
206825287e0aSMiao Xie 	}
206949b25e05SJeff Mahoney 
2070f45c752bSJosef Bacik 	btrfs_trans_release_metadata(trans);
2071f45c752bSJosef Bacik 	trans->block_rsv = NULL;
2072f45c752bSJosef Bacik 
2073e19eb11fSJosef Bacik 	/*
2074e19eb11fSJosef Bacik 	 * We only want one transaction commit doing the flushing so we do not
2075e19eb11fSJosef Bacik 	 * waste a bunch of time on lock contention on the extent root node.
2076e19eb11fSJosef Bacik 	 */
2077e19eb11fSJosef Bacik 	if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING,
2078e19eb11fSJosef Bacik 			      &cur_trans->delayed_refs.flags)) {
2079e19eb11fSJosef Bacik 		/*
2080e19eb11fSJosef Bacik 		 * Make a pass through all the delayed refs we have so far.
2081e19eb11fSJosef Bacik 		 * Any running threads may add more while we are here.
208256bec294SChris Mason 		 */
2083c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, 0);
2084e4a2bcacSJosef Bacik 		if (ret) {
20853a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
2086e4a2bcacSJosef Bacik 			return ret;
2087e4a2bcacSJosef Bacik 		}
2088e19eb11fSJosef Bacik 	}
208956bec294SChris Mason 
20906c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
2091ea658badSJosef Bacik 
20923204d33cSJosef Bacik 	if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
20931bbc621eSChris Mason 		int run_it = 0;
20941bbc621eSChris Mason 
20951bbc621eSChris Mason 		/* this mutex is also taken before trying to set
20961bbc621eSChris Mason 		 * block groups readonly.  We need to make sure
20971bbc621eSChris Mason 		 * that nobody has set a block group readonly
20981bbc621eSChris Mason 		 * after a extents from that block group have been
20991bbc621eSChris Mason 		 * allocated for cache files.  btrfs_set_block_group_ro
21001bbc621eSChris Mason 		 * will wait for the transaction to commit if it
21013204d33cSJosef Bacik 		 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
21021bbc621eSChris Mason 		 *
21033204d33cSJosef Bacik 		 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
21043204d33cSJosef Bacik 		 * only one process starts all the block group IO.  It wouldn't
21051bbc621eSChris Mason 		 * hurt to have more than one go through, but there's no
21061bbc621eSChris Mason 		 * real advantage to it either.
21071bbc621eSChris Mason 		 */
21080b246afaSJeff Mahoney 		mutex_lock(&fs_info->ro_block_group_mutex);
21093204d33cSJosef Bacik 		if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
21103204d33cSJosef Bacik 				      &cur_trans->flags))
21111bbc621eSChris Mason 			run_it = 1;
21120b246afaSJeff Mahoney 		mutex_unlock(&fs_info->ro_block_group_mutex);
21131bbc621eSChris Mason 
2114f9cacae3SNikolay Borisov 		if (run_it) {
211521217054SNikolay Borisov 			ret = btrfs_start_dirty_block_groups(trans);
21161bbc621eSChris Mason 			if (ret) {
21173a45bb20SJeff Mahoney 				btrfs_end_transaction(trans);
21181bbc621eSChris Mason 				return ret;
21191bbc621eSChris Mason 			}
2120f9cacae3SNikolay Borisov 		}
2121f9cacae3SNikolay Borisov 	}
21221bbc621eSChris Mason 
21230b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
21244a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
2125d0c2f4faSFilipe Manana 		enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2126d0c2f4faSFilipe Manana 
21270b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
21289b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
2129ccd467d6SChris Mason 
2130d0c2f4faSFilipe Manana 		if (trans->in_fsync)
2131d0c2f4faSFilipe Manana 			want_state = TRANS_STATE_SUPER_COMMITTED;
2132d0c2f4faSFilipe Manana 		ret = btrfs_end_transaction(trans);
2133d0c2f4faSFilipe Manana 		wait_for_commit(cur_trans, want_state);
213415ee9bc7SJosef Bacik 
2135bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans))
2136b4924a0fSLiu Bo 			ret = cur_trans->aborted;
2137b4924a0fSLiu Bo 
2138724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
213915ee9bc7SJosef Bacik 
214049b25e05SJeff Mahoney 		return ret;
214179154b1bSChris Mason 	}
21424313b399SChris Mason 
21434a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
21440b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
2145bb9c12c9SSage Weil 
21460b246afaSJeff Mahoney 	if (cur_trans->list.prev != &fs_info->trans_list) {
2147d0c2f4faSFilipe Manana 		enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2148d0c2f4faSFilipe Manana 
2149d0c2f4faSFilipe Manana 		if (trans->in_fsync)
2150d0c2f4faSFilipe Manana 			want_state = TRANS_STATE_SUPER_COMMITTED;
2151d0c2f4faSFilipe Manana 
2152ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
2153ccd467d6SChris Mason 					struct btrfs_transaction, list);
2154d0c2f4faSFilipe Manana 		if (prev_trans->state < want_state) {
21559b64f57dSElena Reshetova 			refcount_inc(&prev_trans->use_count);
21560b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2157ccd467d6SChris Mason 
2158d0c2f4faSFilipe Manana 			wait_for_commit(prev_trans, want_state);
2159d0c2f4faSFilipe Manana 
2160bf31f87fSDavid Sterba 			ret = READ_ONCE(prev_trans->aborted);
2161ccd467d6SChris Mason 
2162724e2315SJosef Bacik 			btrfs_put_transaction(prev_trans);
21631f9b8c8fSFilipe Manana 			if (ret)
21641f9b8c8fSFilipe Manana 				goto cleanup_transaction;
2165a4abeea4SJosef Bacik 		} else {
21660b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2167ccd467d6SChris Mason 		}
2168a4abeea4SJosef Bacik 	} else {
21690b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
2170cb2d3dadSFilipe Manana 		/*
2171cb2d3dadSFilipe Manana 		 * The previous transaction was aborted and was already removed
2172cb2d3dadSFilipe Manana 		 * from the list of transactions at fs_info->trans_list. So we
2173cb2d3dadSFilipe Manana 		 * abort to prevent writing a new superblock that reflects a
2174cb2d3dadSFilipe Manana 		 * corrupt state (pointing to trees with unwritten nodes/leafs).
2175cb2d3dadSFilipe Manana 		 */
217684961539SJosef Bacik 		if (BTRFS_FS_ERROR(fs_info)) {
2177cb2d3dadSFilipe Manana 			ret = -EROFS;
2178cb2d3dadSFilipe Manana 			goto cleanup_transaction;
2179cb2d3dadSFilipe Manana 		}
2180ccd467d6SChris Mason 	}
218115ee9bc7SJosef Bacik 
21820860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
21830860adfdSMiao Xie 
218488090ad3SFilipe Manana 	ret = btrfs_start_delalloc_flush(fs_info);
218582436617SMiao Xie 	if (ret)
218682436617SMiao Xie 		goto cleanup_transaction;
218782436617SMiao Xie 
2188e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
218949b25e05SJeff Mahoney 	if (ret)
219049b25e05SJeff Mahoney 		goto cleanup_transaction;
219116cdcec7SMiao Xie 
2192581227d0SMiao Xie 	wait_event(cur_trans->writer_wait,
2193581227d0SMiao Xie 		   extwriter_counter_read(cur_trans) == 0);
2194ed3b3d31SChris Mason 
2195581227d0SMiao Xie 	/* some pending stuffs might be added after the previous flush. */
2196e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
2197ca469637SMiao Xie 	if (ret)
2198ca469637SMiao Xie 		goto cleanup_transaction;
2199ca469637SMiao Xie 
220088090ad3SFilipe Manana 	btrfs_wait_delalloc_flush(fs_info);
2201cb7ab021SWang Shilong 
220248778179SFilipe Manana 	/*
220348778179SFilipe Manana 	 * Wait for all ordered extents started by a fast fsync that joined this
220448778179SFilipe Manana 	 * transaction. Otherwise if this transaction commits before the ordered
220548778179SFilipe Manana 	 * extents complete we lose logged data after a power failure.
220648778179SFilipe Manana 	 */
220748778179SFilipe Manana 	wait_event(cur_trans->pending_wait,
220848778179SFilipe Manana 		   atomic_read(&cur_trans->pending_ordered) == 0);
220948778179SFilipe Manana 
22102ff7e61eSJeff Mahoney 	btrfs_scrub_pause(fs_info);
2211ed0ca140SJosef Bacik 	/*
2212ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
2213ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
22144a9d8bdeSMiao Xie 	 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
2215ed0ca140SJosef Bacik 	 */
22160b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
22174a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_DOING;
22180b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2219ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
2220ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
222115ee9bc7SJosef Bacik 
2222bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
22232cba30f1SMiao Xie 		ret = cur_trans->aborted;
22246cf7f77eSWang Shilong 		goto scrub_continue;
22252cba30f1SMiao Xie 	}
22267585717fSChris Mason 	/*
22277585717fSChris Mason 	 * the reloc mutex makes sure that we stop
22287585717fSChris Mason 	 * the balancing code from coming in and moving
22297585717fSChris Mason 	 * extents around in the middle of the commit
22307585717fSChris Mason 	 */
22310b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
22327585717fSChris Mason 
223342874b3dSMiao Xie 	/*
223442874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
223542874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
223642874b3dSMiao Xie 	 * core function of the snapshot creation.
223742874b3dSMiao Xie 	 */
223808d50ca3SNikolay Borisov 	ret = create_pending_snapshots(trans);
223956e9f6eaSDavid Sterba 	if (ret)
224056e9f6eaSDavid Sterba 		goto unlock_reloc;
22413063d29fSChris Mason 
224242874b3dSMiao Xie 	/*
224342874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
224442874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
224542874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
224642874b3dSMiao Xie 	 * them.
224742874b3dSMiao Xie 	 *
224842874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
224942874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
225042874b3dSMiao Xie 	 * the nodes and leaves.
225142874b3dSMiao Xie 	 */
2252e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
225356e9f6eaSDavid Sterba 	if (ret)
225456e9f6eaSDavid Sterba 		goto unlock_reloc;
225516cdcec7SMiao Xie 
2256c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
225756e9f6eaSDavid Sterba 	if (ret)
225856e9f6eaSDavid Sterba 		goto unlock_reloc;
225956bec294SChris Mason 
2260e999376fSChris Mason 	/*
2261e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
2262e999376fSChris Mason 	 * delayed item
2263e999376fSChris Mason 	 */
2264ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
2265e999376fSChris Mason 
22662c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
2267dc17ff8fSChris Mason 
22687e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
226956e9f6eaSDavid Sterba 	if (ret)
2270*dfba78dcSFilipe Manana 		goto unlock_reloc;
227154aa1f4dSChris Mason 
22723818aea2SQu Wenruo 	/*
22737e1876acSDavid Sterba 	 * Since the transaction is done, we can apply the pending changes
22747e1876acSDavid Sterba 	 * before the next transaction.
22753818aea2SQu Wenruo 	 */
22760b246afaSJeff Mahoney 	btrfs_apply_pending_changes(fs_info);
22773818aea2SQu Wenruo 
22785d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
2279e02119d5SChris Mason 	 * safe to free the root of tree log roots
2280e02119d5SChris Mason 	 */
22810b246afaSJeff Mahoney 	btrfs_free_log_root_tree(trans, fs_info);
2282e02119d5SChris Mason 
22830ed4792aSQu Wenruo 	/*
22840ed4792aSQu Wenruo 	 * Since fs roots are all committed, we can get a quite accurate
22850ed4792aSQu Wenruo 	 * new_roots. So let's do quota accounting.
22860ed4792aSQu Wenruo 	 */
2287460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
228856e9f6eaSDavid Sterba 	if (ret < 0)
2289*dfba78dcSFilipe Manana 		goto unlock_reloc;
22900ed4792aSQu Wenruo 
22919386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
229256e9f6eaSDavid Sterba 	if (ret)
2293*dfba78dcSFilipe Manana 		goto unlock_reloc;
229454aa1f4dSChris Mason 
22952cba30f1SMiao Xie 	/*
22962cba30f1SMiao Xie 	 * The tasks which save the space cache and inode cache may also
22972cba30f1SMiao Xie 	 * update ->aborted, check it.
22982cba30f1SMiao Xie 	 */
2299bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
23002cba30f1SMiao Xie 		ret = cur_trans->aborted;
2301*dfba78dcSFilipe Manana 		goto unlock_reloc;
23022cba30f1SMiao Xie 	}
23032cba30f1SMiao Xie 
23040b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
23055f39d397SChris Mason 
23060b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->tree_root->root_item,
23070b246afaSJeff Mahoney 			    fs_info->tree_root->node);
23080b246afaSJeff Mahoney 	list_add_tail(&fs_info->tree_root->dirty_list,
23099e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23105d4f98a2SYan Zheng 
23110b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->chunk_root->root_item,
23120b246afaSJeff Mahoney 			    fs_info->chunk_root->node);
23130b246afaSJeff Mahoney 	list_add_tail(&fs_info->chunk_root->dirty_list,
23149e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23159e351cc8SJosef Bacik 
2316889bfa39SJosef Bacik 	switch_commit_roots(trans);
23175d4f98a2SYan Zheng 
2318ce93ec54SJosef Bacik 	ASSERT(list_empty(&cur_trans->dirty_bgs));
23191bbc621eSChris Mason 	ASSERT(list_empty(&cur_trans->io_bgs));
23202ff7e61eSJeff Mahoney 	update_super_roots(fs_info);
2321e02119d5SChris Mason 
23220b246afaSJeff Mahoney 	btrfs_set_super_log_root(fs_info->super_copy, 0);
23230b246afaSJeff Mahoney 	btrfs_set_super_log_root_level(fs_info->super_copy, 0);
23240b246afaSJeff Mahoney 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
23250b246afaSJeff Mahoney 	       sizeof(*fs_info->super_copy));
2326ccd467d6SChris Mason 
2327bbbf7243SNikolay Borisov 	btrfs_commit_device_sizes(cur_trans);
2328935e5cc9SMiao Xie 
23290b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
23300b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
2331656f30dbSFilipe Manana 
23324fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
23334fbcdf66SFilipe Manana 
2334*dfba78dcSFilipe Manana 	/*
2335*dfba78dcSFilipe Manana 	 * Before changing the transaction state to TRANS_STATE_UNBLOCKED and
2336*dfba78dcSFilipe Manana 	 * setting fs_info->running_transaction to NULL, lock tree_log_mutex to
2337*dfba78dcSFilipe Manana 	 * make sure that before we commit our superblock, no other task can
2338*dfba78dcSFilipe Manana 	 * start a new transaction and commit a log tree before we commit our
2339*dfba78dcSFilipe Manana 	 * superblock. Anyone trying to commit a log tree locks this mutex before
2340*dfba78dcSFilipe Manana 	 * writing its superblock.
2341*dfba78dcSFilipe Manana 	 */
2342*dfba78dcSFilipe Manana 	mutex_lock(&fs_info->tree_log_mutex);
2343*dfba78dcSFilipe Manana 
23440b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
23454a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
23460b246afaSJeff Mahoney 	fs_info->running_transaction = NULL;
23470b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
23480b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
2349b7ec40d7SChris Mason 
23500b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
2351e6dcd2dcSChris Mason 
235270458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
235349b25e05SJeff Mahoney 	if (ret) {
23540b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
235508748810SDavid Sterba 				      "Error while writing out transaction");
23560b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
23576cf7f77eSWang Shilong 		goto scrub_continue;
235849b25e05SJeff Mahoney 	}
235949b25e05SJeff Mahoney 
2360d3575156SNaohiro Aota 	/*
2361d3575156SNaohiro Aota 	 * At this point, we should have written all the tree blocks allocated
2362d3575156SNaohiro Aota 	 * in this transaction. So it's now safe to free the redirtyied extent
2363d3575156SNaohiro Aota 	 * buffers.
2364d3575156SNaohiro Aota 	 */
2365d3575156SNaohiro Aota 	btrfs_free_redirty_list(cur_trans);
2366d3575156SNaohiro Aota 
2367eece6a9cSDavid Sterba 	ret = write_all_supers(fs_info, 0);
2368e02119d5SChris Mason 	/*
2369e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
2370e02119d5SChris Mason 	 * to go about their business
2371e02119d5SChris Mason 	 */
23720b246afaSJeff Mahoney 	mutex_unlock(&fs_info->tree_log_mutex);
2373c1f32b7cSAnand Jain 	if (ret)
2374c1f32b7cSAnand Jain 		goto scrub_continue;
2375e02119d5SChris Mason 
2376d0c2f4faSFilipe Manana 	/*
2377d0c2f4faSFilipe Manana 	 * We needn't acquire the lock here because there is no other task
2378d0c2f4faSFilipe Manana 	 * which can change it.
2379d0c2f4faSFilipe Manana 	 */
2380d0c2f4faSFilipe Manana 	cur_trans->state = TRANS_STATE_SUPER_COMMITTED;
2381d0c2f4faSFilipe Manana 	wake_up(&cur_trans->commit_wait);
2382d0c2f4faSFilipe Manana 
23835ead2dd0SNikolay Borisov 	btrfs_finish_extent_commit(trans);
23844313b399SChris Mason 
23853204d33cSJosef Bacik 	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
23860b246afaSJeff Mahoney 		btrfs_clear_space_info_full(fs_info);
238713212b54SZhao Lei 
23880b246afaSJeff Mahoney 	fs_info->last_trans_committed = cur_trans->transid;
23894a9d8bdeSMiao Xie 	/*
23904a9d8bdeSMiao Xie 	 * We needn't acquire the lock here because there is no other task
23914a9d8bdeSMiao Xie 	 * which can change it.
23924a9d8bdeSMiao Xie 	 */
23934a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMPLETED;
23942c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
23953de4586cSChris Mason 
23960b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
239713c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
23980b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2399a4abeea4SJosef Bacik 
2400724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2401724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
240258176a96SJosef Bacik 
24030860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
24040b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2405b2b5ef5cSJan Kara 
24063a45bb20SJeff Mahoney 	trace_btrfs_transaction_commit(trans->root);
24071abe9b8aSliubo 
24082ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
2409a2de733cSArne Jansen 
24109ed74f2dSJosef Bacik 	if (current->journal_info == trans)
24119ed74f2dSJosef Bacik 		current->journal_info = NULL;
24129ed74f2dSJosef Bacik 
24132c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
241424bbcf04SYan, Zheng 
241579154b1bSChris Mason 	return ret;
241649b25e05SJeff Mahoney 
241756e9f6eaSDavid Sterba unlock_reloc:
241856e9f6eaSDavid Sterba 	mutex_unlock(&fs_info->reloc_mutex);
24196cf7f77eSWang Shilong scrub_continue:
24202ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
242149b25e05SJeff Mahoney cleanup_transaction:
2422dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
2423c7cc64a9SDavid Sterba 	btrfs_cleanup_pending_block_groups(trans);
24244fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
24250e721106SJosef Bacik 	trans->block_rsv = NULL;
24260b246afaSJeff Mahoney 	btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
242749b25e05SJeff Mahoney 	if (current->journal_info == trans)
242849b25e05SJeff Mahoney 		current->journal_info = NULL;
242997cb39bbSNikolay Borisov 	cleanup_transaction(trans, ret);
243049b25e05SJeff Mahoney 
243149b25e05SJeff Mahoney 	return ret;
243279154b1bSChris Mason }
243379154b1bSChris Mason 
2434d352ac68SChris Mason /*
24359d1a2a3aSDavid Sterba  * return < 0 if error
24369d1a2a3aSDavid Sterba  * 0 if there are no more dead_roots at the time of call
24379d1a2a3aSDavid Sterba  * 1 there are more to be processed, call me again
24389d1a2a3aSDavid Sterba  *
24399d1a2a3aSDavid Sterba  * The return value indicates there are certainly more snapshots to delete, but
24409d1a2a3aSDavid Sterba  * if there comes a new one during processing, it may return 0. We don't mind,
24419d1a2a3aSDavid Sterba  * because btrfs_commit_super will poke cleaner thread and it will process it a
24429d1a2a3aSDavid Sterba  * few seconds later.
2443d352ac68SChris Mason  */
24449d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
2445e9d0b13bSChris Mason {
24469d1a2a3aSDavid Sterba 	int ret;
24475d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
2448e9d0b13bSChris Mason 
2449a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
24509d1a2a3aSDavid Sterba 	if (list_empty(&fs_info->dead_roots)) {
24519d1a2a3aSDavid Sterba 		spin_unlock(&fs_info->trans_lock);
24529d1a2a3aSDavid Sterba 		return 0;
24539d1a2a3aSDavid Sterba 	}
24549d1a2a3aSDavid Sterba 	root = list_first_entry(&fs_info->dead_roots,
24559d1a2a3aSDavid Sterba 			struct btrfs_root, root_list);
2456cfad392bSJosef Bacik 	list_del_init(&root->root_list);
2457a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
24585d4f98a2SYan Zheng 
24594fd786e6SMisono Tomohiro 	btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
246076dda93cSYan, Zheng 
246116cdcec7SMiao Xie 	btrfs_kill_all_delayed_nodes(root);
246216cdcec7SMiao Xie 
246376dda93cSYan, Zheng 	if (btrfs_header_backref_rev(root->node) <
246476dda93cSYan, Zheng 			BTRFS_MIXED_BACKREF_REV)
24650078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 0, 0);
246676dda93cSYan, Zheng 	else
24670078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 1, 0);
246832471dc2SDavid Sterba 
2469dc9492c1SJosef Bacik 	btrfs_put_root(root);
24706596a928SJosef Bacik 	return (ret < 0) ? 0 : 1;
2471e9d0b13bSChris Mason }
2472572d9ab7SDavid Sterba 
2473572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2474572d9ab7SDavid Sterba {
2475572d9ab7SDavid Sterba 	unsigned long prev;
2476572d9ab7SDavid Sterba 	unsigned long bit;
2477572d9ab7SDavid Sterba 
24786c9fe14fSQu Wenruo 	prev = xchg(&fs_info->pending_changes, 0);
2479572d9ab7SDavid Sterba 	if (!prev)
2480572d9ab7SDavid Sterba 		return;
2481572d9ab7SDavid Sterba 
2482d51033d0SDavid Sterba 	bit = 1 << BTRFS_PENDING_COMMIT;
2483d51033d0SDavid Sterba 	if (prev & bit)
2484d51033d0SDavid Sterba 		btrfs_debug(fs_info, "pending commit done");
2485d51033d0SDavid Sterba 	prev &= ~bit;
2486d51033d0SDavid Sterba 
2487572d9ab7SDavid Sterba 	if (prev)
2488572d9ab7SDavid Sterba 		btrfs_warn(fs_info,
2489572d9ab7SDavid Sterba 			"unknown pending changes left 0x%lx, ignoring", prev);
2490572d9ab7SDavid Sterba }
2491