xref: /openbmc/linux/fs/btrfs/transaction.c (revision 889bfa39)
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"
2479154b1bSChris Mason 
250f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
260f7d52f4SChris Mason 
2761c047b5SQu Wenruo /*
2861c047b5SQu Wenruo  * Transaction states and transitions
2961c047b5SQu Wenruo  *
3061c047b5SQu Wenruo  * No running transaction (fs tree blocks are not modified)
3161c047b5SQu Wenruo  * |
3261c047b5SQu Wenruo  * | To next stage:
3361c047b5SQu Wenruo  * |  Call start_transaction() variants. Except btrfs_join_transaction_nostart().
3461c047b5SQu Wenruo  * V
3561c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_RUNNING]]
3661c047b5SQu Wenruo  * |
3761c047b5SQu Wenruo  * | New trans handles can be attached to transaction N by calling all
3861c047b5SQu Wenruo  * | start_transaction() variants.
3961c047b5SQu Wenruo  * |
4061c047b5SQu Wenruo  * | To next stage:
4161c047b5SQu Wenruo  * |  Call btrfs_commit_transaction() on any trans handle attached to
4261c047b5SQu Wenruo  * |  transaction N
4361c047b5SQu Wenruo  * V
4461c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_START]]
4561c047b5SQu Wenruo  * |
4661c047b5SQu Wenruo  * | Will wait for previous running transaction to completely finish if there
4761c047b5SQu Wenruo  * | is one
4861c047b5SQu Wenruo  * |
4961c047b5SQu Wenruo  * | Then one of the following happes:
5061c047b5SQu Wenruo  * | - Wait for all other trans handle holders to release.
5161c047b5SQu Wenruo  * |   The btrfs_commit_transaction() caller will do the commit work.
5261c047b5SQu Wenruo  * | - Wait for current transaction to be committed by others.
5361c047b5SQu Wenruo  * |   Other btrfs_commit_transaction() caller will do the commit work.
5461c047b5SQu Wenruo  * |
5561c047b5SQu Wenruo  * | At this stage, only btrfs_join_transaction*() variants can attach
5661c047b5SQu Wenruo  * | to this running transaction.
5761c047b5SQu Wenruo  * | All other variants will wait for current one to finish and attach to
5861c047b5SQu Wenruo  * | transaction N+1.
5961c047b5SQu Wenruo  * |
6061c047b5SQu Wenruo  * | To next stage:
6161c047b5SQu Wenruo  * |  Caller is chosen to commit transaction N, and all other trans handle
6261c047b5SQu Wenruo  * |  haven been released.
6361c047b5SQu Wenruo  * V
6461c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMMIT_DOING]]
6561c047b5SQu Wenruo  * |
6661c047b5SQu Wenruo  * | The heavy lifting transaction work is started.
6761c047b5SQu Wenruo  * | From running delayed refs (modifying extent tree) to creating pending
6861c047b5SQu Wenruo  * | snapshots, running qgroups.
6961c047b5SQu Wenruo  * | In short, modify supporting trees to reflect modifications of subvolume
7061c047b5SQu Wenruo  * | trees.
7161c047b5SQu Wenruo  * |
7261c047b5SQu Wenruo  * | At this stage, all start_transaction() calls will wait for this
7361c047b5SQu Wenruo  * | transaction to finish and attach to transaction N+1.
7461c047b5SQu Wenruo  * |
7561c047b5SQu Wenruo  * | To next stage:
7661c047b5SQu Wenruo  * |  Until all supporting trees are updated.
7761c047b5SQu Wenruo  * V
7861c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_UNBLOCKED]]
7961c047b5SQu Wenruo  * |						    Transaction N+1
8061c047b5SQu Wenruo  * | All needed trees are modified, thus we only    [[TRANS_STATE_RUNNING]]
8161c047b5SQu Wenruo  * | need to write them back to disk and update	    |
8261c047b5SQu Wenruo  * | super blocks.				    |
8361c047b5SQu Wenruo  * |						    |
8461c047b5SQu Wenruo  * | At this stage, new transaction is allowed to   |
8561c047b5SQu Wenruo  * | start.					    |
8661c047b5SQu Wenruo  * | All new start_transaction() calls will be	    |
8761c047b5SQu Wenruo  * | attached to transid N+1.			    |
8861c047b5SQu Wenruo  * |						    |
8961c047b5SQu Wenruo  * | To next stage:				    |
9061c047b5SQu Wenruo  * |  Until all tree blocks are super blocks are    |
9161c047b5SQu Wenruo  * |  written to block devices			    |
9261c047b5SQu Wenruo  * V						    |
9361c047b5SQu Wenruo  * Transaction N [[TRANS_STATE_COMPLETED]]	    V
9461c047b5SQu Wenruo  *   All tree blocks and super blocks are written.  Transaction N+1
9561c047b5SQu Wenruo  *   This transaction is finished and all its	    [[TRANS_STATE_COMMIT_START]]
9661c047b5SQu Wenruo  *   data structures will be cleaned up.	    | Life goes on
9761c047b5SQu Wenruo  */
98e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
994a9d8bdeSMiao Xie 	[TRANS_STATE_RUNNING]		= 0U,
100bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_START]	= (__TRANS_START | __TRANS_ATTACH),
101bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMMIT_DOING]	= (__TRANS_START |
1024a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
103a6d155d2SFilipe Manana 					   __TRANS_JOIN |
104a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
105bcf3a3e7SNikolay Borisov 	[TRANS_STATE_UNBLOCKED]		= (__TRANS_START |
1064a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1074a9d8bdeSMiao Xie 					   __TRANS_JOIN |
108a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
109a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
110bcf3a3e7SNikolay Borisov 	[TRANS_STATE_COMPLETED]		= (__TRANS_START |
1114a9d8bdeSMiao Xie 					   __TRANS_ATTACH |
1124a9d8bdeSMiao Xie 					   __TRANS_JOIN |
113a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOLOCK |
114a6d155d2SFilipe Manana 					   __TRANS_JOIN_NOSTART),
1154a9d8bdeSMiao Xie };
1164a9d8bdeSMiao Xie 
117724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction)
11879154b1bSChris Mason {
1199b64f57dSElena Reshetova 	WARN_ON(refcount_read(&transaction->use_count) == 0);
1209b64f57dSElena Reshetova 	if (refcount_dec_and_test(&transaction->use_count)) {
121a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
1225c9d028bSLiu Bo 		WARN_ON(!RB_EMPTY_ROOT(
1235c9d028bSLiu Bo 				&transaction->delayed_refs.href_root.rb_root));
1241262133bSJosef Bacik 		if (transaction->delayed_refs.pending_csums)
125ab8d0fc4SJeff Mahoney 			btrfs_err(transaction->fs_info,
126ab8d0fc4SJeff Mahoney 				  "pending csums is %llu",
1271262133bSJosef Bacik 				  transaction->delayed_refs.pending_csums);
1287785a663SFilipe Manana 		/*
1297785a663SFilipe Manana 		 * If any block groups are found in ->deleted_bgs then it's
1307785a663SFilipe Manana 		 * because the transaction was aborted and a commit did not
1317785a663SFilipe Manana 		 * happen (things failed before writing the new superblock
1327785a663SFilipe Manana 		 * and calling btrfs_finish_extent_commit()), so we can not
1337785a663SFilipe Manana 		 * discard the physical locations of the block groups.
1347785a663SFilipe Manana 		 */
1357785a663SFilipe Manana 		while (!list_empty(&transaction->deleted_bgs)) {
13632da5386SDavid Sterba 			struct btrfs_block_group *cache;
1377785a663SFilipe Manana 
1387785a663SFilipe Manana 			cache = list_first_entry(&transaction->deleted_bgs,
13932da5386SDavid Sterba 						 struct btrfs_block_group,
1407785a663SFilipe Manana 						 bg_list);
1417785a663SFilipe Manana 			list_del_init(&cache->bg_list);
1427785a663SFilipe Manana 			btrfs_put_block_group_trimming(cache);
1437785a663SFilipe Manana 			btrfs_put_block_group(cache);
1447785a663SFilipe Manana 		}
145bbbf7243SNikolay Borisov 		WARN_ON(!list_empty(&transaction->dev_update_list));
1464b5faeacSDavid Sterba 		kfree(transaction);
14779154b1bSChris Mason 	}
14878fae27eSChris Mason }
14979154b1bSChris Mason 
150889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
151817d52f8SJosef Bacik {
152889bfa39SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
15316916a88SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1549e351cc8SJosef Bacik 	struct btrfs_root *root, *tmp;
1559e351cc8SJosef Bacik 
1569e351cc8SJosef Bacik 	down_write(&fs_info->commit_root_sem);
157889bfa39SJosef Bacik 	list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
1589e351cc8SJosef Bacik 				 dirty_list) {
1599e351cc8SJosef Bacik 		list_del_init(&root->dirty_list);
160817d52f8SJosef Bacik 		free_extent_buffer(root->commit_root);
161817d52f8SJosef Bacik 		root->commit_root = btrfs_root_node(root);
1624fd786e6SMisono Tomohiro 		if (is_fstree(root->root_key.objectid))
1639e351cc8SJosef Bacik 			btrfs_unpin_free_ino(root);
16441e7acd3SNikolay Borisov 		extent_io_tree_release(&root->dirty_log_pages);
165370a11b8SQu Wenruo 		btrfs_qgroup_clean_swapped_blocks(root);
1669e351cc8SJosef Bacik 	}
1672b9dbef2SJosef Bacik 
1682b9dbef2SJosef Bacik 	/* We can free old roots now. */
169889bfa39SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
170889bfa39SJosef Bacik 	while (!list_empty(&cur_trans->dropped_roots)) {
171889bfa39SJosef Bacik 		root = list_first_entry(&cur_trans->dropped_roots,
1722b9dbef2SJosef Bacik 					struct btrfs_root, root_list);
1732b9dbef2SJosef Bacik 		list_del_init(&root->root_list);
174889bfa39SJosef Bacik 		spin_unlock(&cur_trans->dropped_roots_lock);
175889bfa39SJosef Bacik 		btrfs_free_log(trans, root);
1762b9dbef2SJosef Bacik 		btrfs_drop_and_free_fs_root(fs_info, root);
177889bfa39SJosef Bacik 		spin_lock(&cur_trans->dropped_roots_lock);
1782b9dbef2SJosef Bacik 	}
179889bfa39SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
1809e351cc8SJosef Bacik 	up_write(&fs_info->commit_root_sem);
181817d52f8SJosef Bacik }
182817d52f8SJosef Bacik 
1830860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
1840860adfdSMiao Xie 					 unsigned int type)
1850860adfdSMiao Xie {
1860860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
1870860adfdSMiao Xie 		atomic_inc(&trans->num_extwriters);
1880860adfdSMiao Xie }
1890860adfdSMiao Xie 
1900860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
1910860adfdSMiao Xie 					 unsigned int type)
1920860adfdSMiao Xie {
1930860adfdSMiao Xie 	if (type & TRANS_EXTWRITERS)
1940860adfdSMiao Xie 		atomic_dec(&trans->num_extwriters);
1950860adfdSMiao Xie }
1960860adfdSMiao Xie 
1970860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans,
1980860adfdSMiao Xie 					  unsigned int type)
1990860adfdSMiao Xie {
2000860adfdSMiao Xie 	atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
2010860adfdSMiao Xie }
2020860adfdSMiao Xie 
2030860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans)
2040860adfdSMiao Xie {
2050860adfdSMiao Xie 	return atomic_read(&trans->num_extwriters);
206178260b2SMiao Xie }
207178260b2SMiao Xie 
208d352ac68SChris Mason /*
209fb6dea26SJosef Bacik  * To be called after all the new block groups attached to the transaction
210fb6dea26SJosef Bacik  * handle have been created (btrfs_create_pending_block_groups()).
211fb6dea26SJosef Bacik  */
212fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
213fb6dea26SJosef Bacik {
214fb6dea26SJosef Bacik 	struct btrfs_fs_info *fs_info = trans->fs_info;
215fb6dea26SJosef Bacik 
216fb6dea26SJosef Bacik 	if (!trans->chunk_bytes_reserved)
217fb6dea26SJosef Bacik 		return;
218fb6dea26SJosef Bacik 
219fb6dea26SJosef Bacik 	WARN_ON_ONCE(!list_empty(&trans->new_bgs));
220fb6dea26SJosef Bacik 
221fb6dea26SJosef Bacik 	btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
222fb6dea26SJosef Bacik 				trans->chunk_bytes_reserved);
223fb6dea26SJosef Bacik 	trans->chunk_bytes_reserved = 0;
224fb6dea26SJosef Bacik }
225fb6dea26SJosef Bacik 
226fb6dea26SJosef Bacik /*
227d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
228d352ac68SChris Mason  */
2292ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info,
2302ff7e61eSJeff Mahoney 				     unsigned int type)
23179154b1bSChris Mason {
23279154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
233a4abeea4SJosef Bacik 
23419ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
235d43317dcSChris Mason loop:
23649b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
23787533c47SMiao Xie 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
23819ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
23949b25e05SJeff Mahoney 		return -EROFS;
24049b25e05SJeff Mahoney 	}
24149b25e05SJeff Mahoney 
24219ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
243a4abeea4SJosef Bacik 	if (cur_trans) {
244871383beSDavid Sterba 		if (cur_trans->aborted) {
24519ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
24649b25e05SJeff Mahoney 			return cur_trans->aborted;
247871383beSDavid Sterba 		}
2484a9d8bdeSMiao Xie 		if (btrfs_blocked_trans_types[cur_trans->state] & type) {
249178260b2SMiao Xie 			spin_unlock(&fs_info->trans_lock);
250178260b2SMiao Xie 			return -EBUSY;
251178260b2SMiao Xie 		}
2529b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
253a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
2540860adfdSMiao Xie 		extwriter_counter_inc(cur_trans, type);
25519ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
256a4abeea4SJosef Bacik 		return 0;
257a4abeea4SJosef Bacik 	}
25819ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
259a4abeea4SJosef Bacik 
260354aa0fbSMiao Xie 	/*
261354aa0fbSMiao Xie 	 * If we are ATTACH, we just want to catch the current transaction,
262354aa0fbSMiao Xie 	 * and commit it. If there is no transaction, just return ENOENT.
263354aa0fbSMiao Xie 	 */
264354aa0fbSMiao Xie 	if (type == TRANS_ATTACH)
265354aa0fbSMiao Xie 		return -ENOENT;
266354aa0fbSMiao Xie 
2674a9d8bdeSMiao Xie 	/*
2684a9d8bdeSMiao Xie 	 * JOIN_NOLOCK only happens during the transaction commit, so
2694a9d8bdeSMiao Xie 	 * it is impossible that ->running_transaction is NULL
2704a9d8bdeSMiao Xie 	 */
2714a9d8bdeSMiao Xie 	BUG_ON(type == TRANS_JOIN_NOLOCK);
2724a9d8bdeSMiao Xie 
2734b5faeacSDavid Sterba 	cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
274db5b493aSTsutomu Itoh 	if (!cur_trans)
275db5b493aSTsutomu Itoh 		return -ENOMEM;
276d43317dcSChris Mason 
27719ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
27819ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
279d43317dcSChris Mason 		/*
280d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
2814a9d8bdeSMiao Xie 		 * to redo the checks above
282d43317dcSChris Mason 		 */
2834b5faeacSDavid Sterba 		kfree(cur_trans);
284d43317dcSChris Mason 		goto loop;
28587533c47SMiao Xie 	} else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
286e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
2874b5faeacSDavid Sterba 		kfree(cur_trans);
2887b8b92afSJosef Bacik 		return -EROFS;
289a4abeea4SJosef Bacik 	}
290d43317dcSChris Mason 
291ab8d0fc4SJeff Mahoney 	cur_trans->fs_info = fs_info;
29213c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
2930860adfdSMiao Xie 	extwriter_counter_init(cur_trans, type);
29479154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
29579154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
2964a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_RUNNING;
297a4abeea4SJosef Bacik 	/*
298a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
299a4abeea4SJosef Bacik 	 * commit the transaction.
300a4abeea4SJosef Bacik 	 */
3019b64f57dSElena Reshetova 	refcount_set(&cur_trans->use_count, 2);
3023204d33cSJosef Bacik 	cur_trans->flags = 0;
303afd48513SArnd Bergmann 	cur_trans->start_time = ktime_get_seconds();
30456bec294SChris Mason 
305a099d0fdSAlexandru Moise 	memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
306a099d0fdSAlexandru Moise 
3075c9d028bSLiu Bo 	cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3083368d001SQu Wenruo 	cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
309d7df2c79SJosef Bacik 	atomic_set(&cur_trans->delayed_refs.num_entries, 0);
31020b297d6SJan Schmidt 
31120b297d6SJan Schmidt 	/*
31220b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
31320b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
31420b297d6SJan Schmidt 	 */
31520b297d6SJan Schmidt 	smp_mb();
31631b1a2bdSJulia Lawall 	if (!list_empty(&fs_info->tree_mod_seq_list))
3175d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
31831b1a2bdSJulia Lawall 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
3195d163e0eSJeff Mahoney 		WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
320fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
32120b297d6SJan Schmidt 
32256bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
32356bec294SChris Mason 
3243063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
325bbbf7243SNikolay Borisov 	INIT_LIST_HEAD(&cur_trans->dev_update_list);
3269e351cc8SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->switch_commits);
327ce93ec54SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dirty_bgs);
3281bbc621eSChris Mason 	INIT_LIST_HEAD(&cur_trans->io_bgs);
3292b9dbef2SJosef Bacik 	INIT_LIST_HEAD(&cur_trans->dropped_roots);
3301bbc621eSChris Mason 	mutex_init(&cur_trans->cache_write_mutex);
331ce93ec54SJosef Bacik 	spin_lock_init(&cur_trans->dirty_bgs_lock);
332e33e17eeSJeff Mahoney 	INIT_LIST_HEAD(&cur_trans->deleted_bgs);
3332b9dbef2SJosef Bacik 	spin_lock_init(&cur_trans->dropped_roots_lock);
33419ae4e81SJan Schmidt 	list_add_tail(&cur_trans->list, &fs_info->trans_list);
335c258d6e3SQu Wenruo 	extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
33643eb5f29SQu Wenruo 			IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode);
33719ae4e81SJan Schmidt 	fs_info->generation++;
33819ae4e81SJan Schmidt 	cur_trans->transid = fs_info->generation;
33919ae4e81SJan Schmidt 	fs_info->running_transaction = cur_trans;
34049b25e05SJeff Mahoney 	cur_trans->aborted = 0;
34119ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
34215ee9bc7SJosef Bacik 
34379154b1bSChris Mason 	return 0;
34479154b1bSChris Mason }
34579154b1bSChris Mason 
346d352ac68SChris Mason /*
347d397712bSChris Mason  * this does all the record keeping required to make sure that a reference
348d397712bSChris Mason  * counted root is properly recorded in a given transaction.  This is required
349d397712bSChris Mason  * to make sure the old root from before we joined the transaction is deleted
350d397712bSChris Mason  * when the transaction commits
351d352ac68SChris Mason  */
3527585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans,
3536426c7adSQu Wenruo 			       struct btrfs_root *root,
3546426c7adSQu Wenruo 			       int force)
3556702ed49SChris Mason {
3560b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
3570b246afaSJeff Mahoney 
3586426c7adSQu Wenruo 	if ((test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
3596426c7adSQu Wenruo 	    root->last_trans < trans->transid) || force) {
3600b246afaSJeff Mahoney 		WARN_ON(root == fs_info->extent_root);
3614d31778aSQu Wenruo 		WARN_ON(!force && root->commit_root != root->node);
3625d4f98a2SYan Zheng 
3637585717fSChris Mason 		/*
36427cdeb70SMiao Xie 		 * see below for IN_TRANS_SETUP usage rules
3657585717fSChris Mason 		 * we have the reloc mutex held now, so there
3667585717fSChris Mason 		 * is only one writer in this function
3677585717fSChris Mason 		 */
36827cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
3697585717fSChris Mason 
37027cdeb70SMiao Xie 		/* make sure readers find IN_TRANS_SETUP before
3717585717fSChris Mason 		 * they find our root->last_trans update
3727585717fSChris Mason 		 */
3737585717fSChris Mason 		smp_wmb();
3747585717fSChris Mason 
3750b246afaSJeff Mahoney 		spin_lock(&fs_info->fs_roots_radix_lock);
3766426c7adSQu Wenruo 		if (root->last_trans == trans->transid && !force) {
3770b246afaSJeff Mahoney 			spin_unlock(&fs_info->fs_roots_radix_lock);
378a4abeea4SJosef Bacik 			return 0;
379a4abeea4SJosef Bacik 		}
3800b246afaSJeff Mahoney 		radix_tree_tag_set(&fs_info->fs_roots_radix,
3816702ed49SChris Mason 				   (unsigned long)root->root_key.objectid,
3826702ed49SChris Mason 				   BTRFS_ROOT_TRANS_TAG);
3830b246afaSJeff Mahoney 		spin_unlock(&fs_info->fs_roots_radix_lock);
3847585717fSChris Mason 		root->last_trans = trans->transid;
3857585717fSChris Mason 
3867585717fSChris Mason 		/* this is pretty tricky.  We don't want to
3877585717fSChris Mason 		 * take the relocation lock in btrfs_record_root_in_trans
3887585717fSChris Mason 		 * unless we're really doing the first setup for this root in
3897585717fSChris Mason 		 * this transaction.
3907585717fSChris Mason 		 *
3917585717fSChris Mason 		 * Normally we'd use root->last_trans as a flag to decide
3927585717fSChris Mason 		 * if we want to take the expensive mutex.
3937585717fSChris Mason 		 *
3947585717fSChris Mason 		 * But, we have to set root->last_trans before we
3957585717fSChris Mason 		 * init the relocation root, otherwise, we trip over warnings
3967585717fSChris Mason 		 * in ctree.c.  The solution used here is to flag ourselves
39727cdeb70SMiao Xie 		 * with root IN_TRANS_SETUP.  When this is 1, we're still
3987585717fSChris Mason 		 * fixing up the reloc trees and everyone must wait.
3997585717fSChris Mason 		 *
4007585717fSChris Mason 		 * When this is zero, they can trust root->last_trans and fly
4017585717fSChris Mason 		 * through btrfs_record_root_in_trans without having to take the
4027585717fSChris Mason 		 * lock.  smp_wmb() makes sure that all the writes above are
4037585717fSChris Mason 		 * done before we pop in the zero below
4047585717fSChris Mason 		 */
4055d4f98a2SYan Zheng 		btrfs_init_reloc_root(trans, root);
406c7548af6SChris Mason 		smp_mb__before_atomic();
40727cdeb70SMiao Xie 		clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
4086702ed49SChris Mason 	}
4095d4f98a2SYan Zheng 	return 0;
4106702ed49SChris Mason }
4115d4f98a2SYan Zheng 
4127585717fSChris Mason 
4132b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
4142b9dbef2SJosef Bacik 			    struct btrfs_root *root)
4152b9dbef2SJosef Bacik {
4160b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4172b9dbef2SJosef Bacik 	struct btrfs_transaction *cur_trans = trans->transaction;
4182b9dbef2SJosef Bacik 
4192b9dbef2SJosef Bacik 	/* Add ourselves to the transaction dropped list */
4202b9dbef2SJosef Bacik 	spin_lock(&cur_trans->dropped_roots_lock);
4212b9dbef2SJosef Bacik 	list_add_tail(&root->root_list, &cur_trans->dropped_roots);
4222b9dbef2SJosef Bacik 	spin_unlock(&cur_trans->dropped_roots_lock);
4232b9dbef2SJosef Bacik 
4242b9dbef2SJosef Bacik 	/* Make sure we don't try to update the root at commit time */
4250b246afaSJeff Mahoney 	spin_lock(&fs_info->fs_roots_radix_lock);
4260b246afaSJeff Mahoney 	radix_tree_tag_clear(&fs_info->fs_roots_radix,
4272b9dbef2SJosef Bacik 			     (unsigned long)root->root_key.objectid,
4282b9dbef2SJosef Bacik 			     BTRFS_ROOT_TRANS_TAG);
4290b246afaSJeff Mahoney 	spin_unlock(&fs_info->fs_roots_radix_lock);
4302b9dbef2SJosef Bacik }
4312b9dbef2SJosef Bacik 
4327585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
4337585717fSChris Mason 			       struct btrfs_root *root)
4347585717fSChris Mason {
4350b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
4360b246afaSJeff Mahoney 
43727cdeb70SMiao Xie 	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4387585717fSChris Mason 		return 0;
4397585717fSChris Mason 
4407585717fSChris Mason 	/*
44127cdeb70SMiao Xie 	 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
4427585717fSChris Mason 	 * and barriers
4437585717fSChris Mason 	 */
4447585717fSChris Mason 	smp_rmb();
4457585717fSChris Mason 	if (root->last_trans == trans->transid &&
44627cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
4477585717fSChris Mason 		return 0;
4487585717fSChris Mason 
4490b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
4506426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
4510b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
4527585717fSChris Mason 
4537585717fSChris Mason 	return 0;
4547585717fSChris Mason }
4557585717fSChris Mason 
4564a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans)
4574a9d8bdeSMiao Xie {
4583296bf56SQu Wenruo 	return (trans->state >= TRANS_STATE_COMMIT_START &&
459501407aaSJosef Bacik 		trans->state < TRANS_STATE_UNBLOCKED &&
460501407aaSJosef Bacik 		!trans->aborted);
4614a9d8bdeSMiao Xie }
4624a9d8bdeSMiao Xie 
463d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
464d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
465d352ac68SChris Mason  * transaction might not be fully on disk.
466d352ac68SChris Mason  */
4672ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info)
46879154b1bSChris Mason {
469f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
47079154b1bSChris Mason 
4710b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
4720b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
4734a9d8bdeSMiao Xie 	if (cur_trans && is_transaction_blocked(cur_trans)) {
4749b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
4750b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
47672d63ed6SLi Zefan 
4770b246afaSJeff Mahoney 		wait_event(fs_info->transaction_wait,
478501407aaSJosef Bacik 			   cur_trans->state >= TRANS_STATE_UNBLOCKED ||
479501407aaSJosef Bacik 			   cur_trans->aborted);
480724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
481a4abeea4SJosef Bacik 	} else {
4820b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
483f9295749SChris Mason 	}
48437d1aeeeSChris Mason }
48537d1aeeeSChris Mason 
4862ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
48737d1aeeeSChris Mason {
4880b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
489a4abeea4SJosef Bacik 		return 0;
490a4abeea4SJosef Bacik 
49192e2f7e3SNikolay Borisov 	if (type == TRANS_START)
492a4abeea4SJosef Bacik 		return 1;
493a4abeea4SJosef Bacik 
494a22285a6SYan, Zheng 	return 0;
495a22285a6SYan, Zheng }
496a22285a6SYan, Zheng 
49720dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root)
49820dd2cbfSMiao Xie {
4990b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
5000b246afaSJeff Mahoney 
5010b246afaSJeff Mahoney 	if (!fs_info->reloc_ctl ||
50227cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
50320dd2cbfSMiao Xie 	    root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
50420dd2cbfSMiao Xie 	    root->reloc_root)
50520dd2cbfSMiao Xie 		return false;
50620dd2cbfSMiao Xie 
50720dd2cbfSMiao Xie 	return true;
50820dd2cbfSMiao Xie }
50920dd2cbfSMiao Xie 
51008e007d2SMiao Xie static struct btrfs_trans_handle *
5115aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items,
512003d7c59SJeff Mahoney 		  unsigned int type, enum btrfs_reserve_flush_enum flush,
513003d7c59SJeff Mahoney 		  bool enforce_qgroups)
514a22285a6SYan, Zheng {
5150b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
516ba2c4d4eSJosef Bacik 	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
517a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
518a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
519b5009945SJosef Bacik 	u64 num_bytes = 0;
520c5567237SArne Jansen 	u64 qgroup_reserved = 0;
52120dd2cbfSMiao Xie 	bool reloc_reserved = false;
52220dd2cbfSMiao Xie 	int ret;
523acce952bSliubo 
52446c4e71eSFilipe Manana 	/* Send isn't supposed to start transactions. */
5252755a0deSDavid Sterba 	ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB);
52646c4e71eSFilipe Manana 
5270b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
528acce952bSliubo 		return ERR_PTR(-EROFS);
5292a1eb461SJosef Bacik 
53046c4e71eSFilipe Manana 	if (current->journal_info) {
5310860adfdSMiao Xie 		WARN_ON(type & TRANS_EXTWRITERS);
5322a1eb461SJosef Bacik 		h = current->journal_info;
533b50fff81SDavid Sterba 		refcount_inc(&h->use_count);
534b50fff81SDavid Sterba 		WARN_ON(refcount_read(&h->use_count) > 2);
5352a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
5362a1eb461SJosef Bacik 		h->block_rsv = NULL;
5372a1eb461SJosef Bacik 		goto got_it;
5382a1eb461SJosef Bacik 	}
539b5009945SJosef Bacik 
540b5009945SJosef Bacik 	/*
541b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
542b5009945SJosef Bacik 	 * the appropriate flushing if need be.
543b5009945SJosef Bacik 	 */
544003d7c59SJeff Mahoney 	if (num_items && root != fs_info->chunk_root) {
545ba2c4d4eSJosef Bacik 		struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
546ba2c4d4eSJosef Bacik 		u64 delayed_refs_bytes = 0;
547ba2c4d4eSJosef Bacik 
5480b246afaSJeff Mahoney 		qgroup_reserved = num_items * fs_info->nodesize;
549733e03a0SQu Wenruo 		ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
550003d7c59SJeff Mahoney 				enforce_qgroups);
551c5567237SArne Jansen 		if (ret)
552c5567237SArne Jansen 			return ERR_PTR(ret);
553c5567237SArne Jansen 
554ba2c4d4eSJosef Bacik 		/*
555ba2c4d4eSJosef Bacik 		 * We want to reserve all the bytes we may need all at once, so
556ba2c4d4eSJosef Bacik 		 * we only do 1 enospc flushing cycle per transaction start.  We
557ba2c4d4eSJosef Bacik 		 * accomplish this by simply assuming we'll do 2 x num_items
558ba2c4d4eSJosef Bacik 		 * worth of delayed refs updates in this trans handle, and
559ba2c4d4eSJosef Bacik 		 * refill that amount for whatever is missing in the reserve.
560ba2c4d4eSJosef Bacik 		 */
5612bd36e7bSJosef Bacik 		num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
562ba2c4d4eSJosef Bacik 		if (delayed_refs_rsv->full == 0) {
563ba2c4d4eSJosef Bacik 			delayed_refs_bytes = num_bytes;
564ba2c4d4eSJosef Bacik 			num_bytes <<= 1;
565ba2c4d4eSJosef Bacik 		}
566ba2c4d4eSJosef Bacik 
56720dd2cbfSMiao Xie 		/*
56820dd2cbfSMiao Xie 		 * Do the reservation for the relocation root creation
56920dd2cbfSMiao Xie 		 */
570ee39b432SDavid Sterba 		if (need_reserve_reloc_root(root)) {
5710b246afaSJeff Mahoney 			num_bytes += fs_info->nodesize;
57220dd2cbfSMiao Xie 			reloc_reserved = true;
57320dd2cbfSMiao Xie 		}
57420dd2cbfSMiao Xie 
575ba2c4d4eSJosef Bacik 		ret = btrfs_block_rsv_add(root, rsv, num_bytes, flush);
576ba2c4d4eSJosef Bacik 		if (ret)
577ba2c4d4eSJosef Bacik 			goto reserve_fail;
578ba2c4d4eSJosef Bacik 		if (delayed_refs_bytes) {
579ba2c4d4eSJosef Bacik 			btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
580ba2c4d4eSJosef Bacik 							  delayed_refs_bytes);
581ba2c4d4eSJosef Bacik 			num_bytes -= delayed_refs_bytes;
582ba2c4d4eSJosef Bacik 		}
583ba2c4d4eSJosef Bacik 	} else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
584ba2c4d4eSJosef Bacik 		   !delayed_refs_rsv->full) {
585ba2c4d4eSJosef Bacik 		/*
586ba2c4d4eSJosef Bacik 		 * Some people call with btrfs_start_transaction(root, 0)
587ba2c4d4eSJosef Bacik 		 * because they can be throttled, but have some other mechanism
588ba2c4d4eSJosef Bacik 		 * for reserving space.  We still want these guys to refill the
589ba2c4d4eSJosef Bacik 		 * delayed block_rsv so just add 1 items worth of reservation
590ba2c4d4eSJosef Bacik 		 * here.
591ba2c4d4eSJosef Bacik 		 */
592ba2c4d4eSJosef Bacik 		ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
593b5009945SJosef Bacik 		if (ret)
594843fcf35SMiao Xie 			goto reserve_fail;
595b5009945SJosef Bacik 	}
596a22285a6SYan, Zheng again:
597f2f767e7SAlexandru Moise 	h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
598843fcf35SMiao Xie 	if (!h) {
599843fcf35SMiao Xie 		ret = -ENOMEM;
600843fcf35SMiao Xie 		goto alloc_fail;
601843fcf35SMiao Xie 	}
602a22285a6SYan, Zheng 
60398114659SJosef Bacik 	/*
60498114659SJosef Bacik 	 * If we are JOIN_NOLOCK we're already committing a transaction and
60598114659SJosef Bacik 	 * waiting on this guy, so we don't need to do the sb_start_intwrite
60698114659SJosef Bacik 	 * because we're already holding a ref.  We need this because we could
60798114659SJosef Bacik 	 * have raced in and did an fsync() on a file which can kick a commit
60898114659SJosef Bacik 	 * and then we deadlock with somebody doing a freeze.
609354aa0fbSMiao Xie 	 *
610354aa0fbSMiao Xie 	 * If we are ATTACH, it means we just want to catch the current
611354aa0fbSMiao Xie 	 * transaction and commit it, so we needn't do sb_start_intwrite().
61298114659SJosef Bacik 	 */
6130860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
6140b246afaSJeff Mahoney 		sb_start_intwrite(fs_info->sb);
615b2b5ef5cSJan Kara 
6162ff7e61eSJeff Mahoney 	if (may_wait_transaction(fs_info, type))
6172ff7e61eSJeff Mahoney 		wait_current_trans(fs_info);
618a22285a6SYan, Zheng 
619a4abeea4SJosef Bacik 	do {
6202ff7e61eSJeff Mahoney 		ret = join_transaction(fs_info, type);
621178260b2SMiao Xie 		if (ret == -EBUSY) {
6222ff7e61eSJeff Mahoney 			wait_current_trans(fs_info);
623a6d155d2SFilipe Manana 			if (unlikely(type == TRANS_ATTACH ||
624a6d155d2SFilipe Manana 				     type == TRANS_JOIN_NOSTART))
625178260b2SMiao Xie 				ret = -ENOENT;
626178260b2SMiao Xie 		}
627a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
628a4abeea4SJosef Bacik 
629a43f7f82SLiu Bo 	if (ret < 0)
630843fcf35SMiao Xie 		goto join_fail;
6310f7d52f4SChris Mason 
6320b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
633a22285a6SYan, Zheng 
634a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
635a22285a6SYan, Zheng 	h->transaction = cur_trans;
636d13603efSArne Jansen 	h->root = root;
637b50fff81SDavid Sterba 	refcount_set(&h->use_count, 1);
63864b63580SJeff Mahoney 	h->fs_info = root->fs_info;
6397174109cSQu Wenruo 
640a698d075SMiao Xie 	h->type = type;
641d9a0540aSFilipe Manana 	h->can_flush_pending_bgs = true;
642ea658badSJosef Bacik 	INIT_LIST_HEAD(&h->new_bgs);
643b7ec40d7SChris Mason 
644a22285a6SYan, Zheng 	smp_mb();
6453296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
6462ff7e61eSJeff Mahoney 	    may_wait_transaction(fs_info, type)) {
647abdd2e80SFilipe Manana 		current->journal_info = h;
6483a45bb20SJeff Mahoney 		btrfs_commit_transaction(h);
649a22285a6SYan, Zheng 		goto again;
650a22285a6SYan, Zheng 	}
6519ed74f2dSJosef Bacik 
652b5009945SJosef Bacik 	if (num_bytes) {
6530b246afaSJeff Mahoney 		trace_btrfs_space_reservation(fs_info, "transaction",
6542bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
6550b246afaSJeff Mahoney 		h->block_rsv = &fs_info->trans_block_rsv;
656b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
65720dd2cbfSMiao Xie 		h->reloc_reserved = reloc_reserved;
658a22285a6SYan, Zheng 	}
659a22285a6SYan, Zheng 
6602a1eb461SJosef Bacik got_it:
661a4abeea4SJosef Bacik 	btrfs_record_root_in_trans(h, root);
662a22285a6SYan, Zheng 
663bcf3a3e7SNikolay Borisov 	if (!current->journal_info)
664a22285a6SYan, Zheng 		current->journal_info = h;
66579154b1bSChris Mason 	return h;
666843fcf35SMiao Xie 
667843fcf35SMiao Xie join_fail:
6680860adfdSMiao Xie 	if (type & __TRANS_FREEZABLE)
6690b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
670843fcf35SMiao Xie 	kmem_cache_free(btrfs_trans_handle_cachep, h);
671843fcf35SMiao Xie alloc_fail:
672843fcf35SMiao Xie 	if (num_bytes)
6732ff7e61eSJeff Mahoney 		btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
674843fcf35SMiao Xie 					num_bytes);
675843fcf35SMiao Xie reserve_fail:
676733e03a0SQu Wenruo 	btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
677843fcf35SMiao Xie 	return ERR_PTR(ret);
67879154b1bSChris Mason }
67979154b1bSChris Mason 
680f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
6815aed1dd8SAlexandru Moise 						   unsigned int num_items)
682f9295749SChris Mason {
68308e007d2SMiao Xie 	return start_transaction(root, num_items, TRANS_START,
684003d7c59SJeff Mahoney 				 BTRFS_RESERVE_FLUSH_ALL, true);
685f9295749SChris Mason }
686003d7c59SJeff Mahoney 
6878eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
6888eab77ffSFilipe Manana 					struct btrfs_root *root,
6898eab77ffSFilipe Manana 					unsigned int num_items,
6908eab77ffSFilipe Manana 					int min_factor)
6918eab77ffSFilipe Manana {
6920b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
6938eab77ffSFilipe Manana 	struct btrfs_trans_handle *trans;
6948eab77ffSFilipe Manana 	u64 num_bytes;
6958eab77ffSFilipe Manana 	int ret;
6968eab77ffSFilipe Manana 
697003d7c59SJeff Mahoney 	/*
698003d7c59SJeff Mahoney 	 * We have two callers: unlink and block group removal.  The
699003d7c59SJeff Mahoney 	 * former should succeed even if we will temporarily exceed
700003d7c59SJeff Mahoney 	 * quota and the latter operates on the extent root so
701003d7c59SJeff Mahoney 	 * qgroup enforcement is ignored anyway.
702003d7c59SJeff Mahoney 	 */
703003d7c59SJeff Mahoney 	trans = start_transaction(root, num_items, TRANS_START,
704003d7c59SJeff Mahoney 				  BTRFS_RESERVE_FLUSH_ALL, false);
7058eab77ffSFilipe Manana 	if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
7068eab77ffSFilipe Manana 		return trans;
7078eab77ffSFilipe Manana 
7088eab77ffSFilipe Manana 	trans = btrfs_start_transaction(root, 0);
7098eab77ffSFilipe Manana 	if (IS_ERR(trans))
7108eab77ffSFilipe Manana 		return trans;
7118eab77ffSFilipe Manana 
7122bd36e7bSJosef Bacik 	num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
7130b246afaSJeff Mahoney 	ret = btrfs_cond_migrate_bytes(fs_info, &fs_info->trans_block_rsv,
7140b246afaSJeff Mahoney 				       num_bytes, min_factor);
7158eab77ffSFilipe Manana 	if (ret) {
7163a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
7178eab77ffSFilipe Manana 		return ERR_PTR(ret);
7188eab77ffSFilipe Manana 	}
7198eab77ffSFilipe Manana 
7200b246afaSJeff Mahoney 	trans->block_rsv = &fs_info->trans_block_rsv;
7218eab77ffSFilipe Manana 	trans->bytes_reserved = num_bytes;
7220b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
72388d3a5aaSJosef Bacik 				      trans->transid, num_bytes, 1);
7248eab77ffSFilipe Manana 
7258eab77ffSFilipe Manana 	return trans;
7268eab77ffSFilipe Manana }
7278407aa46SMiao Xie 
7287a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
729f9295749SChris Mason {
730003d7c59SJeff Mahoney 	return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
731003d7c59SJeff Mahoney 				 true);
732f9295749SChris Mason }
733f9295749SChris Mason 
7348d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
7350af3d00bSJosef Bacik {
736575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
737003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
7380af3d00bSJosef Bacik }
7390af3d00bSJosef Bacik 
740d4edf39bSMiao Xie /*
741a6d155d2SFilipe Manana  * Similar to regular join but it never starts a transaction when none is
742a6d155d2SFilipe Manana  * running or after waiting for the current one to finish.
743a6d155d2SFilipe Manana  */
744a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
745a6d155d2SFilipe Manana {
746a6d155d2SFilipe Manana 	return start_transaction(root, 0, TRANS_JOIN_NOSTART,
747a6d155d2SFilipe Manana 				 BTRFS_RESERVE_NO_FLUSH, true);
748a6d155d2SFilipe Manana }
749a6d155d2SFilipe Manana 
750a6d155d2SFilipe Manana /*
751d4edf39bSMiao Xie  * btrfs_attach_transaction() - catch the running transaction
752d4edf39bSMiao Xie  *
753d4edf39bSMiao Xie  * It is used when we want to commit the current the transaction, but
754d4edf39bSMiao Xie  * don't want to start a new one.
755d4edf39bSMiao Xie  *
756d4edf39bSMiao Xie  * Note: If this function return -ENOENT, it just means there is no
757d4edf39bSMiao Xie  * running transaction. But it is possible that the inactive transaction
758d4edf39bSMiao Xie  * is still in the memory, not fully on disk. If you hope there is no
759d4edf39bSMiao Xie  * inactive transaction in the fs when -ENOENT is returned, you should
760d4edf39bSMiao Xie  * invoke
761d4edf39bSMiao Xie  *     btrfs_attach_transaction_barrier()
762d4edf39bSMiao Xie  */
763354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
76460376ce4SJosef Bacik {
765575a75d6SAlexandru Moise 	return start_transaction(root, 0, TRANS_ATTACH,
766003d7c59SJeff Mahoney 				 BTRFS_RESERVE_NO_FLUSH, true);
76760376ce4SJosef Bacik }
76860376ce4SJosef Bacik 
769d4edf39bSMiao Xie /*
77090b6d283SWang Sheng-Hui  * btrfs_attach_transaction_barrier() - catch the running transaction
771d4edf39bSMiao Xie  *
77252042d8eSAndrea Gelmini  * It is similar to the above function, the difference is this one
773d4edf39bSMiao Xie  * will wait for all the inactive transactions until they fully
774d4edf39bSMiao Xie  * complete.
775d4edf39bSMiao Xie  */
776d4edf39bSMiao Xie struct btrfs_trans_handle *
777d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root)
778d4edf39bSMiao Xie {
779d4edf39bSMiao Xie 	struct btrfs_trans_handle *trans;
780d4edf39bSMiao Xie 
781575a75d6SAlexandru Moise 	trans = start_transaction(root, 0, TRANS_ATTACH,
782003d7c59SJeff Mahoney 				  BTRFS_RESERVE_NO_FLUSH, true);
7838d9e220cSAl Viro 	if (trans == ERR_PTR(-ENOENT))
7842ff7e61eSJeff Mahoney 		btrfs_wait_for_commit(root->fs_info, 0);
785d4edf39bSMiao Xie 
786d4edf39bSMiao Xie 	return trans;
787d4edf39bSMiao Xie }
788d4edf39bSMiao Xie 
789d352ac68SChris Mason /* wait for a transaction commit to be fully complete */
7902ff7e61eSJeff Mahoney static noinline void wait_for_commit(struct btrfs_transaction *commit)
79189ce8a63SChris Mason {
7924a9d8bdeSMiao Xie 	wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED);
79389ce8a63SChris Mason }
79489ce8a63SChris Mason 
7952ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
79646204592SSage Weil {
79746204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
7988cd2807fSMiao Xie 	int ret = 0;
79946204592SSage Weil 
80046204592SSage Weil 	if (transid) {
8010b246afaSJeff Mahoney 		if (transid <= fs_info->last_trans_committed)
802a4abeea4SJosef Bacik 			goto out;
80346204592SSage Weil 
80446204592SSage Weil 		/* find specified transaction */
8050b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8060b246afaSJeff Mahoney 		list_for_each_entry(t, &fs_info->trans_list, list) {
80746204592SSage Weil 			if (t->transid == transid) {
80846204592SSage Weil 				cur_trans = t;
8099b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
8108cd2807fSMiao Xie 				ret = 0;
81146204592SSage Weil 				break;
81246204592SSage Weil 			}
8138cd2807fSMiao Xie 			if (t->transid > transid) {
8148cd2807fSMiao Xie 				ret = 0;
81546204592SSage Weil 				break;
81646204592SSage Weil 			}
8178cd2807fSMiao Xie 		}
8180b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
81942383020SSage Weil 
82042383020SSage Weil 		/*
82142383020SSage Weil 		 * The specified transaction doesn't exist, or we
82242383020SSage Weil 		 * raced with btrfs_commit_transaction
82342383020SSage Weil 		 */
82442383020SSage Weil 		if (!cur_trans) {
8250b246afaSJeff Mahoney 			if (transid > fs_info->last_trans_committed)
82642383020SSage Weil 				ret = -EINVAL;
8278cd2807fSMiao Xie 			goto out;
82842383020SSage Weil 		}
82946204592SSage Weil 	} else {
83046204592SSage Weil 		/* find newest transaction that is committing | committed */
8310b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
8320b246afaSJeff Mahoney 		list_for_each_entry_reverse(t, &fs_info->trans_list,
83346204592SSage Weil 					    list) {
8344a9d8bdeSMiao Xie 			if (t->state >= TRANS_STATE_COMMIT_START) {
8354a9d8bdeSMiao Xie 				if (t->state == TRANS_STATE_COMPLETED)
8363473f3c0SJosef Bacik 					break;
83746204592SSage Weil 				cur_trans = t;
8389b64f57dSElena Reshetova 				refcount_inc(&cur_trans->use_count);
83946204592SSage Weil 				break;
84046204592SSage Weil 			}
84146204592SSage Weil 		}
8420b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
84346204592SSage Weil 		if (!cur_trans)
844a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
84546204592SSage Weil 	}
84646204592SSage Weil 
8472ff7e61eSJeff Mahoney 	wait_for_commit(cur_trans);
848724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
849a4abeea4SJosef Bacik out:
85046204592SSage Weil 	return ret;
85146204592SSage Weil }
85246204592SSage Weil 
8532ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info)
85437d1aeeeSChris Mason {
8552ff7e61eSJeff Mahoney 	wait_current_trans(fs_info);
85637d1aeeeSChris Mason }
85737d1aeeeSChris Mason 
8582ff7e61eSJeff Mahoney static int should_end_transaction(struct btrfs_trans_handle *trans)
8598929ecfaSYan, Zheng {
8602ff7e61eSJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
8610b246afaSJeff Mahoney 
86264403612SJosef Bacik 	if (btrfs_check_space_for_delayed_refs(fs_info))
8631be41b78SJosef Bacik 		return 1;
86436ba022aSJosef Bacik 
8652ff7e61eSJeff Mahoney 	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
8668929ecfaSYan, Zheng }
8678929ecfaSYan, Zheng 
8683a45bb20SJeff Mahoney int btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
8698929ecfaSYan, Zheng {
8708929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
8718929ecfaSYan, Zheng 
872a4abeea4SJosef Bacik 	smp_mb();
8733296bf56SQu Wenruo 	if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
8744a9d8bdeSMiao Xie 	    cur_trans->delayed_refs.flushing)
8758929ecfaSYan, Zheng 		return 1;
8768929ecfaSYan, Zheng 
8772ff7e61eSJeff Mahoney 	return should_end_transaction(trans);
8788929ecfaSYan, Zheng }
8798929ecfaSYan, Zheng 
880dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
881dc60c525SNikolay Borisov 
8820e34693fSNikolay Borisov {
883dc60c525SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
884dc60c525SNikolay Borisov 
8850e34693fSNikolay Borisov 	if (!trans->block_rsv) {
8860e34693fSNikolay Borisov 		ASSERT(!trans->bytes_reserved);
8870e34693fSNikolay Borisov 		return;
8880e34693fSNikolay Borisov 	}
8890e34693fSNikolay Borisov 
8900e34693fSNikolay Borisov 	if (!trans->bytes_reserved)
8910e34693fSNikolay Borisov 		return;
8920e34693fSNikolay Borisov 
8930e34693fSNikolay Borisov 	ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
8940e34693fSNikolay Borisov 	trace_btrfs_space_reservation(fs_info, "transaction",
8950e34693fSNikolay Borisov 				      trans->transid, trans->bytes_reserved, 0);
8960e34693fSNikolay Borisov 	btrfs_block_rsv_release(fs_info, trans->block_rsv,
8970e34693fSNikolay Borisov 				trans->bytes_reserved);
8980e34693fSNikolay Borisov 	trans->bytes_reserved = 0;
8990e34693fSNikolay Borisov }
9000e34693fSNikolay Borisov 
90189ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
9023a45bb20SJeff Mahoney 				   int throttle)
90379154b1bSChris Mason {
9043a45bb20SJeff Mahoney 	struct btrfs_fs_info *info = trans->fs_info;
9058929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
9064edc2ca3SDave Jones 	int err = 0;
907d6e4a428SChris Mason 
908b50fff81SDavid Sterba 	if (refcount_read(&trans->use_count) > 1) {
909b50fff81SDavid Sterba 		refcount_dec(&trans->use_count);
9102a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
9112a1eb461SJosef Bacik 		return 0;
9122a1eb461SJosef Bacik 	}
9132a1eb461SJosef Bacik 
914dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
9154c13d758SJosef Bacik 	trans->block_rsv = NULL;
916c5567237SArne Jansen 
9176c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
918ea658badSJosef Bacik 
9194fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
9204fbcdf66SFilipe Manana 
9210860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
9220b246afaSJeff Mahoney 		sb_end_intwrite(info->sb);
9236df7881aSJosef Bacik 
9248929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
92513c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
92613c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
9270860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
92889ce8a63SChris Mason 
929093258e6SDavid Sterba 	cond_wake_up(&cur_trans->writer_wait);
930724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
9319ed74f2dSJosef Bacik 
9329ed74f2dSJosef Bacik 	if (current->journal_info == trans)
9339ed74f2dSJosef Bacik 		current->journal_info = NULL;
934ab78c84dSChris Mason 
93524bbcf04SYan, Zheng 	if (throttle)
9362ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(info);
93724bbcf04SYan, Zheng 
93849b25e05SJeff Mahoney 	if (trans->aborted ||
9390b246afaSJeff Mahoney 	    test_bit(BTRFS_FS_STATE_ERROR, &info->fs_state)) {
9404e121c06SJosef Bacik 		wake_up_process(info->transaction_kthread);
9414edc2ca3SDave Jones 		err = -EIO;
9424e121c06SJosef Bacik 	}
94349b25e05SJeff Mahoney 
9444edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
9454edc2ca3SDave Jones 	return err;
94679154b1bSChris Mason }
94779154b1bSChris Mason 
9483a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans)
94989ce8a63SChris Mason {
9503a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 0);
95189ce8a63SChris Mason }
95289ce8a63SChris Mason 
9533a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
95489ce8a63SChris Mason {
9553a45bb20SJeff Mahoney 	return __btrfs_end_transaction(trans, 1);
95616cdcec7SMiao Xie }
95716cdcec7SMiao Xie 
958d352ac68SChris Mason /*
959d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
960d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
961690587d1SChris Mason  * those extents are sent to disk but does not wait on them
962d352ac68SChris Mason  */
9632ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
9648cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
96579154b1bSChris Mason {
966777e6bd7SChris Mason 	int err = 0;
9677c4452b9SChris Mason 	int werr = 0;
9680b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
969e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
970777e6bd7SChris Mason 	u64 start = 0;
9715f39d397SChris Mason 	u64 end;
9727c4452b9SChris Mason 
9736300463bSLiu Bo 	atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
9741728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
975e6138876SJosef Bacik 				      mark, &cached_state)) {
976663dfbb0SFilipe Manana 		bool wait_writeback = false;
977663dfbb0SFilipe Manana 
978663dfbb0SFilipe Manana 		err = convert_extent_bit(dirty_pages, start, end,
979663dfbb0SFilipe Manana 					 EXTENT_NEED_WAIT,
980210aa277SDavid Sterba 					 mark, &cached_state);
981663dfbb0SFilipe Manana 		/*
982663dfbb0SFilipe Manana 		 * convert_extent_bit can return -ENOMEM, which is most of the
983663dfbb0SFilipe Manana 		 * time a temporary error. So when it happens, ignore the error
984663dfbb0SFilipe Manana 		 * and wait for writeback of this range to finish - because we
985663dfbb0SFilipe Manana 		 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
986bf89d38fSJeff Mahoney 		 * to __btrfs_wait_marked_extents() would not know that
987bf89d38fSJeff Mahoney 		 * writeback for this range started and therefore wouldn't
988bf89d38fSJeff Mahoney 		 * wait for it to finish - we don't want to commit a
989bf89d38fSJeff Mahoney 		 * superblock that points to btree nodes/leafs for which
990bf89d38fSJeff Mahoney 		 * writeback hasn't finished yet (and without errors).
991663dfbb0SFilipe Manana 		 * We cleanup any entries left in the io tree when committing
99241e7acd3SNikolay Borisov 		 * the transaction (through extent_io_tree_release()).
993663dfbb0SFilipe Manana 		 */
994663dfbb0SFilipe Manana 		if (err == -ENOMEM) {
995663dfbb0SFilipe Manana 			err = 0;
996663dfbb0SFilipe Manana 			wait_writeback = true;
997663dfbb0SFilipe Manana 		}
998663dfbb0SFilipe Manana 		if (!err)
9991728366eSJosef Bacik 			err = filemap_fdatawrite_range(mapping, start, end);
10007c4452b9SChris Mason 		if (err)
10017c4452b9SChris Mason 			werr = err;
1002663dfbb0SFilipe Manana 		else if (wait_writeback)
1003663dfbb0SFilipe Manana 			werr = filemap_fdatawait_range(mapping, start, end);
1004e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1005663dfbb0SFilipe Manana 		cached_state = NULL;
10061728366eSJosef Bacik 		cond_resched();
10071728366eSJosef Bacik 		start = end + 1;
10087c4452b9SChris Mason 	}
10096300463bSLiu Bo 	atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1010690587d1SChris Mason 	return werr;
1011690587d1SChris Mason }
1012690587d1SChris Mason 
1013690587d1SChris Mason /*
1014690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
1015690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
1016690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
1017690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
1018690587d1SChris Mason  */
1019bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1020bf89d38fSJeff Mahoney 				       struct extent_io_tree *dirty_pages)
1021690587d1SChris Mason {
1022690587d1SChris Mason 	int err = 0;
1023690587d1SChris Mason 	int werr = 0;
10240b246afaSJeff Mahoney 	struct address_space *mapping = fs_info->btree_inode->i_mapping;
1025e6138876SJosef Bacik 	struct extent_state *cached_state = NULL;
1026690587d1SChris Mason 	u64 start = 0;
1027690587d1SChris Mason 	u64 end;
1028690587d1SChris Mason 
10291728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
1030e6138876SJosef Bacik 				      EXTENT_NEED_WAIT, &cached_state)) {
1031663dfbb0SFilipe Manana 		/*
1032663dfbb0SFilipe Manana 		 * Ignore -ENOMEM errors returned by clear_extent_bit().
1033663dfbb0SFilipe Manana 		 * When committing the transaction, we'll remove any entries
1034663dfbb0SFilipe Manana 		 * left in the io tree. For a log commit, we don't remove them
1035663dfbb0SFilipe Manana 		 * after committing the log because the tree can be accessed
1036663dfbb0SFilipe Manana 		 * concurrently - we do it only at transaction commit time when
103741e7acd3SNikolay Borisov 		 * it's safe to do it (through extent_io_tree_release()).
1038663dfbb0SFilipe Manana 		 */
1039663dfbb0SFilipe Manana 		err = clear_extent_bit(dirty_pages, start, end,
1040ae0f1625SDavid Sterba 				       EXTENT_NEED_WAIT, 0, 0, &cached_state);
1041663dfbb0SFilipe Manana 		if (err == -ENOMEM)
1042663dfbb0SFilipe Manana 			err = 0;
1043663dfbb0SFilipe Manana 		if (!err)
10441728366eSJosef Bacik 			err = filemap_fdatawait_range(mapping, start, end);
1045777e6bd7SChris Mason 		if (err)
1046777e6bd7SChris Mason 			werr = err;
1047e38e2ed7SFilipe Manana 		free_extent_state(cached_state);
1048e38e2ed7SFilipe Manana 		cached_state = NULL;
1049777e6bd7SChris Mason 		cond_resched();
10501728366eSJosef Bacik 		start = end + 1;
1051777e6bd7SChris Mason 	}
10527c4452b9SChris Mason 	if (err)
10537c4452b9SChris Mason 		werr = err;
1054bf89d38fSJeff Mahoney 	return werr;
1055bf89d38fSJeff Mahoney }
1056656f30dbSFilipe Manana 
1057b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
1058bf89d38fSJeff Mahoney 		       struct extent_io_tree *dirty_pages)
1059bf89d38fSJeff Mahoney {
1060bf89d38fSJeff Mahoney 	bool errors = false;
1061bf89d38fSJeff Mahoney 	int err;
1062bf89d38fSJeff Mahoney 
1063bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1064bf89d38fSJeff Mahoney 	if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1065bf89d38fSJeff Mahoney 		errors = true;
1066bf89d38fSJeff Mahoney 
1067bf89d38fSJeff Mahoney 	if (errors && !err)
1068bf89d38fSJeff Mahoney 		err = -EIO;
1069bf89d38fSJeff Mahoney 	return err;
1070bf89d38fSJeff Mahoney }
1071bf89d38fSJeff Mahoney 
1072bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1073bf89d38fSJeff Mahoney {
1074bf89d38fSJeff Mahoney 	struct btrfs_fs_info *fs_info = log_root->fs_info;
1075bf89d38fSJeff Mahoney 	struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1076bf89d38fSJeff Mahoney 	bool errors = false;
1077bf89d38fSJeff Mahoney 	int err;
1078bf89d38fSJeff Mahoney 
1079bf89d38fSJeff Mahoney 	ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1080bf89d38fSJeff Mahoney 
1081bf89d38fSJeff Mahoney 	err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1082656f30dbSFilipe Manana 	if ((mark & EXTENT_DIRTY) &&
10830b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1084656f30dbSFilipe Manana 		errors = true;
1085656f30dbSFilipe Manana 
1086656f30dbSFilipe Manana 	if ((mark & EXTENT_NEW) &&
10870b246afaSJeff Mahoney 	    test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1088656f30dbSFilipe Manana 		errors = true;
1089656f30dbSFilipe Manana 
1090bf89d38fSJeff Mahoney 	if (errors && !err)
1091bf89d38fSJeff Mahoney 		err = -EIO;
1092bf89d38fSJeff Mahoney 	return err;
109379154b1bSChris Mason }
109479154b1bSChris Mason 
1095690587d1SChris Mason /*
1096c9b577c0SNikolay Borisov  * When btree blocks are allocated the corresponding extents are marked dirty.
1097c9b577c0SNikolay Borisov  * This function ensures such extents are persisted on disk for transaction or
1098c9b577c0SNikolay Borisov  * log commit.
1099c9b577c0SNikolay Borisov  *
1100c9b577c0SNikolay Borisov  * @trans: transaction whose dirty pages we'd like to write
1101690587d1SChris Mason  */
110270458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
1103d0c803c4SChris Mason {
1104663dfbb0SFilipe Manana 	int ret;
1105c9b577c0SNikolay Borisov 	int ret2;
1106c9b577c0SNikolay Borisov 	struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
110770458a58SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1108c9b577c0SNikolay Borisov 	struct blk_plug plug;
1109663dfbb0SFilipe Manana 
1110c9b577c0SNikolay Borisov 	blk_start_plug(&plug);
1111c9b577c0SNikolay Borisov 	ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
1112c9b577c0SNikolay Borisov 	blk_finish_plug(&plug);
1113c9b577c0SNikolay Borisov 	ret2 = btrfs_wait_extents(fs_info, dirty_pages);
1114c9b577c0SNikolay Borisov 
111541e7acd3SNikolay Borisov 	extent_io_tree_release(&trans->transaction->dirty_pages);
1116663dfbb0SFilipe Manana 
1117c9b577c0SNikolay Borisov 	if (ret)
1118663dfbb0SFilipe Manana 		return ret;
1119c9b577c0SNikolay Borisov 	else if (ret2)
1120c9b577c0SNikolay Borisov 		return ret2;
1121c9b577c0SNikolay Borisov 	else
1122c9b577c0SNikolay Borisov 		return 0;
1123d0c803c4SChris Mason }
1124d0c803c4SChris Mason 
1125d352ac68SChris Mason /*
1126d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
1127d352ac68SChris Mason  *
1128d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
1129d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
1130d352ac68SChris Mason  * allocation tree.
1131d352ac68SChris Mason  *
1132d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
1133d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
1134d352ac68SChris Mason  */
11350b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
113679154b1bSChris Mason 			       struct btrfs_root *root)
113779154b1bSChris Mason {
113879154b1bSChris Mason 	int ret;
11390b86a832SChris Mason 	u64 old_root_bytenr;
114086b9f2ecSYan, Zheng 	u64 old_root_used;
11410b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
11420b246afaSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
114379154b1bSChris Mason 
114486b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
114556bec294SChris Mason 
114679154b1bSChris Mason 	while (1) {
11470b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
114886b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
1149ea526d18SJosef Bacik 		    old_root_used == btrfs_root_used(&root->root_item))
115079154b1bSChris Mason 			break;
115187ef2bb4SChris Mason 
11525d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
115379154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
11540b86a832SChris Mason 					&root->root_key,
11550b86a832SChris Mason 					&root->root_item);
115649b25e05SJeff Mahoney 		if (ret)
115749b25e05SJeff Mahoney 			return ret;
115856bec294SChris Mason 
115986b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
1160e7070be1SJosef Bacik 	}
1161276e680dSYan Zheng 
11620b86a832SChris Mason 	return 0;
11630b86a832SChris Mason }
11640b86a832SChris Mason 
1165d352ac68SChris Mason /*
1166d352ac68SChris Mason  * update all the cowonly tree roots on disk
116749b25e05SJeff Mahoney  *
116849b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
116949b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
117049b25e05SJeff Mahoney  * to clean up the delayed refs.
1171d352ac68SChris Mason  */
11729386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
11730b86a832SChris Mason {
11749386d8bcSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
1175ea526d18SJosef Bacik 	struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
11761bbc621eSChris Mason 	struct list_head *io_bgs = &trans->transaction->io_bgs;
11770b86a832SChris Mason 	struct list_head *next;
117884234f3aSYan Zheng 	struct extent_buffer *eb;
117956bec294SChris Mason 	int ret;
118084234f3aSYan Zheng 
118184234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
118249b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
118349b25e05SJeff Mahoney 			      0, &eb);
118484234f3aSYan Zheng 	btrfs_tree_unlock(eb);
118584234f3aSYan Zheng 	free_extent_buffer(eb);
11860b86a832SChris Mason 
118749b25e05SJeff Mahoney 	if (ret)
118849b25e05SJeff Mahoney 		return ret;
118949b25e05SJeff Mahoney 
1190c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
119149b25e05SJeff Mahoney 	if (ret)
119249b25e05SJeff Mahoney 		return ret;
119387ef2bb4SChris Mason 
1194196c9d8dSDavid Sterba 	ret = btrfs_run_dev_stats(trans);
1195c16ce190SJosef Bacik 	if (ret)
1196c16ce190SJosef Bacik 		return ret;
11972b584c68SDavid Sterba 	ret = btrfs_run_dev_replace(trans);
1198c16ce190SJosef Bacik 	if (ret)
1199c16ce190SJosef Bacik 		return ret;
1200280f8bd2SLu Fengqi 	ret = btrfs_run_qgroups(trans);
1201c16ce190SJosef Bacik 	if (ret)
1202c16ce190SJosef Bacik 		return ret;
1203546adb0dSJan Schmidt 
1204bbebb3e0SDavid Sterba 	ret = btrfs_setup_space_cache(trans);
1205dcdf7f6dSJosef Bacik 	if (ret)
1206dcdf7f6dSJosef Bacik 		return ret;
1207dcdf7f6dSJosef Bacik 
1208546adb0dSJan Schmidt 	/* run_qgroups might have added some more refs */
1209c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1210c16ce190SJosef Bacik 	if (ret)
1211c16ce190SJosef Bacik 		return ret;
1212ea526d18SJosef Bacik again:
12130b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
12142ff7e61eSJeff Mahoney 		struct btrfs_root *root;
12150b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
12160b86a832SChris Mason 		list_del_init(next);
12170b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
1218e7070be1SJosef Bacik 		clear_bit(BTRFS_ROOT_DIRTY, &root->state);
121987ef2bb4SChris Mason 
12209e351cc8SJosef Bacik 		if (root != fs_info->extent_root)
12219e351cc8SJosef Bacik 			list_add_tail(&root->dirty_list,
12229e351cc8SJosef Bacik 				      &trans->transaction->switch_commits);
122349b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
122449b25e05SJeff Mahoney 		if (ret)
122549b25e05SJeff Mahoney 			return ret;
1226c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1227ea526d18SJosef Bacik 		if (ret)
1228ea526d18SJosef Bacik 			return ret;
122979154b1bSChris Mason 	}
1230276e680dSYan Zheng 
12311bbc621eSChris Mason 	while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
12325742d15fSDavid Sterba 		ret = btrfs_write_dirty_block_groups(trans);
1233ea526d18SJosef Bacik 		if (ret)
1234ea526d18SJosef Bacik 			return ret;
1235c79a70b1SNikolay Borisov 		ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1236ea526d18SJosef Bacik 		if (ret)
1237ea526d18SJosef Bacik 			return ret;
1238ea526d18SJosef Bacik 	}
1239ea526d18SJosef Bacik 
1240ea526d18SJosef Bacik 	if (!list_empty(&fs_info->dirty_cowonly_roots))
1241ea526d18SJosef Bacik 		goto again;
1242ea526d18SJosef Bacik 
12439e351cc8SJosef Bacik 	list_add_tail(&fs_info->extent_root->dirty_list,
12449e351cc8SJosef Bacik 		      &trans->transaction->switch_commits);
12459f6cbcbbSDavid Sterba 
12469f6cbcbbSDavid Sterba 	/* Update dev-replace pointer once everything is committed */
12479f6cbcbbSDavid Sterba 	fs_info->dev_replace.committed_cursor_left =
12489f6cbcbbSDavid Sterba 		fs_info->dev_replace.cursor_left_last_write_of_item;
12498dabb742SStefan Behrens 
125079154b1bSChris Mason 	return 0;
125179154b1bSChris Mason }
125279154b1bSChris Mason 
1253d352ac68SChris Mason /*
1254d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
1255d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
1256d352ac68SChris Mason  * be deleted
1257d352ac68SChris Mason  */
1258cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root)
12595eda7b5eSChris Mason {
12600b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12610b246afaSJeff Mahoney 
12620b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
1263cfad392bSJosef Bacik 	if (list_empty(&root->root_list))
12640b246afaSJeff Mahoney 		list_add_tail(&root->root_list, &fs_info->dead_roots);
12650b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
12665eda7b5eSChris Mason }
12675eda7b5eSChris Mason 
1268d352ac68SChris Mason /*
12695d4f98a2SYan Zheng  * update all the cowonly tree roots on disk
1270d352ac68SChris Mason  */
12717e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
12720f7d52f4SChris Mason {
12737e4443d9SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
12740f7d52f4SChris Mason 	struct btrfs_root *gang[8];
12750f7d52f4SChris Mason 	int i;
12760f7d52f4SChris Mason 	int ret;
127754aa1f4dSChris Mason 	int err = 0;
127854aa1f4dSChris Mason 
1279a4abeea4SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
12800f7d52f4SChris Mason 	while (1) {
12815d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
12825d4f98a2SYan Zheng 						 (void **)gang, 0,
12830f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
12840f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
12850f7d52f4SChris Mason 		if (ret == 0)
12860f7d52f4SChris Mason 			break;
12870f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
12885b4aacefSJeff Mahoney 			struct btrfs_root *root = gang[i];
12895d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
12902619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
12910f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
1292a4abeea4SJosef Bacik 			spin_unlock(&fs_info->fs_roots_radix_lock);
129331153d81SYan Zheng 
1294e02119d5SChris Mason 			btrfs_free_log(trans, root);
12955d4f98a2SYan Zheng 			btrfs_update_reloc_root(trans, root);
1296e02119d5SChris Mason 
129782d5902dSLi Zefan 			btrfs_save_ino_cache(root, trans);
129882d5902dSLi Zefan 
1299f1ebcc74SLiu Bo 			/* see comments in should_cow_block() */
130027cdeb70SMiao Xie 			clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1301c7548af6SChris Mason 			smp_mb__after_atomic();
1302f1ebcc74SLiu Bo 
1303978d910dSYan Zheng 			if (root->commit_root != root->node) {
13049e351cc8SJosef Bacik 				list_add_tail(&root->dirty_list,
13059e351cc8SJosef Bacik 					&trans->transaction->switch_commits);
1306978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
1307978d910dSYan Zheng 						    root->node);
1308978d910dSYan Zheng 			}
130931153d81SYan Zheng 
13105d4f98a2SYan Zheng 			err = btrfs_update_root(trans, fs_info->tree_root,
13110f7d52f4SChris Mason 						&root->root_key,
13120f7d52f4SChris Mason 						&root->root_item);
1313a4abeea4SJosef Bacik 			spin_lock(&fs_info->fs_roots_radix_lock);
131454aa1f4dSChris Mason 			if (err)
131554aa1f4dSChris Mason 				break;
1316733e03a0SQu Wenruo 			btrfs_qgroup_free_meta_all_pertrans(root);
13170f7d52f4SChris Mason 		}
13189f3a7427SChris Mason 	}
1319a4abeea4SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
132054aa1f4dSChris Mason 	return err;
13210f7d52f4SChris Mason }
13220f7d52f4SChris Mason 
1323d352ac68SChris Mason /*
1324de78b51aSEric Sandeen  * defrag a given btree.
1325de78b51aSEric Sandeen  * Every leaf in the btree is read and defragged.
1326d352ac68SChris Mason  */
1327de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root)
1328e9d0b13bSChris Mason {
1329e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
1330e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
13318929ecfaSYan, Zheng 	int ret;
1332e9d0b13bSChris Mason 
133327cdeb70SMiao Xie 	if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
1334e9d0b13bSChris Mason 		return 0;
13358929ecfaSYan, Zheng 
13366b80053dSChris Mason 	while (1) {
13378929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
13388929ecfaSYan, Zheng 		if (IS_ERR(trans))
13398929ecfaSYan, Zheng 			return PTR_ERR(trans);
13408929ecfaSYan, Zheng 
1341de78b51aSEric Sandeen 		ret = btrfs_defrag_leaves(trans, root);
13428929ecfaSYan, Zheng 
13433a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
13442ff7e61eSJeff Mahoney 		btrfs_btree_balance_dirty(info);
1345e9d0b13bSChris Mason 		cond_resched();
1346e9d0b13bSChris Mason 
1347ab8d0fc4SJeff Mahoney 		if (btrfs_fs_closing(info) || ret != -EAGAIN)
1348e9d0b13bSChris Mason 			break;
1349210549ebSDavid Sterba 
1350ab8d0fc4SJeff Mahoney 		if (btrfs_defrag_cancelled(info)) {
1351ab8d0fc4SJeff Mahoney 			btrfs_debug(info, "defrag_root cancelled");
1352210549ebSDavid Sterba 			ret = -EAGAIN;
1353210549ebSDavid Sterba 			break;
1354210549ebSDavid Sterba 		}
1355e9d0b13bSChris Mason 	}
135627cdeb70SMiao Xie 	clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
13578929ecfaSYan, Zheng 	return ret;
1358e9d0b13bSChris Mason }
1359e9d0b13bSChris Mason 
1360d352ac68SChris Mason /*
13616426c7adSQu Wenruo  * Do all special snapshot related qgroup dirty hack.
13626426c7adSQu Wenruo  *
13636426c7adSQu Wenruo  * Will do all needed qgroup inherit and dirty hack like switch commit
13646426c7adSQu Wenruo  * roots inside one transaction and write all btree into disk, to make
13656426c7adSQu Wenruo  * qgroup works.
13666426c7adSQu Wenruo  */
13676426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
13686426c7adSQu Wenruo 				   struct btrfs_root *src,
13696426c7adSQu Wenruo 				   struct btrfs_root *parent,
13706426c7adSQu Wenruo 				   struct btrfs_qgroup_inherit *inherit,
13716426c7adSQu Wenruo 				   u64 dst_objectid)
13726426c7adSQu Wenruo {
13736426c7adSQu Wenruo 	struct btrfs_fs_info *fs_info = src->fs_info;
13746426c7adSQu Wenruo 	int ret;
13756426c7adSQu Wenruo 
13766426c7adSQu Wenruo 	/*
13776426c7adSQu Wenruo 	 * Save some performance in the case that qgroups are not
13786426c7adSQu Wenruo 	 * enabled. If this check races with the ioctl, rescan will
13796426c7adSQu Wenruo 	 * kick in anyway.
13806426c7adSQu Wenruo 	 */
13819ea6e2b5SDavid Sterba 	if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
13826426c7adSQu Wenruo 		return 0;
13836426c7adSQu Wenruo 
13846426c7adSQu Wenruo 	/*
138552042d8eSAndrea Gelmini 	 * Ensure dirty @src will be committed.  Or, after coming
13864d31778aSQu Wenruo 	 * commit_fs_roots() and switch_commit_roots(), any dirty but not
13874d31778aSQu Wenruo 	 * recorded root will never be updated again, causing an outdated root
13884d31778aSQu Wenruo 	 * item.
13894d31778aSQu Wenruo 	 */
13904d31778aSQu Wenruo 	record_root_in_trans(trans, src, 1);
13914d31778aSQu Wenruo 
13924d31778aSQu Wenruo 	/*
13936426c7adSQu Wenruo 	 * We are going to commit transaction, see btrfs_commit_transaction()
13946426c7adSQu Wenruo 	 * comment for reason locking tree_log_mutex
13956426c7adSQu Wenruo 	 */
13966426c7adSQu Wenruo 	mutex_lock(&fs_info->tree_log_mutex);
13976426c7adSQu Wenruo 
13987e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
13996426c7adSQu Wenruo 	if (ret)
14006426c7adSQu Wenruo 		goto out;
1401460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
14026426c7adSQu Wenruo 	if (ret < 0)
14036426c7adSQu Wenruo 		goto out;
14046426c7adSQu Wenruo 
14056426c7adSQu Wenruo 	/* Now qgroup are all updated, we can inherit it to new qgroups */
1406a9377422SLu Fengqi 	ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
14076426c7adSQu Wenruo 				   inherit);
14086426c7adSQu Wenruo 	if (ret < 0)
14096426c7adSQu Wenruo 		goto out;
14106426c7adSQu Wenruo 
14116426c7adSQu Wenruo 	/*
14126426c7adSQu Wenruo 	 * Now we do a simplified commit transaction, which will:
14136426c7adSQu Wenruo 	 * 1) commit all subvolume and extent tree
14146426c7adSQu Wenruo 	 *    To ensure all subvolume and extent tree have a valid
14156426c7adSQu Wenruo 	 *    commit_root to accounting later insert_dir_item()
14166426c7adSQu Wenruo 	 * 2) write all btree blocks onto disk
14176426c7adSQu Wenruo 	 *    This is to make sure later btree modification will be cowed
14186426c7adSQu Wenruo 	 *    Or commit_root can be populated and cause wrong qgroup numbers
14196426c7adSQu Wenruo 	 * In this simplified commit, we don't really care about other trees
14206426c7adSQu Wenruo 	 * like chunk and root tree, as they won't affect qgroup.
14216426c7adSQu Wenruo 	 * And we don't write super to avoid half committed status.
14226426c7adSQu Wenruo 	 */
14239386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
14246426c7adSQu Wenruo 	if (ret)
14256426c7adSQu Wenruo 		goto out;
1426889bfa39SJosef Bacik 	switch_commit_roots(trans);
142770458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
14286426c7adSQu Wenruo 	if (ret)
1429f7af3934SDavid Sterba 		btrfs_handle_fs_error(fs_info, ret,
14306426c7adSQu Wenruo 			"Error while writing out transaction for qgroup");
14316426c7adSQu Wenruo 
14326426c7adSQu Wenruo out:
14336426c7adSQu Wenruo 	mutex_unlock(&fs_info->tree_log_mutex);
14346426c7adSQu Wenruo 
14356426c7adSQu Wenruo 	/*
14366426c7adSQu Wenruo 	 * Force parent root to be updated, as we recorded it before so its
14376426c7adSQu Wenruo 	 * last_trans == cur_transid.
14386426c7adSQu Wenruo 	 * Or it won't be committed again onto disk after later
14396426c7adSQu Wenruo 	 * insert_dir_item()
14406426c7adSQu Wenruo 	 */
14416426c7adSQu Wenruo 	if (!ret)
14426426c7adSQu Wenruo 		record_root_in_trans(trans, parent, 1);
14436426c7adSQu Wenruo 	return ret;
14446426c7adSQu Wenruo }
14456426c7adSQu Wenruo 
14466426c7adSQu Wenruo /*
1447d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
1448aec8030aSMiao Xie  * transaction commit.  This does the actual creation.
1449aec8030aSMiao Xie  *
1450aec8030aSMiao Xie  * Note:
1451aec8030aSMiao Xie  * If the error which may affect the commitment of the current transaction
1452aec8030aSMiao Xie  * happens, we should return the error number. If the error which just affect
1453aec8030aSMiao Xie  * the creation of the pending snapshots, just return 0.
1454d352ac68SChris Mason  */
145580b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
14563063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
14573063d29fSChris Mason {
145808d50ca3SNikolay Borisov 
145908d50ca3SNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
14603063d29fSChris Mason 	struct btrfs_key key;
146180b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
14623063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
14633063d29fSChris Mason 	struct btrfs_root *root = pending->root;
14646bdb72deSSage Weil 	struct btrfs_root *parent_root;
146598c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
14666bdb72deSSage Weil 	struct inode *parent_inode;
146742874b3dSMiao Xie 	struct btrfs_path *path;
146842874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
1469a22285a6SYan, Zheng 	struct dentry *dentry;
14703063d29fSChris Mason 	struct extent_buffer *tmp;
1471925baeddSChris Mason 	struct extent_buffer *old;
147295582b00SDeepa Dinamani 	struct timespec64 cur_time;
1473aec8030aSMiao Xie 	int ret = 0;
1474d68fc57bSYan, Zheng 	u64 to_reserve = 0;
14756bdb72deSSage Weil 	u64 index = 0;
1476a22285a6SYan, Zheng 	u64 objectid;
1477b83cc969SLi Zefan 	u64 root_flags;
14788ea05e3aSAlexander Block 	uuid_le new_uuid;
14793063d29fSChris Mason 
14808546b570SDavid Sterba 	ASSERT(pending->path);
14818546b570SDavid Sterba 	path = pending->path;
148242874b3dSMiao Xie 
1483b0c0ea63SDavid Sterba 	ASSERT(pending->root_item);
1484b0c0ea63SDavid Sterba 	new_root_item = pending->root_item;
1485a22285a6SYan, Zheng 
1486aec8030aSMiao Xie 	pending->error = btrfs_find_free_objectid(tree_root, &objectid);
1487aec8030aSMiao Xie 	if (pending->error)
14886fa9700eSMiao Xie 		goto no_free_objectid;
14893063d29fSChris Mason 
1490d6726335SQu Wenruo 	/*
1491d6726335SQu Wenruo 	 * Make qgroup to skip current new snapshot's qgroupid, as it is
1492d6726335SQu Wenruo 	 * accounted by later btrfs_qgroup_inherit().
1493d6726335SQu Wenruo 	 */
1494d6726335SQu Wenruo 	btrfs_set_skip_qgroup(trans, objectid);
1495d6726335SQu Wenruo 
1496147d256eSZhaolei 	btrfs_reloc_pre_snapshot(pending, &to_reserve);
1497d68fc57bSYan, Zheng 
1498d68fc57bSYan, Zheng 	if (to_reserve > 0) {
1499aec8030aSMiao Xie 		pending->error = btrfs_block_rsv_add(root,
1500aec8030aSMiao Xie 						     &pending->block_rsv,
150108e007d2SMiao Xie 						     to_reserve,
150208e007d2SMiao Xie 						     BTRFS_RESERVE_NO_FLUSH);
1503aec8030aSMiao Xie 		if (pending->error)
1504d6726335SQu Wenruo 			goto clear_skip_qgroup;
1505d68fc57bSYan, Zheng 	}
1506d68fc57bSYan, Zheng 
15073063d29fSChris Mason 	key.objectid = objectid;
1508a22285a6SYan, Zheng 	key.offset = (u64)-1;
1509a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
15103063d29fSChris Mason 
15116fa9700eSMiao Xie 	rsv = trans->block_rsv;
1512a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
15132382c5ccSLiu Bo 	trans->bytes_reserved = trans->block_rsv->reserved;
15140b246afaSJeff Mahoney 	trace_btrfs_space_reservation(fs_info, "transaction",
151588d3a5aaSJosef Bacik 				      trans->transid,
151688d3a5aaSJosef Bacik 				      trans->bytes_reserved, 1);
1517a22285a6SYan, Zheng 	dentry = pending->dentry;
1518e9662f70SMiao Xie 	parent_inode = pending->dir;
1519a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
15206426c7adSQu Wenruo 	record_root_in_trans(trans, parent_root, 0);
1521a22285a6SYan, Zheng 
1522c2050a45SDeepa Dinamani 	cur_time = current_time(parent_inode);
152304b285f3SDeepa Dinamani 
15246bdb72deSSage Weil 	/*
15256bdb72deSSage Weil 	 * insert the directory item
15266bdb72deSSage Weil 	 */
1527877574e2SNikolay Borisov 	ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
152849b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
152942874b3dSMiao Xie 
153042874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
153142874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
15324a0cc7caSNikolay Borisov 					 btrfs_ino(BTRFS_I(parent_inode)),
153342874b3dSMiao Xie 					 dentry->d_name.name,
153442874b3dSMiao Xie 					 dentry->d_name.len, 0);
153542874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1536fe66a05aSChris Mason 		pending->error = -EEXIST;
1537aec8030aSMiao Xie 		goto dir_item_existed;
153842874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
153942874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
154066642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15418732d44fSMiao Xie 		goto fail;
154279787eaaSJeff Mahoney 	}
154342874b3dSMiao Xie 	btrfs_release_path(path);
15446bdb72deSSage Weil 
1545e999376fSChris Mason 	/*
1546e999376fSChris Mason 	 * pull in the delayed directory update
1547e999376fSChris Mason 	 * and the delayed inode item
1548e999376fSChris Mason 	 * otherwise we corrupt the FS during
1549e999376fSChris Mason 	 * snapshot
1550e999376fSChris Mason 	 */
1551e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
15528732d44fSMiao Xie 	if (ret) {	/* Transaction aborted */
155366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15548732d44fSMiao Xie 		goto fail;
15558732d44fSMiao Xie 	}
1556e999376fSChris Mason 
15576426c7adSQu Wenruo 	record_root_in_trans(trans, root, 0);
15586bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
15596bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
156008fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
15616bdb72deSSage Weil 
1562b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1563b83cc969SLi Zefan 	if (pending->readonly)
1564b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1565b83cc969SLi Zefan 	else
1566b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1567b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1568b83cc969SLi Zefan 
15698ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
15708ea05e3aSAlexander Block 			trans->transid);
15718ea05e3aSAlexander Block 	uuid_le_gen(&new_uuid);
15728ea05e3aSAlexander Block 	memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
15738ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
15748ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
157570023da2SStefan Behrens 	if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
157670023da2SStefan Behrens 		memset(new_root_item->received_uuid, 0,
157770023da2SStefan Behrens 		       sizeof(new_root_item->received_uuid));
15788ea05e3aSAlexander Block 		memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
15798ea05e3aSAlexander Block 		memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
15808ea05e3aSAlexander Block 		btrfs_set_root_stransid(new_root_item, 0);
15818ea05e3aSAlexander Block 		btrfs_set_root_rtransid(new_root_item, 0);
158270023da2SStefan Behrens 	}
15833cae210fSQu Wenruo 	btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
15843cae210fSQu Wenruo 	btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
158570023da2SStefan Behrens 	btrfs_set_root_otransid(new_root_item, trans->transid);
15868ea05e3aSAlexander Block 
1587925baeddSChris Mason 	old = btrfs_lock_root_node(root);
158849b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old);
158979787eaaSJeff Mahoney 	if (ret) {
159079787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
159179787eaaSJeff Mahoney 		free_extent_buffer(old);
159266642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
15938732d44fSMiao Xie 		goto fail;
159479787eaaSJeff Mahoney 	}
159549b25e05SJeff Mahoney 
15968bead258SDavid Sterba 	btrfs_set_lock_blocking_write(old);
15973063d29fSChris Mason 
159849b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
159979787eaaSJeff Mahoney 	/* clean up in any case */
1600925baeddSChris Mason 	btrfs_tree_unlock(old);
1601925baeddSChris Mason 	free_extent_buffer(old);
16028732d44fSMiao Xie 	if (ret) {
160366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16048732d44fSMiao Xie 		goto fail;
16058732d44fSMiao Xie 	}
1606f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
160727cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1608f1ebcc74SLiu Bo 	smp_wmb();
1609f1ebcc74SLiu Bo 
16105d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1611a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1612a22285a6SYan, Zheng 	key.offset = trans->transid;
1613a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1614925baeddSChris Mason 	btrfs_tree_unlock(tmp);
16153063d29fSChris Mason 	free_extent_buffer(tmp);
16168732d44fSMiao Xie 	if (ret) {
161766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16188732d44fSMiao Xie 		goto fail;
16198732d44fSMiao Xie 	}
16200660b5afSChris Mason 
1621a22285a6SYan, Zheng 	/*
1622a22285a6SYan, Zheng 	 * insert root back/forward references
1623a22285a6SYan, Zheng 	 */
16246025c19fSLu Fengqi 	ret = btrfs_add_root_ref(trans, objectid,
1625a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
16264a0cc7caSNikolay Borisov 				 btrfs_ino(BTRFS_I(parent_inode)), index,
1627a22285a6SYan, Zheng 				 dentry->d_name.name, dentry->d_name.len);
16288732d44fSMiao Xie 	if (ret) {
162966642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16308732d44fSMiao Xie 		goto fail;
16318732d44fSMiao Xie 	}
1632a22285a6SYan, Zheng 
1633a22285a6SYan, Zheng 	key.offset = (u64)-1;
16340b246afaSJeff Mahoney 	pending->snap = btrfs_read_fs_root_no_name(fs_info, &key);
163579787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
163679787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
163766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16388732d44fSMiao Xie 		goto fail;
163979787eaaSJeff Mahoney 	}
1640d68fc57bSYan, Zheng 
164149b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
16428732d44fSMiao Xie 	if (ret) {
164366642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16448732d44fSMiao Xie 		goto fail;
16458732d44fSMiao Xie 	}
1646361048f5SMiao Xie 
1647c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
16488732d44fSMiao Xie 	if (ret) {
164966642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16508732d44fSMiao Xie 		goto fail;
16518732d44fSMiao Xie 	}
165242874b3dSMiao Xie 
16536426c7adSQu Wenruo 	/*
16546426c7adSQu Wenruo 	 * Do special qgroup accounting for snapshot, as we do some qgroup
16556426c7adSQu Wenruo 	 * snapshot hack to do fast snapshot.
16566426c7adSQu Wenruo 	 * To co-operate with that hack, we do hack again.
16576426c7adSQu Wenruo 	 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
16586426c7adSQu Wenruo 	 */
16596426c7adSQu Wenruo 	ret = qgroup_account_snapshot(trans, root, parent_root,
16606426c7adSQu Wenruo 				      pending->inherit, objectid);
16616426c7adSQu Wenruo 	if (ret < 0)
16626426c7adSQu Wenruo 		goto fail;
16636426c7adSQu Wenruo 
1664684572dfSLu Fengqi 	ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1665684572dfSLu Fengqi 				    dentry->d_name.len, BTRFS_I(parent_inode),
1666684572dfSLu Fengqi 				    &key, BTRFS_FT_DIR, index);
166742874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
16689c52057cSChris Mason 	BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
16698732d44fSMiao Xie 	if (ret) {
167066642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
16718732d44fSMiao Xie 		goto fail;
16728732d44fSMiao Xie 	}
167342874b3dSMiao Xie 
16746ef06d27SNikolay Borisov 	btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
167542874b3dSMiao Xie 					 dentry->d_name.len * 2);
167604b285f3SDeepa Dinamani 	parent_inode->i_mtime = parent_inode->i_ctime =
1677c2050a45SDeepa Dinamani 		current_time(parent_inode);
1678be6aef60SJosef Bacik 	ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode);
1679dd5f9615SStefan Behrens 	if (ret) {
168066642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1681dd5f9615SStefan Behrens 		goto fail;
1682dd5f9615SStefan Behrens 	}
1683cdb345a8SLu Fengqi 	ret = btrfs_uuid_tree_add(trans, new_uuid.b, BTRFS_UUID_KEY_SUBVOL,
1684cdb345a8SLu Fengqi 				  objectid);
1685dd5f9615SStefan Behrens 	if (ret) {
168666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1687dd5f9615SStefan Behrens 		goto fail;
1688dd5f9615SStefan Behrens 	}
1689dd5f9615SStefan Behrens 	if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1690cdb345a8SLu Fengqi 		ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
1691dd5f9615SStefan Behrens 					  BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1692dd5f9615SStefan Behrens 					  objectid);
1693dd5f9615SStefan Behrens 		if (ret && ret != -EEXIST) {
169466642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
1695dd5f9615SStefan Behrens 			goto fail;
1696dd5f9615SStefan Behrens 		}
1697dd5f9615SStefan Behrens 	}
1698d6726335SQu Wenruo 
1699c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1700d6726335SQu Wenruo 	if (ret) {
170166642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
1702d6726335SQu Wenruo 		goto fail;
1703d6726335SQu Wenruo 	}
1704d6726335SQu Wenruo 
17053063d29fSChris Mason fail:
1706aec8030aSMiao Xie 	pending->error = ret;
1707aec8030aSMiao Xie dir_item_existed:
170898c9942aSLiu Bo 	trans->block_rsv = rsv;
17092382c5ccSLiu Bo 	trans->bytes_reserved = 0;
1710d6726335SQu Wenruo clear_skip_qgroup:
1711d6726335SQu Wenruo 	btrfs_clear_skip_qgroup(trans);
17126fa9700eSMiao Xie no_free_objectid:
17136fa9700eSMiao Xie 	kfree(new_root_item);
1714b0c0ea63SDavid Sterba 	pending->root_item = NULL;
171542874b3dSMiao Xie 	btrfs_free_path(path);
17168546b570SDavid Sterba 	pending->path = NULL;
17178546b570SDavid Sterba 
171849b25e05SJeff Mahoney 	return ret;
17193063d29fSChris Mason }
17203063d29fSChris Mason 
1721d352ac68SChris Mason /*
1722d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1723d352ac68SChris Mason  */
172408d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
17253063d29fSChris Mason {
1726aec8030aSMiao Xie 	struct btrfs_pending_snapshot *pending, *next;
17273063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
1728aec8030aSMiao Xie 	int ret = 0;
17293de4586cSChris Mason 
1730aec8030aSMiao Xie 	list_for_each_entry_safe(pending, next, head, list) {
1731aec8030aSMiao Xie 		list_del(&pending->list);
173208d50ca3SNikolay Borisov 		ret = create_pending_snapshot(trans, pending);
1733aec8030aSMiao Xie 		if (ret)
1734aec8030aSMiao Xie 			break;
1735aec8030aSMiao Xie 	}
1736aec8030aSMiao Xie 	return ret;
17373de4586cSChris Mason }
17383de4586cSChris Mason 
17392ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info)
17405d4f98a2SYan Zheng {
17415d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
17425d4f98a2SYan Zheng 	struct btrfs_super_block *super;
17435d4f98a2SYan Zheng 
17440b246afaSJeff Mahoney 	super = fs_info->super_copy;
17455d4f98a2SYan Zheng 
17460b246afaSJeff Mahoney 	root_item = &fs_info->chunk_root->root_item;
1747093e037cSDavid Sterba 	super->chunk_root = root_item->bytenr;
1748093e037cSDavid Sterba 	super->chunk_root_generation = root_item->generation;
1749093e037cSDavid Sterba 	super->chunk_root_level = root_item->level;
17505d4f98a2SYan Zheng 
17510b246afaSJeff Mahoney 	root_item = &fs_info->tree_root->root_item;
1752093e037cSDavid Sterba 	super->root = root_item->bytenr;
1753093e037cSDavid Sterba 	super->generation = root_item->generation;
1754093e037cSDavid Sterba 	super->root_level = root_item->level;
17550b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, SPACE_CACHE))
1756093e037cSDavid Sterba 		super->cache_generation = root_item->generation;
17570b246afaSJeff Mahoney 	if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
1758093e037cSDavid Sterba 		super->uuid_tree_generation = root_item->generation;
17595d4f98a2SYan Zheng }
17605d4f98a2SYan Zheng 
1761f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1762f36f3042SChris Mason {
17634a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
1764f36f3042SChris Mason 	int ret = 0;
17654a9d8bdeSMiao Xie 
1766a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
17674a9d8bdeSMiao Xie 	trans = info->running_transaction;
17684a9d8bdeSMiao Xie 	if (trans)
17694a9d8bdeSMiao Xie 		ret = (trans->state >= TRANS_STATE_COMMIT_START);
1770a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1771f36f3042SChris Mason 	return ret;
1772f36f3042SChris Mason }
1773f36f3042SChris Mason 
17748929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
17758929ecfaSYan, Zheng {
17764a9d8bdeSMiao Xie 	struct btrfs_transaction *trans;
17778929ecfaSYan, Zheng 	int ret = 0;
17784a9d8bdeSMiao Xie 
1779a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
17804a9d8bdeSMiao Xie 	trans = info->running_transaction;
17814a9d8bdeSMiao Xie 	if (trans)
17824a9d8bdeSMiao Xie 		ret = is_transaction_blocked(trans);
1783a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
17848929ecfaSYan, Zheng 	return ret;
17858929ecfaSYan, Zheng }
17868929ecfaSYan, Zheng 
1787bb9c12c9SSage Weil /*
1788bb9c12c9SSage Weil  * wait for the current transaction commit to start and block subsequent
1789bb9c12c9SSage Weil  * transaction joins
1790bb9c12c9SSage Weil  */
17912ff7e61eSJeff Mahoney static void wait_current_trans_commit_start(struct btrfs_fs_info *fs_info,
1792bb9c12c9SSage Weil 					    struct btrfs_transaction *trans)
1793bb9c12c9SSage Weil {
17942ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_blocked_wait,
17952ff7e61eSJeff Mahoney 		   trans->state >= TRANS_STATE_COMMIT_START || trans->aborted);
1796bb9c12c9SSage Weil }
1797bb9c12c9SSage Weil 
1798bb9c12c9SSage Weil /*
1799bb9c12c9SSage Weil  * wait for the current transaction to start and then become unblocked.
1800bb9c12c9SSage Weil  * caller holds ref.
1801bb9c12c9SSage Weil  */
18022ff7e61eSJeff Mahoney static void wait_current_trans_commit_start_and_unblock(
18032ff7e61eSJeff Mahoney 					struct btrfs_fs_info *fs_info,
1804bb9c12c9SSage Weil 					struct btrfs_transaction *trans)
1805bb9c12c9SSage Weil {
18062ff7e61eSJeff Mahoney 	wait_event(fs_info->transaction_wait,
18072ff7e61eSJeff Mahoney 		   trans->state >= TRANS_STATE_UNBLOCKED || trans->aborted);
1808bb9c12c9SSage Weil }
1809bb9c12c9SSage Weil 
1810bb9c12c9SSage Weil /*
1811bb9c12c9SSage Weil  * commit transactions asynchronously. once btrfs_commit_transaction_async
1812bb9c12c9SSage Weil  * returns, any subsequent transaction will not be allowed to join.
1813bb9c12c9SSage Weil  */
1814bb9c12c9SSage Weil struct btrfs_async_commit {
1815bb9c12c9SSage Weil 	struct btrfs_trans_handle *newtrans;
18167892b5afSMiao Xie 	struct work_struct work;
1817bb9c12c9SSage Weil };
1818bb9c12c9SSage Weil 
1819bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work)
1820bb9c12c9SSage Weil {
1821bb9c12c9SSage Weil 	struct btrfs_async_commit *ac =
18227892b5afSMiao Xie 		container_of(work, struct btrfs_async_commit, work);
1823bb9c12c9SSage Weil 
18246fc4e354SSage Weil 	/*
18256fc4e354SSage Weil 	 * We've got freeze protection passed with the transaction.
18266fc4e354SSage Weil 	 * Tell lockdep about it.
18276fc4e354SSage Weil 	 */
1828b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
18293a45bb20SJeff Mahoney 		__sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS);
18306fc4e354SSage Weil 
1831e209db7aSSage Weil 	current->journal_info = ac->newtrans;
1832e209db7aSSage Weil 
18333a45bb20SJeff Mahoney 	btrfs_commit_transaction(ac->newtrans);
1834bb9c12c9SSage Weil 	kfree(ac);
1835bb9c12c9SSage Weil }
1836bb9c12c9SSage Weil 
1837bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1838bb9c12c9SSage Weil 				   int wait_for_unblock)
1839bb9c12c9SSage Weil {
18403a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
1841bb9c12c9SSage Weil 	struct btrfs_async_commit *ac;
1842bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1843bb9c12c9SSage Weil 
1844bb9c12c9SSage Weil 	ac = kmalloc(sizeof(*ac), GFP_NOFS);
1845db5b493aSTsutomu Itoh 	if (!ac)
1846db5b493aSTsutomu Itoh 		return -ENOMEM;
1847bb9c12c9SSage Weil 
18487892b5afSMiao Xie 	INIT_WORK(&ac->work, do_async_commit);
18493a45bb20SJeff Mahoney 	ac->newtrans = btrfs_join_transaction(trans->root);
18503612b495STsutomu Itoh 	if (IS_ERR(ac->newtrans)) {
18513612b495STsutomu Itoh 		int err = PTR_ERR(ac->newtrans);
18523612b495STsutomu Itoh 		kfree(ac);
18533612b495STsutomu Itoh 		return err;
18543612b495STsutomu Itoh 	}
1855bb9c12c9SSage Weil 
1856bb9c12c9SSage Weil 	/* take transaction reference */
1857bb9c12c9SSage Weil 	cur_trans = trans->transaction;
18589b64f57dSElena Reshetova 	refcount_inc(&cur_trans->use_count);
1859bb9c12c9SSage Weil 
18603a45bb20SJeff Mahoney 	btrfs_end_transaction(trans);
18616fc4e354SSage Weil 
18626fc4e354SSage Weil 	/*
18636fc4e354SSage Weil 	 * Tell lockdep we've released the freeze rwsem, since the
18646fc4e354SSage Weil 	 * async commit thread will be the one to unlock it.
18656fc4e354SSage Weil 	 */
1866b1a06a4bSLiu Bo 	if (ac->newtrans->type & __TRANS_FREEZABLE)
18670b246afaSJeff Mahoney 		__sb_writers_release(fs_info->sb, SB_FREEZE_FS);
18686fc4e354SSage Weil 
18697892b5afSMiao Xie 	schedule_work(&ac->work);
1870bb9c12c9SSage Weil 
1871bb9c12c9SSage Weil 	/* wait for transaction to start and unblock */
1872bb9c12c9SSage Weil 	if (wait_for_unblock)
18732ff7e61eSJeff Mahoney 		wait_current_trans_commit_start_and_unblock(fs_info, cur_trans);
1874bb9c12c9SSage Weil 	else
18752ff7e61eSJeff Mahoney 		wait_current_trans_commit_start(fs_info, cur_trans);
1876bb9c12c9SSage Weil 
187738e88054SSage Weil 	if (current->journal_info == trans)
187838e88054SSage Weil 		current->journal_info = NULL;
187938e88054SSage Weil 
1880724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1881bb9c12c9SSage Weil 	return 0;
1882bb9c12c9SSage Weil }
1883bb9c12c9SSage Weil 
188449b25e05SJeff Mahoney 
188597cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
188649b25e05SJeff Mahoney {
188797cb39bbSNikolay Borisov 	struct btrfs_fs_info *fs_info = trans->fs_info;
188849b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
188949b25e05SJeff Mahoney 
1890b50fff81SDavid Sterba 	WARN_ON(refcount_read(&trans->use_count) > 1);
189149b25e05SJeff Mahoney 
189266642832SJeff Mahoney 	btrfs_abort_transaction(trans, err);
18937b8b92afSJosef Bacik 
18940b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
189566b6135bSLiu Bo 
189625d8c284SMiao Xie 	/*
189725d8c284SMiao Xie 	 * If the transaction is removed from the list, it means this
189825d8c284SMiao Xie 	 * transaction has been committed successfully, so it is impossible
189925d8c284SMiao Xie 	 * to call the cleanup function.
190025d8c284SMiao Xie 	 */
190125d8c284SMiao Xie 	BUG_ON(list_empty(&cur_trans->list));
190266b6135bSLiu Bo 
190349b25e05SJeff Mahoney 	list_del_init(&cur_trans->list);
19040b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction) {
19054a9d8bdeSMiao Xie 		cur_trans->state = TRANS_STATE_COMMIT_DOING;
19060b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
1907f094ac32SLiu Bo 		wait_event(cur_trans->writer_wait,
1908f094ac32SLiu Bo 			   atomic_read(&cur_trans->num_writers) == 1);
1909f094ac32SLiu Bo 
19100b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
1911d7096fc3SJosef Bacik 	}
19120b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
191349b25e05SJeff Mahoney 
19142ff7e61eSJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, fs_info);
191549b25e05SJeff Mahoney 
19160b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
19170b246afaSJeff Mahoney 	if (cur_trans == fs_info->running_transaction)
19180b246afaSJeff Mahoney 		fs_info->running_transaction = NULL;
19190b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
19204a9d8bdeSMiao Xie 
1921e0228285SJosef Bacik 	if (trans->type & __TRANS_FREEZABLE)
19220b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
1923724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
1924724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
192549b25e05SJeff Mahoney 
192697cb39bbSNikolay Borisov 	trace_btrfs_transaction_commit(trans->root);
192749b25e05SJeff Mahoney 
192849b25e05SJeff Mahoney 	if (current->journal_info == trans)
192949b25e05SJeff Mahoney 		current->journal_info = NULL;
19300b246afaSJeff Mahoney 	btrfs_scrub_cancel(fs_info);
193149b25e05SJeff Mahoney 
193249b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
193349b25e05SJeff Mahoney }
193449b25e05SJeff Mahoney 
1935c7cc64a9SDavid Sterba /*
1936c7cc64a9SDavid Sterba  * Release reserved delayed ref space of all pending block groups of the
1937c7cc64a9SDavid Sterba  * transaction and remove them from the list
1938c7cc64a9SDavid Sterba  */
1939c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
1940c7cc64a9SDavid Sterba {
1941c7cc64a9SDavid Sterba        struct btrfs_fs_info *fs_info = trans->fs_info;
194232da5386SDavid Sterba        struct btrfs_block_group *block_group, *tmp;
1943c7cc64a9SDavid Sterba 
1944c7cc64a9SDavid Sterba        list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
1945c7cc64a9SDavid Sterba                btrfs_delayed_refs_rsv_release(fs_info, 1);
1946c7cc64a9SDavid Sterba                list_del_init(&block_group->bg_list);
1947c7cc64a9SDavid Sterba        }
1948c7cc64a9SDavid Sterba }
1949c7cc64a9SDavid Sterba 
1950609e804dSFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_trans_handle *trans)
195182436617SMiao Xie {
1952609e804dSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
1953609e804dSFilipe Manana 
1954ce8ea7ccSJosef Bacik 	/*
1955ce8ea7ccSJosef Bacik 	 * We use writeback_inodes_sb here because if we used
1956ce8ea7ccSJosef Bacik 	 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
1957ce8ea7ccSJosef Bacik 	 * Currently are holding the fs freeze lock, if we do an async flush
1958ce8ea7ccSJosef Bacik 	 * we'll do btrfs_join_transaction() and deadlock because we need to
1959ce8ea7ccSJosef Bacik 	 * wait for the fs freeze lock.  Using the direct flushing we benefit
1960ce8ea7ccSJosef Bacik 	 * from already being in a transaction and our join_transaction doesn't
1961ce8ea7ccSJosef Bacik 	 * have to re-take the fs freeze lock.
1962ce8ea7ccSJosef Bacik 	 */
1963609e804dSFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) {
1964ce8ea7ccSJosef Bacik 		writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
1965609e804dSFilipe Manana 	} else {
1966609e804dSFilipe Manana 		struct btrfs_pending_snapshot *pending;
1967609e804dSFilipe Manana 		struct list_head *head = &trans->transaction->pending_snapshots;
1968609e804dSFilipe Manana 
1969609e804dSFilipe Manana 		/*
1970609e804dSFilipe Manana 		 * Flush dellaloc for any root that is going to be snapshotted.
1971609e804dSFilipe Manana 		 * This is done to avoid a corrupted version of files, in the
1972609e804dSFilipe Manana 		 * snapshots, that had both buffered and direct IO writes (even
1973609e804dSFilipe Manana 		 * if they were done sequentially) due to an unordered update of
1974609e804dSFilipe Manana 		 * the inode's size on disk.
1975609e804dSFilipe Manana 		 */
1976609e804dSFilipe Manana 		list_for_each_entry(pending, head, list) {
1977609e804dSFilipe Manana 			int ret;
1978609e804dSFilipe Manana 
1979609e804dSFilipe Manana 			ret = btrfs_start_delalloc_snapshot(pending->root);
1980609e804dSFilipe Manana 			if (ret)
1981609e804dSFilipe Manana 				return ret;
1982609e804dSFilipe Manana 		}
1983609e804dSFilipe Manana 	}
198482436617SMiao Xie 	return 0;
198582436617SMiao Xie }
198682436617SMiao Xie 
1987609e804dSFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_trans_handle *trans)
198882436617SMiao Xie {
1989609e804dSFilipe Manana 	struct btrfs_fs_info *fs_info = trans->fs_info;
1990609e804dSFilipe Manana 
1991609e804dSFilipe Manana 	if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) {
19926374e57aSChris Mason 		btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
1993609e804dSFilipe Manana 	} else {
1994609e804dSFilipe Manana 		struct btrfs_pending_snapshot *pending;
1995609e804dSFilipe Manana 		struct list_head *head = &trans->transaction->pending_snapshots;
1996609e804dSFilipe Manana 
1997609e804dSFilipe Manana 		/*
1998609e804dSFilipe Manana 		 * Wait for any dellaloc that we started previously for the roots
1999609e804dSFilipe Manana 		 * that are going to be snapshotted. This is to avoid a corrupted
2000609e804dSFilipe Manana 		 * version of files in the snapshots that had both buffered and
2001609e804dSFilipe Manana 		 * direct IO writes (even if they were done sequentially).
2002609e804dSFilipe Manana 		 */
2003609e804dSFilipe Manana 		list_for_each_entry(pending, head, list)
2004609e804dSFilipe Manana 			btrfs_wait_ordered_extents(pending->root,
2005609e804dSFilipe Manana 						   U64_MAX, 0, U64_MAX);
2006609e804dSFilipe Manana 	}
200782436617SMiao Xie }
200882436617SMiao Xie 
20093a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
201079154b1bSChris Mason {
20113a45bb20SJeff Mahoney 	struct btrfs_fs_info *fs_info = trans->fs_info;
201249b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
20138fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
201425287e0aSMiao Xie 	int ret;
201579154b1bSChris Mason 
201635b814f3SNikolay Borisov 	ASSERT(refcount_read(&trans->use_count) == 1);
201735b814f3SNikolay Borisov 
20188d25a086SMiao Xie 	/* Stop the commit early if ->aborted is set */
201920c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
202025287e0aSMiao Xie 		ret = cur_trans->aborted;
20213a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2022e4a2bcacSJosef Bacik 		return ret;
202325287e0aSMiao Xie 	}
202449b25e05SJeff Mahoney 
2025f45c752bSJosef Bacik 	btrfs_trans_release_metadata(trans);
2026f45c752bSJosef Bacik 	trans->block_rsv = NULL;
2027f45c752bSJosef Bacik 
202856bec294SChris Mason 	/* make a pass through all the delayed refs we have so far
202956bec294SChris Mason 	 * any runnings procs may add more while we are here
203056bec294SChris Mason 	 */
2031c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
2032e4a2bcacSJosef Bacik 	if (ret) {
20333a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2034e4a2bcacSJosef Bacik 		return ret;
2035e4a2bcacSJosef Bacik 	}
203656bec294SChris Mason 
2037b7ec40d7SChris Mason 	cur_trans = trans->transaction;
203849b25e05SJeff Mahoney 
203956bec294SChris Mason 	/*
204056bec294SChris Mason 	 * set the flushing flag so procs in this transaction have to
204156bec294SChris Mason 	 * start sending their work down.
204256bec294SChris Mason 	 */
2043b7ec40d7SChris Mason 	cur_trans->delayed_refs.flushing = 1;
20441be41b78SJosef Bacik 	smp_wmb();
204556bec294SChris Mason 
20466c686b35SNikolay Borisov 	btrfs_create_pending_block_groups(trans);
2047ea658badSJosef Bacik 
2048c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, 0);
2049e4a2bcacSJosef Bacik 	if (ret) {
20503a45bb20SJeff Mahoney 		btrfs_end_transaction(trans);
2051e4a2bcacSJosef Bacik 		return ret;
2052e4a2bcacSJosef Bacik 	}
205356bec294SChris Mason 
20543204d33cSJosef Bacik 	if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
20551bbc621eSChris Mason 		int run_it = 0;
20561bbc621eSChris Mason 
20571bbc621eSChris Mason 		/* this mutex is also taken before trying to set
20581bbc621eSChris Mason 		 * block groups readonly.  We need to make sure
20591bbc621eSChris Mason 		 * that nobody has set a block group readonly
20601bbc621eSChris Mason 		 * after a extents from that block group have been
20611bbc621eSChris Mason 		 * allocated for cache files.  btrfs_set_block_group_ro
20621bbc621eSChris Mason 		 * will wait for the transaction to commit if it
20633204d33cSJosef Bacik 		 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
20641bbc621eSChris Mason 		 *
20653204d33cSJosef Bacik 		 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
20663204d33cSJosef Bacik 		 * only one process starts all the block group IO.  It wouldn't
20671bbc621eSChris Mason 		 * hurt to have more than one go through, but there's no
20681bbc621eSChris Mason 		 * real advantage to it either.
20691bbc621eSChris Mason 		 */
20700b246afaSJeff Mahoney 		mutex_lock(&fs_info->ro_block_group_mutex);
20713204d33cSJosef Bacik 		if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
20723204d33cSJosef Bacik 				      &cur_trans->flags))
20731bbc621eSChris Mason 			run_it = 1;
20740b246afaSJeff Mahoney 		mutex_unlock(&fs_info->ro_block_group_mutex);
20751bbc621eSChris Mason 
2076f9cacae3SNikolay Borisov 		if (run_it) {
207721217054SNikolay Borisov 			ret = btrfs_start_dirty_block_groups(trans);
20781bbc621eSChris Mason 			if (ret) {
20793a45bb20SJeff Mahoney 				btrfs_end_transaction(trans);
20801bbc621eSChris Mason 				return ret;
20811bbc621eSChris Mason 			}
2082f9cacae3SNikolay Borisov 		}
2083f9cacae3SNikolay Borisov 	}
20841bbc621eSChris Mason 
20850b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
20864a9d8bdeSMiao Xie 	if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
20870b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
20889b64f57dSElena Reshetova 		refcount_inc(&cur_trans->use_count);
20893a45bb20SJeff Mahoney 		ret = btrfs_end_transaction(trans);
2090ccd467d6SChris Mason 
20912ff7e61eSJeff Mahoney 		wait_for_commit(cur_trans);
209215ee9bc7SJosef Bacik 
2093b4924a0fSLiu Bo 		if (unlikely(cur_trans->aborted))
2094b4924a0fSLiu Bo 			ret = cur_trans->aborted;
2095b4924a0fSLiu Bo 
2096724e2315SJosef Bacik 		btrfs_put_transaction(cur_trans);
209715ee9bc7SJosef Bacik 
209849b25e05SJeff Mahoney 		return ret;
209979154b1bSChris Mason 	}
21004313b399SChris Mason 
21014a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
21020b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
2103bb9c12c9SSage Weil 
21040b246afaSJeff Mahoney 	if (cur_trans->list.prev != &fs_info->trans_list) {
2105ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
2106ccd467d6SChris Mason 					struct btrfs_transaction, list);
21074a9d8bdeSMiao Xie 		if (prev_trans->state != TRANS_STATE_COMPLETED) {
21089b64f57dSElena Reshetova 			refcount_inc(&prev_trans->use_count);
21090b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2110ccd467d6SChris Mason 
21112ff7e61eSJeff Mahoney 			wait_for_commit(prev_trans);
21121f9b8c8fSFilipe Manana 			ret = prev_trans->aborted;
2113ccd467d6SChris Mason 
2114724e2315SJosef Bacik 			btrfs_put_transaction(prev_trans);
21151f9b8c8fSFilipe Manana 			if (ret)
21161f9b8c8fSFilipe Manana 				goto cleanup_transaction;
2117a4abeea4SJosef Bacik 		} else {
21180b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
2119ccd467d6SChris Mason 		}
2120a4abeea4SJosef Bacik 	} else {
21210b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
2122cb2d3dadSFilipe Manana 		/*
2123cb2d3dadSFilipe Manana 		 * The previous transaction was aborted and was already removed
2124cb2d3dadSFilipe Manana 		 * from the list of transactions at fs_info->trans_list. So we
2125cb2d3dadSFilipe Manana 		 * abort to prevent writing a new superblock that reflects a
2126cb2d3dadSFilipe Manana 		 * corrupt state (pointing to trees with unwritten nodes/leafs).
2127cb2d3dadSFilipe Manana 		 */
2128cb2d3dadSFilipe Manana 		if (test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state)) {
2129cb2d3dadSFilipe Manana 			ret = -EROFS;
2130cb2d3dadSFilipe Manana 			goto cleanup_transaction;
2131cb2d3dadSFilipe Manana 		}
2132ccd467d6SChris Mason 	}
213315ee9bc7SJosef Bacik 
21340860adfdSMiao Xie 	extwriter_counter_dec(cur_trans, trans->type);
21350860adfdSMiao Xie 
2136609e804dSFilipe Manana 	ret = btrfs_start_delalloc_flush(trans);
213782436617SMiao Xie 	if (ret)
213882436617SMiao Xie 		goto cleanup_transaction;
213982436617SMiao Xie 
2140e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
214149b25e05SJeff Mahoney 	if (ret)
214249b25e05SJeff Mahoney 		goto cleanup_transaction;
214316cdcec7SMiao Xie 
2144581227d0SMiao Xie 	wait_event(cur_trans->writer_wait,
2145581227d0SMiao Xie 		   extwriter_counter_read(cur_trans) == 0);
2146ed3b3d31SChris Mason 
2147581227d0SMiao Xie 	/* some pending stuffs might be added after the previous flush. */
2148e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
2149ca469637SMiao Xie 	if (ret)
2150ca469637SMiao Xie 		goto cleanup_transaction;
2151ca469637SMiao Xie 
2152609e804dSFilipe Manana 	btrfs_wait_delalloc_flush(trans);
2153cb7ab021SWang Shilong 
21542ff7e61eSJeff Mahoney 	btrfs_scrub_pause(fs_info);
2155ed0ca140SJosef Bacik 	/*
2156ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
2157ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
21584a9d8bdeSMiao Xie 	 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
2159ed0ca140SJosef Bacik 	 */
21600b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
21614a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_DOING;
21620b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2163ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
2164ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
216515ee9bc7SJosef Bacik 
21662cba30f1SMiao Xie 	/* ->aborted might be set after the previous check, so check it */
216720c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
21682cba30f1SMiao Xie 		ret = cur_trans->aborted;
21696cf7f77eSWang Shilong 		goto scrub_continue;
21702cba30f1SMiao Xie 	}
21717585717fSChris Mason 	/*
21727585717fSChris Mason 	 * the reloc mutex makes sure that we stop
21737585717fSChris Mason 	 * the balancing code from coming in and moving
21747585717fSChris Mason 	 * extents around in the middle of the commit
21757585717fSChris Mason 	 */
21760b246afaSJeff Mahoney 	mutex_lock(&fs_info->reloc_mutex);
21777585717fSChris Mason 
217842874b3dSMiao Xie 	/*
217942874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
218042874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
218142874b3dSMiao Xie 	 * core function of the snapshot creation.
218242874b3dSMiao Xie 	 */
218308d50ca3SNikolay Borisov 	ret = create_pending_snapshots(trans);
218449b25e05SJeff Mahoney 	if (ret) {
21850b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
21866cf7f77eSWang Shilong 		goto scrub_continue;
218749b25e05SJeff Mahoney 	}
21883063d29fSChris Mason 
218942874b3dSMiao Xie 	/*
219042874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
219142874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
219242874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
219342874b3dSMiao Xie 	 * them.
219442874b3dSMiao Xie 	 *
219542874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
219642874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
219742874b3dSMiao Xie 	 * the nodes and leaves.
219842874b3dSMiao Xie 	 */
2199e5c304e6SNikolay Borisov 	ret = btrfs_run_delayed_items(trans);
220049b25e05SJeff Mahoney 	if (ret) {
22010b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22026cf7f77eSWang Shilong 		goto scrub_continue;
220349b25e05SJeff Mahoney 	}
220416cdcec7SMiao Xie 
2205c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
220649b25e05SJeff Mahoney 	if (ret) {
22070b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22086cf7f77eSWang Shilong 		goto scrub_continue;
220949b25e05SJeff Mahoney 	}
221056bec294SChris Mason 
2211e999376fSChris Mason 	/*
2212e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
2213e999376fSChris Mason 	 * delayed item
2214e999376fSChris Mason 	 */
2215ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
2216e999376fSChris Mason 
22172c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
2218dc17ff8fSChris Mason 
2219e02119d5SChris Mason 	/* btrfs_commit_tree_roots is responsible for getting the
2220e02119d5SChris Mason 	 * various roots consistent with each other.  Every pointer
2221e02119d5SChris Mason 	 * in the tree of tree roots has to point to the most up to date
2222e02119d5SChris Mason 	 * root for every subvolume and other tree.  So, we have to keep
2223e02119d5SChris Mason 	 * the tree logging code from jumping in and changing any
2224e02119d5SChris Mason 	 * of the trees.
2225e02119d5SChris Mason 	 *
2226e02119d5SChris Mason 	 * At this point in the commit, there can't be any tree-log
2227e02119d5SChris Mason 	 * writers, but a little lower down we drop the trans mutex
2228e02119d5SChris Mason 	 * and let new people in.  By holding the tree_log_mutex
2229e02119d5SChris Mason 	 * from now until after the super is written, we avoid races
2230e02119d5SChris Mason 	 * with the tree-log code.
2231e02119d5SChris Mason 	 */
22320b246afaSJeff Mahoney 	mutex_lock(&fs_info->tree_log_mutex);
22331a40e23bSZheng Yan 
22347e4443d9SNikolay Borisov 	ret = commit_fs_roots(trans);
223549b25e05SJeff Mahoney 	if (ret) {
22360b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22370b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22386cf7f77eSWang Shilong 		goto scrub_continue;
223949b25e05SJeff Mahoney 	}
224054aa1f4dSChris Mason 
22413818aea2SQu Wenruo 	/*
22427e1876acSDavid Sterba 	 * Since the transaction is done, we can apply the pending changes
22437e1876acSDavid Sterba 	 * before the next transaction.
22443818aea2SQu Wenruo 	 */
22450b246afaSJeff Mahoney 	btrfs_apply_pending_changes(fs_info);
22463818aea2SQu Wenruo 
22475d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
2248e02119d5SChris Mason 	 * safe to free the root of tree log roots
2249e02119d5SChris Mason 	 */
22500b246afaSJeff Mahoney 	btrfs_free_log_root_tree(trans, fs_info);
2251e02119d5SChris Mason 
22520ed4792aSQu Wenruo 	/*
225382bafb38SQu Wenruo 	 * commit_fs_roots() can call btrfs_save_ino_cache(), which generates
225482bafb38SQu Wenruo 	 * new delayed refs. Must handle them or qgroup can be wrong.
225582bafb38SQu Wenruo 	 */
2256c79a70b1SNikolay Borisov 	ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
225782bafb38SQu Wenruo 	if (ret) {
225882bafb38SQu Wenruo 		mutex_unlock(&fs_info->tree_log_mutex);
225982bafb38SQu Wenruo 		mutex_unlock(&fs_info->reloc_mutex);
226082bafb38SQu Wenruo 		goto scrub_continue;
226182bafb38SQu Wenruo 	}
226282bafb38SQu Wenruo 
226382bafb38SQu Wenruo 	/*
22640ed4792aSQu Wenruo 	 * Since fs roots are all committed, we can get a quite accurate
22650ed4792aSQu Wenruo 	 * new_roots. So let's do quota accounting.
22660ed4792aSQu Wenruo 	 */
2267460fb20aSNikolay Borisov 	ret = btrfs_qgroup_account_extents(trans);
22680ed4792aSQu Wenruo 	if (ret < 0) {
22690b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22700b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22710ed4792aSQu Wenruo 		goto scrub_continue;
22720ed4792aSQu Wenruo 	}
22730ed4792aSQu Wenruo 
22749386d8bcSNikolay Borisov 	ret = commit_cowonly_roots(trans);
227549b25e05SJeff Mahoney 	if (ret) {
22760b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22770b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22786cf7f77eSWang Shilong 		goto scrub_continue;
227949b25e05SJeff Mahoney 	}
228054aa1f4dSChris Mason 
22812cba30f1SMiao Xie 	/*
22822cba30f1SMiao Xie 	 * The tasks which save the space cache and inode cache may also
22832cba30f1SMiao Xie 	 * update ->aborted, check it.
22842cba30f1SMiao Xie 	 */
228520c7bcecSSeraphime Kirkovski 	if (unlikely(READ_ONCE(cur_trans->aborted))) {
22862cba30f1SMiao Xie 		ret = cur_trans->aborted;
22870b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
22880b246afaSJeff Mahoney 		mutex_unlock(&fs_info->reloc_mutex);
22896cf7f77eSWang Shilong 		goto scrub_continue;
22902cba30f1SMiao Xie 	}
22912cba30f1SMiao Xie 
22928b74c03eSDavid Sterba 	btrfs_prepare_extent_commit(fs_info);
229311833d66SYan Zheng 
22940b246afaSJeff Mahoney 	cur_trans = fs_info->running_transaction;
22955f39d397SChris Mason 
22960b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->tree_root->root_item,
22970b246afaSJeff Mahoney 			    fs_info->tree_root->node);
22980b246afaSJeff Mahoney 	list_add_tail(&fs_info->tree_root->dirty_list,
22999e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23005d4f98a2SYan Zheng 
23010b246afaSJeff Mahoney 	btrfs_set_root_node(&fs_info->chunk_root->root_item,
23020b246afaSJeff Mahoney 			    fs_info->chunk_root->node);
23030b246afaSJeff Mahoney 	list_add_tail(&fs_info->chunk_root->dirty_list,
23049e351cc8SJosef Bacik 		      &cur_trans->switch_commits);
23059e351cc8SJosef Bacik 
2306889bfa39SJosef Bacik 	switch_commit_roots(trans);
23075d4f98a2SYan Zheng 
2308ce93ec54SJosef Bacik 	ASSERT(list_empty(&cur_trans->dirty_bgs));
23091bbc621eSChris Mason 	ASSERT(list_empty(&cur_trans->io_bgs));
23102ff7e61eSJeff Mahoney 	update_super_roots(fs_info);
2311e02119d5SChris Mason 
23120b246afaSJeff Mahoney 	btrfs_set_super_log_root(fs_info->super_copy, 0);
23130b246afaSJeff Mahoney 	btrfs_set_super_log_root_level(fs_info->super_copy, 0);
23140b246afaSJeff Mahoney 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
23150b246afaSJeff Mahoney 	       sizeof(*fs_info->super_copy));
2316ccd467d6SChris Mason 
2317bbbf7243SNikolay Borisov 	btrfs_commit_device_sizes(cur_trans);
2318935e5cc9SMiao Xie 
23190b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
23200b246afaSJeff Mahoney 	clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
2321656f30dbSFilipe Manana 
23224fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
23234fbcdf66SFilipe Manana 
23240b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
23254a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
23260b246afaSJeff Mahoney 	fs_info->running_transaction = NULL;
23270b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
23280b246afaSJeff Mahoney 	mutex_unlock(&fs_info->reloc_mutex);
2329b7ec40d7SChris Mason 
23300b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
2331e6dcd2dcSChris Mason 
233270458a58SNikolay Borisov 	ret = btrfs_write_and_wait_transaction(trans);
233349b25e05SJeff Mahoney 	if (ret) {
23340b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
233508748810SDavid Sterba 				      "Error while writing out transaction");
23360b246afaSJeff Mahoney 		mutex_unlock(&fs_info->tree_log_mutex);
23376cf7f77eSWang Shilong 		goto scrub_continue;
233849b25e05SJeff Mahoney 	}
233949b25e05SJeff Mahoney 
2340eece6a9cSDavid Sterba 	ret = write_all_supers(fs_info, 0);
2341e02119d5SChris Mason 	/*
2342e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
2343e02119d5SChris Mason 	 * to go about their business
2344e02119d5SChris Mason 	 */
23450b246afaSJeff Mahoney 	mutex_unlock(&fs_info->tree_log_mutex);
2346c1f32b7cSAnand Jain 	if (ret)
2347c1f32b7cSAnand Jain 		goto scrub_continue;
2348e02119d5SChris Mason 
23495ead2dd0SNikolay Borisov 	btrfs_finish_extent_commit(trans);
23504313b399SChris Mason 
23513204d33cSJosef Bacik 	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
23520b246afaSJeff Mahoney 		btrfs_clear_space_info_full(fs_info);
235313212b54SZhao Lei 
23540b246afaSJeff Mahoney 	fs_info->last_trans_committed = cur_trans->transid;
23554a9d8bdeSMiao Xie 	/*
23564a9d8bdeSMiao Xie 	 * We needn't acquire the lock here because there is no other task
23574a9d8bdeSMiao Xie 	 * which can change it.
23584a9d8bdeSMiao Xie 	 */
23594a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMPLETED;
23602c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
2361a514d638SQu Wenruo 	clear_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags);
23623de4586cSChris Mason 
23630b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
236413c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
23650b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2366a4abeea4SJosef Bacik 
2367724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
2368724e2315SJosef Bacik 	btrfs_put_transaction(cur_trans);
236958176a96SJosef Bacik 
23700860adfdSMiao Xie 	if (trans->type & __TRANS_FREEZABLE)
23710b246afaSJeff Mahoney 		sb_end_intwrite(fs_info->sb);
2372b2b5ef5cSJan Kara 
23733a45bb20SJeff Mahoney 	trace_btrfs_transaction_commit(trans->root);
23741abe9b8aSliubo 
23752ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
2376a2de733cSArne Jansen 
23779ed74f2dSJosef Bacik 	if (current->journal_info == trans)
23789ed74f2dSJosef Bacik 		current->journal_info = NULL;
23799ed74f2dSJosef Bacik 
23802c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
238124bbcf04SYan, Zheng 
238279154b1bSChris Mason 	return ret;
238349b25e05SJeff Mahoney 
23846cf7f77eSWang Shilong scrub_continue:
23852ff7e61eSJeff Mahoney 	btrfs_scrub_continue(fs_info);
238649b25e05SJeff Mahoney cleanup_transaction:
2387dc60c525SNikolay Borisov 	btrfs_trans_release_metadata(trans);
2388c7cc64a9SDavid Sterba 	btrfs_cleanup_pending_block_groups(trans);
23894fbcdf66SFilipe Manana 	btrfs_trans_release_chunk_metadata(trans);
23900e721106SJosef Bacik 	trans->block_rsv = NULL;
23910b246afaSJeff Mahoney 	btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
239249b25e05SJeff Mahoney 	if (current->journal_info == trans)
239349b25e05SJeff Mahoney 		current->journal_info = NULL;
239497cb39bbSNikolay Borisov 	cleanup_transaction(trans, ret);
239549b25e05SJeff Mahoney 
239649b25e05SJeff Mahoney 	return ret;
239779154b1bSChris Mason }
239879154b1bSChris Mason 
2399d352ac68SChris Mason /*
24009d1a2a3aSDavid Sterba  * return < 0 if error
24019d1a2a3aSDavid Sterba  * 0 if there are no more dead_roots at the time of call
24029d1a2a3aSDavid Sterba  * 1 there are more to be processed, call me again
24039d1a2a3aSDavid Sterba  *
24049d1a2a3aSDavid Sterba  * The return value indicates there are certainly more snapshots to delete, but
24059d1a2a3aSDavid Sterba  * if there comes a new one during processing, it may return 0. We don't mind,
24069d1a2a3aSDavid Sterba  * because btrfs_commit_super will poke cleaner thread and it will process it a
24079d1a2a3aSDavid Sterba  * few seconds later.
2408d352ac68SChris Mason  */
24099d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
2410e9d0b13bSChris Mason {
24119d1a2a3aSDavid Sterba 	int ret;
24125d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
2413e9d0b13bSChris Mason 
2414a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
24159d1a2a3aSDavid Sterba 	if (list_empty(&fs_info->dead_roots)) {
24169d1a2a3aSDavid Sterba 		spin_unlock(&fs_info->trans_lock);
24179d1a2a3aSDavid Sterba 		return 0;
24189d1a2a3aSDavid Sterba 	}
24199d1a2a3aSDavid Sterba 	root = list_first_entry(&fs_info->dead_roots,
24209d1a2a3aSDavid Sterba 			struct btrfs_root, root_list);
2421cfad392bSJosef Bacik 	list_del_init(&root->root_list);
2422a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
24235d4f98a2SYan Zheng 
24244fd786e6SMisono Tomohiro 	btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
242576dda93cSYan, Zheng 
242616cdcec7SMiao Xie 	btrfs_kill_all_delayed_nodes(root);
242716cdcec7SMiao Xie 
242876dda93cSYan, Zheng 	if (btrfs_header_backref_rev(root->node) <
242976dda93cSYan, Zheng 			BTRFS_MIXED_BACKREF_REV)
24302c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(root, NULL, 0, 0);
243176dda93cSYan, Zheng 	else
24322c536799SJeff Mahoney 		ret = btrfs_drop_snapshot(root, NULL, 1, 0);
243332471dc2SDavid Sterba 
24346596a928SJosef Bacik 	return (ret < 0) ? 0 : 1;
2435e9d0b13bSChris Mason }
2436572d9ab7SDavid Sterba 
2437572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2438572d9ab7SDavid Sterba {
2439572d9ab7SDavid Sterba 	unsigned long prev;
2440572d9ab7SDavid Sterba 	unsigned long bit;
2441572d9ab7SDavid Sterba 
24426c9fe14fSQu Wenruo 	prev = xchg(&fs_info->pending_changes, 0);
2443572d9ab7SDavid Sterba 	if (!prev)
2444572d9ab7SDavid Sterba 		return;
2445572d9ab7SDavid Sterba 
24467e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE;
24477e1876acSDavid Sterba 	if (prev & bit)
24487e1876acSDavid Sterba 		btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE);
24497e1876acSDavid Sterba 	prev &= ~bit;
24507e1876acSDavid Sterba 
24517e1876acSDavid Sterba 	bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE;
24527e1876acSDavid Sterba 	if (prev & bit)
24537e1876acSDavid Sterba 		btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE);
24547e1876acSDavid Sterba 	prev &= ~bit;
24557e1876acSDavid Sterba 
2456d51033d0SDavid Sterba 	bit = 1 << BTRFS_PENDING_COMMIT;
2457d51033d0SDavid Sterba 	if (prev & bit)
2458d51033d0SDavid Sterba 		btrfs_debug(fs_info, "pending commit done");
2459d51033d0SDavid Sterba 	prev &= ~bit;
2460d51033d0SDavid Sterba 
2461572d9ab7SDavid Sterba 	if (prev)
2462572d9ab7SDavid Sterba 		btrfs_warn(fs_info,
2463572d9ab7SDavid Sterba 			"unknown pending changes left 0x%lx, ignoring", prev);
2464572d9ab7SDavid Sterba }
2465