]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/btrfs/transaction.c
Btrfs: Integrate metadata reservation with start_transaction
[net-next-2.6.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
89ce8a63
CM
324static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
325 struct btrfs_root *root, int throttle)
79154b1b
CM
326{
327 struct btrfs_transaction *cur_trans;
ab78c84d 328 struct btrfs_fs_info *info = root->fs_info;
c3e69d58
CM
329 int count = 0;
330
331 while (count < 4) {
332 unsigned long cur = trans->delayed_ref_updates;
333 trans->delayed_ref_updates = 0;
334 if (cur &&
335 trans->transaction->delayed_refs.num_heads_ready > 64) {
336 trans->delayed_ref_updates = 0;
b7ec40d7
CM
337
338 /*
339 * do a full flush if the transaction is trying
340 * to close
341 */
342 if (trans->transaction->delayed_refs.flushing)
343 cur = 0;
c3e69d58
CM
344 btrfs_run_delayed_refs(trans, root, cur);
345 } else {
346 break;
347 }
348 count++;
56bec294
CM
349 }
350
a22285a6
YZ
351 btrfs_trans_release_metadata(trans, root);
352
ab78c84d
CM
353 mutex_lock(&info->trans_mutex);
354 cur_trans = info->running_transaction;
ccd467d6 355 WARN_ON(cur_trans != trans->transaction);
d5719762 356 WARN_ON(cur_trans->num_writers < 1);
ccd467d6 357 cur_trans->num_writers--;
89ce8a63 358
79154b1b
CM
359 if (waitqueue_active(&cur_trans->writer_wait))
360 wake_up(&cur_trans->writer_wait);
79154b1b 361 put_transaction(cur_trans);
ab78c84d 362 mutex_unlock(&info->trans_mutex);
9ed74f2d
JB
363
364 if (current->journal_info == trans)
365 current->journal_info = NULL;
d6025579 366 memset(trans, 0, sizeof(*trans));
2c90e5d6 367 kmem_cache_free(btrfs_trans_handle_cachep, trans);
ab78c84d 368
24bbcf04
YZ
369 if (throttle)
370 btrfs_run_delayed_iputs(root);
371
79154b1b
CM
372 return 0;
373}
374
89ce8a63
CM
375int btrfs_end_transaction(struct btrfs_trans_handle *trans,
376 struct btrfs_root *root)
377{
378 return __btrfs_end_transaction(trans, root, 0);
379}
380
381int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
382 struct btrfs_root *root)
383{
384 return __btrfs_end_transaction(trans, root, 1);
385}
386
d352ac68
CM
387/*
388 * when btree blocks are allocated, they have some corresponding bits set for
389 * them in one of two extent_io trees. This is used to make sure all of
690587d1 390 * those extents are sent to disk but does not wait on them
d352ac68 391 */
690587d1 392int btrfs_write_marked_extents(struct btrfs_root *root,
8cef4e16 393 struct extent_io_tree *dirty_pages, int mark)
79154b1b 394{
7c4452b9 395 int ret;
777e6bd7 396 int err = 0;
7c4452b9
CM
397 int werr = 0;
398 struct page *page;
7c4452b9 399 struct inode *btree_inode = root->fs_info->btree_inode;
777e6bd7 400 u64 start = 0;
5f39d397
CM
401 u64 end;
402 unsigned long index;
7c4452b9 403
d397712b 404 while (1) {
777e6bd7 405 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
8cef4e16 406 mark);
5f39d397 407 if (ret)
7c4452b9 408 break;
d397712b 409 while (start <= end) {
777e6bd7
CM
410 cond_resched();
411
5f39d397 412 index = start >> PAGE_CACHE_SHIFT;
35ebb934 413 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
4bef0848 414 page = find_get_page(btree_inode->i_mapping, index);
7c4452b9
CM
415 if (!page)
416 continue;
4bef0848
CM
417
418 btree_lock_page_hook(page);
419 if (!page->mapping) {
420 unlock_page(page);
421 page_cache_release(page);
422 continue;
423 }
424
6702ed49
CM
425 if (PageWriteback(page)) {
426 if (PageDirty(page))
427 wait_on_page_writeback(page);
428 else {
429 unlock_page(page);
430 page_cache_release(page);
431 continue;
432 }
433 }
7c4452b9
CM
434 err = write_one_page(page, 0);
435 if (err)
436 werr = err;
437 page_cache_release(page);
438 }
439 }
690587d1
CM
440 if (err)
441 werr = err;
442 return werr;
443}
444
445/*
446 * when btree blocks are allocated, they have some corresponding bits set for
447 * them in one of two extent_io trees. This is used to make sure all of
448 * those extents are on disk for transaction or log commit. We wait
449 * on all the pages and clear them from the dirty pages state tree
450 */
451int btrfs_wait_marked_extents(struct btrfs_root *root,
8cef4e16 452 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
453{
454 int ret;
455 int err = 0;
456 int werr = 0;
457 struct page *page;
458 struct inode *btree_inode = root->fs_info->btree_inode;
459 u64 start = 0;
460 u64 end;
461 unsigned long index;
462
d397712b 463 while (1) {
8cef4e16
YZ
464 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
465 mark);
777e6bd7
CM
466 if (ret)
467 break;
468
8cef4e16 469 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
d397712b 470 while (start <= end) {
777e6bd7
CM
471 index = start >> PAGE_CACHE_SHIFT;
472 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
473 page = find_get_page(btree_inode->i_mapping, index);
474 if (!page)
475 continue;
476 if (PageDirty(page)) {
4bef0848
CM
477 btree_lock_page_hook(page);
478 wait_on_page_writeback(page);
777e6bd7
CM
479 err = write_one_page(page, 0);
480 if (err)
481 werr = err;
482 }
105d931d 483 wait_on_page_writeback(page);
777e6bd7
CM
484 page_cache_release(page);
485 cond_resched();
486 }
487 }
7c4452b9
CM
488 if (err)
489 werr = err;
490 return werr;
79154b1b
CM
491}
492
690587d1
CM
493/*
494 * when btree blocks are allocated, they have some corresponding bits set for
495 * them in one of two extent_io trees. This is used to make sure all of
496 * those extents are on disk for transaction or log commit
497 */
498int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
8cef4e16 499 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
500{
501 int ret;
502 int ret2;
503
8cef4e16
YZ
504 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
505 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
690587d1
CM
506 return ret || ret2;
507}
508
d0c803c4
CM
509int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
510 struct btrfs_root *root)
511{
512 if (!trans || !trans->transaction) {
513 struct inode *btree_inode;
514 btree_inode = root->fs_info->btree_inode;
515 return filemap_write_and_wait(btree_inode->i_mapping);
516 }
517 return btrfs_write_and_wait_marked_extents(root,
8cef4e16
YZ
518 &trans->transaction->dirty_pages,
519 EXTENT_DIRTY);
d0c803c4
CM
520}
521
d352ac68
CM
522/*
523 * this is used to update the root pointer in the tree of tree roots.
524 *
525 * But, in the case of the extent allocation tree, updating the root
526 * pointer may allocate blocks which may change the root of the extent
527 * allocation tree.
528 *
529 * So, this loops and repeats and makes sure the cowonly root didn't
530 * change while the root pointer was being updated in the metadata.
531 */
0b86a832
CM
532static int update_cowonly_root(struct btrfs_trans_handle *trans,
533 struct btrfs_root *root)
79154b1b
CM
534{
535 int ret;
0b86a832 536 u64 old_root_bytenr;
86b9f2ec 537 u64 old_root_used;
0b86a832 538 struct btrfs_root *tree_root = root->fs_info->tree_root;
79154b1b 539
86b9f2ec 540 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 541 btrfs_write_dirty_block_groups(trans, root);
56bec294 542
d397712b 543 while (1) {
0b86a832 544 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec
YZ
545 if (old_root_bytenr == root->node->start &&
546 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 547 break;
87ef2bb4 548
5d4f98a2 549 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 550 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
551 &root->root_key,
552 &root->root_item);
79154b1b 553 BUG_ON(ret);
56bec294 554
86b9f2ec 555 old_root_used = btrfs_root_used(&root->root_item);
4a8c9a62 556 ret = btrfs_write_dirty_block_groups(trans, root);
56bec294 557 BUG_ON(ret);
0b86a832 558 }
276e680d
YZ
559
560 if (root != root->fs_info->extent_root)
561 switch_commit_root(root);
562
0b86a832
CM
563 return 0;
564}
565
d352ac68
CM
566/*
567 * update all the cowonly tree roots on disk
568 */
5d4f98a2
YZ
569static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
570 struct btrfs_root *root)
0b86a832
CM
571{
572 struct btrfs_fs_info *fs_info = root->fs_info;
573 struct list_head *next;
84234f3a 574 struct extent_buffer *eb;
56bec294 575 int ret;
84234f3a 576
56bec294
CM
577 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
578 BUG_ON(ret);
87ef2bb4 579
84234f3a 580 eb = btrfs_lock_root_node(fs_info->tree_root);
9fa8cfe7 581 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
84234f3a
YZ
582 btrfs_tree_unlock(eb);
583 free_extent_buffer(eb);
0b86a832 584
56bec294
CM
585 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
586 BUG_ON(ret);
87ef2bb4 587
d397712b 588 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
0b86a832
CM
589 next = fs_info->dirty_cowonly_roots.next;
590 list_del_init(next);
591 root = list_entry(next, struct btrfs_root, dirty_list);
87ef2bb4 592
0b86a832 593 update_cowonly_root(trans, root);
79154b1b 594 }
276e680d
YZ
595
596 down_write(&fs_info->extent_commit_sem);
597 switch_commit_root(fs_info->extent_root);
598 up_write(&fs_info->extent_commit_sem);
599
79154b1b
CM
600 return 0;
601}
602
d352ac68
CM
603/*
604 * dead roots are old snapshots that need to be deleted. This allocates
605 * a dirty root struct and adds it into the list of dead roots that need to
606 * be deleted
607 */
5d4f98a2 608int btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 609{
b48652c1 610 mutex_lock(&root->fs_info->trans_mutex);
5d4f98a2 611 list_add(&root->root_list, &root->fs_info->dead_roots);
b48652c1 612 mutex_unlock(&root->fs_info->trans_mutex);
5eda7b5e
CM
613 return 0;
614}
615
d352ac68 616/*
5d4f98a2 617 * update all the cowonly tree roots on disk
d352ac68 618 */
5d4f98a2
YZ
619static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
620 struct btrfs_root *root)
0f7d52f4 621{
0f7d52f4 622 struct btrfs_root *gang[8];
5d4f98a2 623 struct btrfs_fs_info *fs_info = root->fs_info;
0f7d52f4
CM
624 int i;
625 int ret;
54aa1f4d
CM
626 int err = 0;
627
d397712b 628 while (1) {
5d4f98a2
YZ
629 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
630 (void **)gang, 0,
0f7d52f4
CM
631 ARRAY_SIZE(gang),
632 BTRFS_ROOT_TRANS_TAG);
633 if (ret == 0)
634 break;
635 for (i = 0; i < ret; i++) {
636 root = gang[i];
5d4f98a2
YZ
637 radix_tree_tag_clear(&fs_info->fs_roots_radix,
638 (unsigned long)root->root_key.objectid,
639 BTRFS_ROOT_TRANS_TAG);
31153d81 640
e02119d5 641 btrfs_free_log(trans, root);
5d4f98a2 642 btrfs_update_reloc_root(trans, root);
bcc63abb 643
978d910d 644 if (root->commit_root != root->node) {
817d52f8 645 switch_commit_root(root);
978d910d
YZ
646 btrfs_set_root_node(&root->root_item,
647 root->node);
648 }
5d4f98a2 649
5d4f98a2 650 err = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
651 &root->root_key,
652 &root->root_item);
54aa1f4d
CM
653 if (err)
654 break;
0f7d52f4
CM
655 }
656 }
54aa1f4d 657 return err;
0f7d52f4
CM
658}
659
d352ac68
CM
660/*
661 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
662 * otherwise every leaf in the btree is read and defragged.
663 */
e9d0b13b
CM
664int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
665{
666 struct btrfs_fs_info *info = root->fs_info;
667 int ret;
668 struct btrfs_trans_handle *trans;
d3c2fdcf 669 unsigned long nr;
e9d0b13b 670
a2135011 671 smp_mb();
e9d0b13b
CM
672 if (root->defrag_running)
673 return 0;
e9d0b13b 674 trans = btrfs_start_transaction(root, 1);
6b80053d 675 while (1) {
e9d0b13b
CM
676 root->defrag_running = 1;
677 ret = btrfs_defrag_leaves(trans, root, cacheonly);
d3c2fdcf 678 nr = trans->blocks_used;
e9d0b13b 679 btrfs_end_transaction(trans, root);
d3c2fdcf 680 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
681 cond_resched();
682
e9d0b13b 683 trans = btrfs_start_transaction(root, 1);
3f157a2f 684 if (root->fs_info->closing || ret != -EAGAIN)
e9d0b13b
CM
685 break;
686 }
687 root->defrag_running = 0;
a2135011 688 smp_mb();
e9d0b13b
CM
689 btrfs_end_transaction(trans, root);
690 return 0;
691}
692
2c47e605 693#if 0
b7ec40d7
CM
694/*
695 * when dropping snapshots, we generate a ton of delayed refs, and it makes
696 * sense not to join the transaction while it is trying to flush the current
697 * queue of delayed refs out.
698 *
699 * This is used by the drop snapshot code only
700 */
701static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
702{
703 DEFINE_WAIT(wait);
704
705 mutex_lock(&info->trans_mutex);
706 while (info->running_transaction &&
707 info->running_transaction->delayed_refs.flushing) {
708 prepare_to_wait(&info->transaction_wait, &wait,
709 TASK_UNINTERRUPTIBLE);
710 mutex_unlock(&info->trans_mutex);
59bc5c75 711
b7ec40d7 712 schedule();
59bc5c75 713
b7ec40d7
CM
714 mutex_lock(&info->trans_mutex);
715 finish_wait(&info->transaction_wait, &wait);
716 }
717 mutex_unlock(&info->trans_mutex);
718 return 0;
719}
720
d352ac68
CM
721/*
722 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
723 * all of them
724 */
5d4f98a2 725int btrfs_drop_dead_root(struct btrfs_root *root)
0f7d52f4 726{
0f7d52f4 727 struct btrfs_trans_handle *trans;
5d4f98a2 728 struct btrfs_root *tree_root = root->fs_info->tree_root;
d3c2fdcf 729 unsigned long nr;
5d4f98a2 730 int ret;
58176a96 731
5d4f98a2
YZ
732 while (1) {
733 /*
734 * we don't want to jump in and create a bunch of
735 * delayed refs if the transaction is starting to close
736 */
737 wait_transaction_pre_flush(tree_root->fs_info);
738 trans = btrfs_start_transaction(tree_root, 1);
a2135011 739
5d4f98a2
YZ
740 /*
741 * we've joined a transaction, make sure it isn't
742 * closing right now
743 */
744 if (trans->transaction->delayed_refs.flushing) {
745 btrfs_end_transaction(trans, tree_root);
746 continue;
9f3a7427 747 }
58176a96 748
5d4f98a2
YZ
749 ret = btrfs_drop_snapshot(trans, root);
750 if (ret != -EAGAIN)
751 break;
a2135011 752
5d4f98a2
YZ
753 ret = btrfs_update_root(trans, tree_root,
754 &root->root_key,
755 &root->root_item);
756 if (ret)
54aa1f4d 757 break;
bcc63abb 758
d3c2fdcf 759 nr = trans->blocks_used;
0f7d52f4
CM
760 ret = btrfs_end_transaction(trans, tree_root);
761 BUG_ON(ret);
5eda7b5e 762
d3c2fdcf 763 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 764 cond_resched();
0f7d52f4 765 }
5d4f98a2
YZ
766 BUG_ON(ret);
767
768 ret = btrfs_del_root(trans, tree_root, &root->root_key);
769 BUG_ON(ret);
770
771 nr = trans->blocks_used;
772 ret = btrfs_end_transaction(trans, tree_root);
773 BUG_ON(ret);
774
775 free_extent_buffer(root->node);
776 free_extent_buffer(root->commit_root);
777 kfree(root);
778
779 btrfs_btree_balance_dirty(tree_root, nr);
54aa1f4d 780 return ret;
0f7d52f4 781}
2c47e605 782#endif
0f7d52f4 783
d352ac68
CM
784/*
785 * new snapshots need to be created at a very specific time in the
786 * transaction commit. This does the actual creation
787 */
80b6794d 788static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
789 struct btrfs_fs_info *fs_info,
790 struct btrfs_pending_snapshot *pending)
791{
792 struct btrfs_key key;
80b6794d 793 struct btrfs_root_item *new_root_item;
3063d29f
CM
794 struct btrfs_root *tree_root = fs_info->tree_root;
795 struct btrfs_root *root = pending->root;
6bdb72de
SW
796 struct btrfs_root *parent_root;
797 struct inode *parent_inode;
a22285a6 798 struct dentry *dentry;
3063d29f 799 struct extent_buffer *tmp;
925baedd 800 struct extent_buffer *old;
3063d29f 801 int ret;
6bdb72de 802 u64 index = 0;
a22285a6 803 u64 objectid;
3063d29f 804
80b6794d
CM
805 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
806 if (!new_root_item) {
a22285a6 807 pending->error = -ENOMEM;
80b6794d
CM
808 goto fail;
809 }
a22285a6 810
3063d29f 811 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
a22285a6
YZ
812 if (ret) {
813 pending->error = ret;
3063d29f 814 goto fail;
a22285a6 815 }
3063d29f 816
3063d29f 817 key.objectid = objectid;
a22285a6
YZ
818 key.offset = (u64)-1;
819 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 820
a22285a6 821 trans->block_rsv = &pending->block_rsv;
3de4586c 822
a22285a6
YZ
823 dentry = pending->dentry;
824 parent_inode = dentry->d_parent->d_inode;
825 parent_root = BTRFS_I(parent_inode)->root;
6bdb72de 826 record_root_in_trans(trans, parent_root);
a22285a6 827
3063d29f
CM
828 /*
829 * insert the directory item
830 */
3de4586c 831 ret = btrfs_set_inode_index(parent_inode, &index);
6bdb72de 832 BUG_ON(ret);
0660b5af 833 ret = btrfs_insert_dir_item(trans, parent_root,
a22285a6
YZ
834 dentry->d_name.name, dentry->d_name.len,
835 parent_inode->i_ino, &key,
836 BTRFS_FT_DIR, index);
6bdb72de 837 BUG_ON(ret);
0660b5af 838
a22285a6
YZ
839 btrfs_i_size_write(parent_inode, parent_inode->i_size +
840 dentry->d_name.len * 2);
52c26179
YZ
841 ret = btrfs_update_inode(trans, parent_root, parent_inode);
842 BUG_ON(ret);
843
6bdb72de
SW
844 record_root_in_trans(trans, root);
845 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
846 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
847
848 old = btrfs_lock_root_node(root);
849 btrfs_cow_block(trans, root, old, NULL, 0, &old);
850 btrfs_set_lock_blocking(old);
851
852 btrfs_copy_root(trans, root, old, &tmp, objectid);
853 btrfs_tree_unlock(old);
854 free_extent_buffer(old);
855
856 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
857 /* record when the snapshot was created in key.offset */
858 key.offset = trans->transid;
859 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
860 btrfs_tree_unlock(tmp);
861 free_extent_buffer(tmp);
a22285a6 862 BUG_ON(ret);
6bdb72de 863
a22285a6
YZ
864 /*
865 * insert root back/forward references
866 */
867 ret = btrfs_add_root_ref(trans, tree_root, objectid,
0660b5af 868 parent_root->root_key.objectid,
a22285a6
YZ
869 parent_inode->i_ino, index,
870 dentry->d_name.name, dentry->d_name.len);
0660b5af
CM
871 BUG_ON(ret);
872
a22285a6
YZ
873 key.offset = (u64)-1;
874 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
875 BUG_ON(IS_ERR(pending->snap));
3063d29f 876fail:
6bdb72de 877 kfree(new_root_item);
a22285a6
YZ
878 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
879 return 0;
3063d29f
CM
880}
881
d352ac68
CM
882/*
883 * create all the snapshots we've scheduled for creation
884 */
80b6794d
CM
885static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
886 struct btrfs_fs_info *fs_info)
3de4586c
CM
887{
888 struct btrfs_pending_snapshot *pending;
889 struct list_head *head = &trans->transaction->pending_snapshots;
3de4586c
CM
890 int ret;
891
c6e30871 892 list_for_each_entry(pending, head, list) {
3de4586c
CM
893 ret = create_pending_snapshot(trans, fs_info, pending);
894 BUG_ON(ret);
895 }
896 return 0;
897}
898
5d4f98a2
YZ
899static void update_super_roots(struct btrfs_root *root)
900{
901 struct btrfs_root_item *root_item;
902 struct btrfs_super_block *super;
903
904 super = &root->fs_info->super_copy;
905
906 root_item = &root->fs_info->chunk_root->root_item;
907 super->chunk_root = root_item->bytenr;
908 super->chunk_root_generation = root_item->generation;
909 super->chunk_root_level = root_item->level;
910
911 root_item = &root->fs_info->tree_root->root_item;
912 super->root = root_item->bytenr;
913 super->generation = root_item->generation;
914 super->root_level = root_item->level;
915}
916
f36f3042
CM
917int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
918{
919 int ret = 0;
920 spin_lock(&info->new_trans_lock);
921 if (info->running_transaction)
922 ret = info->running_transaction->in_commit;
923 spin_unlock(&info->new_trans_lock);
924 return ret;
925}
926
79154b1b
CM
927int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
928 struct btrfs_root *root)
929{
15ee9bc7
JB
930 unsigned long joined = 0;
931 unsigned long timeout = 1;
79154b1b 932 struct btrfs_transaction *cur_trans;
8fd17795 933 struct btrfs_transaction *prev_trans = NULL;
79154b1b 934 DEFINE_WAIT(wait);
15ee9bc7 935 int ret;
89573b9c
CM
936 int should_grow = 0;
937 unsigned long now = get_seconds();
dccae999 938 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
79154b1b 939
5a3f23d5
CM
940 btrfs_run_ordered_operations(root, 0);
941
56bec294
CM
942 /* make a pass through all the delayed refs we have so far
943 * any runnings procs may add more while we are here
944 */
945 ret = btrfs_run_delayed_refs(trans, root, 0);
946 BUG_ON(ret);
947
a22285a6
YZ
948 btrfs_trans_release_metadata(trans, root);
949
b7ec40d7 950 cur_trans = trans->transaction;
56bec294
CM
951 /*
952 * set the flushing flag so procs in this transaction have to
953 * start sending their work down.
954 */
b7ec40d7 955 cur_trans->delayed_refs.flushing = 1;
56bec294 956
c3e69d58 957 ret = btrfs_run_delayed_refs(trans, root, 0);
56bec294
CM
958 BUG_ON(ret);
959
79154b1b 960 mutex_lock(&root->fs_info->trans_mutex);
b7ec40d7
CM
961 if (cur_trans->in_commit) {
962 cur_trans->use_count++;
ccd467d6 963 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b 964 btrfs_end_transaction(trans, root);
ccd467d6 965
79154b1b
CM
966 ret = wait_for_commit(root, cur_trans);
967 BUG_ON(ret);
15ee9bc7
JB
968
969 mutex_lock(&root->fs_info->trans_mutex);
79154b1b 970 put_transaction(cur_trans);
15ee9bc7
JB
971 mutex_unlock(&root->fs_info->trans_mutex);
972
79154b1b
CM
973 return 0;
974 }
4313b399 975
2c90e5d6 976 trans->transaction->in_commit = 1;
f9295749 977 trans->transaction->blocked = 1;
ccd467d6
CM
978 if (cur_trans->list.prev != &root->fs_info->trans_list) {
979 prev_trans = list_entry(cur_trans->list.prev,
980 struct btrfs_transaction, list);
981 if (!prev_trans->commit_done) {
982 prev_trans->use_count++;
ccd467d6
CM
983 mutex_unlock(&root->fs_info->trans_mutex);
984
985 wait_for_commit(root, prev_trans);
ccd467d6 986
ccd467d6 987 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 988 put_transaction(prev_trans);
ccd467d6
CM
989 }
990 }
15ee9bc7 991
89573b9c
CM
992 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
993 should_grow = 1;
994
15ee9bc7 995 do {
7ea394f1 996 int snap_pending = 0;
15ee9bc7 997 joined = cur_trans->num_joined;
7ea394f1
YZ
998 if (!list_empty(&trans->transaction->pending_snapshots))
999 snap_pending = 1;
1000
2c90e5d6 1001 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 1002 prepare_to_wait(&cur_trans->writer_wait, &wait,
79154b1b 1003 TASK_UNINTERRUPTIBLE);
15ee9bc7
JB
1004
1005 if (cur_trans->num_writers > 1)
1006 timeout = MAX_SCHEDULE_TIMEOUT;
89573b9c 1007 else if (should_grow)
15ee9bc7
JB
1008 timeout = 1;
1009
79154b1b 1010 mutex_unlock(&root->fs_info->trans_mutex);
15ee9bc7 1011
0bdb1db2 1012 if (flush_on_commit || snap_pending) {
24bbcf04
YZ
1013 btrfs_start_delalloc_inodes(root, 1);
1014 ret = btrfs_wait_ordered_extents(root, 0, 1);
ebecd3d9 1015 BUG_ON(ret);
7ea394f1
YZ
1016 }
1017
5a3f23d5
CM
1018 /*
1019 * rename don't use btrfs_join_transaction, so, once we
1020 * set the transaction to blocked above, we aren't going
1021 * to get any new ordered operations. We can safely run
1022 * it here and no for sure that nothing new will be added
1023 * to the list
1024 */
1025 btrfs_run_ordered_operations(root, 1);
1026
89573b9c
CM
1027 smp_mb();
1028 if (cur_trans->num_writers > 1 || should_grow)
1029 schedule_timeout(timeout);
15ee9bc7 1030
79154b1b 1031 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7
JB
1032 finish_wait(&cur_trans->writer_wait, &wait);
1033 } while (cur_trans->num_writers > 1 ||
89573b9c 1034 (should_grow && cur_trans->num_joined != joined));
15ee9bc7 1035
3063d29f
CM
1036 ret = create_pending_snapshots(trans, root->fs_info);
1037 BUG_ON(ret);
1038
56bec294
CM
1039 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1040 BUG_ON(ret);
1041
2c90e5d6 1042 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 1043
e02119d5
CM
1044 /* btrfs_commit_tree_roots is responsible for getting the
1045 * various roots consistent with each other. Every pointer
1046 * in the tree of tree roots has to point to the most up to date
1047 * root for every subvolume and other tree. So, we have to keep
1048 * the tree logging code from jumping in and changing any
1049 * of the trees.
1050 *
1051 * At this point in the commit, there can't be any tree-log
1052 * writers, but a little lower down we drop the trans mutex
1053 * and let new people in. By holding the tree_log_mutex
1054 * from now until after the super is written, we avoid races
1055 * with the tree-log code.
1056 */
1057 mutex_lock(&root->fs_info->tree_log_mutex);
1058
5d4f98a2 1059 ret = commit_fs_roots(trans, root);
54aa1f4d
CM
1060 BUG_ON(ret);
1061
5d4f98a2 1062 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
1063 * safe to free the root of tree log roots
1064 */
1065 btrfs_free_log_root_tree(trans, root->fs_info);
1066
5d4f98a2 1067 ret = commit_cowonly_roots(trans, root);
79154b1b 1068 BUG_ON(ret);
54aa1f4d 1069
11833d66
YZ
1070 btrfs_prepare_extent_commit(trans, root);
1071
78fae27e 1072 cur_trans = root->fs_info->running_transaction;
cee36a03 1073 spin_lock(&root->fs_info->new_trans_lock);
78fae27e 1074 root->fs_info->running_transaction = NULL;
cee36a03 1075 spin_unlock(&root->fs_info->new_trans_lock);
5d4f98a2
YZ
1076
1077 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1078 root->fs_info->tree_root->node);
817d52f8 1079 switch_commit_root(root->fs_info->tree_root);
5d4f98a2
YZ
1080
1081 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1082 root->fs_info->chunk_root->node);
817d52f8 1083 switch_commit_root(root->fs_info->chunk_root);
5d4f98a2
YZ
1084
1085 update_super_roots(root);
e02119d5
CM
1086
1087 if (!root->fs_info->log_root_recovering) {
1088 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1089 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1090 }
1091
a061fc8d
CM
1092 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1093 sizeof(root->fs_info->super_copy));
ccd467d6 1094
f9295749 1095 trans->transaction->blocked = 0;
b7ec40d7 1096
f9295749 1097 wake_up(&root->fs_info->transaction_wait);
e6dcd2dc 1098
78fae27e 1099 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b
CM
1100 ret = btrfs_write_and_wait_transaction(trans, root);
1101 BUG_ON(ret);
a512bbf8 1102 write_ctree_super(trans, root, 0);
4313b399 1103
e02119d5
CM
1104 /*
1105 * the super is written, we can safely allow the tree-loggers
1106 * to go about their business
1107 */
1108 mutex_unlock(&root->fs_info->tree_log_mutex);
1109
11833d66 1110 btrfs_finish_extent_commit(trans, root);
4313b399 1111
1a40e23b
ZY
1112 mutex_lock(&root->fs_info->trans_mutex);
1113
2c90e5d6 1114 cur_trans->commit_done = 1;
b7ec40d7 1115
15ee9bc7 1116 root->fs_info->last_trans_committed = cur_trans->transid;
817d52f8 1117
2c90e5d6 1118 wake_up(&cur_trans->commit_wait);
3de4586c 1119
78fae27e 1120 put_transaction(cur_trans);
79154b1b 1121 put_transaction(cur_trans);
58176a96 1122
78fae27e 1123 mutex_unlock(&root->fs_info->trans_mutex);
3de4586c 1124
9ed74f2d
JB
1125 if (current->journal_info == trans)
1126 current->journal_info = NULL;
1127
2c90e5d6 1128 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04
YZ
1129
1130 if (current != root->fs_info->transaction_kthread)
1131 btrfs_run_delayed_iputs(root);
1132
79154b1b
CM
1133 return ret;
1134}
1135
d352ac68
CM
1136/*
1137 * interface function to delete all the snapshots we have scheduled for deletion
1138 */
e9d0b13b
CM
1139int btrfs_clean_old_snapshots(struct btrfs_root *root)
1140{
5d4f98a2
YZ
1141 LIST_HEAD(list);
1142 struct btrfs_fs_info *fs_info = root->fs_info;
1143
1144 mutex_lock(&fs_info->trans_mutex);
1145 list_splice_init(&fs_info->dead_roots, &list);
1146 mutex_unlock(&fs_info->trans_mutex);
e9d0b13b 1147
5d4f98a2
YZ
1148 while (!list_empty(&list)) {
1149 root = list_entry(list.next, struct btrfs_root, root_list);
76dda93c
YZ
1150 list_del(&root->root_list);
1151
1152 if (btrfs_header_backref_rev(root->node) <
1153 BTRFS_MIXED_BACKREF_REV)
1154 btrfs_drop_snapshot(root, 0);
1155 else
1156 btrfs_drop_snapshot(root, 1);
e9d0b13b
CM
1157 }
1158 return 0;
1159}