xref: /openbmc/linux/fs/btrfs/transaction.c (revision 9ed74f2d)
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>
2034088780SChris Mason #include <linux/sched.h>
21d3c2fdcfSChris Mason #include <linux/writeback.h>
225f39d397SChris Mason #include <linux/pagemap.h>
235f2cc086SChris Mason #include <linux/blkdev.h>
2479154b1bSChris Mason #include "ctree.h"
2579154b1bSChris Mason #include "disk-io.h"
2679154b1bSChris Mason #include "transaction.h"
27925baeddSChris Mason #include "locking.h"
28e02119d5SChris Mason #include "tree-log.h"
2979154b1bSChris Mason 
300f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0
310f7d52f4SChris Mason 
3280b6794dSChris Mason static noinline void put_transaction(struct btrfs_transaction *transaction)
3379154b1bSChris Mason {
342c90e5d6SChris Mason 	WARN_ON(transaction->use_count == 0);
3579154b1bSChris Mason 	transaction->use_count--;
3678fae27eSChris Mason 	if (transaction->use_count == 0) {
378fd17795SChris Mason 		list_del_init(&transaction->list);
382c90e5d6SChris Mason 		memset(transaction, 0, sizeof(*transaction));
392c90e5d6SChris Mason 		kmem_cache_free(btrfs_transaction_cachep, transaction);
4079154b1bSChris Mason 	}
4178fae27eSChris Mason }
4279154b1bSChris Mason 
43817d52f8SJosef Bacik static noinline void switch_commit_root(struct btrfs_root *root)
44817d52f8SJosef Bacik {
45817d52f8SJosef Bacik 	free_extent_buffer(root->commit_root);
46817d52f8SJosef Bacik 	root->commit_root = btrfs_root_node(root);
47817d52f8SJosef Bacik }
48817d52f8SJosef Bacik 
49d352ac68SChris Mason /*
50d352ac68SChris Mason  * either allocate a new transaction or hop into the existing one
51d352ac68SChris Mason  */
5280b6794dSChris Mason static noinline int join_transaction(struct btrfs_root *root)
5379154b1bSChris Mason {
5479154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
5579154b1bSChris Mason 	cur_trans = root->fs_info->running_transaction;
5679154b1bSChris Mason 	if (!cur_trans) {
572c90e5d6SChris Mason 		cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
582c90e5d6SChris Mason 					     GFP_NOFS);
5979154b1bSChris Mason 		BUG_ON(!cur_trans);
600f7d52f4SChris Mason 		root->fs_info->generation++;
6115ee9bc7SJosef Bacik 		cur_trans->num_writers = 1;
6215ee9bc7SJosef Bacik 		cur_trans->num_joined = 0;
630f7d52f4SChris Mason 		cur_trans->transid = root->fs_info->generation;
6479154b1bSChris Mason 		init_waitqueue_head(&cur_trans->writer_wait);
6579154b1bSChris Mason 		init_waitqueue_head(&cur_trans->commit_wait);
6679154b1bSChris Mason 		cur_trans->in_commit = 0;
67f9295749SChris Mason 		cur_trans->blocked = 0;
68d5719762SChris Mason 		cur_trans->use_count = 1;
6979154b1bSChris Mason 		cur_trans->commit_done = 0;
7008607c1bSChris Mason 		cur_trans->start_time = get_seconds();
7156bec294SChris Mason 
7256bec294SChris Mason 		cur_trans->delayed_refs.root.rb_node = NULL;
7356bec294SChris Mason 		cur_trans->delayed_refs.num_entries = 0;
74c3e69d58SChris Mason 		cur_trans->delayed_refs.num_heads_ready = 0;
75c3e69d58SChris Mason 		cur_trans->delayed_refs.num_heads = 0;
7656bec294SChris Mason 		cur_trans->delayed_refs.flushing = 0;
77c3e69d58SChris Mason 		cur_trans->delayed_refs.run_delayed_start = 0;
7856bec294SChris Mason 		spin_lock_init(&cur_trans->delayed_refs.lock);
7956bec294SChris Mason 
803063d29fSChris Mason 		INIT_LIST_HEAD(&cur_trans->pending_snapshots);
818fd17795SChris Mason 		list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
82d1310b2eSChris Mason 		extent_io_tree_init(&cur_trans->dirty_pages,
835f39d397SChris Mason 				     root->fs_info->btree_inode->i_mapping,
845f39d397SChris Mason 				     GFP_NOFS);
8548ec2cf8SChris Mason 		spin_lock(&root->fs_info->new_trans_lock);
8648ec2cf8SChris Mason 		root->fs_info->running_transaction = cur_trans;
8748ec2cf8SChris Mason 		spin_unlock(&root->fs_info->new_trans_lock);
8815ee9bc7SJosef Bacik 	} else {
8979154b1bSChris Mason 		cur_trans->num_writers++;
9015ee9bc7SJosef Bacik 		cur_trans->num_joined++;
9115ee9bc7SJosef Bacik 	}
9215ee9bc7SJosef Bacik 
9379154b1bSChris Mason 	return 0;
9479154b1bSChris Mason }
9579154b1bSChris Mason 
96d352ac68SChris Mason /*
97d397712bSChris Mason  * this does all the record keeping required to make sure that a reference
98d397712bSChris Mason  * counted root is properly recorded in a given transaction.  This is required
99d397712bSChris Mason  * to make sure the old root from before we joined the transaction is deleted
100d397712bSChris Mason  * when the transaction commits
101d352ac68SChris Mason  */
1025d4f98a2SYan Zheng static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
1035d4f98a2SYan Zheng 					 struct btrfs_root *root)
1046702ed49SChris Mason {
1055d4f98a2SYan Zheng 	if (root->ref_cows && root->last_trans < trans->transid) {
1066702ed49SChris Mason 		WARN_ON(root == root->fs_info->extent_root);
1075d4f98a2SYan Zheng 		WARN_ON(root->commit_root != root->node);
1085d4f98a2SYan Zheng 
1096702ed49SChris Mason 		radix_tree_tag_set(&root->fs_info->fs_roots_radix,
1106702ed49SChris Mason 			   (unsigned long)root->root_key.objectid,
1116702ed49SChris Mason 			   BTRFS_ROOT_TRANS_TAG);
1125d4f98a2SYan Zheng 		root->last_trans = trans->transid;
1135d4f98a2SYan Zheng 		btrfs_init_reloc_root(trans, root);
1146702ed49SChris Mason 	}
1155d4f98a2SYan Zheng 	return 0;
1166702ed49SChris Mason }
1175d4f98a2SYan Zheng 
1185d4f98a2SYan Zheng int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
1195d4f98a2SYan Zheng 			       struct btrfs_root *root)
1205d4f98a2SYan Zheng {
1215d4f98a2SYan Zheng 	if (!root->ref_cows)
1225d4f98a2SYan Zheng 		return 0;
1235d4f98a2SYan Zheng 
1245d4f98a2SYan Zheng 	mutex_lock(&root->fs_info->trans_mutex);
1255d4f98a2SYan Zheng 	if (root->last_trans == trans->transid) {
1265d4f98a2SYan Zheng 		mutex_unlock(&root->fs_info->trans_mutex);
1275d4f98a2SYan Zheng 		return 0;
1285d4f98a2SYan Zheng 	}
1295d4f98a2SYan Zheng 
1305d4f98a2SYan Zheng 	record_root_in_trans(trans, root);
1315d4f98a2SYan Zheng 	mutex_unlock(&root->fs_info->trans_mutex);
1326702ed49SChris Mason 	return 0;
1336702ed49SChris Mason }
1346702ed49SChris Mason 
135d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked
136d352ac68SChris Mason  * when this is done, it is safe to start a new transaction, but the current
137d352ac68SChris Mason  * transaction might not be fully on disk.
138d352ac68SChris Mason  */
13937d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root)
14079154b1bSChris Mason {
141f9295749SChris Mason 	struct btrfs_transaction *cur_trans;
14279154b1bSChris Mason 
143f9295749SChris Mason 	cur_trans = root->fs_info->running_transaction;
14437d1aeeeSChris Mason 	if (cur_trans && cur_trans->blocked) {
145f9295749SChris Mason 		DEFINE_WAIT(wait);
146f9295749SChris Mason 		cur_trans->use_count++;
147f9295749SChris Mason 		while (1) {
148f9295749SChris Mason 			prepare_to_wait(&root->fs_info->transaction_wait, &wait,
149f9295749SChris Mason 					TASK_UNINTERRUPTIBLE);
150f9295749SChris Mason 			if (cur_trans->blocked) {
151f9295749SChris Mason 				mutex_unlock(&root->fs_info->trans_mutex);
152f9295749SChris Mason 				schedule();
153f9295749SChris Mason 				mutex_lock(&root->fs_info->trans_mutex);
154f9295749SChris Mason 				finish_wait(&root->fs_info->transaction_wait,
155f9295749SChris Mason 					    &wait);
156f9295749SChris Mason 			} else {
157f9295749SChris Mason 				finish_wait(&root->fs_info->transaction_wait,
158f9295749SChris Mason 					    &wait);
159f9295749SChris Mason 				break;
160f9295749SChris Mason 			}
161f9295749SChris Mason 		}
162f9295749SChris Mason 		put_transaction(cur_trans);
163f9295749SChris Mason 	}
16437d1aeeeSChris Mason }
16537d1aeeeSChris Mason 
166e02119d5SChris Mason static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
1679ca9ee09SSage Weil 					     int num_blocks, int wait)
16837d1aeeeSChris Mason {
16937d1aeeeSChris Mason 	struct btrfs_trans_handle *h =
17037d1aeeeSChris Mason 		kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
17137d1aeeeSChris Mason 	int ret;
17237d1aeeeSChris Mason 
17337d1aeeeSChris Mason 	mutex_lock(&root->fs_info->trans_mutex);
1744bef0848SChris Mason 	if (!root->fs_info->log_root_recovering &&
1754bef0848SChris Mason 	    ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
17637d1aeeeSChris Mason 		wait_current_trans(root);
17779154b1bSChris Mason 	ret = join_transaction(root);
17879154b1bSChris Mason 	BUG_ON(ret);
1790f7d52f4SChris Mason 
1806702ed49SChris Mason 	h->transid = root->fs_info->running_transaction->transid;
18179154b1bSChris Mason 	h->transaction = root->fs_info->running_transaction;
18279154b1bSChris Mason 	h->blocks_reserved = num_blocks;
18379154b1bSChris Mason 	h->blocks_used = 0;
184d2fb3437SYan Zheng 	h->block_group = 0;
18526b8003fSChris Mason 	h->alloc_exclude_nr = 0;
18626b8003fSChris Mason 	h->alloc_exclude_start = 0;
18756bec294SChris Mason 	h->delayed_ref_updates = 0;
188b7ec40d7SChris Mason 
1899ed74f2dSJosef Bacik 	if (!current->journal_info)
1909ed74f2dSJosef Bacik 		current->journal_info = h;
1919ed74f2dSJosef Bacik 
19279154b1bSChris Mason 	root->fs_info->running_transaction->use_count++;
1935d4f98a2SYan Zheng 	record_root_in_trans(h, root);
19479154b1bSChris Mason 	mutex_unlock(&root->fs_info->trans_mutex);
19579154b1bSChris Mason 	return h;
19679154b1bSChris Mason }
19779154b1bSChris Mason 
198f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
199f9295749SChris Mason 						   int num_blocks)
200f9295749SChris Mason {
2019ca9ee09SSage Weil 	return start_transaction(root, num_blocks, 1);
202f9295749SChris Mason }
203f9295749SChris Mason struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
204f9295749SChris Mason 						   int num_blocks)
205f9295749SChris Mason {
2069ca9ee09SSage Weil 	return start_transaction(root, num_blocks, 0);
207f9295749SChris Mason }
208f9295749SChris Mason 
2099ca9ee09SSage Weil struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
2109ca9ee09SSage Weil 							 int num_blocks)
2119ca9ee09SSage Weil {
2129ca9ee09SSage Weil 	return start_transaction(r, num_blocks, 2);
2139ca9ee09SSage Weil }
2149ca9ee09SSage Weil 
215d352ac68SChris Mason /* wait for a transaction commit to be fully complete */
21689ce8a63SChris Mason static noinline int wait_for_commit(struct btrfs_root *root,
21789ce8a63SChris Mason 				    struct btrfs_transaction *commit)
21889ce8a63SChris Mason {
21989ce8a63SChris Mason 	DEFINE_WAIT(wait);
22089ce8a63SChris Mason 	mutex_lock(&root->fs_info->trans_mutex);
22189ce8a63SChris Mason 	while (!commit->commit_done) {
22289ce8a63SChris Mason 		prepare_to_wait(&commit->commit_wait, &wait,
22389ce8a63SChris Mason 				TASK_UNINTERRUPTIBLE);
22489ce8a63SChris Mason 		if (commit->commit_done)
22589ce8a63SChris Mason 			break;
22689ce8a63SChris Mason 		mutex_unlock(&root->fs_info->trans_mutex);
22789ce8a63SChris Mason 		schedule();
22889ce8a63SChris Mason 		mutex_lock(&root->fs_info->trans_mutex);
22989ce8a63SChris Mason 	}
23089ce8a63SChris Mason 	mutex_unlock(&root->fs_info->trans_mutex);
23189ce8a63SChris Mason 	finish_wait(&commit->commit_wait, &wait);
23289ce8a63SChris Mason 	return 0;
23389ce8a63SChris Mason }
23489ce8a63SChris Mason 
2355d4f98a2SYan Zheng #if 0
236d352ac68SChris Mason /*
237d397712bSChris Mason  * rate limit against the drop_snapshot code.  This helps to slow down new
238d397712bSChris Mason  * operations if the drop_snapshot code isn't able to keep up.
239d352ac68SChris Mason  */
24037d1aeeeSChris Mason static void throttle_on_drops(struct btrfs_root *root)
241ab78c84dSChris Mason {
242ab78c84dSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
2432dd3e67bSChris Mason 	int harder_count = 0;
244ab78c84dSChris Mason 
2452dd3e67bSChris Mason harder:
246ab78c84dSChris Mason 	if (atomic_read(&info->throttles)) {
247ab78c84dSChris Mason 		DEFINE_WAIT(wait);
248ab78c84dSChris Mason 		int thr;
249ab78c84dSChris Mason 		thr = atomic_read(&info->throttle_gen);
250ab78c84dSChris Mason 
251ab78c84dSChris Mason 		do {
252ab78c84dSChris Mason 			prepare_to_wait(&info->transaction_throttle,
253ab78c84dSChris Mason 					&wait, TASK_UNINTERRUPTIBLE);
254ab78c84dSChris Mason 			if (!atomic_read(&info->throttles)) {
255ab78c84dSChris Mason 				finish_wait(&info->transaction_throttle, &wait);
256ab78c84dSChris Mason 				break;
257ab78c84dSChris Mason 			}
258ab78c84dSChris Mason 			schedule();
259ab78c84dSChris Mason 			finish_wait(&info->transaction_throttle, &wait);
260ab78c84dSChris Mason 		} while (thr == atomic_read(&info->throttle_gen));
2612dd3e67bSChris Mason 		harder_count++;
2622dd3e67bSChris Mason 
2632dd3e67bSChris Mason 		if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
2642dd3e67bSChris Mason 		    harder_count < 2)
2652dd3e67bSChris Mason 			goto harder;
2662dd3e67bSChris Mason 
2672dd3e67bSChris Mason 		if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
2682dd3e67bSChris Mason 		    harder_count < 10)
2692dd3e67bSChris Mason 			goto harder;
2702dd3e67bSChris Mason 
2712dd3e67bSChris Mason 		if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
2722dd3e67bSChris Mason 		    harder_count < 20)
2732dd3e67bSChris Mason 			goto harder;
274ab78c84dSChris Mason 	}
275ab78c84dSChris Mason }
2765d4f98a2SYan Zheng #endif
277ab78c84dSChris Mason 
27837d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root)
27937d1aeeeSChris Mason {
28037d1aeeeSChris Mason 	mutex_lock(&root->fs_info->trans_mutex);
2819ca9ee09SSage Weil 	if (!root->fs_info->open_ioctl_trans)
28237d1aeeeSChris Mason 		wait_current_trans(root);
28337d1aeeeSChris Mason 	mutex_unlock(&root->fs_info->trans_mutex);
28437d1aeeeSChris Mason }
28537d1aeeeSChris Mason 
28689ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
28789ce8a63SChris Mason 			  struct btrfs_root *root, int throttle)
28879154b1bSChris Mason {
28979154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
290ab78c84dSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
291c3e69d58SChris Mason 	int count = 0;
292d6e4a428SChris Mason 
293c3e69d58SChris Mason 	while (count < 4) {
294c3e69d58SChris Mason 		unsigned long cur = trans->delayed_ref_updates;
295c3e69d58SChris Mason 		trans->delayed_ref_updates = 0;
296c3e69d58SChris Mason 		if (cur &&
297c3e69d58SChris Mason 		    trans->transaction->delayed_refs.num_heads_ready > 64) {
298c3e69d58SChris Mason 			trans->delayed_ref_updates = 0;
299b7ec40d7SChris Mason 
300b7ec40d7SChris Mason 			/*
301b7ec40d7SChris Mason 			 * do a full flush if the transaction is trying
302b7ec40d7SChris Mason 			 * to close
303b7ec40d7SChris Mason 			 */
304b7ec40d7SChris Mason 			if (trans->transaction->delayed_refs.flushing)
305b7ec40d7SChris Mason 				cur = 0;
306c3e69d58SChris Mason 			btrfs_run_delayed_refs(trans, root, cur);
307c3e69d58SChris Mason 		} else {
308c3e69d58SChris Mason 			break;
309c3e69d58SChris Mason 		}
310c3e69d58SChris Mason 		count++;
31156bec294SChris Mason 	}
31256bec294SChris Mason 
313ab78c84dSChris Mason 	mutex_lock(&info->trans_mutex);
314ab78c84dSChris Mason 	cur_trans = info->running_transaction;
315ccd467d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
316d5719762SChris Mason 	WARN_ON(cur_trans->num_writers < 1);
317ccd467d6SChris Mason 	cur_trans->num_writers--;
31889ce8a63SChris Mason 
31979154b1bSChris Mason 	if (waitqueue_active(&cur_trans->writer_wait))
32079154b1bSChris Mason 		wake_up(&cur_trans->writer_wait);
32179154b1bSChris Mason 	put_transaction(cur_trans);
322ab78c84dSChris Mason 	mutex_unlock(&info->trans_mutex);
3239ed74f2dSJosef Bacik 
3249ed74f2dSJosef Bacik 	if (current->journal_info == trans)
3259ed74f2dSJosef Bacik 		current->journal_info = NULL;
326d6025579SChris Mason 	memset(trans, 0, sizeof(*trans));
3272c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
328ab78c84dSChris Mason 
32979154b1bSChris Mason 	return 0;
33079154b1bSChris Mason }
33179154b1bSChris Mason 
33289ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans,
33389ce8a63SChris Mason 			  struct btrfs_root *root)
33489ce8a63SChris Mason {
33589ce8a63SChris Mason 	return __btrfs_end_transaction(trans, root, 0);
33689ce8a63SChris Mason }
33789ce8a63SChris Mason 
33889ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
33989ce8a63SChris Mason 				   struct btrfs_root *root)
34089ce8a63SChris Mason {
34189ce8a63SChris Mason 	return __btrfs_end_transaction(trans, root, 1);
34289ce8a63SChris Mason }
34389ce8a63SChris Mason 
344d352ac68SChris Mason /*
345d352ac68SChris Mason  * when btree blocks are allocated, they have some corresponding bits set for
346d352ac68SChris Mason  * them in one of two extent_io trees.  This is used to make sure all of
347d352ac68SChris Mason  * those extents are on disk for transaction or log commit
348d352ac68SChris Mason  */
349d0c803c4SChris Mason int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
350d0c803c4SChris Mason 					struct extent_io_tree *dirty_pages)
35179154b1bSChris Mason {
3527c4452b9SChris Mason 	int ret;
353777e6bd7SChris Mason 	int err = 0;
3547c4452b9SChris Mason 	int werr = 0;
3557c4452b9SChris Mason 	struct page *page;
3567c4452b9SChris Mason 	struct inode *btree_inode = root->fs_info->btree_inode;
357777e6bd7SChris Mason 	u64 start = 0;
3585f39d397SChris Mason 	u64 end;
3595f39d397SChris Mason 	unsigned long index;
3607c4452b9SChris Mason 
3617c4452b9SChris Mason 	while (1) {
362777e6bd7SChris Mason 		ret = find_first_extent_bit(dirty_pages, start, &start, &end,
3635f39d397SChris Mason 					    EXTENT_DIRTY);
3645f39d397SChris Mason 		if (ret)
3657c4452b9SChris Mason 			break;
3665f39d397SChris Mason 		while (start <= end) {
367777e6bd7SChris Mason 			cond_resched();
368777e6bd7SChris Mason 
3695f39d397SChris Mason 			index = start >> PAGE_CACHE_SHIFT;
37035ebb934SChris Mason 			start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
3714bef0848SChris Mason 			page = find_get_page(btree_inode->i_mapping, index);
3727c4452b9SChris Mason 			if (!page)
3737c4452b9SChris Mason 				continue;
3744bef0848SChris Mason 
3754bef0848SChris Mason 			btree_lock_page_hook(page);
3764bef0848SChris Mason 			if (!page->mapping) {
3774bef0848SChris Mason 				unlock_page(page);
3784bef0848SChris Mason 				page_cache_release(page);
3794bef0848SChris Mason 				continue;
3804bef0848SChris Mason 			}
3814bef0848SChris Mason 
3826702ed49SChris Mason 			if (PageWriteback(page)) {
3836702ed49SChris Mason 				if (PageDirty(page))
3846702ed49SChris Mason 					wait_on_page_writeback(page);
3856702ed49SChris Mason 				else {
3866702ed49SChris Mason 					unlock_page(page);
3876702ed49SChris Mason 					page_cache_release(page);
3886702ed49SChris Mason 					continue;
3896702ed49SChris Mason 				}
3906702ed49SChris Mason 			}
3917c4452b9SChris Mason 			err = write_one_page(page, 0);
3927c4452b9SChris Mason 			if (err)
3937c4452b9SChris Mason 				werr = err;
3947c4452b9SChris Mason 			page_cache_release(page);
3957c4452b9SChris Mason 		}
3967c4452b9SChris Mason 	}
397777e6bd7SChris Mason 	while (1) {
398777e6bd7SChris Mason 		ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
399777e6bd7SChris Mason 					    EXTENT_DIRTY);
400777e6bd7SChris Mason 		if (ret)
401777e6bd7SChris Mason 			break;
402777e6bd7SChris Mason 
403777e6bd7SChris Mason 		clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
404777e6bd7SChris Mason 		while (start <= end) {
405777e6bd7SChris Mason 			index = start >> PAGE_CACHE_SHIFT;
406777e6bd7SChris Mason 			start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
407777e6bd7SChris Mason 			page = find_get_page(btree_inode->i_mapping, index);
408777e6bd7SChris Mason 			if (!page)
409777e6bd7SChris Mason 				continue;
410777e6bd7SChris Mason 			if (PageDirty(page)) {
4114bef0848SChris Mason 				btree_lock_page_hook(page);
4124bef0848SChris Mason 				wait_on_page_writeback(page);
413777e6bd7SChris Mason 				err = write_one_page(page, 0);
414777e6bd7SChris Mason 				if (err)
415777e6bd7SChris Mason 					werr = err;
416777e6bd7SChris Mason 			}
417777e6bd7SChris Mason 			wait_on_page_writeback(page);
418777e6bd7SChris Mason 			page_cache_release(page);
419777e6bd7SChris Mason 			cond_resched();
420777e6bd7SChris Mason 		}
421777e6bd7SChris Mason 	}
4227c4452b9SChris Mason 	if (err)
4237c4452b9SChris Mason 		werr = err;
4247c4452b9SChris Mason 	return werr;
42579154b1bSChris Mason }
42679154b1bSChris Mason 
427d0c803c4SChris Mason int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
428d0c803c4SChris Mason 				     struct btrfs_root *root)
429d0c803c4SChris Mason {
430d0c803c4SChris Mason 	if (!trans || !trans->transaction) {
431d0c803c4SChris Mason 		struct inode *btree_inode;
432d0c803c4SChris Mason 		btree_inode = root->fs_info->btree_inode;
433d0c803c4SChris Mason 		return filemap_write_and_wait(btree_inode->i_mapping);
434d0c803c4SChris Mason 	}
435d0c803c4SChris Mason 	return btrfs_write_and_wait_marked_extents(root,
436d0c803c4SChris Mason 					   &trans->transaction->dirty_pages);
437d0c803c4SChris Mason }
438d0c803c4SChris Mason 
439d352ac68SChris Mason /*
440d352ac68SChris Mason  * this is used to update the root pointer in the tree of tree roots.
441d352ac68SChris Mason  *
442d352ac68SChris Mason  * But, in the case of the extent allocation tree, updating the root
443d352ac68SChris Mason  * pointer may allocate blocks which may change the root of the extent
444d352ac68SChris Mason  * allocation tree.
445d352ac68SChris Mason  *
446d352ac68SChris Mason  * So, this loops and repeats and makes sure the cowonly root didn't
447d352ac68SChris Mason  * change while the root pointer was being updated in the metadata.
448d352ac68SChris Mason  */
4490b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans,
45079154b1bSChris Mason 			       struct btrfs_root *root)
45179154b1bSChris Mason {
45279154b1bSChris Mason 	int ret;
4530b86a832SChris Mason 	u64 old_root_bytenr;
4540b86a832SChris Mason 	struct btrfs_root *tree_root = root->fs_info->tree_root;
45579154b1bSChris Mason 
4560b86a832SChris Mason 	btrfs_write_dirty_block_groups(trans, root);
45756bec294SChris Mason 
45879154b1bSChris Mason 	while (1) {
4590b86a832SChris Mason 		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
4600b86a832SChris Mason 		if (old_root_bytenr == root->node->start)
46179154b1bSChris Mason 			break;
46287ef2bb4SChris Mason 
4635d4f98a2SYan Zheng 		btrfs_set_root_node(&root->root_item, root->node);
46479154b1bSChris Mason 		ret = btrfs_update_root(trans, tree_root,
4650b86a832SChris Mason 					&root->root_key,
4660b86a832SChris Mason 					&root->root_item);
46779154b1bSChris Mason 		BUG_ON(ret);
46856bec294SChris Mason 
4694a8c9a62SYan Zheng 		ret = btrfs_write_dirty_block_groups(trans, root);
47056bec294SChris Mason 		BUG_ON(ret);
4710b86a832SChris Mason 	}
472276e680dSYan Zheng 
473276e680dSYan Zheng 	if (root != root->fs_info->extent_root)
474817d52f8SJosef Bacik 		switch_commit_root(root);
475276e680dSYan Zheng 
4760b86a832SChris Mason 	return 0;
4770b86a832SChris Mason }
4780b86a832SChris Mason 
479d352ac68SChris Mason /*
480d352ac68SChris Mason  * update all the cowonly tree roots on disk
481d352ac68SChris Mason  */
4825d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
4830b86a832SChris Mason 					 struct btrfs_root *root)
4840b86a832SChris Mason {
4850b86a832SChris Mason 	struct btrfs_fs_info *fs_info = root->fs_info;
4860b86a832SChris Mason 	struct list_head *next;
48784234f3aSYan Zheng 	struct extent_buffer *eb;
48856bec294SChris Mason 	int ret;
48984234f3aSYan Zheng 
49056bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49156bec294SChris Mason 	BUG_ON(ret);
49287ef2bb4SChris Mason 
49384234f3aSYan Zheng 	eb = btrfs_lock_root_node(fs_info->tree_root);
4949fa8cfe7SChris Mason 	btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
49584234f3aSYan Zheng 	btrfs_tree_unlock(eb);
49684234f3aSYan Zheng 	free_extent_buffer(eb);
4970b86a832SChris Mason 
49856bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49956bec294SChris Mason 	BUG_ON(ret);
50087ef2bb4SChris Mason 
5010b86a832SChris Mason 	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
5020b86a832SChris Mason 		next = fs_info->dirty_cowonly_roots.next;
5030b86a832SChris Mason 		list_del_init(next);
5040b86a832SChris Mason 		root = list_entry(next, struct btrfs_root, dirty_list);
50587ef2bb4SChris Mason 
5060b86a832SChris Mason 		update_cowonly_root(trans, root);
50779154b1bSChris Mason 	}
508276e680dSYan Zheng 
509276e680dSYan Zheng 	down_write(&fs_info->extent_commit_sem);
510276e680dSYan Zheng 	switch_commit_root(fs_info->extent_root);
511276e680dSYan Zheng 	up_write(&fs_info->extent_commit_sem);
512276e680dSYan Zheng 
51379154b1bSChris Mason 	return 0;
51479154b1bSChris Mason }
51579154b1bSChris Mason 
516d352ac68SChris Mason /*
517d352ac68SChris Mason  * dead roots are old snapshots that need to be deleted.  This allocates
518d352ac68SChris Mason  * a dirty root struct and adds it into the list of dead roots that need to
519d352ac68SChris Mason  * be deleted
520d352ac68SChris Mason  */
5215d4f98a2SYan Zheng int btrfs_add_dead_root(struct btrfs_root *root)
5225eda7b5eSChris Mason {
523b48652c1SYan Zheng 	mutex_lock(&root->fs_info->trans_mutex);
5245d4f98a2SYan Zheng 	list_add(&root->root_list, &root->fs_info->dead_roots);
525b48652c1SYan Zheng 	mutex_unlock(&root->fs_info->trans_mutex);
5265eda7b5eSChris Mason 	return 0;
5275eda7b5eSChris Mason }
5285eda7b5eSChris Mason 
529d352ac68SChris Mason /*
5305d4f98a2SYan Zheng  * update all the cowonly tree roots on disk
531d352ac68SChris Mason  */
5325d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
5335d4f98a2SYan Zheng 				    struct btrfs_root *root)
5340f7d52f4SChris Mason {
5350f7d52f4SChris Mason 	struct btrfs_root *gang[8];
5365d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
5370f7d52f4SChris Mason 	int i;
5380f7d52f4SChris Mason 	int ret;
53954aa1f4dSChris Mason 	int err = 0;
54054aa1f4dSChris Mason 
5410f7d52f4SChris Mason 	while (1) {
5425d4f98a2SYan Zheng 		ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
5435d4f98a2SYan Zheng 						 (void **)gang, 0,
5440f7d52f4SChris Mason 						 ARRAY_SIZE(gang),
5450f7d52f4SChris Mason 						 BTRFS_ROOT_TRANS_TAG);
5460f7d52f4SChris Mason 		if (ret == 0)
5470f7d52f4SChris Mason 			break;
5480f7d52f4SChris Mason 		for (i = 0; i < ret; i++) {
5490f7d52f4SChris Mason 			root = gang[i];
5505d4f98a2SYan Zheng 			radix_tree_tag_clear(&fs_info->fs_roots_radix,
5512619ba1fSChris Mason 					(unsigned long)root->root_key.objectid,
5520f7d52f4SChris Mason 					BTRFS_ROOT_TRANS_TAG);
55331153d81SYan Zheng 
554e02119d5SChris Mason 			btrfs_free_log(trans, root);
5555d4f98a2SYan Zheng 			btrfs_update_reloc_root(trans, root);
556e02119d5SChris Mason 
557978d910dSYan Zheng 			if (root->commit_root != root->node) {
558817d52f8SJosef Bacik 				switch_commit_root(root);
559978d910dSYan Zheng 				btrfs_set_root_node(&root->root_item,
560978d910dSYan Zheng 						    root->node);
561978d910dSYan Zheng 			}
56231153d81SYan Zheng 
5635d4f98a2SYan Zheng 			err = btrfs_update_root(trans, fs_info->tree_root,
5640f7d52f4SChris Mason 						&root->root_key,
5650f7d52f4SChris Mason 						&root->root_item);
56654aa1f4dSChris Mason 			if (err)
56754aa1f4dSChris Mason 				break;
5680f7d52f4SChris Mason 		}
5699f3a7427SChris Mason 	}
57054aa1f4dSChris Mason 	return err;
5710f7d52f4SChris Mason }
5720f7d52f4SChris Mason 
573d352ac68SChris Mason /*
574d352ac68SChris Mason  * defrag a given btree.  If cacheonly == 1, this won't read from the disk,
575d352ac68SChris Mason  * otherwise every leaf in the btree is read and defragged.
576d352ac68SChris Mason  */
577e9d0b13bSChris Mason int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
578e9d0b13bSChris Mason {
579e9d0b13bSChris Mason 	struct btrfs_fs_info *info = root->fs_info;
580e9d0b13bSChris Mason 	int ret;
581e9d0b13bSChris Mason 	struct btrfs_trans_handle *trans;
582d3c2fdcfSChris Mason 	unsigned long nr;
583e9d0b13bSChris Mason 
584a2135011SChris Mason 	smp_mb();
585e9d0b13bSChris Mason 	if (root->defrag_running)
586e9d0b13bSChris Mason 		return 0;
587e9d0b13bSChris Mason 	trans = btrfs_start_transaction(root, 1);
5886b80053dSChris Mason 	while (1) {
589e9d0b13bSChris Mason 		root->defrag_running = 1;
590e9d0b13bSChris Mason 		ret = btrfs_defrag_leaves(trans, root, cacheonly);
591d3c2fdcfSChris Mason 		nr = trans->blocks_used;
592e9d0b13bSChris Mason 		btrfs_end_transaction(trans, root);
593d3c2fdcfSChris Mason 		btrfs_btree_balance_dirty(info->tree_root, nr);
594e9d0b13bSChris Mason 		cond_resched();
595e9d0b13bSChris Mason 
596e9d0b13bSChris Mason 		trans = btrfs_start_transaction(root, 1);
5973f157a2fSChris Mason 		if (root->fs_info->closing || ret != -EAGAIN)
598e9d0b13bSChris Mason 			break;
599e9d0b13bSChris Mason 	}
600e9d0b13bSChris Mason 	root->defrag_running = 0;
601a2135011SChris Mason 	smp_mb();
602e9d0b13bSChris Mason 	btrfs_end_transaction(trans, root);
603e9d0b13bSChris Mason 	return 0;
604e9d0b13bSChris Mason }
605e9d0b13bSChris Mason 
6062c47e605SYan Zheng #if 0
607d352ac68SChris Mason /*
608b7ec40d7SChris Mason  * when dropping snapshots, we generate a ton of delayed refs, and it makes
609b7ec40d7SChris Mason  * sense not to join the transaction while it is trying to flush the current
610b7ec40d7SChris Mason  * queue of delayed refs out.
611b7ec40d7SChris Mason  *
612b7ec40d7SChris Mason  * This is used by the drop snapshot code only
613b7ec40d7SChris Mason  */
614b7ec40d7SChris Mason static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
615b7ec40d7SChris Mason {
616b7ec40d7SChris Mason 	DEFINE_WAIT(wait);
617b7ec40d7SChris Mason 
618b7ec40d7SChris Mason 	mutex_lock(&info->trans_mutex);
619b7ec40d7SChris Mason 	while (info->running_transaction &&
620b7ec40d7SChris Mason 	       info->running_transaction->delayed_refs.flushing) {
621b7ec40d7SChris Mason 		prepare_to_wait(&info->transaction_wait, &wait,
622b7ec40d7SChris Mason 				TASK_UNINTERRUPTIBLE);
623b7ec40d7SChris Mason 		mutex_unlock(&info->trans_mutex);
62459bc5c75SChris Mason 
625b7ec40d7SChris Mason 		schedule();
62659bc5c75SChris Mason 
627b7ec40d7SChris Mason 		mutex_lock(&info->trans_mutex);
628b7ec40d7SChris Mason 		finish_wait(&info->transaction_wait, &wait);
629b7ec40d7SChris Mason 	}
630b7ec40d7SChris Mason 	mutex_unlock(&info->trans_mutex);
631b7ec40d7SChris Mason 	return 0;
632b7ec40d7SChris Mason }
633b7ec40d7SChris Mason 
634b7ec40d7SChris Mason /*
635d352ac68SChris Mason  * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
636d352ac68SChris Mason  * all of them
637d352ac68SChris Mason  */
6385d4f98a2SYan Zheng int btrfs_drop_dead_root(struct btrfs_root *root)
6390f7d52f4SChris Mason {
6400f7d52f4SChris Mason 	struct btrfs_trans_handle *trans;
6415d4f98a2SYan Zheng 	struct btrfs_root *tree_root = root->fs_info->tree_root;
642d3c2fdcfSChris Mason 	unsigned long nr;
6435d4f98a2SYan Zheng 	int ret;
64458176a96SJosef Bacik 
6459f3a7427SChris Mason 	while (1) {
646b7ec40d7SChris Mason 		/*
647b7ec40d7SChris Mason 		 * we don't want to jump in and create a bunch of
648b7ec40d7SChris Mason 		 * delayed refs if the transaction is starting to close
649b7ec40d7SChris Mason 		 */
650b7ec40d7SChris Mason 		wait_transaction_pre_flush(tree_root->fs_info);
6510f7d52f4SChris Mason 		trans = btrfs_start_transaction(tree_root, 1);
652b7ec40d7SChris Mason 
653b7ec40d7SChris Mason 		/*
654b7ec40d7SChris Mason 		 * we've joined a transaction, make sure it isn't
655b7ec40d7SChris Mason 		 * closing right now
656b7ec40d7SChris Mason 		 */
657b7ec40d7SChris Mason 		if (trans->transaction->delayed_refs.flushing) {
658b7ec40d7SChris Mason 			btrfs_end_transaction(trans, tree_root);
659b7ec40d7SChris Mason 			continue;
660b7ec40d7SChris Mason 		}
661b7ec40d7SChris Mason 
6625d4f98a2SYan Zheng 		ret = btrfs_drop_snapshot(trans, root);
663d397712bSChris Mason 		if (ret != -EAGAIN)
6649f3a7427SChris Mason 			break;
66558176a96SJosef Bacik 
6665d4f98a2SYan Zheng 		ret = btrfs_update_root(trans, tree_root,
6675d4f98a2SYan Zheng 					&root->root_key,
6685d4f98a2SYan Zheng 					&root->root_item);
6695d4f98a2SYan Zheng 		if (ret)
67054aa1f4dSChris Mason 			break;
671bcc63abbSYan 
672d3c2fdcfSChris Mason 		nr = trans->blocks_used;
6730f7d52f4SChris Mason 		ret = btrfs_end_transaction(trans, tree_root);
6740f7d52f4SChris Mason 		BUG_ON(ret);
6755eda7b5eSChris Mason 
676d3c2fdcfSChris Mason 		btrfs_btree_balance_dirty(tree_root, nr);
6774dc11904SChris Mason 		cond_resched();
6780f7d52f4SChris Mason 	}
6795d4f98a2SYan Zheng 	BUG_ON(ret);
6805d4f98a2SYan Zheng 
6815d4f98a2SYan Zheng 	ret = btrfs_del_root(trans, tree_root, &root->root_key);
6825d4f98a2SYan Zheng 	BUG_ON(ret);
6835d4f98a2SYan Zheng 
6845d4f98a2SYan Zheng 	nr = trans->blocks_used;
6855d4f98a2SYan Zheng 	ret = btrfs_end_transaction(trans, tree_root);
6865d4f98a2SYan Zheng 	BUG_ON(ret);
6875d4f98a2SYan Zheng 
6885d4f98a2SYan Zheng 	free_extent_buffer(root->node);
6895d4f98a2SYan Zheng 	free_extent_buffer(root->commit_root);
6905d4f98a2SYan Zheng 	kfree(root);
6915d4f98a2SYan Zheng 
6925d4f98a2SYan Zheng 	btrfs_btree_balance_dirty(tree_root, nr);
69354aa1f4dSChris Mason 	return ret;
6940f7d52f4SChris Mason }
6952c47e605SYan Zheng #endif
6960f7d52f4SChris Mason 
697d352ac68SChris Mason /*
698d352ac68SChris Mason  * new snapshots need to be created at a very specific time in the
699d352ac68SChris Mason  * transaction commit.  This does the actual creation
700d352ac68SChris Mason  */
70180b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
7023063d29fSChris Mason 				   struct btrfs_fs_info *fs_info,
7033063d29fSChris Mason 				   struct btrfs_pending_snapshot *pending)
7043063d29fSChris Mason {
7053063d29fSChris Mason 	struct btrfs_key key;
70680b6794dSChris Mason 	struct btrfs_root_item *new_root_item;
7073063d29fSChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
7083063d29fSChris Mason 	struct btrfs_root *root = pending->root;
7093063d29fSChris Mason 	struct extent_buffer *tmp;
710925baeddSChris Mason 	struct extent_buffer *old;
7113063d29fSChris Mason 	int ret;
7123063d29fSChris Mason 	u64 objectid;
7133063d29fSChris Mason 
71480b6794dSChris Mason 	new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
71580b6794dSChris Mason 	if (!new_root_item) {
71680b6794dSChris Mason 		ret = -ENOMEM;
71780b6794dSChris Mason 		goto fail;
71880b6794dSChris Mason 	}
7193063d29fSChris Mason 	ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
7203063d29fSChris Mason 	if (ret)
7213063d29fSChris Mason 		goto fail;
7223063d29fSChris Mason 
7235d4f98a2SYan Zheng 	record_root_in_trans(trans, root);
72480ff3856SYan Zheng 	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
72580b6794dSChris Mason 	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
7263063d29fSChris Mason 
7273063d29fSChris Mason 	key.objectid = objectid;
7281c4850e2SYan, Zheng 	/* record when the snapshot was created in key.offset */
7291c4850e2SYan, Zheng 	key.offset = trans->transid;
7303063d29fSChris Mason 	btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
7313063d29fSChris Mason 
732925baeddSChris Mason 	old = btrfs_lock_root_node(root);
7339fa8cfe7SChris Mason 	btrfs_cow_block(trans, root, old, NULL, 0, &old);
7345d4f98a2SYan Zheng 	btrfs_set_lock_blocking(old);
7353063d29fSChris Mason 
736925baeddSChris Mason 	btrfs_copy_root(trans, root, old, &tmp, objectid);
737925baeddSChris Mason 	btrfs_tree_unlock(old);
738925baeddSChris Mason 	free_extent_buffer(old);
7393063d29fSChris Mason 
7405d4f98a2SYan Zheng 	btrfs_set_root_node(new_root_item, tmp);
7413063d29fSChris Mason 	ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
74280b6794dSChris Mason 				new_root_item);
743925baeddSChris Mason 	btrfs_tree_unlock(tmp);
7443063d29fSChris Mason 	free_extent_buffer(tmp);
7453063d29fSChris Mason 	if (ret)
7463063d29fSChris Mason 		goto fail;
7473063d29fSChris Mason 
7483de4586cSChris Mason 	key.offset = (u64)-1;
7493de4586cSChris Mason 	memcpy(&pending->root_key, &key, sizeof(key));
7503de4586cSChris Mason fail:
7513de4586cSChris Mason 	kfree(new_root_item);
7529ed74f2dSJosef Bacik 	btrfs_unreserve_metadata_space(root, 6);
7533de4586cSChris Mason 	return ret;
7543de4586cSChris Mason }
7553de4586cSChris Mason 
7563de4586cSChris Mason static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
7573de4586cSChris Mason 				   struct btrfs_pending_snapshot *pending)
7583de4586cSChris Mason {
7593de4586cSChris Mason 	int ret;
7603de4586cSChris Mason 	int namelen;
7613de4586cSChris Mason 	u64 index = 0;
7623de4586cSChris Mason 	struct btrfs_trans_handle *trans;
7633de4586cSChris Mason 	struct inode *parent_inode;
7643de4586cSChris Mason 	struct inode *inode;
7650660b5afSChris Mason 	struct btrfs_root *parent_root;
7663de4586cSChris Mason 
7673394e160SChris Mason 	parent_inode = pending->dentry->d_parent->d_inode;
7680660b5afSChris Mason 	parent_root = BTRFS_I(parent_inode)->root;
769180591bcSYan Zheng 	trans = btrfs_join_transaction(parent_root, 1);
7703de4586cSChris Mason 
7713063d29fSChris Mason 	/*
7723063d29fSChris Mason 	 * insert the directory item
7733063d29fSChris Mason 	 */
7743b96362cSSven Wegener 	namelen = strlen(pending->name);
7753de4586cSChris Mason 	ret = btrfs_set_inode_index(parent_inode, &index);
7760660b5afSChris Mason 	ret = btrfs_insert_dir_item(trans, parent_root,
7773b96362cSSven Wegener 			    pending->name, namelen,
7783de4586cSChris Mason 			    parent_inode->i_ino,
7793de4586cSChris Mason 			    &pending->root_key, BTRFS_FT_DIR, index);
7803063d29fSChris Mason 
7813063d29fSChris Mason 	if (ret)
7823063d29fSChris Mason 		goto fail;
7830660b5afSChris Mason 
78452c26179SYan Zheng 	btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
78552c26179SYan Zheng 	ret = btrfs_update_inode(trans, parent_root, parent_inode);
78652c26179SYan Zheng 	BUG_ON(ret);
78752c26179SYan Zheng 
7880660b5afSChris Mason 	ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
7890660b5afSChris Mason 				 pending->root_key.objectid,
7900660b5afSChris Mason 				 parent_root->root_key.objectid,
7910660b5afSChris Mason 				 parent_inode->i_ino, index, pending->name,
7920660b5afSChris Mason 				 namelen);
7930660b5afSChris Mason 
7940660b5afSChris Mason 	BUG_ON(ret);
7950660b5afSChris Mason 
7963de4586cSChris Mason 	inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
7973de4586cSChris Mason 	d_instantiate(pending->dentry, inode);
7983063d29fSChris Mason fail:
7993de4586cSChris Mason 	btrfs_end_transaction(trans, fs_info->fs_root);
8003063d29fSChris Mason 	return ret;
8013063d29fSChris Mason }
8023063d29fSChris Mason 
803d352ac68SChris Mason /*
804d352ac68SChris Mason  * create all the snapshots we've scheduled for creation
805d352ac68SChris Mason  */
80680b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
8073063d29fSChris Mason 					     struct btrfs_fs_info *fs_info)
8083063d29fSChris Mason {
8093063d29fSChris Mason 	struct btrfs_pending_snapshot *pending;
8103063d29fSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
8113de4586cSChris Mason 	int ret;
8123de4586cSChris Mason 
813c6e30871SQinghuang Feng 	list_for_each_entry(pending, head, list) {
8143de4586cSChris Mason 		ret = create_pending_snapshot(trans, fs_info, pending);
8153de4586cSChris Mason 		BUG_ON(ret);
8163de4586cSChris Mason 	}
8173de4586cSChris Mason 	return 0;
8183de4586cSChris Mason }
8193de4586cSChris Mason 
8203de4586cSChris Mason static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
8213de4586cSChris Mason 					     struct btrfs_fs_info *fs_info)
8223de4586cSChris Mason {
8233de4586cSChris Mason 	struct btrfs_pending_snapshot *pending;
8243de4586cSChris Mason 	struct list_head *head = &trans->transaction->pending_snapshots;
8253063d29fSChris Mason 	int ret;
8263063d29fSChris Mason 
8273063d29fSChris Mason 	while (!list_empty(head)) {
8283063d29fSChris Mason 		pending = list_entry(head->next,
8293063d29fSChris Mason 				     struct btrfs_pending_snapshot, list);
8303de4586cSChris Mason 		ret = finish_pending_snapshot(fs_info, pending);
8313063d29fSChris Mason 		BUG_ON(ret);
8323063d29fSChris Mason 		list_del(&pending->list);
8333063d29fSChris Mason 		kfree(pending->name);
8343063d29fSChris Mason 		kfree(pending);
8353063d29fSChris Mason 	}
836dc17ff8fSChris Mason 	return 0;
837dc17ff8fSChris Mason }
838dc17ff8fSChris Mason 
8395d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root)
8405d4f98a2SYan Zheng {
8415d4f98a2SYan Zheng 	struct btrfs_root_item *root_item;
8425d4f98a2SYan Zheng 	struct btrfs_super_block *super;
8435d4f98a2SYan Zheng 
8445d4f98a2SYan Zheng 	super = &root->fs_info->super_copy;
8455d4f98a2SYan Zheng 
8465d4f98a2SYan Zheng 	root_item = &root->fs_info->chunk_root->root_item;
8475d4f98a2SYan Zheng 	super->chunk_root = root_item->bytenr;
8485d4f98a2SYan Zheng 	super->chunk_root_generation = root_item->generation;
8495d4f98a2SYan Zheng 	super->chunk_root_level = root_item->level;
8505d4f98a2SYan Zheng 
8515d4f98a2SYan Zheng 	root_item = &root->fs_info->tree_root->root_item;
8525d4f98a2SYan Zheng 	super->root = root_item->bytenr;
8535d4f98a2SYan Zheng 	super->generation = root_item->generation;
8545d4f98a2SYan Zheng 	super->root_level = root_item->level;
8555d4f98a2SYan Zheng }
8565d4f98a2SYan Zheng 
857f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
858f36f3042SChris Mason {
859f36f3042SChris Mason 	int ret = 0;
860f36f3042SChris Mason 	spin_lock(&info->new_trans_lock);
861f36f3042SChris Mason 	if (info->running_transaction)
862f36f3042SChris Mason 		ret = info->running_transaction->in_commit;
863f36f3042SChris Mason 	spin_unlock(&info->new_trans_lock);
864f36f3042SChris Mason 	return ret;
865f36f3042SChris Mason }
866f36f3042SChris Mason 
86779154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
86879154b1bSChris Mason 			     struct btrfs_root *root)
86979154b1bSChris Mason {
87015ee9bc7SJosef Bacik 	unsigned long joined = 0;
87115ee9bc7SJosef Bacik 	unsigned long timeout = 1;
87279154b1bSChris Mason 	struct btrfs_transaction *cur_trans;
8738fd17795SChris Mason 	struct btrfs_transaction *prev_trans = NULL;
87479154b1bSChris Mason 	DEFINE_WAIT(wait);
87515ee9bc7SJosef Bacik 	int ret;
87689573b9cSChris Mason 	int should_grow = 0;
87789573b9cSChris Mason 	unsigned long now = get_seconds();
878dccae999SSage Weil 	int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
87979154b1bSChris Mason 
8805a3f23d5SChris Mason 	btrfs_run_ordered_operations(root, 0);
8815a3f23d5SChris Mason 
88256bec294SChris Mason 	/* make a pass through all the delayed refs we have so far
88356bec294SChris Mason 	 * any runnings procs may add more while we are here
88456bec294SChris Mason 	 */
88556bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, 0);
88656bec294SChris Mason 	BUG_ON(ret);
88756bec294SChris Mason 
888b7ec40d7SChris Mason 	cur_trans = trans->transaction;
88956bec294SChris Mason 	/*
89056bec294SChris Mason 	 * set the flushing flag so procs in this transaction have to
89156bec294SChris Mason 	 * start sending their work down.
89256bec294SChris Mason 	 */
893b7ec40d7SChris Mason 	cur_trans->delayed_refs.flushing = 1;
89456bec294SChris Mason 
895c3e69d58SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, 0);
89656bec294SChris Mason 	BUG_ON(ret);
89756bec294SChris Mason 
89879154b1bSChris Mason 	mutex_lock(&root->fs_info->trans_mutex);
899b7ec40d7SChris Mason 	if (cur_trans->in_commit) {
900b7ec40d7SChris Mason 		cur_trans->use_count++;
901ccd467d6SChris Mason 		mutex_unlock(&root->fs_info->trans_mutex);
90279154b1bSChris Mason 		btrfs_end_transaction(trans, root);
903ccd467d6SChris Mason 
90479154b1bSChris Mason 		ret = wait_for_commit(root, cur_trans);
90579154b1bSChris Mason 		BUG_ON(ret);
90615ee9bc7SJosef Bacik 
90715ee9bc7SJosef Bacik 		mutex_lock(&root->fs_info->trans_mutex);
90879154b1bSChris Mason 		put_transaction(cur_trans);
90915ee9bc7SJosef Bacik 		mutex_unlock(&root->fs_info->trans_mutex);
91015ee9bc7SJosef Bacik 
91179154b1bSChris Mason 		return 0;
91279154b1bSChris Mason 	}
9134313b399SChris Mason 
9142c90e5d6SChris Mason 	trans->transaction->in_commit = 1;
915f9295749SChris Mason 	trans->transaction->blocked = 1;
916ccd467d6SChris Mason 	if (cur_trans->list.prev != &root->fs_info->trans_list) {
917ccd467d6SChris Mason 		prev_trans = list_entry(cur_trans->list.prev,
918ccd467d6SChris Mason 					struct btrfs_transaction, list);
919ccd467d6SChris Mason 		if (!prev_trans->commit_done) {
920ccd467d6SChris Mason 			prev_trans->use_count++;
921ccd467d6SChris Mason 			mutex_unlock(&root->fs_info->trans_mutex);
922ccd467d6SChris Mason 
923ccd467d6SChris Mason 			wait_for_commit(root, prev_trans);
924ccd467d6SChris Mason 
925ccd467d6SChris Mason 			mutex_lock(&root->fs_info->trans_mutex);
92615ee9bc7SJosef Bacik 			put_transaction(prev_trans);
927ccd467d6SChris Mason 		}
928ccd467d6SChris Mason 	}
92915ee9bc7SJosef Bacik 
93089573b9cSChris Mason 	if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
93189573b9cSChris Mason 		should_grow = 1;
93289573b9cSChris Mason 
93315ee9bc7SJosef Bacik 	do {
9347ea394f1SYan Zheng 		int snap_pending = 0;
93515ee9bc7SJosef Bacik 		joined = cur_trans->num_joined;
9367ea394f1SYan Zheng 		if (!list_empty(&trans->transaction->pending_snapshots))
9377ea394f1SYan Zheng 			snap_pending = 1;
9387ea394f1SYan Zheng 
9392c90e5d6SChris Mason 		WARN_ON(cur_trans != trans->transaction);
94015ee9bc7SJosef Bacik 		prepare_to_wait(&cur_trans->writer_wait, &wait,
94179154b1bSChris Mason 				TASK_UNINTERRUPTIBLE);
94215ee9bc7SJosef Bacik 
94315ee9bc7SJosef Bacik 		if (cur_trans->num_writers > 1)
94415ee9bc7SJosef Bacik 			timeout = MAX_SCHEDULE_TIMEOUT;
94589573b9cSChris Mason 		else if (should_grow)
94615ee9bc7SJosef Bacik 			timeout = 1;
94715ee9bc7SJosef Bacik 
94879154b1bSChris Mason 		mutex_unlock(&root->fs_info->trans_mutex);
94915ee9bc7SJosef Bacik 
950ebecd3d9SSage Weil 		if (flush_on_commit) {
951dccae999SSage Weil 			btrfs_start_delalloc_inodes(root);
952ebecd3d9SSage Weil 			ret = btrfs_wait_ordered_extents(root, 0);
953ebecd3d9SSage Weil 			BUG_ON(ret);
954ebecd3d9SSage Weil 		} else if (snap_pending) {
9557ea394f1SYan Zheng 			ret = btrfs_wait_ordered_extents(root, 1);
9567ea394f1SYan Zheng 			BUG_ON(ret);
9577ea394f1SYan Zheng 		}
9587ea394f1SYan Zheng 
9595a3f23d5SChris Mason 		/*
9605a3f23d5SChris Mason 		 * rename don't use btrfs_join_transaction, so, once we
9615a3f23d5SChris Mason 		 * set the transaction to blocked above, we aren't going
9625a3f23d5SChris Mason 		 * to get any new ordered operations.  We can safely run
9635a3f23d5SChris Mason 		 * it here and no for sure that nothing new will be added
9645a3f23d5SChris Mason 		 * to the list
9655a3f23d5SChris Mason 		 */
9665a3f23d5SChris Mason 		btrfs_run_ordered_operations(root, 1);
9675a3f23d5SChris Mason 
96889573b9cSChris Mason 		smp_mb();
96989573b9cSChris Mason 		if (cur_trans->num_writers > 1 || should_grow)
97015ee9bc7SJosef Bacik 			schedule_timeout(timeout);
97115ee9bc7SJosef Bacik 
97279154b1bSChris Mason 		mutex_lock(&root->fs_info->trans_mutex);
97315ee9bc7SJosef Bacik 		finish_wait(&cur_trans->writer_wait, &wait);
97415ee9bc7SJosef Bacik 	} while (cur_trans->num_writers > 1 ||
97589573b9cSChris Mason 		 (should_grow && cur_trans->num_joined != joined));
97615ee9bc7SJosef Bacik 
9773063d29fSChris Mason 	ret = create_pending_snapshots(trans, root->fs_info);
9783063d29fSChris Mason 	BUG_ON(ret);
9793063d29fSChris Mason 
98056bec294SChris Mason 	ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
98156bec294SChris Mason 	BUG_ON(ret);
98256bec294SChris Mason 
9832c90e5d6SChris Mason 	WARN_ON(cur_trans != trans->transaction);
984dc17ff8fSChris Mason 
985e02119d5SChris Mason 	/* btrfs_commit_tree_roots is responsible for getting the
986e02119d5SChris Mason 	 * various roots consistent with each other.  Every pointer
987e02119d5SChris Mason 	 * in the tree of tree roots has to point to the most up to date
988e02119d5SChris Mason 	 * root for every subvolume and other tree.  So, we have to keep
989e02119d5SChris Mason 	 * the tree logging code from jumping in and changing any
990e02119d5SChris Mason 	 * of the trees.
991e02119d5SChris Mason 	 *
992e02119d5SChris Mason 	 * At this point in the commit, there can't be any tree-log
993e02119d5SChris Mason 	 * writers, but a little lower down we drop the trans mutex
994e02119d5SChris Mason 	 * and let new people in.  By holding the tree_log_mutex
995e02119d5SChris Mason 	 * from now until after the super is written, we avoid races
996e02119d5SChris Mason 	 * with the tree-log code.
997e02119d5SChris Mason 	 */
998e02119d5SChris Mason 	mutex_lock(&root->fs_info->tree_log_mutex);
9991a40e23bSZheng Yan 
10005d4f98a2SYan Zheng 	ret = commit_fs_roots(trans, root);
100154aa1f4dSChris Mason 	BUG_ON(ret);
100254aa1f4dSChris Mason 
10035d4f98a2SYan Zheng 	/* commit_fs_roots gets rid of all the tree log roots, it is now
1004e02119d5SChris Mason 	 * safe to free the root of tree log roots
1005e02119d5SChris Mason 	 */
1006e02119d5SChris Mason 	btrfs_free_log_root_tree(trans, root->fs_info);
1007e02119d5SChris Mason 
10085d4f98a2SYan Zheng 	ret = commit_cowonly_roots(trans, root);
100979154b1bSChris Mason 	BUG_ON(ret);
101054aa1f4dSChris Mason 
101111833d66SYan Zheng 	btrfs_prepare_extent_commit(trans, root);
101211833d66SYan Zheng 
101378fae27eSChris Mason 	cur_trans = root->fs_info->running_transaction;
1014cee36a03SChris Mason 	spin_lock(&root->fs_info->new_trans_lock);
101578fae27eSChris Mason 	root->fs_info->running_transaction = NULL;
1016cee36a03SChris Mason 	spin_unlock(&root->fs_info->new_trans_lock);
10175f39d397SChris Mason 
10185d4f98a2SYan Zheng 	btrfs_set_root_node(&root->fs_info->tree_root->root_item,
10195d4f98a2SYan Zheng 			    root->fs_info->tree_root->node);
1020817d52f8SJosef Bacik 	switch_commit_root(root->fs_info->tree_root);
10215d4f98a2SYan Zheng 
10225d4f98a2SYan Zheng 	btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
10235d4f98a2SYan Zheng 			    root->fs_info->chunk_root->node);
1024817d52f8SJosef Bacik 	switch_commit_root(root->fs_info->chunk_root);
10255d4f98a2SYan Zheng 
10265d4f98a2SYan Zheng 	update_super_roots(root);
1027e02119d5SChris Mason 
1028e02119d5SChris Mason 	if (!root->fs_info->log_root_recovering) {
1029e02119d5SChris Mason 		btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1030e02119d5SChris Mason 		btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1031e02119d5SChris Mason 	}
1032e02119d5SChris Mason 
1033a061fc8dSChris Mason 	memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
10344b52dff6SChris Mason 	       sizeof(root->fs_info->super_copy));
1035ccd467d6SChris Mason 
1036f9295749SChris Mason 	trans->transaction->blocked = 0;
1037b7ec40d7SChris Mason 
1038f9295749SChris Mason 	wake_up(&root->fs_info->transaction_wait);
1039e6dcd2dcSChris Mason 
104078fae27eSChris Mason 	mutex_unlock(&root->fs_info->trans_mutex);
104179154b1bSChris Mason 	ret = btrfs_write_and_wait_transaction(trans, root);
104279154b1bSChris Mason 	BUG_ON(ret);
1043a512bbf8SYan Zheng 	write_ctree_super(trans, root, 0);
10444313b399SChris Mason 
1045e02119d5SChris Mason 	/*
1046e02119d5SChris Mason 	 * the super is written, we can safely allow the tree-loggers
1047e02119d5SChris Mason 	 * to go about their business
1048e02119d5SChris Mason 	 */
1049e02119d5SChris Mason 	mutex_unlock(&root->fs_info->tree_log_mutex);
1050e02119d5SChris Mason 
105111833d66SYan Zheng 	btrfs_finish_extent_commit(trans, root);
10524313b399SChris Mason 
10533de4586cSChris Mason 	/* do the directory inserts of any pending snapshot creations */
10543de4586cSChris Mason 	finish_pending_snapshots(trans, root->fs_info);
10553de4586cSChris Mason 
10561a40e23bSZheng Yan 	mutex_lock(&root->fs_info->trans_mutex);
10571a40e23bSZheng Yan 
10582c90e5d6SChris Mason 	cur_trans->commit_done = 1;
1059b7ec40d7SChris Mason 
106015ee9bc7SJosef Bacik 	root->fs_info->last_trans_committed = cur_trans->transid;
1061817d52f8SJosef Bacik 
10622c90e5d6SChris Mason 	wake_up(&cur_trans->commit_wait);
10633de4586cSChris Mason 
106479154b1bSChris Mason 	put_transaction(cur_trans);
106578fae27eSChris Mason 	put_transaction(cur_trans);
106658176a96SJosef Bacik 
106778fae27eSChris Mason 	mutex_unlock(&root->fs_info->trans_mutex);
10683de4586cSChris Mason 
10699ed74f2dSJosef Bacik 	if (current->journal_info == trans)
10709ed74f2dSJosef Bacik 		current->journal_info = NULL;
10719ed74f2dSJosef Bacik 
10722c90e5d6SChris Mason 	kmem_cache_free(btrfs_trans_handle_cachep, trans);
107379154b1bSChris Mason 	return ret;
107479154b1bSChris Mason }
107579154b1bSChris Mason 
1076d352ac68SChris Mason /*
1077d352ac68SChris Mason  * interface function to delete all the snapshots we have scheduled for deletion
1078d352ac68SChris Mason  */
1079e9d0b13bSChris Mason int btrfs_clean_old_snapshots(struct btrfs_root *root)
1080e9d0b13bSChris Mason {
10815d4f98a2SYan Zheng 	LIST_HEAD(list);
10825d4f98a2SYan Zheng 	struct btrfs_fs_info *fs_info = root->fs_info;
1083e9d0b13bSChris Mason 
10845d4f98a2SYan Zheng 	mutex_lock(&fs_info->trans_mutex);
10855d4f98a2SYan Zheng 	list_splice_init(&fs_info->dead_roots, &list);
10865d4f98a2SYan Zheng 	mutex_unlock(&fs_info->trans_mutex);
10875d4f98a2SYan Zheng 
10885d4f98a2SYan Zheng 	while (!list_empty(&list)) {
10895d4f98a2SYan Zheng 		root = list_entry(list.next, struct btrfs_root, root_list);
109076dda93cSYan, Zheng 		list_del(&root->root_list);
109176dda93cSYan, Zheng 
109276dda93cSYan, Zheng 		if (btrfs_header_backref_rev(root->node) <
109376dda93cSYan, Zheng 		    BTRFS_MIXED_BACKREF_REV)
10942c47e605SYan Zheng 			btrfs_drop_snapshot(root, 0);
109576dda93cSYan, Zheng 		else
109676dda93cSYan, Zheng 			btrfs_drop_snapshot(root, 1);
1097e9d0b13bSChris Mason 	}
1098e9d0b13bSChris Mason 	return 0;
1099e9d0b13bSChris Mason }
1100