xref: /openbmc/linux/fs/btrfs/transaction.c (revision b7625f46)
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>
9ab3c5c18SSweet Tea Dorminy #include <linux/sched/mm.h>
10d3c2fdcfSChris Mason #include <linux/writeback.h>
115f39d397SChris Mason #include <linux/pagemap.h>
125f2cc086SChris Mason #include <linux/blkdev.h>
138ea05e3aSAlexander Block #include <linux/uuid.h>
14e55958c8SIoannis Angelakopoulos #include <linux/timekeeping.h>
15602cbe91SDavid Sterba #include "misc.h"
1679154b1bSChris Mason #include "ctree.h"
1779154b1bSChris Mason #include "disk-io.h"
1879154b1bSChris Mason #include "transaction.h"
19925baeddSChris Mason #include "locking.h"
20e02119d5SChris Mason #include "tree-log.h"
21733f4fbbSStefan Behrens #include "volumes.h"
228dabb742SStefan Behrens #include "dev-replace.h"
23fcebe456SJosef Bacik #include "qgroup.h"
24aac0023cSJosef Bacik #include "block-group.h"
259c343784SJosef Bacik #include "space-info.h"
26d3575156SNaohiro Aota #include "zoned.h"
27c7f13d42SJosef Bacik #include "fs.h"
2807e81dc9SJosef Bacik #include "accessors.h"
29a0231804SJosef Bacik #include "extent-tree.h"
3045c40c8fSJosef Bacik #include "root-tree.h"
3159b818e0SJosef Bacik #include "defrag.h"
32f2b39277SJosef Bacik #include "dir-item.h"
33c7a03b52SJosef Bacik #include "uuid-tree.h"
347572dec8SJosef Bacik #include "ioctl.h"
3567707479SJosef Bacik #include "relocation.h"
362fc6822cSJosef Bacik #include "scrub.h"
3779154b1bSChris Mason 
38956504a3SJosef Bacik static struct kmem_cache *btrfs_trans_handle_cachep;
39956504a3SJosef Bacik 
40fc7cbcd4SDavid Sterba #define BTRFS_ROOT_TRANS_TAG 0
410f7d52f4SChris Mason 
4261c047b5SQu Wenruo /*
4361c047b5SQu Wenruo  * Transaction states and transitions
4461c047b5SQu Wenruo  *
4561c047b5SQu Wenruo  * No running transaction (fs tree blocks are not modified)
4661c047b5SQu Wenruo  * |
4761c047b5SQu Wenruo  * | To next stage:
4861c047b5SQu Wenruo  * |  Call start_transaction() variants. Except btrfs_join_transaction_nostart().
4961c047b5SQu Wenruo  * V
5061c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_RUNNING]]
5161c047b5SQu Wenruo  * |
5261c047b5SQu Wenruo  * | New trans handles can be attached to transaction N by calling all
5361c047b5SQu Wenruo  * | start_transaction() variants.
5461c047b5SQu Wenruo  * |
5561c047b5SQu Wenruo  * | To next stage:
5661c047b5SQu Wenruo  * |  Call btrfs_commit_transaction() on any trans handle attached to
5761c047b5SQu Wenruo  * |  transaction N
5861c047b5SQu Wenruo  * V
5961c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_START]]
6061c047b5SQu Wenruo  * |
6161c047b5SQu Wenruo  * | Will wait for previous running transaction to completely finish if there
6261c047b5SQu Wenruo  * | is one
6361c047b5SQu Wenruo  * |
6461c047b5SQu Wenruo  * | Then one of the following happes:
6561c047b5SQu Wenruo  * | - Wait for all other trans handle holders to release.
6661c047b5SQu Wenruo  * |   The btrfs_commit_transaction() caller will do the commit work.
6761c047b5SQu Wenruo  * | - Wait for current transaction to be committed by others.
6861c047b5SQu Wenruo  * |   Other btrfs_commit_transaction() caller will do the commit work.
6961c047b5SQu Wenruo  * |
7061c047b5SQu Wenruo  * | At this stage, only btrfs_join_transaction*() variants can attach
7161c047b5SQu Wenruo  * | to this running transaction.
7261c047b5SQu Wenruo  * | All other variants will wait for current one to finish and attach to
7361c047b5SQu Wenruo  * | transaction N+1.
7461c047b5SQu Wenruo  * |
7561c047b5SQu Wenruo  * | To next stage:
7661c047b5SQu Wenruo  * |  Caller is chosen to commit transaction N, and all other trans handle
7761c047b5SQu Wenruo  * |  haven been released.
7861c047b5SQu Wenruo  * V
7961c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_DOING]]
8061c047b5SQu Wenruo  * |
8161c047b5SQu Wenruo  * | The heavy lifting transaction work is started.
8261c047b5SQu Wenruo  * | From running delayed refs (modifying extent tree) to creating pending
8361c047b5SQu Wenruo  * | snapshots, running qgroups.
8461c047b5SQu Wenruo  * | In short, modify supporting trees to reflect modifications of subvolume
8561c047b5SQu Wenruo  * | trees.
8661c047b5SQu Wenruo  * |
8761c047b5SQu Wenruo  * | At this stage, all start_transaction() calls will wait for this
8861c047b5SQu Wenruo  * | transaction to finish and attach to transaction N+1.
8961c047b5SQu Wenruo  * |
9061c047b5SQu Wenruo  * | To next stage:
9161c047b5SQu Wenruo  * |  Until all supporting trees are updated.
9261c047b5SQu Wenruo  * V
9361c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_UNBLOCKED]]
9461c047b5SQu Wenruo  * |						    Transaction N+1
9561c047b5SQu Wenruo  * | All needed trees are modified, thus we only    [[TRANS_STATE_RUNNING]]
9661c047b5SQu Wenruo  * | need to write them back to disk and update	    |
9761c047b5SQu Wenruo  * | super blocks.				    |
9861c047b5SQu Wenruo  * |						    |
9961c047b5SQu Wenruo  * | At this stage, new transaction is allowed to   |
10061c047b5SQu Wenruo  * | start.					    |
10161c047b5SQu Wenruo  * | All new start_transaction() calls will be	    |
10261c047b5SQu Wenruo  * | attached to transid N+1.			    |
10361c047b5SQu Wenruo  * |						    |
10461c047b5SQu Wenruo  * | To next stage:				    |
10561c047b5SQu Wenruo  * |  Until all tree blocks are super blocks are    |
10661c047b5SQu Wenruo  * |  written to block devices			    |
10761c047b5SQu Wenruo  * V						    |
10861c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMPLETED]]	    V
10961c047b5SQu Wenruo  *   All tree blocks and super blocks are written.  Transaction N+1
11061c047b5SQu Wenruo  *   This transaction is finished and all its	    [[TRANS_STATE_COMMIT_START]]
11161c047b5SQu Wenruo  *   data structures will be cleaned up.	    | Life goes on
11261c047b5SQu Wenruo  */
113e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
1144a9d8bdeSMiao Xie 	[TRANS_STATE_RUNNING]		= 0U,
115bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_START]	= (__TRANS_START | __TRANS_ATTACH),
116bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_DOING]	= (__TRANS_START |
1174a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
118a6d155d2SFilipe Manana 					   __TRANS_JOIN |
119a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
120bcf3a3e7SNikolay Borisov 	[TRANS_STATE_UNBLOCKED]		= (__TRANS_START |
1214a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1224a9d8bdeSMiao Xie 					   __TRANS_JOIN |
123a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
124a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
125d0c2f4faSFilipe Manana 	[TRANS_STATE_SUPER_COMMITTED]	= (__TRANS_START |
126d0c2f4faSFilipe Manana 					   __TRANS_ATTACH |
127d0c2f4faSFilipe Manana 					   __TRANS_JOIN |
128d0c2f4faSFilipe Manana 					   __TRANS_JOIN_NOLOCK |
129d0c2f4faSFilipe Manana 					   __TRANS_JOIN_NOSTART),
130bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMPLETED]		= (__TRANS_START |
1314a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1324a9d8bdeSMiao Xie 					   __TRANS_JOIN |
133a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
134a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
1354a9d8bdeSMiao Xie };
1364a9d8bdeSMiao Xie 
137724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction)
13879154b1bSChris Mason {
1399b64f57dSElena Reshetova 	WARN_ON(refcount_read(&transaction->use_count) == 0);
1409b64f57dSElena Reshetova 	if (refcount_dec_and_test(&transaction->use_count)) {
141a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
1425c9d028bSLiu Bo 		WARN_ON(!RB_EMPTY_ROOT(
1435c9d028bSLiu Bo 				&transaction->delayed_refs.href_root.rb_root));
14481f7eb00SJeff Mahoney 		WARN_ON(!RB_EMPTY_ROOT(
14581f7eb00SJeff Mahoney 				&transaction->delayed_refs.dirty_extent_root));
1461262133bSJosef Bacik 		if (transaction->delayed_refs.pending_csums)
147ab8d0fc4SJeff Mahoney 			btrfs_err(transaction->fs_info,
148ab8d0fc4SJeff Mahoney 				  "pending csums is %llu",
1491262133bSJosef Bacik 				  transaction->delayed_refs.pending_csums);
1507785a663SFilipe Manana 		/*
1517785a663SFilipe Manana 		 * If any block groups are found in ->deleted_bgs then it's
1527785a663SFilipe Manana 		 * because the transaction was aborted and a commit did not
1537785a663SFilipe Manana 		 * happen (things failed before writing the new superblock
1547785a663SFilipe Manana 		 * and calling btrfs_finish_extent_commit()), so we can not
1557785a663SFilipe Manana 		 * discard the physical locations of the block groups.
1567785a663SFilipe Manana 		 */
1577785a663SFilipe Manana 		while (!list_empty(&transaction->deleted_bgs)) {
15832da5386SDavid Sterba 			struct btrfs_block_group *cache;
1597785a663SFilipe Manana 
1607785a663SFilipe Manana 			cache = list_first_entry(&transaction->deleted_bgs,
16132da5386SDavid Sterba 						 struct btrfs_block_group,
1627785a663SFilipe Manana 						 bg_list);
1637785a663SFilipe Manana 			list_del_init(&cache->bg_list);
1646b7304afSFilipe Manana 			btrfs_unfreeze_block_group(cache);
1657785a663SFilipe Manana 			btrfs_put_block_group(cache);
1667785a663SFilipe Manana 		}
167bbbf7243SNikolay Borisov 		WARN_ON(!list_empty(&transaction->dev_update_list));
1684b5faeacSDavid Sterba 		kfree(transaction);
16979154b1bSChris Mason 	}
17078fae27eSChris Mason }
17179154b1bSChris Mason 
172889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
173817d52f8SJosef Bacik {
174889bfa39SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
17516916a88SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1769e351cc8SJosef Bacik 	struct btrfs_root *root, *tmp;
1779e351cc8SJosef Bacik 
178dfba78dcSFilipe Manana 	/*
179dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
180dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
181dfba78dcSFilipe Manana 	 */
182dfba78dcSFilipe Manana 	ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING);
183dfba78dcSFilipe Manana 
1849e351cc8SJosef Bacik 	down_write(&fs_info->commit_root_sem);
185d96b3424SFilipe Manana 
186d96b3424SFilipe Manana 	if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
187d96b3424SFilipe Manana 		fs_info->last_reloc_trans = trans->transid;
188d96b3424SFilipe Manana 
189889bfa39SJosef Bacik 	list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
1909e351cc8SJosef Bacik 				 dirty_list) {
1919e351cc8SJosef Bacik 		list_del_init(&root->dirty_list);
192817d52f8SJosef Bacik 		free_extent_buffer(root->commit_root);
193817d52f8SJosef Bacik 		root->commit_root = btrfs_root_node(root);
19441e7acd3SNikolay Borisov 		extent_io_tree_release(&root->dirty_log_pages);
195370a11b8SQu Wenruo 		btrfs_qgroup_clean_swapped_blocks(root);
1969e351cc8SJosef Bacik 	}
1972b9dbef2SJosef Bacik 
1982b9dbef2SJosef Bacik 	/* We can free old roots now. */
199889bfa39SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
200889bfa39SJosef Bacik 	while (!list_empty(&cur_trans->dropped_roots)) {
201889bfa39SJosef Bacik 		root = list_first_entry(&cur_trans->dropped_roots,
2022b9dbef2SJosef Bacik 					struct btrfs_root, root_list);
2032b9dbef2SJosef Bacik 		list_del_init(&root->root_list);
204889bfa39SJosef Bacik 		spin_unlock(&cur_trans->dropped_roots_lock);
205889bfa39SJosef Bacik 		btrfs_free_log(trans, root);
2062b9dbef2SJosef Bacik 		btrfs_drop_and_free_fs_root(fs_info, root);
207889bfa39SJosef Bacik 		spin_lock(&cur_trans->dropped_roots_lock);
2082b9dbef2SJosef Bacik 	}
209889bfa39SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
21027d56e62SJosef Bacik 
2119e351cc8SJosef Bacik 	up_write(&fs_info->commit_root_sem);
212817d52f8SJosef Bacik }
213817d52f8SJosef Bacik 
2140860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
2150860adfdSMiao Xie 					 unsigned int type)
2160860adfdSMiao Xie {
2170860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2180860adfdSMiao Xie 		atomic_inc(&trans->num_extwriters);
2190860adfdSMiao Xie }
2200860adfdSMiao Xie 
2210860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
2220860adfdSMiao Xie 					 unsigned int type)
2230860adfdSMiao Xie {
2240860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2250860adfdSMiao Xie 		atomic_dec(&trans->num_extwriters);
2260860adfdSMiao Xie }
2270860adfdSMiao Xie 
2280860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans,
2290860adfdSMiao Xie 					  unsigned int type)
2300860adfdSMiao Xie {
2310860adfdSMiao Xie 	atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
2320860adfdSMiao Xie }
2330860adfdSMiao Xie 
2340860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans)
2350860adfdSMiao Xie {
2360860adfdSMiao Xie 	return atomic_read(&trans->num_extwriters);
237178260b2SMiao Xie }
238178260b2SMiao Xie 
239d352ac68SChris Mason /*
24079bd3712SFilipe Manana  * To be called after doing the chunk btree updates right after allocating a new
24179bd3712SFilipe Manana  * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a
24279bd3712SFilipe Manana  * chunk after all chunk btree updates and after finishing the second phase of
24379bd3712SFilipe Manana  * chunk allocation (btrfs_create_pending_block_groups()) in case some block
24479bd3712SFilipe Manana  * group had its chunk item insertion delayed to the second phase.
245fb6dea26SJosef Bacik  */
246fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
247fb6dea26SJosef Bacik {
248fb6dea26SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
249fb6dea26SJosef Bacik 
250fb6dea26SJosef Bacik 	if (!trans->chunk_bytes_reserved)
251fb6dea26SJosef Bacik 		return;
252fb6dea26SJosef Bacik 
253fb6dea26SJosef Bacik 	btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
25463f018beSNikolay Borisov 				trans->chunk_bytes_reserved, NULL);
255fb6dea26SJosef Bacik 	trans->chunk_bytes_reserved = 0;
256fb6dea26SJosef Bacik }
257fb6dea26SJosef Bacik 
258fb6dea26SJosef Bacik /*
259d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
260d352ac68SChris Mason  */
2612ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info,
2622ff7e61eSJeff Mahoney 				     unsigned int type)
26379154b1bSChris Mason {
26479154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
265a4abeea4SJosef Bacik 
26619ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
267d43317dcSChris Mason loop:
26849b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
26984961539SJosef Bacik 	if (BTRFS_FS_ERROR(fs_info)) {
27019ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
27149b25e05SJeff Mahoney 		return -EROFS;
27249b25e05SJeff Mahoney 	}
27349b25e05SJeff Mahoney 
27419ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
275a4abeea4SJosef Bacik 	if (cur_trans) {
276bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans)) {
27719ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
27849b25e05SJeff Mahoney 			return cur_trans->aborted;
279871383beSDavid Sterba 		}
2804a9d8bdeSMiao Xie 		if (btrfs_blocked_trans_types[cur_trans->state] & type) {
281178260b2SMiao Xie 			spin_unlock(&fs_info->trans_lock);
282178260b2SMiao Xie 			return -EBUSY;
283178260b2SMiao Xie 		}
2849b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
285a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
2860860adfdSMiao Xie 		extwriter_counter_inc(cur_trans, type);
28719ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
288e1489b4fSIoannis Angelakopoulos 		btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers);
2895a9ba670SIoannis Angelakopoulos 		btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters);
290a4abeea4SJosef Bacik 		return 0;
291a4abeea4SJosef Bacik 	}
29219ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
293a4abeea4SJosef Bacik 
294354aa0fbSMiao Xie 	/*
295354aa0fbSMiao Xie 	 * If we are ATTACH, we just want to catch the current transaction,
296354aa0fbSMiao Xie 	 * and commit it. If there is no transaction, just return ENOENT.
297354aa0fbSMiao Xie 	 */
298354aa0fbSMiao Xie 	if (type == TRANS_ATTACH)
299354aa0fbSMiao Xie 		return -ENOENT;
300354aa0fbSMiao Xie 
3014a9d8bdeSMiao Xie 	/*
3024a9d8bdeSMiao Xie 	 * JOIN_NOLOCK only happens during the transaction commit, so
3034a9d8bdeSMiao Xie 	 * it is impossible that ->running_transaction is NULL
3044a9d8bdeSMiao Xie 	 */
3054a9d8bdeSMiao Xie 	BUG_ON(type == TRANS_JOIN_NOLOCK);
3064a9d8bdeSMiao Xie 
3074b5faeacSDavid Sterba 	cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
308db5b493aSTsutomu Itoh 	if (!cur_trans)
309db5b493aSTsutomu Itoh 		return -ENOMEM;
310d43317dcSChris Mason 
311e1489b4fSIoannis Angelakopoulos 	btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers);
3125a9ba670SIoannis Angelakopoulos 	btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters);
313e1489b4fSIoannis Angelakopoulos 
31419ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
31519ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
316d43317dcSChris Mason 		/*
317d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
3184a9d8bdeSMiao Xie 		 * to redo the checks above
319d43317dcSChris Mason 		 */
3205a9ba670SIoannis Angelakopoulos 		btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
321e1489b4fSIoannis Angelakopoulos 		btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
3224b5faeacSDavid Sterba 		kfree(cur_trans);
323d43317dcSChris Mason 		goto loop;
32484961539SJosef Bacik 	} else if (BTRFS_FS_ERROR(fs_info)) {
325e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
3265a9ba670SIoannis Angelakopoulos 		btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
327e1489b4fSIoannis Angelakopoulos 		btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
3284b5faeacSDavid Sterba 		kfree(cur_trans);
3297b8b92afSJosef Bacik 		return -EROFS;
330a4abeea4SJosef Bacik 	}
331d43317dcSChris Mason 
332ab8d0fc4SJeff Mahoney 	cur_trans->fs_info = fs_info;
33348778179SFilipe Manana 	atomic_set(&cur_trans->pending_ordered, 0);
33448778179SFilipe Manana 	init_waitqueue_head(&cur_trans->pending_wait);
33513c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
3360860adfdSMiao Xie 	extwriter_counter_init(cur_trans, type);
33779154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
33879154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
3394a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_RUNNING;
340a4abeea4SJosef Bacik 	/*
341a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
342a4abeea4SJosef Bacik 	 * commit the transaction.
343a4abeea4SJosef Bacik 	 */
3449b64f57dSElena Reshetova 	refcount_set(&cur_trans->use_count, 2);
3453204d33cSJosef Bacik 	cur_trans->flags = 0;
346afd48513SArnd Bergmann 	cur_trans->start_time = ktime_get_seconds();
34756bec294SChris Mason 
348a099d0fdSAlexandru Moise 	memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
349a099d0fdSAlexandru Moise 
3505c9d028bSLiu Bo 	cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3513368d001SQu Wenruo 	cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
352d7df2c79SJosef Bacik 	atomic_set(&cur_trans->delayed_refs.num_entries, 0);
35320b297d6SJan Schmidt 
35420b297d6SJan Schmidt 	/*
35520b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
35620b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
35720b297d6SJan Schmidt 	 */
35820b297d6SJan Schmidt 	smp_mb();
35931b1a2bdSJulia Lawall 	if (!list_empty(&fs_info->tree_mod_seq_list))
3605d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
36131b1a2bdSJulia Lawall 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
3625d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
363fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
36420b297d6SJan Schmidt 
36556bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
36656bec294SChris Mason 
3673063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
368bbbf7243SNikolay Borisov 	INIT_LIST_HEAD(&cur_trans->dev_update_list);
3699e351cc8SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->switch_commits);
370ce93ec54SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dirty_bgs);
3711bbc621eSChris Mason 	INIT_LIST_HEAD(&cur_trans->io_bgs);
3722b9dbef2SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dropped_roots);
3731bbc621eSChris Mason 	mutex_init(&cur_trans->cache_write_mutex);
374ce93ec54SJosef Bacik 	spin_lock_init(&cur_trans->dirty_bgs_lock);
375e33e17eeSJeff Mahoney 	INIT_LIST_HEAD(&cur_trans->deleted_bgs);
3762b9dbef2SJosef Bacik 	spin_lock_init(&cur_trans->dropped_roots_lock);
377d3575156SNaohiro Aota 	INIT_LIST_HEAD(&cur_trans->releasing_ebs);
378d3575156SNaohiro Aota 	spin_lock_init(&cur_trans->releasing_ebs_lock);
37919ae4e81SJan Schmidt 	list_add_tail(&cur_trans->list, &fs_info->trans_list);
380c258d6e3SQu Wenruo 	extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
38135da5a7eSDavid Sterba 			IO_TREE_TRANS_DIRTY_PAGES);
382fe119a6eSNikolay Borisov 	extent_io_tree_init(fs_info, &cur_trans->pinned_extents,
38335da5a7eSDavid Sterba 			IO_TREE_FS_PINNED_EXTENTS);
38419ae4e81SJan Schmidt 	fs_info->generation++;
38519ae4e81SJan Schmidt 	cur_trans->transid = fs_info->generation;
38619ae4e81SJan Schmidt 	fs_info->running_transaction = cur_trans;
38749b25e05SJeff Mahoney 	cur_trans->aborted = 0;
38819ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
38915ee9bc7SJosef Bacik 
39079154b1bSChris Mason 	return 0;
39179154b1bSChris Mason }
39279154b1bSChris Mason 
393d352ac68SChris Mason /*
39492a7cc42SQu Wenruo  * This does all the record keeping required to make sure that a shareable root
39592a7cc42SQu Wenruo  * is properly recorded in a given transaction.  This is required to make sure
39692a7cc42SQu Wenruo  * the old root from before we joined the transaction is deleted when the
39792a7cc42SQu Wenruo  * transaction commits.
398d352ac68SChris Mason  */
3997585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans,
4006426c7adSQu Wenruo 			       struct btrfs_root *root,
4016426c7adSQu Wenruo 			       int force)
4026702ed49SChris Mason {
4030b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
40403a7e111SJosef Bacik 	int ret = 0;
4050b246afaSJeff Mahoney 
40692a7cc42SQu Wenruo 	if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
4076426c7adSQu Wenruo 	    root->last_trans < trans->transid) || force) {
4084d31778aSQu Wenruo 		WARN_ON(!force && root->commit_root != root->node);
4095d4f98a2SYan Zheng 
4107585717fSChris Mason 		/*
41127cdeb70SMiao Xie 		 * see below for IN_TRANS_SETUP usage rules
4127585717fSChris Mason 		 * we have the reloc mutex held now, so there
4137585717fSChris Mason 		 * is only one writer in this function
4147585717fSChris Mason 		 */
41527cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
4167585717fSChris Mason 
41727cdeb70SMiao Xie 		/* make sure readers find IN_TRANS_SETUP before
4187585717fSChris Mason 		 * they find our root->last_trans update
4197585717fSChris Mason 		 */
4207585717fSChris Mason 		smp_wmb();
4217585717fSChris Mason 
422fc7cbcd4SDavid Sterba 		spin_lock(&fs_info->fs_roots_radix_lock);
4236426c7adSQu Wenruo 		if (root->last_trans == trans->transid && !force) {
424fc7cbcd4SDavid Sterba 			spin_unlock(&fs_info->fs_roots_radix_lock);
425a4abeea4SJosef Bacik 			return 0;
426a4abeea4SJosef Bacik 		}
427fc7cbcd4SDavid Sterba 		radix_tree_tag_set(&fs_info->fs_roots_radix,
4286702ed49SChris Mason 				   (unsigned long)root->root_key.objectid,
4296702ed49SChris Mason 				   BTRFS_ROOT_TRANS_TAG);
430fc7cbcd4SDavid Sterba 		spin_unlock(&fs_info->fs_roots_radix_lock);
4317585717fSChris Mason 		root->last_trans = trans->transid;
4327585717fSChris Mason 
4337585717fSChris Mason 		/* this is pretty tricky.  We don't want to
4347585717fSChris Mason 		 * take the relocation lock in btrfs_record_root_in_trans
4357585717fSChris Mason 		 * unless we're really doing the first setup for this root in
4367585717fSChris Mason 		 * this transaction.
4377585717fSChris Mason 		 *
4387585717fSChris Mason 		 * Normally we'd use root->last_trans as a flag to decide
4397585717fSChris Mason 		 * if we want to take the expensive mutex.
4407585717fSChris Mason 		 *
4417585717fSChris Mason 		 * But, we have to set root->last_trans before we
4427585717fSChris Mason 		 * init the relocation root, otherwise, we trip over warnings
4437585717fSChris Mason 		 * in ctree.c.  The solution used here is to flag ourselves
44427cdeb70SMiao Xie 		 * with root IN_TRANS_SETUP.  When this is 1, we're still
4457585717fSChris Mason 		 * fixing up the reloc trees and everyone must wait.
4467585717fSChris Mason 		 *
4477585717fSChris Mason 		 * When this is zero, they can trust root->last_trans and fly
4487585717fSChris Mason 		 * through btrfs_record_root_in_trans without having to take the
4497585717fSChris Mason 		 * lock.  smp_wmb() makes sure that all the writes above are
4507585717fSChris Mason 		 * done before we pop in the zero below
4517585717fSChris Mason 		 */
45203a7e111SJosef Bacik 		ret = btrfs_init_reloc_root(trans, root);
453c7548af6SChris Mason 		smp_mb__before_atomic();
45427cdeb70SMiao Xie 		clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
4556702ed49SChris Mason 	}
45603a7e111SJosef Bacik 	return ret;
4576702ed49SChris Mason }
4585d4f98a2SYan Zheng 
4597585717fSChris Mason 
4602b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
4612b9dbef2SJosef Bacik 			    struct btrfs_root *root)
4622b9dbef2SJosef Bacik {
4630b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4642b9dbef2SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
4652b9dbef2SJosef Bacik 
4662b9dbef2SJosef Bacik 	/* Add ourselves to the transaction dropped list */
4672b9dbef2SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
4682b9dbef2SJosef Bacik 	list_add_tail(&root->root_list, &cur_trans->dropped_roots);
4692b9dbef2SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
4702b9dbef2SJosef Bacik 
4712b9dbef2SJosef Bacik 	/* Make sure we don't try to update the root at commit time */
472fc7cbcd4SDavid Sterba 	spin_lock(&fs_info->fs_roots_radix_lock);
473fc7cbcd4SDavid Sterba 	radix_tree_tag_clear(&fs_info->fs_roots_radix,
4742b9dbef2SJosef Bacik 			     (unsigned long)root->root_key.objectid,
4752b9dbef2SJosef Bacik 			     BTRFS_ROOT_TRANS_TAG);
476fc7cbcd4SDavid Sterba 	spin_unlock(&fs_info->fs_roots_radix_lock);
4772b9dbef2SJosef Bacik }
4782b9dbef2SJosef Bacik 
4797585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
4807585717fSChris Mason 			       struct btrfs_root *root)
4817585717fSChris Mason {
4820b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4831409e6ccSJosef Bacik 	int ret;
4840b246afaSJeff Mahoney 
48592a7cc42SQu Wenruo 	if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
4867585717fSChris Mason 		return 0;
4877585717fSChris Mason 
4887585717fSChris Mason 	/*
48927cdeb70SMiao Xie 	 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
4907585717fSChris Mason 	 * and barriers
4917585717fSChris Mason 	 */
4927585717fSChris Mason 	smp_rmb();
4937585717fSChris Mason 	if (root->last_trans == trans->transid &&
49427cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
4957585717fSChris Mason 		return 0;
4967585717fSChris Mason 
4970b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
4981409e6ccSJosef Bacik 	ret = record_root_in_trans(trans, root, 0);
4990b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
5007585717fSChris Mason 
5011409e6ccSJosef Bacik 	return ret;
5027585717fSChris Mason }
5037585717fSChris Mason 
5044a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans)
5054a9d8bdeSMiao Xie {
5063296bf56SQu Wenruo 	return (trans->state >= TRANS_STATE_COMMIT_START &&
507501407aaSJosef Bacik 		trans->state < TRANS_STATE_UNBLOCKED &&
508bf31f87fSDavid Sterba 		!TRANS_ABORTED(trans));
5094a9d8bdeSMiao Xie }
5104a9d8bdeSMiao Xie 
511d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
512d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
513d352ac68SChris Mason  * transaction might not be fully on disk.
514d352ac68SChris Mason  */
5152ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info)
51679154b1bSChris Mason {
517f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
51879154b1bSChris Mason 
5190b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
5200b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
5214a9d8bdeSMiao Xie 	if (cur_trans && is_transaction_blocked(cur_trans)) {
5229b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
5230b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
52472d63ed6SLi Zefan 
5253e738c53SIoannis Angelakopoulos 		btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
5260b246afaSJeff Mahoney 		wait_event(fs_info->transaction_wait,
527501407aaSJosef Bacik 			   cur_trans->state >= TRANS_STATE_UNBLOCKED ||
528bf31f87fSDavid Sterba 			   TRANS_ABORTED(cur_trans));
529724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
530a4abeea4SJosef Bacik 	} else {
5310b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
532f9295749SChris Mason 	}
53337d1aeeeSChris Mason }
53437d1aeeeSChris Mason 
5352ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
53637d1aeeeSChris Mason {
5370b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
538a4abeea4SJosef Bacik 		return 0;
539a4abeea4SJosef Bacik 
54092e2f7e3SNikolay Borisov 	if (type == TRANS_START)
541a4abeea4SJosef Bacik 		return 1;
542a4abeea4SJosef Bacik 
543a22285a6SYan, Zheng 	return 0;
544a22285a6SYan, Zheng }
545a22285a6SYan, Zheng 
54620dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root)
54720dd2cbfSMiao Xie {
5480b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
5490b246afaSJeff Mahoney 
5500b246afaSJeff Mahoney 	if (!fs_info->reloc_ctl ||
55192a7cc42SQu Wenruo 	    !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
55220dd2cbfSMiao Xie 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
55320dd2cbfSMiao Xie 	    root->reloc_root)
55420dd2cbfSMiao Xie 		return false;
55520dd2cbfSMiao Xie 
55620dd2cbfSMiao Xie 	return true;
55720dd2cbfSMiao Xie }
55820dd2cbfSMiao Xie 
55908e007d2SMiao Xie static struct btrfs_trans_handle *
5605aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items,
561003d7c59SJeff Mahoney 		  unsigned int type, enum btrfs_reserve_flush_enum flush,
562003d7c59SJeff Mahoney 		  bool enforce_qgroups)
563a22285a6SYan, Zheng {
5640b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
565ba2c4d4eSJosef Bacik 	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
566a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
567a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
568b5009945SJosef Bacik 	u64 num_bytes = 0;
569c5567237SArne Jansen 	u64 qgroup_reserved = 0;
57020dd2cbfSMiao Xie 	bool reloc_reserved = false;
5719c343784SJosef Bacik 	bool do_chunk_alloc = false;
57220dd2cbfSMiao Xie 	int ret;
573acce952bSliubo 
57484961539SJosef Bacik 	if (BTRFS_FS_ERROR(fs_info))
575acce952bSliubo 		return ERR_PTR(-EROFS);
5762a1eb461SJosef Bacik 
57746c4e71eSFilipe Manana 	if (current->journal_info) {
5780860adfdSMiao Xie 		WARN_ON(type & TRANS_EXTWRITERS);
5792a1eb461SJosef Bacik 		h = current->journal_info;
580b50fff81SDavid Sterba 		refcount_inc(&h->use_count);
581b50fff81SDavid Sterba 		WARN_ON(refcount_read(&h->use_count) > 2);
5822a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
5832a1eb461SJosef Bacik 		h->block_rsv = NULL;
5842a1eb461SJosef Bacik 		goto got_it;
5852a1eb461SJosef Bacik 	}
586b5009945SJosef Bacik 
587b5009945SJosef Bacik 	/*
588b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
589b5009945SJosef Bacik 	 * the appropriate flushing if need be.
590b5009945SJosef Bacik 	 */
591003d7c59SJeff Mahoney 	if (num_items && root != fs_info->chunk_root) {
592ba2c4d4eSJosef Bacik 		struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
593ba2c4d4eSJosef Bacik 		u64 delayed_refs_bytes = 0;
594ba2c4d4eSJosef Bacik 
5950b246afaSJeff Mahoney 		qgroup_reserved = num_items * fs_info->nodesize;
596733e03a0SQu Wenruo 		ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
597003d7c59SJeff Mahoney 				enforce_qgroups);
598c5567237SArne Jansen 		if (ret)
599c5567237SArne Jansen 			return ERR_PTR(ret);
600c5567237SArne Jansen 
601ba2c4d4eSJosef Bacik 		/*
602ba2c4d4eSJosef Bacik 		 * We want to reserve all the bytes we may need all at once, so
603ba2c4d4eSJosef Bacik 		 * we only do 1 enospc flushing cycle per transaction start.  We
604ba2c4d4eSJosef Bacik 		 * accomplish this by simply assuming we'll do 2 x num_items
605ba2c4d4eSJosef Bacik 		 * worth of delayed refs updates in this trans handle, and
606ba2c4d4eSJosef Bacik 		 * refill that amount for whatever is missing in the reserve.
607ba2c4d4eSJosef Bacik 		 */
6082bd36e7bSJosef Bacik 		num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
6097f9fe614SJosef Bacik 		if (flush == BTRFS_RESERVE_FLUSH_ALL &&
610748f553cSDavid Sterba 		    btrfs_block_rsv_full(delayed_refs_rsv) == 0) {
611ba2c4d4eSJosef Bacik 			delayed_refs_bytes = num_bytes;
612ba2c4d4eSJosef Bacik 			num_bytes <<= 1;
613ba2c4d4eSJosef Bacik 		}
614ba2c4d4eSJosef Bacik 
61520dd2cbfSMiao Xie 		/*
61620dd2cbfSMiao Xie 		 * Do the reservation for the relocation root creation
61720dd2cbfSMiao Xie 		 */
618ee39b432SDavid Sterba 		if (need_reserve_reloc_root(root)) {
6190b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
62020dd2cbfSMiao Xie 			reloc_reserved = true;
62120dd2cbfSMiao Xie 		}
62220dd2cbfSMiao Xie 
6239270501cSJosef Bacik 		ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush);
624ba2c4d4eSJosef Bacik 		if (ret)
625ba2c4d4eSJosef Bacik 			goto reserve_fail;
626ba2c4d4eSJosef Bacik 		if (delayed_refs_bytes) {
627ba2c4d4eSJosef Bacik 			btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
628ba2c4d4eSJosef Bacik 							  delayed_refs_bytes);
629ba2c4d4eSJosef Bacik 			num_bytes -= delayed_refs_bytes;
630ba2c4d4eSJosef Bacik 		}
6319c343784SJosef Bacik 
6329c343784SJosef Bacik 		if (rsv->space_info->force_alloc)
6339c343784SJosef Bacik 			do_chunk_alloc = true;
634ba2c4d4eSJosef Bacik 	} else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
635748f553cSDavid Sterba 		   !btrfs_block_rsv_full(delayed_refs_rsv)) {
636ba2c4d4eSJosef Bacik 		/*
637ba2c4d4eSJosef Bacik 		 * Some people call with btrfs_start_transaction(root, 0)
638ba2c4d4eSJosef Bacik 		 * because they can be throttled, but have some other mechanism
639ba2c4d4eSJosef Bacik 		 * for reserving space.  We still want these guys to refill the
640ba2c4d4eSJosef Bacik 		 * delayed block_rsv so just add 1 items worth of reservation
641ba2c4d4eSJosef Bacik 		 * here.
642ba2c4d4eSJosef Bacik 		 */
643ba2c4d4eSJosef Bacik 		ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
644b5009945SJosef Bacik 		if (ret)
645843fcf35SMiao Xie 			goto reserve_fail;
646b5009945SJosef Bacik 	}
647a22285a6SYan, Zheng again:
648f2f767e7SAlexandru Moise 	h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
649843fcf35SMiao Xie 	if (!h) {
650843fcf35SMiao Xie 		ret = -ENOMEM;
651843fcf35SMiao Xie 		goto alloc_fail;
652843fcf35SMiao Xie 	}
653a22285a6SYan, Zheng 
65498114659SJosef Bacik 	/*
65598114659SJosef Bacik 	 * If we are JOIN_NOLOCK we're already committing a transaction and
65698114659SJosef Bacik 	 * waiting on this guy, so we don't need to do the sb_start_intwrite
65798114659SJosef Bacik 	 * because we're already holding a ref.  We need this because we could
65898114659SJosef Bacik 	 * have raced in and did an fsync() on a file which can kick a commit
65998114659SJosef Bacik 	 * and then we deadlock with somebody doing a freeze.
660354aa0fbSMiao Xie 	 *
661354aa0fbSMiao Xie 	 * If we are ATTACH, it means we just want to catch the current
662354aa0fbSMiao Xie 	 * transaction and commit it, so we needn't do sb_start_intwrite().
66398114659SJosef Bacik 	 */
6640860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
6650b246afaSJeff Mahoney 		sb_start_intwrite(fs_info->sb);
666b2b5ef5cSJan Kara 
6672ff7e61eSJeff Mahoney 	if (may_wait_transaction(fs_info, type))
6682ff7e61eSJeff Mahoney 		wait_current_trans(fs_info);
669a22285a6SYan, Zheng 
670a4abeea4SJosef Bacik 	do {
6712ff7e61eSJeff Mahoney 		ret = join_transaction(fs_info, type);
672178260b2SMiao Xie 		if (ret == -EBUSY) {
6732ff7e61eSJeff Mahoney 			wait_current_trans(fs_info);
674a6d155d2SFilipe Manana 			if (unlikely(type == TRANS_ATTACH ||
675a6d155d2SFilipe Manana 				     type == TRANS_JOIN_NOSTART))
676178260b2SMiao Xie 				ret = -ENOENT;
677178260b2SMiao Xie 		}
678a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
679a4abeea4SJosef Bacik 
680a43f7f82SLiu Bo 	if (ret < 0)
681843fcf35SMiao Xie 		goto join_fail;
6820f7d52f4SChris Mason 
6830b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
684a22285a6SYan, Zheng 
685a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
686a22285a6SYan, Zheng 	h->transaction = cur_trans;
687b50fff81SDavid Sterba 	refcount_set(&h->use_count, 1);
68864b63580SJeff Mahoney 	h->fs_info = root->fs_info;
6897174109cSQu Wenruo 
690a698d075SMiao Xie 	h->type = type;
691ea658badSJosef Bacik 	INIT_LIST_HEAD(&h->new_bgs);
692b7ec40d7SChris Mason 
693a22285a6SYan, Zheng 	smp_mb();
6943296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
6952ff7e61eSJeff Mahoney 	    may_wait_transaction(fs_info, type)) {
696abdd2e80SFilipe Manana 		current->journal_info = h;
6973a45bb20SJeff Mahoney 		btrfs_commit_transaction(h);
698a22285a6SYan, Zheng 		goto again;
699a22285a6SYan, Zheng 	}
7009ed74f2dSJosef Bacik 
701b5009945SJosef Bacik 	if (num_bytes) {
7020b246afaSJeff Mahoney 		trace_btrfs_space_reservation(fs_info, "transaction",
7032bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
7040b246afaSJeff Mahoney 		h->block_rsv = &fs_info->trans_block_rsv;
705b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
70620dd2cbfSMiao Xie 		h->reloc_reserved = reloc_reserved;
707a22285a6SYan, Zheng 	}
708a22285a6SYan, Zheng 
7092a1eb461SJosef Bacik got_it:
710bcf3a3e7SNikolay Borisov 	if (!current->journal_info)
711a22285a6SYan, Zheng 		current->journal_info = h;
712fcc99734SQu Wenruo 
713fcc99734SQu Wenruo 	/*
7149c343784SJosef Bacik 	 * If the space_info is marked ALLOC_FORCE then we'll get upgraded to
7159c343784SJosef Bacik 	 * ALLOC_FORCE the first run through, and then we won't allocate for
7169c343784SJosef Bacik 	 * anybody else who races in later.  We don't care about the return
7179c343784SJosef Bacik 	 * value here.
7189c343784SJosef Bacik 	 */
7199c343784SJosef Bacik 	if (do_chunk_alloc && num_bytes) {
7209c343784SJosef Bacik 		u64 flags = h->block_rsv->space_info->flags;
7219c343784SJosef Bacik 
7229c343784SJosef Bacik 		btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags),
7239c343784SJosef Bacik 				  CHUNK_ALLOC_NO_FORCE);
7249c343784SJosef Bacik 	}
7259c343784SJosef Bacik 
7269c343784SJosef Bacik 	/*
727fcc99734SQu Wenruo 	 * btrfs_record_root_in_trans() needs to alloc new extents, and may
728fcc99734SQu Wenruo 	 * call btrfs_join_transaction() while we're also starting a
729fcc99734SQu Wenruo 	 * transaction.
730fcc99734SQu Wenruo 	 *
731fcc99734SQu Wenruo 	 * Thus it need to be called after current->journal_info initialized,
732fcc99734SQu Wenruo 	 * or we can deadlock.
733fcc99734SQu Wenruo 	 */
73468075ea8SJosef Bacik 	ret = btrfs_record_root_in_trans(h, root);
73568075ea8SJosef Bacik 	if (ret) {
73668075ea8SJosef Bacik 		/*
73768075ea8SJosef Bacik 		 * The transaction handle is fully initialized and linked with
73868075ea8SJosef Bacik 		 * other structures so it needs to be ended in case of errors,
73968075ea8SJosef Bacik 		 * not just freed.
74068075ea8SJosef Bacik 		 */
74168075ea8SJosef Bacik 		btrfs_end_transaction(h);
74268075ea8SJosef Bacik 		return ERR_PTR(ret);
74368075ea8SJosef Bacik 	}
744fcc99734SQu Wenruo 
74579154b1bSChris Mason 	return h;
746843fcf35SMiao Xie 
747843fcf35SMiao Xie join_fail:
7480860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
7490b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
750843fcf35SMiao Xie 	kmem_cache_free(btrfs_trans_handle_cachep, h);
751843fcf35SMiao Xie alloc_fail:
752843fcf35SMiao Xie 	if (num_bytes)
7532ff7e61eSJeff Mahoney 		btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
75463f018beSNikolay Borisov 					num_bytes, NULL);
755843fcf35SMiao Xie reserve_fail:
756733e03a0SQu Wenruo 	btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
757843fcf35SMiao Xie 	return ERR_PTR(ret);
75879154b1bSChris Mason }
75979154b1bSChris Mason 
760f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
7615aed1dd8SAlexandru Moise 						   unsigned int num_items)
762f9295749SChris Mason {
76308e007d2SMiao Xie 	return start_transaction(root, num_items, TRANS_START,
764003d7c59SJeff Mahoney 				 BTRFS_RESERVE_FLUSH_ALL, true);
765f9295749SChris Mason }
766003d7c59SJeff Mahoney 
7678eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
7688eab77ffSFilipe Manana 					struct btrfs_root *root,
7697f9fe614SJosef Bacik 					unsigned int num_items)
7708eab77ffSFilipe Manana {
7717f9fe614SJosef Bacik 	return start_transaction(root, num_items, TRANS_START,
7727f9fe614SJosef Bacik 				 BTRFS_RESERVE_FLUSH_ALL_STEAL, false);
7738eab77ffSFilipe Manana }
7748407aa46SMiao Xie 
7757a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
776f9295749SChris Mason {
777003d7c59SJeff Mahoney 	return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
778003d7c59SJeff Mahoney 				 true);
779f9295749SChris Mason }
780f9295749SChris Mason 
7818d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
7820af3d00bSJosef Bacik {
783575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
784003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
7850af3d00bSJosef Bacik }
7860af3d00bSJosef Bacik 
787d4edf39bSMiao Xie /*
788a6d155d2SFilipe Manana  * Similar to regular join but it never starts a transaction when none is
789a6d155d2SFilipe Manana  * running or after waiting for the current one to finish.
790a6d155d2SFilipe Manana  */
791a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
792a6d155d2SFilipe Manana {
793a6d155d2SFilipe Manana 	return start_transaction(root, 0, TRANS_JOIN_NOSTART,
794a6d155d2SFilipe Manana 				 BTRFS_RESERVE_NO_FLUSH, true);
795a6d155d2SFilipe Manana }
796a6d155d2SFilipe Manana 
797a6d155d2SFilipe Manana /*
798d4edf39bSMiao Xie  * btrfs_attach_transaction() - catch the running transaction
799d4edf39bSMiao Xie  *
800d4edf39bSMiao Xie  * It is used when we want to commit the current the transaction, but
801d4edf39bSMiao Xie  * don't want to start a new one.
802d4edf39bSMiao Xie  *
803d4edf39bSMiao Xie  * Note: If this function return -ENOENT, it just means there is no
804d4edf39bSMiao Xie  * running transaction. But it is possible that the inactive transaction
805d4edf39bSMiao Xie  * is still in the memory, not fully on disk. If you hope there is no
806d4edf39bSMiao Xie  * inactive transaction in the fs when -ENOENT is returned, you should
807d4edf39bSMiao Xie  * invoke
808d4edf39bSMiao Xie  *     btrfs_attach_transaction_barrier()
809d4edf39bSMiao Xie  */
810354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
81160376ce4SJosef Bacik {
812575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_ATTACH,
813003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
81460376ce4SJosef Bacik }
81560376ce4SJosef Bacik 
816d4edf39bSMiao Xie /*
81790b6d283SWang Sheng-Hui  * btrfs_attach_transaction_barrier() - catch the running transaction
818d4edf39bSMiao Xie  *
81952042d8eSAndrea Gelmini  * It is similar to the above function, the difference is this one
820d4edf39bSMiao Xie  * will wait for all the inactive transactions until they fully
821d4edf39bSMiao Xie  * complete.
822d4edf39bSMiao Xie  */
823d4edf39bSMiao Xie struct btrfs_trans_handle *
824d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root)
825d4edf39bSMiao Xie {
826d4edf39bSMiao Xie 	struct btrfs_trans_handle *trans;
827d4edf39bSMiao Xie 
828575a75d6SAlexandru Moise 	trans = start_transaction(root, 0, TRANS_ATTACH,
829003d7c59SJeff Mahoney 				  BTRFS_RESERVE_NO_FLUSH, true);
8308d9e220cSAl Viro 	if (trans == ERR_PTR(-ENOENT))
8312ff7e61eSJeff Mahoney 		btrfs_wait_for_commit(root->fs_info, 0);
832d4edf39bSMiao Xie 
833d4edf39bSMiao Xie 	return trans;
834d4edf39bSMiao Xie }
835d4edf39bSMiao Xie 
836d0c2f4faSFilipe Manana /* Wait for a transaction commit to reach at least the given state. */
837d0c2f4faSFilipe Manana static noinline void wait_for_commit(struct btrfs_transaction *commit,
838d0c2f4faSFilipe Manana 				     const enum btrfs_trans_state min_state)
83989ce8a63SChris Mason {
8405fd76bf3SOmar Sandoval 	struct btrfs_fs_info *fs_info = commit->fs_info;
8415fd76bf3SOmar Sandoval 	u64 transid = commit->transid;
8425fd76bf3SOmar Sandoval 	bool put = false;
8435fd76bf3SOmar Sandoval 
8443e738c53SIoannis Angelakopoulos 	/*
8453e738c53SIoannis Angelakopoulos 	 * At the moment this function is called with min_state either being
8463e738c53SIoannis Angelakopoulos 	 * TRANS_STATE_COMPLETED or TRANS_STATE_SUPER_COMMITTED.
8473e738c53SIoannis Angelakopoulos 	 */
8483e738c53SIoannis Angelakopoulos 	if (min_state == TRANS_STATE_COMPLETED)
8493e738c53SIoannis Angelakopoulos 		btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
8503e738c53SIoannis Angelakopoulos 	else
8513e738c53SIoannis Angelakopoulos 		btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
8523e738c53SIoannis Angelakopoulos 
8535fd76bf3SOmar Sandoval 	while (1) {
854d0c2f4faSFilipe Manana 		wait_event(commit->commit_wait, commit->state >= min_state);
8555fd76bf3SOmar Sandoval 		if (put)
8565fd76bf3SOmar Sandoval 			btrfs_put_transaction(commit);
8575fd76bf3SOmar Sandoval 
8585fd76bf3SOmar Sandoval 		if (min_state < TRANS_STATE_COMPLETED)
8595fd76bf3SOmar Sandoval 			break;
8605fd76bf3SOmar Sandoval 
8615fd76bf3SOmar Sandoval 		/*
8625fd76bf3SOmar Sandoval 		 * A transaction isn't really completed until all of the
8635fd76bf3SOmar Sandoval 		 * previous transactions are completed, but with fsync we can
8645fd76bf3SOmar Sandoval 		 * end up with SUPER_COMMITTED transactions before a COMPLETED
8655fd76bf3SOmar Sandoval 		 * transaction. Wait for those.
8665fd76bf3SOmar Sandoval 		 */
8675fd76bf3SOmar Sandoval 
8685fd76bf3SOmar Sandoval 		spin_lock(&fs_info->trans_lock);
8695fd76bf3SOmar Sandoval 		commit = list_first_entry_or_null(&fs_info->trans_list,
8705fd76bf3SOmar Sandoval 						  struct btrfs_transaction,
8715fd76bf3SOmar Sandoval 						  list);
8725fd76bf3SOmar Sandoval 		if (!commit || commit->transid > transid) {
8735fd76bf3SOmar Sandoval 			spin_unlock(&fs_info->trans_lock);
8745fd76bf3SOmar Sandoval 			break;
8755fd76bf3SOmar Sandoval 		}
8765fd76bf3SOmar Sandoval 		refcount_inc(&commit->use_count);
8775fd76bf3SOmar Sandoval 		put = true;
8785fd76bf3SOmar Sandoval 		spin_unlock(&fs_info->trans_lock);
8795fd76bf3SOmar Sandoval 	}
88089ce8a63SChris Mason }
88189ce8a63SChris Mason 
8822ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
88346204592SSage Weil {
88446204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
8858cd2807fSMiao Xie 	int ret = 0;
88646204592SSage Weil 
88746204592SSage Weil 	if (transid) {
8880b246afaSJeff Mahoney 		if (transid <= fs_info->last_trans_committed)
889a4abeea4SJosef Bacik 			goto out;
89046204592SSage Weil 
89146204592SSage Weil 		/* find specified transaction */
8920b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8930b246afaSJeff Mahoney 		list_for_each_entry(t, &fs_info->trans_list, list) {
89446204592SSage Weil 			if (t->transid == transid) {
89546204592SSage Weil 				cur_trans = t;
8969b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
8978cd2807fSMiao Xie 				ret = 0;
89846204592SSage Weil 				break;
89946204592SSage Weil 			}
9008cd2807fSMiao Xie 			if (t->transid > transid) {
9018cd2807fSMiao Xie 				ret = 0;
90246204592SSage Weil 				break;
90346204592SSage Weil 			}
9048cd2807fSMiao Xie 		}
9050b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
90642383020SSage Weil 
90742383020SSage Weil 		/*
90842383020SSage Weil 		 * The specified transaction doesn't exist, or we
90942383020SSage Weil 		 * raced with btrfs_commit_transaction
91042383020SSage Weil 		 */
91142383020SSage Weil 		if (!cur_trans) {
9120b246afaSJeff Mahoney 			if (transid > fs_info->last_trans_committed)
91342383020SSage Weil 				ret = -EINVAL;
9148cd2807fSMiao Xie 			goto out;
91542383020SSage Weil 		}
91646204592SSage Weil 	} else {
91746204592SSage Weil 		/* find newest transaction that is committing | committed */
9180b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
9190b246afaSJeff Mahoney 		list_for_each_entry_reverse(t, &fs_info->trans_list,
92046204592SSage Weil 					    list) {
9214a9d8bdeSMiao Xie 			if (t->state >= TRANS_STATE_COMMIT_START) {
9224a9d8bdeSMiao Xie 				if (t->state == TRANS_STATE_COMPLETED)
9233473f3c0SJosef Bacik 					break;
92446204592SSage Weil 				cur_trans = t;
9259b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
92646204592SSage Weil 				break;
92746204592SSage Weil 			}
92846204592SSage Weil 		}
9290b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
93046204592SSage Weil 		if (!cur_trans)
931a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
93246204592SSage Weil 	}
93346204592SSage Weil 
934d0c2f4faSFilipe Manana 	wait_for_commit(cur_trans, TRANS_STATE_COMPLETED);
935724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
936a4abeea4SJosef Bacik out:
93746204592SSage Weil 	return ret;
93846204592SSage Weil }
93946204592SSage Weil 
9402ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info)
94137d1aeeeSChris Mason {
9422ff7e61eSJeff Mahoney 	wait_current_trans(fs_info);
94337d1aeeeSChris Mason }
94437d1aeeeSChris Mason 
9458a8f4deaSNikolay Borisov static bool should_end_transaction(struct btrfs_trans_handle *trans)
9468929ecfaSYan, Zheng {
9472ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
9480b246afaSJeff Mahoney 
94964403612SJosef Bacik 	if (btrfs_check_space_for_delayed_refs(fs_info))
9508a8f4deaSNikolay Borisov 		return true;
95136ba022aSJosef Bacik 
952428c8e03SDavid Sterba 	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 50);
9538929ecfaSYan, Zheng }
9548929ecfaSYan, Zheng 
955a2633b6aSNikolay Borisov bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
9568929ecfaSYan, Zheng {
9578929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9588929ecfaSYan, Zheng 
9593296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
960e19eb11fSJosef Bacik 	    test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags))
961a2633b6aSNikolay Borisov 		return true;
9628929ecfaSYan, Zheng 
9632ff7e61eSJeff Mahoney 	return should_end_transaction(trans);
9648929ecfaSYan, Zheng }
9658929ecfaSYan, Zheng 
966dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
967dc60c525SNikolay Borisov 
9680e34693fSNikolay Borisov {
969dc60c525SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
970dc60c525SNikolay Borisov 
9710e34693fSNikolay Borisov 	if (!trans->block_rsv) {
9720e34693fSNikolay Borisov 		ASSERT(!trans->bytes_reserved);
9730e34693fSNikolay Borisov 		return;
9740e34693fSNikolay Borisov 	}
9750e34693fSNikolay Borisov 
9760e34693fSNikolay Borisov 	if (!trans->bytes_reserved)
9770e34693fSNikolay Borisov 		return;
9780e34693fSNikolay Borisov 
9790e34693fSNikolay Borisov 	ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
9800e34693fSNikolay Borisov 	trace_btrfs_space_reservation(fs_info, "transaction",
9810e34693fSNikolay Borisov 				      trans->transid, trans->bytes_reserved, 0);
9820e34693fSNikolay Borisov 	btrfs_block_rsv_release(fs_info, trans->block_rsv,
98363f018beSNikolay Borisov 				trans->bytes_reserved, NULL);
9840e34693fSNikolay Borisov 	trans->bytes_reserved = 0;
9850e34693fSNikolay Borisov }
9860e34693fSNikolay Borisov 
98789ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
9883a45bb20SJeff Mahoney 				   int throttle)
98979154b1bSChris Mason {
9903a45bb20SJeff Mahoney 	struct btrfs_fs_info *info = trans->fs_info;
9918929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9924edc2ca3SDave Jones 	int err = 0;
993d6e4a428SChris Mason 
994b50fff81SDavid Sterba 	if (refcount_read(&trans->use_count) > 1) {
995b50fff81SDavid Sterba 		refcount_dec(&trans->use_count);
9962a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
9972a1eb461SJosef Bacik 		return 0;
9982a1eb461SJosef Bacik 	}
9992a1eb461SJosef Bacik 
1000dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
10014c13d758SJosef Bacik 	trans->block_rsv = NULL;
1002c5567237SArne Jansen 
10036c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
1004ea658badSJosef Bacik 
10054fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
10064fbcdf66SFilipe Manana 
10070860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
10080b246afaSJeff Mahoney 		sb_end_intwrite(info->sb);
10096df7881aSJosef Bacik 
10108929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
101113c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
101213c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
10130860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
101489ce8a63SChris Mason 
1015093258e6SDavid Sterba 	cond_wake_up(&cur_trans->writer_wait);
1016e1489b4fSIoannis Angelakopoulos 
10175a9ba670SIoannis Angelakopoulos 	btrfs_lockdep_release(info, btrfs_trans_num_extwriters);
1018e1489b4fSIoannis Angelakopoulos 	btrfs_lockdep_release(info, btrfs_trans_num_writers);
1019e1489b4fSIoannis Angelakopoulos 
1020724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
10219ed74f2dSJosef Bacik 
10229ed74f2dSJosef Bacik 	if (current->journal_info == trans)
10239ed74f2dSJosef Bacik 		current->journal_info = NULL;
1024ab78c84dSChris Mason 
102524bbcf04SYan, Zheng 	if (throttle)
10262ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(info);
102724bbcf04SYan, Zheng 
102884961539SJosef Bacik 	if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) {
10294e121c06SJosef Bacik 		wake_up_process(info->transaction_kthread);
1030fbabd4a3SJosef Bacik 		if (TRANS_ABORTED(trans))
1031fbabd4a3SJosef Bacik 			err = trans->aborted;
1032fbabd4a3SJosef Bacik 		else
1033fbabd4a3SJosef Bacik 			err = -EROFS;
10344e121c06SJosef Bacik 	}
103549b25e05SJeff Mahoney 
10364edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
10374edc2ca3SDave Jones 	return err;
103879154b1bSChris Mason }
103979154b1bSChris Mason 
10403a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans)
104189ce8a63SChris Mason {
10423a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 0);
104389ce8a63SChris Mason }
104489ce8a63SChris Mason 
10453a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
104689ce8a63SChris Mason {
10473a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 1);
104816cdcec7SMiao Xie }
104916cdcec7SMiao Xie 
1050d352ac68SChris Mason /*
1051d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1052d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1053690587d1SChris Mason  * those extents are sent to disk but does not wait on them
1054d352ac68SChris Mason  */
10552ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
10568cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
105779154b1bSChris Mason {
1058777e6bd7SChris Mason 	int err = 0;
10597c4452b9SChris Mason 	int werr = 0;
10600b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1061e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1062777e6bd7SChris Mason 	u64 start = 0;
10635f39d397SChris Mason 	u64 end;
10647c4452b9SChris Mason 
10656300463bSLiu Bo 	atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
10661728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1067e6138876SJosef Bacik 				      mark, &cached_state)) {
1068663dfbb0SFilipe Manana 		bool wait_writeback = false;
1069663dfbb0SFilipe Manana 
1070663dfbb0SFilipe Manana 		err = convert_extent_bit(dirty_pages, start, end,
1071663dfbb0SFilipe Manana 					 EXTENT_NEED_WAIT,
1072210aa277SDavid Sterba 					 mark, &cached_state);
1073663dfbb0SFilipe Manana 		/*
1074663dfbb0SFilipe Manana 		 * convert_extent_bit can return -ENOMEM, which is most of the
1075663dfbb0SFilipe Manana 		 * time a temporary error. So when it happens, ignore the error
1076663dfbb0SFilipe Manana 		 * and wait for writeback of this range to finish - because we
1077663dfbb0SFilipe Manana 		 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
1078bf89d38fSJeff Mahoney 		 * to __btrfs_wait_marked_extents() would not know that
1079bf89d38fSJeff Mahoney 		 * writeback for this range started and therefore wouldn't
1080bf89d38fSJeff Mahoney 		 * wait for it to finish - we don't want to commit a
1081bf89d38fSJeff Mahoney 		 * superblock that points to btree nodes/leafs for which
1082bf89d38fSJeff Mahoney 		 * writeback hasn't finished yet (and without errors).
1083663dfbb0SFilipe Manana 		 * We cleanup any entries left in the io tree when committing
108441e7acd3SNikolay Borisov 		 * the transaction (through extent_io_tree_release()).
1085663dfbb0SFilipe Manana 		 */
1086663dfbb0SFilipe Manana 		if (err == -ENOMEM) {
1087663dfbb0SFilipe Manana 			err = 0;
1088663dfbb0SFilipe Manana 			wait_writeback = true;
1089663dfbb0SFilipe Manana 		}
1090663dfbb0SFilipe Manana 		if (!err)
10911728366eSJosef Bacik 			err = filemap_fdatawrite_range(mapping, start, end);
10927c4452b9SChris Mason 		if (err)
10937c4452b9SChris Mason 			werr = err;
1094663dfbb0SFilipe Manana 		else if (wait_writeback)
1095663dfbb0SFilipe Manana 			werr = filemap_fdatawait_range(mapping, start, end);
1096e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1097663dfbb0SFilipe Manana 		cached_state = NULL;
10981728366eSJosef Bacik 		cond_resched();
10991728366eSJosef Bacik 		start = end + 1;
11007c4452b9SChris Mason 	}
11016300463bSLiu Bo 	atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1102690587d1SChris Mason 	return werr;
1103690587d1SChris Mason }
1104690587d1SChris Mason 
1105690587d1SChris Mason /*
1106690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1107690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1108690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
1109690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
1110690587d1SChris Mason  */
1111bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1112bf89d38fSJeff Mahoney 				       struct extent_io_tree *dirty_pages)
1113690587d1SChris Mason {
1114690587d1SChris Mason 	int err = 0;
1115690587d1SChris Mason 	int werr = 0;
11160b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1117e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1118690587d1SChris Mason 	u64 start = 0;
1119690587d1SChris Mason 	u64 end;
1120690587d1SChris Mason 
11211728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1122e6138876SJosef Bacik 				      EXTENT_NEED_WAIT, &cached_state)) {
1123663dfbb0SFilipe Manana 		/*
1124663dfbb0SFilipe Manana 		 * Ignore -ENOMEM errors returned by clear_extent_bit().
1125663dfbb0SFilipe Manana 		 * When committing the transaction, we'll remove any entries
1126663dfbb0SFilipe Manana 		 * left in the io tree. For a log commit, we don't remove them
1127663dfbb0SFilipe Manana 		 * after committing the log because the tree can be accessed
1128663dfbb0SFilipe Manana 		 * concurrently - we do it only at transaction commit time when
112941e7acd3SNikolay Borisov 		 * it's safe to do it (through extent_io_tree_release()).
1130663dfbb0SFilipe Manana 		 */
1131663dfbb0SFilipe Manana 		err = clear_extent_bit(dirty_pages, start, end,
1132bd015294SJosef Bacik 				       EXTENT_NEED_WAIT, &cached_state);
1133663dfbb0SFilipe Manana 		if (err == -ENOMEM)
1134663dfbb0SFilipe Manana 			err = 0;
1135663dfbb0SFilipe Manana 		if (!err)
11361728366eSJosef Bacik 			err = filemap_fdatawait_range(mapping, start, end);
1137777e6bd7SChris Mason 		if (err)
1138777e6bd7SChris Mason 			werr = err;
1139e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1140e38e2ed7SFilipe Manana 		cached_state = NULL;
1141777e6bd7SChris Mason 		cond_resched();
11421728366eSJosef Bacik 		start = end + 1;
1143777e6bd7SChris Mason 	}
11447c4452b9SChris Mason 	if (err)
11457c4452b9SChris Mason 		werr = err;
1146bf89d38fSJeff Mahoney 	return werr;
1147bf89d38fSJeff Mahoney }
1148656f30dbSFilipe Manana 
1149b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
1150bf89d38fSJeff Mahoney 		       struct extent_io_tree *dirty_pages)
1151bf89d38fSJeff Mahoney {
1152bf89d38fSJeff Mahoney 	bool errors = false;
1153bf89d38fSJeff Mahoney 	int err;
1154bf89d38fSJeff Mahoney 
1155bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1156bf89d38fSJeff Mahoney 	if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1157bf89d38fSJeff Mahoney 		errors = true;
1158bf89d38fSJeff Mahoney 
1159bf89d38fSJeff Mahoney 	if (errors && !err)
1160bf89d38fSJeff Mahoney 		err = -EIO;
1161bf89d38fSJeff Mahoney 	return err;
1162bf89d38fSJeff Mahoney }
1163bf89d38fSJeff Mahoney 
1164bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1165bf89d38fSJeff Mahoney {
1166bf89d38fSJeff Mahoney 	struct btrfs_fs_info *fs_info = log_root->fs_info;
1167bf89d38fSJeff Mahoney 	struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1168bf89d38fSJeff Mahoney 	bool errors = false;
1169bf89d38fSJeff Mahoney 	int err;
1170bf89d38fSJeff Mahoney 
1171bf89d38fSJeff Mahoney 	ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1172bf89d38fSJeff Mahoney 
1173bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1174656f30dbSFilipe Manana 	if ((mark & EXTENT_DIRTY) &&
11750b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1176656f30dbSFilipe Manana 		errors = true;
1177656f30dbSFilipe Manana 
1178656f30dbSFilipe Manana 	if ((mark & EXTENT_NEW) &&
11790b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1180656f30dbSFilipe Manana 		errors = true;
1181656f30dbSFilipe Manana 
1182bf89d38fSJeff Mahoney 	if (errors && !err)
1183bf89d38fSJeff Mahoney 		err = -EIO;
1184bf89d38fSJeff Mahoney 	return err;
118579154b1bSChris Mason }
118679154b1bSChris Mason 
1187690587d1SChris Mason /*
1188c9b577c0SNikolay Borisov  * When btree blocks are allocated the corresponding extents are marked dirty.
1189c9b577c0SNikolay Borisov  * This function ensures such extents are persisted on disk for transaction or
1190c9b577c0SNikolay Borisov  * log commit.
1191c9b577c0SNikolay Borisov  *
1192c9b577c0SNikolay Borisov  * @trans: transaction whose dirty pages we'd like to write
1193690587d1SChris Mason  */
119470458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
1195d0c803c4SChris Mason {
1196663dfbb0SFilipe Manana 	int ret;
1197c9b577c0SNikolay Borisov 	int ret2;
1198c9b577c0SNikolay Borisov 	struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
119970458a58SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1200c9b577c0SNikolay Borisov 	struct blk_plug plug;
1201663dfbb0SFilipe Manana 
1202c9b577c0SNikolay Borisov 	blk_start_plug(&plug);
1203c9b577c0SNikolay Borisov 	ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
1204c9b577c0SNikolay Borisov 	blk_finish_plug(&plug);
1205c9b577c0SNikolay Borisov 	ret2 = btrfs_wait_extents(fs_info, dirty_pages);
1206c9b577c0SNikolay Borisov 
120741e7acd3SNikolay Borisov 	extent_io_tree_release(&trans->transaction->dirty_pages);
1208663dfbb0SFilipe Manana 
1209c9b577c0SNikolay Borisov 	if (ret)
1210663dfbb0SFilipe Manana 		return ret;
1211c9b577c0SNikolay Borisov 	else if (ret2)
1212c9b577c0SNikolay Borisov 		return ret2;
1213c9b577c0SNikolay Borisov 	else
1214c9b577c0SNikolay Borisov 		return 0;
1215d0c803c4SChris Mason }
1216d0c803c4SChris Mason 
1217d352ac68SChris Mason /*
1218d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
1219d352ac68SChris Mason  *
1220d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
1221d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
1222d352ac68SChris Mason  * allocation tree.
1223d352ac68SChris Mason  *
1224d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
1225d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
1226d352ac68SChris Mason  */
12270b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
122879154b1bSChris Mason 			       struct btrfs_root *root)
122979154b1bSChris Mason {
123079154b1bSChris Mason 	int ret;
12310b86a832SChris Mason 	u64 old_root_bytenr;
123286b9f2ecSYan, Zheng 	u64 old_root_used;
12330b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12340b246afaSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
123579154b1bSChris Mason 
123686b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
123756bec294SChris Mason 
123879154b1bSChris Mason 	while (1) {
12390b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
124086b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
1241ea526d18SJosef Bacik 		    old_root_used == btrfs_root_used(&root->root_item))
124279154b1bSChris Mason 			break;
124387ef2bb4SChris Mason 
12445d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
124579154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
12460b86a832SChris Mason 					&root->root_key,
12470b86a832SChris Mason 					&root->root_item);
124849b25e05SJeff Mahoney 		if (ret)
124949b25e05SJeff Mahoney 			return ret;
125056bec294SChris Mason 
125186b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
1252e7070be1SJosef Bacik 	}
1253276e680dSYan Zheng 
12540b86a832SChris Mason 	return 0;
12550b86a832SChris Mason }
12560b86a832SChris Mason 
1257d352ac68SChris Mason /*
1258d352ac68SChris Mason  * update all the cowonly tree roots on disk
125949b25e05SJeff Mahoney  *
126049b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
126149b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
126249b25e05SJeff Mahoney  * to clean up the delayed refs.
1263d352ac68SChris Mason  */
12649386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
12650b86a832SChris Mason {
12669386d8bcSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1267ea526d18SJosef Bacik 	struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
12681bbc621eSChris Mason 	struct list_head *io_bgs = &trans->transaction->io_bgs;
12690b86a832SChris Mason 	struct list_head *next;
127084234f3aSYan Zheng 	struct extent_buffer *eb;
127156bec294SChris Mason 	int ret;
127284234f3aSYan Zheng 
1273dfba78dcSFilipe Manana 	/*
1274dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
1275dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
1276dfba78dcSFilipe Manana 	 */
1277dfba78dcSFilipe Manana 	ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1278dfba78dcSFilipe Manana 
127984234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
128049b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
12819631e4ccSJosef Bacik 			      0, &eb, BTRFS_NESTING_COW);
128284234f3aSYan Zheng 	btrfs_tree_unlock(eb);
128384234f3aSYan Zheng 	free_extent_buffer(eb);
12840b86a832SChris Mason 
128549b25e05SJeff Mahoney 	if (ret)
128649b25e05SJeff Mahoney 		return ret;
128749b25e05SJeff Mahoney 
1288196c9d8dSDavid Sterba 	ret = btrfs_run_dev_stats(trans);
1289c16ce190SJosef Bacik 	if (ret)
1290c16ce190SJosef Bacik 		return ret;
12912b584c68SDavid Sterba 	ret = btrfs_run_dev_replace(trans);
1292c16ce190SJosef Bacik 	if (ret)
1293c16ce190SJosef Bacik 		return ret;
1294280f8bd2SLu Fengqi 	ret = btrfs_run_qgroups(trans);
1295c16ce190SJosef Bacik 	if (ret)
1296c16ce190SJosef Bacik 		return ret;
1297546adb0dSJan Schmidt 
1298bbebb3e0SDavid Sterba 	ret = btrfs_setup_space_cache(trans);
1299dcdf7f6dSJosef Bacik 	if (ret)
1300dcdf7f6dSJosef Bacik 		return ret;
1301dcdf7f6dSJosef Bacik 
1302ea526d18SJosef Bacik again:
13030b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
13042ff7e61eSJeff Mahoney 		struct btrfs_root *root;
13050b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
13060b86a832SChris Mason 		list_del_init(next);
13070b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
1308e7070be1SJosef Bacik 		clear_bit(BTRFS_ROOT_DIRTY, &root->state);
130987ef2bb4SChris Mason 
13109e351cc8SJosef Bacik 		list_add_tail(&root->dirty_list,
13119e351cc8SJosef Bacik 			      &trans->transaction->switch_commits);
131249b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
131349b25e05SJeff Mahoney 		if (ret)
131449b25e05SJeff Mahoney 			return ret;
1315488bc2a2SJosef Bacik 	}
1316488bc2a2SJosef Bacik 
1317488bc2a2SJosef Bacik 	/* Now flush any delayed refs generated by updating all of the roots */
1318c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1319ea526d18SJosef Bacik 	if (ret)
1320ea526d18SJosef Bacik 		return ret;
1321276e680dSYan Zheng 
13221bbc621eSChris Mason 	while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
13235742d15fSDavid Sterba 		ret = btrfs_write_dirty_block_groups(trans);
1324ea526d18SJosef Bacik 		if (ret)
1325ea526d18SJosef Bacik 			return ret;
1326488bc2a2SJosef Bacik 
1327488bc2a2SJosef Bacik 		/*
1328488bc2a2SJosef Bacik 		 * We're writing the dirty block groups, which could generate
1329488bc2a2SJosef Bacik 		 * delayed refs, which could generate more dirty block groups,
1330488bc2a2SJosef Bacik 		 * so we want to keep this flushing in this loop to make sure
1331488bc2a2SJosef Bacik 		 * everything gets run.
1332488bc2a2SJosef Bacik 		 */
1333c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1334ea526d18SJosef Bacik 		if (ret)
1335ea526d18SJosef Bacik 			return ret;
1336ea526d18SJosef Bacik 	}
1337ea526d18SJosef Bacik 
1338ea526d18SJosef Bacik 	if (!list_empty(&fs_info->dirty_cowonly_roots))
1339ea526d18SJosef Bacik 		goto again;
1340ea526d18SJosef Bacik 
13419f6cbcbbSDavid Sterba 	/* Update dev-replace pointer once everything is committed */
13429f6cbcbbSDavid Sterba 	fs_info->dev_replace.committed_cursor_left =
13439f6cbcbbSDavid Sterba 		fs_info->dev_replace.cursor_left_last_write_of_item;
13448dabb742SStefan Behrens 
134579154b1bSChris Mason 	return 0;
134679154b1bSChris Mason }
134779154b1bSChris Mason 
1348d352ac68SChris Mason /*
1349b4be6aefSJosef Bacik  * If we had a pending drop we need to see if there are any others left in our
1350b4be6aefSJosef Bacik  * dead roots list, and if not clear our bit and wake any waiters.
1351b4be6aefSJosef Bacik  */
1352b4be6aefSJosef Bacik void btrfs_maybe_wake_unfinished_drop(struct btrfs_fs_info *fs_info)
1353b4be6aefSJosef Bacik {
1354b4be6aefSJosef Bacik 	/*
1355b4be6aefSJosef Bacik 	 * We put the drop in progress roots at the front of the list, so if the
1356b4be6aefSJosef Bacik 	 * first entry doesn't have UNFINISHED_DROP set we can wake everybody
1357b4be6aefSJosef Bacik 	 * up.
1358b4be6aefSJosef Bacik 	 */
1359b4be6aefSJosef Bacik 	spin_lock(&fs_info->trans_lock);
1360b4be6aefSJosef Bacik 	if (!list_empty(&fs_info->dead_roots)) {
1361b4be6aefSJosef Bacik 		struct btrfs_root *root = list_first_entry(&fs_info->dead_roots,
1362b4be6aefSJosef Bacik 							   struct btrfs_root,
1363b4be6aefSJosef Bacik 							   root_list);
1364b4be6aefSJosef Bacik 		if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) {
1365b4be6aefSJosef Bacik 			spin_unlock(&fs_info->trans_lock);
1366b4be6aefSJosef Bacik 			return;
1367b4be6aefSJosef Bacik 		}
1368b4be6aefSJosef Bacik 	}
1369b4be6aefSJosef Bacik 	spin_unlock(&fs_info->trans_lock);
1370b4be6aefSJosef Bacik 
1371b4be6aefSJosef Bacik 	btrfs_wake_unfinished_drop(fs_info);
1372b4be6aefSJosef Bacik }
1373b4be6aefSJosef Bacik 
1374b4be6aefSJosef Bacik /*
1375d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
1376d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
1377d352ac68SChris Mason  * be deleted
1378d352ac68SChris Mason  */
1379cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root)
13805eda7b5eSChris Mason {
13810b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13820b246afaSJeff Mahoney 
13830b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1384dc9492c1SJosef Bacik 	if (list_empty(&root->root_list)) {
1385dc9492c1SJosef Bacik 		btrfs_grab_root(root);
1386b4be6aefSJosef Bacik 
1387b4be6aefSJosef Bacik 		/* We want to process the partially complete drops first. */
1388b4be6aefSJosef Bacik 		if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state))
1389b4be6aefSJosef Bacik 			list_add(&root->root_list, &fs_info->dead_roots);
1390b4be6aefSJosef Bacik 		else
13910b246afaSJeff Mahoney 			list_add_tail(&root->root_list, &fs_info->dead_roots);
1392dc9492c1SJosef Bacik 	}
13930b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
13945eda7b5eSChris Mason }
13955eda7b5eSChris Mason 
1396d352ac68SChris Mason /*
1397dfba78dcSFilipe Manana  * Update each subvolume root and its relocation root, if it exists, in the tree
1398dfba78dcSFilipe Manana  * of tree roots. Also free log roots if they exist.
1399d352ac68SChris Mason  */
14007e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
14010f7d52f4SChris Mason {
14027e4443d9SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1403fc7cbcd4SDavid Sterba 	struct btrfs_root *gang[8];
1404fc7cbcd4SDavid Sterba 	int i;
1405fc7cbcd4SDavid Sterba 	int ret;
140654aa1f4dSChris Mason 
1407dfba78dcSFilipe Manana 	/*
1408dfba78dcSFilipe Manana 	 * At this point no one can be using this transaction to modify any tree
1409dfba78dcSFilipe Manana 	 * and no one can start another transaction to modify any tree either.
1410dfba78dcSFilipe Manana 	 */
1411dfba78dcSFilipe Manana 	ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1412dfba78dcSFilipe Manana 
1413fc7cbcd4SDavid Sterba 	spin_lock(&fs_info->fs_roots_radix_lock);
1414fc7cbcd4SDavid Sterba 	while (1) {
1415fc7cbcd4SDavid Sterba 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
1416fc7cbcd4SDavid Sterba 						 (void **)gang, 0,
1417fc7cbcd4SDavid Sterba 						 ARRAY_SIZE(gang),
1418fc7cbcd4SDavid Sterba 						 BTRFS_ROOT_TRANS_TAG);
1419fc7cbcd4SDavid Sterba 		if (ret == 0)
1420fc7cbcd4SDavid Sterba 			break;
1421fc7cbcd4SDavid Sterba 		for (i = 0; i < ret; i++) {
1422fc7cbcd4SDavid Sterba 			struct btrfs_root *root = gang[i];
1423fc7cbcd4SDavid Sterba 			int ret2;
14244f4317c1SJosef Bacik 
1425dfba78dcSFilipe Manana 			/*
1426dfba78dcSFilipe Manana 			 * At this point we can neither have tasks logging inodes
1427dfba78dcSFilipe Manana 			 * from a root nor trying to commit a log tree.
1428dfba78dcSFilipe Manana 			 */
1429dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_writers) == 0);
1430dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_commit[0]) == 0);
1431dfba78dcSFilipe Manana 			ASSERT(atomic_read(&root->log_commit[1]) == 0);
1432dfba78dcSFilipe Manana 
1433fc7cbcd4SDavid Sterba 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
14342619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
14350f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
1436fc7cbcd4SDavid Sterba 			spin_unlock(&fs_info->fs_roots_radix_lock);
143731153d81SYan Zheng 
1438e02119d5SChris Mason 			btrfs_free_log(trans, root);
1439fc7cbcd4SDavid Sterba 			ret2 = btrfs_update_reloc_root(trans, root);
1440fc7cbcd4SDavid Sterba 			if (ret2)
1441fc7cbcd4SDavid Sterba 				return ret2;
1442e02119d5SChris Mason 
1443fc7cbcd4SDavid Sterba 			/* see comments in should_cow_block() */
144427cdeb70SMiao Xie 			clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1445c7548af6SChris Mason 			smp_mb__after_atomic();
1446f1ebcc74SLiu Bo 
1447978d910dSYan Zheng 			if (root->commit_root != root->node) {
14489e351cc8SJosef Bacik 				list_add_tail(&root->dirty_list,
14499e351cc8SJosef Bacik 					&trans->transaction->switch_commits);
1450fc7cbcd4SDavid Sterba 				btrfs_set_root_node(&root->root_item,
1451fc7cbcd4SDavid Sterba 						    root->node);
1452978d910dSYan Zheng 			}
145331153d81SYan Zheng 
1454fc7cbcd4SDavid Sterba 			ret2 = btrfs_update_root(trans, fs_info->tree_root,
1455fc7cbcd4SDavid Sterba 						&root->root_key,
1456fc7cbcd4SDavid Sterba 						&root->root_item);
1457fc7cbcd4SDavid Sterba 			if (ret2)
1458fc7cbcd4SDavid Sterba 				return ret2;
1459fc7cbcd4SDavid Sterba 			spin_lock(&fs_info->fs_roots_radix_lock);
1460733e03a0SQu Wenruo 			btrfs_qgroup_free_meta_all_pertrans(root);
14610f7d52f4SChris Mason 		}
1462fc7cbcd4SDavid Sterba 	}
1463fc7cbcd4SDavid Sterba 	spin_unlock(&fs_info->fs_roots_radix_lock);
14644f4317c1SJosef Bacik 	return 0;
14650f7d52f4SChris Mason }
14660f7d52f4SChris Mason 
1467d352ac68SChris Mason /*
1468de78b51aSEric Sandeen  * defrag a given btree.
1469de78b51aSEric Sandeen  * Every leaf in the btree is read and defragged.
1470d352ac68SChris Mason  */
1471de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root)
1472e9d0b13bSChris Mason {
1473e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
1474e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
14758929ecfaSYan, Zheng 	int ret;
1476e9d0b13bSChris Mason 
147727cdeb70SMiao Xie 	if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
1478e9d0b13bSChris Mason 		return 0;
14798929ecfaSYan, Zheng 
14806b80053dSChris Mason 	while (1) {
14818929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
14826819703fSDavid Sterba 		if (IS_ERR(trans)) {
14836819703fSDavid Sterba 			ret = PTR_ERR(trans);
14846819703fSDavid Sterba 			break;
14856819703fSDavid Sterba 		}
14868929ecfaSYan, Zheng 
1487de78b51aSEric Sandeen 		ret = btrfs_defrag_leaves(trans, root);
14888929ecfaSYan, Zheng 
14893a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
14902ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(info);
1491e9d0b13bSChris Mason 		cond_resched();
1492e9d0b13bSChris Mason 
1493ab8d0fc4SJeff Mahoney 		if (btrfs_fs_closing(info) || ret != -EAGAIN)
1494e9d0b13bSChris Mason 			break;
1495210549ebSDavid Sterba 
1496ab8d0fc4SJeff Mahoney 		if (btrfs_defrag_cancelled(info)) {
1497ab8d0fc4SJeff Mahoney 			btrfs_debug(info, "defrag_root cancelled");
1498210549ebSDavid Sterba 			ret = -EAGAIN;
1499210549ebSDavid Sterba 			break;
1500210549ebSDavid Sterba 		}
1501e9d0b13bSChris Mason 	}
150227cdeb70SMiao Xie 	clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
15038929ecfaSYan, Zheng 	return ret;
1504e9d0b13bSChris Mason }
1505e9d0b13bSChris Mason 
1506d352ac68SChris Mason /*
15076426c7adSQu Wenruo  * Do all special snapshot related qgroup dirty hack.
15086426c7adSQu Wenruo  *
15096426c7adSQu Wenruo  * Will do all needed qgroup inherit and dirty hack like switch commit
15106426c7adSQu Wenruo  * roots inside one transaction and write all btree into disk, to make
15116426c7adSQu Wenruo  * qgroup works.
15126426c7adSQu Wenruo  */
15136426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
15146426c7adSQu Wenruo 				   struct btrfs_root *src,
15156426c7adSQu Wenruo 				   struct btrfs_root *parent,
15166426c7adSQu Wenruo 				   struct btrfs_qgroup_inherit *inherit,
15176426c7adSQu Wenruo 				   u64 dst_objectid)
15186426c7adSQu Wenruo {
15196426c7adSQu Wenruo 	struct btrfs_fs_info *fs_info = src->fs_info;
15206426c7adSQu Wenruo 	int ret;
15216426c7adSQu Wenruo 
15226426c7adSQu Wenruo 	/*
15236426c7adSQu Wenruo 	 * Save some performance in the case that qgroups are not
15246426c7adSQu Wenruo 	 * enabled. If this check races with the ioctl, rescan will
15256426c7adSQu Wenruo 	 * kick in anyway.
15266426c7adSQu Wenruo 	 */
15279ea6e2b5SDavid Sterba 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
15286426c7adSQu Wenruo 		return 0;
15296426c7adSQu Wenruo 
15306426c7adSQu Wenruo 	/*
153152042d8eSAndrea Gelmini 	 * Ensure dirty @src will be committed.  Or, after coming
15324d31778aSQu Wenruo 	 * commit_fs_roots() and switch_commit_roots(), any dirty but not
15334d31778aSQu Wenruo 	 * recorded root will never be updated again, causing an outdated root
15344d31778aSQu Wenruo 	 * item.
15354d31778aSQu Wenruo 	 */
15361c442d22SJosef Bacik 	ret = record_root_in_trans(trans, src, 1);
15371c442d22SJosef Bacik 	if (ret)
15381c442d22SJosef Bacik 		return ret;
15394d31778aSQu Wenruo 
15404d31778aSQu Wenruo 	/*
15412a4d84c1SJosef Bacik 	 * btrfs_qgroup_inherit relies on a consistent view of the usage for the
15422a4d84c1SJosef Bacik 	 * src root, so we must run the delayed refs here.
15432a4d84c1SJosef Bacik 	 *
15442a4d84c1SJosef Bacik 	 * However this isn't particularly fool proof, because there's no
15452a4d84c1SJosef Bacik 	 * synchronization keeping us from changing the tree after this point
15462a4d84c1SJosef Bacik 	 * before we do the qgroup_inherit, or even from making changes while
15472a4d84c1SJosef Bacik 	 * we're doing the qgroup_inherit.  But that's a problem for the future,
15482a4d84c1SJosef Bacik 	 * for now flush the delayed refs to narrow the race window where the
15492a4d84c1SJosef Bacik 	 * qgroup counters could end up wrong.
15502a4d84c1SJosef Bacik 	 */
15512a4d84c1SJosef Bacik 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
15522a4d84c1SJosef Bacik 	if (ret) {
15532a4d84c1SJosef Bacik 		btrfs_abort_transaction(trans, ret);
155444365827SNaohiro Aota 		return ret;
15552a4d84c1SJosef Bacik 	}
15562a4d84c1SJosef Bacik 
15577e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
15586426c7adSQu Wenruo 	if (ret)
15596426c7adSQu Wenruo 		goto out;
1560460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
15616426c7adSQu Wenruo 	if (ret < 0)
15626426c7adSQu Wenruo 		goto out;
15636426c7adSQu Wenruo 
15646426c7adSQu Wenruo 	/* Now qgroup are all updated, we can inherit it to new qgroups */
1565a9377422SLu Fengqi 	ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
15666426c7adSQu Wenruo 				   inherit);
15676426c7adSQu Wenruo 	if (ret < 0)
15686426c7adSQu Wenruo 		goto out;
15696426c7adSQu Wenruo 
15706426c7adSQu Wenruo 	/*
15716426c7adSQu Wenruo 	 * Now we do a simplified commit transaction, which will:
15726426c7adSQu Wenruo 	 * 1) commit all subvolume and extent tree
15736426c7adSQu Wenruo 	 *    To ensure all subvolume and extent tree have a valid
15746426c7adSQu Wenruo 	 *    commit_root to accounting later insert_dir_item()
15756426c7adSQu Wenruo 	 * 2) write all btree blocks onto disk
15766426c7adSQu Wenruo 	 *    This is to make sure later btree modification will be cowed
15776426c7adSQu Wenruo 	 *    Or commit_root can be populated and cause wrong qgroup numbers
15786426c7adSQu Wenruo 	 * In this simplified commit, we don't really care about other trees
15796426c7adSQu Wenruo 	 * like chunk and root tree, as they won't affect qgroup.
15806426c7adSQu Wenruo 	 * And we don't write super to avoid half committed status.
15816426c7adSQu Wenruo 	 */
15829386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
15836426c7adSQu Wenruo 	if (ret)
15846426c7adSQu Wenruo 		goto out;
1585889bfa39SJosef Bacik 	switch_commit_roots(trans);
158670458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
15876426c7adSQu Wenruo 	if (ret)
1588f7af3934SDavid Sterba 		btrfs_handle_fs_error(fs_info, ret,
15896426c7adSQu Wenruo 			"Error while writing out transaction for qgroup");
15906426c7adSQu Wenruo 
15916426c7adSQu Wenruo out:
15926426c7adSQu Wenruo 	/*
15936426c7adSQu Wenruo 	 * Force parent root to be updated, as we recorded it before so its
15946426c7adSQu Wenruo 	 * last_trans == cur_transid.
15956426c7adSQu Wenruo 	 * Or it won't be committed again onto disk after later
15966426c7adSQu Wenruo 	 * insert_dir_item()
15976426c7adSQu Wenruo 	 */
15986426c7adSQu Wenruo 	if (!ret)
15991c442d22SJosef Bacik 		ret = record_root_in_trans(trans, parent, 1);
16006426c7adSQu Wenruo 	return ret;
16016426c7adSQu Wenruo }
16026426c7adSQu Wenruo 
16036426c7adSQu Wenruo /*
1604d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
1605aec8030aSMiao Xie  * transaction commit.  This does the actual creation.
1606aec8030aSMiao Xie  *
1607aec8030aSMiao Xie  * Note:
1608aec8030aSMiao Xie  * If the error which may affect the commitment of the current transaction
1609aec8030aSMiao Xie  * happens, we should return the error number. If the error which just affect
1610aec8030aSMiao Xie  * the creation of the pending snapshots, just return 0.
1611d352ac68SChris Mason  */
161280b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
16133063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
16143063d29fSChris Mason {
161508d50ca3SNikolay Borisov 
161608d50ca3SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
16173063d29fSChris Mason 	struct btrfs_key key;
161880b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
16193063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
16203063d29fSChris Mason 	struct btrfs_root *root = pending->root;
16216bdb72deSSage Weil 	struct btrfs_root *parent_root;
162298c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
1623ab3c5c18SSweet Tea Dorminy 	struct inode *parent_inode = pending->dir;
162442874b3dSMiao Xie 	struct btrfs_path *path;
162542874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
16263063d29fSChris Mason 	struct extent_buffer *tmp;
1627925baeddSChris Mason 	struct extent_buffer *old;
162895582b00SDeepa Dinamani 	struct timespec64 cur_time;
1629aec8030aSMiao Xie 	int ret = 0;
1630d68fc57bSYan, Zheng 	u64 to_reserve = 0;
16316bdb72deSSage Weil 	u64 index = 0;
1632a22285a6SYan, Zheng 	u64 objectid;
1633b83cc969SLi Zefan 	u64 root_flags;
1634ab3c5c18SSweet Tea Dorminy 	unsigned int nofs_flags;
1635ab3c5c18SSweet Tea Dorminy 	struct fscrypt_name fname;
16363063d29fSChris Mason 
16378546b570SDavid Sterba 	ASSERT(pending->path);
16388546b570SDavid Sterba 	path = pending->path;
163942874b3dSMiao Xie 
1640b0c0ea63SDavid Sterba 	ASSERT(pending->root_item);
1641b0c0ea63SDavid Sterba 	new_root_item = pending->root_item;
1642a22285a6SYan, Zheng 
1643ab3c5c18SSweet Tea Dorminy 	/*
1644ab3c5c18SSweet Tea Dorminy 	 * We're inside a transaction and must make sure that any potential
1645ab3c5c18SSweet Tea Dorminy 	 * allocations with GFP_KERNEL in fscrypt won't recurse back to
1646ab3c5c18SSweet Tea Dorminy 	 * filesystem.
1647ab3c5c18SSweet Tea Dorminy 	 */
1648ab3c5c18SSweet Tea Dorminy 	nofs_flags = memalloc_nofs_save();
1649ab3c5c18SSweet Tea Dorminy 	pending->error = fscrypt_setup_filename(parent_inode,
1650ab3c5c18SSweet Tea Dorminy 						&pending->dentry->d_name, 0,
1651ab3c5c18SSweet Tea Dorminy 						&fname);
1652ab3c5c18SSweet Tea Dorminy 	memalloc_nofs_restore(nofs_flags);
1653ab3c5c18SSweet Tea Dorminy 	if (pending->error)
1654ab3c5c18SSweet Tea Dorminy 		goto free_pending;
1655ab3c5c18SSweet Tea Dorminy 
1656543068a2SNikolay Borisov 	pending->error = btrfs_get_free_objectid(tree_root, &objectid);
1657aec8030aSMiao Xie 	if (pending->error)
1658ab3c5c18SSweet Tea Dorminy 		goto free_fname;
16593063d29fSChris Mason 
1660d6726335SQu Wenruo 	/*
1661d6726335SQu Wenruo 	 * Make qgroup to skip current new snapshot's qgroupid, as it is
1662d6726335SQu Wenruo 	 * accounted by later btrfs_qgroup_inherit().
1663d6726335SQu Wenruo 	 */
1664d6726335SQu Wenruo 	btrfs_set_skip_qgroup(trans, objectid);
1665d6726335SQu Wenruo 
1666147d256eSZhaolei 	btrfs_reloc_pre_snapshot(pending, &to_reserve);
1667d68fc57bSYan, Zheng 
1668d68fc57bSYan, Zheng 	if (to_reserve > 0) {
16699270501cSJosef Bacik 		pending->error = btrfs_block_rsv_add(fs_info,
1670aec8030aSMiao Xie 						     &pending->block_rsv,
167108e007d2SMiao Xie 						     to_reserve,
167208e007d2SMiao Xie 						     BTRFS_RESERVE_NO_FLUSH);
1673aec8030aSMiao Xie 		if (pending->error)
1674d6726335SQu Wenruo 			goto clear_skip_qgroup;
1675d68fc57bSYan, Zheng 	}
1676d68fc57bSYan, Zheng 
16773063d29fSChris Mason 	key.objectid = objectid;
1678a22285a6SYan, Zheng 	key.offset = (u64)-1;
1679a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
16803063d29fSChris Mason 
16816fa9700eSMiao Xie 	rsv = trans->block_rsv;
1682a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
16832382c5ccSLiu Bo 	trans->bytes_reserved = trans->block_rsv->reserved;
16840b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
168588d3a5aaSJosef Bacik 				      trans->transid,
168688d3a5aaSJosef Bacik 				      trans->bytes_reserved, 1);
1687a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
1688f0118cb6SJosef Bacik 	ret = record_root_in_trans(trans, parent_root, 0);
1689f0118cb6SJosef Bacik 	if (ret)
1690f0118cb6SJosef Bacik 		goto fail;
1691c2050a45SDeepa Dinamani 	cur_time = current_time(parent_inode);
169204b285f3SDeepa Dinamani 
16936bdb72deSSage Weil 	/*
16946bdb72deSSage Weil 	 * insert the directory item
16956bdb72deSSage Weil 	 */
1696877574e2SNikolay Borisov 	ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
169749b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
169842874b3dSMiao Xie 
169942874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
170042874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
17014a0cc7caSNikolay Borisov 					 btrfs_ino(BTRFS_I(parent_inode)),
17026db75318SSweet Tea Dorminy 					 &fname.disk_name, 0);
170342874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1704fe66a05aSChris Mason 		pending->error = -EEXIST;
1705aec8030aSMiao Xie 		goto dir_item_existed;
170642874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
170742874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
170866642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17098732d44fSMiao Xie 		goto fail;
171079787eaaSJeff Mahoney 	}
171142874b3dSMiao Xie 	btrfs_release_path(path);
17126bdb72deSSage Weil 
1713e999376fSChris Mason 	/*
1714e999376fSChris Mason 	 * pull in the delayed directory update
1715e999376fSChris Mason 	 * and the delayed inode item
1716e999376fSChris Mason 	 * otherwise we corrupt the FS during
1717e999376fSChris Mason 	 * snapshot
1718e999376fSChris Mason 	 */
1719e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
17208732d44fSMiao Xie 	if (ret) {	/* Transaction aborted */
172166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17228732d44fSMiao Xie 		goto fail;
17238732d44fSMiao Xie 	}
1724e999376fSChris Mason 
1725f0118cb6SJosef Bacik 	ret = record_root_in_trans(trans, root, 0);
1726f0118cb6SJosef Bacik 	if (ret) {
1727f0118cb6SJosef Bacik 		btrfs_abort_transaction(trans, ret);
1728f0118cb6SJosef Bacik 		goto fail;
1729f0118cb6SJosef Bacik 	}
17306bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
17316bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
173208fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
17336bdb72deSSage Weil 
1734b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1735b83cc969SLi Zefan 	if (pending->readonly)
1736b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1737b83cc969SLi Zefan 	else
1738b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1739b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1740b83cc969SLi Zefan 
17418ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
17428ea05e3aSAlexander Block 			trans->transid);
1743807fc790SAndy Shevchenko 	generate_random_guid(new_root_item->uuid);
17448ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
17458ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
174670023da2SStefan Behrens 	if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
174770023da2SStefan Behrens 		memset(new_root_item->received_uuid, 0,
174870023da2SStefan Behrens 		       sizeof(new_root_item->received_uuid));
17498ea05e3aSAlexander Block 		memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
17508ea05e3aSAlexander Block 		memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
17518ea05e3aSAlexander Block 		btrfs_set_root_stransid(new_root_item, 0);
17528ea05e3aSAlexander Block 		btrfs_set_root_rtransid(new_root_item, 0);
175370023da2SStefan Behrens 	}
17543cae210fSQu Wenruo 	btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
17553cae210fSQu Wenruo 	btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
175670023da2SStefan Behrens 	btrfs_set_root_otransid(new_root_item, trans->transid);
17578ea05e3aSAlexander Block 
1758925baeddSChris Mason 	old = btrfs_lock_root_node(root);
17599631e4ccSJosef Bacik 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old,
17609631e4ccSJosef Bacik 			      BTRFS_NESTING_COW);
176179787eaaSJeff Mahoney 	if (ret) {
176279787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
176379787eaaSJeff Mahoney 		free_extent_buffer(old);
176466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17658732d44fSMiao Xie 		goto fail;
176679787eaaSJeff Mahoney 	}
176749b25e05SJeff Mahoney 
176849b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
176979787eaaSJeff Mahoney 	/* clean up in any case */
1770925baeddSChris Mason 	btrfs_tree_unlock(old);
1771925baeddSChris Mason 	free_extent_buffer(old);
17728732d44fSMiao Xie 	if (ret) {
177366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17748732d44fSMiao Xie 		goto fail;
17758732d44fSMiao Xie 	}
1776f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
177727cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1778f1ebcc74SLiu Bo 	smp_wmb();
1779f1ebcc74SLiu Bo 
17805d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1781a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1782a22285a6SYan, Zheng 	key.offset = trans->transid;
1783a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1784925baeddSChris Mason 	btrfs_tree_unlock(tmp);
17853063d29fSChris Mason 	free_extent_buffer(tmp);
17868732d44fSMiao Xie 	if (ret) {
178766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17888732d44fSMiao Xie 		goto fail;
17898732d44fSMiao Xie 	}
17900660b5afSChris Mason 
1791a22285a6SYan, Zheng 	/*
1792a22285a6SYan, Zheng 	 * insert root back/forward references
1793a22285a6SYan, Zheng 	 */
17946025c19fSLu Fengqi 	ret = btrfs_add_root_ref(trans, objectid,
1795a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
17964a0cc7caSNikolay Borisov 				 btrfs_ino(BTRFS_I(parent_inode)), index,
17976db75318SSweet Tea Dorminy 				 &fname.disk_name);
17988732d44fSMiao Xie 	if (ret) {
179966642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
18008732d44fSMiao Xie 		goto fail;
18018732d44fSMiao Xie 	}
1802a22285a6SYan, Zheng 
1803a22285a6SYan, Zheng 	key.offset = (u64)-1;
18042dfb1e43SQu Wenruo 	pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev);
180579787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
180679787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
18072d892ccdSFilipe Manana 		pending->snap = NULL;
180866642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
18098732d44fSMiao Xie 		goto fail;
181079787eaaSJeff Mahoney 	}
1811d68fc57bSYan, Zheng 
181249b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
18138732d44fSMiao Xie 	if (ret) {
181466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
18158732d44fSMiao Xie 		goto fail;
18168732d44fSMiao Xie 	}
1817361048f5SMiao Xie 
18186426c7adSQu Wenruo 	/*
18196426c7adSQu Wenruo 	 * Do special qgroup accounting for snapshot, as we do some qgroup
18206426c7adSQu Wenruo 	 * snapshot hack to do fast snapshot.
18216426c7adSQu Wenruo 	 * To co-operate with that hack, we do hack again.
18226426c7adSQu Wenruo 	 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
18236426c7adSQu Wenruo 	 */
18246426c7adSQu Wenruo 	ret = qgroup_account_snapshot(trans, root, parent_root,
18256426c7adSQu Wenruo 				      pending->inherit, objectid);
18266426c7adSQu Wenruo 	if (ret < 0)
18276426c7adSQu Wenruo 		goto fail;
18286426c7adSQu Wenruo 
18296db75318SSweet Tea Dorminy 	ret = btrfs_insert_dir_item(trans, &fname.disk_name,
18306db75318SSweet Tea Dorminy 				    BTRFS_I(parent_inode), &key, BTRFS_FT_DIR,
18316db75318SSweet Tea Dorminy 				    index);
183242874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
18339c52057cSChris Mason 	BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
18348732d44fSMiao Xie 	if (ret) {
183566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
18368732d44fSMiao Xie 		goto fail;
18378732d44fSMiao Xie 	}
183842874b3dSMiao Xie 
18396ef06d27SNikolay Borisov 	btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
18406db75318SSweet Tea Dorminy 						  fname.disk_name.len * 2);
1841c1867eb3SDavid Sterba 	parent_inode->i_mtime = current_time(parent_inode);
1842c1867eb3SDavid Sterba 	parent_inode->i_ctime = parent_inode->i_mtime;
1843729f7961SNikolay Borisov 	ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode));
1844dd5f9615SStefan Behrens 	if (ret) {
184566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1846dd5f9615SStefan Behrens 		goto fail;
1847dd5f9615SStefan Behrens 	}
1848807fc790SAndy Shevchenko 	ret = btrfs_uuid_tree_add(trans, new_root_item->uuid,
1849807fc790SAndy Shevchenko 				  BTRFS_UUID_KEY_SUBVOL,
1850cdb345a8SLu Fengqi 				  objectid);
1851dd5f9615SStefan Behrens 	if (ret) {
185266642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1853dd5f9615SStefan Behrens 		goto fail;
1854dd5f9615SStefan Behrens 	}
1855dd5f9615SStefan Behrens 	if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1856cdb345a8SLu Fengqi 		ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
1857dd5f9615SStefan Behrens 					  BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1858dd5f9615SStefan Behrens 					  objectid);
1859dd5f9615SStefan Behrens 		if (ret && ret != -EEXIST) {
186066642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
1861dd5f9615SStefan Behrens 			goto fail;
1862dd5f9615SStefan Behrens 		}
1863dd5f9615SStefan Behrens 	}
1864d6726335SQu Wenruo 
18653063d29fSChris Mason fail:
1866aec8030aSMiao Xie 	pending->error = ret;
1867aec8030aSMiao Xie dir_item_existed:
186898c9942aSLiu Bo 	trans->block_rsv = rsv;
18692382c5ccSLiu Bo 	trans->bytes_reserved = 0;
1870d6726335SQu Wenruo clear_skip_qgroup:
1871d6726335SQu Wenruo 	btrfs_clear_skip_qgroup(trans);
1872ab3c5c18SSweet Tea Dorminy free_fname:
1873ab3c5c18SSweet Tea Dorminy 	fscrypt_free_filename(&fname);
1874ab3c5c18SSweet Tea Dorminy free_pending:
18756fa9700eSMiao Xie 	kfree(new_root_item);
1876b0c0ea63SDavid Sterba 	pending->root_item = NULL;
187742874b3dSMiao Xie 	btrfs_free_path(path);
18788546b570SDavid Sterba 	pending->path = NULL;
18798546b570SDavid Sterba 
188049b25e05SJeff Mahoney 	return ret;
18813063d29fSChris Mason }
18823063d29fSChris Mason 
1883d352ac68SChris Mason /*
1884d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1885d352ac68SChris Mason  */
188608d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
18873063d29fSChris Mason {
1888aec8030aSMiao Xie 	struct btrfs_pending_snapshot *pending, *next;
18893063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
1890aec8030aSMiao Xie 	int ret = 0;
18913de4586cSChris Mason 
1892aec8030aSMiao Xie 	list_for_each_entry_safe(pending, next, head, list) {
1893aec8030aSMiao Xie 		list_del(&pending->list);
189408d50ca3SNikolay Borisov 		ret = create_pending_snapshot(trans, pending);
1895aec8030aSMiao Xie 		if (ret)
1896aec8030aSMiao Xie 			break;
1897aec8030aSMiao Xie 	}
1898aec8030aSMiao Xie 	return ret;
18993de4586cSChris Mason }
19003de4586cSChris Mason 
19012ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info)
19025d4f98a2SYan Zheng {
19035d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
19045d4f98a2SYan Zheng 	struct btrfs_super_block *super;
19055d4f98a2SYan Zheng 
19060b246afaSJeff Mahoney 	super = fs_info->super_copy;
19075d4f98a2SYan Zheng 
19080b246afaSJeff Mahoney 	root_item = &fs_info->chunk_root->root_item;
1909093e037cSDavid Sterba 	super->chunk_root = root_item->bytenr;
1910093e037cSDavid Sterba 	super->chunk_root_generation = root_item->generation;
1911093e037cSDavid Sterba 	super->chunk_root_level = root_item->level;
19125d4f98a2SYan Zheng 
19130b246afaSJeff Mahoney 	root_item = &fs_info->tree_root->root_item;
1914093e037cSDavid Sterba 	super->root = root_item->bytenr;
1915093e037cSDavid Sterba 	super->generation = root_item->generation;
1916093e037cSDavid Sterba 	super->root_level = root_item->level;
19170b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
1918093e037cSDavid Sterba 		super->cache_generation = root_item->generation;
191994846229SBoris Burkov 	else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags))
192094846229SBoris Burkov 		super->cache_generation = 0;
19210b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
1922093e037cSDavid Sterba 		super->uuid_tree_generation = root_item->generation;
19235d4f98a2SYan Zheng }
19245d4f98a2SYan Zheng 
1925f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1926f36f3042SChris Mason {
19274a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
1928f36f3042SChris Mason 	int ret = 0;
19294a9d8bdeSMiao Xie 
1930a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
19314a9d8bdeSMiao Xie 	trans = info->running_transaction;
19324a9d8bdeSMiao Xie 	if (trans)
19334a9d8bdeSMiao Xie 		ret = (trans->state >= TRANS_STATE_COMMIT_START);
1934a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1935f36f3042SChris Mason 	return ret;
1936f36f3042SChris Mason }
1937f36f3042SChris Mason 
19388929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
19398929ecfaSYan, Zheng {
19404a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
19418929ecfaSYan, Zheng 	int ret = 0;
19424a9d8bdeSMiao Xie 
1943a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
19444a9d8bdeSMiao Xie 	trans = info->running_transaction;
19454a9d8bdeSMiao Xie 	if (trans)
19464a9d8bdeSMiao Xie 		ret = is_transaction_blocked(trans);
1947a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
19488929ecfaSYan, Zheng 	return ret;
19498929ecfaSYan, Zheng }
19508929ecfaSYan, Zheng 
1951fdfbf020SJosef Bacik void btrfs_commit_transaction_async(struct btrfs_trans_handle *trans)
1952bb9c12c9SSage Weil {
19533a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
1954bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1955bb9c12c9SSage Weil 
1956fdfbf020SJosef Bacik 	/* Kick the transaction kthread. */
1957fdfbf020SJosef Bacik 	set_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags);
1958fdfbf020SJosef Bacik 	wake_up_process(fs_info->transaction_kthread);
1959bb9c12c9SSage Weil 
1960bb9c12c9SSage Weil 	/* take transaction reference */
1961bb9c12c9SSage Weil 	cur_trans = trans->transaction;
19629b64f57dSElena Reshetova 	refcount_inc(&cur_trans->use_count);
1963bb9c12c9SSage Weil 
19643a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
19656fc4e354SSage Weil 
19666fc4e354SSage Weil 	/*
1967ae5d29d4SDavid Sterba 	 * Wait for the current transaction commit to start and block
1968ae5d29d4SDavid Sterba 	 * subsequent transaction joins
1969ae5d29d4SDavid Sterba 	 */
19703e738c53SIoannis Angelakopoulos 	btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
1971ae5d29d4SDavid Sterba 	wait_event(fs_info->transaction_blocked_wait,
1972ae5d29d4SDavid Sterba 		   cur_trans->state >= TRANS_STATE_COMMIT_START ||
1973ae5d29d4SDavid Sterba 		   TRANS_ABORTED(cur_trans));
1974724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1975bb9c12c9SSage Weil }
1976bb9c12c9SSage Weil 
197797cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
197849b25e05SJeff Mahoney {
197997cb39bbSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
198049b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
198149b25e05SJeff Mahoney 
1982b50fff81SDavid Sterba 	WARN_ON(refcount_read(&trans->use_count) > 1);
198349b25e05SJeff Mahoney 
198466642832SJeff Mahoney 	btrfs_abort_transaction(trans, err);
19857b8b92afSJosef Bacik 
19860b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
198766b6135bSLiu Bo 
198825d8c284SMiao Xie 	/*
198925d8c284SMiao Xie 	 * If the transaction is removed from the list, it means this
199025d8c284SMiao Xie 	 * transaction has been committed successfully, so it is impossible
199125d8c284SMiao Xie 	 * to call the cleanup function.
199225d8c284SMiao Xie 	 */
199325d8c284SMiao Xie 	BUG_ON(list_empty(&cur_trans->list));
199466b6135bSLiu Bo 
19950b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction) {
19964a9d8bdeSMiao Xie 		cur_trans->state = TRANS_STATE_COMMIT_DOING;
19970b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
1998e1489b4fSIoannis Angelakopoulos 
1999e1489b4fSIoannis Angelakopoulos 		/*
2000e1489b4fSIoannis Angelakopoulos 		 * The thread has already released the lockdep map as reader
2001e1489b4fSIoannis Angelakopoulos 		 * already in btrfs_commit_transaction().
2002e1489b4fSIoannis Angelakopoulos 		 */
2003e1489b4fSIoannis Angelakopoulos 		btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers);
2004f094ac32SLiu Bo 		wait_event(cur_trans->writer_wait,
2005f094ac32SLiu Bo 			   atomic_read(&cur_trans->num_writers) == 1);
2006f094ac32SLiu Bo 
20070b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
2008d7096fc3SJosef Bacik 	}
2009061dde82SFilipe Manana 
2010061dde82SFilipe Manana 	/*
2011061dde82SFilipe Manana 	 * Now that we know no one else is still using the transaction we can
2012061dde82SFilipe Manana 	 * remove the transaction from the list of transactions. This avoids
2013061dde82SFilipe Manana 	 * the transaction kthread from cleaning up the transaction while some
2014061dde82SFilipe Manana 	 * other task is still using it, which could result in a use-after-free
2015061dde82SFilipe Manana 	 * on things like log trees, as it forces the transaction kthread to
2016061dde82SFilipe Manana 	 * wait for this transaction to be cleaned up by us.
2017061dde82SFilipe Manana 	 */
2018061dde82SFilipe Manana 	list_del_init(&cur_trans->list);
2019061dde82SFilipe Manana 
20200b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
202149b25e05SJeff Mahoney 
20222ff7e61eSJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, fs_info);
202349b25e05SJeff Mahoney 
20240b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
20250b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction)
20260b246afaSJeff Mahoney 		fs_info->running_transaction = NULL;
20270b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
20284a9d8bdeSMiao Xie 
2029e0228285SJosef Bacik 	if (trans->type & __TRANS_FREEZABLE)
20300b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2031724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2032724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
203349b25e05SJeff Mahoney 
20342e4e97abSJosef Bacik 	trace_btrfs_transaction_commit(fs_info);
203549b25e05SJeff Mahoney 
203649b25e05SJeff Mahoney 	if (current->journal_info == trans)
203749b25e05SJeff Mahoney 		current->journal_info = NULL;
20380b246afaSJeff Mahoney 	btrfs_scrub_cancel(fs_info);
203949b25e05SJeff Mahoney 
204049b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
204149b25e05SJeff Mahoney }
204249b25e05SJeff Mahoney 
2043c7cc64a9SDavid Sterba /*
2044c7cc64a9SDavid Sterba  * Release reserved delayed ref space of all pending block groups of the
2045c7cc64a9SDavid Sterba  * transaction and remove them from the list
2046c7cc64a9SDavid Sterba  */
2047c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
2048c7cc64a9SDavid Sterba {
2049c7cc64a9SDavid Sterba        struct btrfs_fs_info *fs_info = trans->fs_info;
205032da5386SDavid Sterba        struct btrfs_block_group *block_group, *tmp;
2051c7cc64a9SDavid Sterba 
2052c7cc64a9SDavid Sterba        list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
2053c7cc64a9SDavid Sterba                btrfs_delayed_refs_rsv_release(fs_info, 1);
2054c7cc64a9SDavid Sterba                list_del_init(&block_group->bg_list);
2055c7cc64a9SDavid Sterba        }
2056c7cc64a9SDavid Sterba }
2057c7cc64a9SDavid Sterba 
205888090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
205982436617SMiao Xie {
2060ce8ea7ccSJosef Bacik 	/*
2061a0f0cf83SFilipe Manana 	 * We use try_to_writeback_inodes_sb() here because if we used
2062ce8ea7ccSJosef Bacik 	 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
2063ce8ea7ccSJosef Bacik 	 * Currently are holding the fs freeze lock, if we do an async flush
2064ce8ea7ccSJosef Bacik 	 * we'll do btrfs_join_transaction() and deadlock because we need to
2065ce8ea7ccSJosef Bacik 	 * wait for the fs freeze lock.  Using the direct flushing we benefit
2066ce8ea7ccSJosef Bacik 	 * from already being in a transaction and our join_transaction doesn't
2067ce8ea7ccSJosef Bacik 	 * have to re-take the fs freeze lock.
2068a0f0cf83SFilipe Manana 	 *
2069a0f0cf83SFilipe Manana 	 * Note that try_to_writeback_inodes_sb() will only trigger writeback
2070a0f0cf83SFilipe Manana 	 * if it can read lock sb->s_umount. It will always be able to lock it,
2071a0f0cf83SFilipe Manana 	 * except when the filesystem is being unmounted or being frozen, but in
2072a0f0cf83SFilipe Manana 	 * those cases sync_filesystem() is called, which results in calling
2073a0f0cf83SFilipe Manana 	 * writeback_inodes_sb() while holding a write lock on sb->s_umount.
2074a0f0cf83SFilipe Manana 	 * Note that we don't call writeback_inodes_sb() directly, because it
2075a0f0cf83SFilipe Manana 	 * will emit a warning if sb->s_umount is not locked.
2076ce8ea7ccSJosef Bacik 	 */
207788090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
2078a0f0cf83SFilipe Manana 		try_to_writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
207982436617SMiao Xie 	return 0;
208082436617SMiao Xie }
208182436617SMiao Xie 
208288090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
208382436617SMiao Xie {
208488090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
20856374e57aSChris Mason 		btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
208682436617SMiao Xie }
208782436617SMiao Xie 
208828b21c55SFilipe Manana /*
208928b21c55SFilipe Manana  * Add a pending snapshot associated with the given transaction handle to the
209028b21c55SFilipe Manana  * respective handle. This must be called after the transaction commit started
209128b21c55SFilipe Manana  * and while holding fs_info->trans_lock.
209228b21c55SFilipe Manana  * This serves to guarantee a caller of btrfs_commit_transaction() that it can
209328b21c55SFilipe Manana  * safely free the pending snapshot pointer in case btrfs_commit_transaction()
209428b21c55SFilipe Manana  * returns an error.
209528b21c55SFilipe Manana  */
209628b21c55SFilipe Manana static void add_pending_snapshot(struct btrfs_trans_handle *trans)
209728b21c55SFilipe Manana {
209828b21c55SFilipe Manana 	struct btrfs_transaction *cur_trans = trans->transaction;
209928b21c55SFilipe Manana 
210028b21c55SFilipe Manana 	if (!trans->pending_snapshot)
210128b21c55SFilipe Manana 		return;
210228b21c55SFilipe Manana 
210328b21c55SFilipe Manana 	lockdep_assert_held(&trans->fs_info->trans_lock);
210428b21c55SFilipe Manana 	ASSERT(cur_trans->state >= TRANS_STATE_COMMIT_START);
210528b21c55SFilipe Manana 
210628b21c55SFilipe Manana 	list_add(&trans->pending_snapshot->list, &cur_trans->pending_snapshots);
210728b21c55SFilipe Manana }
210828b21c55SFilipe Manana 
2109e55958c8SIoannis Angelakopoulos static void update_commit_stats(struct btrfs_fs_info *fs_info, ktime_t interval)
2110e55958c8SIoannis Angelakopoulos {
2111e55958c8SIoannis Angelakopoulos 	fs_info->commit_stats.commit_count++;
2112e55958c8SIoannis Angelakopoulos 	fs_info->commit_stats.last_commit_dur = interval;
2113e55958c8SIoannis Angelakopoulos 	fs_info->commit_stats.max_commit_dur =
2114e55958c8SIoannis Angelakopoulos 			max_t(u64, fs_info->commit_stats.max_commit_dur, interval);
2115e55958c8SIoannis Angelakopoulos 	fs_info->commit_stats.total_commit_dur += interval;
2116e55958c8SIoannis Angelakopoulos }
2117e55958c8SIoannis Angelakopoulos 
21183a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
211979154b1bSChris Mason {
21203a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
212149b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
21228fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
212325287e0aSMiao Xie 	int ret;
2124e55958c8SIoannis Angelakopoulos 	ktime_t start_time;
2125e55958c8SIoannis Angelakopoulos 	ktime_t interval;
212679154b1bSChris Mason 
212735b814f3SNikolay Borisov 	ASSERT(refcount_read(&trans->use_count) == 1);
21283e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
212935b814f3SNikolay Borisov 
2130c52cc7b7SJosef Bacik 	clear_bit(BTRFS_FS_NEED_TRANS_COMMIT, &fs_info->flags);
2131c52cc7b7SJosef Bacik 
21328d25a086SMiao Xie 	/* Stop the commit early if ->aborted is set */
2133bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
213425287e0aSMiao Xie 		ret = cur_trans->aborted;
21353e738c53SIoannis Angelakopoulos 		goto lockdep_trans_commit_start_release;
213625287e0aSMiao Xie 	}
213749b25e05SJeff Mahoney 
2138f45c752bSJosef Bacik 	btrfs_trans_release_metadata(trans);
2139f45c752bSJosef Bacik 	trans->block_rsv = NULL;
2140f45c752bSJosef Bacik 
2141e19eb11fSJosef Bacik 	/*
2142e19eb11fSJosef Bacik 	 * We only want one transaction commit doing the flushing so we do not
2143e19eb11fSJosef Bacik 	 * waste a bunch of time on lock contention on the extent root node.
2144e19eb11fSJosef Bacik 	 */
2145e19eb11fSJosef Bacik 	if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING,
2146e19eb11fSJosef Bacik 			      &cur_trans->delayed_refs.flags)) {
2147e19eb11fSJosef Bacik 		/*
2148e19eb11fSJosef Bacik 		 * Make a pass through all the delayed refs we have so far.
2149e19eb11fSJosef Bacik 		 * Any running threads may add more while we are here.
215056bec294SChris Mason 		 */
2151c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, 0);
21523e738c53SIoannis Angelakopoulos 		if (ret)
21533e738c53SIoannis Angelakopoulos 			goto lockdep_trans_commit_start_release;
2154e19eb11fSJosef Bacik 	}
215556bec294SChris Mason 
21566c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
2157ea658badSJosef Bacik 
21583204d33cSJosef Bacik 	if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
21591bbc621eSChris Mason 		int run_it = 0;
21601bbc621eSChris Mason 
21611bbc621eSChris Mason 		/* this mutex is also taken before trying to set
21621bbc621eSChris Mason 		 * block groups readonly.  We need to make sure
21631bbc621eSChris Mason 		 * that nobody has set a block group readonly
21641bbc621eSChris Mason 		 * after a extents from that block group have been
21651bbc621eSChris Mason 		 * allocated for cache files.  btrfs_set_block_group_ro
21661bbc621eSChris Mason 		 * will wait for the transaction to commit if it
21673204d33cSJosef Bacik 		 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
21681bbc621eSChris Mason 		 *
21693204d33cSJosef Bacik 		 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
21703204d33cSJosef Bacik 		 * only one process starts all the block group IO.  It wouldn't
21711bbc621eSChris Mason 		 * hurt to have more than one go through, but there's no
21721bbc621eSChris Mason 		 * real advantage to it either.
21731bbc621eSChris Mason 		 */
21740b246afaSJeff Mahoney 		mutex_lock(&fs_info->ro_block_group_mutex);
21753204d33cSJosef Bacik 		if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
21763204d33cSJosef Bacik 				      &cur_trans->flags))
21771bbc621eSChris Mason 			run_it = 1;
21780b246afaSJeff Mahoney 		mutex_unlock(&fs_info->ro_block_group_mutex);
21791bbc621eSChris Mason 
2180f9cacae3SNikolay Borisov 		if (run_it) {
218121217054SNikolay Borisov 			ret = btrfs_start_dirty_block_groups(trans);
21823e738c53SIoannis Angelakopoulos 			if (ret)
21833e738c53SIoannis Angelakopoulos 				goto lockdep_trans_commit_start_release;
2184f9cacae3SNikolay Borisov 		}
2185f9cacae3SNikolay Borisov 	}
21861bbc621eSChris Mason 
21870b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
21884a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
2189d0c2f4faSFilipe Manana 		enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2190d0c2f4faSFilipe Manana 
219128b21c55SFilipe Manana 		add_pending_snapshot(trans);
219228b21c55SFilipe Manana 
21930b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
21949b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
2195ccd467d6SChris Mason 
2196d0c2f4faSFilipe Manana 		if (trans->in_fsync)
2197d0c2f4faSFilipe Manana 			want_state = TRANS_STATE_SUPER_COMMITTED;
21983e738c53SIoannis Angelakopoulos 
21993e738c53SIoannis Angelakopoulos 		btrfs_trans_state_lockdep_release(fs_info,
22003e738c53SIoannis Angelakopoulos 						  BTRFS_LOCKDEP_TRANS_COMMIT_START);
2201d0c2f4faSFilipe Manana 		ret = btrfs_end_transaction(trans);
2202d0c2f4faSFilipe Manana 		wait_for_commit(cur_trans, want_state);
220315ee9bc7SJosef Bacik 
2204bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans))
2205b4924a0fSLiu Bo 			ret = cur_trans->aborted;
2206b4924a0fSLiu Bo 
2207724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
220815ee9bc7SJosef Bacik 
220949b25e05SJeff Mahoney 		return ret;
221079154b1bSChris Mason 	}
22114313b399SChris Mason 
22124a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
22130b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
22143e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
2215bb9c12c9SSage Weil 
22160b246afaSJeff Mahoney 	if (cur_trans->list.prev != &fs_info->trans_list) {
2217d0c2f4faSFilipe Manana 		enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2218d0c2f4faSFilipe Manana 
2219d0c2f4faSFilipe Manana 		if (trans->in_fsync)
2220d0c2f4faSFilipe Manana 			want_state = TRANS_STATE_SUPER_COMMITTED;
2221d0c2f4faSFilipe Manana 
2222ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
2223ccd467d6SChris Mason 					struct btrfs_transaction, list);
2224d0c2f4faSFilipe Manana 		if (prev_trans->state < want_state) {
22259b64f57dSElena Reshetova 			refcount_inc(&prev_trans->use_count);
22260b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2227ccd467d6SChris Mason 
2228d0c2f4faSFilipe Manana 			wait_for_commit(prev_trans, want_state);
2229d0c2f4faSFilipe Manana 
2230bf31f87fSDavid Sterba 			ret = READ_ONCE(prev_trans->aborted);
2231ccd467d6SChris Mason 
2232724e2315SJosef Bacik 			btrfs_put_transaction(prev_trans);
22331f9b8c8fSFilipe Manana 			if (ret)
2234e1489b4fSIoannis Angelakopoulos 				goto lockdep_release;
2235a4abeea4SJosef Bacik 		} else {
22360b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2237ccd467d6SChris Mason 		}
2238a4abeea4SJosef Bacik 	} else {
22390b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
2240cb2d3dadSFilipe Manana 		/*
2241cb2d3dadSFilipe Manana 		 * The previous transaction was aborted and was already removed
2242cb2d3dadSFilipe Manana 		 * from the list of transactions at fs_info->trans_list. So we
2243cb2d3dadSFilipe Manana 		 * abort to prevent writing a new superblock that reflects a
2244cb2d3dadSFilipe Manana 		 * corrupt state (pointing to trees with unwritten nodes/leafs).
2245cb2d3dadSFilipe Manana 		 */
224684961539SJosef Bacik 		if (BTRFS_FS_ERROR(fs_info)) {
2247cb2d3dadSFilipe Manana 			ret = -EROFS;
2248e1489b4fSIoannis Angelakopoulos 			goto lockdep_release;
2249cb2d3dadSFilipe Manana 		}
2250ccd467d6SChris Mason 	}
225115ee9bc7SJosef Bacik 
2252e55958c8SIoannis Angelakopoulos 	/*
2253e55958c8SIoannis Angelakopoulos 	 * Get the time spent on the work done by the commit thread and not
2254e55958c8SIoannis Angelakopoulos 	 * the time spent waiting on a previous commit
2255e55958c8SIoannis Angelakopoulos 	 */
2256e55958c8SIoannis Angelakopoulos 	start_time = ktime_get_ns();
2257e55958c8SIoannis Angelakopoulos 
22580860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
22590860adfdSMiao Xie 
226088090ad3SFilipe Manana 	ret = btrfs_start_delalloc_flush(fs_info);
226182436617SMiao Xie 	if (ret)
2262e1489b4fSIoannis Angelakopoulos 		goto lockdep_release;
226382436617SMiao Xie 
2264e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
226549b25e05SJeff Mahoney 	if (ret)
2266e1489b4fSIoannis Angelakopoulos 		goto lockdep_release;
226716cdcec7SMiao Xie 
22685a9ba670SIoannis Angelakopoulos 	/*
22695a9ba670SIoannis Angelakopoulos 	 * The thread has started/joined the transaction thus it holds the
22705a9ba670SIoannis Angelakopoulos 	 * lockdep map as a reader. It has to release it before acquiring the
22715a9ba670SIoannis Angelakopoulos 	 * lockdep map as a writer.
22725a9ba670SIoannis Angelakopoulos 	 */
22735a9ba670SIoannis Angelakopoulos 	btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
22745a9ba670SIoannis Angelakopoulos 	btrfs_might_wait_for_event(fs_info, btrfs_trans_num_extwriters);
2275581227d0SMiao Xie 	wait_event(cur_trans->writer_wait,
2276581227d0SMiao Xie 		   extwriter_counter_read(cur_trans) == 0);
2277ed3b3d31SChris Mason 
2278581227d0SMiao Xie 	/* some pending stuffs might be added after the previous flush. */
2279e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
2280e1489b4fSIoannis Angelakopoulos 	if (ret) {
2281e1489b4fSIoannis Angelakopoulos 		btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
2282ca469637SMiao Xie 		goto cleanup_transaction;
2283e1489b4fSIoannis Angelakopoulos 	}
2284ca469637SMiao Xie 
228588090ad3SFilipe Manana 	btrfs_wait_delalloc_flush(fs_info);
2286cb7ab021SWang Shilong 
228748778179SFilipe Manana 	/*
228848778179SFilipe Manana 	 * Wait for all ordered extents started by a fast fsync that joined this
228948778179SFilipe Manana 	 * transaction. Otherwise if this transaction commits before the ordered
229048778179SFilipe Manana 	 * extents complete we lose logged data after a power failure.
229148778179SFilipe Manana 	 */
22928b53779eSIoannis Angelakopoulos 	btrfs_might_wait_for_event(fs_info, btrfs_trans_pending_ordered);
229348778179SFilipe Manana 	wait_event(cur_trans->pending_wait,
229448778179SFilipe Manana 		   atomic_read(&cur_trans->pending_ordered) == 0);
229548778179SFilipe Manana 
22962ff7e61eSJeff Mahoney 	btrfs_scrub_pause(fs_info);
2297ed0ca140SJosef Bacik 	/*
2298ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
2299ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
23004a9d8bdeSMiao Xie 	 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
2301ed0ca140SJosef Bacik 	 */
23020b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
230328b21c55SFilipe Manana 	add_pending_snapshot(trans);
23044a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_DOING;
23050b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2306e1489b4fSIoannis Angelakopoulos 
2307e1489b4fSIoannis Angelakopoulos 	/*
2308e1489b4fSIoannis Angelakopoulos 	 * The thread has started/joined the transaction thus it holds the
2309e1489b4fSIoannis Angelakopoulos 	 * lockdep map as a reader. It has to release it before acquiring the
2310e1489b4fSIoannis Angelakopoulos 	 * lockdep map as a writer.
2311e1489b4fSIoannis Angelakopoulos 	 */
2312e1489b4fSIoannis Angelakopoulos 	btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
2313e1489b4fSIoannis Angelakopoulos 	btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers);
2314ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
2315ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
231615ee9bc7SJosef Bacik 
2317fdfbf020SJosef Bacik 	/*
23183e738c53SIoannis Angelakopoulos 	 * Make lockdep happy by acquiring the state locks after
23193e738c53SIoannis Angelakopoulos 	 * btrfs_trans_num_writers is released. If we acquired the state locks
23203e738c53SIoannis Angelakopoulos 	 * before releasing the btrfs_trans_num_writers lock then lockdep would
23213e738c53SIoannis Angelakopoulos 	 * complain because we did not follow the reverse order unlocking rule.
23223e738c53SIoannis Angelakopoulos 	 */
23233e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
23243e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
23253e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
23263e738c53SIoannis Angelakopoulos 
23273e738c53SIoannis Angelakopoulos 	/*
2328fdfbf020SJosef Bacik 	 * We've started the commit, clear the flag in case we were triggered to
2329fdfbf020SJosef Bacik 	 * do an async commit but somebody else started before the transaction
2330fdfbf020SJosef Bacik 	 * kthread could do the work.
2331fdfbf020SJosef Bacik 	 */
2332fdfbf020SJosef Bacik 	clear_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags);
2333fdfbf020SJosef Bacik 
2334bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
23352cba30f1SMiao Xie 		ret = cur_trans->aborted;
23363e738c53SIoannis Angelakopoulos 		btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
23376cf7f77eSWang Shilong 		goto scrub_continue;
23382cba30f1SMiao Xie 	}
23397585717fSChris Mason 	/*
23407585717fSChris Mason 	 * the reloc mutex makes sure that we stop
23417585717fSChris Mason 	 * the balancing code from coming in and moving
23427585717fSChris Mason 	 * extents around in the middle of the commit
23437585717fSChris Mason 	 */
23440b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
23457585717fSChris Mason 
234642874b3dSMiao Xie 	/*
234742874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
234842874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
234942874b3dSMiao Xie 	 * core function of the snapshot creation.
235042874b3dSMiao Xie 	 */
235108d50ca3SNikolay Borisov 	ret = create_pending_snapshots(trans);
235256e9f6eaSDavid Sterba 	if (ret)
235356e9f6eaSDavid Sterba 		goto unlock_reloc;
23543063d29fSChris Mason 
235542874b3dSMiao Xie 	/*
235642874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
235742874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
235842874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
235942874b3dSMiao Xie 	 * them.
236042874b3dSMiao Xie 	 *
236142874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
236242874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
236342874b3dSMiao Xie 	 * the nodes and leaves.
236442874b3dSMiao Xie 	 */
2365e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
236656e9f6eaSDavid Sterba 	if (ret)
236756e9f6eaSDavid Sterba 		goto unlock_reloc;
236816cdcec7SMiao Xie 
2369c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
237056e9f6eaSDavid Sterba 	if (ret)
237156e9f6eaSDavid Sterba 		goto unlock_reloc;
237256bec294SChris Mason 
2373e999376fSChris Mason 	/*
2374e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
2375e999376fSChris Mason 	 * delayed item
2376e999376fSChris Mason 	 */
2377ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
2378e999376fSChris Mason 
23792c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
2380dc17ff8fSChris Mason 
23817e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
238256e9f6eaSDavid Sterba 	if (ret)
2383dfba78dcSFilipe Manana 		goto unlock_reloc;
238454aa1f4dSChris Mason 
23855d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
2386e02119d5SChris Mason 	 * safe to free the root of tree log roots
2387e02119d5SChris Mason 	 */
23880b246afaSJeff Mahoney 	btrfs_free_log_root_tree(trans, fs_info);
2389e02119d5SChris Mason 
23900ed4792aSQu Wenruo 	/*
23910ed4792aSQu Wenruo 	 * Since fs roots are all committed, we can get a quite accurate
23920ed4792aSQu Wenruo 	 * new_roots. So let's do quota accounting.
23930ed4792aSQu Wenruo 	 */
2394460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
239556e9f6eaSDavid Sterba 	if (ret < 0)
2396dfba78dcSFilipe Manana 		goto unlock_reloc;
23970ed4792aSQu Wenruo 
23989386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
239956e9f6eaSDavid Sterba 	if (ret)
2400dfba78dcSFilipe Manana 		goto unlock_reloc;
240154aa1f4dSChris Mason 
24022cba30f1SMiao Xie 	/*
24032cba30f1SMiao Xie 	 * The tasks which save the space cache and inode cache may also
24042cba30f1SMiao Xie 	 * update ->aborted, check it.
24052cba30f1SMiao Xie 	 */
2406bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
24072cba30f1SMiao Xie 		ret = cur_trans->aborted;
2408dfba78dcSFilipe Manana 		goto unlock_reloc;
24092cba30f1SMiao Xie 	}
24102cba30f1SMiao Xie 
24110b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
24125f39d397SChris Mason 
24130b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->tree_root->root_item,
24140b246afaSJeff Mahoney 			    fs_info->tree_root->node);
24150b246afaSJeff Mahoney 	list_add_tail(&fs_info->tree_root->dirty_list,
24169e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
24175d4f98a2SYan Zheng 
24180b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->chunk_root->root_item,
24190b246afaSJeff Mahoney 			    fs_info->chunk_root->node);
24200b246afaSJeff Mahoney 	list_add_tail(&fs_info->chunk_root->dirty_list,
24219e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
24229e351cc8SJosef Bacik 
2423f7238e50SJosef Bacik 	if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) {
2424f7238e50SJosef Bacik 		btrfs_set_root_node(&fs_info->block_group_root->root_item,
2425f7238e50SJosef Bacik 				    fs_info->block_group_root->node);
2426f7238e50SJosef Bacik 		list_add_tail(&fs_info->block_group_root->dirty_list,
2427f7238e50SJosef Bacik 			      &cur_trans->switch_commits);
2428f7238e50SJosef Bacik 	}
2429f7238e50SJosef Bacik 
2430889bfa39SJosef Bacik 	switch_commit_roots(trans);
24315d4f98a2SYan Zheng 
2432ce93ec54SJosef Bacik 	ASSERT(list_empty(&cur_trans->dirty_bgs));
24331bbc621eSChris Mason 	ASSERT(list_empty(&cur_trans->io_bgs));
24342ff7e61eSJeff Mahoney 	update_super_roots(fs_info);
2435e02119d5SChris Mason 
24360b246afaSJeff Mahoney 	btrfs_set_super_log_root(fs_info->super_copy, 0);
24370b246afaSJeff Mahoney 	btrfs_set_super_log_root_level(fs_info->super_copy, 0);
24380b246afaSJeff Mahoney 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
24390b246afaSJeff Mahoney 	       sizeof(*fs_info->super_copy));
2440ccd467d6SChris Mason 
2441bbbf7243SNikolay Borisov 	btrfs_commit_device_sizes(cur_trans);
2442935e5cc9SMiao Xie 
24430b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
24440b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
2445656f30dbSFilipe Manana 
24464fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
24474fbcdf66SFilipe Manana 
2448dfba78dcSFilipe Manana 	/*
2449dfba78dcSFilipe Manana 	 * Before changing the transaction state to TRANS_STATE_UNBLOCKED and
2450dfba78dcSFilipe Manana 	 * setting fs_info->running_transaction to NULL, lock tree_log_mutex to
2451dfba78dcSFilipe Manana 	 * make sure that before we commit our superblock, no other task can
2452dfba78dcSFilipe Manana 	 * start a new transaction and commit a log tree before we commit our
2453dfba78dcSFilipe Manana 	 * superblock. Anyone trying to commit a log tree locks this mutex before
2454dfba78dcSFilipe Manana 	 * writing its superblock.
2455dfba78dcSFilipe Manana 	 */
2456dfba78dcSFilipe Manana 	mutex_lock(&fs_info->tree_log_mutex);
2457dfba78dcSFilipe Manana 
24580b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
24594a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
24600b246afaSJeff Mahoney 	fs_info->running_transaction = NULL;
24610b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
24620b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
2463b7ec40d7SChris Mason 
24640b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
24653e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
2466e6dcd2dcSChris Mason 
2467*b7625f46SQu Wenruo 	/* If we have features changed, wake up the cleaner to update sysfs. */
2468*b7625f46SQu Wenruo 	if (test_bit(BTRFS_FS_FEATURE_CHANGED, &fs_info->flags) &&
2469*b7625f46SQu Wenruo 	    fs_info->cleaner_kthread)
2470*b7625f46SQu Wenruo 		wake_up_process(fs_info->cleaner_kthread);
2471*b7625f46SQu Wenruo 
247270458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
247349b25e05SJeff Mahoney 	if (ret) {
24740b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
247508748810SDavid Sterba 				      "Error while writing out transaction");
24760b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
24776cf7f77eSWang Shilong 		goto scrub_continue;
247849b25e05SJeff Mahoney 	}
247949b25e05SJeff Mahoney 
2480d3575156SNaohiro Aota 	/*
2481d3575156SNaohiro Aota 	 * At this point, we should have written all the tree blocks allocated
2482d3575156SNaohiro Aota 	 * in this transaction. So it's now safe to free the redirtyied extent
2483d3575156SNaohiro Aota 	 * buffers.
2484d3575156SNaohiro Aota 	 */
2485d3575156SNaohiro Aota 	btrfs_free_redirty_list(cur_trans);
2486d3575156SNaohiro Aota 
2487eece6a9cSDavid Sterba 	ret = write_all_supers(fs_info, 0);
2488e02119d5SChris Mason 	/*
2489e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
2490e02119d5SChris Mason 	 * to go about their business
2491e02119d5SChris Mason 	 */
24920b246afaSJeff Mahoney 	mutex_unlock(&fs_info->tree_log_mutex);
2493c1f32b7cSAnand Jain 	if (ret)
2494c1f32b7cSAnand Jain 		goto scrub_continue;
2495e02119d5SChris Mason 
2496d0c2f4faSFilipe Manana 	/*
2497d0c2f4faSFilipe Manana 	 * We needn't acquire the lock here because there is no other task
2498d0c2f4faSFilipe Manana 	 * which can change it.
2499d0c2f4faSFilipe Manana 	 */
2500d0c2f4faSFilipe Manana 	cur_trans->state = TRANS_STATE_SUPER_COMMITTED;
2501d0c2f4faSFilipe Manana 	wake_up(&cur_trans->commit_wait);
25023e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
2503d0c2f4faSFilipe Manana 
25045ead2dd0SNikolay Borisov 	btrfs_finish_extent_commit(trans);
25054313b399SChris Mason 
25063204d33cSJosef Bacik 	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
25070b246afaSJeff Mahoney 		btrfs_clear_space_info_full(fs_info);
250813212b54SZhao Lei 
25090b246afaSJeff Mahoney 	fs_info->last_trans_committed = cur_trans->transid;
25104a9d8bdeSMiao Xie 	/*
25114a9d8bdeSMiao Xie 	 * We needn't acquire the lock here because there is no other task
25124a9d8bdeSMiao Xie 	 * which can change it.
25134a9d8bdeSMiao Xie 	 */
25144a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMPLETED;
25152c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
25163e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
25173de4586cSChris Mason 
25180b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
251913c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
25200b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2521a4abeea4SJosef Bacik 
2522724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2523724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
252458176a96SJosef Bacik 
25250860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
25260b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2527b2b5ef5cSJan Kara 
25282e4e97abSJosef Bacik 	trace_btrfs_transaction_commit(fs_info);
25291abe9b8aSliubo 
2530e55958c8SIoannis Angelakopoulos 	interval = ktime_get_ns() - start_time;
2531e55958c8SIoannis Angelakopoulos 
25322ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
2533a2de733cSArne Jansen 
25349ed74f2dSJosef Bacik 	if (current->journal_info == trans)
25359ed74f2dSJosef Bacik 		current->journal_info = NULL;
25369ed74f2dSJosef Bacik 
25372c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
253824bbcf04SYan, Zheng 
2539e55958c8SIoannis Angelakopoulos 	update_commit_stats(fs_info, interval);
2540e55958c8SIoannis Angelakopoulos 
254179154b1bSChris Mason 	return ret;
254249b25e05SJeff Mahoney 
254356e9f6eaSDavid Sterba unlock_reloc:
254456e9f6eaSDavid Sterba 	mutex_unlock(&fs_info->reloc_mutex);
25453e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
25466cf7f77eSWang Shilong scrub_continue:
25473e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
25483e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
25492ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
255049b25e05SJeff Mahoney cleanup_transaction:
2551dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
2552c7cc64a9SDavid Sterba 	btrfs_cleanup_pending_block_groups(trans);
25534fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
25540e721106SJosef Bacik 	trans->block_rsv = NULL;
25550b246afaSJeff Mahoney 	btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
255649b25e05SJeff Mahoney 	if (current->journal_info == trans)
255749b25e05SJeff Mahoney 		current->journal_info = NULL;
255897cb39bbSNikolay Borisov 	cleanup_transaction(trans, ret);
255949b25e05SJeff Mahoney 
256049b25e05SJeff Mahoney 	return ret;
2561e1489b4fSIoannis Angelakopoulos 
2562e1489b4fSIoannis Angelakopoulos lockdep_release:
25635a9ba670SIoannis Angelakopoulos 	btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
2564e1489b4fSIoannis Angelakopoulos 	btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
2565e1489b4fSIoannis Angelakopoulos 	goto cleanup_transaction;
25663e738c53SIoannis Angelakopoulos 
25673e738c53SIoannis Angelakopoulos lockdep_trans_commit_start_release:
25683e738c53SIoannis Angelakopoulos 	btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
25693e738c53SIoannis Angelakopoulos 	btrfs_end_transaction(trans);
25703e738c53SIoannis Angelakopoulos 	return ret;
257179154b1bSChris Mason }
257279154b1bSChris Mason 
2573d352ac68SChris Mason /*
25749d1a2a3aSDavid Sterba  * return < 0 if error
25759d1a2a3aSDavid Sterba  * 0 if there are no more dead_roots at the time of call
25769d1a2a3aSDavid Sterba  * 1 there are more to be processed, call me again
25779d1a2a3aSDavid Sterba  *
25789d1a2a3aSDavid Sterba  * The return value indicates there are certainly more snapshots to delete, but
25799d1a2a3aSDavid Sterba  * if there comes a new one during processing, it may return 0. We don't mind,
25809d1a2a3aSDavid Sterba  * because btrfs_commit_super will poke cleaner thread and it will process it a
25819d1a2a3aSDavid Sterba  * few seconds later.
2582d352ac68SChris Mason  */
258333c44184SJosef Bacik int btrfs_clean_one_deleted_snapshot(struct btrfs_fs_info *fs_info)
2584e9d0b13bSChris Mason {
258533c44184SJosef Bacik 	struct btrfs_root *root;
25869d1a2a3aSDavid Sterba 	int ret;
2587e9d0b13bSChris Mason 
2588a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
25899d1a2a3aSDavid Sterba 	if (list_empty(&fs_info->dead_roots)) {
25909d1a2a3aSDavid Sterba 		spin_unlock(&fs_info->trans_lock);
25919d1a2a3aSDavid Sterba 		return 0;
25929d1a2a3aSDavid Sterba 	}
25939d1a2a3aSDavid Sterba 	root = list_first_entry(&fs_info->dead_roots,
25949d1a2a3aSDavid Sterba 			struct btrfs_root, root_list);
2595cfad392bSJosef Bacik 	list_del_init(&root->root_list);
2596a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
25975d4f98a2SYan Zheng 
25984fd786e6SMisono Tomohiro 	btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
259976dda93cSYan, Zheng 
260016cdcec7SMiao Xie 	btrfs_kill_all_delayed_nodes(root);
260116cdcec7SMiao Xie 
260276dda93cSYan, Zheng 	if (btrfs_header_backref_rev(root->node) <
260376dda93cSYan, Zheng 			BTRFS_MIXED_BACKREF_REV)
26040078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 0, 0);
260576dda93cSYan, Zheng 	else
26060078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 1, 0);
260732471dc2SDavid Sterba 
2608dc9492c1SJosef Bacik 	btrfs_put_root(root);
26096596a928SJosef Bacik 	return (ret < 0) ? 0 : 1;
2610e9d0b13bSChris Mason }
2611572d9ab7SDavid Sterba 
2612fccf0c84SJosef Bacik /*
2613fccf0c84SJosef Bacik  * We only mark the transaction aborted and then set the file system read-only.
2614fccf0c84SJosef Bacik  * This will prevent new transactions from starting or trying to join this
2615fccf0c84SJosef Bacik  * one.
2616fccf0c84SJosef Bacik  *
2617fccf0c84SJosef Bacik  * This means that error recovery at the call site is limited to freeing
2618fccf0c84SJosef Bacik  * any local memory allocations and passing the error code up without
2619fccf0c84SJosef Bacik  * further cleanup. The transaction should complete as it normally would
2620fccf0c84SJosef Bacik  * in the call path but will return -EIO.
2621fccf0c84SJosef Bacik  *
2622fccf0c84SJosef Bacik  * We'll complete the cleanup in btrfs_end_transaction and
2623fccf0c84SJosef Bacik  * btrfs_commit_transaction.
2624fccf0c84SJosef Bacik  */
2625fccf0c84SJosef Bacik void __cold __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
2626fccf0c84SJosef Bacik 				      const char *function,
2627fccf0c84SJosef Bacik 				      unsigned int line, int errno, bool first_hit)
2628fccf0c84SJosef Bacik {
2629fccf0c84SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
2630fccf0c84SJosef Bacik 
2631fccf0c84SJosef Bacik 	WRITE_ONCE(trans->aborted, errno);
2632fccf0c84SJosef Bacik 	WRITE_ONCE(trans->transaction->aborted, errno);
2633fccf0c84SJosef Bacik 	if (first_hit && errno == -ENOSPC)
2634fccf0c84SJosef Bacik 		btrfs_dump_space_info_for_trans_abort(fs_info);
2635fccf0c84SJosef Bacik 	/* Wake up anybody who may be waiting on this transaction */
2636fccf0c84SJosef Bacik 	wake_up(&fs_info->transaction_wait);
2637fccf0c84SJosef Bacik 	wake_up(&fs_info->transaction_blocked_wait);
2638fccf0c84SJosef Bacik 	__btrfs_handle_fs_error(fs_info, function, line, errno, NULL);
2639fccf0c84SJosef Bacik }
2640fccf0c84SJosef Bacik 
2641956504a3SJosef Bacik int __init btrfs_transaction_init(void)
2642956504a3SJosef Bacik {
2643956504a3SJosef Bacik 	btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
2644956504a3SJosef Bacik 			sizeof(struct btrfs_trans_handle), 0,
2645956504a3SJosef Bacik 			SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
2646956504a3SJosef Bacik 	if (!btrfs_trans_handle_cachep)
2647956504a3SJosef Bacik 		return -ENOMEM;
2648956504a3SJosef Bacik 	return 0;
2649956504a3SJosef Bacik }
2650956504a3SJosef Bacik 
2651956504a3SJosef Bacik void __cold btrfs_transaction_exit(void)
2652956504a3SJosef Bacik {
2653956504a3SJosef Bacik 	kmem_cache_destroy(btrfs_trans_handle_cachep);
2654956504a3SJosef Bacik }
2655