xref: /openbmc/linux/fs/btrfs/transaction.c (revision 27d56e62)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
26cbd5570SChris Mason /*
36cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
46cbd5570SChris Mason  */
56cbd5570SChris Mason 
679154b1bSChris Mason #include <linux/fs.h>
75a0e3ad6STejun Heo #include <linux/slab.h>
834088780SChris Mason #include <linux/sched.h>
9d3c2fdcfSChris Mason #include <linux/writeback.h>
105f39d397SChris Mason #include <linux/pagemap.h>
115f2cc086SChris Mason #include <linux/blkdev.h>
128ea05e3aSAlexander Block #include <linux/uuid.h>
13602cbe91SDavid Sterba #include "misc.h"
1479154b1bSChris Mason #include "ctree.h"
1579154b1bSChris Mason #include "disk-io.h"
1679154b1bSChris Mason #include "transaction.h"
17925baeddSChris Mason #include "locking.h"
18e02119d5SChris Mason #include "tree-log.h"
19581bb050SLi Zefan #include "inode-map.h"
20733f4fbbSStefan Behrens #include "volumes.h"
218dabb742SStefan Behrens #include "dev-replace.h"
22fcebe456SJosef Bacik #include "qgroup.h"
23aac0023cSJosef Bacik #include "block-group.h"
249c343784SJosef Bacik #include "space-info.h"
2579154b1bSChris Mason 
260f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
270f7d52f4SChris Mason 
2861c047b5SQu Wenruo /*
2961c047b5SQu Wenruo  * Transaction states and transitions
3061c047b5SQu Wenruo  *
3161c047b5SQu Wenruo  * No running transaction (fs tree blocks are not modified)
3261c047b5SQu Wenruo  * |
3361c047b5SQu Wenruo  * | To next stage:
3461c047b5SQu Wenruo  * |  Call start_transaction() variants. Except btrfs_join_transaction_nostart().
3561c047b5SQu Wenruo  * V
3661c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_RUNNING]]
3761c047b5SQu Wenruo  * |
3861c047b5SQu Wenruo  * | New trans handles can be attached to transaction N by calling all
3961c047b5SQu Wenruo  * | start_transaction() variants.
4061c047b5SQu Wenruo  * |
4161c047b5SQu Wenruo  * | To next stage:
4261c047b5SQu Wenruo  * |  Call btrfs_commit_transaction() on any trans handle attached to
4361c047b5SQu Wenruo  * |  transaction N
4461c047b5SQu Wenruo  * V
4561c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_START]]
4661c047b5SQu Wenruo  * |
4761c047b5SQu Wenruo  * | Will wait for previous running transaction to completely finish if there
4861c047b5SQu Wenruo  * | is one
4961c047b5SQu Wenruo  * |
5061c047b5SQu Wenruo  * | Then one of the following happes:
5161c047b5SQu Wenruo  * | - Wait for all other trans handle holders to release.
5261c047b5SQu Wenruo  * |   The btrfs_commit_transaction() caller will do the commit work.
5361c047b5SQu Wenruo  * | - Wait for current transaction to be committed by others.
5461c047b5SQu Wenruo  * |   Other btrfs_commit_transaction() caller will do the commit work.
5561c047b5SQu Wenruo  * |
5661c047b5SQu Wenruo  * | At this stage, only btrfs_join_transaction*() variants can attach
5761c047b5SQu Wenruo  * | to this running transaction.
5861c047b5SQu Wenruo  * | All other variants will wait for current one to finish and attach to
5961c047b5SQu Wenruo  * | transaction N+1.
6061c047b5SQu Wenruo  * |
6161c047b5SQu Wenruo  * | To next stage:
6261c047b5SQu Wenruo  * |  Caller is chosen to commit transaction N, and all other trans handle
6361c047b5SQu Wenruo  * |  haven been released.
6461c047b5SQu Wenruo  * V
6561c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_DOING]]
6661c047b5SQu Wenruo  * |
6761c047b5SQu Wenruo  * | The heavy lifting transaction work is started.
6861c047b5SQu Wenruo  * | From running delayed refs (modifying extent tree) to creating pending
6961c047b5SQu Wenruo  * | snapshots, running qgroups.
7061c047b5SQu Wenruo  * | In short, modify supporting trees to reflect modifications of subvolume
7161c047b5SQu Wenruo  * | trees.
7261c047b5SQu Wenruo  * |
7361c047b5SQu Wenruo  * | At this stage, all start_transaction() calls will wait for this
7461c047b5SQu Wenruo  * | transaction to finish and attach to transaction N+1.
7561c047b5SQu Wenruo  * |
7661c047b5SQu Wenruo  * | To next stage:
7761c047b5SQu Wenruo  * |  Until all supporting trees are updated.
7861c047b5SQu Wenruo  * V
7961c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_UNBLOCKED]]
8061c047b5SQu Wenruo  * |						    Transaction N+1
8161c047b5SQu Wenruo  * | All needed trees are modified, thus we only    [[TRANS_STATE_RUNNING]]
8261c047b5SQu Wenruo  * | need to write them back to disk and update	    |
8361c047b5SQu Wenruo  * | super blocks.				    |
8461c047b5SQu Wenruo  * |						    |
8561c047b5SQu Wenruo  * | At this stage, new transaction is allowed to   |
8661c047b5SQu Wenruo  * | start.					    |
8761c047b5SQu Wenruo  * | All new start_transaction() calls will be	    |
8861c047b5SQu Wenruo  * | attached to transid N+1.			    |
8961c047b5SQu Wenruo  * |						    |
9061c047b5SQu Wenruo  * | To next stage:				    |
9161c047b5SQu Wenruo  * |  Until all tree blocks are super blocks are    |
9261c047b5SQu Wenruo  * |  written to block devices			    |
9361c047b5SQu Wenruo  * V						    |
9461c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMPLETED]]	    V
9561c047b5SQu Wenruo  *   All tree blocks and super blocks are written.  Transaction N+1
9661c047b5SQu Wenruo  *   This transaction is finished and all its	    [[TRANS_STATE_COMMIT_START]]
9761c047b5SQu Wenruo  *   data structures will be cleaned up.	    | Life goes on
9861c047b5SQu Wenruo  */
99e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
1004a9d8bdeSMiao Xie 	[TRANS_STATE_RUNNING]		= 0U,
101bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_START]	= (__TRANS_START | __TRANS_ATTACH),
102bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_DOING]	= (__TRANS_START |
1034a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
104a6d155d2SFilipe Manana 					   __TRANS_JOIN |
105a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
106bcf3a3e7SNikolay Borisov 	[TRANS_STATE_UNBLOCKED]		= (__TRANS_START |
1074a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1084a9d8bdeSMiao Xie 					   __TRANS_JOIN |
109a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
110a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
111bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMPLETED]		= (__TRANS_START |
1124a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1134a9d8bdeSMiao Xie 					   __TRANS_JOIN |
114a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
115a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
1164a9d8bdeSMiao Xie };
1174a9d8bdeSMiao Xie 
118724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction)
11979154b1bSChris Mason {
1209b64f57dSElena Reshetova 	WARN_ON(refcount_read(&transaction->use_count) == 0);
1219b64f57dSElena Reshetova 	if (refcount_dec_and_test(&transaction->use_count)) {
122a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
1235c9d028bSLiu Bo 		WARN_ON(!RB_EMPTY_ROOT(
1245c9d028bSLiu Bo 				&transaction->delayed_refs.href_root.rb_root));
12581f7eb00SJeff Mahoney 		WARN_ON(!RB_EMPTY_ROOT(
12681f7eb00SJeff Mahoney 				&transaction->delayed_refs.dirty_extent_root));
1271262133bSJosef Bacik 		if (transaction->delayed_refs.pending_csums)
128ab8d0fc4SJeff Mahoney 			btrfs_err(transaction->fs_info,
129ab8d0fc4SJeff Mahoney 				  "pending csums is %llu",
1301262133bSJosef Bacik 				  transaction->delayed_refs.pending_csums);
1317785a663SFilipe Manana 		/*
1327785a663SFilipe Manana 		 * If any block groups are found in ->deleted_bgs then it's
1337785a663SFilipe Manana 		 * because the transaction was aborted and a commit did not
1347785a663SFilipe Manana 		 * happen (things failed before writing the new superblock
1357785a663SFilipe Manana 		 * and calling btrfs_finish_extent_commit()), so we can not
1367785a663SFilipe Manana 		 * discard the physical locations of the block groups.
1377785a663SFilipe Manana 		 */
1387785a663SFilipe Manana 		while (!list_empty(&transaction->deleted_bgs)) {
13932da5386SDavid Sterba 			struct btrfs_block_group *cache;
1407785a663SFilipe Manana 
1417785a663SFilipe Manana 			cache = list_first_entry(&transaction->deleted_bgs,
14232da5386SDavid Sterba 						 struct btrfs_block_group,
1437785a663SFilipe Manana 						 bg_list);
1447785a663SFilipe Manana 			list_del_init(&cache->bg_list);
1456b7304afSFilipe Manana 			btrfs_unfreeze_block_group(cache);
1467785a663SFilipe Manana 			btrfs_put_block_group(cache);
1477785a663SFilipe Manana 		}
148bbbf7243SNikolay Borisov 		WARN_ON(!list_empty(&transaction->dev_update_list));
1494b5faeacSDavid Sterba 		kfree(transaction);
15079154b1bSChris Mason 	}
15178fae27eSChris Mason }
15279154b1bSChris Mason 
153889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
154817d52f8SJosef Bacik {
155889bfa39SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
15616916a88SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1579e351cc8SJosef Bacik 	struct btrfs_root *root, *tmp;
158*27d56e62SJosef Bacik 	struct btrfs_caching_control *caching_ctl, *next;
1599e351cc8SJosef Bacik 
1609e351cc8SJosef Bacik 	down_write(&fs_info->commit_root_sem);
161889bfa39SJosef Bacik 	list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
1629e351cc8SJosef Bacik 				 dirty_list) {
1639e351cc8SJosef Bacik 		list_del_init(&root->dirty_list);
164817d52f8SJosef Bacik 		free_extent_buffer(root->commit_root);
165817d52f8SJosef Bacik 		root->commit_root = btrfs_root_node(root);
1664fd786e6SMisono Tomohiro 		if (is_fstree(root->root_key.objectid))
1679e351cc8SJosef Bacik 			btrfs_unpin_free_ino(root);
16841e7acd3SNikolay Borisov 		extent_io_tree_release(&root->dirty_log_pages);
169370a11b8SQu Wenruo 		btrfs_qgroup_clean_swapped_blocks(root);
1709e351cc8SJosef Bacik 	}
1712b9dbef2SJosef Bacik 
1722b9dbef2SJosef Bacik 	/* We can free old roots now. */
173889bfa39SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
174889bfa39SJosef Bacik 	while (!list_empty(&cur_trans->dropped_roots)) {
175889bfa39SJosef Bacik 		root = list_first_entry(&cur_trans->dropped_roots,
1762b9dbef2SJosef Bacik 					struct btrfs_root, root_list);
1772b9dbef2SJosef Bacik 		list_del_init(&root->root_list);
178889bfa39SJosef Bacik 		spin_unlock(&cur_trans->dropped_roots_lock);
179889bfa39SJosef Bacik 		btrfs_free_log(trans, root);
1802b9dbef2SJosef Bacik 		btrfs_drop_and_free_fs_root(fs_info, root);
181889bfa39SJosef Bacik 		spin_lock(&cur_trans->dropped_roots_lock);
1822b9dbef2SJosef Bacik 	}
183889bfa39SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
184*27d56e62SJosef Bacik 
185*27d56e62SJosef Bacik 	/*
186*27d56e62SJosef Bacik 	 * We have to update the last_byte_to_unpin under the commit_root_sem,
187*27d56e62SJosef Bacik 	 * at the same time we swap out the commit roots.
188*27d56e62SJosef Bacik 	 *
189*27d56e62SJosef Bacik 	 * This is because we must have a real view of the last spot the caching
190*27d56e62SJosef Bacik 	 * kthreads were while caching.  Consider the following views of the
191*27d56e62SJosef Bacik 	 * extent tree for a block group
192*27d56e62SJosef Bacik 	 *
193*27d56e62SJosef Bacik 	 * commit root
194*27d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
195*27d56e62SJosef Bacik 	 * |\\\\|    |\\\\|\\\\|    |\\\\|\\\\|
196*27d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
197*27d56e62SJosef Bacik 	 * 0    1    2    3    4    5    6    7
198*27d56e62SJosef Bacik 	 *
199*27d56e62SJosef Bacik 	 * new commit root
200*27d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
201*27d56e62SJosef Bacik 	 * |    |    |    |\\\\|    |    |\\\\|
202*27d56e62SJosef Bacik 	 * +----+----+----+----+----+----+----+
203*27d56e62SJosef Bacik 	 * 0    1    2    3    4    5    6    7
204*27d56e62SJosef Bacik 	 *
205*27d56e62SJosef Bacik 	 * If the cache_ctl->progress was at 3, then we are only allowed to
206*27d56e62SJosef Bacik 	 * unpin [0,1) and [2,3], because the caching thread has already
207*27d56e62SJosef Bacik 	 * processed those extents.  We are not allowed to unpin [5,6), because
208*27d56e62SJosef Bacik 	 * the caching thread will re-start it's search from 3, and thus find
209*27d56e62SJosef Bacik 	 * the hole from [4,6) to add to the free space cache.
210*27d56e62SJosef Bacik 	 */
211*27d56e62SJosef Bacik 	list_for_each_entry_safe(caching_ctl, next,
212*27d56e62SJosef Bacik 				 &fs_info->caching_block_groups, list) {
213*27d56e62SJosef Bacik 		struct btrfs_block_group *cache = caching_ctl->block_group;
214*27d56e62SJosef Bacik 
215*27d56e62SJosef Bacik 		if (btrfs_block_group_done(cache)) {
216*27d56e62SJosef Bacik 			cache->last_byte_to_unpin = (u64)-1;
217*27d56e62SJosef Bacik 			list_del_init(&caching_ctl->list);
218*27d56e62SJosef Bacik 			btrfs_put_caching_control(caching_ctl);
219*27d56e62SJosef Bacik 		} else {
220*27d56e62SJosef Bacik 			cache->last_byte_to_unpin = caching_ctl->progress;
221*27d56e62SJosef Bacik 		}
222*27d56e62SJosef Bacik 	}
2239e351cc8SJosef Bacik 	up_write(&fs_info->commit_root_sem);
224817d52f8SJosef Bacik }
225817d52f8SJosef Bacik 
2260860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
2270860adfdSMiao Xie 					 unsigned int type)
2280860adfdSMiao Xie {
2290860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2300860adfdSMiao Xie 		atomic_inc(&trans->num_extwriters);
2310860adfdSMiao Xie }
2320860adfdSMiao Xie 
2330860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
2340860adfdSMiao Xie 					 unsigned int type)
2350860adfdSMiao Xie {
2360860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
2370860adfdSMiao Xie 		atomic_dec(&trans->num_extwriters);
2380860adfdSMiao Xie }
2390860adfdSMiao Xie 
2400860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans,
2410860adfdSMiao Xie 					  unsigned int type)
2420860adfdSMiao Xie {
2430860adfdSMiao Xie 	atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
2440860adfdSMiao Xie }
2450860adfdSMiao Xie 
2460860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans)
2470860adfdSMiao Xie {
2480860adfdSMiao Xie 	return atomic_read(&trans->num_extwriters);
249178260b2SMiao Xie }
250178260b2SMiao Xie 
251d352ac68SChris Mason /*
252fb6dea26SJosef Bacik  * To be called after all the new block groups attached to the transaction
253fb6dea26SJosef Bacik  * handle have been created (btrfs_create_pending_block_groups()).
254fb6dea26SJosef Bacik  */
255fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
256fb6dea26SJosef Bacik {
257fb6dea26SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
258fb6dea26SJosef Bacik 
259fb6dea26SJosef Bacik 	if (!trans->chunk_bytes_reserved)
260fb6dea26SJosef Bacik 		return;
261fb6dea26SJosef Bacik 
262fb6dea26SJosef Bacik 	WARN_ON_ONCE(!list_empty(&trans->new_bgs));
263fb6dea26SJosef Bacik 
264fb6dea26SJosef Bacik 	btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
26563f018beSNikolay Borisov 				trans->chunk_bytes_reserved, NULL);
266fb6dea26SJosef Bacik 	trans->chunk_bytes_reserved = 0;
267fb6dea26SJosef Bacik }
268fb6dea26SJosef Bacik 
269fb6dea26SJosef Bacik /*
270d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
271d352ac68SChris Mason  */
2722ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info,
2732ff7e61eSJeff Mahoney 				     unsigned int type)
27479154b1bSChris Mason {
27579154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
276a4abeea4SJosef Bacik 
27719ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
278d43317dcSChris Mason loop:
27949b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
28087533c47SMiao Xie 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
28119ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
28249b25e05SJeff Mahoney 		return -EROFS;
28349b25e05SJeff Mahoney 	}
28449b25e05SJeff Mahoney 
28519ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
286a4abeea4SJosef Bacik 	if (cur_trans) {
287bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans)) {
28819ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
28949b25e05SJeff Mahoney 			return cur_trans->aborted;
290871383beSDavid Sterba 		}
2914a9d8bdeSMiao Xie 		if (btrfs_blocked_trans_types[cur_trans->state] & type) {
292178260b2SMiao Xie 			spin_unlock(&fs_info->trans_lock);
293178260b2SMiao Xie 			return -EBUSY;
294178260b2SMiao Xie 		}
2959b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
296a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
2970860adfdSMiao Xie 		extwriter_counter_inc(cur_trans, type);
29819ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
299a4abeea4SJosef Bacik 		return 0;
300a4abeea4SJosef Bacik 	}
30119ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
302a4abeea4SJosef Bacik 
303354aa0fbSMiao Xie 	/*
304354aa0fbSMiao Xie 	 * If we are ATTACH, we just want to catch the current transaction,
305354aa0fbSMiao Xie 	 * and commit it. If there is no transaction, just return ENOENT.
306354aa0fbSMiao Xie 	 */
307354aa0fbSMiao Xie 	if (type == TRANS_ATTACH)
308354aa0fbSMiao Xie 		return -ENOENT;
309354aa0fbSMiao Xie 
3104a9d8bdeSMiao Xie 	/*
3114a9d8bdeSMiao Xie 	 * JOIN_NOLOCK only happens during the transaction commit, so
3124a9d8bdeSMiao Xie 	 * it is impossible that ->running_transaction is NULL
3134a9d8bdeSMiao Xie 	 */
3144a9d8bdeSMiao Xie 	BUG_ON(type == TRANS_JOIN_NOLOCK);
3154a9d8bdeSMiao Xie 
3164b5faeacSDavid Sterba 	cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
317db5b493aSTsutomu Itoh 	if (!cur_trans)
318db5b493aSTsutomu Itoh 		return -ENOMEM;
319d43317dcSChris Mason 
32019ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
32119ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
322d43317dcSChris Mason 		/*
323d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
3244a9d8bdeSMiao Xie 		 * to redo the checks above
325d43317dcSChris Mason 		 */
3264b5faeacSDavid Sterba 		kfree(cur_trans);
327d43317dcSChris Mason 		goto loop;
32887533c47SMiao Xie 	} else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
329e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
3304b5faeacSDavid Sterba 		kfree(cur_trans);
3317b8b92afSJosef Bacik 		return -EROFS;
332a4abeea4SJosef Bacik 	}
333d43317dcSChris Mason 
334ab8d0fc4SJeff Mahoney 	cur_trans->fs_info = fs_info;
33548778179SFilipe Manana 	atomic_set(&cur_trans->pending_ordered, 0);
33648778179SFilipe Manana 	init_waitqueue_head(&cur_trans->pending_wait);
33713c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
3380860adfdSMiao Xie 	extwriter_counter_init(cur_trans, type);
33979154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
34079154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
3414a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_RUNNING;
342a4abeea4SJosef Bacik 	/*
343a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
344a4abeea4SJosef Bacik 	 * commit the transaction.
345a4abeea4SJosef Bacik 	 */
3469b64f57dSElena Reshetova 	refcount_set(&cur_trans->use_count, 2);
3473204d33cSJosef Bacik 	cur_trans->flags = 0;
348afd48513SArnd Bergmann 	cur_trans->start_time = ktime_get_seconds();
34956bec294SChris Mason 
350a099d0fdSAlexandru Moise 	memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
351a099d0fdSAlexandru Moise 
3525c9d028bSLiu Bo 	cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3533368d001SQu Wenruo 	cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
354d7df2c79SJosef Bacik 	atomic_set(&cur_trans->delayed_refs.num_entries, 0);
35520b297d6SJan Schmidt 
35620b297d6SJan Schmidt 	/*
35720b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
35820b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
35920b297d6SJan Schmidt 	 */
36020b297d6SJan Schmidt 	smp_mb();
36131b1a2bdSJulia Lawall 	if (!list_empty(&fs_info->tree_mod_seq_list))
3625d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
36331b1a2bdSJulia Lawall 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
3645d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
365fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
36620b297d6SJan Schmidt 
36756bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
36856bec294SChris Mason 
3693063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
370bbbf7243SNikolay Borisov 	INIT_LIST_HEAD(&cur_trans->dev_update_list);
3719e351cc8SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->switch_commits);
372ce93ec54SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dirty_bgs);
3731bbc621eSChris Mason 	INIT_LIST_HEAD(&cur_trans->io_bgs);
3742b9dbef2SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dropped_roots);
3751bbc621eSChris Mason 	mutex_init(&cur_trans->cache_write_mutex);
376ce93ec54SJosef Bacik 	spin_lock_init(&cur_trans->dirty_bgs_lock);
377e33e17eeSJeff Mahoney 	INIT_LIST_HEAD(&cur_trans->deleted_bgs);
3782b9dbef2SJosef Bacik 	spin_lock_init(&cur_trans->dropped_roots_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,
38143eb5f29SQu Wenruo 			IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode);
382fe119a6eSNikolay Borisov 	extent_io_tree_init(fs_info, &cur_trans->pinned_extents,
383fe119a6eSNikolay Borisov 			IO_TREE_FS_PINNED_EXTENTS, NULL);
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;
4040b246afaSJeff Mahoney 
40592a7cc42SQu Wenruo 	if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
4066426c7adSQu Wenruo 	    root->last_trans < trans->transid) || force) {
4070b246afaSJeff Mahoney 		WARN_ON(root == fs_info->extent_root);
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 
4220b246afaSJeff Mahoney 		spin_lock(&fs_info->fs_roots_radix_lock);
4236426c7adSQu Wenruo 		if (root->last_trans == trans->transid && !force) {
4240b246afaSJeff Mahoney 			spin_unlock(&fs_info->fs_roots_radix_lock);
425a4abeea4SJosef Bacik 			return 0;
426a4abeea4SJosef Bacik 		}
4270b246afaSJeff Mahoney 		radix_tree_tag_set(&fs_info->fs_roots_radix,
4286702ed49SChris Mason 				   (unsigned long)root->root_key.objectid,
4296702ed49SChris Mason 				   BTRFS_ROOT_TRANS_TAG);
4300b246afaSJeff Mahoney 		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 		 */
4525d4f98a2SYan Zheng 		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 	}
4565d4f98a2SYan Zheng 	return 0;
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 */
4720b246afaSJeff Mahoney 	spin_lock(&fs_info->fs_roots_radix_lock);
4730b246afaSJeff Mahoney 	radix_tree_tag_clear(&fs_info->fs_roots_radix,
4742b9dbef2SJosef Bacik 			     (unsigned long)root->root_key.objectid,
4752b9dbef2SJosef Bacik 			     BTRFS_ROOT_TRANS_TAG);
4760b246afaSJeff Mahoney 	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;
4830b246afaSJeff Mahoney 
48492a7cc42SQu Wenruo 	if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
4857585717fSChris Mason 		return 0;
4867585717fSChris Mason 
4877585717fSChris Mason 	/*
48827cdeb70SMiao Xie 	 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
4897585717fSChris Mason 	 * and barriers
4907585717fSChris Mason 	 */
4917585717fSChris Mason 	smp_rmb();
4927585717fSChris Mason 	if (root->last_trans == trans->transid &&
49327cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
4947585717fSChris Mason 		return 0;
4957585717fSChris Mason 
4960b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
4976426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
4980b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
4997585717fSChris Mason 
5007585717fSChris Mason 	return 0;
5017585717fSChris Mason }
5027585717fSChris Mason 
5034a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans)
5044a9d8bdeSMiao Xie {
5053296bf56SQu Wenruo 	return (trans->state >= TRANS_STATE_COMMIT_START &&
506501407aaSJosef Bacik 		trans->state < TRANS_STATE_UNBLOCKED &&
507bf31f87fSDavid Sterba 		!TRANS_ABORTED(trans));
5084a9d8bdeSMiao Xie }
5094a9d8bdeSMiao Xie 
510d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
511d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
512d352ac68SChris Mason  * transaction might not be fully on disk.
513d352ac68SChris Mason  */
5142ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info)
51579154b1bSChris Mason {
516f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
51779154b1bSChris Mason 
5180b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
5190b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
5204a9d8bdeSMiao Xie 	if (cur_trans && is_transaction_blocked(cur_trans)) {
5219b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
5220b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
52372d63ed6SLi Zefan 
5240b246afaSJeff Mahoney 		wait_event(fs_info->transaction_wait,
525501407aaSJosef Bacik 			   cur_trans->state >= TRANS_STATE_UNBLOCKED ||
526bf31f87fSDavid Sterba 			   TRANS_ABORTED(cur_trans));
527724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
528a4abeea4SJosef Bacik 	} else {
5290b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
530f9295749SChris Mason 	}
53137d1aeeeSChris Mason }
53237d1aeeeSChris Mason 
5332ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
53437d1aeeeSChris Mason {
5350b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
536a4abeea4SJosef Bacik 		return 0;
537a4abeea4SJosef Bacik 
53892e2f7e3SNikolay Borisov 	if (type == TRANS_START)
539a4abeea4SJosef Bacik 		return 1;
540a4abeea4SJosef Bacik 
541a22285a6SYan, Zheng 	return 0;
542a22285a6SYan, Zheng }
543a22285a6SYan, Zheng 
54420dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root)
54520dd2cbfSMiao Xie {
5460b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
5470b246afaSJeff Mahoney 
5480b246afaSJeff Mahoney 	if (!fs_info->reloc_ctl ||
54992a7cc42SQu Wenruo 	    !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
55020dd2cbfSMiao Xie 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
55120dd2cbfSMiao Xie 	    root->reloc_root)
55220dd2cbfSMiao Xie 		return false;
55320dd2cbfSMiao Xie 
55420dd2cbfSMiao Xie 	return true;
55520dd2cbfSMiao Xie }
55620dd2cbfSMiao Xie 
55708e007d2SMiao Xie static struct btrfs_trans_handle *
5585aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items,
559003d7c59SJeff Mahoney 		  unsigned int type, enum btrfs_reserve_flush_enum flush,
560003d7c59SJeff Mahoney 		  bool enforce_qgroups)
561a22285a6SYan, Zheng {
5620b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
563ba2c4d4eSJosef Bacik 	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
564a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
565a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
566b5009945SJosef Bacik 	u64 num_bytes = 0;
567c5567237SArne Jansen 	u64 qgroup_reserved = 0;
56820dd2cbfSMiao Xie 	bool reloc_reserved = false;
5699c343784SJosef Bacik 	bool do_chunk_alloc = false;
57020dd2cbfSMiao Xie 	int ret;
571acce952bSliubo 
57246c4e71eSFilipe Manana 	/* Send isn't supposed to start transactions. */
5732755a0deSDavid Sterba 	ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB);
57446c4e71eSFilipe Manana 
5750b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
576acce952bSliubo 		return ERR_PTR(-EROFS);
5772a1eb461SJosef Bacik 
57846c4e71eSFilipe Manana 	if (current->journal_info) {
5790860adfdSMiao Xie 		WARN_ON(type & TRANS_EXTWRITERS);
5802a1eb461SJosef Bacik 		h = current->journal_info;
581b50fff81SDavid Sterba 		refcount_inc(&h->use_count);
582b50fff81SDavid Sterba 		WARN_ON(refcount_read(&h->use_count) > 2);
5832a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
5842a1eb461SJosef Bacik 		h->block_rsv = NULL;
5852a1eb461SJosef Bacik 		goto got_it;
5862a1eb461SJosef Bacik 	}
587b5009945SJosef Bacik 
588b5009945SJosef Bacik 	/*
589b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
590b5009945SJosef Bacik 	 * the appropriate flushing if need be.
591b5009945SJosef Bacik 	 */
592003d7c59SJeff Mahoney 	if (num_items && root != fs_info->chunk_root) {
593ba2c4d4eSJosef Bacik 		struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
594ba2c4d4eSJosef Bacik 		u64 delayed_refs_bytes = 0;
595ba2c4d4eSJosef Bacik 
5960b246afaSJeff Mahoney 		qgroup_reserved = num_items * fs_info->nodesize;
597733e03a0SQu Wenruo 		ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
598003d7c59SJeff Mahoney 				enforce_qgroups);
599c5567237SArne Jansen 		if (ret)
600c5567237SArne Jansen 			return ERR_PTR(ret);
601c5567237SArne Jansen 
602ba2c4d4eSJosef Bacik 		/*
603ba2c4d4eSJosef Bacik 		 * We want to reserve all the bytes we may need all at once, so
604ba2c4d4eSJosef Bacik 		 * we only do 1 enospc flushing cycle per transaction start.  We
605ba2c4d4eSJosef Bacik 		 * accomplish this by simply assuming we'll do 2 x num_items
606ba2c4d4eSJosef Bacik 		 * worth of delayed refs updates in this trans handle, and
607ba2c4d4eSJosef Bacik 		 * refill that amount for whatever is missing in the reserve.
608ba2c4d4eSJosef Bacik 		 */
6092bd36e7bSJosef Bacik 		num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
6107f9fe614SJosef Bacik 		if (flush == BTRFS_RESERVE_FLUSH_ALL &&
6117f9fe614SJosef Bacik 		    delayed_refs_rsv->full == 0) {
612ba2c4d4eSJosef Bacik 			delayed_refs_bytes = num_bytes;
613ba2c4d4eSJosef Bacik 			num_bytes <<= 1;
614ba2c4d4eSJosef Bacik 		}
615ba2c4d4eSJosef Bacik 
61620dd2cbfSMiao Xie 		/*
61720dd2cbfSMiao Xie 		 * Do the reservation for the relocation root creation
61820dd2cbfSMiao Xie 		 */
619ee39b432SDavid Sterba 		if (need_reserve_reloc_root(root)) {
6200b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
62120dd2cbfSMiao Xie 			reloc_reserved = true;
62220dd2cbfSMiao Xie 		}
62320dd2cbfSMiao Xie 
624ba2c4d4eSJosef Bacik 		ret = btrfs_block_rsv_add(root, rsv, num_bytes, flush);
625ba2c4d4eSJosef Bacik 		if (ret)
626ba2c4d4eSJosef Bacik 			goto reserve_fail;
627ba2c4d4eSJosef Bacik 		if (delayed_refs_bytes) {
628ba2c4d4eSJosef Bacik 			btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
629ba2c4d4eSJosef Bacik 							  delayed_refs_bytes);
630ba2c4d4eSJosef Bacik 			num_bytes -= delayed_refs_bytes;
631ba2c4d4eSJosef Bacik 		}
6329c343784SJosef Bacik 
6339c343784SJosef Bacik 		if (rsv->space_info->force_alloc)
6349c343784SJosef Bacik 			do_chunk_alloc = true;
635ba2c4d4eSJosef Bacik 	} else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
636ba2c4d4eSJosef Bacik 		   !delayed_refs_rsv->full) {
637ba2c4d4eSJosef Bacik 		/*
638ba2c4d4eSJosef Bacik 		 * Some people call with btrfs_start_transaction(root, 0)
639ba2c4d4eSJosef Bacik 		 * because they can be throttled, but have some other mechanism
640ba2c4d4eSJosef Bacik 		 * for reserving space.  We still want these guys to refill the
641ba2c4d4eSJosef Bacik 		 * delayed block_rsv so just add 1 items worth of reservation
642ba2c4d4eSJosef Bacik 		 * here.
643ba2c4d4eSJosef Bacik 		 */
644ba2c4d4eSJosef Bacik 		ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
645b5009945SJosef Bacik 		if (ret)
646843fcf35SMiao Xie 			goto reserve_fail;
647b5009945SJosef Bacik 	}
648a22285a6SYan, Zheng again:
649f2f767e7SAlexandru Moise 	h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
650843fcf35SMiao Xie 	if (!h) {
651843fcf35SMiao Xie 		ret = -ENOMEM;
652843fcf35SMiao Xie 		goto alloc_fail;
653843fcf35SMiao Xie 	}
654a22285a6SYan, Zheng 
65598114659SJosef Bacik 	/*
65698114659SJosef Bacik 	 * If we are JOIN_NOLOCK we're already committing a transaction and
65798114659SJosef Bacik 	 * waiting on this guy, so we don't need to do the sb_start_intwrite
65898114659SJosef Bacik 	 * because we're already holding a ref.  We need this because we could
65998114659SJosef Bacik 	 * have raced in and did an fsync() on a file which can kick a commit
66098114659SJosef Bacik 	 * and then we deadlock with somebody doing a freeze.
661354aa0fbSMiao Xie 	 *
662354aa0fbSMiao Xie 	 * If we are ATTACH, it means we just want to catch the current
663354aa0fbSMiao Xie 	 * transaction and commit it, so we needn't do sb_start_intwrite().
66498114659SJosef Bacik 	 */
6650860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
6660b246afaSJeff Mahoney 		sb_start_intwrite(fs_info->sb);
667b2b5ef5cSJan Kara 
6682ff7e61eSJeff Mahoney 	if (may_wait_transaction(fs_info, type))
6692ff7e61eSJeff Mahoney 		wait_current_trans(fs_info);
670a22285a6SYan, Zheng 
671a4abeea4SJosef Bacik 	do {
6722ff7e61eSJeff Mahoney 		ret = join_transaction(fs_info, type);
673178260b2SMiao Xie 		if (ret == -EBUSY) {
6742ff7e61eSJeff Mahoney 			wait_current_trans(fs_info);
675a6d155d2SFilipe Manana 			if (unlikely(type == TRANS_ATTACH ||
676a6d155d2SFilipe Manana 				     type == TRANS_JOIN_NOSTART))
677178260b2SMiao Xie 				ret = -ENOENT;
678178260b2SMiao Xie 		}
679a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
680a4abeea4SJosef Bacik 
681a43f7f82SLiu Bo 	if (ret < 0)
682843fcf35SMiao Xie 		goto join_fail;
6830f7d52f4SChris Mason 
6840b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
685a22285a6SYan, Zheng 
686a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
687a22285a6SYan, Zheng 	h->transaction = cur_trans;
688d13603efSArne Jansen 	h->root = root;
689b50fff81SDavid Sterba 	refcount_set(&h->use_count, 1);
69064b63580SJeff Mahoney 	h->fs_info = root->fs_info;
6917174109cSQu Wenruo 
692a698d075SMiao Xie 	h->type = type;
693d9a0540aSFilipe Manana 	h->can_flush_pending_bgs = true;
694ea658badSJosef Bacik 	INIT_LIST_HEAD(&h->new_bgs);
695b7ec40d7SChris Mason 
696a22285a6SYan, Zheng 	smp_mb();
6973296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
6982ff7e61eSJeff Mahoney 	    may_wait_transaction(fs_info, type)) {
699abdd2e80SFilipe Manana 		current->journal_info = h;
7003a45bb20SJeff Mahoney 		btrfs_commit_transaction(h);
701a22285a6SYan, Zheng 		goto again;
702a22285a6SYan, Zheng 	}
7039ed74f2dSJosef Bacik 
704b5009945SJosef Bacik 	if (num_bytes) {
7050b246afaSJeff Mahoney 		trace_btrfs_space_reservation(fs_info, "transaction",
7062bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
7070b246afaSJeff Mahoney 		h->block_rsv = &fs_info->trans_block_rsv;
708b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
70920dd2cbfSMiao Xie 		h->reloc_reserved = reloc_reserved;
710a22285a6SYan, Zheng 	}
711a22285a6SYan, Zheng 
7122a1eb461SJosef Bacik got_it:
713bcf3a3e7SNikolay Borisov 	if (!current->journal_info)
714a22285a6SYan, Zheng 		current->journal_info = h;
715fcc99734SQu Wenruo 
716fcc99734SQu Wenruo 	/*
7179c343784SJosef Bacik 	 * If the space_info is marked ALLOC_FORCE then we'll get upgraded to
7189c343784SJosef Bacik 	 * ALLOC_FORCE the first run through, and then we won't allocate for
7199c343784SJosef Bacik 	 * anybody else who races in later.  We don't care about the return
7209c343784SJosef Bacik 	 * value here.
7219c343784SJosef Bacik 	 */
7229c343784SJosef Bacik 	if (do_chunk_alloc && num_bytes) {
7239c343784SJosef Bacik 		u64 flags = h->block_rsv->space_info->flags;
7249c343784SJosef Bacik 
7259c343784SJosef Bacik 		btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags),
7269c343784SJosef Bacik 				  CHUNK_ALLOC_NO_FORCE);
7279c343784SJosef Bacik 	}
7289c343784SJosef Bacik 
7299c343784SJosef Bacik 	/*
730fcc99734SQu Wenruo 	 * btrfs_record_root_in_trans() needs to alloc new extents, and may
731fcc99734SQu Wenruo 	 * call btrfs_join_transaction() while we're also starting a
732fcc99734SQu Wenruo 	 * transaction.
733fcc99734SQu Wenruo 	 *
734fcc99734SQu Wenruo 	 * Thus it need to be called after current->journal_info initialized,
735fcc99734SQu Wenruo 	 * or we can deadlock.
736fcc99734SQu Wenruo 	 */
737fcc99734SQu Wenruo 	btrfs_record_root_in_trans(h, root);
738fcc99734SQu Wenruo 
73979154b1bSChris Mason 	return h;
740843fcf35SMiao Xie 
741843fcf35SMiao Xie join_fail:
7420860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
7430b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
744843fcf35SMiao Xie 	kmem_cache_free(btrfs_trans_handle_cachep, h);
745843fcf35SMiao Xie alloc_fail:
746843fcf35SMiao Xie 	if (num_bytes)
7472ff7e61eSJeff Mahoney 		btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
74863f018beSNikolay Borisov 					num_bytes, NULL);
749843fcf35SMiao Xie reserve_fail:
750733e03a0SQu Wenruo 	btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
751843fcf35SMiao Xie 	return ERR_PTR(ret);
75279154b1bSChris Mason }
75379154b1bSChris Mason 
754f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
7555aed1dd8SAlexandru Moise 						   unsigned int num_items)
756f9295749SChris Mason {
75708e007d2SMiao Xie 	return start_transaction(root, num_items, TRANS_START,
758003d7c59SJeff Mahoney 				 BTRFS_RESERVE_FLUSH_ALL, true);
759f9295749SChris Mason }
760003d7c59SJeff Mahoney 
7618eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
7628eab77ffSFilipe Manana 					struct btrfs_root *root,
7637f9fe614SJosef Bacik 					unsigned int num_items)
7648eab77ffSFilipe Manana {
7657f9fe614SJosef Bacik 	return start_transaction(root, num_items, TRANS_START,
7667f9fe614SJosef Bacik 				 BTRFS_RESERVE_FLUSH_ALL_STEAL, false);
7678eab77ffSFilipe Manana }
7688407aa46SMiao Xie 
7697a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
770f9295749SChris Mason {
771003d7c59SJeff Mahoney 	return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
772003d7c59SJeff Mahoney 				 true);
773f9295749SChris Mason }
774f9295749SChris Mason 
7758d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
7760af3d00bSJosef Bacik {
777575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
778003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
7790af3d00bSJosef Bacik }
7800af3d00bSJosef Bacik 
781d4edf39bSMiao Xie /*
782a6d155d2SFilipe Manana  * Similar to regular join but it never starts a transaction when none is
783a6d155d2SFilipe Manana  * running or after waiting for the current one to finish.
784a6d155d2SFilipe Manana  */
785a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
786a6d155d2SFilipe Manana {
787a6d155d2SFilipe Manana 	return start_transaction(root, 0, TRANS_JOIN_NOSTART,
788a6d155d2SFilipe Manana 				 BTRFS_RESERVE_NO_FLUSH, true);
789a6d155d2SFilipe Manana }
790a6d155d2SFilipe Manana 
791a6d155d2SFilipe Manana /*
792d4edf39bSMiao Xie  * btrfs_attach_transaction() - catch the running transaction
793d4edf39bSMiao Xie  *
794d4edf39bSMiao Xie  * It is used when we want to commit the current the transaction, but
795d4edf39bSMiao Xie  * don't want to start a new one.
796d4edf39bSMiao Xie  *
797d4edf39bSMiao Xie  * Note: If this function return -ENOENT, it just means there is no
798d4edf39bSMiao Xie  * running transaction. But it is possible that the inactive transaction
799d4edf39bSMiao Xie  * is still in the memory, not fully on disk. If you hope there is no
800d4edf39bSMiao Xie  * inactive transaction in the fs when -ENOENT is returned, you should
801d4edf39bSMiao Xie  * invoke
802d4edf39bSMiao Xie  *     btrfs_attach_transaction_barrier()
803d4edf39bSMiao Xie  */
804354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
80560376ce4SJosef Bacik {
806575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_ATTACH,
807003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
80860376ce4SJosef Bacik }
80960376ce4SJosef Bacik 
810d4edf39bSMiao Xie /*
81190b6d283SWang Sheng-Hui  * btrfs_attach_transaction_barrier() - catch the running transaction
812d4edf39bSMiao Xie  *
81352042d8eSAndrea Gelmini  * It is similar to the above function, the difference is this one
814d4edf39bSMiao Xie  * will wait for all the inactive transactions until they fully
815d4edf39bSMiao Xie  * complete.
816d4edf39bSMiao Xie  */
817d4edf39bSMiao Xie struct btrfs_trans_handle *
818d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root)
819d4edf39bSMiao Xie {
820d4edf39bSMiao Xie 	struct btrfs_trans_handle *trans;
821d4edf39bSMiao Xie 
822575a75d6SAlexandru Moise 	trans = start_transaction(root, 0, TRANS_ATTACH,
823003d7c59SJeff Mahoney 				  BTRFS_RESERVE_NO_FLUSH, true);
8248d9e220cSAl Viro 	if (trans == ERR_PTR(-ENOENT))
8252ff7e61eSJeff Mahoney 		btrfs_wait_for_commit(root->fs_info, 0);
826d4edf39bSMiao Xie 
827d4edf39bSMiao Xie 	return trans;
828d4edf39bSMiao Xie }
829d4edf39bSMiao Xie 
830d352ac68SChris Mason /* wait for a transaction commit to be fully complete */
8312ff7e61eSJeff Mahoney static noinline void wait_for_commit(struct btrfs_transaction *commit)
83289ce8a63SChris Mason {
8334a9d8bdeSMiao Xie 	wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED);
83489ce8a63SChris Mason }
83589ce8a63SChris Mason 
8362ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
83746204592SSage Weil {
83846204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
8398cd2807fSMiao Xie 	int ret = 0;
84046204592SSage Weil 
84146204592SSage Weil 	if (transid) {
8420b246afaSJeff Mahoney 		if (transid <= fs_info->last_trans_committed)
843a4abeea4SJosef Bacik 			goto out;
84446204592SSage Weil 
84546204592SSage Weil 		/* find specified transaction */
8460b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8470b246afaSJeff Mahoney 		list_for_each_entry(t, &fs_info->trans_list, list) {
84846204592SSage Weil 			if (t->transid == transid) {
84946204592SSage Weil 				cur_trans = t;
8509b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
8518cd2807fSMiao Xie 				ret = 0;
85246204592SSage Weil 				break;
85346204592SSage Weil 			}
8548cd2807fSMiao Xie 			if (t->transid > transid) {
8558cd2807fSMiao Xie 				ret = 0;
85646204592SSage Weil 				break;
85746204592SSage Weil 			}
8588cd2807fSMiao Xie 		}
8590b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
86042383020SSage Weil 
86142383020SSage Weil 		/*
86242383020SSage Weil 		 * The specified transaction doesn't exist, or we
86342383020SSage Weil 		 * raced with btrfs_commit_transaction
86442383020SSage Weil 		 */
86542383020SSage Weil 		if (!cur_trans) {
8660b246afaSJeff Mahoney 			if (transid > fs_info->last_trans_committed)
86742383020SSage Weil 				ret = -EINVAL;
8688cd2807fSMiao Xie 			goto out;
86942383020SSage Weil 		}
87046204592SSage Weil 	} else {
87146204592SSage Weil 		/* find newest transaction that is committing | committed */
8720b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8730b246afaSJeff Mahoney 		list_for_each_entry_reverse(t, &fs_info->trans_list,
87446204592SSage Weil 					    list) {
8754a9d8bdeSMiao Xie 			if (t->state >= TRANS_STATE_COMMIT_START) {
8764a9d8bdeSMiao Xie 				if (t->state == TRANS_STATE_COMPLETED)
8773473f3c0SJosef Bacik 					break;
87846204592SSage Weil 				cur_trans = t;
8799b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
88046204592SSage Weil 				break;
88146204592SSage Weil 			}
88246204592SSage Weil 		}
8830b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
88446204592SSage Weil 		if (!cur_trans)
885a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
88646204592SSage Weil 	}
88746204592SSage Weil 
8882ff7e61eSJeff Mahoney 	wait_for_commit(cur_trans);
889724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
890a4abeea4SJosef Bacik out:
89146204592SSage Weil 	return ret;
89246204592SSage Weil }
89346204592SSage Weil 
8942ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info)
89537d1aeeeSChris Mason {
8962ff7e61eSJeff Mahoney 	wait_current_trans(fs_info);
89737d1aeeeSChris Mason }
89837d1aeeeSChris Mason 
8992ff7e61eSJeff Mahoney static int should_end_transaction(struct btrfs_trans_handle *trans)
9008929ecfaSYan, Zheng {
9012ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
9020b246afaSJeff Mahoney 
90364403612SJosef Bacik 	if (btrfs_check_space_for_delayed_refs(fs_info))
9041be41b78SJosef Bacik 		return 1;
90536ba022aSJosef Bacik 
9062ff7e61eSJeff Mahoney 	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
9078929ecfaSYan, Zheng }
9088929ecfaSYan, Zheng 
9093a45bb20SJeff Mahoney int btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
9108929ecfaSYan, Zheng {
9118929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9128929ecfaSYan, Zheng 
913a4abeea4SJosef Bacik 	smp_mb();
9143296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
9154a9d8bdeSMiao Xie 	    cur_trans->delayed_refs.flushing)
9168929ecfaSYan, Zheng 		return 1;
9178929ecfaSYan, Zheng 
9182ff7e61eSJeff Mahoney 	return should_end_transaction(trans);
9198929ecfaSYan, Zheng }
9208929ecfaSYan, Zheng 
921dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
922dc60c525SNikolay Borisov 
9230e34693fSNikolay Borisov {
924dc60c525SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
925dc60c525SNikolay Borisov 
9260e34693fSNikolay Borisov 	if (!trans->block_rsv) {
9270e34693fSNikolay Borisov 		ASSERT(!trans->bytes_reserved);
9280e34693fSNikolay Borisov 		return;
9290e34693fSNikolay Borisov 	}
9300e34693fSNikolay Borisov 
9310e34693fSNikolay Borisov 	if (!trans->bytes_reserved)
9320e34693fSNikolay Borisov 		return;
9330e34693fSNikolay Borisov 
9340e34693fSNikolay Borisov 	ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
9350e34693fSNikolay Borisov 	trace_btrfs_space_reservation(fs_info, "transaction",
9360e34693fSNikolay Borisov 				      trans->transid, trans->bytes_reserved, 0);
9370e34693fSNikolay Borisov 	btrfs_block_rsv_release(fs_info, trans->block_rsv,
93863f018beSNikolay Borisov 				trans->bytes_reserved, NULL);
9390e34693fSNikolay Borisov 	trans->bytes_reserved = 0;
9400e34693fSNikolay Borisov }
9410e34693fSNikolay Borisov 
94289ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
9433a45bb20SJeff Mahoney 				   int throttle)
94479154b1bSChris Mason {
9453a45bb20SJeff Mahoney 	struct btrfs_fs_info *info = trans->fs_info;
9468929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9474edc2ca3SDave Jones 	int err = 0;
948d6e4a428SChris Mason 
949b50fff81SDavid Sterba 	if (refcount_read(&trans->use_count) > 1) {
950b50fff81SDavid Sterba 		refcount_dec(&trans->use_count);
9512a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
9522a1eb461SJosef Bacik 		return 0;
9532a1eb461SJosef Bacik 	}
9542a1eb461SJosef Bacik 
955dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
9564c13d758SJosef Bacik 	trans->block_rsv = NULL;
957c5567237SArne Jansen 
9586c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
959ea658badSJosef Bacik 
9604fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
9614fbcdf66SFilipe Manana 
9620860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
9630b246afaSJeff Mahoney 		sb_end_intwrite(info->sb);
9646df7881aSJosef Bacik 
9658929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
96613c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
96713c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
9680860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
96989ce8a63SChris Mason 
970093258e6SDavid Sterba 	cond_wake_up(&cur_trans->writer_wait);
971724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
9729ed74f2dSJosef Bacik 
9739ed74f2dSJosef Bacik 	if (current->journal_info == trans)
9749ed74f2dSJosef Bacik 		current->journal_info = NULL;
975ab78c84dSChris Mason 
97624bbcf04SYan, Zheng 	if (throttle)
9772ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(info);
97824bbcf04SYan, Zheng 
979bf31f87fSDavid Sterba 	if (TRANS_ABORTED(trans) ||
9800b246afaSJeff Mahoney 	    test_bit(BTRFS_FS_STATE_ERROR, &info->fs_state)) {
9814e121c06SJosef Bacik 		wake_up_process(info->transaction_kthread);
982fbabd4a3SJosef Bacik 		if (TRANS_ABORTED(trans))
983fbabd4a3SJosef Bacik 			err = trans->aborted;
984fbabd4a3SJosef Bacik 		else
985fbabd4a3SJosef Bacik 			err = -EROFS;
9864e121c06SJosef Bacik 	}
98749b25e05SJeff Mahoney 
9884edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
9894edc2ca3SDave Jones 	return err;
99079154b1bSChris Mason }
99179154b1bSChris Mason 
9923a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans)
99389ce8a63SChris Mason {
9943a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 0);
99589ce8a63SChris Mason }
99689ce8a63SChris Mason 
9973a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
99889ce8a63SChris Mason {
9993a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 1);
100016cdcec7SMiao Xie }
100116cdcec7SMiao Xie 
1002d352ac68SChris Mason /*
1003d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1004d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1005690587d1SChris Mason  * those extents are sent to disk but does not wait on them
1006d352ac68SChris Mason  */
10072ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
10088cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
100979154b1bSChris Mason {
1010777e6bd7SChris Mason 	int err = 0;
10117c4452b9SChris Mason 	int werr = 0;
10120b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1013e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1014777e6bd7SChris Mason 	u64 start = 0;
10155f39d397SChris Mason 	u64 end;
10167c4452b9SChris Mason 
10176300463bSLiu Bo 	atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
10181728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1019e6138876SJosef Bacik 				      mark, &cached_state)) {
1020663dfbb0SFilipe Manana 		bool wait_writeback = false;
1021663dfbb0SFilipe Manana 
1022663dfbb0SFilipe Manana 		err = convert_extent_bit(dirty_pages, start, end,
1023663dfbb0SFilipe Manana 					 EXTENT_NEED_WAIT,
1024210aa277SDavid Sterba 					 mark, &cached_state);
1025663dfbb0SFilipe Manana 		/*
1026663dfbb0SFilipe Manana 		 * convert_extent_bit can return -ENOMEM, which is most of the
1027663dfbb0SFilipe Manana 		 * time a temporary error. So when it happens, ignore the error
1028663dfbb0SFilipe Manana 		 * and wait for writeback of this range to finish - because we
1029663dfbb0SFilipe Manana 		 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
1030bf89d38fSJeff Mahoney 		 * to __btrfs_wait_marked_extents() would not know that
1031bf89d38fSJeff Mahoney 		 * writeback for this range started and therefore wouldn't
1032bf89d38fSJeff Mahoney 		 * wait for it to finish - we don't want to commit a
1033bf89d38fSJeff Mahoney 		 * superblock that points to btree nodes/leafs for which
1034bf89d38fSJeff Mahoney 		 * writeback hasn't finished yet (and without errors).
1035663dfbb0SFilipe Manana 		 * We cleanup any entries left in the io tree when committing
103641e7acd3SNikolay Borisov 		 * the transaction (through extent_io_tree_release()).
1037663dfbb0SFilipe Manana 		 */
1038663dfbb0SFilipe Manana 		if (err == -ENOMEM) {
1039663dfbb0SFilipe Manana 			err = 0;
1040663dfbb0SFilipe Manana 			wait_writeback = true;
1041663dfbb0SFilipe Manana 		}
1042663dfbb0SFilipe Manana 		if (!err)
10431728366eSJosef Bacik 			err = filemap_fdatawrite_range(mapping, start, end);
10447c4452b9SChris Mason 		if (err)
10457c4452b9SChris Mason 			werr = err;
1046663dfbb0SFilipe Manana 		else if (wait_writeback)
1047663dfbb0SFilipe Manana 			werr = filemap_fdatawait_range(mapping, start, end);
1048e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1049663dfbb0SFilipe Manana 		cached_state = NULL;
10501728366eSJosef Bacik 		cond_resched();
10511728366eSJosef Bacik 		start = end + 1;
10527c4452b9SChris Mason 	}
10536300463bSLiu Bo 	atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1054690587d1SChris Mason 	return werr;
1055690587d1SChris Mason }
1056690587d1SChris Mason 
1057690587d1SChris Mason /*
1058690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1059690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1060690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
1061690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
1062690587d1SChris Mason  */
1063bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1064bf89d38fSJeff Mahoney 				       struct extent_io_tree *dirty_pages)
1065690587d1SChris Mason {
1066690587d1SChris Mason 	int err = 0;
1067690587d1SChris Mason 	int werr = 0;
10680b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1069e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1070690587d1SChris Mason 	u64 start = 0;
1071690587d1SChris Mason 	u64 end;
1072690587d1SChris Mason 
10731728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1074e6138876SJosef Bacik 				      EXTENT_NEED_WAIT, &cached_state)) {
1075663dfbb0SFilipe Manana 		/*
1076663dfbb0SFilipe Manana 		 * Ignore -ENOMEM errors returned by clear_extent_bit().
1077663dfbb0SFilipe Manana 		 * When committing the transaction, we'll remove any entries
1078663dfbb0SFilipe Manana 		 * left in the io tree. For a log commit, we don't remove them
1079663dfbb0SFilipe Manana 		 * after committing the log because the tree can be accessed
1080663dfbb0SFilipe Manana 		 * concurrently - we do it only at transaction commit time when
108141e7acd3SNikolay Borisov 		 * it's safe to do it (through extent_io_tree_release()).
1082663dfbb0SFilipe Manana 		 */
1083663dfbb0SFilipe Manana 		err = clear_extent_bit(dirty_pages, start, end,
1084ae0f1625SDavid Sterba 				       EXTENT_NEED_WAIT, 0, 0, &cached_state);
1085663dfbb0SFilipe Manana 		if (err == -ENOMEM)
1086663dfbb0SFilipe Manana 			err = 0;
1087663dfbb0SFilipe Manana 		if (!err)
10881728366eSJosef Bacik 			err = filemap_fdatawait_range(mapping, start, end);
1089777e6bd7SChris Mason 		if (err)
1090777e6bd7SChris Mason 			werr = err;
1091e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1092e38e2ed7SFilipe Manana 		cached_state = NULL;
1093777e6bd7SChris Mason 		cond_resched();
10941728366eSJosef Bacik 		start = end + 1;
1095777e6bd7SChris Mason 	}
10967c4452b9SChris Mason 	if (err)
10977c4452b9SChris Mason 		werr = err;
1098bf89d38fSJeff Mahoney 	return werr;
1099bf89d38fSJeff Mahoney }
1100656f30dbSFilipe Manana 
1101b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
1102bf89d38fSJeff Mahoney 		       struct extent_io_tree *dirty_pages)
1103bf89d38fSJeff Mahoney {
1104bf89d38fSJeff Mahoney 	bool errors = false;
1105bf89d38fSJeff Mahoney 	int err;
1106bf89d38fSJeff Mahoney 
1107bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1108bf89d38fSJeff Mahoney 	if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1109bf89d38fSJeff Mahoney 		errors = true;
1110bf89d38fSJeff Mahoney 
1111bf89d38fSJeff Mahoney 	if (errors && !err)
1112bf89d38fSJeff Mahoney 		err = -EIO;
1113bf89d38fSJeff Mahoney 	return err;
1114bf89d38fSJeff Mahoney }
1115bf89d38fSJeff Mahoney 
1116bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1117bf89d38fSJeff Mahoney {
1118bf89d38fSJeff Mahoney 	struct btrfs_fs_info *fs_info = log_root->fs_info;
1119bf89d38fSJeff Mahoney 	struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1120bf89d38fSJeff Mahoney 	bool errors = false;
1121bf89d38fSJeff Mahoney 	int err;
1122bf89d38fSJeff Mahoney 
1123bf89d38fSJeff Mahoney 	ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1124bf89d38fSJeff Mahoney 
1125bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1126656f30dbSFilipe Manana 	if ((mark & EXTENT_DIRTY) &&
11270b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1128656f30dbSFilipe Manana 		errors = true;
1129656f30dbSFilipe Manana 
1130656f30dbSFilipe Manana 	if ((mark & EXTENT_NEW) &&
11310b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1132656f30dbSFilipe Manana 		errors = true;
1133656f30dbSFilipe Manana 
1134bf89d38fSJeff Mahoney 	if (errors && !err)
1135bf89d38fSJeff Mahoney 		err = -EIO;
1136bf89d38fSJeff Mahoney 	return err;
113779154b1bSChris Mason }
113879154b1bSChris Mason 
1139690587d1SChris Mason /*
1140c9b577c0SNikolay Borisov  * When btree blocks are allocated the corresponding extents are marked dirty.
1141c9b577c0SNikolay Borisov  * This function ensures such extents are persisted on disk for transaction or
1142c9b577c0SNikolay Borisov  * log commit.
1143c9b577c0SNikolay Borisov  *
1144c9b577c0SNikolay Borisov  * @trans: transaction whose dirty pages we'd like to write
1145690587d1SChris Mason  */
114670458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
1147d0c803c4SChris Mason {
1148663dfbb0SFilipe Manana 	int ret;
1149c9b577c0SNikolay Borisov 	int ret2;
1150c9b577c0SNikolay Borisov 	struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
115170458a58SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1152c9b577c0SNikolay Borisov 	struct blk_plug plug;
1153663dfbb0SFilipe Manana 
1154c9b577c0SNikolay Borisov 	blk_start_plug(&plug);
1155c9b577c0SNikolay Borisov 	ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
1156c9b577c0SNikolay Borisov 	blk_finish_plug(&plug);
1157c9b577c0SNikolay Borisov 	ret2 = btrfs_wait_extents(fs_info, dirty_pages);
1158c9b577c0SNikolay Borisov 
115941e7acd3SNikolay Borisov 	extent_io_tree_release(&trans->transaction->dirty_pages);
1160663dfbb0SFilipe Manana 
1161c9b577c0SNikolay Borisov 	if (ret)
1162663dfbb0SFilipe Manana 		return ret;
1163c9b577c0SNikolay Borisov 	else if (ret2)
1164c9b577c0SNikolay Borisov 		return ret2;
1165c9b577c0SNikolay Borisov 	else
1166c9b577c0SNikolay Borisov 		return 0;
1167d0c803c4SChris Mason }
1168d0c803c4SChris Mason 
1169d352ac68SChris Mason /*
1170d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
1171d352ac68SChris Mason  *
1172d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
1173d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
1174d352ac68SChris Mason  * allocation tree.
1175d352ac68SChris Mason  *
1176d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
1177d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
1178d352ac68SChris Mason  */
11790b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
118079154b1bSChris Mason 			       struct btrfs_root *root)
118179154b1bSChris Mason {
118279154b1bSChris Mason 	int ret;
11830b86a832SChris Mason 	u64 old_root_bytenr;
118486b9f2ecSYan, Zheng 	u64 old_root_used;
11850b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
11860b246afaSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
118779154b1bSChris Mason 
118886b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
118956bec294SChris Mason 
119079154b1bSChris Mason 	while (1) {
11910b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
119286b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
1193ea526d18SJosef Bacik 		    old_root_used == btrfs_root_used(&root->root_item))
119479154b1bSChris Mason 			break;
119587ef2bb4SChris Mason 
11965d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
119779154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
11980b86a832SChris Mason 					&root->root_key,
11990b86a832SChris Mason 					&root->root_item);
120049b25e05SJeff Mahoney 		if (ret)
120149b25e05SJeff Mahoney 			return ret;
120256bec294SChris Mason 
120386b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
1204e7070be1SJosef Bacik 	}
1205276e680dSYan Zheng 
12060b86a832SChris Mason 	return 0;
12070b86a832SChris Mason }
12080b86a832SChris Mason 
1209d352ac68SChris Mason /*
1210d352ac68SChris Mason  * update all the cowonly tree roots on disk
121149b25e05SJeff Mahoney  *
121249b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
121349b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
121449b25e05SJeff Mahoney  * to clean up the delayed refs.
1215d352ac68SChris Mason  */
12169386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
12170b86a832SChris Mason {
12189386d8bcSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1219ea526d18SJosef Bacik 	struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
12201bbc621eSChris Mason 	struct list_head *io_bgs = &trans->transaction->io_bgs;
12210b86a832SChris Mason 	struct list_head *next;
122284234f3aSYan Zheng 	struct extent_buffer *eb;
122356bec294SChris Mason 	int ret;
122484234f3aSYan Zheng 
122584234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
122649b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
12279631e4ccSJosef Bacik 			      0, &eb, BTRFS_NESTING_COW);
122884234f3aSYan Zheng 	btrfs_tree_unlock(eb);
122984234f3aSYan Zheng 	free_extent_buffer(eb);
12300b86a832SChris Mason 
123149b25e05SJeff Mahoney 	if (ret)
123249b25e05SJeff Mahoney 		return ret;
123349b25e05SJeff Mahoney 
1234c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
123549b25e05SJeff Mahoney 	if (ret)
123649b25e05SJeff Mahoney 		return ret;
123787ef2bb4SChris Mason 
1238196c9d8dSDavid Sterba 	ret = btrfs_run_dev_stats(trans);
1239c16ce190SJosef Bacik 	if (ret)
1240c16ce190SJosef Bacik 		return ret;
12412b584c68SDavid Sterba 	ret = btrfs_run_dev_replace(trans);
1242c16ce190SJosef Bacik 	if (ret)
1243c16ce190SJosef Bacik 		return ret;
1244280f8bd2SLu Fengqi 	ret = btrfs_run_qgroups(trans);
1245c16ce190SJosef Bacik 	if (ret)
1246c16ce190SJosef Bacik 		return ret;
1247546adb0dSJan Schmidt 
1248bbebb3e0SDavid Sterba 	ret = btrfs_setup_space_cache(trans);
1249dcdf7f6dSJosef Bacik 	if (ret)
1250dcdf7f6dSJosef Bacik 		return ret;
1251dcdf7f6dSJosef Bacik 
1252546adb0dSJan Schmidt 	/* run_qgroups might have added some more refs */
1253c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1254c16ce190SJosef Bacik 	if (ret)
1255c16ce190SJosef Bacik 		return ret;
1256ea526d18SJosef Bacik again:
12570b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
12582ff7e61eSJeff Mahoney 		struct btrfs_root *root;
12590b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
12600b86a832SChris Mason 		list_del_init(next);
12610b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
1262e7070be1SJosef Bacik 		clear_bit(BTRFS_ROOT_DIRTY, &root->state);
126387ef2bb4SChris Mason 
12649e351cc8SJosef Bacik 		if (root != fs_info->extent_root)
12659e351cc8SJosef Bacik 			list_add_tail(&root->dirty_list,
12669e351cc8SJosef Bacik 				      &trans->transaction->switch_commits);
126749b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
126849b25e05SJeff Mahoney 		if (ret)
126949b25e05SJeff Mahoney 			return ret;
1270c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1271ea526d18SJosef Bacik 		if (ret)
1272ea526d18SJosef Bacik 			return ret;
127379154b1bSChris Mason 	}
1274276e680dSYan Zheng 
12751bbc621eSChris Mason 	while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
12765742d15fSDavid Sterba 		ret = btrfs_write_dirty_block_groups(trans);
1277ea526d18SJosef Bacik 		if (ret)
1278ea526d18SJosef Bacik 			return ret;
1279c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1280ea526d18SJosef Bacik 		if (ret)
1281ea526d18SJosef Bacik 			return ret;
1282ea526d18SJosef Bacik 	}
1283ea526d18SJosef Bacik 
1284ea526d18SJosef Bacik 	if (!list_empty(&fs_info->dirty_cowonly_roots))
1285ea526d18SJosef Bacik 		goto again;
1286ea526d18SJosef Bacik 
12879e351cc8SJosef Bacik 	list_add_tail(&fs_info->extent_root->dirty_list,
12889e351cc8SJosef Bacik 		      &trans->transaction->switch_commits);
12899f6cbcbbSDavid Sterba 
12909f6cbcbbSDavid Sterba 	/* Update dev-replace pointer once everything is committed */
12919f6cbcbbSDavid Sterba 	fs_info->dev_replace.committed_cursor_left =
12929f6cbcbbSDavid Sterba 		fs_info->dev_replace.cursor_left_last_write_of_item;
12938dabb742SStefan Behrens 
129479154b1bSChris Mason 	return 0;
129579154b1bSChris Mason }
129679154b1bSChris Mason 
1297d352ac68SChris Mason /*
1298d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
1299d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
1300d352ac68SChris Mason  * be deleted
1301d352ac68SChris Mason  */
1302cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root)
13035eda7b5eSChris Mason {
13040b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13050b246afaSJeff Mahoney 
13060b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1307dc9492c1SJosef Bacik 	if (list_empty(&root->root_list)) {
1308dc9492c1SJosef Bacik 		btrfs_grab_root(root);
13090b246afaSJeff Mahoney 		list_add_tail(&root->root_list, &fs_info->dead_roots);
1310dc9492c1SJosef Bacik 	}
13110b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
13125eda7b5eSChris Mason }
13135eda7b5eSChris Mason 
1314d352ac68SChris Mason /*
13155d4f98a2SYan Zheng  * update all the cowonly tree roots on disk
1316d352ac68SChris Mason  */
13177e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
13180f7d52f4SChris Mason {
13197e4443d9SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
13200f7d52f4SChris Mason 	struct btrfs_root *gang[8];
13210f7d52f4SChris Mason 	int i;
13220f7d52f4SChris Mason 	int ret;
132354aa1f4dSChris Mason 	int err = 0;
132454aa1f4dSChris Mason 
1325a4abeea4SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
13260f7d52f4SChris Mason 	while (1) {
13275d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
13285d4f98a2SYan Zheng 						 (void **)gang, 0,
13290f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
13300f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
13310f7d52f4SChris Mason 		if (ret == 0)
13320f7d52f4SChris Mason 			break;
13330f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
13345b4aacefSJeff Mahoney 			struct btrfs_root *root = gang[i];
13355d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
13362619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
13370f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
1338a4abeea4SJosef Bacik 			spin_unlock(&fs_info->fs_roots_radix_lock);
133931153d81SYan Zheng 
1340e02119d5SChris Mason 			btrfs_free_log(trans, root);
13415d4f98a2SYan Zheng 			btrfs_update_reloc_root(trans, root);
1342e02119d5SChris Mason 
134382d5902dSLi Zefan 			btrfs_save_ino_cache(root, trans);
134482d5902dSLi Zefan 
1345f1ebcc74SLiu Bo 			/* see comments in should_cow_block() */
134627cdeb70SMiao Xie 			clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1347c7548af6SChris Mason 			smp_mb__after_atomic();
1348f1ebcc74SLiu Bo 
1349978d910dSYan Zheng 			if (root->commit_root != root->node) {
13509e351cc8SJosef Bacik 				list_add_tail(&root->dirty_list,
13519e351cc8SJosef Bacik 					&trans->transaction->switch_commits);
1352978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
1353978d910dSYan Zheng 						    root->node);
1354978d910dSYan Zheng 			}
135531153d81SYan Zheng 
13565d4f98a2SYan Zheng 			err = btrfs_update_root(trans, fs_info->tree_root,
13570f7d52f4SChris Mason 						&root->root_key,
13580f7d52f4SChris Mason 						&root->root_item);
1359a4abeea4SJosef Bacik 			spin_lock(&fs_info->fs_roots_radix_lock);
136054aa1f4dSChris Mason 			if (err)
136154aa1f4dSChris Mason 				break;
1362733e03a0SQu Wenruo 			btrfs_qgroup_free_meta_all_pertrans(root);
13630f7d52f4SChris Mason 		}
13649f3a7427SChris Mason 	}
1365a4abeea4SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
136654aa1f4dSChris Mason 	return err;
13670f7d52f4SChris Mason }
13680f7d52f4SChris Mason 
1369d352ac68SChris Mason /*
1370de78b51aSEric Sandeen  * defrag a given btree.
1371de78b51aSEric Sandeen  * Every leaf in the btree is read and defragged.
1372d352ac68SChris Mason  */
1373de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root)
1374e9d0b13bSChris Mason {
1375e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
1376e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
13778929ecfaSYan, Zheng 	int ret;
1378e9d0b13bSChris Mason 
137927cdeb70SMiao Xie 	if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
1380e9d0b13bSChris Mason 		return 0;
13818929ecfaSYan, Zheng 
13826b80053dSChris Mason 	while (1) {
13838929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
13848929ecfaSYan, Zheng 		if (IS_ERR(trans))
13858929ecfaSYan, Zheng 			return PTR_ERR(trans);
13868929ecfaSYan, Zheng 
1387de78b51aSEric Sandeen 		ret = btrfs_defrag_leaves(trans, root);
13888929ecfaSYan, Zheng 
13893a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
13902ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(info);
1391e9d0b13bSChris Mason 		cond_resched();
1392e9d0b13bSChris Mason 
1393ab8d0fc4SJeff Mahoney 		if (btrfs_fs_closing(info) || ret != -EAGAIN)
1394e9d0b13bSChris Mason 			break;
1395210549ebSDavid Sterba 
1396ab8d0fc4SJeff Mahoney 		if (btrfs_defrag_cancelled(info)) {
1397ab8d0fc4SJeff Mahoney 			btrfs_debug(info, "defrag_root cancelled");
1398210549ebSDavid Sterba 			ret = -EAGAIN;
1399210549ebSDavid Sterba 			break;
1400210549ebSDavid Sterba 		}
1401e9d0b13bSChris Mason 	}
140227cdeb70SMiao Xie 	clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
14038929ecfaSYan, Zheng 	return ret;
1404e9d0b13bSChris Mason }
1405e9d0b13bSChris Mason 
1406d352ac68SChris Mason /*
14076426c7adSQu Wenruo  * Do all special snapshot related qgroup dirty hack.
14086426c7adSQu Wenruo  *
14096426c7adSQu Wenruo  * Will do all needed qgroup inherit and dirty hack like switch commit
14106426c7adSQu Wenruo  * roots inside one transaction and write all btree into disk, to make
14116426c7adSQu Wenruo  * qgroup works.
14126426c7adSQu Wenruo  */
14136426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
14146426c7adSQu Wenruo 				   struct btrfs_root *src,
14156426c7adSQu Wenruo 				   struct btrfs_root *parent,
14166426c7adSQu Wenruo 				   struct btrfs_qgroup_inherit *inherit,
14176426c7adSQu Wenruo 				   u64 dst_objectid)
14186426c7adSQu Wenruo {
14196426c7adSQu Wenruo 	struct btrfs_fs_info *fs_info = src->fs_info;
14206426c7adSQu Wenruo 	int ret;
14216426c7adSQu Wenruo 
14226426c7adSQu Wenruo 	/*
14236426c7adSQu Wenruo 	 * Save some performance in the case that qgroups are not
14246426c7adSQu Wenruo 	 * enabled. If this check races with the ioctl, rescan will
14256426c7adSQu Wenruo 	 * kick in anyway.
14266426c7adSQu Wenruo 	 */
14279ea6e2b5SDavid Sterba 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
14286426c7adSQu Wenruo 		return 0;
14296426c7adSQu Wenruo 
14306426c7adSQu Wenruo 	/*
143152042d8eSAndrea Gelmini 	 * Ensure dirty @src will be committed.  Or, after coming
14324d31778aSQu Wenruo 	 * commit_fs_roots() and switch_commit_roots(), any dirty but not
14334d31778aSQu Wenruo 	 * recorded root will never be updated again, causing an outdated root
14344d31778aSQu Wenruo 	 * item.
14354d31778aSQu Wenruo 	 */
14364d31778aSQu Wenruo 	record_root_in_trans(trans, src, 1);
14374d31778aSQu Wenruo 
14384d31778aSQu Wenruo 	/*
14396426c7adSQu Wenruo 	 * We are going to commit transaction, see btrfs_commit_transaction()
14406426c7adSQu Wenruo 	 * comment for reason locking tree_log_mutex
14416426c7adSQu Wenruo 	 */
14426426c7adSQu Wenruo 	mutex_lock(&fs_info->tree_log_mutex);
14436426c7adSQu Wenruo 
14447e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
14456426c7adSQu Wenruo 	if (ret)
14466426c7adSQu Wenruo 		goto out;
1447460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
14486426c7adSQu Wenruo 	if (ret < 0)
14496426c7adSQu Wenruo 		goto out;
14506426c7adSQu Wenruo 
14516426c7adSQu Wenruo 	/* Now qgroup are all updated, we can inherit it to new qgroups */
1452a9377422SLu Fengqi 	ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
14536426c7adSQu Wenruo 				   inherit);
14546426c7adSQu Wenruo 	if (ret < 0)
14556426c7adSQu Wenruo 		goto out;
14566426c7adSQu Wenruo 
14576426c7adSQu Wenruo 	/*
14586426c7adSQu Wenruo 	 * Now we do a simplified commit transaction, which will:
14596426c7adSQu Wenruo 	 * 1) commit all subvolume and extent tree
14606426c7adSQu Wenruo 	 *    To ensure all subvolume and extent tree have a valid
14616426c7adSQu Wenruo 	 *    commit_root to accounting later insert_dir_item()
14626426c7adSQu Wenruo 	 * 2) write all btree blocks onto disk
14636426c7adSQu Wenruo 	 *    This is to make sure later btree modification will be cowed
14646426c7adSQu Wenruo 	 *    Or commit_root can be populated and cause wrong qgroup numbers
14656426c7adSQu Wenruo 	 * In this simplified commit, we don't really care about other trees
14666426c7adSQu Wenruo 	 * like chunk and root tree, as they won't affect qgroup.
14676426c7adSQu Wenruo 	 * And we don't write super to avoid half committed status.
14686426c7adSQu Wenruo 	 */
14699386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
14706426c7adSQu Wenruo 	if (ret)
14716426c7adSQu Wenruo 		goto out;
1472889bfa39SJosef Bacik 	switch_commit_roots(trans);
147370458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
14746426c7adSQu Wenruo 	if (ret)
1475f7af3934SDavid Sterba 		btrfs_handle_fs_error(fs_info, ret,
14766426c7adSQu Wenruo 			"Error while writing out transaction for qgroup");
14776426c7adSQu Wenruo 
14786426c7adSQu Wenruo out:
14796426c7adSQu Wenruo 	mutex_unlock(&fs_info->tree_log_mutex);
14806426c7adSQu Wenruo 
14816426c7adSQu Wenruo 	/*
14826426c7adSQu Wenruo 	 * Force parent root to be updated, as we recorded it before so its
14836426c7adSQu Wenruo 	 * last_trans == cur_transid.
14846426c7adSQu Wenruo 	 * Or it won't be committed again onto disk after later
14856426c7adSQu Wenruo 	 * insert_dir_item()
14866426c7adSQu Wenruo 	 */
14876426c7adSQu Wenruo 	if (!ret)
14886426c7adSQu Wenruo 		record_root_in_trans(trans, parent, 1);
14896426c7adSQu Wenruo 	return ret;
14906426c7adSQu Wenruo }
14916426c7adSQu Wenruo 
14926426c7adSQu Wenruo /*
1493d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
1494aec8030aSMiao Xie  * transaction commit.  This does the actual creation.
1495aec8030aSMiao Xie  *
1496aec8030aSMiao Xie  * Note:
1497aec8030aSMiao Xie  * If the error which may affect the commitment of the current transaction
1498aec8030aSMiao Xie  * happens, we should return the error number. If the error which just affect
1499aec8030aSMiao Xie  * the creation of the pending snapshots, just return 0.
1500d352ac68SChris Mason  */
150180b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
15023063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
15033063d29fSChris Mason {
150408d50ca3SNikolay Borisov 
150508d50ca3SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
15063063d29fSChris Mason 	struct btrfs_key key;
150780b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
15083063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
15093063d29fSChris Mason 	struct btrfs_root *root = pending->root;
15106bdb72deSSage Weil 	struct btrfs_root *parent_root;
151198c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
15126bdb72deSSage Weil 	struct inode *parent_inode;
151342874b3dSMiao Xie 	struct btrfs_path *path;
151442874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
1515a22285a6SYan, Zheng 	struct dentry *dentry;
15163063d29fSChris Mason 	struct extent_buffer *tmp;
1517925baeddSChris Mason 	struct extent_buffer *old;
151895582b00SDeepa Dinamani 	struct timespec64 cur_time;
1519aec8030aSMiao Xie 	int ret = 0;
1520d68fc57bSYan, Zheng 	u64 to_reserve = 0;
15216bdb72deSSage Weil 	u64 index = 0;
1522a22285a6SYan, Zheng 	u64 objectid;
1523b83cc969SLi Zefan 	u64 root_flags;
15243063d29fSChris Mason 
15258546b570SDavid Sterba 	ASSERT(pending->path);
15268546b570SDavid Sterba 	path = pending->path;
152742874b3dSMiao Xie 
1528b0c0ea63SDavid Sterba 	ASSERT(pending->root_item);
1529b0c0ea63SDavid Sterba 	new_root_item = pending->root_item;
1530a22285a6SYan, Zheng 
1531aec8030aSMiao Xie 	pending->error = btrfs_find_free_objectid(tree_root, &objectid);
1532aec8030aSMiao Xie 	if (pending->error)
15336fa9700eSMiao Xie 		goto no_free_objectid;
15343063d29fSChris Mason 
1535d6726335SQu Wenruo 	/*
1536d6726335SQu Wenruo 	 * Make qgroup to skip current new snapshot's qgroupid, as it is
1537d6726335SQu Wenruo 	 * accounted by later btrfs_qgroup_inherit().
1538d6726335SQu Wenruo 	 */
1539d6726335SQu Wenruo 	btrfs_set_skip_qgroup(trans, objectid);
1540d6726335SQu Wenruo 
1541147d256eSZhaolei 	btrfs_reloc_pre_snapshot(pending, &to_reserve);
1542d68fc57bSYan, Zheng 
1543d68fc57bSYan, Zheng 	if (to_reserve > 0) {
1544aec8030aSMiao Xie 		pending->error = btrfs_block_rsv_add(root,
1545aec8030aSMiao Xie 						     &pending->block_rsv,
154608e007d2SMiao Xie 						     to_reserve,
154708e007d2SMiao Xie 						     BTRFS_RESERVE_NO_FLUSH);
1548aec8030aSMiao Xie 		if (pending->error)
1549d6726335SQu Wenruo 			goto clear_skip_qgroup;
1550d68fc57bSYan, Zheng 	}
1551d68fc57bSYan, Zheng 
15523063d29fSChris Mason 	key.objectid = objectid;
1553a22285a6SYan, Zheng 	key.offset = (u64)-1;
1554a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
15553063d29fSChris Mason 
15566fa9700eSMiao Xie 	rsv = trans->block_rsv;
1557a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
15582382c5ccSLiu Bo 	trans->bytes_reserved = trans->block_rsv->reserved;
15590b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
156088d3a5aaSJosef Bacik 				      trans->transid,
156188d3a5aaSJosef Bacik 				      trans->bytes_reserved, 1);
1562a22285a6SYan, Zheng 	dentry = pending->dentry;
1563e9662f70SMiao Xie 	parent_inode = pending->dir;
1564a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
15656426c7adSQu Wenruo 	record_root_in_trans(trans, parent_root, 0);
1566a22285a6SYan, Zheng 
1567c2050a45SDeepa Dinamani 	cur_time = current_time(parent_inode);
156804b285f3SDeepa Dinamani 
15696bdb72deSSage Weil 	/*
15706bdb72deSSage Weil 	 * insert the directory item
15716bdb72deSSage Weil 	 */
1572877574e2SNikolay Borisov 	ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
157349b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
157442874b3dSMiao Xie 
157542874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
157642874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
15774a0cc7caSNikolay Borisov 					 btrfs_ino(BTRFS_I(parent_inode)),
157842874b3dSMiao Xie 					 dentry->d_name.name,
157942874b3dSMiao Xie 					 dentry->d_name.len, 0);
158042874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1581fe66a05aSChris Mason 		pending->error = -EEXIST;
1582aec8030aSMiao Xie 		goto dir_item_existed;
158342874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
158442874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
158566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15868732d44fSMiao Xie 		goto fail;
158779787eaaSJeff Mahoney 	}
158842874b3dSMiao Xie 	btrfs_release_path(path);
15896bdb72deSSage Weil 
1590e999376fSChris Mason 	/*
1591e999376fSChris Mason 	 * pull in the delayed directory update
1592e999376fSChris Mason 	 * and the delayed inode item
1593e999376fSChris Mason 	 * otherwise we corrupt the FS during
1594e999376fSChris Mason 	 * snapshot
1595e999376fSChris Mason 	 */
1596e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
15978732d44fSMiao Xie 	if (ret) {	/* Transaction aborted */
159866642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15998732d44fSMiao Xie 		goto fail;
16008732d44fSMiao Xie 	}
1601e999376fSChris Mason 
16026426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
16036bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
16046bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
160508fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
16066bdb72deSSage Weil 
1607b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1608b83cc969SLi Zefan 	if (pending->readonly)
1609b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1610b83cc969SLi Zefan 	else
1611b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1612b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1613b83cc969SLi Zefan 
16148ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
16158ea05e3aSAlexander Block 			trans->transid);
1616807fc790SAndy Shevchenko 	generate_random_guid(new_root_item->uuid);
16178ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
16188ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
161970023da2SStefan Behrens 	if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
162070023da2SStefan Behrens 		memset(new_root_item->received_uuid, 0,
162170023da2SStefan Behrens 		       sizeof(new_root_item->received_uuid));
16228ea05e3aSAlexander Block 		memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
16238ea05e3aSAlexander Block 		memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
16248ea05e3aSAlexander Block 		btrfs_set_root_stransid(new_root_item, 0);
16258ea05e3aSAlexander Block 		btrfs_set_root_rtransid(new_root_item, 0);
162670023da2SStefan Behrens 	}
16273cae210fSQu Wenruo 	btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
16283cae210fSQu Wenruo 	btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
162970023da2SStefan Behrens 	btrfs_set_root_otransid(new_root_item, trans->transid);
16308ea05e3aSAlexander Block 
1631925baeddSChris Mason 	old = btrfs_lock_root_node(root);
16329631e4ccSJosef Bacik 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old,
16339631e4ccSJosef Bacik 			      BTRFS_NESTING_COW);
163479787eaaSJeff Mahoney 	if (ret) {
163579787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
163679787eaaSJeff Mahoney 		free_extent_buffer(old);
163766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16388732d44fSMiao Xie 		goto fail;
163979787eaaSJeff Mahoney 	}
164049b25e05SJeff Mahoney 
164149b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
164279787eaaSJeff Mahoney 	/* clean up in any case */
1643925baeddSChris Mason 	btrfs_tree_unlock(old);
1644925baeddSChris Mason 	free_extent_buffer(old);
16458732d44fSMiao Xie 	if (ret) {
164666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16478732d44fSMiao Xie 		goto fail;
16488732d44fSMiao Xie 	}
1649f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
165027cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1651f1ebcc74SLiu Bo 	smp_wmb();
1652f1ebcc74SLiu Bo 
16535d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1654a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1655a22285a6SYan, Zheng 	key.offset = trans->transid;
1656a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1657925baeddSChris Mason 	btrfs_tree_unlock(tmp);
16583063d29fSChris Mason 	free_extent_buffer(tmp);
16598732d44fSMiao Xie 	if (ret) {
166066642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16618732d44fSMiao Xie 		goto fail;
16628732d44fSMiao Xie 	}
16630660b5afSChris Mason 
1664a22285a6SYan, Zheng 	/*
1665a22285a6SYan, Zheng 	 * insert root back/forward references
1666a22285a6SYan, Zheng 	 */
16676025c19fSLu Fengqi 	ret = btrfs_add_root_ref(trans, objectid,
1668a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
16694a0cc7caSNikolay Borisov 				 btrfs_ino(BTRFS_I(parent_inode)), index,
1670a22285a6SYan, Zheng 				 dentry->d_name.name, dentry->d_name.len);
16718732d44fSMiao Xie 	if (ret) {
167266642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16738732d44fSMiao Xie 		goto fail;
16748732d44fSMiao Xie 	}
1675a22285a6SYan, Zheng 
1676a22285a6SYan, Zheng 	key.offset = (u64)-1;
16772dfb1e43SQu Wenruo 	pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev);
167879787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
167979787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
16802d892ccdSFilipe Manana 		pending->snap = NULL;
168166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16828732d44fSMiao Xie 		goto fail;
168379787eaaSJeff Mahoney 	}
1684d68fc57bSYan, Zheng 
168549b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
16868732d44fSMiao Xie 	if (ret) {
168766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16888732d44fSMiao Xie 		goto fail;
16898732d44fSMiao Xie 	}
1690361048f5SMiao Xie 
1691c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
16928732d44fSMiao Xie 	if (ret) {
169366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16948732d44fSMiao Xie 		goto fail;
16958732d44fSMiao Xie 	}
169642874b3dSMiao Xie 
16976426c7adSQu Wenruo 	/*
16986426c7adSQu Wenruo 	 * Do special qgroup accounting for snapshot, as we do some qgroup
16996426c7adSQu Wenruo 	 * snapshot hack to do fast snapshot.
17006426c7adSQu Wenruo 	 * To co-operate with that hack, we do hack again.
17016426c7adSQu Wenruo 	 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
17026426c7adSQu Wenruo 	 */
17036426c7adSQu Wenruo 	ret = qgroup_account_snapshot(trans, root, parent_root,
17046426c7adSQu Wenruo 				      pending->inherit, objectid);
17056426c7adSQu Wenruo 	if (ret < 0)
17066426c7adSQu Wenruo 		goto fail;
17076426c7adSQu Wenruo 
1708684572dfSLu Fengqi 	ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1709684572dfSLu Fengqi 				    dentry->d_name.len, BTRFS_I(parent_inode),
1710684572dfSLu Fengqi 				    &key, BTRFS_FT_DIR, index);
171142874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
17129c52057cSChris Mason 	BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
17138732d44fSMiao Xie 	if (ret) {
171466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
17158732d44fSMiao Xie 		goto fail;
17168732d44fSMiao Xie 	}
171742874b3dSMiao Xie 
17186ef06d27SNikolay Borisov 	btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
171942874b3dSMiao Xie 					 dentry->d_name.len * 2);
172004b285f3SDeepa Dinamani 	parent_inode->i_mtime = parent_inode->i_ctime =
1721c2050a45SDeepa Dinamani 		current_time(parent_inode);
1722be6aef60SJosef Bacik 	ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode);
1723dd5f9615SStefan Behrens 	if (ret) {
172466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1725dd5f9615SStefan Behrens 		goto fail;
1726dd5f9615SStefan Behrens 	}
1727807fc790SAndy Shevchenko 	ret = btrfs_uuid_tree_add(trans, new_root_item->uuid,
1728807fc790SAndy Shevchenko 				  BTRFS_UUID_KEY_SUBVOL,
1729cdb345a8SLu Fengqi 				  objectid);
1730dd5f9615SStefan Behrens 	if (ret) {
173166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1732dd5f9615SStefan Behrens 		goto fail;
1733dd5f9615SStefan Behrens 	}
1734dd5f9615SStefan Behrens 	if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1735cdb345a8SLu Fengqi 		ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
1736dd5f9615SStefan Behrens 					  BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1737dd5f9615SStefan Behrens 					  objectid);
1738dd5f9615SStefan Behrens 		if (ret && ret != -EEXIST) {
173966642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
1740dd5f9615SStefan Behrens 			goto fail;
1741dd5f9615SStefan Behrens 		}
1742dd5f9615SStefan Behrens 	}
1743d6726335SQu Wenruo 
1744c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1745d6726335SQu Wenruo 	if (ret) {
174666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1747d6726335SQu Wenruo 		goto fail;
1748d6726335SQu Wenruo 	}
1749d6726335SQu Wenruo 
17503063d29fSChris Mason fail:
1751aec8030aSMiao Xie 	pending->error = ret;
1752aec8030aSMiao Xie dir_item_existed:
175398c9942aSLiu Bo 	trans->block_rsv = rsv;
17542382c5ccSLiu Bo 	trans->bytes_reserved = 0;
1755d6726335SQu Wenruo clear_skip_qgroup:
1756d6726335SQu Wenruo 	btrfs_clear_skip_qgroup(trans);
17576fa9700eSMiao Xie no_free_objectid:
17586fa9700eSMiao Xie 	kfree(new_root_item);
1759b0c0ea63SDavid Sterba 	pending->root_item = NULL;
176042874b3dSMiao Xie 	btrfs_free_path(path);
17618546b570SDavid Sterba 	pending->path = NULL;
17628546b570SDavid Sterba 
176349b25e05SJeff Mahoney 	return ret;
17643063d29fSChris Mason }
17653063d29fSChris Mason 
1766d352ac68SChris Mason /*
1767d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1768d352ac68SChris Mason  */
176908d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
17703063d29fSChris Mason {
1771aec8030aSMiao Xie 	struct btrfs_pending_snapshot *pending, *next;
17723063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
1773aec8030aSMiao Xie 	int ret = 0;
17743de4586cSChris Mason 
1775aec8030aSMiao Xie 	list_for_each_entry_safe(pending, next, head, list) {
1776aec8030aSMiao Xie 		list_del(&pending->list);
177708d50ca3SNikolay Borisov 		ret = create_pending_snapshot(trans, pending);
1778aec8030aSMiao Xie 		if (ret)
1779aec8030aSMiao Xie 			break;
1780aec8030aSMiao Xie 	}
1781aec8030aSMiao Xie 	return ret;
17823de4586cSChris Mason }
17833de4586cSChris Mason 
17842ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info)
17855d4f98a2SYan Zheng {
17865d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
17875d4f98a2SYan Zheng 	struct btrfs_super_block *super;
17885d4f98a2SYan Zheng 
17890b246afaSJeff Mahoney 	super = fs_info->super_copy;
17905d4f98a2SYan Zheng 
17910b246afaSJeff Mahoney 	root_item = &fs_info->chunk_root->root_item;
1792093e037cSDavid Sterba 	super->chunk_root = root_item->bytenr;
1793093e037cSDavid Sterba 	super->chunk_root_generation = root_item->generation;
1794093e037cSDavid Sterba 	super->chunk_root_level = root_item->level;
17955d4f98a2SYan Zheng 
17960b246afaSJeff Mahoney 	root_item = &fs_info->tree_root->root_item;
1797093e037cSDavid Sterba 	super->root = root_item->bytenr;
1798093e037cSDavid Sterba 	super->generation = root_item->generation;
1799093e037cSDavid Sterba 	super->root_level = root_item->level;
18000b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
1801093e037cSDavid Sterba 		super->cache_generation = root_item->generation;
18020b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
1803093e037cSDavid Sterba 		super->uuid_tree_generation = root_item->generation;
18045d4f98a2SYan Zheng }
18055d4f98a2SYan Zheng 
1806f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1807f36f3042SChris Mason {
18084a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
1809f36f3042SChris Mason 	int ret = 0;
18104a9d8bdeSMiao Xie 
1811a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
18124a9d8bdeSMiao Xie 	trans = info->running_transaction;
18134a9d8bdeSMiao Xie 	if (trans)
18144a9d8bdeSMiao Xie 		ret = (trans->state >= TRANS_STATE_COMMIT_START);
1815a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1816f36f3042SChris Mason 	return ret;
1817f36f3042SChris Mason }
1818f36f3042SChris Mason 
18198929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
18208929ecfaSYan, Zheng {
18214a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
18228929ecfaSYan, Zheng 	int ret = 0;
18234a9d8bdeSMiao Xie 
1824a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
18254a9d8bdeSMiao Xie 	trans = info->running_transaction;
18264a9d8bdeSMiao Xie 	if (trans)
18274a9d8bdeSMiao Xie 		ret = is_transaction_blocked(trans);
1828a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
18298929ecfaSYan, Zheng 	return ret;
18308929ecfaSYan, Zheng }
18318929ecfaSYan, Zheng 
1832bb9c12c9SSage Weil /*
1833bb9c12c9SSage Weil  * wait for the current transaction commit to start and block subsequent
1834bb9c12c9SSage Weil  * transaction joins
1835bb9c12c9SSage Weil  */
18362ff7e61eSJeff Mahoney static void wait_current_trans_commit_start(struct btrfs_fs_info *fs_info,
1837bb9c12c9SSage Weil 					    struct btrfs_transaction *trans)
1838bb9c12c9SSage Weil {
18392ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_blocked_wait,
1840bf31f87fSDavid Sterba 		   trans->state >= TRANS_STATE_COMMIT_START ||
1841bf31f87fSDavid Sterba 		   TRANS_ABORTED(trans));
1842bb9c12c9SSage Weil }
1843bb9c12c9SSage Weil 
1844bb9c12c9SSage Weil /*
1845bb9c12c9SSage Weil  * wait for the current transaction to start and then become unblocked.
1846bb9c12c9SSage Weil  * caller holds ref.
1847bb9c12c9SSage Weil  */
18482ff7e61eSJeff Mahoney static void wait_current_trans_commit_start_and_unblock(
18492ff7e61eSJeff Mahoney 					struct btrfs_fs_info *fs_info,
1850bb9c12c9SSage Weil 					struct btrfs_transaction *trans)
1851bb9c12c9SSage Weil {
18522ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_wait,
1853bf31f87fSDavid Sterba 		   trans->state >= TRANS_STATE_UNBLOCKED ||
1854bf31f87fSDavid Sterba 		   TRANS_ABORTED(trans));
1855bb9c12c9SSage Weil }
1856bb9c12c9SSage Weil 
1857bb9c12c9SSage Weil /*
1858bb9c12c9SSage Weil  * commit transactions asynchronously. once btrfs_commit_transaction_async
1859bb9c12c9SSage Weil  * returns, any subsequent transaction will not be allowed to join.
1860bb9c12c9SSage Weil  */
1861bb9c12c9SSage Weil struct btrfs_async_commit {
1862bb9c12c9SSage Weil 	struct btrfs_trans_handle *newtrans;
18637892b5afSMiao Xie 	struct work_struct work;
1864bb9c12c9SSage Weil };
1865bb9c12c9SSage Weil 
1866bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work)
1867bb9c12c9SSage Weil {
1868bb9c12c9SSage Weil 	struct btrfs_async_commit *ac =
18697892b5afSMiao Xie 		container_of(work, struct btrfs_async_commit, work);
1870bb9c12c9SSage Weil 
18716fc4e354SSage Weil 	/*
18726fc4e354SSage Weil 	 * We've got freeze protection passed with the transaction.
18736fc4e354SSage Weil 	 * Tell lockdep about it.
18746fc4e354SSage Weil 	 */
1875b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
18763a45bb20SJeff Mahoney 		__sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS);
18776fc4e354SSage Weil 
1878e209db7aSSage Weil 	current->journal_info = ac->newtrans;
1879e209db7aSSage Weil 
18803a45bb20SJeff Mahoney 	btrfs_commit_transaction(ac->newtrans);
1881bb9c12c9SSage Weil 	kfree(ac);
1882bb9c12c9SSage Weil }
1883bb9c12c9SSage Weil 
1884bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1885bb9c12c9SSage Weil 				   int wait_for_unblock)
1886bb9c12c9SSage Weil {
18873a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
1888bb9c12c9SSage Weil 	struct btrfs_async_commit *ac;
1889bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1890bb9c12c9SSage Weil 
1891bb9c12c9SSage Weil 	ac = kmalloc(sizeof(*ac), GFP_NOFS);
1892db5b493aSTsutomu Itoh 	if (!ac)
1893db5b493aSTsutomu Itoh 		return -ENOMEM;
1894bb9c12c9SSage Weil 
18957892b5afSMiao Xie 	INIT_WORK(&ac->work, do_async_commit);
18963a45bb20SJeff Mahoney 	ac->newtrans = btrfs_join_transaction(trans->root);
18973612b495STsutomu Itoh 	if (IS_ERR(ac->newtrans)) {
18983612b495STsutomu Itoh 		int err = PTR_ERR(ac->newtrans);
18993612b495STsutomu Itoh 		kfree(ac);
19003612b495STsutomu Itoh 		return err;
19013612b495STsutomu Itoh 	}
1902bb9c12c9SSage Weil 
1903bb9c12c9SSage Weil 	/* take transaction reference */
1904bb9c12c9SSage Weil 	cur_trans = trans->transaction;
19059b64f57dSElena Reshetova 	refcount_inc(&cur_trans->use_count);
1906bb9c12c9SSage Weil 
19073a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
19086fc4e354SSage Weil 
19096fc4e354SSage Weil 	/*
19106fc4e354SSage Weil 	 * Tell lockdep we've released the freeze rwsem, since the
19116fc4e354SSage Weil 	 * async commit thread will be the one to unlock it.
19126fc4e354SSage Weil 	 */
1913b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
19140b246afaSJeff Mahoney 		__sb_writers_release(fs_info->sb, SB_FREEZE_FS);
19156fc4e354SSage Weil 
19167892b5afSMiao Xie 	schedule_work(&ac->work);
1917bb9c12c9SSage Weil 
1918bb9c12c9SSage Weil 	/* wait for transaction to start and unblock */
1919bb9c12c9SSage Weil 	if (wait_for_unblock)
19202ff7e61eSJeff Mahoney 		wait_current_trans_commit_start_and_unblock(fs_info, cur_trans);
1921bb9c12c9SSage Weil 	else
19222ff7e61eSJeff Mahoney 		wait_current_trans_commit_start(fs_info, cur_trans);
1923bb9c12c9SSage Weil 
192438e88054SSage Weil 	if (current->journal_info == trans)
192538e88054SSage Weil 		current->journal_info = NULL;
192638e88054SSage Weil 
1927724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1928bb9c12c9SSage Weil 	return 0;
1929bb9c12c9SSage Weil }
1930bb9c12c9SSage Weil 
193149b25e05SJeff Mahoney 
193297cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
193349b25e05SJeff Mahoney {
193497cb39bbSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
193549b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
193649b25e05SJeff Mahoney 
1937b50fff81SDavid Sterba 	WARN_ON(refcount_read(&trans->use_count) > 1);
193849b25e05SJeff Mahoney 
193966642832SJeff Mahoney 	btrfs_abort_transaction(trans, err);
19407b8b92afSJosef Bacik 
19410b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
194266b6135bSLiu Bo 
194325d8c284SMiao Xie 	/*
194425d8c284SMiao Xie 	 * If the transaction is removed from the list, it means this
194525d8c284SMiao Xie 	 * transaction has been committed successfully, so it is impossible
194625d8c284SMiao Xie 	 * to call the cleanup function.
194725d8c284SMiao Xie 	 */
194825d8c284SMiao Xie 	BUG_ON(list_empty(&cur_trans->list));
194966b6135bSLiu Bo 
195049b25e05SJeff Mahoney 	list_del_init(&cur_trans->list);
19510b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction) {
19524a9d8bdeSMiao Xie 		cur_trans->state = TRANS_STATE_COMMIT_DOING;
19530b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
1954f094ac32SLiu Bo 		wait_event(cur_trans->writer_wait,
1955f094ac32SLiu Bo 			   atomic_read(&cur_trans->num_writers) == 1);
1956f094ac32SLiu Bo 
19570b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
1958d7096fc3SJosef Bacik 	}
19590b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
196049b25e05SJeff Mahoney 
19612ff7e61eSJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, fs_info);
196249b25e05SJeff Mahoney 
19630b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
19640b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction)
19650b246afaSJeff Mahoney 		fs_info->running_transaction = NULL;
19660b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
19674a9d8bdeSMiao Xie 
1968e0228285SJosef Bacik 	if (trans->type & __TRANS_FREEZABLE)
19690b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
1970724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1971724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
197249b25e05SJeff Mahoney 
197397cb39bbSNikolay Borisov 	trace_btrfs_transaction_commit(trans->root);
197449b25e05SJeff Mahoney 
197549b25e05SJeff Mahoney 	if (current->journal_info == trans)
197649b25e05SJeff Mahoney 		current->journal_info = NULL;
19770b246afaSJeff Mahoney 	btrfs_scrub_cancel(fs_info);
197849b25e05SJeff Mahoney 
197949b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
198049b25e05SJeff Mahoney }
198149b25e05SJeff Mahoney 
1982c7cc64a9SDavid Sterba /*
1983c7cc64a9SDavid Sterba  * Release reserved delayed ref space of all pending block groups of the
1984c7cc64a9SDavid Sterba  * transaction and remove them from the list
1985c7cc64a9SDavid Sterba  */
1986c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
1987c7cc64a9SDavid Sterba {
1988c7cc64a9SDavid Sterba        struct btrfs_fs_info *fs_info = trans->fs_info;
198932da5386SDavid Sterba        struct btrfs_block_group *block_group, *tmp;
1990c7cc64a9SDavid Sterba 
1991c7cc64a9SDavid Sterba        list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
1992c7cc64a9SDavid Sterba                btrfs_delayed_refs_rsv_release(fs_info, 1);
1993c7cc64a9SDavid Sterba                list_del_init(&block_group->bg_list);
1994c7cc64a9SDavid Sterba        }
1995c7cc64a9SDavid Sterba }
1996c7cc64a9SDavid Sterba 
199788090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
199882436617SMiao Xie {
1999ce8ea7ccSJosef Bacik 	/*
2000ce8ea7ccSJosef Bacik 	 * We use writeback_inodes_sb here because if we used
2001ce8ea7ccSJosef Bacik 	 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
2002ce8ea7ccSJosef Bacik 	 * Currently are holding the fs freeze lock, if we do an async flush
2003ce8ea7ccSJosef Bacik 	 * we'll do btrfs_join_transaction() and deadlock because we need to
2004ce8ea7ccSJosef Bacik 	 * wait for the fs freeze lock.  Using the direct flushing we benefit
2005ce8ea7ccSJosef Bacik 	 * from already being in a transaction and our join_transaction doesn't
2006ce8ea7ccSJosef Bacik 	 * have to re-take the fs freeze lock.
2007ce8ea7ccSJosef Bacik 	 */
200888090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
2009ce8ea7ccSJosef Bacik 		writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
201082436617SMiao Xie 	return 0;
201182436617SMiao Xie }
201282436617SMiao Xie 
201388090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
201482436617SMiao Xie {
201588090ad3SFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
20166374e57aSChris Mason 		btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
201782436617SMiao Xie }
201882436617SMiao Xie 
20193a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
202079154b1bSChris Mason {
20213a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
202249b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
20238fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
202425287e0aSMiao Xie 	int ret;
202579154b1bSChris Mason 
202635b814f3SNikolay Borisov 	ASSERT(refcount_read(&trans->use_count) == 1);
202735b814f3SNikolay Borisov 
2028d62b23c9SJosef Bacik 	/*
2029d62b23c9SJosef Bacik 	 * Some places just start a transaction to commit it.  We need to make
2030d62b23c9SJosef Bacik 	 * sure that if this commit fails that the abort code actually marks the
2031d62b23c9SJosef Bacik 	 * transaction as failed, so set trans->dirty to make the abort code do
2032d62b23c9SJosef Bacik 	 * the right thing.
2033d62b23c9SJosef Bacik 	 */
2034d62b23c9SJosef Bacik 	trans->dirty = true;
2035d62b23c9SJosef Bacik 
20368d25a086SMiao Xie 	/* Stop the commit early if ->aborted is set */
2037bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
203825287e0aSMiao Xie 		ret = cur_trans->aborted;
20393a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2040e4a2bcacSJosef Bacik 		return ret;
204125287e0aSMiao Xie 	}
204249b25e05SJeff Mahoney 
2043f45c752bSJosef Bacik 	btrfs_trans_release_metadata(trans);
2044f45c752bSJosef Bacik 	trans->block_rsv = NULL;
2045f45c752bSJosef Bacik 
204656bec294SChris Mason 	/* make a pass through all the delayed refs we have so far
204756bec294SChris Mason 	 * any runnings procs may add more while we are here
204856bec294SChris Mason 	 */
2049c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
2050e4a2bcacSJosef Bacik 	if (ret) {
20513a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2052e4a2bcacSJosef Bacik 		return ret;
2053e4a2bcacSJosef Bacik 	}
205456bec294SChris Mason 
2055b7ec40d7SChris Mason 	cur_trans = trans->transaction;
205649b25e05SJeff Mahoney 
205756bec294SChris Mason 	/*
205856bec294SChris Mason 	 * set the flushing flag so procs in this transaction have to
205956bec294SChris Mason 	 * start sending their work down.
206056bec294SChris Mason 	 */
2061b7ec40d7SChris Mason 	cur_trans->delayed_refs.flushing = 1;
20621be41b78SJosef Bacik 	smp_wmb();
206356bec294SChris Mason 
20646c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
2065ea658badSJosef Bacik 
2066c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
2067e4a2bcacSJosef Bacik 	if (ret) {
20683a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2069e4a2bcacSJosef Bacik 		return ret;
2070e4a2bcacSJosef Bacik 	}
207156bec294SChris Mason 
20723204d33cSJosef Bacik 	if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
20731bbc621eSChris Mason 		int run_it = 0;
20741bbc621eSChris Mason 
20751bbc621eSChris Mason 		/* this mutex is also taken before trying to set
20761bbc621eSChris Mason 		 * block groups readonly.  We need to make sure
20771bbc621eSChris Mason 		 * that nobody has set a block group readonly
20781bbc621eSChris Mason 		 * after a extents from that block group have been
20791bbc621eSChris Mason 		 * allocated for cache files.  btrfs_set_block_group_ro
20801bbc621eSChris Mason 		 * will wait for the transaction to commit if it
20813204d33cSJosef Bacik 		 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
20821bbc621eSChris Mason 		 *
20833204d33cSJosef Bacik 		 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
20843204d33cSJosef Bacik 		 * only one process starts all the block group IO.  It wouldn't
20851bbc621eSChris Mason 		 * hurt to have more than one go through, but there's no
20861bbc621eSChris Mason 		 * real advantage to it either.
20871bbc621eSChris Mason 		 */
20880b246afaSJeff Mahoney 		mutex_lock(&fs_info->ro_block_group_mutex);
20893204d33cSJosef Bacik 		if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
20903204d33cSJosef Bacik 				      &cur_trans->flags))
20911bbc621eSChris Mason 			run_it = 1;
20920b246afaSJeff Mahoney 		mutex_unlock(&fs_info->ro_block_group_mutex);
20931bbc621eSChris Mason 
2094f9cacae3SNikolay Borisov 		if (run_it) {
209521217054SNikolay Borisov 			ret = btrfs_start_dirty_block_groups(trans);
20961bbc621eSChris Mason 			if (ret) {
20973a45bb20SJeff Mahoney 				btrfs_end_transaction(trans);
20981bbc621eSChris Mason 				return ret;
20991bbc621eSChris Mason 			}
2100f9cacae3SNikolay Borisov 		}
2101f9cacae3SNikolay Borisov 	}
21021bbc621eSChris Mason 
21030b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
21044a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
21050b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
21069b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
21073a45bb20SJeff Mahoney 		ret = btrfs_end_transaction(trans);
2108ccd467d6SChris Mason 
21092ff7e61eSJeff Mahoney 		wait_for_commit(cur_trans);
211015ee9bc7SJosef Bacik 
2111bf31f87fSDavid Sterba 		if (TRANS_ABORTED(cur_trans))
2112b4924a0fSLiu Bo 			ret = cur_trans->aborted;
2113b4924a0fSLiu Bo 
2114724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
211515ee9bc7SJosef Bacik 
211649b25e05SJeff Mahoney 		return ret;
211779154b1bSChris Mason 	}
21184313b399SChris Mason 
21194a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
21200b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
2121bb9c12c9SSage Weil 
21220b246afaSJeff Mahoney 	if (cur_trans->list.prev != &fs_info->trans_list) {
2123ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
2124ccd467d6SChris Mason 					struct btrfs_transaction, list);
21254a9d8bdeSMiao Xie 		if (prev_trans->state != TRANS_STATE_COMPLETED) {
21269b64f57dSElena Reshetova 			refcount_inc(&prev_trans->use_count);
21270b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2128ccd467d6SChris Mason 
21292ff7e61eSJeff Mahoney 			wait_for_commit(prev_trans);
2130bf31f87fSDavid Sterba 			ret = READ_ONCE(prev_trans->aborted);
2131ccd467d6SChris Mason 
2132724e2315SJosef Bacik 			btrfs_put_transaction(prev_trans);
21331f9b8c8fSFilipe Manana 			if (ret)
21341f9b8c8fSFilipe Manana 				goto cleanup_transaction;
2135a4abeea4SJosef Bacik 		} else {
21360b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2137ccd467d6SChris Mason 		}
2138a4abeea4SJosef Bacik 	} else {
21390b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
2140cb2d3dadSFilipe Manana 		/*
2141cb2d3dadSFilipe Manana 		 * The previous transaction was aborted and was already removed
2142cb2d3dadSFilipe Manana 		 * from the list of transactions at fs_info->trans_list. So we
2143cb2d3dadSFilipe Manana 		 * abort to prevent writing a new superblock that reflects a
2144cb2d3dadSFilipe Manana 		 * corrupt state (pointing to trees with unwritten nodes/leafs).
2145cb2d3dadSFilipe Manana 		 */
2146cb2d3dadSFilipe Manana 		if (test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state)) {
2147cb2d3dadSFilipe Manana 			ret = -EROFS;
2148cb2d3dadSFilipe Manana 			goto cleanup_transaction;
2149cb2d3dadSFilipe Manana 		}
2150ccd467d6SChris Mason 	}
215115ee9bc7SJosef Bacik 
21520860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
21530860adfdSMiao Xie 
215488090ad3SFilipe Manana 	ret = btrfs_start_delalloc_flush(fs_info);
215582436617SMiao Xie 	if (ret)
215682436617SMiao Xie 		goto cleanup_transaction;
215782436617SMiao Xie 
2158e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
215949b25e05SJeff Mahoney 	if (ret)
216049b25e05SJeff Mahoney 		goto cleanup_transaction;
216116cdcec7SMiao Xie 
2162581227d0SMiao Xie 	wait_event(cur_trans->writer_wait,
2163581227d0SMiao Xie 		   extwriter_counter_read(cur_trans) == 0);
2164ed3b3d31SChris Mason 
2165581227d0SMiao Xie 	/* some pending stuffs might be added after the previous flush. */
2166e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
2167ca469637SMiao Xie 	if (ret)
2168ca469637SMiao Xie 		goto cleanup_transaction;
2169ca469637SMiao Xie 
217088090ad3SFilipe Manana 	btrfs_wait_delalloc_flush(fs_info);
2171cb7ab021SWang Shilong 
217248778179SFilipe Manana 	/*
217348778179SFilipe Manana 	 * Wait for all ordered extents started by a fast fsync that joined this
217448778179SFilipe Manana 	 * transaction. Otherwise if this transaction commits before the ordered
217548778179SFilipe Manana 	 * extents complete we lose logged data after a power failure.
217648778179SFilipe Manana 	 */
217748778179SFilipe Manana 	wait_event(cur_trans->pending_wait,
217848778179SFilipe Manana 		   atomic_read(&cur_trans->pending_ordered) == 0);
217948778179SFilipe Manana 
21802ff7e61eSJeff Mahoney 	btrfs_scrub_pause(fs_info);
2181ed0ca140SJosef Bacik 	/*
2182ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
2183ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
21844a9d8bdeSMiao Xie 	 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
2185ed0ca140SJosef Bacik 	 */
21860b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
21874a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_DOING;
21880b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2189ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
2190ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
219115ee9bc7SJosef Bacik 
2192bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
21932cba30f1SMiao Xie 		ret = cur_trans->aborted;
21946cf7f77eSWang Shilong 		goto scrub_continue;
21952cba30f1SMiao Xie 	}
21967585717fSChris Mason 	/*
21977585717fSChris Mason 	 * the reloc mutex makes sure that we stop
21987585717fSChris Mason 	 * the balancing code from coming in and moving
21997585717fSChris Mason 	 * extents around in the middle of the commit
22007585717fSChris Mason 	 */
22010b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
22027585717fSChris Mason 
220342874b3dSMiao Xie 	/*
220442874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
220542874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
220642874b3dSMiao Xie 	 * core function of the snapshot creation.
220742874b3dSMiao Xie 	 */
220808d50ca3SNikolay Borisov 	ret = create_pending_snapshots(trans);
220956e9f6eaSDavid Sterba 	if (ret)
221056e9f6eaSDavid Sterba 		goto unlock_reloc;
22113063d29fSChris Mason 
221242874b3dSMiao Xie 	/*
221342874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
221442874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
221542874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
221642874b3dSMiao Xie 	 * them.
221742874b3dSMiao Xie 	 *
221842874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
221942874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
222042874b3dSMiao Xie 	 * the nodes and leaves.
222142874b3dSMiao Xie 	 */
2222e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
222356e9f6eaSDavid Sterba 	if (ret)
222456e9f6eaSDavid Sterba 		goto unlock_reloc;
222516cdcec7SMiao Xie 
2226c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
222756e9f6eaSDavid Sterba 	if (ret)
222856e9f6eaSDavid Sterba 		goto unlock_reloc;
222956bec294SChris Mason 
2230e999376fSChris Mason 	/*
2231e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
2232e999376fSChris Mason 	 * delayed item
2233e999376fSChris Mason 	 */
2234ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
2235e999376fSChris Mason 
22362c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
2237dc17ff8fSChris Mason 
2238e02119d5SChris Mason 	/* btrfs_commit_tree_roots is responsible for getting the
2239e02119d5SChris Mason 	 * various roots consistent with each other.  Every pointer
2240e02119d5SChris Mason 	 * in the tree of tree roots has to point to the most up to date
2241e02119d5SChris Mason 	 * root for every subvolume and other tree.  So, we have to keep
2242e02119d5SChris Mason 	 * the tree logging code from jumping in and changing any
2243e02119d5SChris Mason 	 * of the trees.
2244e02119d5SChris Mason 	 *
2245e02119d5SChris Mason 	 * At this point in the commit, there can't be any tree-log
2246e02119d5SChris Mason 	 * writers, but a little lower down we drop the trans mutex
2247e02119d5SChris Mason 	 * and let new people in.  By holding the tree_log_mutex
2248e02119d5SChris Mason 	 * from now until after the super is written, we avoid races
2249e02119d5SChris Mason 	 * with the tree-log code.
2250e02119d5SChris Mason 	 */
22510b246afaSJeff Mahoney 	mutex_lock(&fs_info->tree_log_mutex);
22521a40e23bSZheng Yan 
22537e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
225456e9f6eaSDavid Sterba 	if (ret)
225556e9f6eaSDavid Sterba 		goto unlock_tree_log;
225654aa1f4dSChris Mason 
22573818aea2SQu Wenruo 	/*
22587e1876acSDavid Sterba 	 * Since the transaction is done, we can apply the pending changes
22597e1876acSDavid Sterba 	 * before the next transaction.
22603818aea2SQu Wenruo 	 */
22610b246afaSJeff Mahoney 	btrfs_apply_pending_changes(fs_info);
22623818aea2SQu Wenruo 
22635d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
2264e02119d5SChris Mason 	 * safe to free the root of tree log roots
2265e02119d5SChris Mason 	 */
22660b246afaSJeff Mahoney 	btrfs_free_log_root_tree(trans, fs_info);
2267e02119d5SChris Mason 
22680ed4792aSQu Wenruo 	/*
226982bafb38SQu Wenruo 	 * commit_fs_roots() can call btrfs_save_ino_cache(), which generates
227082bafb38SQu Wenruo 	 * new delayed refs. Must handle them or qgroup can be wrong.
227182bafb38SQu Wenruo 	 */
2272c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
227356e9f6eaSDavid Sterba 	if (ret)
227456e9f6eaSDavid Sterba 		goto unlock_tree_log;
227582bafb38SQu Wenruo 
227682bafb38SQu Wenruo 	/*
22770ed4792aSQu Wenruo 	 * Since fs roots are all committed, we can get a quite accurate
22780ed4792aSQu Wenruo 	 * new_roots. So let's do quota accounting.
22790ed4792aSQu Wenruo 	 */
2280460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
228156e9f6eaSDavid Sterba 	if (ret < 0)
228256e9f6eaSDavid Sterba 		goto unlock_tree_log;
22830ed4792aSQu Wenruo 
22849386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
228556e9f6eaSDavid Sterba 	if (ret)
228656e9f6eaSDavid Sterba 		goto unlock_tree_log;
228754aa1f4dSChris Mason 
22882cba30f1SMiao Xie 	/*
22892cba30f1SMiao Xie 	 * The tasks which save the space cache and inode cache may also
22902cba30f1SMiao Xie 	 * update ->aborted, check it.
22912cba30f1SMiao Xie 	 */
2292bf31f87fSDavid Sterba 	if (TRANS_ABORTED(cur_trans)) {
22932cba30f1SMiao Xie 		ret = cur_trans->aborted;
229456e9f6eaSDavid Sterba 		goto unlock_tree_log;
22952cba30f1SMiao Xie 	}
22962cba30f1SMiao Xie 
22970b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
22985f39d397SChris Mason 
22990b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->tree_root->root_item,
23000b246afaSJeff Mahoney 			    fs_info->tree_root->node);
23010b246afaSJeff Mahoney 	list_add_tail(&fs_info->tree_root->dirty_list,
23029e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23035d4f98a2SYan Zheng 
23040b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->chunk_root->root_item,
23050b246afaSJeff Mahoney 			    fs_info->chunk_root->node);
23060b246afaSJeff Mahoney 	list_add_tail(&fs_info->chunk_root->dirty_list,
23079e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23089e351cc8SJosef Bacik 
2309889bfa39SJosef Bacik 	switch_commit_roots(trans);
23105d4f98a2SYan Zheng 
2311ce93ec54SJosef Bacik 	ASSERT(list_empty(&cur_trans->dirty_bgs));
23121bbc621eSChris Mason 	ASSERT(list_empty(&cur_trans->io_bgs));
23132ff7e61eSJeff Mahoney 	update_super_roots(fs_info);
2314e02119d5SChris Mason 
23150b246afaSJeff Mahoney 	btrfs_set_super_log_root(fs_info->super_copy, 0);
23160b246afaSJeff Mahoney 	btrfs_set_super_log_root_level(fs_info->super_copy, 0);
23170b246afaSJeff Mahoney 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
23180b246afaSJeff Mahoney 	       sizeof(*fs_info->super_copy));
2319ccd467d6SChris Mason 
2320bbbf7243SNikolay Borisov 	btrfs_commit_device_sizes(cur_trans);
2321935e5cc9SMiao Xie 
23220b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
23230b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
2324656f30dbSFilipe Manana 
23254fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
23264fbcdf66SFilipe Manana 
23270b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
23284a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
23290b246afaSJeff Mahoney 	fs_info->running_transaction = NULL;
23300b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
23310b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
2332b7ec40d7SChris Mason 
23330b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
2334e6dcd2dcSChris Mason 
233570458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
233649b25e05SJeff Mahoney 	if (ret) {
23370b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
233808748810SDavid Sterba 				      "Error while writing out transaction");
233956e9f6eaSDavid Sterba 		/*
234056e9f6eaSDavid Sterba 		 * reloc_mutex has been unlocked, tree_log_mutex is still held
234156e9f6eaSDavid Sterba 		 * but we can't jump to unlock_tree_log causing double unlock
234256e9f6eaSDavid Sterba 		 */
23430b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
23446cf7f77eSWang Shilong 		goto scrub_continue;
234549b25e05SJeff Mahoney 	}
234649b25e05SJeff Mahoney 
2347eece6a9cSDavid Sterba 	ret = write_all_supers(fs_info, 0);
2348e02119d5SChris Mason 	/*
2349e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
2350e02119d5SChris Mason 	 * to go about their business
2351e02119d5SChris Mason 	 */
23520b246afaSJeff Mahoney 	mutex_unlock(&fs_info->tree_log_mutex);
2353c1f32b7cSAnand Jain 	if (ret)
2354c1f32b7cSAnand Jain 		goto scrub_continue;
2355e02119d5SChris Mason 
23565ead2dd0SNikolay Borisov 	btrfs_finish_extent_commit(trans);
23574313b399SChris Mason 
23583204d33cSJosef Bacik 	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
23590b246afaSJeff Mahoney 		btrfs_clear_space_info_full(fs_info);
236013212b54SZhao Lei 
23610b246afaSJeff Mahoney 	fs_info->last_trans_committed = cur_trans->transid;
23624a9d8bdeSMiao Xie 	/*
23634a9d8bdeSMiao Xie 	 * We needn't acquire the lock here because there is no other task
23644a9d8bdeSMiao Xie 	 * which can change it.
23654a9d8bdeSMiao Xie 	 */
23664a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMPLETED;
23672c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
23683de4586cSChris Mason 
23690b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
237013c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
23710b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2372a4abeea4SJosef Bacik 
2373724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2374724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
237558176a96SJosef Bacik 
23760860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
23770b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2378b2b5ef5cSJan Kara 
23793a45bb20SJeff Mahoney 	trace_btrfs_transaction_commit(trans->root);
23801abe9b8aSliubo 
23812ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
2382a2de733cSArne Jansen 
23839ed74f2dSJosef Bacik 	if (current->journal_info == trans)
23849ed74f2dSJosef Bacik 		current->journal_info = NULL;
23859ed74f2dSJosef Bacik 
23862c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
238724bbcf04SYan, Zheng 
238879154b1bSChris Mason 	return ret;
238949b25e05SJeff Mahoney 
239056e9f6eaSDavid Sterba unlock_tree_log:
239156e9f6eaSDavid Sterba 	mutex_unlock(&fs_info->tree_log_mutex);
239256e9f6eaSDavid Sterba unlock_reloc:
239356e9f6eaSDavid Sterba 	mutex_unlock(&fs_info->reloc_mutex);
23946cf7f77eSWang Shilong scrub_continue:
23952ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
239649b25e05SJeff Mahoney cleanup_transaction:
2397dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
2398c7cc64a9SDavid Sterba 	btrfs_cleanup_pending_block_groups(trans);
23994fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
24000e721106SJosef Bacik 	trans->block_rsv = NULL;
24010b246afaSJeff Mahoney 	btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
240249b25e05SJeff Mahoney 	if (current->journal_info == trans)
240349b25e05SJeff Mahoney 		current->journal_info = NULL;
240497cb39bbSNikolay Borisov 	cleanup_transaction(trans, ret);
240549b25e05SJeff Mahoney 
240649b25e05SJeff Mahoney 	return ret;
240779154b1bSChris Mason }
240879154b1bSChris Mason 
2409d352ac68SChris Mason /*
24109d1a2a3aSDavid Sterba  * return < 0 if error
24119d1a2a3aSDavid Sterba  * 0 if there are no more dead_roots at the time of call
24129d1a2a3aSDavid Sterba  * 1 there are more to be processed, call me again
24139d1a2a3aSDavid Sterba  *
24149d1a2a3aSDavid Sterba  * The return value indicates there are certainly more snapshots to delete, but
24159d1a2a3aSDavid Sterba  * if there comes a new one during processing, it may return 0. We don't mind,
24169d1a2a3aSDavid Sterba  * because btrfs_commit_super will poke cleaner thread and it will process it a
24179d1a2a3aSDavid Sterba  * few seconds later.
2418d352ac68SChris Mason  */
24199d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
2420e9d0b13bSChris Mason {
24219d1a2a3aSDavid Sterba 	int ret;
24225d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
2423e9d0b13bSChris Mason 
2424a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
24259d1a2a3aSDavid Sterba 	if (list_empty(&fs_info->dead_roots)) {
24269d1a2a3aSDavid Sterba 		spin_unlock(&fs_info->trans_lock);
24279d1a2a3aSDavid Sterba 		return 0;
24289d1a2a3aSDavid Sterba 	}
24299d1a2a3aSDavid Sterba 	root = list_first_entry(&fs_info->dead_roots,
24309d1a2a3aSDavid Sterba 			struct btrfs_root, root_list);
2431cfad392bSJosef Bacik 	list_del_init(&root->root_list);
2432a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
24335d4f98a2SYan Zheng 
24344fd786e6SMisono Tomohiro 	btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
243576dda93cSYan, Zheng 
243616cdcec7SMiao Xie 	btrfs_kill_all_delayed_nodes(root);
24370e996e7fSJosef Bacik 	if (root->ino_cache_inode) {
24380e996e7fSJosef Bacik 		iput(root->ino_cache_inode);
24390e996e7fSJosef Bacik 		root->ino_cache_inode = NULL;
24400e996e7fSJosef Bacik 	}
244116cdcec7SMiao Xie 
244276dda93cSYan, Zheng 	if (btrfs_header_backref_rev(root->node) <
244376dda93cSYan, Zheng 			BTRFS_MIXED_BACKREF_REV)
24440078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 0, 0);
244576dda93cSYan, Zheng 	else
24460078a9f9SNikolay Borisov 		ret = btrfs_drop_snapshot(root, 1, 0);
244732471dc2SDavid Sterba 
2448dc9492c1SJosef Bacik 	btrfs_put_root(root);
24496596a928SJosef Bacik 	return (ret < 0) ? 0 : 1;
2450e9d0b13bSChris Mason }
2451572d9ab7SDavid Sterba 
2452572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2453572d9ab7SDavid Sterba {
2454572d9ab7SDavid Sterba 	unsigned long prev;
2455572d9ab7SDavid Sterba 	unsigned long bit;
2456572d9ab7SDavid Sterba 
24576c9fe14fSQu Wenruo 	prev = xchg(&fs_info->pending_changes, 0);
2458572d9ab7SDavid Sterba 	if (!prev)
2459572d9ab7SDavid Sterba 		return;
2460572d9ab7SDavid Sterba 
24617e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE;
24627e1876acSDavid Sterba 	if (prev & bit)
24637e1876acSDavid Sterba 		btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE);
24647e1876acSDavid Sterba 	prev &= ~bit;
24657e1876acSDavid Sterba 
24667e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE;
24677e1876acSDavid Sterba 	if (prev & bit)
24687e1876acSDavid Sterba 		btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE);
24697e1876acSDavid Sterba 	prev &= ~bit;
24707e1876acSDavid Sterba 
2471d51033d0SDavid Sterba 	bit = 1 << BTRFS_PENDING_COMMIT;
2472d51033d0SDavid Sterba 	if (prev & bit)
2473d51033d0SDavid Sterba 		btrfs_debug(fs_info, "pending commit done");
2474d51033d0SDavid Sterba 	prev &= ~bit;
2475d51033d0SDavid Sterba 
2476572d9ab7SDavid Sterba 	if (prev)
2477572d9ab7SDavid Sterba 		btrfs_warn(fs_info,
2478572d9ab7SDavid Sterba 			"unknown pending changes left 0x%lx, ignoring", prev);
2479572d9ab7SDavid Sterba }
2480