blob: ce48eb59d6156dd72b8cfe4344e50411abe47d98 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Masond3c2fdcf2007-09-17 10:58:06 -040022#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040023#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050024#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason80b67942008-02-01 16:35:04 -050033static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040034{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040038 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040041 }
Chris Mason79154b12007-03-22 15:59:16 -040042}
43
Josef Bacik817d52f2009-07-13 21:29:25 -040044static noinline void switch_commit_root(struct btrfs_root *root)
45{
Josef Bacik817d52f2009-07-13 21:29:25 -040046 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040048}
49
Chris Masond352ac62008-09-29 15:18:18 -040050/*
51 * either allocate a new transaction or hop into the existing one
52 */
Chris Mason80b67942008-02-01 16:35:04 -050053static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040054{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040058 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000060 if (!cur_trans)
61 return -ENOMEM;
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040063 cur_trans->num_writers = 1;
64 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040065 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040066 init_waitqueue_head(&cur_trans->writer_wait);
67 init_waitqueue_head(&cur_trans->commit_wait);
68 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040069 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040070 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040071 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040072 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040073
Eric Paris6bef4d32010-02-23 19:43:04 +000074 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040075 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040076 cur_trans->delayed_refs.num_heads_ready = 0;
77 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040078 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040079 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040080 spin_lock_init(&cur_trans->delayed_refs.lock);
81
Chris Mason3063d292008-01-08 15:46:30 -050082 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040083 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050084 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040085 root->fs_info->btree_inode->i_mapping,
86 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040087 spin_lock(&root->fs_info->new_trans_lock);
88 root->fs_info->running_transaction = cur_trans;
89 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040090 } else {
91 cur_trans->num_writers++;
92 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040093 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040094
Chris Mason79154b12007-03-22 15:59:16 -040095 return 0;
96}
97
Chris Masond352ac62008-09-29 15:18:18 -040098/*
Chris Masond3977122009-01-05 21:25:51 -050099 * this does all the record keeping required to make sure that a reference
100 * counted root is properly recorded in a given transaction. This is required
101 * to make sure the old root from before we joined the transaction is deleted
102 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400103 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400104static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
105 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400106{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400107 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400108 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400110
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400111 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
112 (unsigned long)root->root_key.objectid,
113 BTRFS_ROOT_TRANS_TAG);
114 root->last_trans = trans->transid;
115 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400116 }
117 return 0;
118}
119
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400120int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
121 struct btrfs_root *root)
122{
123 if (!root->ref_cows)
124 return 0;
125
126 mutex_lock(&root->fs_info->trans_mutex);
127 if (root->last_trans == trans->transid) {
128 mutex_unlock(&root->fs_info->trans_mutex);
129 return 0;
130 }
131
132 record_root_in_trans(trans, root);
133 mutex_unlock(&root->fs_info->trans_mutex);
134 return 0;
135}
136
Chris Masond352ac62008-09-29 15:18:18 -0400137/* wait for commit against the current transaction to become unblocked
138 * when this is done, it is safe to start a new transaction, but the current
139 * transaction might not be fully on disk.
140 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400141static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400142{
Chris Masonf9295742008-07-17 12:54:14 -0400143 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400144
Chris Masonf9295742008-07-17 12:54:14 -0400145 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400146 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400147 DEFINE_WAIT(wait);
148 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500149 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400150 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
151 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000152 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400153 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000154 mutex_unlock(&root->fs_info->trans_mutex);
155 schedule();
156 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400157 }
Zhao Lei471fa172010-03-25 12:35:14 +0000158 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400159 put_transaction(cur_trans);
160 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400161}
162
Josef Bacik249ac1e2009-11-10 21:23:48 -0500163enum btrfs_trans_type {
164 TRANS_START,
165 TRANS_JOIN,
166 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400167 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500168};
169
Yan, Zhenga22285a2010-05-16 10:48:46 -0400170static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400171{
Chris Mason4bef0842008-09-08 11:18:08 -0400172 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500173 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
174 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400175 return 1;
176 return 0;
177}
178
179static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
180 u64 num_items, int type)
181{
182 struct btrfs_trans_handle *h;
183 struct btrfs_transaction *cur_trans;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400184 int ret;
liuboacce9522011-01-06 19:30:25 +0800185
186 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
187 return ERR_PTR(-EROFS);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400188again:
189 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
190 if (!h)
191 return ERR_PTR(-ENOMEM);
192
Josef Bacik0af3d002010-06-21 14:48:16 -0400193 if (type != TRANS_JOIN_NOLOCK)
194 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400195 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400196 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400197
Chris Mason79154b12007-03-22 15:59:16 -0400198 ret = join_transaction(root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000199 if (ret < 0) {
200 if (type != TRANS_JOIN_NOLOCK)
201 mutex_unlock(&root->fs_info->trans_mutex);
202 return ERR_PTR(ret);
203 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400204
Yan, Zhenga22285a2010-05-16 10:48:46 -0400205 cur_trans = root->fs_info->running_transaction;
206 cur_trans->use_count++;
Josef Bacik0af3d002010-06-21 14:48:16 -0400207 if (type != TRANS_JOIN_NOLOCK)
208 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400209
210 h->transid = cur_trans->transid;
211 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400212 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500213 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400214 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400215 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400216 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400217
Yan, Zhenga22285a2010-05-16 10:48:46 -0400218 smp_mb();
219 if (cur_trans->blocked && may_wait_transaction(root, type)) {
220 btrfs_commit_transaction(h, root);
221 goto again;
222 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400223
Yan, Zhenga22285a2010-05-16 10:48:46 -0400224 if (num_items > 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400225 ret = btrfs_trans_reserve_metadata(h, root, num_items);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400226 if (ret == -EAGAIN) {
227 btrfs_commit_transaction(h, root);
228 goto again;
229 }
230 if (ret < 0) {
231 btrfs_end_transaction(h, root);
232 return ERR_PTR(ret);
233 }
234 }
235
Josef Bacik0af3d002010-06-21 14:48:16 -0400236 if (type != TRANS_JOIN_NOLOCK)
237 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400238 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400239 if (type != TRANS_JOIN_NOLOCK)
240 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400241
242 if (!current->journal_info && type != TRANS_USERSPACE)
243 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400244 return h;
245}
246
Chris Masonf9295742008-07-17 12:54:14 -0400247struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400248 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400249{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400250 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400251}
252struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
253 int num_blocks)
254{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400255 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400256}
257
Josef Bacik0af3d002010-06-21 14:48:16 -0400258struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root,
259 int num_blocks)
260{
261 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
262}
263
Sage Weil9ca9ee02008-08-04 10:41:27 -0400264struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
265 int num_blocks)
266{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400267 return start_transaction(r, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400268}
269
Chris Masond352ac62008-09-29 15:18:18 -0400270/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400271static noinline int wait_for_commit(struct btrfs_root *root,
272 struct btrfs_transaction *commit)
273{
274 DEFINE_WAIT(wait);
275 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500276 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400277 prepare_to_wait(&commit->commit_wait, &wait,
278 TASK_UNINTERRUPTIBLE);
279 if (commit->commit_done)
280 break;
281 mutex_unlock(&root->fs_info->trans_mutex);
282 schedule();
283 mutex_lock(&root->fs_info->trans_mutex);
284 }
285 mutex_unlock(&root->fs_info->trans_mutex);
286 finish_wait(&commit->commit_wait, &wait);
287 return 0;
288}
289
Sage Weil46204592010-10-29 15:41:32 -0400290int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
291{
292 struct btrfs_transaction *cur_trans = NULL, *t;
293 int ret;
294
295 mutex_lock(&root->fs_info->trans_mutex);
296
297 ret = 0;
298 if (transid) {
299 if (transid <= root->fs_info->last_trans_committed)
300 goto out_unlock;
301
302 /* find specified transaction */
303 list_for_each_entry(t, &root->fs_info->trans_list, list) {
304 if (t->transid == transid) {
305 cur_trans = t;
306 break;
307 }
308 if (t->transid > transid)
309 break;
310 }
311 ret = -EINVAL;
312 if (!cur_trans)
313 goto out_unlock; /* bad transid */
314 } else {
315 /* find newest transaction that is committing | committed */
316 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
317 list) {
318 if (t->in_commit) {
319 if (t->commit_done)
320 goto out_unlock;
321 cur_trans = t;
322 break;
323 }
324 }
325 if (!cur_trans)
326 goto out_unlock; /* nothing committing|committed */
327 }
328
329 cur_trans->use_count++;
330 mutex_unlock(&root->fs_info->trans_mutex);
331
332 wait_for_commit(root, cur_trans);
333
334 mutex_lock(&root->fs_info->trans_mutex);
335 put_transaction(cur_trans);
336 ret = 0;
337out_unlock:
338 mutex_unlock(&root->fs_info->trans_mutex);
339 return ret;
340}
341
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400342#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400343/*
Chris Masond3977122009-01-05 21:25:51 -0500344 * rate limit against the drop_snapshot code. This helps to slow down new
345 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400346 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400347static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400348{
349 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400350 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400351
Chris Mason2dd3e672008-08-04 08:20:15 -0400352harder:
Chris Masonab78c842008-07-29 16:15:18 -0400353 if (atomic_read(&info->throttles)) {
354 DEFINE_WAIT(wait);
355 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400356 thr = atomic_read(&info->throttle_gen);
357
358 do {
359 prepare_to_wait(&info->transaction_throttle,
360 &wait, TASK_UNINTERRUPTIBLE);
361 if (!atomic_read(&info->throttles)) {
362 finish_wait(&info->transaction_throttle, &wait);
363 break;
364 }
365 schedule();
366 finish_wait(&info->transaction_throttle, &wait);
367 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400368 harder_count++;
369
370 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
371 harder_count < 2)
372 goto harder;
373
374 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
375 harder_count < 10)
376 goto harder;
377
378 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
379 harder_count < 20)
380 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400381 }
382}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400383#endif
Chris Masonab78c842008-07-29 16:15:18 -0400384
Chris Mason37d1aee2008-07-31 10:48:37 -0400385void btrfs_throttle(struct btrfs_root *root)
386{
387 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400388 if (!root->fs_info->open_ioctl_trans)
389 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400390 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400391}
392
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400393static int should_end_transaction(struct btrfs_trans_handle *trans,
394 struct btrfs_root *root)
395{
396 int ret;
397 ret = btrfs_block_rsv_check(trans, root,
398 &root->fs_info->global_block_rsv, 0, 5);
399 return ret ? 1 : 0;
400}
401
402int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
403 struct btrfs_root *root)
404{
405 struct btrfs_transaction *cur_trans = trans->transaction;
406 int updates;
407
408 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
409 return 1;
410
411 updates = trans->delayed_ref_updates;
412 trans->delayed_ref_updates = 0;
413 if (updates)
414 btrfs_run_delayed_refs(trans, root, updates);
415
416 return should_end_transaction(trans, root);
417}
418
Chris Mason89ce8a62008-06-25 16:01:31 -0400419static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400420 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400421{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400422 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400423 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400424 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400425
Chris Masonc3e69d52009-03-13 10:17:05 -0400426 while (count < 4) {
427 unsigned long cur = trans->delayed_ref_updates;
428 trans->delayed_ref_updates = 0;
429 if (cur &&
430 trans->transaction->delayed_refs.num_heads_ready > 64) {
431 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400432
433 /*
434 * do a full flush if the transaction is trying
435 * to close
436 */
437 if (trans->transaction->delayed_refs.flushing)
438 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400439 btrfs_run_delayed_refs(trans, root, cur);
440 } else {
441 break;
442 }
443 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400444 }
445
Yan, Zhenga22285a2010-05-16 10:48:46 -0400446 btrfs_trans_release_metadata(trans, root);
447
Josef Bacik0af3d002010-06-21 14:48:16 -0400448 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400449 should_end_transaction(trans, root))
450 trans->transaction->blocked = 1;
451
Josef Bacik0af3d002010-06-21 14:48:16 -0400452 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400453 if (throttle)
454 return btrfs_commit_transaction(trans, root);
455 else
456 wake_up_process(info->transaction_kthread);
457 }
458
Josef Bacik0af3d002010-06-21 14:48:16 -0400459 if (lock)
460 mutex_lock(&info->trans_mutex);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400461 WARN_ON(cur_trans != info->running_transaction);
Chris Masond5719762007-03-23 10:01:08 -0400462 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400463 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400464
Sage Weil99d16cb2010-10-29 15:37:34 -0400465 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400466 if (waitqueue_active(&cur_trans->writer_wait))
467 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400468 put_transaction(cur_trans);
Josef Bacik0af3d002010-06-21 14:48:16 -0400469 if (lock)
470 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400471
472 if (current->journal_info == trans)
473 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400474 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400475 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400476
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000477 if (throttle)
478 btrfs_run_delayed_iputs(root);
479
Chris Mason79154b12007-03-22 15:59:16 -0400480 return 0;
481}
482
Chris Mason89ce8a62008-06-25 16:01:31 -0400483int btrfs_end_transaction(struct btrfs_trans_handle *trans,
484 struct btrfs_root *root)
485{
Josef Bacik0af3d002010-06-21 14:48:16 -0400486 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400487}
488
489int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
490 struct btrfs_root *root)
491{
Josef Bacik0af3d002010-06-21 14:48:16 -0400492 return __btrfs_end_transaction(trans, root, 1, 1);
493}
494
495int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
496 struct btrfs_root *root)
497{
498 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400499}
500
Chris Masond352ac62008-09-29 15:18:18 -0400501/*
502 * when btree blocks are allocated, they have some corresponding bits set for
503 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400504 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400505 */
Chris Mason690587d2009-10-13 13:29:19 -0400506int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000507 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400508{
Chris Mason7c4452b2007-04-28 09:29:35 -0400509 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400510 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400511 int werr = 0;
512 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400513 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400514 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400515 u64 end;
516 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400517
Chris Masond3977122009-01-05 21:25:51 -0500518 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400519 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000520 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400521 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400522 break;
Chris Masond3977122009-01-05 21:25:51 -0500523 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400524 cond_resched();
525
Chris Mason5f39d392007-10-15 16:14:19 -0400526 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400527 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400528 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400529 if (!page)
530 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400531
532 btree_lock_page_hook(page);
533 if (!page->mapping) {
534 unlock_page(page);
535 page_cache_release(page);
536 continue;
537 }
538
Chris Mason6702ed42007-08-07 16:15:09 -0400539 if (PageWriteback(page)) {
540 if (PageDirty(page))
541 wait_on_page_writeback(page);
542 else {
543 unlock_page(page);
544 page_cache_release(page);
545 continue;
546 }
547 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400548 err = write_one_page(page, 0);
549 if (err)
550 werr = err;
551 page_cache_release(page);
552 }
553 }
Chris Mason690587d2009-10-13 13:29:19 -0400554 if (err)
555 werr = err;
556 return werr;
557}
558
559/*
560 * when btree blocks are allocated, they have some corresponding bits set for
561 * them in one of two extent_io trees. This is used to make sure all of
562 * those extents are on disk for transaction or log commit. We wait
563 * on all the pages and clear them from the dirty pages state tree
564 */
565int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000566 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400567{
568 int ret;
569 int err = 0;
570 int werr = 0;
571 struct page *page;
572 struct inode *btree_inode = root->fs_info->btree_inode;
573 u64 start = 0;
574 u64 end;
575 unsigned long index;
576
Chris Masond3977122009-01-05 21:25:51 -0500577 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000578 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
579 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400580 if (ret)
581 break;
582
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000583 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500584 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400585 index = start >> PAGE_CACHE_SHIFT;
586 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
587 page = find_get_page(btree_inode->i_mapping, index);
588 if (!page)
589 continue;
590 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400591 btree_lock_page_hook(page);
592 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400593 err = write_one_page(page, 0);
594 if (err)
595 werr = err;
596 }
Chris Mason105d9312008-11-18 12:13:12 -0500597 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400598 page_cache_release(page);
599 cond_resched();
600 }
601 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400602 if (err)
603 werr = err;
604 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400605}
606
Chris Mason690587d2009-10-13 13:29:19 -0400607/*
608 * when btree blocks are allocated, they have some corresponding bits set for
609 * them in one of two extent_io trees. This is used to make sure all of
610 * those extents are on disk for transaction or log commit
611 */
612int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000613 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400614{
615 int ret;
616 int ret2;
617
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000618 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
619 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400620 return ret || ret2;
621}
622
Chris Masond0c803c2008-09-11 16:17:57 -0400623int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
624 struct btrfs_root *root)
625{
626 if (!trans || !trans->transaction) {
627 struct inode *btree_inode;
628 btree_inode = root->fs_info->btree_inode;
629 return filemap_write_and_wait(btree_inode->i_mapping);
630 }
631 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000632 &trans->transaction->dirty_pages,
633 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400634}
635
Chris Masond352ac62008-09-29 15:18:18 -0400636/*
637 * this is used to update the root pointer in the tree of tree roots.
638 *
639 * But, in the case of the extent allocation tree, updating the root
640 * pointer may allocate blocks which may change the root of the extent
641 * allocation tree.
642 *
643 * So, this loops and repeats and makes sure the cowonly root didn't
644 * change while the root pointer was being updated in the metadata.
645 */
Chris Mason0b86a832008-03-24 15:01:56 -0400646static int update_cowonly_root(struct btrfs_trans_handle *trans,
647 struct btrfs_root *root)
648{
649 int ret;
650 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000651 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400652 struct btrfs_root *tree_root = root->fs_info->tree_root;
653
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000654 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400655 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400656
Chris Masond3977122009-01-05 21:25:51 -0500657 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400658 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000659 if (old_root_bytenr == root->node->start &&
660 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400661 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400662
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400663 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400664 ret = btrfs_update_root(trans, tree_root,
665 &root->root_key,
666 &root->root_item);
667 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400668
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000669 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400670 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400671 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400672 }
Yan Zheng276e6802009-07-30 09:40:40 -0400673
674 if (root != root->fs_info->extent_root)
675 switch_commit_root(root);
676
Chris Mason0b86a832008-03-24 15:01:56 -0400677 return 0;
678}
679
Chris Masond352ac62008-09-29 15:18:18 -0400680/*
681 * update all the cowonly tree roots on disk
682 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400683static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
684 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400685{
Chris Mason79154b12007-03-22 15:59:16 -0400686 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400687 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400688 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400689 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400690
Chris Mason56bec292009-03-13 10:10:06 -0400691 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
692 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400693
Yan Zheng84234f32008-10-29 14:49:05 -0400694 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400695 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400696 btrfs_tree_unlock(eb);
697 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400698
Chris Mason56bec292009-03-13 10:10:06 -0400699 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
700 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400701
Chris Masond3977122009-01-05 21:25:51 -0500702 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400703 next = fs_info->dirty_cowonly_roots.next;
704 list_del_init(next);
705 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400706
Chris Mason0b86a832008-03-24 15:01:56 -0400707 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400708 }
Yan Zheng276e6802009-07-30 09:40:40 -0400709
710 down_write(&fs_info->extent_commit_sem);
711 switch_commit_root(fs_info->extent_root);
712 up_write(&fs_info->extent_commit_sem);
713
Chris Mason79154b12007-03-22 15:59:16 -0400714 return 0;
715}
716
Chris Masond352ac62008-09-29 15:18:18 -0400717/*
718 * dead roots are old snapshots that need to be deleted. This allocates
719 * a dirty root struct and adds it into the list of dead roots that need to
720 * be deleted
721 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400722int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400723{
Yan Zhengb48652c2008-08-04 23:23:47 -0400724 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400725 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400726 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400727 return 0;
728}
729
Chris Masond352ac62008-09-29 15:18:18 -0400730/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400731 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400732 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400733static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
734 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400735{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400736 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400737 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400738 int i;
739 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400740 int err = 0;
741
Chris Masond3977122009-01-05 21:25:51 -0500742 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400743 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
744 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400745 ARRAY_SIZE(gang),
746 BTRFS_ROOT_TRANS_TAG);
747 if (ret == 0)
748 break;
749 for (i = 0; i < ret; i++) {
750 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400751 radix_tree_tag_clear(&fs_info->fs_roots_radix,
752 (unsigned long)root->root_key.objectid,
753 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400754
Chris Masone02119d2008-09-05 16:13:11 -0400755 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400756 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400757 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400758
Yan Zheng978d9102009-06-15 20:01:02 -0400759 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400760 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400761 btrfs_set_root_node(&root->root_item,
762 root->node);
763 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400764
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400765 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400766 &root->root_key,
767 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400768 if (err)
769 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400770 }
771 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400772 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400773}
774
Chris Masond352ac62008-09-29 15:18:18 -0400775/*
776 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
777 * otherwise every leaf in the btree is read and defragged.
778 */
Chris Masone9d0b132007-08-10 14:06:19 -0400779int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
780{
781 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400782 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400783 int ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400784 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400785
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400786 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400787 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400788
Chris Mason6b800532007-10-15 16:17:34 -0400789 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400790 trans = btrfs_start_transaction(root, 0);
791 if (IS_ERR(trans))
792 return PTR_ERR(trans);
793
Chris Masone9d0b132007-08-10 14:06:19 -0400794 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400795
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400796 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400797 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400798 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400799 cond_resched();
800
Chris Mason3f157a22008-06-25 16:01:31 -0400801 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400802 break;
803 }
804 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400805 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400806}
807
Yan Zheng2c47e6052009-06-27 21:07:35 -0400808#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400809/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400810 * when dropping snapshots, we generate a ton of delayed refs, and it makes
811 * sense not to join the transaction while it is trying to flush the current
812 * queue of delayed refs out.
813 *
814 * This is used by the drop snapshot code only
815 */
816static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
817{
818 DEFINE_WAIT(wait);
819
820 mutex_lock(&info->trans_mutex);
821 while (info->running_transaction &&
822 info->running_transaction->delayed_refs.flushing) {
823 prepare_to_wait(&info->transaction_wait, &wait,
824 TASK_UNINTERRUPTIBLE);
825 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400826
Chris Masonb7ec40d2009-03-12 20:12:45 -0400827 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400828
Chris Masonb7ec40d2009-03-12 20:12:45 -0400829 mutex_lock(&info->trans_mutex);
830 finish_wait(&info->transaction_wait, &wait);
831 }
832 mutex_unlock(&info->trans_mutex);
833 return 0;
834}
835
836/*
Chris Masond352ac62008-09-29 15:18:18 -0400837 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
838 * all of them
839 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400840int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400841{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400842 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400843 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400844 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400845 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400846
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400847 while (1) {
848 /*
849 * we don't want to jump in and create a bunch of
850 * delayed refs if the transaction is starting to close
851 */
852 wait_transaction_pre_flush(tree_root->fs_info);
853 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400854
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400855 /*
856 * we've joined a transaction, make sure it isn't
857 * closing right now
858 */
859 if (trans->transaction->delayed_refs.flushing) {
860 btrfs_end_transaction(trans, tree_root);
861 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400862 }
Chris Masona2135012008-06-25 16:01:30 -0400863
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400864 ret = btrfs_drop_snapshot(trans, root);
865 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400866 break;
Chris Masona2135012008-06-25 16:01:30 -0400867
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400868 ret = btrfs_update_root(trans, tree_root,
869 &root->root_key,
870 &root->root_item);
871 if (ret)
872 break;
Yanbcc63ab2008-07-30 16:29:20 -0400873
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400874 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400875 ret = btrfs_end_transaction(trans, tree_root);
876 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400877
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400878 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400879 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400880 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400881 BUG_ON(ret);
882
883 ret = btrfs_del_root(trans, tree_root, &root->root_key);
884 BUG_ON(ret);
885
886 nr = trans->blocks_used;
887 ret = btrfs_end_transaction(trans, tree_root);
888 BUG_ON(ret);
889
890 free_extent_buffer(root->node);
891 free_extent_buffer(root->commit_root);
892 kfree(root);
893
894 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400895 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400896}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400897#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400898
Chris Masond352ac62008-09-29 15:18:18 -0400899/*
900 * new snapshots need to be created at a very specific time in the
901 * transaction commit. This does the actual creation
902 */
Chris Mason80b67942008-02-01 16:35:04 -0500903static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500904 struct btrfs_fs_info *fs_info,
905 struct btrfs_pending_snapshot *pending)
906{
907 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500908 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500909 struct btrfs_root *tree_root = fs_info->tree_root;
910 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000911 struct btrfs_root *parent_root;
912 struct inode *parent_inode;
Josef Bacik6a912212010-11-20 09:48:00 +0000913 struct dentry *parent;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400914 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500915 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400916 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500917 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400918 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000919 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400920 u64 objectid;
Li Zefanb83cc962010-12-20 16:04:08 +0800921 u64 root_flags;
Chris Mason3063d292008-01-08 15:46:30 -0500922
Chris Mason80b67942008-02-01 16:35:04 -0500923 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
924 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400925 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500926 goto fail;
927 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400928
Chris Mason3063d292008-01-08 15:46:30 -0500929 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400930 if (ret) {
931 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500932 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400933 }
Chris Mason3063d292008-01-08 15:46:30 -0500934
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400935 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400936 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
937
938 if (to_reserve > 0) {
939 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400940 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400941 if (ret) {
942 pending->error = ret;
943 goto fail;
944 }
945 }
946
Chris Mason3063d292008-01-08 15:46:30 -0500947 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400948 key.offset = (u64)-1;
949 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500950
Yan, Zhenga22285a2010-05-16 10:48:46 -0400951 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000952
Yan, Zhenga22285a2010-05-16 10:48:46 -0400953 dentry = pending->dentry;
Josef Bacik6a912212010-11-20 09:48:00 +0000954 parent = dget_parent(dentry);
955 parent_inode = parent->d_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400956 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000957 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400958
Sage Weil6bdb72d2010-03-15 17:27:13 +0000959 /*
960 * insert the directory item
961 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000962 ret = btrfs_set_inode_index(parent_inode, &index);
963 BUG_ON(ret);
964 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400965 dentry->d_name.name, dentry->d_name.len,
966 parent_inode->i_ino, &key,
967 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000968 BUG_ON(ret);
969
Yan, Zhenga22285a2010-05-16 10:48:46 -0400970 btrfs_i_size_write(parent_inode, parent_inode->i_size +
971 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000972 ret = btrfs_update_inode(trans, parent_root, parent_inode);
973 BUG_ON(ret);
974
975 record_root_in_trans(trans, root);
976 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
977 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
978
Li Zefanb83cc962010-12-20 16:04:08 +0800979 root_flags = btrfs_root_flags(new_root_item);
980 if (pending->readonly)
981 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
982 else
983 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
984 btrfs_set_root_flags(new_root_item, root_flags);
985
Chris Mason925baed2008-06-25 16:01:30 -0400986 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400987 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400988 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500989
Chris Mason925baed2008-06-25 16:01:30 -0400990 btrfs_copy_root(trans, root, old, &tmp, objectid);
991 btrfs_tree_unlock(old);
992 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500993
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400994 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400995 /* record when the snapshot was created in key.offset */
996 key.offset = trans->transid;
997 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400998 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500999 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -05001000 BUG_ON(ret);
1001
Yan, Zhenga22285a2010-05-16 10:48:46 -04001002 /*
1003 * insert root back/forward references
1004 */
1005 ret = btrfs_add_root_ref(trans, tree_root, objectid,
1006 parent_root->root_key.objectid,
1007 parent_inode->i_ino, index,
1008 dentry->d_name.name, dentry->d_name.len);
1009 BUG_ON(ret);
Josef Bacik6a912212010-11-20 09:48:00 +00001010 dput(parent);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001011
1012 key.offset = (u64)-1;
1013 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
1014 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -04001015
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001016 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001017 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -05001018fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +00001019 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001020 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
1021 return 0;
Chris Mason3063d292008-01-08 15:46:30 -05001022}
1023
Chris Masond352ac62008-09-29 15:18:18 -04001024/*
1025 * create all the snapshots we've scheduled for creation
1026 */
Chris Mason80b67942008-02-01 16:35:04 -05001027static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1028 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -05001029{
1030 struct btrfs_pending_snapshot *pending;
1031 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -05001032 int ret;
1033
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001034 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -05001035 ret = create_pending_snapshot(trans, fs_info, pending);
1036 BUG_ON(ret);
1037 }
1038 return 0;
1039}
1040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041static void update_super_roots(struct btrfs_root *root)
1042{
1043 struct btrfs_root_item *root_item;
1044 struct btrfs_super_block *super;
1045
1046 super = &root->fs_info->super_copy;
1047
1048 root_item = &root->fs_info->chunk_root->root_item;
1049 super->chunk_root = root_item->bytenr;
1050 super->chunk_root_generation = root_item->generation;
1051 super->chunk_root_level = root_item->level;
1052
1053 root_item = &root->fs_info->tree_root->root_item;
1054 super->root = root_item->bytenr;
1055 super->generation = root_item->generation;
1056 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -04001057 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
1058 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001059}
1060
Chris Masonf36f3042009-07-30 10:04:48 -04001061int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1062{
1063 int ret = 0;
1064 spin_lock(&info->new_trans_lock);
1065 if (info->running_transaction)
1066 ret = info->running_transaction->in_commit;
1067 spin_unlock(&info->new_trans_lock);
1068 return ret;
1069}
1070
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001071int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1072{
1073 int ret = 0;
1074 spin_lock(&info->new_trans_lock);
1075 if (info->running_transaction)
1076 ret = info->running_transaction->blocked;
1077 spin_unlock(&info->new_trans_lock);
1078 return ret;
1079}
1080
Sage Weilbb9c12c2010-10-29 15:37:34 -04001081/*
1082 * wait for the current transaction commit to start and block subsequent
1083 * transaction joins
1084 */
1085static void wait_current_trans_commit_start(struct btrfs_root *root,
1086 struct btrfs_transaction *trans)
1087{
1088 DEFINE_WAIT(wait);
1089
1090 if (trans->in_commit)
1091 return;
1092
1093 while (1) {
1094 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1095 TASK_UNINTERRUPTIBLE);
1096 if (trans->in_commit) {
1097 finish_wait(&root->fs_info->transaction_blocked_wait,
1098 &wait);
1099 break;
1100 }
1101 mutex_unlock(&root->fs_info->trans_mutex);
1102 schedule();
1103 mutex_lock(&root->fs_info->trans_mutex);
1104 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1105 }
1106}
1107
1108/*
1109 * wait for the current transaction to start and then become unblocked.
1110 * caller holds ref.
1111 */
1112static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1113 struct btrfs_transaction *trans)
1114{
1115 DEFINE_WAIT(wait);
1116
1117 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1118 return;
1119
1120 while (1) {
1121 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1122 TASK_UNINTERRUPTIBLE);
1123 if (trans->commit_done ||
1124 (trans->in_commit && !trans->blocked)) {
1125 finish_wait(&root->fs_info->transaction_wait,
1126 &wait);
1127 break;
1128 }
1129 mutex_unlock(&root->fs_info->trans_mutex);
1130 schedule();
1131 mutex_lock(&root->fs_info->trans_mutex);
1132 finish_wait(&root->fs_info->transaction_wait,
1133 &wait);
1134 }
1135}
1136
1137/*
1138 * commit transactions asynchronously. once btrfs_commit_transaction_async
1139 * returns, any subsequent transaction will not be allowed to join.
1140 */
1141struct btrfs_async_commit {
1142 struct btrfs_trans_handle *newtrans;
1143 struct btrfs_root *root;
1144 struct delayed_work work;
1145};
1146
1147static void do_async_commit(struct work_struct *work)
1148{
1149 struct btrfs_async_commit *ac =
1150 container_of(work, struct btrfs_async_commit, work.work);
1151
1152 btrfs_commit_transaction(ac->newtrans, ac->root);
1153 kfree(ac);
1154}
1155
1156int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1157 struct btrfs_root *root,
1158 int wait_for_unblock)
1159{
1160 struct btrfs_async_commit *ac;
1161 struct btrfs_transaction *cur_trans;
1162
1163 ac = kmalloc(sizeof(*ac), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001164 if (!ac)
1165 return -ENOMEM;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001166
1167 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1168 ac->root = root;
1169 ac->newtrans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001170 if (IS_ERR(ac->newtrans)) {
1171 int err = PTR_ERR(ac->newtrans);
1172 kfree(ac);
1173 return err;
1174 }
Sage Weilbb9c12c2010-10-29 15:37:34 -04001175
1176 /* take transaction reference */
1177 mutex_lock(&root->fs_info->trans_mutex);
1178 cur_trans = trans->transaction;
1179 cur_trans->use_count++;
1180 mutex_unlock(&root->fs_info->trans_mutex);
1181
1182 btrfs_end_transaction(trans, root);
1183 schedule_delayed_work(&ac->work, 0);
1184
1185 /* wait for transaction to start and unblock */
1186 mutex_lock(&root->fs_info->trans_mutex);
1187 if (wait_for_unblock)
1188 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1189 else
1190 wait_current_trans_commit_start(root, cur_trans);
1191 put_transaction(cur_trans);
1192 mutex_unlock(&root->fs_info->trans_mutex);
1193
1194 return 0;
1195}
1196
1197/*
1198 * btrfs_transaction state sequence:
1199 * in_commit = 0, blocked = 0 (initial)
1200 * in_commit = 1, blocked = 1
1201 * blocked = 0
1202 * commit_done = 1
1203 */
Chris Mason79154b12007-03-22 15:59:16 -04001204int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1205 struct btrfs_root *root)
1206{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001207 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001208 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001209 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001210 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001211 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001212 int should_grow = 0;
1213 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001214 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001215
Chris Mason5a3f23d2009-03-31 13:27:11 -04001216 btrfs_run_ordered_operations(root, 0);
1217
Chris Mason56bec292009-03-13 10:10:06 -04001218 /* make a pass through all the delayed refs we have so far
1219 * any runnings procs may add more while we are here
1220 */
1221 ret = btrfs_run_delayed_refs(trans, root, 0);
1222 BUG_ON(ret);
1223
Yan, Zhenga22285a2010-05-16 10:48:46 -04001224 btrfs_trans_release_metadata(trans, root);
1225
Chris Masonb7ec40d2009-03-12 20:12:45 -04001226 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001227 /*
1228 * set the flushing flag so procs in this transaction have to
1229 * start sending their work down.
1230 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001231 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001232
Chris Masonc3e69d52009-03-13 10:17:05 -04001233 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001234 BUG_ON(ret);
1235
Chris Mason79154b12007-03-22 15:59:16 -04001236 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001237 if (cur_trans->in_commit) {
1238 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001239 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001240 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001241
Chris Mason79154b12007-03-22 15:59:16 -04001242 ret = wait_for_commit(root, cur_trans);
1243 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001244
1245 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001246 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001247 mutex_unlock(&root->fs_info->trans_mutex);
1248
Chris Mason79154b12007-03-22 15:59:16 -04001249 return 0;
1250 }
Chris Mason4313b392008-01-03 09:08:48 -05001251
Chris Mason2c90e5d2007-04-02 10:50:19 -04001252 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001253 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001254 wake_up(&root->fs_info->transaction_blocked_wait);
1255
Chris Masonccd467d2007-06-28 15:57:36 -04001256 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1257 prev_trans = list_entry(cur_trans->list.prev,
1258 struct btrfs_transaction, list);
1259 if (!prev_trans->commit_done) {
1260 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001261 mutex_unlock(&root->fs_info->trans_mutex);
1262
1263 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001264
Chris Masonccd467d2007-06-28 15:57:36 -04001265 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001266 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001267 }
1268 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001269
Chris Mason89573b92009-03-12 20:12:45 -04001270 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1271 should_grow = 1;
1272
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001273 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001274 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001275 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001276 if (!list_empty(&trans->transaction->pending_snapshots))
1277 snap_pending = 1;
1278
Chris Mason2c90e5d2007-04-02 10:50:19 -04001279 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001280 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001281
Sage Weil0bdb1db2010-02-19 14:13:50 -08001282 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001283 btrfs_start_delalloc_inodes(root, 1);
1284 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001285 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001286 }
1287
Chris Mason5a3f23d2009-03-31 13:27:11 -04001288 /*
1289 * rename don't use btrfs_join_transaction, so, once we
1290 * set the transaction to blocked above, we aren't going
1291 * to get any new ordered operations. We can safely run
1292 * it here and no for sure that nothing new will be added
1293 * to the list
1294 */
1295 btrfs_run_ordered_operations(root, 1);
1296
Chris Masoned3b3d3142010-05-25 10:12:41 -04001297 prepare_to_wait(&cur_trans->writer_wait, &wait,
1298 TASK_UNINTERRUPTIBLE);
1299
Chris Mason89573b92009-03-12 20:12:45 -04001300 smp_mb();
Sage Weil99d16cb2010-10-29 15:37:34 -04001301 if (cur_trans->num_writers > 1)
1302 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1303 else if (should_grow)
1304 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001305
Chris Mason79154b12007-03-22 15:59:16 -04001306 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001307 finish_wait(&cur_trans->writer_wait, &wait);
1308 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001309 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001310
Chris Mason3063d292008-01-08 15:46:30 -05001311 ret = create_pending_snapshots(trans, root->fs_info);
1312 BUG_ON(ret);
1313
Chris Mason56bec292009-03-13 10:10:06 -04001314 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1315 BUG_ON(ret);
1316
Chris Mason2c90e5d2007-04-02 10:50:19 -04001317 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001318
Chris Masone02119d2008-09-05 16:13:11 -04001319 /* btrfs_commit_tree_roots is responsible for getting the
1320 * various roots consistent with each other. Every pointer
1321 * in the tree of tree roots has to point to the most up to date
1322 * root for every subvolume and other tree. So, we have to keep
1323 * the tree logging code from jumping in and changing any
1324 * of the trees.
1325 *
1326 * At this point in the commit, there can't be any tree-log
1327 * writers, but a little lower down we drop the trans mutex
1328 * and let new people in. By holding the tree_log_mutex
1329 * from now until after the super is written, we avoid races
1330 * with the tree-log code.
1331 */
1332 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001333
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001334 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001335 BUG_ON(ret);
1336
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001338 * safe to free the root of tree log roots
1339 */
1340 btrfs_free_log_root_tree(trans, root->fs_info);
1341
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001343 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001344
Yan Zheng11833d62009-09-11 16:11:19 -04001345 btrfs_prepare_extent_commit(trans, root);
1346
Chris Mason78fae272007-03-25 11:35:08 -04001347 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001348 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001349 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001350 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001351
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001352 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1353 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001354 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001355
1356 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1357 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001358 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359
1360 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001361
1362 if (!root->fs_info->log_root_recovering) {
1363 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1364 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1365 }
1366
Chris Masona061fc82008-05-07 11:43:44 -04001367 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1368 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001369
Chris Masonf9295742008-07-17 12:54:14 -04001370 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001371
Chris Masonf9295742008-07-17 12:54:14 -04001372 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001373
Chris Mason78fae272007-03-25 11:35:08 -04001374 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001375 ret = btrfs_write_and_wait_transaction(trans, root);
1376 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001377 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001378
Chris Masone02119d2008-09-05 16:13:11 -04001379 /*
1380 * the super is written, we can safely allow the tree-loggers
1381 * to go about their business
1382 */
1383 mutex_unlock(&root->fs_info->tree_log_mutex);
1384
Yan Zheng11833d62009-09-11 16:11:19 -04001385 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001386
Zheng Yan1a40e232008-09-26 10:09:34 -04001387 mutex_lock(&root->fs_info->trans_mutex);
1388
Chris Mason2c90e5d2007-04-02 10:50:19 -04001389 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001390
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001391 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001392
Chris Mason2c90e5d2007-04-02 10:50:19 -04001393 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001394
Chris Mason79154b12007-03-22 15:59:16 -04001395 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001396 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001397
liubo1abe9b82011-03-24 11:18:59 +00001398 trace_btrfs_transaction_commit(root);
1399
Chris Mason78fae272007-03-25 11:35:08 -04001400 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001401
Josef Bacik9ed74f22009-09-11 16:12:44 -04001402 if (current->journal_info == trans)
1403 current->journal_info = NULL;
1404
Chris Mason2c90e5d2007-04-02 10:50:19 -04001405 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001406
1407 if (current != root->fs_info->transaction_kthread)
1408 btrfs_run_delayed_iputs(root);
1409
Chris Mason79154b12007-03-22 15:59:16 -04001410 return ret;
1411}
1412
Chris Masond352ac62008-09-29 15:18:18 -04001413/*
1414 * interface function to delete all the snapshots we have scheduled for deletion
1415 */
Chris Masone9d0b132007-08-10 14:06:19 -04001416int btrfs_clean_old_snapshots(struct btrfs_root *root)
1417{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001418 LIST_HEAD(list);
1419 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001420
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001421 mutex_lock(&fs_info->trans_mutex);
1422 list_splice_init(&fs_info->dead_roots, &list);
1423 mutex_unlock(&fs_info->trans_mutex);
1424
1425 while (!list_empty(&list)) {
1426 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001427 list_del(&root->root_list);
1428
1429 if (btrfs_header_backref_rev(root->node) <
1430 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001431 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001432 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001433 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001434 }
1435 return 0;
1436}