]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/btrfs/transaction.c
Btrfs: Pre-allocate space for data relocation
[thirdparty/linux.git] / fs / btrfs / transaction.c
CommitLineData
6cbd5570
CM
1/*
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
79154b1b 19#include <linux/fs.h>
5a0e3ad6 20#include <linux/slab.h>
34088780 21#include <linux/sched.h>
d3c2fdcf 22#include <linux/writeback.h>
5f39d397 23#include <linux/pagemap.h>
5f2cc086 24#include <linux/blkdev.h>
79154b1b
CM
25#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
925baedd 28#include "locking.h"
e02119d5 29#include "tree-log.h"
79154b1b 30
0f7d52f4
CM
31#define BTRFS_ROOT_TRANS_TAG 0
32
80b6794d 33static noinline void put_transaction(struct btrfs_transaction *transaction)
79154b1b 34{
2c90e5d6 35 WARN_ON(transaction->use_count == 0);
79154b1b 36 transaction->use_count--;
78fae27e 37 if (transaction->use_count == 0) {
8fd17795 38 list_del_init(&transaction->list);
2c90e5d6
CM
39 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
78fae27e 41 }
79154b1b
CM
42}
43
817d52f8
JB
44static noinline void switch_commit_root(struct btrfs_root *root)
45{
817d52f8
JB
46 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
817d52f8
JB
48}
49
d352ac68
CM
50/*
51 * either allocate a new transaction or hop into the existing one
52 */
80b6794d 53static noinline int join_transaction(struct btrfs_root *root)
79154b1b
CM
54{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
2c90e5d6
CM
58 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
79154b1b 60 BUG_ON(!cur_trans);
0f7d52f4 61 root->fs_info->generation++;
15ee9bc7
JB
62 cur_trans->num_writers = 1;
63 cur_trans->num_joined = 0;
0f7d52f4 64 cur_trans->transid = root->fs_info->generation;
79154b1b
CM
65 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
f9295749 68 cur_trans->blocked = 0;
d5719762 69 cur_trans->use_count = 1;
79154b1b 70 cur_trans->commit_done = 0;
08607c1b 71 cur_trans->start_time = get_seconds();
56bec294 72
6bef4d31 73 cur_trans->delayed_refs.root = RB_ROOT;
56bec294 74 cur_trans->delayed_refs.num_entries = 0;
c3e69d58
CM
75 cur_trans->delayed_refs.num_heads_ready = 0;
76 cur_trans->delayed_refs.num_heads = 0;
56bec294 77 cur_trans->delayed_refs.flushing = 0;
c3e69d58 78 cur_trans->delayed_refs.run_delayed_start = 0;
56bec294
CM
79 spin_lock_init(&cur_trans->delayed_refs.lock);
80
3063d29f 81 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
8fd17795 82 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
d1310b2e 83 extent_io_tree_init(&cur_trans->dirty_pages,
5f39d397
CM
84 root->fs_info->btree_inode->i_mapping,
85 GFP_NOFS);
48ec2cf8
CM
86 spin_lock(&root->fs_info->new_trans_lock);
87 root->fs_info->running_transaction = cur_trans;
88 spin_unlock(&root->fs_info->new_trans_lock);
15ee9bc7
JB
89 } else {
90 cur_trans->num_writers++;
91 cur_trans->num_joined++;
79154b1b 92 }
15ee9bc7 93
79154b1b
CM
94 return 0;
95}
96
d352ac68 97/*
d397712b
CM
98 * this does all the record keeping required to make sure that a reference
99 * counted root is properly recorded in a given transaction. This is required
100 * to make sure the old root from before we joined the transaction is deleted
101 * when the transaction commits
d352ac68 102 */
5d4f98a2
YZ
103static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
6702ed49 105{
5d4f98a2 106 if (root->ref_cows && root->last_trans < trans->transid) {
6702ed49 107 WARN_ON(root == root->fs_info->extent_root);
5d4f98a2
YZ
108 WARN_ON(root->commit_root != root->node);
109
110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
115 }
116 return 0;
117}
bcc63abb 118
5d4f98a2
YZ
119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
bcc63abb 124
5d4f98a2
YZ
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
6702ed49 129 }
5d4f98a2
YZ
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
6702ed49
CM
133 return 0;
134}
135
d352ac68
CM
136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
37d1aeee 140static void wait_current_trans(struct btrfs_root *root)
79154b1b 141{
f9295749 142 struct btrfs_transaction *cur_trans;
79154b1b 143
f9295749 144 cur_trans = root->fs_info->running_transaction;
37d1aeee 145 if (cur_trans && cur_trans->blocked) {
f9295749
CM
146 DEFINE_WAIT(wait);
147 cur_trans->use_count++;
d397712b 148 while (1) {
f9295749
CM
149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
471fa17d 151 if (!cur_trans->blocked)
f9295749 152 break;
471fa17d
ZL
153 mutex_unlock(&root->fs_info->trans_mutex);
154 schedule();
155 mutex_lock(&root->fs_info->trans_mutex);
f9295749 156 }
471fa17d 157 finish_wait(&root->fs_info->transaction_wait, &wait);
f9295749
CM
158 put_transaction(cur_trans);
159 }
37d1aeee
CM
160}
161
249ac1e5
JB
162enum btrfs_trans_type {
163 TRANS_START,
164 TRANS_JOIN,
165 TRANS_USERSPACE,
166};
167
a22285a6
YZ
168static int may_wait_transaction(struct btrfs_root *root, int type)
169{
170 if (!root->fs_info->log_root_recovering &&
171 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
172 type == TRANS_USERSPACE))
173 return 1;
174 return 0;
175}
176
e02119d5 177static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
a22285a6 178 u64 num_items, int type)
37d1aeee 179{
a22285a6
YZ
180 struct btrfs_trans_handle *h;
181 struct btrfs_transaction *cur_trans;
182 int retries = 0;
37d1aeee 183 int ret;
a22285a6
YZ
184again:
185 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
186 if (!h)
187 return ERR_PTR(-ENOMEM);
37d1aeee
CM
188
189 mutex_lock(&root->fs_info->trans_mutex);
a22285a6 190 if (may_wait_transaction(root, type))
37d1aeee 191 wait_current_trans(root);
a22285a6 192
79154b1b
CM
193 ret = join_transaction(root);
194 BUG_ON(ret);
0f7d52f4 195
a22285a6
YZ
196 cur_trans = root->fs_info->running_transaction;
197 cur_trans->use_count++;
198 mutex_unlock(&root->fs_info->trans_mutex);
199
200 h->transid = cur_trans->transid;
201 h->transaction = cur_trans;
79154b1b 202 h->blocks_used = 0;
d2fb3437 203 h->block_group = 0;
a22285a6 204 h->bytes_reserved = 0;
56bec294 205 h->delayed_ref_updates = 0;
f0486c68 206 h->block_rsv = NULL;
b7ec40d7 207
a22285a6
YZ
208 smp_mb();
209 if (cur_trans->blocked && may_wait_transaction(root, type)) {
210 btrfs_commit_transaction(h, root);
211 goto again;
212 }
213
214 if (num_items > 0) {
215 ret = btrfs_trans_reserve_metadata(h, root, num_items,
216 &retries);
217 if (ret == -EAGAIN) {
218 btrfs_commit_transaction(h, root);
219 goto again;
220 }
221 if (ret < 0) {
222 btrfs_end_transaction(h, root);
223 return ERR_PTR(ret);
224 }
225 }
9ed74f2d 226
a22285a6 227 mutex_lock(&root->fs_info->trans_mutex);
5d4f98a2 228 record_root_in_trans(h, root);
79154b1b 229 mutex_unlock(&root->fs_info->trans_mutex);
a22285a6
YZ
230
231 if (!current->journal_info && type != TRANS_USERSPACE)
232 current->journal_info = h;
79154b1b
CM
233 return h;
234}
235
f9295749 236struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
a22285a6 237 int num_items)
f9295749 238{
a22285a6 239 return start_transaction(root, num_items, TRANS_START);
f9295749
CM
240}
241struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
242 int num_blocks)
243{
a22285a6 244 return start_transaction(root, 0, TRANS_JOIN);
f9295749
CM
245}
246
9ca9ee09
SW
247struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
248 int num_blocks)
249{
a22285a6 250 return start_transaction(r, 0, TRANS_USERSPACE);
9ca9ee09
SW
251}
252
d352ac68 253/* wait for a transaction commit to be fully complete */
89ce8a63
CM
254static noinline int wait_for_commit(struct btrfs_root *root,
255 struct btrfs_transaction *commit)
256{
257 DEFINE_WAIT(wait);
258 mutex_lock(&root->fs_info->trans_mutex);
d397712b 259 while (!commit->commit_done) {
89ce8a63
CM
260 prepare_to_wait(&commit->commit_wait, &wait,
261 TASK_UNINTERRUPTIBLE);
262 if (commit->commit_done)
263 break;
264 mutex_unlock(&root->fs_info->trans_mutex);
265 schedule();
266 mutex_lock(&root->fs_info->trans_mutex);
267 }
268 mutex_unlock(&root->fs_info->trans_mutex);
269 finish_wait(&commit->commit_wait, &wait);
270 return 0;
271}
272
5d4f98a2 273#if 0
d352ac68 274/*
d397712b
CM
275 * rate limit against the drop_snapshot code. This helps to slow down new
276 * operations if the drop_snapshot code isn't able to keep up.
d352ac68 277 */
37d1aeee 278static void throttle_on_drops(struct btrfs_root *root)
ab78c84d
CM
279{
280 struct btrfs_fs_info *info = root->fs_info;
2dd3e67b 281 int harder_count = 0;
ab78c84d 282
2dd3e67b 283harder:
ab78c84d
CM
284 if (atomic_read(&info->throttles)) {
285 DEFINE_WAIT(wait);
286 int thr;
ab78c84d
CM
287 thr = atomic_read(&info->throttle_gen);
288
289 do {
290 prepare_to_wait(&info->transaction_throttle,
291 &wait, TASK_UNINTERRUPTIBLE);
292 if (!atomic_read(&info->throttles)) {
293 finish_wait(&info->transaction_throttle, &wait);
294 break;
295 }
296 schedule();
297 finish_wait(&info->transaction_throttle, &wait);
298 } while (thr == atomic_read(&info->throttle_gen));
2dd3e67b
CM
299 harder_count++;
300
301 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
302 harder_count < 2)
303 goto harder;
304
305 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
306 harder_count < 10)
307 goto harder;
308
309 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
310 harder_count < 20)
311 goto harder;
ab78c84d
CM
312 }
313}
5d4f98a2 314#endif
ab78c84d 315
37d1aeee
CM
316void btrfs_throttle(struct btrfs_root *root)
317{
318 mutex_lock(&root->fs_info->trans_mutex);
9ca9ee09
SW
319 if (!root->fs_info->open_ioctl_trans)
320 wait_current_trans(root);
37d1aeee 321 mutex_unlock(&root->fs_info->trans_mutex);
37d1aeee
CM
322}
323
8929ecfa
YZ
324static int should_end_transaction(struct btrfs_trans_handle *trans,
325 struct btrfs_root *root)
326{
327 int ret;
328 ret = btrfs_block_rsv_check(trans, root,
329 &root->fs_info->global_block_rsv, 0, 5);
330 return ret ? 1 : 0;
331}
332
333int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
334 struct btrfs_root *root)
335{
336 struct btrfs_transaction *cur_trans = trans->transaction;
337 int updates;
338
339 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
340 return 1;
341
342 updates = trans->delayed_ref_updates;
343 trans->delayed_ref_updates = 0;
344 if (updates)
345 btrfs_run_delayed_refs(trans, root, updates);
346
347 return should_end_transaction(trans, root);
348}
349
89ce8a63
CM
350static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
351 struct btrfs_root *root, int throttle)
79154b1b 352{
8929ecfa 353 struct btrfs_transaction *cur_trans = trans->transaction;
ab78c84d 354 struct btrfs_fs_info *info = root->fs_info;
c3e69d58
CM
355 int count = 0;
356
357 while (count < 4) {
358 unsigned long cur = trans->delayed_ref_updates;
359 trans->delayed_ref_updates = 0;
360 if (cur &&
361 trans->transaction->delayed_refs.num_heads_ready > 64) {
362 trans->delayed_ref_updates = 0;
b7ec40d7
CM
363
364 /*
365 * do a full flush if the transaction is trying
366 * to close
367 */
368 if (trans->transaction->delayed_refs.flushing)
369 cur = 0;
c3e69d58
CM
370 btrfs_run_delayed_refs(trans, root, cur);
371 } else {
372 break;
373 }
374 count++;
56bec294
CM
375 }
376
a22285a6
YZ
377 btrfs_trans_release_metadata(trans, root);
378
8929ecfa
YZ
379 if (!root->fs_info->open_ioctl_trans &&
380 should_end_transaction(trans, root))
381 trans->transaction->blocked = 1;
382
383 if (cur_trans->blocked && !cur_trans->in_commit) {
384 if (throttle)
385 return btrfs_commit_transaction(trans, root);
386 else
387 wake_up_process(info->transaction_kthread);
388 }
389
ab78c84d 390 mutex_lock(&info->trans_mutex);
8929ecfa 391 WARN_ON(cur_trans != info->running_transaction);
d5719762 392 WARN_ON(cur_trans->num_writers < 1);
ccd467d6 393 cur_trans->num_writers--;
89ce8a63 394
79154b1b
CM
395 if (waitqueue_active(&cur_trans->writer_wait))
396 wake_up(&cur_trans->writer_wait);
79154b1b 397 put_transaction(cur_trans);
ab78c84d 398 mutex_unlock(&info->trans_mutex);
9ed74f2d
JB
399
400 if (current->journal_info == trans)
401 current->journal_info = NULL;
d6025579 402 memset(trans, 0, sizeof(*trans));
2c90e5d6 403 kmem_cache_free(btrfs_trans_handle_cachep, trans);
ab78c84d 404
24bbcf04
YZ
405 if (throttle)
406 btrfs_run_delayed_iputs(root);
407
79154b1b
CM
408 return 0;
409}
410
89ce8a63
CM
411int btrfs_end_transaction(struct btrfs_trans_handle *trans,
412 struct btrfs_root *root)
413{
414 return __btrfs_end_transaction(trans, root, 0);
415}
416
417int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
418 struct btrfs_root *root)
419{
420 return __btrfs_end_transaction(trans, root, 1);
421}
422
d352ac68
CM
423/*
424 * when btree blocks are allocated, they have some corresponding bits set for
425 * them in one of two extent_io trees. This is used to make sure all of
690587d1 426 * those extents are sent to disk but does not wait on them
d352ac68 427 */
690587d1 428int btrfs_write_marked_extents(struct btrfs_root *root,
8cef4e16 429 struct extent_io_tree *dirty_pages, int mark)
79154b1b 430{
7c4452b9 431 int ret;
777e6bd7 432 int err = 0;
7c4452b9
CM
433 int werr = 0;
434 struct page *page;
7c4452b9 435 struct inode *btree_inode = root->fs_info->btree_inode;
777e6bd7 436 u64 start = 0;
5f39d397
CM
437 u64 end;
438 unsigned long index;
7c4452b9 439
d397712b 440 while (1) {
777e6bd7 441 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
8cef4e16 442 mark);
5f39d397 443 if (ret)
7c4452b9 444 break;
d397712b 445 while (start <= end) {
777e6bd7
CM
446 cond_resched();
447
5f39d397 448 index = start >> PAGE_CACHE_SHIFT;
35ebb934 449 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
4bef0848 450 page = find_get_page(btree_inode->i_mapping, index);
7c4452b9
CM
451 if (!page)
452 continue;
4bef0848
CM
453
454 btree_lock_page_hook(page);
455 if (!page->mapping) {
456 unlock_page(page);
457 page_cache_release(page);
458 continue;
459 }
460
6702ed49
CM
461 if (PageWriteback(page)) {
462 if (PageDirty(page))
463 wait_on_page_writeback(page);
464 else {
465 unlock_page(page);
466 page_cache_release(page);
467 continue;
468 }
469 }
7c4452b9
CM
470 err = write_one_page(page, 0);
471 if (err)
472 werr = err;
473 page_cache_release(page);
474 }
475 }
690587d1
CM
476 if (err)
477 werr = err;
478 return werr;
479}
480
481/*
482 * when btree blocks are allocated, they have some corresponding bits set for
483 * them in one of two extent_io trees. This is used to make sure all of
484 * those extents are on disk for transaction or log commit. We wait
485 * on all the pages and clear them from the dirty pages state tree
486 */
487int btrfs_wait_marked_extents(struct btrfs_root *root,
8cef4e16 488 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
489{
490 int ret;
491 int err = 0;
492 int werr = 0;
493 struct page *page;
494 struct inode *btree_inode = root->fs_info->btree_inode;
495 u64 start = 0;
496 u64 end;
497 unsigned long index;
498
d397712b 499 while (1) {
8cef4e16
YZ
500 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
501 mark);
777e6bd7
CM
502 if (ret)
503 break;
504
8cef4e16 505 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
d397712b 506 while (start <= end) {
777e6bd7
CM
507 index = start >> PAGE_CACHE_SHIFT;
508 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
509 page = find_get_page(btree_inode->i_mapping, index);
510 if (!page)
511 continue;
512 if (PageDirty(page)) {
4bef0848
CM
513 btree_lock_page_hook(page);
514 wait_on_page_writeback(page);
777e6bd7
CM
515 err = write_one_page(page, 0);
516 if (err)
517 werr = err;
518 }
105d931d 519 wait_on_page_writeback(page);
777e6bd7
CM
520 page_cache_release(page);
521 cond_resched();
522 }
523 }
7c4452b9
CM
524 if (err)
525 werr = err;
526 return werr;
79154b1b
CM
527}
528
690587d1
CM
529/*
530 * when btree blocks are allocated, they have some corresponding bits set for
531 * them in one of two extent_io trees. This is used to make sure all of
532 * those extents are on disk for transaction or log commit
533 */
534int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
8cef4e16 535 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
536{
537 int ret;
538 int ret2;
539
8cef4e16
YZ
540 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
541 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
690587d1
CM
542 return ret || ret2;
543}
544
d0c803c4
CM
545int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
546 struct btrfs_root *root)
547{
548 if (!trans || !trans->transaction) {
549 struct inode *btree_inode;
550 btree_inode = root->fs_info->btree_inode;
551 return filemap_write_and_wait(btree_inode->i_mapping);
552 }
553 return btrfs_write_and_wait_marked_extents(root,
8cef4e16
YZ
554 &trans->transaction->dirty_pages,
555 EXTENT_DIRTY);
d0c803c4
CM
556}
557
d352ac68
CM
558/*
559 * this is used to update the root pointer in the tree of tree roots.
560 *
561 * But, in the case of the extent allocation tree, updating the root
562 * pointer may allocate blocks which may change the root of the extent
563 * allocation tree.
564 *
565 * So, this loops and repeats and makes sure the cowonly root didn't
566 * change while the root pointer was being updated in the metadata.
567 */
0b86a832
CM
568static int update_cowonly_root(struct btrfs_trans_handle *trans,
569 struct btrfs_root *root)
79154b1b
CM
570{
571 int ret;
0b86a832 572 u64 old_root_bytenr;
86b9f2ec 573 u64 old_root_used;
0b86a832 574 struct btrfs_root *tree_root = root->fs_info->tree_root;
79154b1b 575
86b9f2ec 576 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 577 btrfs_write_dirty_block_groups(trans, root);
56bec294 578
d397712b 579 while (1) {
0b86a832 580 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec
YZ
581 if (old_root_bytenr == root->node->start &&
582 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 583 break;
87ef2bb4 584
5d4f98a2 585 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 586 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
587 &root->root_key,
588 &root->root_item);
79154b1b 589 BUG_ON(ret);
56bec294 590
86b9f2ec 591 old_root_used = btrfs_root_used(&root->root_item);
4a8c9a62 592 ret = btrfs_write_dirty_block_groups(trans, root);
56bec294 593 BUG_ON(ret);
0b86a832 594 }
276e680d
YZ
595
596 if (root != root->fs_info->extent_root)
597 switch_commit_root(root);
598
0b86a832
CM
599 return 0;
600}
601
d352ac68
CM
602/*
603 * update all the cowonly tree roots on disk
604 */
5d4f98a2
YZ
605static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
606 struct btrfs_root *root)
0b86a832
CM
607{
608 struct btrfs_fs_info *fs_info = root->fs_info;
609 struct list_head *next;
84234f3a 610 struct extent_buffer *eb;
56bec294 611 int ret;
84234f3a 612
56bec294
CM
613 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
614 BUG_ON(ret);
87ef2bb4 615
84234f3a 616 eb = btrfs_lock_root_node(fs_info->tree_root);
9fa8cfe7 617 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
84234f3a
YZ
618 btrfs_tree_unlock(eb);
619 free_extent_buffer(eb);
0b86a832 620
56bec294
CM
621 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
622 BUG_ON(ret);
87ef2bb4 623
d397712b 624 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
0b86a832
CM
625 next = fs_info->dirty_cowonly_roots.next;
626 list_del_init(next);
627 root = list_entry(next, struct btrfs_root, dirty_list);
87ef2bb4 628
0b86a832 629 update_cowonly_root(trans, root);
79154b1b 630 }
276e680d
YZ
631
632 down_write(&fs_info->extent_commit_sem);
633 switch_commit_root(fs_info->extent_root);
634 up_write(&fs_info->extent_commit_sem);
635
79154b1b
CM
636 return 0;
637}
638
d352ac68
CM
639/*
640 * dead roots are old snapshots that need to be deleted. This allocates
641 * a dirty root struct and adds it into the list of dead roots that need to
642 * be deleted
643 */
5d4f98a2 644int btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 645{
b48652c1 646 mutex_lock(&root->fs_info->trans_mutex);
5d4f98a2 647 list_add(&root->root_list, &root->fs_info->dead_roots);
b48652c1 648 mutex_unlock(&root->fs_info->trans_mutex);
5eda7b5e
CM
649 return 0;
650}
651
d352ac68 652/*
5d4f98a2 653 * update all the cowonly tree roots on disk
d352ac68 654 */
5d4f98a2
YZ
655static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
656 struct btrfs_root *root)
0f7d52f4 657{
0f7d52f4 658 struct btrfs_root *gang[8];
5d4f98a2 659 struct btrfs_fs_info *fs_info = root->fs_info;
0f7d52f4
CM
660 int i;
661 int ret;
54aa1f4d
CM
662 int err = 0;
663
d397712b 664 while (1) {
5d4f98a2
YZ
665 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
666 (void **)gang, 0,
0f7d52f4
CM
667 ARRAY_SIZE(gang),
668 BTRFS_ROOT_TRANS_TAG);
669 if (ret == 0)
670 break;
671 for (i = 0; i < ret; i++) {
672 root = gang[i];
5d4f98a2
YZ
673 radix_tree_tag_clear(&fs_info->fs_roots_radix,
674 (unsigned long)root->root_key.objectid,
675 BTRFS_ROOT_TRANS_TAG);
31153d81 676
e02119d5 677 btrfs_free_log(trans, root);
5d4f98a2 678 btrfs_update_reloc_root(trans, root);
d68fc57b 679 btrfs_orphan_commit_root(trans, root);
bcc63abb 680
978d910d 681 if (root->commit_root != root->node) {
817d52f8 682 switch_commit_root(root);
978d910d
YZ
683 btrfs_set_root_node(&root->root_item,
684 root->node);
685 }
5d4f98a2 686
5d4f98a2 687 err = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
688 &root->root_key,
689 &root->root_item);
54aa1f4d
CM
690 if (err)
691 break;
0f7d52f4
CM
692 }
693 }
54aa1f4d 694 return err;
0f7d52f4
CM
695}
696
d352ac68
CM
697/*
698 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
699 * otherwise every leaf in the btree is read and defragged.
700 */
e9d0b13b
CM
701int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
702{
703 struct btrfs_fs_info *info = root->fs_info;
e9d0b13b 704 struct btrfs_trans_handle *trans;
8929ecfa 705 int ret;
d3c2fdcf 706 unsigned long nr;
e9d0b13b 707
8929ecfa 708 if (xchg(&root->defrag_running, 1))
e9d0b13b 709 return 0;
8929ecfa 710
6b80053d 711 while (1) {
8929ecfa
YZ
712 trans = btrfs_start_transaction(root, 0);
713 if (IS_ERR(trans))
714 return PTR_ERR(trans);
715
e9d0b13b 716 ret = btrfs_defrag_leaves(trans, root, cacheonly);
8929ecfa 717
d3c2fdcf 718 nr = trans->blocks_used;
e9d0b13b 719 btrfs_end_transaction(trans, root);
d3c2fdcf 720 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
721 cond_resched();
722
3f157a2f 723 if (root->fs_info->closing || ret != -EAGAIN)
e9d0b13b
CM
724 break;
725 }
726 root->defrag_running = 0;
8929ecfa 727 return ret;
e9d0b13b
CM
728}
729
2c47e605 730#if 0
b7ec40d7
CM
731/*
732 * when dropping snapshots, we generate a ton of delayed refs, and it makes
733 * sense not to join the transaction while it is trying to flush the current
734 * queue of delayed refs out.
735 *
736 * This is used by the drop snapshot code only
737 */
738static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
739{
740 DEFINE_WAIT(wait);
741
742 mutex_lock(&info->trans_mutex);
743 while (info->running_transaction &&
744 info->running_transaction->delayed_refs.flushing) {
745 prepare_to_wait(&info->transaction_wait, &wait,
746 TASK_UNINTERRUPTIBLE);
747 mutex_unlock(&info->trans_mutex);
59bc5c75 748
b7ec40d7 749 schedule();
59bc5c75 750
b7ec40d7
CM
751 mutex_lock(&info->trans_mutex);
752 finish_wait(&info->transaction_wait, &wait);
753 }
754 mutex_unlock(&info->trans_mutex);
755 return 0;
756}
757
d352ac68
CM
758/*
759 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
760 * all of them
761 */
5d4f98a2 762int btrfs_drop_dead_root(struct btrfs_root *root)
0f7d52f4 763{
0f7d52f4 764 struct btrfs_trans_handle *trans;
5d4f98a2 765 struct btrfs_root *tree_root = root->fs_info->tree_root;
d3c2fdcf 766 unsigned long nr;
5d4f98a2 767 int ret;
58176a96 768
5d4f98a2
YZ
769 while (1) {
770 /*
771 * we don't want to jump in and create a bunch of
772 * delayed refs if the transaction is starting to close
773 */
774 wait_transaction_pre_flush(tree_root->fs_info);
775 trans = btrfs_start_transaction(tree_root, 1);
a2135011 776
5d4f98a2
YZ
777 /*
778 * we've joined a transaction, make sure it isn't
779 * closing right now
780 */
781 if (trans->transaction->delayed_refs.flushing) {
782 btrfs_end_transaction(trans, tree_root);
783 continue;
9f3a7427 784 }
58176a96 785
5d4f98a2
YZ
786 ret = btrfs_drop_snapshot(trans, root);
787 if (ret != -EAGAIN)
788 break;
a2135011 789
5d4f98a2
YZ
790 ret = btrfs_update_root(trans, tree_root,
791 &root->root_key,
792 &root->root_item);
793 if (ret)
54aa1f4d 794 break;
bcc63abb 795
d3c2fdcf 796 nr = trans->blocks_used;
0f7d52f4
CM
797 ret = btrfs_end_transaction(trans, tree_root);
798 BUG_ON(ret);
5eda7b5e 799
d3c2fdcf 800 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 801 cond_resched();
0f7d52f4 802 }
5d4f98a2
YZ
803 BUG_ON(ret);
804
805 ret = btrfs_del_root(trans, tree_root, &root->root_key);
806 BUG_ON(ret);
807
808 nr = trans->blocks_used;
809 ret = btrfs_end_transaction(trans, tree_root);
810 BUG_ON(ret);
811
812 free_extent_buffer(root->node);
813 free_extent_buffer(root->commit_root);
814 kfree(root);
815
816 btrfs_btree_balance_dirty(tree_root, nr);
54aa1f4d 817 return ret;
0f7d52f4 818}
2c47e605 819#endif
0f7d52f4 820
d352ac68
CM
821/*
822 * new snapshots need to be created at a very specific time in the
823 * transaction commit. This does the actual creation
824 */
80b6794d 825static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
826 struct btrfs_fs_info *fs_info,
827 struct btrfs_pending_snapshot *pending)
828{
829 struct btrfs_key key;
80b6794d 830 struct btrfs_root_item *new_root_item;
3063d29f
CM
831 struct btrfs_root *tree_root = fs_info->tree_root;
832 struct btrfs_root *root = pending->root;
6bdb72de
SW
833 struct btrfs_root *parent_root;
834 struct inode *parent_inode;
a22285a6 835 struct dentry *dentry;
3063d29f 836 struct extent_buffer *tmp;
925baedd 837 struct extent_buffer *old;
3063d29f 838 int ret;
d68fc57b
YZ
839 int retries = 0;
840 u64 to_reserve = 0;
6bdb72de 841 u64 index = 0;
a22285a6 842 u64 objectid;
3063d29f 843
80b6794d
CM
844 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
845 if (!new_root_item) {
a22285a6 846 pending->error = -ENOMEM;
80b6794d
CM
847 goto fail;
848 }
a22285a6 849
3063d29f 850 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
a22285a6
YZ
851 if (ret) {
852 pending->error = ret;
3063d29f 853 goto fail;
a22285a6 854 }
3063d29f 855
d68fc57b
YZ
856 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
857
858 if (to_reserve > 0) {
859 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
860 to_reserve, &retries);
861 if (ret) {
862 pending->error = ret;
863 goto fail;
864 }
865 }
866
3063d29f 867 key.objectid = objectid;
a22285a6
YZ
868 key.offset = (u64)-1;
869 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 870
a22285a6 871 trans->block_rsv = &pending->block_rsv;
3de4586c 872
a22285a6
YZ
873 dentry = pending->dentry;
874 parent_inode = dentry->d_parent->d_inode;
875 parent_root = BTRFS_I(parent_inode)->root;
6bdb72de 876 record_root_in_trans(trans, parent_root);
a22285a6 877
3063d29f
CM
878 /*
879 * insert the directory item
880 */
3de4586c 881 ret = btrfs_set_inode_index(parent_inode, &index);
6bdb72de 882 BUG_ON(ret);
0660b5af 883 ret = btrfs_insert_dir_item(trans, parent_root,
a22285a6
YZ
884 dentry->d_name.name, dentry->d_name.len,
885 parent_inode->i_ino, &key,
886 BTRFS_FT_DIR, index);
6bdb72de 887 BUG_ON(ret);
0660b5af 888
a22285a6
YZ
889 btrfs_i_size_write(parent_inode, parent_inode->i_size +
890 dentry->d_name.len * 2);
52c26179
YZ
891 ret = btrfs_update_inode(trans, parent_root, parent_inode);
892 BUG_ON(ret);
893
6bdb72de
SW
894 record_root_in_trans(trans, root);
895 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
896 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
897
898 old = btrfs_lock_root_node(root);
899 btrfs_cow_block(trans, root, old, NULL, 0, &old);
900 btrfs_set_lock_blocking(old);
901
902 btrfs_copy_root(trans, root, old, &tmp, objectid);
903 btrfs_tree_unlock(old);
904 free_extent_buffer(old);
905
906 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
907 /* record when the snapshot was created in key.offset */
908 key.offset = trans->transid;
909 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
910 btrfs_tree_unlock(tmp);
911 free_extent_buffer(tmp);
a22285a6 912 BUG_ON(ret);
6bdb72de 913
a22285a6
YZ
914 /*
915 * insert root back/forward references
916 */
917 ret = btrfs_add_root_ref(trans, tree_root, objectid,
0660b5af 918 parent_root->root_key.objectid,
a22285a6
YZ
919 parent_inode->i_ino, index,
920 dentry->d_name.name, dentry->d_name.len);
0660b5af
CM
921 BUG_ON(ret);
922
a22285a6
YZ
923 key.offset = (u64)-1;
924 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
925 BUG_ON(IS_ERR(pending->snap));
d68fc57b
YZ
926
927 btrfs_orphan_post_snapshot(trans, pending);
3063d29f 928fail:
6bdb72de 929 kfree(new_root_item);
a22285a6
YZ
930 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
931 return 0;
3063d29f
CM
932}
933
d352ac68
CM
934/*
935 * create all the snapshots we've scheduled for creation
936 */
80b6794d
CM
937static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
938 struct btrfs_fs_info *fs_info)
3de4586c
CM
939{
940 struct btrfs_pending_snapshot *pending;
941 struct list_head *head = &trans->transaction->pending_snapshots;
3de4586c
CM
942 int ret;
943
c6e30871 944 list_for_each_entry(pending, head, list) {
3de4586c
CM
945 ret = create_pending_snapshot(trans, fs_info, pending);
946 BUG_ON(ret);
947 }
948 return 0;
949}
950
5d4f98a2
YZ
951static void update_super_roots(struct btrfs_root *root)
952{
953 struct btrfs_root_item *root_item;
954 struct btrfs_super_block *super;
955
956 super = &root->fs_info->super_copy;
957
958 root_item = &root->fs_info->chunk_root->root_item;
959 super->chunk_root = root_item->bytenr;
960 super->chunk_root_generation = root_item->generation;
961 super->chunk_root_level = root_item->level;
962
963 root_item = &root->fs_info->tree_root->root_item;
964 super->root = root_item->bytenr;
965 super->generation = root_item->generation;
966 super->root_level = root_item->level;
967}
968
f36f3042
CM
969int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
970{
971 int ret = 0;
972 spin_lock(&info->new_trans_lock);
973 if (info->running_transaction)
974 ret = info->running_transaction->in_commit;
975 spin_unlock(&info->new_trans_lock);
976 return ret;
977}
978
8929ecfa
YZ
979int btrfs_transaction_blocked(struct btrfs_fs_info *info)
980{
981 int ret = 0;
982 spin_lock(&info->new_trans_lock);
983 if (info->running_transaction)
984 ret = info->running_transaction->blocked;
985 spin_unlock(&info->new_trans_lock);
986 return ret;
987}
988
79154b1b
CM
989int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
990 struct btrfs_root *root)
991{
15ee9bc7
JB
992 unsigned long joined = 0;
993 unsigned long timeout = 1;
79154b1b 994 struct btrfs_transaction *cur_trans;
8fd17795 995 struct btrfs_transaction *prev_trans = NULL;
79154b1b 996 DEFINE_WAIT(wait);
15ee9bc7 997 int ret;
89573b9c
CM
998 int should_grow = 0;
999 unsigned long now = get_seconds();
dccae999 1000 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
79154b1b 1001
5a3f23d5
CM
1002 btrfs_run_ordered_operations(root, 0);
1003
56bec294
CM
1004 /* make a pass through all the delayed refs we have so far
1005 * any runnings procs may add more while we are here
1006 */
1007 ret = btrfs_run_delayed_refs(trans, root, 0);
1008 BUG_ON(ret);
1009
a22285a6
YZ
1010 btrfs_trans_release_metadata(trans, root);
1011
b7ec40d7 1012 cur_trans = trans->transaction;
56bec294
CM
1013 /*
1014 * set the flushing flag so procs in this transaction have to
1015 * start sending their work down.
1016 */
b7ec40d7 1017 cur_trans->delayed_refs.flushing = 1;
56bec294 1018
c3e69d58 1019 ret = btrfs_run_delayed_refs(trans, root, 0);
56bec294
CM
1020 BUG_ON(ret);
1021
79154b1b 1022 mutex_lock(&root->fs_info->trans_mutex);
b7ec40d7
CM
1023 if (cur_trans->in_commit) {
1024 cur_trans->use_count++;
ccd467d6 1025 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b 1026 btrfs_end_transaction(trans, root);
ccd467d6 1027
79154b1b
CM
1028 ret = wait_for_commit(root, cur_trans);
1029 BUG_ON(ret);
15ee9bc7
JB
1030
1031 mutex_lock(&root->fs_info->trans_mutex);
79154b1b 1032 put_transaction(cur_trans);
15ee9bc7
JB
1033 mutex_unlock(&root->fs_info->trans_mutex);
1034
79154b1b
CM
1035 return 0;
1036 }
4313b399 1037
2c90e5d6 1038 trans->transaction->in_commit = 1;
f9295749 1039 trans->transaction->blocked = 1;
ccd467d6
CM
1040 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1041 prev_trans = list_entry(cur_trans->list.prev,
1042 struct btrfs_transaction, list);
1043 if (!prev_trans->commit_done) {
1044 prev_trans->use_count++;
ccd467d6
CM
1045 mutex_unlock(&root->fs_info->trans_mutex);
1046
1047 wait_for_commit(root, prev_trans);
ccd467d6 1048
ccd467d6 1049 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 1050 put_transaction(prev_trans);
ccd467d6
CM
1051 }
1052 }
15ee9bc7 1053
89573b9c
CM
1054 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1055 should_grow = 1;
1056
15ee9bc7 1057 do {
7ea394f1 1058 int snap_pending = 0;
15ee9bc7 1059 joined = cur_trans->num_joined;
7ea394f1
YZ
1060 if (!list_empty(&trans->transaction->pending_snapshots))
1061 snap_pending = 1;
1062
2c90e5d6 1063 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 1064 prepare_to_wait(&cur_trans->writer_wait, &wait,
79154b1b 1065 TASK_UNINTERRUPTIBLE);
15ee9bc7
JB
1066
1067 if (cur_trans->num_writers > 1)
1068 timeout = MAX_SCHEDULE_TIMEOUT;
89573b9c 1069 else if (should_grow)
15ee9bc7
JB
1070 timeout = 1;
1071
79154b1b 1072 mutex_unlock(&root->fs_info->trans_mutex);
15ee9bc7 1073
0bdb1db2 1074 if (flush_on_commit || snap_pending) {
24bbcf04
YZ
1075 btrfs_start_delalloc_inodes(root, 1);
1076 ret = btrfs_wait_ordered_extents(root, 0, 1);
ebecd3d9 1077 BUG_ON(ret);
7ea394f1
YZ
1078 }
1079
5a3f23d5
CM
1080 /*
1081 * rename don't use btrfs_join_transaction, so, once we
1082 * set the transaction to blocked above, we aren't going
1083 * to get any new ordered operations. We can safely run
1084 * it here and no for sure that nothing new will be added
1085 * to the list
1086 */
1087 btrfs_run_ordered_operations(root, 1);
1088
89573b9c
CM
1089 smp_mb();
1090 if (cur_trans->num_writers > 1 || should_grow)
1091 schedule_timeout(timeout);
15ee9bc7 1092
79154b1b 1093 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7
JB
1094 finish_wait(&cur_trans->writer_wait, &wait);
1095 } while (cur_trans->num_writers > 1 ||
89573b9c 1096 (should_grow && cur_trans->num_joined != joined));
15ee9bc7 1097
3063d29f
CM
1098 ret = create_pending_snapshots(trans, root->fs_info);
1099 BUG_ON(ret);
1100
56bec294
CM
1101 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1102 BUG_ON(ret);
1103
2c90e5d6 1104 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 1105
e02119d5
CM
1106 /* btrfs_commit_tree_roots is responsible for getting the
1107 * various roots consistent with each other. Every pointer
1108 * in the tree of tree roots has to point to the most up to date
1109 * root for every subvolume and other tree. So, we have to keep
1110 * the tree logging code from jumping in and changing any
1111 * of the trees.
1112 *
1113 * At this point in the commit, there can't be any tree-log
1114 * writers, but a little lower down we drop the trans mutex
1115 * and let new people in. By holding the tree_log_mutex
1116 * from now until after the super is written, we avoid races
1117 * with the tree-log code.
1118 */
1119 mutex_lock(&root->fs_info->tree_log_mutex);
1120
5d4f98a2 1121 ret = commit_fs_roots(trans, root);
54aa1f4d
CM
1122 BUG_ON(ret);
1123
5d4f98a2 1124 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
1125 * safe to free the root of tree log roots
1126 */
1127 btrfs_free_log_root_tree(trans, root->fs_info);
1128
5d4f98a2 1129 ret = commit_cowonly_roots(trans, root);
79154b1b 1130 BUG_ON(ret);
54aa1f4d 1131
11833d66
YZ
1132 btrfs_prepare_extent_commit(trans, root);
1133
78fae27e 1134 cur_trans = root->fs_info->running_transaction;
cee36a03 1135 spin_lock(&root->fs_info->new_trans_lock);
78fae27e 1136 root->fs_info->running_transaction = NULL;
cee36a03 1137 spin_unlock(&root->fs_info->new_trans_lock);
5d4f98a2
YZ
1138
1139 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1140 root->fs_info->tree_root->node);
817d52f8 1141 switch_commit_root(root->fs_info->tree_root);
5d4f98a2
YZ
1142
1143 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1144 root->fs_info->chunk_root->node);
817d52f8 1145 switch_commit_root(root->fs_info->chunk_root);
5d4f98a2
YZ
1146
1147 update_super_roots(root);
e02119d5
CM
1148
1149 if (!root->fs_info->log_root_recovering) {
1150 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1151 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1152 }
1153
a061fc8d
CM
1154 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1155 sizeof(root->fs_info->super_copy));
ccd467d6 1156
f9295749 1157 trans->transaction->blocked = 0;
b7ec40d7 1158
f9295749 1159 wake_up(&root->fs_info->transaction_wait);
e6dcd2dc 1160
78fae27e 1161 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b
CM
1162 ret = btrfs_write_and_wait_transaction(trans, root);
1163 BUG_ON(ret);
a512bbf8 1164 write_ctree_super(trans, root, 0);
4313b399 1165
e02119d5
CM
1166 /*
1167 * the super is written, we can safely allow the tree-loggers
1168 * to go about their business
1169 */
1170 mutex_unlock(&root->fs_info->tree_log_mutex);
1171
11833d66 1172 btrfs_finish_extent_commit(trans, root);
4313b399 1173
1a40e23b
ZY
1174 mutex_lock(&root->fs_info->trans_mutex);
1175
2c90e5d6 1176 cur_trans->commit_done = 1;
b7ec40d7 1177
15ee9bc7 1178 root->fs_info->last_trans_committed = cur_trans->transid;
817d52f8 1179
2c90e5d6 1180 wake_up(&cur_trans->commit_wait);
3de4586c 1181
78fae27e 1182 put_transaction(cur_trans);
79154b1b 1183 put_transaction(cur_trans);
58176a96 1184
78fae27e 1185 mutex_unlock(&root->fs_info->trans_mutex);
3de4586c 1186
9ed74f2d
JB
1187 if (current->journal_info == trans)
1188 current->journal_info = NULL;
1189
2c90e5d6 1190 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04
YZ
1191
1192 if (current != root->fs_info->transaction_kthread)
1193 btrfs_run_delayed_iputs(root);
1194
79154b1b
CM
1195 return ret;
1196}
1197
d352ac68
CM
1198/*
1199 * interface function to delete all the snapshots we have scheduled for deletion
1200 */
e9d0b13b
CM
1201int btrfs_clean_old_snapshots(struct btrfs_root *root)
1202{
5d4f98a2
YZ
1203 LIST_HEAD(list);
1204 struct btrfs_fs_info *fs_info = root->fs_info;
1205
1206 mutex_lock(&fs_info->trans_mutex);
1207 list_splice_init(&fs_info->dead_roots, &list);
1208 mutex_unlock(&fs_info->trans_mutex);
e9d0b13b 1209
5d4f98a2
YZ
1210 while (!list_empty(&list)) {
1211 root = list_entry(list.next, struct btrfs_root, root_list);
76dda93c
YZ
1212 list_del(&root->root_list);
1213
1214 if (btrfs_header_backref_rev(root->node) <
1215 BTRFS_MIXED_BACKREF_REV)
1216 btrfs_drop_snapshot(root, 0);
1217 else
1218 btrfs_drop_snapshot(root, 1);
e9d0b13b
CM
1219 }
1220 return 0;
1221}