xref: /openbmc/linux/fs/btrfs/transaction.c (revision 6df7881a)
16cbd5570SChris Mason /*
26cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
36cbd5570SChris Mason  *
46cbd5570SChris Mason  * This program is free software; you can redistribute it and/or
56cbd5570SChris Mason  * modify it under the terms of the GNU General Public
66cbd5570SChris Mason  * License v2 as published by the Free Software Foundation.
76cbd5570SChris Mason  *
86cbd5570SChris Mason  * This program is distributed in the hope that it will be useful,
96cbd5570SChris Mason  * but WITHOUT ANY WARRANTY; without even the implied warranty of
106cbd5570SChris Mason  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
116cbd5570SChris Mason  * General Public License for more details.
126cbd5570SChris Mason  *
136cbd5570SChris Mason  * You should have received a copy of the GNU General Public
146cbd5570SChris Mason  * License along with this program; if not, write to the
156cbd5570SChris Mason  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
166cbd5570SChris Mason  * Boston, MA 021110-1307, USA.
176cbd5570SChris Mason  */
186cbd5570SChris Mason 
1979154b1bSChris Mason #include <linux/fs.h>
205a0e3ad6STejun Heo #include <linux/slab.h>
2134088780SChris Mason #include <linux/sched.h>
22d3c2fdcfSChris Mason #include <linux/writeback.h>
235f39d397SChris Mason #include <linux/pagemap.h>
245f2cc086SChris Mason #include <linux/blkdev.h>
258ea05e3aSAlexander Block #include <linux/uuid.h>
2679154b1bSChris Mason #include "ctree.h"
2779154b1bSChris Mason #include "disk-io.h"
2879154b1bSChris Mason #include "transaction.h"
29925baeddSChris Mason #include "locking.h"
30e02119d5SChris Mason #include "tree-log.h"
31581bb050SLi Zefan #include "inode-map.h"
32733f4fbbSStefan Behrens #include "volumes.h"
3379154b1bSChris Mason 
340f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
350f7d52f4SChris Mason 
3649b25e05SJeff Mahoney void put_transaction(struct btrfs_transaction *transaction)
3779154b1bSChris Mason {
3813c5a93eSJosef Bacik 	WARN_ON(atomic_read(&transaction->use_count) == 0);
3913c5a93eSJosef Bacik 	if (atomic_dec_and_test(&transaction->use_count)) {
40a4abeea4SJosef Bacik 		BUG_ON(!list_empty(&transaction->list));
4100f04b88SArne Jansen 		WARN_ON(transaction->delayed_refs.root.rb_node);
422c90e5d6SChris Mason 		memset(transaction, 0, sizeof(*transaction));
432c90e5d6SChris Mason 		kmem_cache_free(btrfs_transaction_cachep, transaction);
4479154b1bSChris Mason 	}
4578fae27eSChris Mason }
4679154b1bSChris Mason 
47817d52f8SJosef Bacik static noinline void switch_commit_root(struct btrfs_root *root)
48817d52f8SJosef Bacik {
49817d52f8SJosef Bacik 	free_extent_buffer(root->commit_root);
50817d52f8SJosef Bacik 	root->commit_root = btrfs_root_node(root);
51817d52f8SJosef Bacik }
52817d52f8SJosef Bacik 
53d352ac68SChris Mason /*
54d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
55d352ac68SChris Mason  */
56a4abeea4SJosef Bacik static noinline int join_transaction(struct btrfs_root *root, int nofail)
5779154b1bSChris Mason {
5879154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
5919ae4e81SJan Schmidt 	struct btrfs_fs_info *fs_info = root->fs_info;
60a4abeea4SJosef Bacik 
6119ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
62d43317dcSChris Mason loop:
6349b25e05SJeff Mahoney 	/* The file system has been taken offline. No new transactions. */
6419ae4e81SJan Schmidt 	if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
6519ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
6649b25e05SJeff Mahoney 		return -EROFS;
6749b25e05SJeff Mahoney 	}
6849b25e05SJeff Mahoney 
6919ae4e81SJan Schmidt 	if (fs_info->trans_no_join) {
70a4abeea4SJosef Bacik 		if (!nofail) {
7119ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
72a4abeea4SJosef Bacik 			return -EBUSY;
73a4abeea4SJosef Bacik 		}
74a4abeea4SJosef Bacik 	}
75a4abeea4SJosef Bacik 
7619ae4e81SJan Schmidt 	cur_trans = fs_info->running_transaction;
77a4abeea4SJosef Bacik 	if (cur_trans) {
78871383beSDavid Sterba 		if (cur_trans->aborted) {
7919ae4e81SJan Schmidt 			spin_unlock(&fs_info->trans_lock);
8049b25e05SJeff Mahoney 			return cur_trans->aborted;
81871383beSDavid Sterba 		}
82a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->use_count);
83a4abeea4SJosef Bacik 		atomic_inc(&cur_trans->num_writers);
84a4abeea4SJosef Bacik 		cur_trans->num_joined++;
8519ae4e81SJan Schmidt 		spin_unlock(&fs_info->trans_lock);
86a4abeea4SJosef Bacik 		return 0;
87a4abeea4SJosef Bacik 	}
8819ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
89a4abeea4SJosef Bacik 
90a4abeea4SJosef Bacik 	cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS);
91db5b493aSTsutomu Itoh 	if (!cur_trans)
92db5b493aSTsutomu Itoh 		return -ENOMEM;
93d43317dcSChris Mason 
9419ae4e81SJan Schmidt 	spin_lock(&fs_info->trans_lock);
9519ae4e81SJan Schmidt 	if (fs_info->running_transaction) {
96d43317dcSChris Mason 		/*
97d43317dcSChris Mason 		 * someone started a transaction after we unlocked.  Make sure
98d43317dcSChris Mason 		 * to redo the trans_no_join checks above
99d43317dcSChris Mason 		 */
100a4abeea4SJosef Bacik 		kmem_cache_free(btrfs_transaction_cachep, cur_trans);
10119ae4e81SJan Schmidt 		cur_trans = fs_info->running_transaction;
102d43317dcSChris Mason 		goto loop;
103e4b50e14SDan Carpenter 	} else if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
104e4b50e14SDan Carpenter 		spin_unlock(&fs_info->trans_lock);
1057b8b92afSJosef Bacik 		kmem_cache_free(btrfs_transaction_cachep, cur_trans);
1067b8b92afSJosef Bacik 		return -EROFS;
107a4abeea4SJosef Bacik 	}
108d43317dcSChris Mason 
10913c5a93eSJosef Bacik 	atomic_set(&cur_trans->num_writers, 1);
11015ee9bc7SJosef Bacik 	cur_trans->num_joined = 0;
11179154b1bSChris Mason 	init_waitqueue_head(&cur_trans->writer_wait);
11279154b1bSChris Mason 	init_waitqueue_head(&cur_trans->commit_wait);
11379154b1bSChris Mason 	cur_trans->in_commit = 0;
114f9295749SChris Mason 	cur_trans->blocked = 0;
115a4abeea4SJosef Bacik 	/*
116a4abeea4SJosef Bacik 	 * One for this trans handle, one so it will live on until we
117a4abeea4SJosef Bacik 	 * commit the transaction.
118a4abeea4SJosef Bacik 	 */
119a4abeea4SJosef Bacik 	atomic_set(&cur_trans->use_count, 2);
12079154b1bSChris Mason 	cur_trans->commit_done = 0;
12108607c1bSChris Mason 	cur_trans->start_time = get_seconds();
12256bec294SChris Mason 
1236bef4d31SEric Paris 	cur_trans->delayed_refs.root = RB_ROOT;
12456bec294SChris Mason 	cur_trans->delayed_refs.num_entries = 0;
125c3e69d58SChris Mason 	cur_trans->delayed_refs.num_heads_ready = 0;
126c3e69d58SChris Mason 	cur_trans->delayed_refs.num_heads = 0;
12756bec294SChris Mason 	cur_trans->delayed_refs.flushing = 0;
128c3e69d58SChris Mason 	cur_trans->delayed_refs.run_delayed_start = 0;
12920b297d6SJan Schmidt 
13020b297d6SJan Schmidt 	/*
13120b297d6SJan Schmidt 	 * although the tree mod log is per file system and not per transaction,
13220b297d6SJan Schmidt 	 * the log must never go across transaction boundaries.
13320b297d6SJan Schmidt 	 */
13420b297d6SJan Schmidt 	smp_mb();
13520b297d6SJan Schmidt 	if (!list_empty(&fs_info->tree_mod_seq_list)) {
13620b297d6SJan Schmidt 		printk(KERN_ERR "btrfs: tree_mod_seq_list not empty when "
13720b297d6SJan Schmidt 			"creating a fresh transaction\n");
13820b297d6SJan Schmidt 		WARN_ON(1);
13920b297d6SJan Schmidt 	}
14020b297d6SJan Schmidt 	if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) {
14120b297d6SJan Schmidt 		printk(KERN_ERR "btrfs: tree_mod_log rb tree not empty when "
14220b297d6SJan Schmidt 			"creating a fresh transaction\n");
14320b297d6SJan Schmidt 		WARN_ON(1);
14420b297d6SJan Schmidt 	}
14520b297d6SJan Schmidt 	atomic_set(&fs_info->tree_mod_seq, 0);
14620b297d6SJan Schmidt 
147a4abeea4SJosef Bacik 	spin_lock_init(&cur_trans->commit_lock);
14856bec294SChris Mason 	spin_lock_init(&cur_trans->delayed_refs.lock);
14956bec294SChris Mason 
1503063d29fSChris Mason 	INIT_LIST_HEAD(&cur_trans->pending_snapshots);
15119ae4e81SJan Schmidt 	list_add_tail(&cur_trans->list, &fs_info->trans_list);
152d1310b2eSChris Mason 	extent_io_tree_init(&cur_trans->dirty_pages,
15319ae4e81SJan Schmidt 			     fs_info->btree_inode->i_mapping);
15419ae4e81SJan Schmidt 	fs_info->generation++;
15519ae4e81SJan Schmidt 	cur_trans->transid = fs_info->generation;
15619ae4e81SJan Schmidt 	fs_info->running_transaction = cur_trans;
15749b25e05SJeff Mahoney 	cur_trans->aborted = 0;
15819ae4e81SJan Schmidt 	spin_unlock(&fs_info->trans_lock);
15915ee9bc7SJosef Bacik 
16079154b1bSChris Mason 	return 0;
16179154b1bSChris Mason }
16279154b1bSChris Mason 
163d352ac68SChris Mason /*
164d397712bSChris Mason  * this does all the record keeping required to make sure that a reference
165d397712bSChris Mason  * counted root is properly recorded in a given transaction.  This is required
166d397712bSChris Mason  * to make sure the old root from before we joined the transaction is deleted
167d397712bSChris Mason  * when the transaction commits
168d352ac68SChris Mason  */
1697585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans,
1705d4f98a2SYan Zheng 			       struct btrfs_root *root)
1716702ed49SChris Mason {
1725d4f98a2SYan Zheng 	if (root->ref_cows && root->last_trans < trans->transid) {
1736702ed49SChris Mason 		WARN_ON(root == root->fs_info->extent_root);
1745d4f98a2SYan Zheng 		WARN_ON(root->commit_root != root->node);
1755d4f98a2SYan Zheng 
1767585717fSChris Mason 		/*
1777585717fSChris Mason 		 * see below for in_trans_setup usage rules
1787585717fSChris Mason 		 * we have the reloc mutex held now, so there
1797585717fSChris Mason 		 * is only one writer in this function
1807585717fSChris Mason 		 */
1817585717fSChris Mason 		root->in_trans_setup = 1;
1827585717fSChris Mason 
1837585717fSChris Mason 		/* make sure readers find in_trans_setup before
1847585717fSChris Mason 		 * they find our root->last_trans update
1857585717fSChris Mason 		 */
1867585717fSChris Mason 		smp_wmb();
1877585717fSChris Mason 
188a4abeea4SJosef Bacik 		spin_lock(&root->fs_info->fs_roots_radix_lock);
189a4abeea4SJosef Bacik 		if (root->last_trans == trans->transid) {
190a4abeea4SJosef Bacik 			spin_unlock(&root->fs_info->fs_roots_radix_lock);
191a4abeea4SJosef Bacik 			return 0;
192a4abeea4SJosef Bacik 		}
1936702ed49SChris Mason 		radix_tree_tag_set(&root->fs_info->fs_roots_radix,
1946702ed49SChris Mason 			   (unsigned long)root->root_key.objectid,
1956702ed49SChris Mason 			   BTRFS_ROOT_TRANS_TAG);
196a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->fs_roots_radix_lock);
1977585717fSChris Mason 		root->last_trans = trans->transid;
1987585717fSChris Mason 
1997585717fSChris Mason 		/* this is pretty tricky.  We don't want to
2007585717fSChris Mason 		 * take the relocation lock in btrfs_record_root_in_trans
2017585717fSChris Mason 		 * unless we're really doing the first setup for this root in
2027585717fSChris Mason 		 * this transaction.
2037585717fSChris Mason 		 *
2047585717fSChris Mason 		 * Normally we'd use root->last_trans as a flag to decide
2057585717fSChris Mason 		 * if we want to take the expensive mutex.
2067585717fSChris Mason 		 *
2077585717fSChris Mason 		 * But, we have to set root->last_trans before we
2087585717fSChris Mason 		 * init the relocation root, otherwise, we trip over warnings
2097585717fSChris Mason 		 * in ctree.c.  The solution used here is to flag ourselves
2107585717fSChris Mason 		 * with root->in_trans_setup.  When this is 1, we're still
2117585717fSChris Mason 		 * fixing up the reloc trees and everyone must wait.
2127585717fSChris Mason 		 *
2137585717fSChris Mason 		 * When this is zero, they can trust root->last_trans and fly
2147585717fSChris Mason 		 * through btrfs_record_root_in_trans without having to take the
2157585717fSChris Mason 		 * lock.  smp_wmb() makes sure that all the writes above are
2167585717fSChris Mason 		 * done before we pop in the zero below
2177585717fSChris Mason 		 */
2185d4f98a2SYan Zheng 		btrfs_init_reloc_root(trans, root);
2197585717fSChris Mason 		smp_wmb();
2207585717fSChris Mason 		root->in_trans_setup = 0;
2216702ed49SChris Mason 	}
2225d4f98a2SYan Zheng 	return 0;
2236702ed49SChris Mason }
2245d4f98a2SYan Zheng 
2257585717fSChris Mason 
2267585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
2277585717fSChris Mason 			       struct btrfs_root *root)
2287585717fSChris Mason {
2297585717fSChris Mason 	if (!root->ref_cows)
2307585717fSChris Mason 		return 0;
2317585717fSChris Mason 
2327585717fSChris Mason 	/*
2337585717fSChris Mason 	 * see record_root_in_trans for comments about in_trans_setup usage
2347585717fSChris Mason 	 * and barriers
2357585717fSChris Mason 	 */
2367585717fSChris Mason 	smp_rmb();
2377585717fSChris Mason 	if (root->last_trans == trans->transid &&
2387585717fSChris Mason 	    !root->in_trans_setup)
2397585717fSChris Mason 		return 0;
2407585717fSChris Mason 
2417585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
2427585717fSChris Mason 	record_root_in_trans(trans, root);
2437585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
2447585717fSChris Mason 
2457585717fSChris Mason 	return 0;
2467585717fSChris Mason }
2477585717fSChris Mason 
248d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
249d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
250d352ac68SChris Mason  * transaction might not be fully on disk.
251d352ac68SChris Mason  */
25237d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root)
25379154b1bSChris Mason {
254f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
25579154b1bSChris Mason 
256a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
257f9295749SChris Mason 	cur_trans = root->fs_info->running_transaction;
25837d1aeeeSChris Mason 	if (cur_trans && cur_trans->blocked) {
25913c5a93eSJosef Bacik 		atomic_inc(&cur_trans->use_count);
260a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
26172d63ed6SLi Zefan 
26272d63ed6SLi Zefan 		wait_event(root->fs_info->transaction_wait,
26372d63ed6SLi Zefan 			   !cur_trans->blocked);
264f9295749SChris Mason 		put_transaction(cur_trans);
265a4abeea4SJosef Bacik 	} else {
266a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
267f9295749SChris Mason 	}
26837d1aeeeSChris Mason }
26937d1aeeeSChris Mason 
270249ac1e5SJosef Bacik enum btrfs_trans_type {
271249ac1e5SJosef Bacik 	TRANS_START,
272249ac1e5SJosef Bacik 	TRANS_JOIN,
273249ac1e5SJosef Bacik 	TRANS_USERSPACE,
2740af3d00bSJosef Bacik 	TRANS_JOIN_NOLOCK,
275249ac1e5SJosef Bacik };
276249ac1e5SJosef Bacik 
277a22285a6SYan, Zheng static int may_wait_transaction(struct btrfs_root *root, int type)
27837d1aeeeSChris Mason {
279a4abeea4SJosef Bacik 	if (root->fs_info->log_root_recovering)
280a4abeea4SJosef Bacik 		return 0;
281a4abeea4SJosef Bacik 
282a4abeea4SJosef Bacik 	if (type == TRANS_USERSPACE)
283a22285a6SYan, Zheng 		return 1;
284a4abeea4SJosef Bacik 
285a4abeea4SJosef Bacik 	if (type == TRANS_START &&
286a4abeea4SJosef Bacik 	    !atomic_read(&root->fs_info->open_ioctl_trans))
287a4abeea4SJosef Bacik 		return 1;
288a4abeea4SJosef Bacik 
289a22285a6SYan, Zheng 	return 0;
290a22285a6SYan, Zheng }
291a22285a6SYan, Zheng 
292a22285a6SYan, Zheng static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
2938407aa46SMiao Xie 						    u64 num_items, int type,
2948407aa46SMiao Xie 						    int noflush)
295a22285a6SYan, Zheng {
296a22285a6SYan, Zheng 	struct btrfs_trans_handle *h;
297a22285a6SYan, Zheng 	struct btrfs_transaction *cur_trans;
298b5009945SJosef Bacik 	u64 num_bytes = 0;
299a22285a6SYan, Zheng 	int ret;
300c5567237SArne Jansen 	u64 qgroup_reserved = 0;
301acce952bSliubo 
302acce952bSliubo 	if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
303acce952bSliubo 		return ERR_PTR(-EROFS);
3042a1eb461SJosef Bacik 
3052a1eb461SJosef Bacik 	if (current->journal_info) {
3062a1eb461SJosef Bacik 		WARN_ON(type != TRANS_JOIN && type != TRANS_JOIN_NOLOCK);
3072a1eb461SJosef Bacik 		h = current->journal_info;
3082a1eb461SJosef Bacik 		h->use_count++;
3092a1eb461SJosef Bacik 		h->orig_rsv = h->block_rsv;
3102a1eb461SJosef Bacik 		h->block_rsv = NULL;
3112a1eb461SJosef Bacik 		goto got_it;
3122a1eb461SJosef Bacik 	}
313b5009945SJosef Bacik 
314b5009945SJosef Bacik 	/*
315b5009945SJosef Bacik 	 * Do the reservation before we join the transaction so we can do all
316b5009945SJosef Bacik 	 * the appropriate flushing if need be.
317b5009945SJosef Bacik 	 */
318b5009945SJosef Bacik 	if (num_items > 0 && root != root->fs_info->chunk_root) {
319c5567237SArne Jansen 		if (root->fs_info->quota_enabled &&
320c5567237SArne Jansen 		    is_fstree(root->root_key.objectid)) {
321c5567237SArne Jansen 			qgroup_reserved = num_items * root->leafsize;
322c5567237SArne Jansen 			ret = btrfs_qgroup_reserve(root, qgroup_reserved);
323c5567237SArne Jansen 			if (ret)
324c5567237SArne Jansen 				return ERR_PTR(ret);
325c5567237SArne Jansen 		}
326c5567237SArne Jansen 
327b5009945SJosef Bacik 		num_bytes = btrfs_calc_trans_metadata_size(root, num_items);
3288407aa46SMiao Xie 		if (noflush)
3298407aa46SMiao Xie 			ret = btrfs_block_rsv_add_noflush(root,
3308407aa46SMiao Xie 						&root->fs_info->trans_block_rsv,
3318407aa46SMiao Xie 						num_bytes);
3328407aa46SMiao Xie 		else
3334a92b1b8SJosef Bacik 			ret = btrfs_block_rsv_add(root,
334b5009945SJosef Bacik 						&root->fs_info->trans_block_rsv,
335b5009945SJosef Bacik 						num_bytes);
336b5009945SJosef Bacik 		if (ret)
337b5009945SJosef Bacik 			return ERR_PTR(ret);
338b5009945SJosef Bacik 	}
339a22285a6SYan, Zheng again:
340a22285a6SYan, Zheng 	h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
341a22285a6SYan, Zheng 	if (!h)
342a22285a6SYan, Zheng 		return ERR_PTR(-ENOMEM);
343a22285a6SYan, Zheng 
344b2b5ef5cSJan Kara 	sb_start_intwrite(root->fs_info->sb);
345b2b5ef5cSJan Kara 
346a22285a6SYan, Zheng 	if (may_wait_transaction(root, type))
34737d1aeeeSChris Mason 		wait_current_trans(root);
348a22285a6SYan, Zheng 
349a4abeea4SJosef Bacik 	do {
350a4abeea4SJosef Bacik 		ret = join_transaction(root, type == TRANS_JOIN_NOLOCK);
351a4abeea4SJosef Bacik 		if (ret == -EBUSY)
352a4abeea4SJosef Bacik 			wait_current_trans(root);
353a4abeea4SJosef Bacik 	} while (ret == -EBUSY);
354a4abeea4SJosef Bacik 
355db5b493aSTsutomu Itoh 	if (ret < 0) {
356b2b5ef5cSJan Kara 		sb_end_intwrite(root->fs_info->sb);
3576e8df2aeSYoshinori Sano 		kmem_cache_free(btrfs_trans_handle_cachep, h);
358db5b493aSTsutomu Itoh 		return ERR_PTR(ret);
359db5b493aSTsutomu Itoh 	}
3600f7d52f4SChris Mason 
361a22285a6SYan, Zheng 	cur_trans = root->fs_info->running_transaction;
362a22285a6SYan, Zheng 
363a22285a6SYan, Zheng 	h->transid = cur_trans->transid;
364a22285a6SYan, Zheng 	h->transaction = cur_trans;
36579154b1bSChris Mason 	h->blocks_used = 0;
366a22285a6SYan, Zheng 	h->bytes_reserved = 0;
367d13603efSArne Jansen 	h->root = root;
36856bec294SChris Mason 	h->delayed_ref_updates = 0;
3692a1eb461SJosef Bacik 	h->use_count = 1;
3700e721106SJosef Bacik 	h->adding_csums = 0;
371f0486c68SYan, Zheng 	h->block_rsv = NULL;
3722a1eb461SJosef Bacik 	h->orig_rsv = NULL;
37349b25e05SJeff Mahoney 	h->aborted = 0;
374c5567237SArne Jansen 	h->qgroup_reserved = qgroup_reserved;
375bed92eaeSArne Jansen 	h->delayed_ref_elem.seq = 0;
376bed92eaeSArne Jansen 	INIT_LIST_HEAD(&h->qgroup_ref_list);
377b7ec40d7SChris Mason 
378a22285a6SYan, Zheng 	smp_mb();
379a22285a6SYan, Zheng 	if (cur_trans->blocked && may_wait_transaction(root, type)) {
380a22285a6SYan, Zheng 		btrfs_commit_transaction(h, root);
381a22285a6SYan, Zheng 		goto again;
382a22285a6SYan, Zheng 	}
3839ed74f2dSJosef Bacik 
384b5009945SJosef Bacik 	if (num_bytes) {
3858c2a3ca2SJosef Bacik 		trace_btrfs_space_reservation(root->fs_info, "transaction",
3862bcc0328SLiu Bo 					      h->transid, num_bytes, 1);
387b5009945SJosef Bacik 		h->block_rsv = &root->fs_info->trans_block_rsv;
388b5009945SJosef Bacik 		h->bytes_reserved = num_bytes;
389a22285a6SYan, Zheng 	}
390a22285a6SYan, Zheng 
3912a1eb461SJosef Bacik got_it:
392a4abeea4SJosef Bacik 	btrfs_record_root_in_trans(h, root);
393a22285a6SYan, Zheng 
394a22285a6SYan, Zheng 	if (!current->journal_info && type != TRANS_USERSPACE)
395a22285a6SYan, Zheng 		current->journal_info = h;
39679154b1bSChris Mason 	return h;
39779154b1bSChris Mason }
39879154b1bSChris Mason 
399f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
400a22285a6SYan, Zheng 						   int num_items)
401f9295749SChris Mason {
4028407aa46SMiao Xie 	return start_transaction(root, num_items, TRANS_START, 0);
403f9295749SChris Mason }
4048407aa46SMiao Xie 
4058407aa46SMiao Xie struct btrfs_trans_handle *btrfs_start_transaction_noflush(
4068407aa46SMiao Xie 					struct btrfs_root *root, int num_items)
4078407aa46SMiao Xie {
4088407aa46SMiao Xie 	return start_transaction(root, num_items, TRANS_START, 1);
4098407aa46SMiao Xie }
4108407aa46SMiao Xie 
4117a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
412f9295749SChris Mason {
4138407aa46SMiao Xie 	return start_transaction(root, 0, TRANS_JOIN, 0);
414f9295749SChris Mason }
415f9295749SChris Mason 
4167a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root)
4170af3d00bSJosef Bacik {
4188407aa46SMiao Xie 	return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0);
4190af3d00bSJosef Bacik }
4200af3d00bSJosef Bacik 
4217a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root)
4229ca9ee09SSage Weil {
4238407aa46SMiao Xie 	return start_transaction(root, 0, TRANS_USERSPACE, 0);
4249ca9ee09SSage Weil }
4259ca9ee09SSage Weil 
426d352ac68SChris Mason /* wait for a transaction commit to be fully complete */
427b9c8300cSLi Zefan static noinline void wait_for_commit(struct btrfs_root *root,
42889ce8a63SChris Mason 				    struct btrfs_transaction *commit)
42989ce8a63SChris Mason {
43072d63ed6SLi Zefan 	wait_event(commit->commit_wait, commit->commit_done);
43189ce8a63SChris Mason }
43289ce8a63SChris Mason 
43346204592SSage Weil int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
43446204592SSage Weil {
43546204592SSage Weil 	struct btrfs_transaction *cur_trans = NULL, *t;
43646204592SSage Weil 	int ret;
43746204592SSage Weil 
43846204592SSage Weil 	ret = 0;
43946204592SSage Weil 	if (transid) {
44046204592SSage Weil 		if (transid <= root->fs_info->last_trans_committed)
441a4abeea4SJosef Bacik 			goto out;
44246204592SSage Weil 
44346204592SSage Weil 		/* find specified transaction */
444a4abeea4SJosef Bacik 		spin_lock(&root->fs_info->trans_lock);
44546204592SSage Weil 		list_for_each_entry(t, &root->fs_info->trans_list, list) {
44646204592SSage Weil 			if (t->transid == transid) {
44746204592SSage Weil 				cur_trans = t;
448a4abeea4SJosef Bacik 				atomic_inc(&cur_trans->use_count);
44946204592SSage Weil 				break;
45046204592SSage Weil 			}
45146204592SSage Weil 			if (t->transid > transid)
45246204592SSage Weil 				break;
45346204592SSage Weil 		}
454a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
45546204592SSage Weil 		ret = -EINVAL;
45646204592SSage Weil 		if (!cur_trans)
457a4abeea4SJosef Bacik 			goto out;  /* bad transid */
45846204592SSage Weil 	} else {
45946204592SSage Weil 		/* find newest transaction that is committing | committed */
460a4abeea4SJosef Bacik 		spin_lock(&root->fs_info->trans_lock);
46146204592SSage Weil 		list_for_each_entry_reverse(t, &root->fs_info->trans_list,
46246204592SSage Weil 					    list) {
46346204592SSage Weil 			if (t->in_commit) {
46446204592SSage Weil 				if (t->commit_done)
4653473f3c0SJosef Bacik 					break;
46646204592SSage Weil 				cur_trans = t;
467a4abeea4SJosef Bacik 				atomic_inc(&cur_trans->use_count);
46846204592SSage Weil 				break;
46946204592SSage Weil 			}
47046204592SSage Weil 		}
471a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
47246204592SSage Weil 		if (!cur_trans)
473a4abeea4SJosef Bacik 			goto out;  /* nothing committing|committed */
47446204592SSage Weil 	}
47546204592SSage Weil 
47646204592SSage Weil 	wait_for_commit(root, cur_trans);
47746204592SSage Weil 
47846204592SSage Weil 	put_transaction(cur_trans);
47946204592SSage Weil 	ret = 0;
480a4abeea4SJosef Bacik out:
48146204592SSage Weil 	return ret;
48246204592SSage Weil }
48346204592SSage Weil 
48437d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root)
48537d1aeeeSChris Mason {
486a4abeea4SJosef Bacik 	if (!atomic_read(&root->fs_info->open_ioctl_trans))
48737d1aeeeSChris Mason 		wait_current_trans(root);
48837d1aeeeSChris Mason }
48937d1aeeeSChris Mason 
4908929ecfaSYan, Zheng static int should_end_transaction(struct btrfs_trans_handle *trans,
4918929ecfaSYan, Zheng 				  struct btrfs_root *root)
4928929ecfaSYan, Zheng {
4938929ecfaSYan, Zheng 	int ret;
49436ba022aSJosef Bacik 
49536ba022aSJosef Bacik 	ret = btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5);
4968929ecfaSYan, Zheng 	return ret ? 1 : 0;
4978929ecfaSYan, Zheng }
4988929ecfaSYan, Zheng 
4998929ecfaSYan, Zheng int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
5008929ecfaSYan, Zheng 				 struct btrfs_root *root)
5018929ecfaSYan, Zheng {
5028929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
5038929ecfaSYan, Zheng 	int updates;
50449b25e05SJeff Mahoney 	int err;
5058929ecfaSYan, Zheng 
506a4abeea4SJosef Bacik 	smp_mb();
5078929ecfaSYan, Zheng 	if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
5088929ecfaSYan, Zheng 		return 1;
5098929ecfaSYan, Zheng 
5108929ecfaSYan, Zheng 	updates = trans->delayed_ref_updates;
5118929ecfaSYan, Zheng 	trans->delayed_ref_updates = 0;
51249b25e05SJeff Mahoney 	if (updates) {
51349b25e05SJeff Mahoney 		err = btrfs_run_delayed_refs(trans, root, updates);
51449b25e05SJeff Mahoney 		if (err) /* Error code will also eval true */
51549b25e05SJeff Mahoney 			return err;
51649b25e05SJeff Mahoney 	}
5178929ecfaSYan, Zheng 
5188929ecfaSYan, Zheng 	return should_end_transaction(trans, root);
5198929ecfaSYan, Zheng }
5208929ecfaSYan, Zheng 
52189ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
5220af3d00bSJosef Bacik 			  struct btrfs_root *root, int throttle, int lock)
52379154b1bSChris Mason {
5248929ecfaSYan, Zheng 	struct btrfs_transaction *cur_trans = trans->transaction;
525ab78c84dSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
526c3e69d58SChris Mason 	int count = 0;
5274edc2ca3SDave Jones 	int err = 0;
528d6e4a428SChris Mason 
5292a1eb461SJosef Bacik 	if (--trans->use_count) {
5302a1eb461SJosef Bacik 		trans->block_rsv = trans->orig_rsv;
5312a1eb461SJosef Bacik 		return 0;
5322a1eb461SJosef Bacik 	}
5332a1eb461SJosef Bacik 
534edf39272SJan Schmidt 	/*
535edf39272SJan Schmidt 	 * do the qgroup accounting as early as possible
536edf39272SJan Schmidt 	 */
537edf39272SJan Schmidt 	err = btrfs_delayed_refs_qgroup_accounting(trans, info);
538edf39272SJan Schmidt 
539b24e03dbSJosef Bacik 	btrfs_trans_release_metadata(trans, root);
5404c13d758SJosef Bacik 	trans->block_rsv = NULL;
541d13603efSArne Jansen 	/*
542d13603efSArne Jansen 	 * the same root has to be passed to start_transaction and
543d13603efSArne Jansen 	 * end_transaction. Subvolume quota depends on this.
544d13603efSArne Jansen 	 */
545d13603efSArne Jansen 	WARN_ON(trans->root != root);
546c5567237SArne Jansen 
547c5567237SArne Jansen 	if (trans->qgroup_reserved) {
548c5567237SArne Jansen 		btrfs_qgroup_free(root, trans->qgroup_reserved);
549c5567237SArne Jansen 		trans->qgroup_reserved = 0;
550c5567237SArne Jansen 	}
551c5567237SArne Jansen 
552203bf287SChris Mason 	while (count < 2) {
553c3e69d58SChris Mason 		unsigned long cur = trans->delayed_ref_updates;
554c3e69d58SChris Mason 		trans->delayed_ref_updates = 0;
555c3e69d58SChris Mason 		if (cur &&
556c3e69d58SChris Mason 		    trans->transaction->delayed_refs.num_heads_ready > 64) {
557c3e69d58SChris Mason 			trans->delayed_ref_updates = 0;
558c3e69d58SChris Mason 			btrfs_run_delayed_refs(trans, root, cur);
559c3e69d58SChris Mason 		} else {
560c3e69d58SChris Mason 			break;
561c3e69d58SChris Mason 		}
562c3e69d58SChris Mason 		count++;
56356bec294SChris Mason 	}
5640e721106SJosef Bacik 	btrfs_trans_release_metadata(trans, root);
5650e721106SJosef Bacik 	trans->block_rsv = NULL;
56656bec294SChris Mason 
567a4abeea4SJosef Bacik 	if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) &&
568a4abeea4SJosef Bacik 	    should_end_transaction(trans, root)) {
5698929ecfaSYan, Zheng 		trans->transaction->blocked = 1;
570a4abeea4SJosef Bacik 		smp_wmb();
571a4abeea4SJosef Bacik 	}
5728929ecfaSYan, Zheng 
5730af3d00bSJosef Bacik 	if (lock && cur_trans->blocked && !cur_trans->in_commit) {
57481317fdeSJosef Bacik 		if (throttle) {
57581317fdeSJosef Bacik 			/*
57681317fdeSJosef Bacik 			 * We may race with somebody else here so end up having
57781317fdeSJosef Bacik 			 * to call end_transaction on ourselves again, so inc
57881317fdeSJosef Bacik 			 * our use_count.
57981317fdeSJosef Bacik 			 */
58081317fdeSJosef Bacik 			trans->use_count++;
5818929ecfaSYan, Zheng 			return btrfs_commit_transaction(trans, root);
58281317fdeSJosef Bacik 		} else {
5838929ecfaSYan, Zheng 			wake_up_process(info->transaction_kthread);
5848929ecfaSYan, Zheng 		}
58581317fdeSJosef Bacik 	}
5868929ecfaSYan, Zheng 
5876df7881aSJosef Bacik 	sb_end_intwrite(root->fs_info->sb);
5886df7881aSJosef Bacik 
5898929ecfaSYan, Zheng 	WARN_ON(cur_trans != info->running_transaction);
59013c5a93eSJosef Bacik 	WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
59113c5a93eSJosef Bacik 	atomic_dec(&cur_trans->num_writers);
59289ce8a63SChris Mason 
59399d16cbcSSage Weil 	smp_mb();
59479154b1bSChris Mason 	if (waitqueue_active(&cur_trans->writer_wait))
59579154b1bSChris Mason 		wake_up(&cur_trans->writer_wait);
59679154b1bSChris Mason 	put_transaction(cur_trans);
5979ed74f2dSJosef Bacik 
5989ed74f2dSJosef Bacik 	if (current->journal_info == trans)
5999ed74f2dSJosef Bacik 		current->journal_info = NULL;
600ab78c84dSChris Mason 
60124bbcf04SYan, Zheng 	if (throttle)
60224bbcf04SYan, Zheng 		btrfs_run_delayed_iputs(root);
60324bbcf04SYan, Zheng 
60449b25e05SJeff Mahoney 	if (trans->aborted ||
60549b25e05SJeff Mahoney 	    root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
6064edc2ca3SDave Jones 		err = -EIO;
60749b25e05SJeff Mahoney 	}
608edf39272SJan Schmidt 	assert_qgroups_uptodate(trans);
60949b25e05SJeff Mahoney 
6104edc2ca3SDave Jones 	memset(trans, 0, sizeof(*trans));
6114edc2ca3SDave Jones 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
6124edc2ca3SDave Jones 	return err;
61379154b1bSChris Mason }
61479154b1bSChris Mason 
61589ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans,
61689ce8a63SChris Mason 			  struct btrfs_root *root)
61789ce8a63SChris Mason {
61816cdcec7SMiao Xie 	int ret;
61916cdcec7SMiao Xie 
62016cdcec7SMiao Xie 	ret = __btrfs_end_transaction(trans, root, 0, 1);
62116cdcec7SMiao Xie 	if (ret)
62216cdcec7SMiao Xie 		return ret;
62316cdcec7SMiao Xie 	return 0;
62489ce8a63SChris Mason }
62589ce8a63SChris Mason 
62689ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
62789ce8a63SChris Mason 				   struct btrfs_root *root)
62889ce8a63SChris Mason {
62916cdcec7SMiao Xie 	int ret;
63016cdcec7SMiao Xie 
63116cdcec7SMiao Xie 	ret = __btrfs_end_transaction(trans, root, 1, 1);
63216cdcec7SMiao Xie 	if (ret)
63316cdcec7SMiao Xie 		return ret;
63416cdcec7SMiao Xie 	return 0;
6350af3d00bSJosef Bacik }
6360af3d00bSJosef Bacik 
6370af3d00bSJosef Bacik int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
6380af3d00bSJosef Bacik 				 struct btrfs_root *root)
6390af3d00bSJosef Bacik {
64016cdcec7SMiao Xie 	int ret;
64116cdcec7SMiao Xie 
64216cdcec7SMiao Xie 	ret = __btrfs_end_transaction(trans, root, 0, 0);
64316cdcec7SMiao Xie 	if (ret)
64416cdcec7SMiao Xie 		return ret;
64516cdcec7SMiao Xie 	return 0;
64616cdcec7SMiao Xie }
64716cdcec7SMiao Xie 
64816cdcec7SMiao Xie int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans,
64916cdcec7SMiao Xie 				struct btrfs_root *root)
65016cdcec7SMiao Xie {
65116cdcec7SMiao Xie 	return __btrfs_end_transaction(trans, root, 1, 1);
65289ce8a63SChris Mason }
65389ce8a63SChris Mason 
654d352ac68SChris Mason /*
655d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
656d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
657690587d1SChris Mason  * those extents are sent to disk but does not wait on them
658d352ac68SChris Mason  */
659690587d1SChris Mason int btrfs_write_marked_extents(struct btrfs_root *root,
6608cef4e16SYan, Zheng 			       struct extent_io_tree *dirty_pages, int mark)
66179154b1bSChris Mason {
662777e6bd7SChris Mason 	int err = 0;
6637c4452b9SChris Mason 	int werr = 0;
6641728366eSJosef Bacik 	struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
665777e6bd7SChris Mason 	u64 start = 0;
6665f39d397SChris Mason 	u64 end;
6677c4452b9SChris Mason 
6681728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
6691728366eSJosef Bacik 				      mark)) {
6701728366eSJosef Bacik 		convert_extent_bit(dirty_pages, start, end, EXTENT_NEED_WAIT, mark,
6711728366eSJosef Bacik 				   GFP_NOFS);
6721728366eSJosef Bacik 		err = filemap_fdatawrite_range(mapping, start, end);
6737c4452b9SChris Mason 		if (err)
6747c4452b9SChris Mason 			werr = err;
6751728366eSJosef Bacik 		cond_resched();
6761728366eSJosef Bacik 		start = end + 1;
6777c4452b9SChris Mason 	}
678690587d1SChris Mason 	if (err)
679690587d1SChris Mason 		werr = err;
680690587d1SChris Mason 	return werr;
681690587d1SChris Mason }
682690587d1SChris Mason 
683690587d1SChris Mason /*
684690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
685690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
686690587d1SChris Mason  * those extents are on disk for transaction or log commit.  We wait
687690587d1SChris Mason  * on all the pages and clear them from the dirty pages state tree
688690587d1SChris Mason  */
689690587d1SChris Mason int btrfs_wait_marked_extents(struct btrfs_root *root,
6908cef4e16SYan, Zheng 			      struct extent_io_tree *dirty_pages, int mark)
691690587d1SChris Mason {
692690587d1SChris Mason 	int err = 0;
693690587d1SChris Mason 	int werr = 0;
6941728366eSJosef Bacik 	struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
695690587d1SChris Mason 	u64 start = 0;
696690587d1SChris Mason 	u64 end;
697690587d1SChris Mason 
6981728366eSJosef Bacik 	while (!find_first_extent_bit(dirty_pages, start, &start, &end,
6991728366eSJosef Bacik 				      EXTENT_NEED_WAIT)) {
7001728366eSJosef Bacik 		clear_extent_bits(dirty_pages, start, end, EXTENT_NEED_WAIT, GFP_NOFS);
7011728366eSJosef Bacik 		err = filemap_fdatawait_range(mapping, start, end);
702777e6bd7SChris Mason 		if (err)
703777e6bd7SChris Mason 			werr = err;
704777e6bd7SChris Mason 		cond_resched();
7051728366eSJosef Bacik 		start = end + 1;
706777e6bd7SChris Mason 	}
7077c4452b9SChris Mason 	if (err)
7087c4452b9SChris Mason 		werr = err;
7097c4452b9SChris Mason 	return werr;
71079154b1bSChris Mason }
71179154b1bSChris Mason 
712690587d1SChris Mason /*
713690587d1SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
714690587d1SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
715690587d1SChris Mason  * those extents are on disk for transaction or log commit
716690587d1SChris Mason  */
717690587d1SChris Mason int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
7188cef4e16SYan, Zheng 				struct extent_io_tree *dirty_pages, int mark)
719690587d1SChris Mason {
720690587d1SChris Mason 	int ret;
721690587d1SChris Mason 	int ret2;
722690587d1SChris Mason 
7238cef4e16SYan, Zheng 	ret = btrfs_write_marked_extents(root, dirty_pages, mark);
7248cef4e16SYan, Zheng 	ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
725bf0da8c1SChris Mason 
726bf0da8c1SChris Mason 	if (ret)
727bf0da8c1SChris Mason 		return ret;
728bf0da8c1SChris Mason 	if (ret2)
729bf0da8c1SChris Mason 		return ret2;
730bf0da8c1SChris Mason 	return 0;
731690587d1SChris Mason }
732690587d1SChris Mason 
733d0c803c4SChris Mason int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
734d0c803c4SChris Mason 				     struct btrfs_root *root)
735d0c803c4SChris Mason {
736d0c803c4SChris Mason 	if (!trans || !trans->transaction) {
737d0c803c4SChris Mason 		struct inode *btree_inode;
738d0c803c4SChris Mason 		btree_inode = root->fs_info->btree_inode;
739d0c803c4SChris Mason 		return filemap_write_and_wait(btree_inode->i_mapping);
740d0c803c4SChris Mason 	}
741d0c803c4SChris Mason 	return btrfs_write_and_wait_marked_extents(root,
7428cef4e16SYan, Zheng 					   &trans->transaction->dirty_pages,
7438cef4e16SYan, Zheng 					   EXTENT_DIRTY);
744d0c803c4SChris Mason }
745d0c803c4SChris Mason 
746d352ac68SChris Mason /*
747d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
748d352ac68SChris Mason  *
749d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
750d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
751d352ac68SChris Mason  * allocation tree.
752d352ac68SChris Mason  *
753d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
754d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
755d352ac68SChris Mason  */
7560b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
75779154b1bSChris Mason 			       struct btrfs_root *root)
75879154b1bSChris Mason {
75979154b1bSChris Mason 	int ret;
7600b86a832SChris Mason 	u64 old_root_bytenr;
76186b9f2ecSYan, Zheng 	u64 old_root_used;
7620b86a832SChris Mason 	struct btrfs_root *tree_root = root->fs_info->tree_root;
76379154b1bSChris Mason 
76486b9f2ecSYan, Zheng 	old_root_used = btrfs_root_used(&root->root_item);
7650b86a832SChris Mason 	btrfs_write_dirty_block_groups(trans, root);
76656bec294SChris Mason 
76779154b1bSChris Mason 	while (1) {
7680b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
76986b9f2ecSYan, Zheng 		if (old_root_bytenr == root->node->start &&
77086b9f2ecSYan, Zheng 		    old_root_used == btrfs_root_used(&root->root_item))
77179154b1bSChris Mason 			break;
77287ef2bb4SChris Mason 
7735d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
77479154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
7750b86a832SChris Mason 					&root->root_key,
7760b86a832SChris Mason 					&root->root_item);
77749b25e05SJeff Mahoney 		if (ret)
77849b25e05SJeff Mahoney 			return ret;
77956bec294SChris Mason 
78086b9f2ecSYan, Zheng 		old_root_used = btrfs_root_used(&root->root_item);
7814a8c9a62SYan Zheng 		ret = btrfs_write_dirty_block_groups(trans, root);
78249b25e05SJeff Mahoney 		if (ret)
78349b25e05SJeff Mahoney 			return ret;
7840b86a832SChris Mason 	}
785276e680dSYan Zheng 
786276e680dSYan Zheng 	if (root != root->fs_info->extent_root)
787817d52f8SJosef Bacik 		switch_commit_root(root);
788276e680dSYan Zheng 
7890b86a832SChris Mason 	return 0;
7900b86a832SChris Mason }
7910b86a832SChris Mason 
792d352ac68SChris Mason /*
793d352ac68SChris Mason  * update all the cowonly tree roots on disk
79449b25e05SJeff Mahoney  *
79549b25e05SJeff Mahoney  * The error handling in this function may not be obvious. Any of the
79649b25e05SJeff Mahoney  * failures will cause the file system to go offline. We still need
79749b25e05SJeff Mahoney  * to clean up the delayed refs.
798d352ac68SChris Mason  */
7995d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
8000b86a832SChris Mason 					 struct btrfs_root *root)
8010b86a832SChris Mason {
8020b86a832SChris Mason 	struct btrfs_fs_info *fs_info = root->fs_info;
8030b86a832SChris Mason 	struct list_head *next;
80484234f3aSYan Zheng 	struct extent_buffer *eb;
80556bec294SChris Mason 	int ret;
80684234f3aSYan Zheng 
80756bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
80849b25e05SJeff Mahoney 	if (ret)
80949b25e05SJeff Mahoney 		return ret;
81087ef2bb4SChris Mason 
81184234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
81249b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
81349b25e05SJeff Mahoney 			      0, &eb);
81484234f3aSYan Zheng 	btrfs_tree_unlock(eb);
81584234f3aSYan Zheng 	free_extent_buffer(eb);
8160b86a832SChris Mason 
81749b25e05SJeff Mahoney 	if (ret)
81849b25e05SJeff Mahoney 		return ret;
81949b25e05SJeff Mahoney 
82056bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
82149b25e05SJeff Mahoney 	if (ret)
82249b25e05SJeff Mahoney 		return ret;
82387ef2bb4SChris Mason 
824733f4fbbSStefan Behrens 	ret = btrfs_run_dev_stats(trans, root->fs_info);
825733f4fbbSStefan Behrens 	BUG_ON(ret);
826733f4fbbSStefan Behrens 
827546adb0dSJan Schmidt 	ret = btrfs_run_qgroups(trans, root->fs_info);
828546adb0dSJan Schmidt 	BUG_ON(ret);
829546adb0dSJan Schmidt 
830546adb0dSJan Schmidt 	/* run_qgroups might have added some more refs */
831546adb0dSJan Schmidt 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
832546adb0dSJan Schmidt 	BUG_ON(ret);
833546adb0dSJan Schmidt 
8340b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
8350b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
8360b86a832SChris Mason 		list_del_init(next);
8370b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
83887ef2bb4SChris Mason 
83949b25e05SJeff Mahoney 		ret = update_cowonly_root(trans, root);
84049b25e05SJeff Mahoney 		if (ret)
84149b25e05SJeff Mahoney 			return ret;
84279154b1bSChris Mason 	}
843276e680dSYan Zheng 
844276e680dSYan Zheng 	down_write(&fs_info->extent_commit_sem);
845276e680dSYan Zheng 	switch_commit_root(fs_info->extent_root);
846276e680dSYan Zheng 	up_write(&fs_info->extent_commit_sem);
847276e680dSYan Zheng 
84879154b1bSChris Mason 	return 0;
84979154b1bSChris Mason }
85079154b1bSChris Mason 
851d352ac68SChris Mason /*
852d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
853d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
854d352ac68SChris Mason  * be deleted
855d352ac68SChris Mason  */
8565d4f98a2SYan Zheng int btrfs_add_dead_root(struct btrfs_root *root)
8575eda7b5eSChris Mason {
858a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
8595d4f98a2SYan Zheng 	list_add(&root->root_list, &root->fs_info->dead_roots);
860a4abeea4SJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
8615eda7b5eSChris Mason 	return 0;
8625eda7b5eSChris Mason }
8635eda7b5eSChris Mason 
864d352ac68SChris Mason /*
8655d4f98a2SYan Zheng  * update all the cowonly tree roots on disk
866d352ac68SChris Mason  */
8675d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
8685d4f98a2SYan Zheng 				    struct btrfs_root *root)
8690f7d52f4SChris Mason {
8700f7d52f4SChris Mason 	struct btrfs_root *gang[8];
8715d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
8720f7d52f4SChris Mason 	int i;
8730f7d52f4SChris Mason 	int ret;
87454aa1f4dSChris Mason 	int err = 0;
87554aa1f4dSChris Mason 
876a4abeea4SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
8770f7d52f4SChris Mason 	while (1) {
8785d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
8795d4f98a2SYan Zheng 						 (void **)gang, 0,
8800f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
8810f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
8820f7d52f4SChris Mason 		if (ret == 0)
8830f7d52f4SChris Mason 			break;
8840f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
8850f7d52f4SChris Mason 			root = gang[i];
8865d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
8872619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
8880f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
889a4abeea4SJosef Bacik 			spin_unlock(&fs_info->fs_roots_radix_lock);
89031153d81SYan Zheng 
891e02119d5SChris Mason 			btrfs_free_log(trans, root);
8925d4f98a2SYan Zheng 			btrfs_update_reloc_root(trans, root);
893d68fc57bSYan, Zheng 			btrfs_orphan_commit_root(trans, root);
894e02119d5SChris Mason 
89582d5902dSLi Zefan 			btrfs_save_ino_cache(root, trans);
89682d5902dSLi Zefan 
897f1ebcc74SLiu Bo 			/* see comments in should_cow_block() */
898f1ebcc74SLiu Bo 			root->force_cow = 0;
899f1ebcc74SLiu Bo 			smp_wmb();
900f1ebcc74SLiu Bo 
901978d910dSYan Zheng 			if (root->commit_root != root->node) {
902581bb050SLi Zefan 				mutex_lock(&root->fs_commit_mutex);
903817d52f8SJosef Bacik 				switch_commit_root(root);
904581bb050SLi Zefan 				btrfs_unpin_free_ino(root);
905581bb050SLi Zefan 				mutex_unlock(&root->fs_commit_mutex);
906581bb050SLi Zefan 
907978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
908978d910dSYan Zheng 						    root->node);
909978d910dSYan Zheng 			}
91031153d81SYan Zheng 
9115d4f98a2SYan Zheng 			err = btrfs_update_root(trans, fs_info->tree_root,
9120f7d52f4SChris Mason 						&root->root_key,
9130f7d52f4SChris Mason 						&root->root_item);
914a4abeea4SJosef Bacik 			spin_lock(&fs_info->fs_roots_radix_lock);
91554aa1f4dSChris Mason 			if (err)
91654aa1f4dSChris Mason 				break;
9170f7d52f4SChris Mason 		}
9189f3a7427SChris Mason 	}
919a4abeea4SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
92054aa1f4dSChris Mason 	return err;
9210f7d52f4SChris Mason }
9220f7d52f4SChris Mason 
923d352ac68SChris Mason /*
924d352ac68SChris Mason  * defrag a given btree.  If cacheonly == 1, this won't read from the disk,
925d352ac68SChris Mason  * otherwise every leaf in the btree is read and defragged.
926d352ac68SChris Mason  */
927e9d0b13bSChris Mason int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
928e9d0b13bSChris Mason {
929e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
930e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
9318929ecfaSYan, Zheng 	int ret;
932d3c2fdcfSChris Mason 	unsigned long nr;
933e9d0b13bSChris Mason 
9348929ecfaSYan, Zheng 	if (xchg(&root->defrag_running, 1))
935e9d0b13bSChris Mason 		return 0;
9368929ecfaSYan, Zheng 
9376b80053dSChris Mason 	while (1) {
9388929ecfaSYan, Zheng 		trans = btrfs_start_transaction(root, 0);
9398929ecfaSYan, Zheng 		if (IS_ERR(trans))
9408929ecfaSYan, Zheng 			return PTR_ERR(trans);
9418929ecfaSYan, Zheng 
942e9d0b13bSChris Mason 		ret = btrfs_defrag_leaves(trans, root, cacheonly);
9438929ecfaSYan, Zheng 
944d3c2fdcfSChris Mason 		nr = trans->blocks_used;
945e9d0b13bSChris Mason 		btrfs_end_transaction(trans, root);
946d3c2fdcfSChris Mason 		btrfs_btree_balance_dirty(info->tree_root, nr);
947e9d0b13bSChris Mason 		cond_resched();
948e9d0b13bSChris Mason 
9497841cb28SDavid Sterba 		if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN)
950e9d0b13bSChris Mason 			break;
951e9d0b13bSChris Mason 	}
952e9d0b13bSChris Mason 	root->defrag_running = 0;
9538929ecfaSYan, Zheng 	return ret;
954e9d0b13bSChris Mason }
955e9d0b13bSChris Mason 
956d352ac68SChris Mason /*
957d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
958d352ac68SChris Mason  * transaction commit.  This does the actual creation
959d352ac68SChris Mason  */
96080b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
9613063d29fSChris Mason 				   struct btrfs_fs_info *fs_info,
9623063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
9633063d29fSChris Mason {
9643063d29fSChris Mason 	struct btrfs_key key;
96580b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
9663063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
9673063d29fSChris Mason 	struct btrfs_root *root = pending->root;
9686bdb72deSSage Weil 	struct btrfs_root *parent_root;
96998c9942aSLiu Bo 	struct btrfs_block_rsv *rsv;
9706bdb72deSSage Weil 	struct inode *parent_inode;
97142874b3dSMiao Xie 	struct btrfs_path *path;
97242874b3dSMiao Xie 	struct btrfs_dir_item *dir_item;
9736a912213SJosef Bacik 	struct dentry *parent;
974a22285a6SYan, Zheng 	struct dentry *dentry;
9753063d29fSChris Mason 	struct extent_buffer *tmp;
976925baeddSChris Mason 	struct extent_buffer *old;
9778ea05e3aSAlexander Block 	struct timespec cur_time = CURRENT_TIME;
9783063d29fSChris Mason 	int ret;
979d68fc57bSYan, Zheng 	u64 to_reserve = 0;
9806bdb72deSSage Weil 	u64 index = 0;
981a22285a6SYan, Zheng 	u64 objectid;
982b83cc969SLi Zefan 	u64 root_flags;
9838ea05e3aSAlexander Block 	uuid_le new_uuid;
9843063d29fSChris Mason 
98542874b3dSMiao Xie 	path = btrfs_alloc_path();
98642874b3dSMiao Xie 	if (!path) {
98742874b3dSMiao Xie 		ret = pending->error = -ENOMEM;
98842874b3dSMiao Xie 		goto path_alloc_fail;
98942874b3dSMiao Xie 	}
99042874b3dSMiao Xie 
99180b6794dSChris Mason 	new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
99280b6794dSChris Mason 	if (!new_root_item) {
99349b25e05SJeff Mahoney 		ret = pending->error = -ENOMEM;
9946fa9700eSMiao Xie 		goto root_item_alloc_fail;
99580b6794dSChris Mason 	}
996a22285a6SYan, Zheng 
997581bb050SLi Zefan 	ret = btrfs_find_free_objectid(tree_root, &objectid);
998a22285a6SYan, Zheng 	if (ret) {
999a22285a6SYan, Zheng 		pending->error = ret;
10006fa9700eSMiao Xie 		goto no_free_objectid;
1001a22285a6SYan, Zheng 	}
10023063d29fSChris Mason 
10033fd0a558SYan, Zheng 	btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
1004d68fc57bSYan, Zheng 
1005d68fc57bSYan, Zheng 	if (to_reserve > 0) {
100662f30c54SMiao Xie 		ret = btrfs_block_rsv_add_noflush(root, &pending->block_rsv,
10078bb8ab2eSJosef Bacik 						  to_reserve);
1008d68fc57bSYan, Zheng 		if (ret) {
1009d68fc57bSYan, Zheng 			pending->error = ret;
10106fa9700eSMiao Xie 			goto no_free_objectid;
1011d68fc57bSYan, Zheng 		}
1012d68fc57bSYan, Zheng 	}
1013d68fc57bSYan, Zheng 
10146f72c7e2SArne Jansen 	ret = btrfs_qgroup_inherit(trans, fs_info, root->root_key.objectid,
10156f72c7e2SArne Jansen 				   objectid, pending->inherit);
10166f72c7e2SArne Jansen 	if (ret) {
10176f72c7e2SArne Jansen 		pending->error = ret;
10186fa9700eSMiao Xie 		goto no_free_objectid;
10196f72c7e2SArne Jansen 	}
10206f72c7e2SArne Jansen 
10213063d29fSChris Mason 	key.objectid = objectid;
1022a22285a6SYan, Zheng 	key.offset = (u64)-1;
1023a22285a6SYan, Zheng 	key.type = BTRFS_ROOT_ITEM_KEY;
10243063d29fSChris Mason 
10256fa9700eSMiao Xie 	rsv = trans->block_rsv;
1026a22285a6SYan, Zheng 	trans->block_rsv = &pending->block_rsv;
10276bdb72deSSage Weil 
1028a22285a6SYan, Zheng 	dentry = pending->dentry;
10296a912213SJosef Bacik 	parent = dget_parent(dentry);
10306a912213SJosef Bacik 	parent_inode = parent->d_inode;
1031a22285a6SYan, Zheng 	parent_root = BTRFS_I(parent_inode)->root;
10327585717fSChris Mason 	record_root_in_trans(trans, parent_root);
1033a22285a6SYan, Zheng 
10346bdb72deSSage Weil 	/*
10356bdb72deSSage Weil 	 * insert the directory item
10366bdb72deSSage Weil 	 */
10376bdb72deSSage Weil 	ret = btrfs_set_inode_index(parent_inode, &index);
103849b25e05SJeff Mahoney 	BUG_ON(ret); /* -ENOMEM */
103942874b3dSMiao Xie 
104042874b3dSMiao Xie 	/* check if there is a file/dir which has the same name. */
104142874b3dSMiao Xie 	dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
104242874b3dSMiao Xie 					 btrfs_ino(parent_inode),
104342874b3dSMiao Xie 					 dentry->d_name.name,
104442874b3dSMiao Xie 					 dentry->d_name.len, 0);
104542874b3dSMiao Xie 	if (dir_item != NULL && !IS_ERR(dir_item)) {
1046fe66a05aSChris Mason 		pending->error = -EEXIST;
1047fe66a05aSChris Mason 		goto fail;
104842874b3dSMiao Xie 	} else if (IS_ERR(dir_item)) {
104942874b3dSMiao Xie 		ret = PTR_ERR(dir_item);
10506fa9700eSMiao Xie 		goto abort_trans;
105179787eaaSJeff Mahoney 	}
105242874b3dSMiao Xie 	btrfs_release_path(path);
10536bdb72deSSage Weil 
1054e999376fSChris Mason 	/*
1055e999376fSChris Mason 	 * pull in the delayed directory update
1056e999376fSChris Mason 	 * and the delayed inode item
1057e999376fSChris Mason 	 * otherwise we corrupt the FS during
1058e999376fSChris Mason 	 * snapshot
1059e999376fSChris Mason 	 */
1060e999376fSChris Mason 	ret = btrfs_run_delayed_items(trans, root);
10616fa9700eSMiao Xie 	if (ret)	/* Transaction aborted */
10626fa9700eSMiao Xie 		goto abort_trans;
1063e999376fSChris Mason 
10647585717fSChris Mason 	record_root_in_trans(trans, root);
10656bdb72deSSage Weil 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
10666bdb72deSSage Weil 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
106708fe4db1SLi Zefan 	btrfs_check_and_init_root_item(new_root_item);
10686bdb72deSSage Weil 
1069b83cc969SLi Zefan 	root_flags = btrfs_root_flags(new_root_item);
1070b83cc969SLi Zefan 	if (pending->readonly)
1071b83cc969SLi Zefan 		root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1072b83cc969SLi Zefan 	else
1073b83cc969SLi Zefan 		root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1074b83cc969SLi Zefan 	btrfs_set_root_flags(new_root_item, root_flags);
1075b83cc969SLi Zefan 
10768ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(new_root_item,
10778ea05e3aSAlexander Block 			trans->transid);
10788ea05e3aSAlexander Block 	uuid_le_gen(&new_uuid);
10798ea05e3aSAlexander Block 	memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
10808ea05e3aSAlexander Block 	memcpy(new_root_item->parent_uuid, root->root_item.uuid,
10818ea05e3aSAlexander Block 			BTRFS_UUID_SIZE);
10828ea05e3aSAlexander Block 	new_root_item->otime.sec = cpu_to_le64(cur_time.tv_sec);
1083dadd1105SDan Carpenter 	new_root_item->otime.nsec = cpu_to_le32(cur_time.tv_nsec);
10848ea05e3aSAlexander Block 	btrfs_set_root_otransid(new_root_item, trans->transid);
10858ea05e3aSAlexander Block 	memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
10868ea05e3aSAlexander Block 	memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
10878ea05e3aSAlexander Block 	btrfs_set_root_stransid(new_root_item, 0);
10888ea05e3aSAlexander Block 	btrfs_set_root_rtransid(new_root_item, 0);
10898ea05e3aSAlexander Block 
1090925baeddSChris Mason 	old = btrfs_lock_root_node(root);
109149b25e05SJeff Mahoney 	ret = btrfs_cow_block(trans, root, old, NULL, 0, &old);
109279787eaaSJeff Mahoney 	if (ret) {
109379787eaaSJeff Mahoney 		btrfs_tree_unlock(old);
109479787eaaSJeff Mahoney 		free_extent_buffer(old);
10956fa9700eSMiao Xie 		goto abort_trans;
109679787eaaSJeff Mahoney 	}
109749b25e05SJeff Mahoney 
10985d4f98a2SYan Zheng 	btrfs_set_lock_blocking(old);
10993063d29fSChris Mason 
110049b25e05SJeff Mahoney 	ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
110179787eaaSJeff Mahoney 	/* clean up in any case */
1102925baeddSChris Mason 	btrfs_tree_unlock(old);
1103925baeddSChris Mason 	free_extent_buffer(old);
110479787eaaSJeff Mahoney 	if (ret)
11056fa9700eSMiao Xie 		goto abort_trans;
11063063d29fSChris Mason 
1107f1ebcc74SLiu Bo 	/* see comments in should_cow_block() */
1108f1ebcc74SLiu Bo 	root->force_cow = 1;
1109f1ebcc74SLiu Bo 	smp_wmb();
1110f1ebcc74SLiu Bo 
11115d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
1112a22285a6SYan, Zheng 	/* record when the snapshot was created in key.offset */
1113a22285a6SYan, Zheng 	key.offset = trans->transid;
1114a22285a6SYan, Zheng 	ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
1115925baeddSChris Mason 	btrfs_tree_unlock(tmp);
11163063d29fSChris Mason 	free_extent_buffer(tmp);
111749b25e05SJeff Mahoney 	if (ret)
11186fa9700eSMiao Xie 		goto abort_trans;
11190660b5afSChris Mason 
1120a22285a6SYan, Zheng 	/*
1121a22285a6SYan, Zheng 	 * insert root back/forward references
1122a22285a6SYan, Zheng 	 */
1123a22285a6SYan, Zheng 	ret = btrfs_add_root_ref(trans, tree_root, objectid,
1124a22285a6SYan, Zheng 				 parent_root->root_key.objectid,
112533345d01SLi Zefan 				 btrfs_ino(parent_inode), index,
1126a22285a6SYan, Zheng 				 dentry->d_name.name, dentry->d_name.len);
112749b25e05SJeff Mahoney 	if (ret)
11286fa9700eSMiao Xie 		goto abort_trans;
1129a22285a6SYan, Zheng 
1130a22285a6SYan, Zheng 	key.offset = (u64)-1;
1131a22285a6SYan, Zheng 	pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
113279787eaaSJeff Mahoney 	if (IS_ERR(pending->snap)) {
113379787eaaSJeff Mahoney 		ret = PTR_ERR(pending->snap);
113449b25e05SJeff Mahoney 		goto abort_trans;
113579787eaaSJeff Mahoney 	}
1136d68fc57bSYan, Zheng 
113749b25e05SJeff Mahoney 	ret = btrfs_reloc_post_snapshot(trans, pending);
113849b25e05SJeff Mahoney 	if (ret)
113949b25e05SJeff Mahoney 		goto abort_trans;
1140361048f5SMiao Xie 
1141361048f5SMiao Xie 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1142361048f5SMiao Xie 	if (ret)
1143361048f5SMiao Xie 		goto abort_trans;
114442874b3dSMiao Xie 
114542874b3dSMiao Xie 	ret = btrfs_insert_dir_item(trans, parent_root,
114642874b3dSMiao Xie 				    dentry->d_name.name, dentry->d_name.len,
114742874b3dSMiao Xie 				    parent_inode, &key,
114842874b3dSMiao Xie 				    BTRFS_FT_DIR, index);
114942874b3dSMiao Xie 	/* We have check then name at the beginning, so it is impossible. */
115042874b3dSMiao Xie 	BUG_ON(ret == -EEXIST);
115142874b3dSMiao Xie 	if (ret)
115242874b3dSMiao Xie 		goto abort_trans;
115342874b3dSMiao Xie 
115442874b3dSMiao Xie 	btrfs_i_size_write(parent_inode, parent_inode->i_size +
115542874b3dSMiao Xie 					 dentry->d_name.len * 2);
115642874b3dSMiao Xie 	parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
115742874b3dSMiao Xie 	ret = btrfs_update_inode(trans, parent_root, parent_inode);
115842874b3dSMiao Xie 	if (ret)
115942874b3dSMiao Xie 		goto abort_trans;
11603063d29fSChris Mason fail:
11616fa9700eSMiao Xie 	dput(parent);
116298c9942aSLiu Bo 	trans->block_rsv = rsv;
11636fa9700eSMiao Xie no_free_objectid:
11646fa9700eSMiao Xie 	kfree(new_root_item);
11656fa9700eSMiao Xie root_item_alloc_fail:
116642874b3dSMiao Xie 	btrfs_free_path(path);
116742874b3dSMiao Xie path_alloc_fail:
1168a22285a6SYan, Zheng 	btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
116949b25e05SJeff Mahoney 	return ret;
117049b25e05SJeff Mahoney 
117149b25e05SJeff Mahoney abort_trans:
117249b25e05SJeff Mahoney 	btrfs_abort_transaction(trans, root, ret);
117349b25e05SJeff Mahoney 	goto fail;
11743063d29fSChris Mason }
11753063d29fSChris Mason 
1176d352ac68SChris Mason /*
1177d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
1178d352ac68SChris Mason  */
117980b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
11803063d29fSChris Mason 					     struct btrfs_fs_info *fs_info)
11813063d29fSChris Mason {
11823063d29fSChris Mason 	struct btrfs_pending_snapshot *pending;
11833063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
11843de4586cSChris Mason 
1185fe66a05aSChris Mason 	list_for_each_entry(pending, head, list)
1186fe66a05aSChris Mason 		create_pending_snapshot(trans, fs_info, pending);
11873de4586cSChris Mason 	return 0;
11883de4586cSChris Mason }
11893de4586cSChris Mason 
11905d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root)
11915d4f98a2SYan Zheng {
11925d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
11935d4f98a2SYan Zheng 	struct btrfs_super_block *super;
11945d4f98a2SYan Zheng 
11956c41761fSDavid Sterba 	super = root->fs_info->super_copy;
11965d4f98a2SYan Zheng 
11975d4f98a2SYan Zheng 	root_item = &root->fs_info->chunk_root->root_item;
11985d4f98a2SYan Zheng 	super->chunk_root = root_item->bytenr;
11995d4f98a2SYan Zheng 	super->chunk_root_generation = root_item->generation;
12005d4f98a2SYan Zheng 	super->chunk_root_level = root_item->level;
12015d4f98a2SYan Zheng 
12025d4f98a2SYan Zheng 	root_item = &root->fs_info->tree_root->root_item;
12035d4f98a2SYan Zheng 	super->root = root_item->bytenr;
12045d4f98a2SYan Zheng 	super->generation = root_item->generation;
12055d4f98a2SYan Zheng 	super->root_level = root_item->level;
120673bc1876SJosef Bacik 	if (btrfs_test_opt(root, SPACE_CACHE))
12070af3d00bSJosef Bacik 		super->cache_generation = root_item->generation;
12085d4f98a2SYan Zheng }
12095d4f98a2SYan Zheng 
1210f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1211f36f3042SChris Mason {
1212f36f3042SChris Mason 	int ret = 0;
1213a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
1214f36f3042SChris Mason 	if (info->running_transaction)
1215f36f3042SChris Mason 		ret = info->running_transaction->in_commit;
1216a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
1217f36f3042SChris Mason 	return ret;
1218f36f3042SChris Mason }
1219f36f3042SChris Mason 
12208929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info)
12218929ecfaSYan, Zheng {
12228929ecfaSYan, Zheng 	int ret = 0;
1223a4abeea4SJosef Bacik 	spin_lock(&info->trans_lock);
12248929ecfaSYan, Zheng 	if (info->running_transaction)
12258929ecfaSYan, Zheng 		ret = info->running_transaction->blocked;
1226a4abeea4SJosef Bacik 	spin_unlock(&info->trans_lock);
12278929ecfaSYan, Zheng 	return ret;
12288929ecfaSYan, Zheng }
12298929ecfaSYan, Zheng 
1230bb9c12c9SSage Weil /*
1231bb9c12c9SSage Weil  * wait for the current transaction commit to start and block subsequent
1232bb9c12c9SSage Weil  * transaction joins
1233bb9c12c9SSage Weil  */
1234bb9c12c9SSage Weil static void wait_current_trans_commit_start(struct btrfs_root *root,
1235bb9c12c9SSage Weil 					    struct btrfs_transaction *trans)
1236bb9c12c9SSage Weil {
123772d63ed6SLi Zefan 	wait_event(root->fs_info->transaction_blocked_wait, trans->in_commit);
1238bb9c12c9SSage Weil }
1239bb9c12c9SSage Weil 
1240bb9c12c9SSage Weil /*
1241bb9c12c9SSage Weil  * wait for the current transaction to start and then become unblocked.
1242bb9c12c9SSage Weil  * caller holds ref.
1243bb9c12c9SSage Weil  */
1244bb9c12c9SSage Weil static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1245bb9c12c9SSage Weil 					 struct btrfs_transaction *trans)
1246bb9c12c9SSage Weil {
124772d63ed6SLi Zefan 	wait_event(root->fs_info->transaction_wait,
124872d63ed6SLi Zefan 		   trans->commit_done || (trans->in_commit && !trans->blocked));
1249bb9c12c9SSage Weil }
1250bb9c12c9SSage Weil 
1251bb9c12c9SSage Weil /*
1252bb9c12c9SSage Weil  * commit transactions asynchronously. once btrfs_commit_transaction_async
1253bb9c12c9SSage Weil  * returns, any subsequent transaction will not be allowed to join.
1254bb9c12c9SSage Weil  */
1255bb9c12c9SSage Weil struct btrfs_async_commit {
1256bb9c12c9SSage Weil 	struct btrfs_trans_handle *newtrans;
1257bb9c12c9SSage Weil 	struct btrfs_root *root;
1258bb9c12c9SSage Weil 	struct delayed_work work;
1259bb9c12c9SSage Weil };
1260bb9c12c9SSage Weil 
1261bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work)
1262bb9c12c9SSage Weil {
1263bb9c12c9SSage Weil 	struct btrfs_async_commit *ac =
1264bb9c12c9SSage Weil 		container_of(work, struct btrfs_async_commit, work.work);
1265bb9c12c9SSage Weil 
12666fc4e354SSage Weil 	/*
12676fc4e354SSage Weil 	 * We've got freeze protection passed with the transaction.
12686fc4e354SSage Weil 	 * Tell lockdep about it.
12696fc4e354SSage Weil 	 */
12706fc4e354SSage Weil 	rwsem_acquire_read(
12716fc4e354SSage Weil 		&ac->root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1],
12726fc4e354SSage Weil 		0, 1, _THIS_IP_);
12736fc4e354SSage Weil 
1274e209db7aSSage Weil 	current->journal_info = ac->newtrans;
1275e209db7aSSage Weil 
1276bb9c12c9SSage Weil 	btrfs_commit_transaction(ac->newtrans, ac->root);
1277bb9c12c9SSage Weil 	kfree(ac);
1278bb9c12c9SSage Weil }
1279bb9c12c9SSage Weil 
1280bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1281bb9c12c9SSage Weil 				   struct btrfs_root *root,
1282bb9c12c9SSage Weil 				   int wait_for_unblock)
1283bb9c12c9SSage Weil {
1284bb9c12c9SSage Weil 	struct btrfs_async_commit *ac;
1285bb9c12c9SSage Weil 	struct btrfs_transaction *cur_trans;
1286bb9c12c9SSage Weil 
1287bb9c12c9SSage Weil 	ac = kmalloc(sizeof(*ac), GFP_NOFS);
1288db5b493aSTsutomu Itoh 	if (!ac)
1289db5b493aSTsutomu Itoh 		return -ENOMEM;
1290bb9c12c9SSage Weil 
1291bb9c12c9SSage Weil 	INIT_DELAYED_WORK(&ac->work, do_async_commit);
1292bb9c12c9SSage Weil 	ac->root = root;
12937a7eaa40SJosef Bacik 	ac->newtrans = btrfs_join_transaction(root);
12943612b495STsutomu Itoh 	if (IS_ERR(ac->newtrans)) {
12953612b495STsutomu Itoh 		int err = PTR_ERR(ac->newtrans);
12963612b495STsutomu Itoh 		kfree(ac);
12973612b495STsutomu Itoh 		return err;
12983612b495STsutomu Itoh 	}
1299bb9c12c9SSage Weil 
1300bb9c12c9SSage Weil 	/* take transaction reference */
1301bb9c12c9SSage Weil 	cur_trans = trans->transaction;
130213c5a93eSJosef Bacik 	atomic_inc(&cur_trans->use_count);
1303bb9c12c9SSage Weil 
1304bb9c12c9SSage Weil 	btrfs_end_transaction(trans, root);
13056fc4e354SSage Weil 
13066fc4e354SSage Weil 	/*
13076fc4e354SSage Weil 	 * Tell lockdep we've released the freeze rwsem, since the
13086fc4e354SSage Weil 	 * async commit thread will be the one to unlock it.
13096fc4e354SSage Weil 	 */
13106fc4e354SSage Weil 	rwsem_release(&root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1],
13116fc4e354SSage Weil 		      1, _THIS_IP_);
13126fc4e354SSage Weil 
1313bb9c12c9SSage Weil 	schedule_delayed_work(&ac->work, 0);
1314bb9c12c9SSage Weil 
1315bb9c12c9SSage Weil 	/* wait for transaction to start and unblock */
1316bb9c12c9SSage Weil 	if (wait_for_unblock)
1317bb9c12c9SSage Weil 		wait_current_trans_commit_start_and_unblock(root, cur_trans);
1318bb9c12c9SSage Weil 	else
1319bb9c12c9SSage Weil 		wait_current_trans_commit_start(root, cur_trans);
1320bb9c12c9SSage Weil 
132138e88054SSage Weil 	if (current->journal_info == trans)
132238e88054SSage Weil 		current->journal_info = NULL;
132338e88054SSage Weil 
132438e88054SSage Weil 	put_transaction(cur_trans);
1325bb9c12c9SSage Weil 	return 0;
1326bb9c12c9SSage Weil }
1327bb9c12c9SSage Weil 
132849b25e05SJeff Mahoney 
132949b25e05SJeff Mahoney static void cleanup_transaction(struct btrfs_trans_handle *trans,
13307b8b92afSJosef Bacik 				struct btrfs_root *root, int err)
133149b25e05SJeff Mahoney {
133249b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
133349b25e05SJeff Mahoney 
133449b25e05SJeff Mahoney 	WARN_ON(trans->use_count > 1);
133549b25e05SJeff Mahoney 
13367b8b92afSJosef Bacik 	btrfs_abort_transaction(trans, root, err);
13377b8b92afSJosef Bacik 
133849b25e05SJeff Mahoney 	spin_lock(&root->fs_info->trans_lock);
133949b25e05SJeff Mahoney 	list_del_init(&cur_trans->list);
1340d7096fc3SJosef Bacik 	if (cur_trans == root->fs_info->running_transaction) {
1341d7096fc3SJosef Bacik 		root->fs_info->running_transaction = NULL;
1342d7096fc3SJosef Bacik 		root->fs_info->trans_no_join = 0;
1343d7096fc3SJosef Bacik 	}
134449b25e05SJeff Mahoney 	spin_unlock(&root->fs_info->trans_lock);
134549b25e05SJeff Mahoney 
134649b25e05SJeff Mahoney 	btrfs_cleanup_one_transaction(trans->transaction, root);
134749b25e05SJeff Mahoney 
134849b25e05SJeff Mahoney 	put_transaction(cur_trans);
134949b25e05SJeff Mahoney 	put_transaction(cur_trans);
135049b25e05SJeff Mahoney 
135149b25e05SJeff Mahoney 	trace_btrfs_transaction_commit(root);
135249b25e05SJeff Mahoney 
135349b25e05SJeff Mahoney 	btrfs_scrub_continue(root);
135449b25e05SJeff Mahoney 
135549b25e05SJeff Mahoney 	if (current->journal_info == trans)
135649b25e05SJeff Mahoney 		current->journal_info = NULL;
135749b25e05SJeff Mahoney 
135849b25e05SJeff Mahoney 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
135949b25e05SJeff Mahoney }
136049b25e05SJeff Mahoney 
1361bb9c12c9SSage Weil /*
1362bb9c12c9SSage Weil  * btrfs_transaction state sequence:
1363bb9c12c9SSage Weil  *    in_commit = 0, blocked = 0  (initial)
1364bb9c12c9SSage Weil  *    in_commit = 1, blocked = 1
1365bb9c12c9SSage Weil  *    blocked = 0
1366bb9c12c9SSage Weil  *    commit_done = 1
1367bb9c12c9SSage Weil  */
136879154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
136979154b1bSChris Mason 			     struct btrfs_root *root)
137079154b1bSChris Mason {
137115ee9bc7SJosef Bacik 	unsigned long joined = 0;
137249b25e05SJeff Mahoney 	struct btrfs_transaction *cur_trans = trans->transaction;
13738fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
137479154b1bSChris Mason 	DEFINE_WAIT(wait);
137549b25e05SJeff Mahoney 	int ret = -EIO;
137689573b9cSChris Mason 	int should_grow = 0;
137789573b9cSChris Mason 	unsigned long now = get_seconds();
1378dccae999SSage Weil 	int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
137979154b1bSChris Mason 
13805a3f23d5SChris Mason 	btrfs_run_ordered_operations(root, 0);
13815a3f23d5SChris Mason 
138249b25e05SJeff Mahoney 	if (cur_trans->aborted)
138349b25e05SJeff Mahoney 		goto cleanup_transaction;
138449b25e05SJeff Mahoney 
138556bec294SChris Mason 	/* make a pass through all the delayed refs we have so far
138656bec294SChris Mason 	 * any runnings procs may add more while we are here
138756bec294SChris Mason 	 */
138856bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, 0);
138949b25e05SJeff Mahoney 	if (ret)
139049b25e05SJeff Mahoney 		goto cleanup_transaction;
139156bec294SChris Mason 
13920e721106SJosef Bacik 	btrfs_trans_release_metadata(trans, root);
13930e721106SJosef Bacik 	trans->block_rsv = NULL;
13940e721106SJosef Bacik 
1395b7ec40d7SChris Mason 	cur_trans = trans->transaction;
139649b25e05SJeff Mahoney 
139756bec294SChris Mason 	/*
139856bec294SChris Mason 	 * set the flushing flag so procs in this transaction have to
139956bec294SChris Mason 	 * start sending their work down.
140056bec294SChris Mason 	 */
1401b7ec40d7SChris Mason 	cur_trans->delayed_refs.flushing = 1;
140256bec294SChris Mason 
1403c3e69d58SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, 0);
140449b25e05SJeff Mahoney 	if (ret)
140549b25e05SJeff Mahoney 		goto cleanup_transaction;
140656bec294SChris Mason 
1407a4abeea4SJosef Bacik 	spin_lock(&cur_trans->commit_lock);
1408b7ec40d7SChris Mason 	if (cur_trans->in_commit) {
1409a4abeea4SJosef Bacik 		spin_unlock(&cur_trans->commit_lock);
141013c5a93eSJosef Bacik 		atomic_inc(&cur_trans->use_count);
141149b25e05SJeff Mahoney 		ret = btrfs_end_transaction(trans, root);
1412ccd467d6SChris Mason 
1413b9c8300cSLi Zefan 		wait_for_commit(root, cur_trans);
141415ee9bc7SJosef Bacik 
141579154b1bSChris Mason 		put_transaction(cur_trans);
141615ee9bc7SJosef Bacik 
141749b25e05SJeff Mahoney 		return ret;
141879154b1bSChris Mason 	}
14194313b399SChris Mason 
14202c90e5d6SChris Mason 	trans->transaction->in_commit = 1;
1421f9295749SChris Mason 	trans->transaction->blocked = 1;
1422a4abeea4SJosef Bacik 	spin_unlock(&cur_trans->commit_lock);
1423bb9c12c9SSage Weil 	wake_up(&root->fs_info->transaction_blocked_wait);
1424bb9c12c9SSage Weil 
1425a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
1426ccd467d6SChris Mason 	if (cur_trans->list.prev != &root->fs_info->trans_list) {
1427ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
1428ccd467d6SChris Mason 					struct btrfs_transaction, list);
1429ccd467d6SChris Mason 		if (!prev_trans->commit_done) {
143013c5a93eSJosef Bacik 			atomic_inc(&prev_trans->use_count);
1431a4abeea4SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
1432ccd467d6SChris Mason 
1433ccd467d6SChris Mason 			wait_for_commit(root, prev_trans);
1434ccd467d6SChris Mason 
143515ee9bc7SJosef Bacik 			put_transaction(prev_trans);
1436a4abeea4SJosef Bacik 		} else {
1437a4abeea4SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
1438ccd467d6SChris Mason 		}
1439a4abeea4SJosef Bacik 	} else {
1440a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
1441ccd467d6SChris Mason 	}
144215ee9bc7SJosef Bacik 
1443e39e64acSChris Mason 	if (!btrfs_test_opt(root, SSD) &&
1444e39e64acSChris Mason 	    (now < cur_trans->start_time || now - cur_trans->start_time < 1))
144589573b9cSChris Mason 		should_grow = 1;
144689573b9cSChris Mason 
144715ee9bc7SJosef Bacik 	do {
14487ea394f1SYan Zheng 		int snap_pending = 0;
1449a4abeea4SJosef Bacik 
145015ee9bc7SJosef Bacik 		joined = cur_trans->num_joined;
14517ea394f1SYan Zheng 		if (!list_empty(&trans->transaction->pending_snapshots))
14527ea394f1SYan Zheng 			snap_pending = 1;
14537ea394f1SYan Zheng 
14542c90e5d6SChris Mason 		WARN_ON(cur_trans != trans->transaction);
145515ee9bc7SJosef Bacik 
14560bdb1db2SSage Weil 		if (flush_on_commit || snap_pending) {
145724bbcf04SYan, Zheng 			btrfs_start_delalloc_inodes(root, 1);
1458143bede5SJeff Mahoney 			btrfs_wait_ordered_extents(root, 0, 1);
14597ea394f1SYan Zheng 		}
14607ea394f1SYan Zheng 
146116cdcec7SMiao Xie 		ret = btrfs_run_delayed_items(trans, root);
146249b25e05SJeff Mahoney 		if (ret)
146349b25e05SJeff Mahoney 			goto cleanup_transaction;
146416cdcec7SMiao Xie 
14655a3f23d5SChris Mason 		/*
1466edf39272SJan Schmidt 		 * running the delayed items may have added new refs. account
1467edf39272SJan Schmidt 		 * them now so that they hinder processing of more delayed refs
1468edf39272SJan Schmidt 		 * as little as possible.
1469edf39272SJan Schmidt 		 */
1470edf39272SJan Schmidt 		btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
1471edf39272SJan Schmidt 
1472edf39272SJan Schmidt 		/*
14735a3f23d5SChris Mason 		 * rename don't use btrfs_join_transaction, so, once we
14745a3f23d5SChris Mason 		 * set the transaction to blocked above, we aren't going
14755a3f23d5SChris Mason 		 * to get any new ordered operations.  We can safely run
14765a3f23d5SChris Mason 		 * it here and no for sure that nothing new will be added
14775a3f23d5SChris Mason 		 * to the list
14785a3f23d5SChris Mason 		 */
14795a3f23d5SChris Mason 		btrfs_run_ordered_operations(root, 1);
14805a3f23d5SChris Mason 
1481ed3b3d31SChris Mason 		prepare_to_wait(&cur_trans->writer_wait, &wait,
1482ed3b3d31SChris Mason 				TASK_UNINTERRUPTIBLE);
1483ed3b3d31SChris Mason 
148413c5a93eSJosef Bacik 		if (atomic_read(&cur_trans->num_writers) > 1)
148599d16cbcSSage Weil 			schedule_timeout(MAX_SCHEDULE_TIMEOUT);
148699d16cbcSSage Weil 		else if (should_grow)
148799d16cbcSSage Weil 			schedule_timeout(1);
148815ee9bc7SJosef Bacik 
148915ee9bc7SJosef Bacik 		finish_wait(&cur_trans->writer_wait, &wait);
1490ed0ca140SJosef Bacik 	} while (atomic_read(&cur_trans->num_writers) > 1 ||
1491ed0ca140SJosef Bacik 		 (should_grow && cur_trans->num_joined != joined));
1492ed0ca140SJosef Bacik 
1493ed0ca140SJosef Bacik 	/*
1494ed0ca140SJosef Bacik 	 * Ok now we need to make sure to block out any other joins while we
1495ed0ca140SJosef Bacik 	 * commit the transaction.  We could have started a join before setting
1496ed0ca140SJosef Bacik 	 * no_join so make sure to wait for num_writers to == 1 again.
1497ed0ca140SJosef Bacik 	 */
1498a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
1499a4abeea4SJosef Bacik 	root->fs_info->trans_no_join = 1;
1500a4abeea4SJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
1501ed0ca140SJosef Bacik 	wait_event(cur_trans->writer_wait,
1502ed0ca140SJosef Bacik 		   atomic_read(&cur_trans->num_writers) == 1);
150315ee9bc7SJosef Bacik 
15047585717fSChris Mason 	/*
15057585717fSChris Mason 	 * the reloc mutex makes sure that we stop
15067585717fSChris Mason 	 * the balancing code from coming in and moving
15077585717fSChris Mason 	 * extents around in the middle of the commit
15087585717fSChris Mason 	 */
15097585717fSChris Mason 	mutex_lock(&root->fs_info->reloc_mutex);
15107585717fSChris Mason 
151142874b3dSMiao Xie 	/*
151242874b3dSMiao Xie 	 * We needn't worry about the delayed items because we will
151342874b3dSMiao Xie 	 * deal with them in create_pending_snapshot(), which is the
151442874b3dSMiao Xie 	 * core function of the snapshot creation.
151542874b3dSMiao Xie 	 */
151642874b3dSMiao Xie 	ret = create_pending_snapshots(trans, root->fs_info);
151749b25e05SJeff Mahoney 	if (ret) {
151849b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->reloc_mutex);
151949b25e05SJeff Mahoney 		goto cleanup_transaction;
152049b25e05SJeff Mahoney 	}
15213063d29fSChris Mason 
152242874b3dSMiao Xie 	/*
152342874b3dSMiao Xie 	 * We insert the dir indexes of the snapshots and update the inode
152442874b3dSMiao Xie 	 * of the snapshots' parents after the snapshot creation, so there
152542874b3dSMiao Xie 	 * are some delayed items which are not dealt with. Now deal with
152642874b3dSMiao Xie 	 * them.
152742874b3dSMiao Xie 	 *
152842874b3dSMiao Xie 	 * We needn't worry that this operation will corrupt the snapshots,
152942874b3dSMiao Xie 	 * because all the tree which are snapshoted will be forced to COW
153042874b3dSMiao Xie 	 * the nodes and leaves.
153142874b3dSMiao Xie 	 */
153242874b3dSMiao Xie 	ret = btrfs_run_delayed_items(trans, root);
153349b25e05SJeff Mahoney 	if (ret) {
153449b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->reloc_mutex);
153549b25e05SJeff Mahoney 		goto cleanup_transaction;
153649b25e05SJeff Mahoney 	}
153716cdcec7SMiao Xie 
153856bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
153949b25e05SJeff Mahoney 	if (ret) {
154049b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->reloc_mutex);
154149b25e05SJeff Mahoney 		goto cleanup_transaction;
154249b25e05SJeff Mahoney 	}
154356bec294SChris Mason 
1544e999376fSChris Mason 	/*
1545e999376fSChris Mason 	 * make sure none of the code above managed to slip in a
1546e999376fSChris Mason 	 * delayed item
1547e999376fSChris Mason 	 */
1548e999376fSChris Mason 	btrfs_assert_delayed_root_empty(root);
1549e999376fSChris Mason 
15502c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
1551dc17ff8fSChris Mason 
1552a2de733cSArne Jansen 	btrfs_scrub_pause(root);
1553e02119d5SChris Mason 	/* btrfs_commit_tree_roots is responsible for getting the
1554e02119d5SChris Mason 	 * various roots consistent with each other.  Every pointer
1555e02119d5SChris Mason 	 * in the tree of tree roots has to point to the most up to date
1556e02119d5SChris Mason 	 * root for every subvolume and other tree.  So, we have to keep
1557e02119d5SChris Mason 	 * the tree logging code from jumping in and changing any
1558e02119d5SChris Mason 	 * of the trees.
1559e02119d5SChris Mason 	 *
1560e02119d5SChris Mason 	 * At this point in the commit, there can't be any tree-log
1561e02119d5SChris Mason 	 * writers, but a little lower down we drop the trans mutex
1562e02119d5SChris Mason 	 * and let new people in.  By holding the tree_log_mutex
1563e02119d5SChris Mason 	 * from now until after the super is written, we avoid races
1564e02119d5SChris Mason 	 * with the tree-log code.
1565e02119d5SChris Mason 	 */
1566e02119d5SChris Mason 	mutex_lock(&root->fs_info->tree_log_mutex);
15671a40e23bSZheng Yan 
15685d4f98a2SYan Zheng 	ret = commit_fs_roots(trans, root);
156949b25e05SJeff Mahoney 	if (ret) {
157049b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->tree_log_mutex);
1571871383beSDavid Sterba 		mutex_unlock(&root->fs_info->reloc_mutex);
157249b25e05SJeff Mahoney 		goto cleanup_transaction;
157349b25e05SJeff Mahoney 	}
157454aa1f4dSChris Mason 
15755d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
1576e02119d5SChris Mason 	 * safe to free the root of tree log roots
1577e02119d5SChris Mason 	 */
1578e02119d5SChris Mason 	btrfs_free_log_root_tree(trans, root->fs_info);
1579e02119d5SChris Mason 
15805d4f98a2SYan Zheng 	ret = commit_cowonly_roots(trans, root);
158149b25e05SJeff Mahoney 	if (ret) {
158249b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->tree_log_mutex);
1583871383beSDavid Sterba 		mutex_unlock(&root->fs_info->reloc_mutex);
158449b25e05SJeff Mahoney 		goto cleanup_transaction;
158549b25e05SJeff Mahoney 	}
158654aa1f4dSChris Mason 
158711833d66SYan Zheng 	btrfs_prepare_extent_commit(trans, root);
158811833d66SYan Zheng 
158978fae27eSChris Mason 	cur_trans = root->fs_info->running_transaction;
15905f39d397SChris Mason 
15915d4f98a2SYan Zheng 	btrfs_set_root_node(&root->fs_info->tree_root->root_item,
15925d4f98a2SYan Zheng 			    root->fs_info->tree_root->node);
1593817d52f8SJosef Bacik 	switch_commit_root(root->fs_info->tree_root);
15945d4f98a2SYan Zheng 
15955d4f98a2SYan Zheng 	btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
15965d4f98a2SYan Zheng 			    root->fs_info->chunk_root->node);
1597817d52f8SJosef Bacik 	switch_commit_root(root->fs_info->chunk_root);
15985d4f98a2SYan Zheng 
1599edf39272SJan Schmidt 	assert_qgroups_uptodate(trans);
16005d4f98a2SYan Zheng 	update_super_roots(root);
1601e02119d5SChris Mason 
1602e02119d5SChris Mason 	if (!root->fs_info->log_root_recovering) {
16036c41761fSDavid Sterba 		btrfs_set_super_log_root(root->fs_info->super_copy, 0);
16046c41761fSDavid Sterba 		btrfs_set_super_log_root_level(root->fs_info->super_copy, 0);
1605e02119d5SChris Mason 	}
1606e02119d5SChris Mason 
16076c41761fSDavid Sterba 	memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy,
16086c41761fSDavid Sterba 	       sizeof(*root->fs_info->super_copy));
1609ccd467d6SChris Mason 
1610f9295749SChris Mason 	trans->transaction->blocked = 0;
1611a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
1612a4abeea4SJosef Bacik 	root->fs_info->running_transaction = NULL;
1613a4abeea4SJosef Bacik 	root->fs_info->trans_no_join = 0;
1614a4abeea4SJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
16157585717fSChris Mason 	mutex_unlock(&root->fs_info->reloc_mutex);
1616b7ec40d7SChris Mason 
1617f9295749SChris Mason 	wake_up(&root->fs_info->transaction_wait);
1618e6dcd2dcSChris Mason 
161979154b1bSChris Mason 	ret = btrfs_write_and_wait_transaction(trans, root);
162049b25e05SJeff Mahoney 	if (ret) {
162149b25e05SJeff Mahoney 		btrfs_error(root->fs_info, ret,
162249b25e05SJeff Mahoney 			    "Error while writing out transaction.");
162349b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->tree_log_mutex);
162449b25e05SJeff Mahoney 		goto cleanup_transaction;
162549b25e05SJeff Mahoney 	}
162649b25e05SJeff Mahoney 
162749b25e05SJeff Mahoney 	ret = write_ctree_super(trans, root, 0);
162849b25e05SJeff Mahoney 	if (ret) {
162949b25e05SJeff Mahoney 		mutex_unlock(&root->fs_info->tree_log_mutex);
163049b25e05SJeff Mahoney 		goto cleanup_transaction;
163149b25e05SJeff Mahoney 	}
16324313b399SChris Mason 
1633e02119d5SChris Mason 	/*
1634e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
1635e02119d5SChris Mason 	 * to go about their business
1636e02119d5SChris Mason 	 */
1637e02119d5SChris Mason 	mutex_unlock(&root->fs_info->tree_log_mutex);
1638e02119d5SChris Mason 
163911833d66SYan Zheng 	btrfs_finish_extent_commit(trans, root);
16404313b399SChris Mason 
16412c90e5d6SChris Mason 	cur_trans->commit_done = 1;
1642b7ec40d7SChris Mason 
164315ee9bc7SJosef Bacik 	root->fs_info->last_trans_committed = cur_trans->transid;
1644817d52f8SJosef Bacik 
16452c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
16463de4586cSChris Mason 
1647a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
164813c5a93eSJosef Bacik 	list_del_init(&cur_trans->list);
1649a4abeea4SJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
1650a4abeea4SJosef Bacik 
165179154b1bSChris Mason 	put_transaction(cur_trans);
165278fae27eSChris Mason 	put_transaction(cur_trans);
165358176a96SJosef Bacik 
1654b2b5ef5cSJan Kara 	sb_end_intwrite(root->fs_info->sb);
1655b2b5ef5cSJan Kara 
16561abe9b8aSliubo 	trace_btrfs_transaction_commit(root);
16571abe9b8aSliubo 
1658a2de733cSArne Jansen 	btrfs_scrub_continue(root);
1659a2de733cSArne Jansen 
16609ed74f2dSJosef Bacik 	if (current->journal_info == trans)
16619ed74f2dSJosef Bacik 		current->journal_info = NULL;
16629ed74f2dSJosef Bacik 
16632c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
166424bbcf04SYan, Zheng 
166524bbcf04SYan, Zheng 	if (current != root->fs_info->transaction_kthread)
166624bbcf04SYan, Zheng 		btrfs_run_delayed_iputs(root);
166724bbcf04SYan, Zheng 
166879154b1bSChris Mason 	return ret;
166949b25e05SJeff Mahoney 
167049b25e05SJeff Mahoney cleanup_transaction:
16710e721106SJosef Bacik 	btrfs_trans_release_metadata(trans, root);
16720e721106SJosef Bacik 	trans->block_rsv = NULL;
167349b25e05SJeff Mahoney 	btrfs_printk(root->fs_info, "Skipping commit of aborted transaction.\n");
167449b25e05SJeff Mahoney //	WARN_ON(1);
167549b25e05SJeff Mahoney 	if (current->journal_info == trans)
167649b25e05SJeff Mahoney 		current->journal_info = NULL;
16777b8b92afSJosef Bacik 	cleanup_transaction(trans, root, ret);
167849b25e05SJeff Mahoney 
167949b25e05SJeff Mahoney 	return ret;
168079154b1bSChris Mason }
168179154b1bSChris Mason 
1682d352ac68SChris Mason /*
1683d352ac68SChris Mason  * interface function to delete all the snapshots we have scheduled for deletion
1684d352ac68SChris Mason  */
1685e9d0b13bSChris Mason int btrfs_clean_old_snapshots(struct btrfs_root *root)
1686e9d0b13bSChris Mason {
16875d4f98a2SYan Zheng 	LIST_HEAD(list);
16885d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
1689e9d0b13bSChris Mason 
1690a4abeea4SJosef Bacik 	spin_lock(&fs_info->trans_lock);
16915d4f98a2SYan Zheng 	list_splice_init(&fs_info->dead_roots, &list);
1692a4abeea4SJosef Bacik 	spin_unlock(&fs_info->trans_lock);
16935d4f98a2SYan Zheng 
16945d4f98a2SYan Zheng 	while (!list_empty(&list)) {
16952c536799SJeff Mahoney 		int ret;
16962c536799SJeff Mahoney 
16975d4f98a2SYan Zheng 		root = list_entry(list.next, struct btrfs_root, root_list);
169876dda93cSYan, Zheng 		list_del(&root->root_list);
169976dda93cSYan, Zheng 
170016cdcec7SMiao Xie 		btrfs_kill_all_delayed_nodes(root);
170116cdcec7SMiao Xie 
170276dda93cSYan, Zheng 		if (btrfs_header_backref_rev(root->node) <
170376dda93cSYan, Zheng 		    BTRFS_MIXED_BACKREF_REV)
17042c536799SJeff Mahoney 			ret = btrfs_drop_snapshot(root, NULL, 0, 0);
170576dda93cSYan, Zheng 		else
17062c536799SJeff Mahoney 			ret =btrfs_drop_snapshot(root, NULL, 1, 0);
17072c536799SJeff Mahoney 		BUG_ON(ret < 0);
1708e9d0b13bSChris Mason 	}
1709e9d0b13bSChris Mason 	return 0;
1710e9d0b13bSChris Mason }
1711