btrfs: return EPERM upon rmdir on a subvolume
[linux-2.6-block.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>
8ea05e3a 25#include <linux/uuid.h>
79154b1b
CM
26#include "ctree.h"
27#include "disk-io.h"
28#include "transaction.h"
925baedd 29#include "locking.h"
e02119d5 30#include "tree-log.h"
581bb050 31#include "inode-map.h"
733f4fbb 32#include "volumes.h"
79154b1b 33
0f7d52f4
CM
34#define BTRFS_ROOT_TRANS_TAG 0
35
49b25e05 36void put_transaction(struct btrfs_transaction *transaction)
79154b1b 37{
13c5a93e
JB
38 WARN_ON(atomic_read(&transaction->use_count) == 0);
39 if (atomic_dec_and_test(&transaction->use_count)) {
a4abeea4 40 BUG_ON(!list_empty(&transaction->list));
00f04b88 41 WARN_ON(transaction->delayed_refs.root.rb_node);
2c90e5d6
CM
42 memset(transaction, 0, sizeof(*transaction));
43 kmem_cache_free(btrfs_transaction_cachep, transaction);
78fae27e 44 }
79154b1b
CM
45}
46
817d52f8
JB
47static noinline void switch_commit_root(struct btrfs_root *root)
48{
817d52f8
JB
49 free_extent_buffer(root->commit_root);
50 root->commit_root = btrfs_root_node(root);
817d52f8
JB
51}
52
d352ac68
CM
53/*
54 * either allocate a new transaction or hop into the existing one
55 */
a4abeea4 56static noinline int join_transaction(struct btrfs_root *root, int nofail)
79154b1b
CM
57{
58 struct btrfs_transaction *cur_trans;
19ae4e81 59 struct btrfs_fs_info *fs_info = root->fs_info;
a4abeea4 60
19ae4e81 61 spin_lock(&fs_info->trans_lock);
d43317dc 62loop:
49b25e05 63 /* The file system has been taken offline. No new transactions. */
19ae4e81
JS
64 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
65 spin_unlock(&fs_info->trans_lock);
49b25e05
JM
66 return -EROFS;
67 }
68
19ae4e81 69 if (fs_info->trans_no_join) {
a4abeea4 70 if (!nofail) {
19ae4e81 71 spin_unlock(&fs_info->trans_lock);
a4abeea4
JB
72 return -EBUSY;
73 }
74 }
75
19ae4e81 76 cur_trans = fs_info->running_transaction;
a4abeea4 77 if (cur_trans) {
871383be 78 if (cur_trans->aborted) {
19ae4e81 79 spin_unlock(&fs_info->trans_lock);
49b25e05 80 return cur_trans->aborted;
871383be 81 }
a4abeea4 82 atomic_inc(&cur_trans->use_count);
13c5a93e 83 atomic_inc(&cur_trans->num_writers);
15ee9bc7 84 cur_trans->num_joined++;
19ae4e81 85 spin_unlock(&fs_info->trans_lock);
a4abeea4 86 return 0;
79154b1b 87 }
19ae4e81 88 spin_unlock(&fs_info->trans_lock);
a4abeea4
JB
89
90 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS);
91 if (!cur_trans)
92 return -ENOMEM;
d43317dc 93
19ae4e81
JS
94 spin_lock(&fs_info->trans_lock);
95 if (fs_info->running_transaction) {
d43317dc
CM
96 /*
97 * someone started a transaction after we unlocked. Make sure
98 * to redo the trans_no_join checks above
99 */
a4abeea4 100 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
19ae4e81 101 cur_trans = fs_info->running_transaction;
d43317dc 102 goto loop;
e4b50e14
DC
103 } else if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
104 spin_unlock(&fs_info->trans_lock);
7b8b92af
JB
105 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
106 return -EROFS;
79154b1b 107 }
d43317dc 108
a4abeea4
JB
109 atomic_set(&cur_trans->num_writers, 1);
110 cur_trans->num_joined = 0;
111 init_waitqueue_head(&cur_trans->writer_wait);
112 init_waitqueue_head(&cur_trans->commit_wait);
113 cur_trans->in_commit = 0;
114 cur_trans->blocked = 0;
115 /*
116 * One for this trans handle, one so it will live on until we
117 * commit the transaction.
118 */
119 atomic_set(&cur_trans->use_count, 2);
120 cur_trans->commit_done = 0;
121 cur_trans->start_time = get_seconds();
122
123 cur_trans->delayed_refs.root = RB_ROOT;
124 cur_trans->delayed_refs.num_entries = 0;
125 cur_trans->delayed_refs.num_heads_ready = 0;
126 cur_trans->delayed_refs.num_heads = 0;
127 cur_trans->delayed_refs.flushing = 0;
128 cur_trans->delayed_refs.run_delayed_start = 0;
20b297d6
JS
129
130 /*
131 * although the tree mod log is per file system and not per transaction,
132 * the log must never go across transaction boundaries.
133 */
134 smp_mb();
135 if (!list_empty(&fs_info->tree_mod_seq_list)) {
136 printk(KERN_ERR "btrfs: tree_mod_seq_list not empty when "
137 "creating a fresh transaction\n");
138 WARN_ON(1);
139 }
140 if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) {
141 printk(KERN_ERR "btrfs: tree_mod_log rb tree not empty when "
142 "creating a fresh transaction\n");
143 WARN_ON(1);
144 }
145 atomic_set(&fs_info->tree_mod_seq, 0);
146
a4abeea4
JB
147 spin_lock_init(&cur_trans->commit_lock);
148 spin_lock_init(&cur_trans->delayed_refs.lock);
149
150 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
19ae4e81 151 list_add_tail(&cur_trans->list, &fs_info->trans_list);
a4abeea4 152 extent_io_tree_init(&cur_trans->dirty_pages,
19ae4e81
JS
153 fs_info->btree_inode->i_mapping);
154 fs_info->generation++;
155 cur_trans->transid = fs_info->generation;
156 fs_info->running_transaction = cur_trans;
49b25e05 157 cur_trans->aborted = 0;
19ae4e81 158 spin_unlock(&fs_info->trans_lock);
15ee9bc7 159
79154b1b
CM
160 return 0;
161}
162
d352ac68 163/*
d397712b
CM
164 * this does all the record keeping required to make sure that a reference
165 * counted root is properly recorded in a given transaction. This is required
166 * to make sure the old root from before we joined the transaction is deleted
167 * when the transaction commits
d352ac68 168 */
7585717f 169static int record_root_in_trans(struct btrfs_trans_handle *trans,
a4abeea4 170 struct btrfs_root *root)
6702ed49 171{
5d4f98a2 172 if (root->ref_cows && root->last_trans < trans->transid) {
6702ed49 173 WARN_ON(root == root->fs_info->extent_root);
5d4f98a2
YZ
174 WARN_ON(root->commit_root != root->node);
175
7585717f
CM
176 /*
177 * see below for in_trans_setup usage rules
178 * we have the reloc mutex held now, so there
179 * is only one writer in this function
180 */
181 root->in_trans_setup = 1;
182
183 /* make sure readers find in_trans_setup before
184 * they find our root->last_trans update
185 */
186 smp_wmb();
187
a4abeea4
JB
188 spin_lock(&root->fs_info->fs_roots_radix_lock);
189 if (root->last_trans == trans->transid) {
190 spin_unlock(&root->fs_info->fs_roots_radix_lock);
191 return 0;
192 }
5d4f98a2
YZ
193 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
194 (unsigned long)root->root_key.objectid,
195 BTRFS_ROOT_TRANS_TAG);
a4abeea4 196 spin_unlock(&root->fs_info->fs_roots_radix_lock);
7585717f
CM
197 root->last_trans = trans->transid;
198
199 /* this is pretty tricky. We don't want to
200 * take the relocation lock in btrfs_record_root_in_trans
201 * unless we're really doing the first setup for this root in
202 * this transaction.
203 *
204 * Normally we'd use root->last_trans as a flag to decide
205 * if we want to take the expensive mutex.
206 *
207 * But, we have to set root->last_trans before we
208 * init the relocation root, otherwise, we trip over warnings
209 * in ctree.c. The solution used here is to flag ourselves
210 * with root->in_trans_setup. When this is 1, we're still
211 * fixing up the reloc trees and everyone must wait.
212 *
213 * When this is zero, they can trust root->last_trans and fly
214 * through btrfs_record_root_in_trans without having to take the
215 * lock. smp_wmb() makes sure that all the writes above are
216 * done before we pop in the zero below
217 */
5d4f98a2 218 btrfs_init_reloc_root(trans, root);
7585717f
CM
219 smp_wmb();
220 root->in_trans_setup = 0;
5d4f98a2
YZ
221 }
222 return 0;
223}
bcc63abb 224
7585717f
CM
225
226int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
227 struct btrfs_root *root)
228{
229 if (!root->ref_cows)
230 return 0;
231
232 /*
233 * see record_root_in_trans for comments about in_trans_setup usage
234 * and barriers
235 */
236 smp_rmb();
237 if (root->last_trans == trans->transid &&
238 !root->in_trans_setup)
239 return 0;
240
241 mutex_lock(&root->fs_info->reloc_mutex);
242 record_root_in_trans(trans, root);
243 mutex_unlock(&root->fs_info->reloc_mutex);
244
245 return 0;
246}
247
d352ac68
CM
248/* wait for commit against the current transaction to become unblocked
249 * when this is done, it is safe to start a new transaction, but the current
250 * transaction might not be fully on disk.
251 */
37d1aeee 252static void wait_current_trans(struct btrfs_root *root)
79154b1b 253{
f9295749 254 struct btrfs_transaction *cur_trans;
79154b1b 255
a4abeea4 256 spin_lock(&root->fs_info->trans_lock);
f9295749 257 cur_trans = root->fs_info->running_transaction;
37d1aeee 258 if (cur_trans && cur_trans->blocked) {
13c5a93e 259 atomic_inc(&cur_trans->use_count);
a4abeea4 260 spin_unlock(&root->fs_info->trans_lock);
72d63ed6
LZ
261
262 wait_event(root->fs_info->transaction_wait,
263 !cur_trans->blocked);
f9295749 264 put_transaction(cur_trans);
a4abeea4
JB
265 } else {
266 spin_unlock(&root->fs_info->trans_lock);
f9295749 267 }
37d1aeee
CM
268}
269
249ac1e5
JB
270enum btrfs_trans_type {
271 TRANS_START,
272 TRANS_JOIN,
273 TRANS_USERSPACE,
0af3d00b 274 TRANS_JOIN_NOLOCK,
249ac1e5
JB
275};
276
a22285a6
YZ
277static int may_wait_transaction(struct btrfs_root *root, int type)
278{
a4abeea4
JB
279 if (root->fs_info->log_root_recovering)
280 return 0;
281
282 if (type == TRANS_USERSPACE)
283 return 1;
284
285 if (type == TRANS_START &&
286 !atomic_read(&root->fs_info->open_ioctl_trans))
a22285a6 287 return 1;
a4abeea4 288
a22285a6
YZ
289 return 0;
290}
291
e02119d5 292static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
8407aa46
MX
293 u64 num_items, int type,
294 int noflush)
37d1aeee 295{
a22285a6
YZ
296 struct btrfs_trans_handle *h;
297 struct btrfs_transaction *cur_trans;
b5009945 298 u64 num_bytes = 0;
37d1aeee 299 int ret;
c5567237 300 u64 qgroup_reserved = 0;
acce952b 301
302 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
303 return ERR_PTR(-EROFS);
2a1eb461
JB
304
305 if (current->journal_info) {
306 WARN_ON(type != TRANS_JOIN && type != TRANS_JOIN_NOLOCK);
307 h = current->journal_info;
308 h->use_count++;
309 h->orig_rsv = h->block_rsv;
310 h->block_rsv = NULL;
311 goto got_it;
312 }
b5009945
JB
313
314 /*
315 * Do the reservation before we join the transaction so we can do all
316 * the appropriate flushing if need be.
317 */
318 if (num_items > 0 && root != root->fs_info->chunk_root) {
c5567237
AJ
319 if (root->fs_info->quota_enabled &&
320 is_fstree(root->root_key.objectid)) {
321 qgroup_reserved = num_items * root->leafsize;
322 ret = btrfs_qgroup_reserve(root, qgroup_reserved);
323 if (ret)
324 return ERR_PTR(ret);
325 }
326
b5009945 327 num_bytes = btrfs_calc_trans_metadata_size(root, num_items);
8407aa46
MX
328 if (noflush)
329 ret = btrfs_block_rsv_add_noflush(root,
330 &root->fs_info->trans_block_rsv,
331 num_bytes);
332 else
333 ret = btrfs_block_rsv_add(root,
334 &root->fs_info->trans_block_rsv,
335 num_bytes);
b5009945
JB
336 if (ret)
337 return ERR_PTR(ret);
338 }
a22285a6
YZ
339again:
340 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
341 if (!h)
342 return ERR_PTR(-ENOMEM);
37d1aeee 343
b2b5ef5c
JK
344 sb_start_intwrite(root->fs_info->sb);
345
a22285a6 346 if (may_wait_transaction(root, type))
37d1aeee 347 wait_current_trans(root);
a22285a6 348
a4abeea4
JB
349 do {
350 ret = join_transaction(root, type == TRANS_JOIN_NOLOCK);
351 if (ret == -EBUSY)
352 wait_current_trans(root);
353 } while (ret == -EBUSY);
354
db5b493a 355 if (ret < 0) {
b2b5ef5c 356 sb_end_intwrite(root->fs_info->sb);
6e8df2ae 357 kmem_cache_free(btrfs_trans_handle_cachep, h);
db5b493a
TI
358 return ERR_PTR(ret);
359 }
0f7d52f4 360
a22285a6 361 cur_trans = root->fs_info->running_transaction;
a22285a6
YZ
362
363 h->transid = cur_trans->transid;
364 h->transaction = cur_trans;
79154b1b 365 h->blocks_used = 0;
a22285a6 366 h->bytes_reserved = 0;
d13603ef 367 h->root = root;
56bec294 368 h->delayed_ref_updates = 0;
2a1eb461 369 h->use_count = 1;
0e721106 370 h->adding_csums = 0;
f0486c68 371 h->block_rsv = NULL;
2a1eb461 372 h->orig_rsv = NULL;
49b25e05 373 h->aborted = 0;
c5567237 374 h->qgroup_reserved = qgroup_reserved;
bed92eae
AJ
375 h->delayed_ref_elem.seq = 0;
376 INIT_LIST_HEAD(&h->qgroup_ref_list);
ea658bad 377 INIT_LIST_HEAD(&h->new_bgs);
b7ec40d7 378
a22285a6
YZ
379 smp_mb();
380 if (cur_trans->blocked && may_wait_transaction(root, type)) {
381 btrfs_commit_transaction(h, root);
382 goto again;
383 }
384
b5009945 385 if (num_bytes) {
8c2a3ca2 386 trace_btrfs_space_reservation(root->fs_info, "transaction",
2bcc0328 387 h->transid, num_bytes, 1);
b5009945
JB
388 h->block_rsv = &root->fs_info->trans_block_rsv;
389 h->bytes_reserved = num_bytes;
a22285a6 390 }
9ed74f2d 391
2a1eb461 392got_it:
a4abeea4 393 btrfs_record_root_in_trans(h, root);
a22285a6
YZ
394
395 if (!current->journal_info && type != TRANS_USERSPACE)
396 current->journal_info = h;
79154b1b
CM
397 return h;
398}
399
f9295749 400struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
a22285a6 401 int num_items)
f9295749 402{
8407aa46 403 return start_transaction(root, num_items, TRANS_START, 0);
f9295749 404}
8407aa46
MX
405
406struct btrfs_trans_handle *btrfs_start_transaction_noflush(
407 struct btrfs_root *root, int num_items)
408{
409 return start_transaction(root, num_items, TRANS_START, 1);
410}
411
7a7eaa40 412struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
f9295749 413{
8407aa46 414 return start_transaction(root, 0, TRANS_JOIN, 0);
f9295749
CM
415}
416
7a7eaa40 417struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root)
0af3d00b 418{
8407aa46 419 return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0);
0af3d00b
JB
420}
421
7a7eaa40 422struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root)
9ca9ee09 423{
8407aa46 424 return start_transaction(root, 0, TRANS_USERSPACE, 0);
9ca9ee09
SW
425}
426
d352ac68 427/* wait for a transaction commit to be fully complete */
b9c8300c 428static noinline void wait_for_commit(struct btrfs_root *root,
89ce8a63
CM
429 struct btrfs_transaction *commit)
430{
72d63ed6 431 wait_event(commit->commit_wait, commit->commit_done);
89ce8a63
CM
432}
433
46204592
SW
434int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
435{
436 struct btrfs_transaction *cur_trans = NULL, *t;
437 int ret;
438
46204592
SW
439 ret = 0;
440 if (transid) {
441 if (transid <= root->fs_info->last_trans_committed)
a4abeea4 442 goto out;
46204592
SW
443
444 /* find specified transaction */
a4abeea4 445 spin_lock(&root->fs_info->trans_lock);
46204592
SW
446 list_for_each_entry(t, &root->fs_info->trans_list, list) {
447 if (t->transid == transid) {
448 cur_trans = t;
a4abeea4 449 atomic_inc(&cur_trans->use_count);
46204592
SW
450 break;
451 }
452 if (t->transid > transid)
453 break;
454 }
a4abeea4 455 spin_unlock(&root->fs_info->trans_lock);
46204592
SW
456 ret = -EINVAL;
457 if (!cur_trans)
a4abeea4 458 goto out; /* bad transid */
46204592
SW
459 } else {
460 /* find newest transaction that is committing | committed */
a4abeea4 461 spin_lock(&root->fs_info->trans_lock);
46204592
SW
462 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
463 list) {
464 if (t->in_commit) {
465 if (t->commit_done)
3473f3c0 466 break;
46204592 467 cur_trans = t;
a4abeea4 468 atomic_inc(&cur_trans->use_count);
46204592
SW
469 break;
470 }
471 }
a4abeea4 472 spin_unlock(&root->fs_info->trans_lock);
46204592 473 if (!cur_trans)
a4abeea4 474 goto out; /* nothing committing|committed */
46204592
SW
475 }
476
46204592
SW
477 wait_for_commit(root, cur_trans);
478
46204592
SW
479 put_transaction(cur_trans);
480 ret = 0;
a4abeea4 481out:
46204592
SW
482 return ret;
483}
484
37d1aeee
CM
485void btrfs_throttle(struct btrfs_root *root)
486{
a4abeea4 487 if (!atomic_read(&root->fs_info->open_ioctl_trans))
9ca9ee09 488 wait_current_trans(root);
37d1aeee
CM
489}
490
8929ecfa
YZ
491static int should_end_transaction(struct btrfs_trans_handle *trans,
492 struct btrfs_root *root)
493{
494 int ret;
36ba022a
JB
495
496 ret = btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5);
8929ecfa
YZ
497 return ret ? 1 : 0;
498}
499
500int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
501 struct btrfs_root *root)
502{
503 struct btrfs_transaction *cur_trans = trans->transaction;
504 int updates;
49b25e05 505 int err;
8929ecfa 506
a4abeea4 507 smp_mb();
8929ecfa
YZ
508 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
509 return 1;
510
511 updates = trans->delayed_ref_updates;
512 trans->delayed_ref_updates = 0;
49b25e05
JM
513 if (updates) {
514 err = btrfs_run_delayed_refs(trans, root, updates);
515 if (err) /* Error code will also eval true */
516 return err;
517 }
8929ecfa
YZ
518
519 return should_end_transaction(trans, root);
520}
521
89ce8a63 522static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
0af3d00b 523 struct btrfs_root *root, int throttle, int lock)
79154b1b 524{
8929ecfa 525 struct btrfs_transaction *cur_trans = trans->transaction;
ab78c84d 526 struct btrfs_fs_info *info = root->fs_info;
c3e69d58 527 int count = 0;
4edc2ca3 528 int err = 0;
c3e69d58 529
2a1eb461
JB
530 if (--trans->use_count) {
531 trans->block_rsv = trans->orig_rsv;
532 return 0;
533 }
534
edf39272
JS
535 /*
536 * do the qgroup accounting as early as possible
537 */
538 err = btrfs_delayed_refs_qgroup_accounting(trans, info);
539
b24e03db 540 btrfs_trans_release_metadata(trans, root);
4c13d758 541 trans->block_rsv = NULL;
d13603ef
AJ
542 /*
543 * the same root has to be passed to start_transaction and
544 * end_transaction. Subvolume quota depends on this.
545 */
546 WARN_ON(trans->root != root);
c5567237
AJ
547
548 if (trans->qgroup_reserved) {
549 btrfs_qgroup_free(root, trans->qgroup_reserved);
550 trans->qgroup_reserved = 0;
551 }
552
ea658bad
JB
553 if (!list_empty(&trans->new_bgs))
554 btrfs_create_pending_block_groups(trans, root);
555
203bf287 556 while (count < 2) {
c3e69d58
CM
557 unsigned long cur = trans->delayed_ref_updates;
558 trans->delayed_ref_updates = 0;
559 if (cur &&
560 trans->transaction->delayed_refs.num_heads_ready > 64) {
561 trans->delayed_ref_updates = 0;
562 btrfs_run_delayed_refs(trans, root, cur);
563 } else {
564 break;
565 }
566 count++;
56bec294 567 }
0e721106
JB
568 btrfs_trans_release_metadata(trans, root);
569 trans->block_rsv = NULL;
56bec294 570
ea658bad
JB
571 if (!list_empty(&trans->new_bgs))
572 btrfs_create_pending_block_groups(trans, root);
573
a4abeea4
JB
574 if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) &&
575 should_end_transaction(trans, root)) {
8929ecfa 576 trans->transaction->blocked = 1;
a4abeea4
JB
577 smp_wmb();
578 }
8929ecfa 579
0af3d00b 580 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
81317fde
JB
581 if (throttle) {
582 /*
583 * We may race with somebody else here so end up having
584 * to call end_transaction on ourselves again, so inc
585 * our use_count.
586 */
587 trans->use_count++;
8929ecfa 588 return btrfs_commit_transaction(trans, root);
81317fde 589 } else {
8929ecfa 590 wake_up_process(info->transaction_kthread);
81317fde 591 }
8929ecfa
YZ
592 }
593
6df7881a
JB
594 sb_end_intwrite(root->fs_info->sb);
595
8929ecfa 596 WARN_ON(cur_trans != info->running_transaction);
13c5a93e
JB
597 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
598 atomic_dec(&cur_trans->num_writers);
89ce8a63 599
99d16cbc 600 smp_mb();
79154b1b
CM
601 if (waitqueue_active(&cur_trans->writer_wait))
602 wake_up(&cur_trans->writer_wait);
79154b1b 603 put_transaction(cur_trans);
9ed74f2d
JB
604
605 if (current->journal_info == trans)
606 current->journal_info = NULL;
ab78c84d 607
24bbcf04
YZ
608 if (throttle)
609 btrfs_run_delayed_iputs(root);
610
49b25e05
JM
611 if (trans->aborted ||
612 root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
4edc2ca3 613 err = -EIO;
49b25e05 614 }
edf39272 615 assert_qgroups_uptodate(trans);
49b25e05 616
4edc2ca3
DJ
617 memset(trans, 0, sizeof(*trans));
618 kmem_cache_free(btrfs_trans_handle_cachep, trans);
619 return err;
79154b1b
CM
620}
621
89ce8a63
CM
622int btrfs_end_transaction(struct btrfs_trans_handle *trans,
623 struct btrfs_root *root)
624{
16cdcec7
MX
625 int ret;
626
627 ret = __btrfs_end_transaction(trans, root, 0, 1);
628 if (ret)
629 return ret;
630 return 0;
89ce8a63
CM
631}
632
633int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
634 struct btrfs_root *root)
635{
16cdcec7
MX
636 int ret;
637
638 ret = __btrfs_end_transaction(trans, root, 1, 1);
639 if (ret)
640 return ret;
641 return 0;
0af3d00b
JB
642}
643
644int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
645 struct btrfs_root *root)
646{
16cdcec7
MX
647 int ret;
648
649 ret = __btrfs_end_transaction(trans, root, 0, 0);
650 if (ret)
651 return ret;
652 return 0;
653}
654
655int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans,
656 struct btrfs_root *root)
657{
658 return __btrfs_end_transaction(trans, root, 1, 1);
89ce8a63
CM
659}
660
d352ac68
CM
661/*
662 * when btree blocks are allocated, they have some corresponding bits set for
663 * them in one of two extent_io trees. This is used to make sure all of
690587d1 664 * those extents are sent to disk but does not wait on them
d352ac68 665 */
690587d1 666int btrfs_write_marked_extents(struct btrfs_root *root,
8cef4e16 667 struct extent_io_tree *dirty_pages, int mark)
79154b1b 668{
777e6bd7 669 int err = 0;
7c4452b9 670 int werr = 0;
1728366e 671 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
777e6bd7 672 u64 start = 0;
5f39d397 673 u64 end;
7c4452b9 674
1728366e
JB
675 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
676 mark)) {
677 convert_extent_bit(dirty_pages, start, end, EXTENT_NEED_WAIT, mark,
678 GFP_NOFS);
679 err = filemap_fdatawrite_range(mapping, start, end);
680 if (err)
681 werr = err;
682 cond_resched();
683 start = end + 1;
7c4452b9 684 }
690587d1
CM
685 if (err)
686 werr = err;
687 return werr;
688}
689
690/*
691 * when btree blocks are allocated, they have some corresponding bits set for
692 * them in one of two extent_io trees. This is used to make sure all of
693 * those extents are on disk for transaction or log commit. We wait
694 * on all the pages and clear them from the dirty pages state tree
695 */
696int btrfs_wait_marked_extents(struct btrfs_root *root,
8cef4e16 697 struct extent_io_tree *dirty_pages, int mark)
690587d1 698{
690587d1
CM
699 int err = 0;
700 int werr = 0;
1728366e 701 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
690587d1
CM
702 u64 start = 0;
703 u64 end;
777e6bd7 704
1728366e
JB
705 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
706 EXTENT_NEED_WAIT)) {
707 clear_extent_bits(dirty_pages, start, end, EXTENT_NEED_WAIT, GFP_NOFS);
708 err = filemap_fdatawait_range(mapping, start, end);
709 if (err)
710 werr = err;
711 cond_resched();
712 start = end + 1;
777e6bd7 713 }
7c4452b9
CM
714 if (err)
715 werr = err;
716 return werr;
79154b1b
CM
717}
718
690587d1
CM
719/*
720 * when btree blocks are allocated, they have some corresponding bits set for
721 * them in one of two extent_io trees. This is used to make sure all of
722 * those extents are on disk for transaction or log commit
723 */
724int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
8cef4e16 725 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
726{
727 int ret;
728 int ret2;
729
8cef4e16
YZ
730 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
731 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
bf0da8c1
CM
732
733 if (ret)
734 return ret;
735 if (ret2)
736 return ret2;
737 return 0;
690587d1
CM
738}
739
d0c803c4
CM
740int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
741 struct btrfs_root *root)
742{
743 if (!trans || !trans->transaction) {
744 struct inode *btree_inode;
745 btree_inode = root->fs_info->btree_inode;
746 return filemap_write_and_wait(btree_inode->i_mapping);
747 }
748 return btrfs_write_and_wait_marked_extents(root,
8cef4e16
YZ
749 &trans->transaction->dirty_pages,
750 EXTENT_DIRTY);
d0c803c4
CM
751}
752
d352ac68
CM
753/*
754 * this is used to update the root pointer in the tree of tree roots.
755 *
756 * But, in the case of the extent allocation tree, updating the root
757 * pointer may allocate blocks which may change the root of the extent
758 * allocation tree.
759 *
760 * So, this loops and repeats and makes sure the cowonly root didn't
761 * change while the root pointer was being updated in the metadata.
762 */
0b86a832
CM
763static int update_cowonly_root(struct btrfs_trans_handle *trans,
764 struct btrfs_root *root)
79154b1b
CM
765{
766 int ret;
0b86a832 767 u64 old_root_bytenr;
86b9f2ec 768 u64 old_root_used;
0b86a832 769 struct btrfs_root *tree_root = root->fs_info->tree_root;
79154b1b 770
86b9f2ec 771 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 772 btrfs_write_dirty_block_groups(trans, root);
56bec294 773
d397712b 774 while (1) {
0b86a832 775 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec
YZ
776 if (old_root_bytenr == root->node->start &&
777 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 778 break;
87ef2bb4 779
5d4f98a2 780 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 781 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
782 &root->root_key,
783 &root->root_item);
49b25e05
JM
784 if (ret)
785 return ret;
56bec294 786
86b9f2ec 787 old_root_used = btrfs_root_used(&root->root_item);
4a8c9a62 788 ret = btrfs_write_dirty_block_groups(trans, root);
49b25e05
JM
789 if (ret)
790 return ret;
0b86a832 791 }
276e680d
YZ
792
793 if (root != root->fs_info->extent_root)
794 switch_commit_root(root);
795
0b86a832
CM
796 return 0;
797}
798
d352ac68
CM
799/*
800 * update all the cowonly tree roots on disk
49b25e05
JM
801 *
802 * The error handling in this function may not be obvious. Any of the
803 * failures will cause the file system to go offline. We still need
804 * to clean up the delayed refs.
d352ac68 805 */
5d4f98a2
YZ
806static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
807 struct btrfs_root *root)
0b86a832
CM
808{
809 struct btrfs_fs_info *fs_info = root->fs_info;
810 struct list_head *next;
84234f3a 811 struct extent_buffer *eb;
56bec294 812 int ret;
84234f3a 813
56bec294 814 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49b25e05
JM
815 if (ret)
816 return ret;
87ef2bb4 817
84234f3a 818 eb = btrfs_lock_root_node(fs_info->tree_root);
49b25e05
JM
819 ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
820 0, &eb);
84234f3a
YZ
821 btrfs_tree_unlock(eb);
822 free_extent_buffer(eb);
0b86a832 823
49b25e05
JM
824 if (ret)
825 return ret;
826
56bec294 827 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49b25e05
JM
828 if (ret)
829 return ret;
87ef2bb4 830
733f4fbb
SB
831 ret = btrfs_run_dev_stats(trans, root->fs_info);
832 BUG_ON(ret);
833
546adb0d
JS
834 ret = btrfs_run_qgroups(trans, root->fs_info);
835 BUG_ON(ret);
836
837 /* run_qgroups might have added some more refs */
838 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
839 BUG_ON(ret);
840
d397712b 841 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
0b86a832
CM
842 next = fs_info->dirty_cowonly_roots.next;
843 list_del_init(next);
844 root = list_entry(next, struct btrfs_root, dirty_list);
87ef2bb4 845
49b25e05
JM
846 ret = update_cowonly_root(trans, root);
847 if (ret)
848 return ret;
79154b1b 849 }
276e680d
YZ
850
851 down_write(&fs_info->extent_commit_sem);
852 switch_commit_root(fs_info->extent_root);
853 up_write(&fs_info->extent_commit_sem);
854
79154b1b
CM
855 return 0;
856}
857
d352ac68
CM
858/*
859 * dead roots are old snapshots that need to be deleted. This allocates
860 * a dirty root struct and adds it into the list of dead roots that need to
861 * be deleted
862 */
5d4f98a2 863int btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 864{
a4abeea4 865 spin_lock(&root->fs_info->trans_lock);
5d4f98a2 866 list_add(&root->root_list, &root->fs_info->dead_roots);
a4abeea4 867 spin_unlock(&root->fs_info->trans_lock);
5eda7b5e
CM
868 return 0;
869}
870
d352ac68 871/*
5d4f98a2 872 * update all the cowonly tree roots on disk
d352ac68 873 */
5d4f98a2
YZ
874static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
875 struct btrfs_root *root)
0f7d52f4 876{
0f7d52f4 877 struct btrfs_root *gang[8];
5d4f98a2 878 struct btrfs_fs_info *fs_info = root->fs_info;
0f7d52f4
CM
879 int i;
880 int ret;
54aa1f4d
CM
881 int err = 0;
882
a4abeea4 883 spin_lock(&fs_info->fs_roots_radix_lock);
d397712b 884 while (1) {
5d4f98a2
YZ
885 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
886 (void **)gang, 0,
0f7d52f4
CM
887 ARRAY_SIZE(gang),
888 BTRFS_ROOT_TRANS_TAG);
889 if (ret == 0)
890 break;
891 for (i = 0; i < ret; i++) {
892 root = gang[i];
5d4f98a2
YZ
893 radix_tree_tag_clear(&fs_info->fs_roots_radix,
894 (unsigned long)root->root_key.objectid,
895 BTRFS_ROOT_TRANS_TAG);
a4abeea4 896 spin_unlock(&fs_info->fs_roots_radix_lock);
31153d81 897
e02119d5 898 btrfs_free_log(trans, root);
5d4f98a2 899 btrfs_update_reloc_root(trans, root);
d68fc57b 900 btrfs_orphan_commit_root(trans, root);
bcc63abb 901
82d5902d
LZ
902 btrfs_save_ino_cache(root, trans);
903
f1ebcc74
LB
904 /* see comments in should_cow_block() */
905 root->force_cow = 0;
906 smp_wmb();
907
978d910d 908 if (root->commit_root != root->node) {
581bb050 909 mutex_lock(&root->fs_commit_mutex);
817d52f8 910 switch_commit_root(root);
581bb050
LZ
911 btrfs_unpin_free_ino(root);
912 mutex_unlock(&root->fs_commit_mutex);
913
978d910d
YZ
914 btrfs_set_root_node(&root->root_item,
915 root->node);
916 }
5d4f98a2 917
5d4f98a2 918 err = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
919 &root->root_key,
920 &root->root_item);
a4abeea4 921 spin_lock(&fs_info->fs_roots_radix_lock);
54aa1f4d
CM
922 if (err)
923 break;
0f7d52f4
CM
924 }
925 }
a4abeea4 926 spin_unlock(&fs_info->fs_roots_radix_lock);
54aa1f4d 927 return err;
0f7d52f4
CM
928}
929
d352ac68
CM
930/*
931 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
932 * otherwise every leaf in the btree is read and defragged.
933 */
e9d0b13b
CM
934int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
935{
936 struct btrfs_fs_info *info = root->fs_info;
e9d0b13b 937 struct btrfs_trans_handle *trans;
8929ecfa 938 int ret;
d3c2fdcf 939 unsigned long nr;
e9d0b13b 940
8929ecfa 941 if (xchg(&root->defrag_running, 1))
e9d0b13b 942 return 0;
8929ecfa 943
6b80053d 944 while (1) {
8929ecfa
YZ
945 trans = btrfs_start_transaction(root, 0);
946 if (IS_ERR(trans))
947 return PTR_ERR(trans);
948
e9d0b13b 949 ret = btrfs_defrag_leaves(trans, root, cacheonly);
8929ecfa 950
d3c2fdcf 951 nr = trans->blocks_used;
e9d0b13b 952 btrfs_end_transaction(trans, root);
d3c2fdcf 953 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
954 cond_resched();
955
7841cb28 956 if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN)
e9d0b13b
CM
957 break;
958 }
959 root->defrag_running = 0;
8929ecfa 960 return ret;
e9d0b13b
CM
961}
962
d352ac68
CM
963/*
964 * new snapshots need to be created at a very specific time in the
965 * transaction commit. This does the actual creation
966 */
80b6794d 967static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
968 struct btrfs_fs_info *fs_info,
969 struct btrfs_pending_snapshot *pending)
970{
971 struct btrfs_key key;
80b6794d 972 struct btrfs_root_item *new_root_item;
3063d29f
CM
973 struct btrfs_root *tree_root = fs_info->tree_root;
974 struct btrfs_root *root = pending->root;
6bdb72de 975 struct btrfs_root *parent_root;
98c9942a 976 struct btrfs_block_rsv *rsv;
6bdb72de 977 struct inode *parent_inode;
42874b3d
MX
978 struct btrfs_path *path;
979 struct btrfs_dir_item *dir_item;
6a912213 980 struct dentry *parent;
a22285a6 981 struct dentry *dentry;
3063d29f 982 struct extent_buffer *tmp;
925baedd 983 struct extent_buffer *old;
8ea05e3a 984 struct timespec cur_time = CURRENT_TIME;
3063d29f 985 int ret;
d68fc57b 986 u64 to_reserve = 0;
6bdb72de 987 u64 index = 0;
a22285a6 988 u64 objectid;
b83cc969 989 u64 root_flags;
8ea05e3a 990 uuid_le new_uuid;
3063d29f 991
42874b3d
MX
992 path = btrfs_alloc_path();
993 if (!path) {
994 ret = pending->error = -ENOMEM;
995 goto path_alloc_fail;
996 }
997
80b6794d
CM
998 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
999 if (!new_root_item) {
49b25e05 1000 ret = pending->error = -ENOMEM;
6fa9700e 1001 goto root_item_alloc_fail;
80b6794d 1002 }
a22285a6 1003
581bb050 1004 ret = btrfs_find_free_objectid(tree_root, &objectid);
a22285a6
YZ
1005 if (ret) {
1006 pending->error = ret;
6fa9700e 1007 goto no_free_objectid;
a22285a6 1008 }
3063d29f 1009
3fd0a558 1010 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
d68fc57b
YZ
1011
1012 if (to_reserve > 0) {
62f30c54
MX
1013 ret = btrfs_block_rsv_add_noflush(root, &pending->block_rsv,
1014 to_reserve);
d68fc57b
YZ
1015 if (ret) {
1016 pending->error = ret;
6fa9700e 1017 goto no_free_objectid;
d68fc57b
YZ
1018 }
1019 }
1020
6f72c7e2
AJ
1021 ret = btrfs_qgroup_inherit(trans, fs_info, root->root_key.objectid,
1022 objectid, pending->inherit);
6f72c7e2
AJ
1023 if (ret) {
1024 pending->error = ret;
6fa9700e 1025 goto no_free_objectid;
6f72c7e2
AJ
1026 }
1027
3063d29f 1028 key.objectid = objectid;
a22285a6
YZ
1029 key.offset = (u64)-1;
1030 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 1031
6fa9700e 1032 rsv = trans->block_rsv;
a22285a6 1033 trans->block_rsv = &pending->block_rsv;
3de4586c 1034
a22285a6 1035 dentry = pending->dentry;
6a912213
JB
1036 parent = dget_parent(dentry);
1037 parent_inode = parent->d_inode;
a22285a6 1038 parent_root = BTRFS_I(parent_inode)->root;
7585717f 1039 record_root_in_trans(trans, parent_root);
a22285a6 1040
3063d29f
CM
1041 /*
1042 * insert the directory item
1043 */
3de4586c 1044 ret = btrfs_set_inode_index(parent_inode, &index);
49b25e05 1045 BUG_ON(ret); /* -ENOMEM */
42874b3d
MX
1046
1047 /* check if there is a file/dir which has the same name. */
1048 dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
1049 btrfs_ino(parent_inode),
1050 dentry->d_name.name,
1051 dentry->d_name.len, 0);
1052 if (dir_item != NULL && !IS_ERR(dir_item)) {
fe66a05a 1053 pending->error = -EEXIST;
fe66a05a 1054 goto fail;
42874b3d
MX
1055 } else if (IS_ERR(dir_item)) {
1056 ret = PTR_ERR(dir_item);
6fa9700e 1057 goto abort_trans;
79787eaa 1058 }
42874b3d 1059 btrfs_release_path(path);
52c26179 1060
e999376f
CM
1061 /*
1062 * pull in the delayed directory update
1063 * and the delayed inode item
1064 * otherwise we corrupt the FS during
1065 * snapshot
1066 */
1067 ret = btrfs_run_delayed_items(trans, root);
6fa9700e
MX
1068 if (ret) /* Transaction aborted */
1069 goto abort_trans;
e999376f 1070
7585717f 1071 record_root_in_trans(trans, root);
6bdb72de
SW
1072 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
1073 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
08fe4db1 1074 btrfs_check_and_init_root_item(new_root_item);
6bdb72de 1075
b83cc969
LZ
1076 root_flags = btrfs_root_flags(new_root_item);
1077 if (pending->readonly)
1078 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1079 else
1080 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1081 btrfs_set_root_flags(new_root_item, root_flags);
1082
8ea05e3a
AB
1083 btrfs_set_root_generation_v2(new_root_item,
1084 trans->transid);
1085 uuid_le_gen(&new_uuid);
1086 memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
1087 memcpy(new_root_item->parent_uuid, root->root_item.uuid,
1088 BTRFS_UUID_SIZE);
1089 new_root_item->otime.sec = cpu_to_le64(cur_time.tv_sec);
dadd1105 1090 new_root_item->otime.nsec = cpu_to_le32(cur_time.tv_nsec);
8ea05e3a
AB
1091 btrfs_set_root_otransid(new_root_item, trans->transid);
1092 memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
1093 memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
1094 btrfs_set_root_stransid(new_root_item, 0);
1095 btrfs_set_root_rtransid(new_root_item, 0);
1096
6bdb72de 1097 old = btrfs_lock_root_node(root);
49b25e05 1098 ret = btrfs_cow_block(trans, root, old, NULL, 0, &old);
79787eaa
JM
1099 if (ret) {
1100 btrfs_tree_unlock(old);
1101 free_extent_buffer(old);
6fa9700e 1102 goto abort_trans;
79787eaa 1103 }
49b25e05 1104
6bdb72de
SW
1105 btrfs_set_lock_blocking(old);
1106
49b25e05 1107 ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
79787eaa 1108 /* clean up in any case */
6bdb72de
SW
1109 btrfs_tree_unlock(old);
1110 free_extent_buffer(old);
79787eaa 1111 if (ret)
6fa9700e 1112 goto abort_trans;
6bdb72de 1113
f1ebcc74
LB
1114 /* see comments in should_cow_block() */
1115 root->force_cow = 1;
1116 smp_wmb();
1117
6bdb72de 1118 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
1119 /* record when the snapshot was created in key.offset */
1120 key.offset = trans->transid;
1121 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
1122 btrfs_tree_unlock(tmp);
1123 free_extent_buffer(tmp);
49b25e05 1124 if (ret)
6fa9700e 1125 goto abort_trans;
6bdb72de 1126
a22285a6
YZ
1127 /*
1128 * insert root back/forward references
1129 */
1130 ret = btrfs_add_root_ref(trans, tree_root, objectid,
0660b5af 1131 parent_root->root_key.objectid,
33345d01 1132 btrfs_ino(parent_inode), index,
a22285a6 1133 dentry->d_name.name, dentry->d_name.len);
49b25e05 1134 if (ret)
6fa9700e 1135 goto abort_trans;
0660b5af 1136
a22285a6
YZ
1137 key.offset = (u64)-1;
1138 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
79787eaa
JM
1139 if (IS_ERR(pending->snap)) {
1140 ret = PTR_ERR(pending->snap);
49b25e05 1141 goto abort_trans;
79787eaa 1142 }
d68fc57b 1143
49b25e05
JM
1144 ret = btrfs_reloc_post_snapshot(trans, pending);
1145 if (ret)
1146 goto abort_trans;
361048f5
MX
1147
1148 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1149 if (ret)
1150 goto abort_trans;
42874b3d
MX
1151
1152 ret = btrfs_insert_dir_item(trans, parent_root,
1153 dentry->d_name.name, dentry->d_name.len,
1154 parent_inode, &key,
1155 BTRFS_FT_DIR, index);
1156 /* We have check then name at the beginning, so it is impossible. */
1157 BUG_ON(ret == -EEXIST);
1158 if (ret)
1159 goto abort_trans;
1160
1161 btrfs_i_size_write(parent_inode, parent_inode->i_size +
1162 dentry->d_name.len * 2);
1163 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
1164 ret = btrfs_update_inode(trans, parent_root, parent_inode);
1165 if (ret)
1166 goto abort_trans;
3063d29f 1167fail:
6fa9700e 1168 dput(parent);
98c9942a 1169 trans->block_rsv = rsv;
6fa9700e
MX
1170no_free_objectid:
1171 kfree(new_root_item);
1172root_item_alloc_fail:
42874b3d
MX
1173 btrfs_free_path(path);
1174path_alloc_fail:
a22285a6 1175 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
49b25e05
JM
1176 return ret;
1177
1178abort_trans:
1179 btrfs_abort_transaction(trans, root, ret);
1180 goto fail;
3063d29f
CM
1181}
1182
d352ac68
CM
1183/*
1184 * create all the snapshots we've scheduled for creation
1185 */
80b6794d
CM
1186static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1187 struct btrfs_fs_info *fs_info)
3de4586c
CM
1188{
1189 struct btrfs_pending_snapshot *pending;
1190 struct list_head *head = &trans->transaction->pending_snapshots;
3de4586c 1191
fe66a05a
CM
1192 list_for_each_entry(pending, head, list)
1193 create_pending_snapshot(trans, fs_info, pending);
3de4586c
CM
1194 return 0;
1195}
1196
5d4f98a2
YZ
1197static void update_super_roots(struct btrfs_root *root)
1198{
1199 struct btrfs_root_item *root_item;
1200 struct btrfs_super_block *super;
1201
6c41761f 1202 super = root->fs_info->super_copy;
5d4f98a2
YZ
1203
1204 root_item = &root->fs_info->chunk_root->root_item;
1205 super->chunk_root = root_item->bytenr;
1206 super->chunk_root_generation = root_item->generation;
1207 super->chunk_root_level = root_item->level;
1208
1209 root_item = &root->fs_info->tree_root->root_item;
1210 super->root = root_item->bytenr;
1211 super->generation = root_item->generation;
1212 super->root_level = root_item->level;
73bc1876 1213 if (btrfs_test_opt(root, SPACE_CACHE))
0af3d00b 1214 super->cache_generation = root_item->generation;
5d4f98a2
YZ
1215}
1216
f36f3042
CM
1217int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1218{
1219 int ret = 0;
a4abeea4 1220 spin_lock(&info->trans_lock);
f36f3042
CM
1221 if (info->running_transaction)
1222 ret = info->running_transaction->in_commit;
a4abeea4 1223 spin_unlock(&info->trans_lock);
f36f3042
CM
1224 return ret;
1225}
1226
8929ecfa
YZ
1227int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1228{
1229 int ret = 0;
a4abeea4 1230 spin_lock(&info->trans_lock);
8929ecfa
YZ
1231 if (info->running_transaction)
1232 ret = info->running_transaction->blocked;
a4abeea4 1233 spin_unlock(&info->trans_lock);
8929ecfa
YZ
1234 return ret;
1235}
1236
bb9c12c9
SW
1237/*
1238 * wait for the current transaction commit to start and block subsequent
1239 * transaction joins
1240 */
1241static void wait_current_trans_commit_start(struct btrfs_root *root,
1242 struct btrfs_transaction *trans)
1243{
72d63ed6 1244 wait_event(root->fs_info->transaction_blocked_wait, trans->in_commit);
bb9c12c9
SW
1245}
1246
1247/*
1248 * wait for the current transaction to start and then become unblocked.
1249 * caller holds ref.
1250 */
1251static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1252 struct btrfs_transaction *trans)
1253{
72d63ed6
LZ
1254 wait_event(root->fs_info->transaction_wait,
1255 trans->commit_done || (trans->in_commit && !trans->blocked));
bb9c12c9
SW
1256}
1257
1258/*
1259 * commit transactions asynchronously. once btrfs_commit_transaction_async
1260 * returns, any subsequent transaction will not be allowed to join.
1261 */
1262struct btrfs_async_commit {
1263 struct btrfs_trans_handle *newtrans;
1264 struct btrfs_root *root;
1265 struct delayed_work work;
1266};
1267
1268static void do_async_commit(struct work_struct *work)
1269{
1270 struct btrfs_async_commit *ac =
1271 container_of(work, struct btrfs_async_commit, work.work);
1272
6fc4e354
SW
1273 /*
1274 * We've got freeze protection passed with the transaction.
1275 * Tell lockdep about it.
1276 */
1277 rwsem_acquire_read(
1278 &ac->root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1],
1279 0, 1, _THIS_IP_);
1280
e209db7a
SW
1281 current->journal_info = ac->newtrans;
1282
bb9c12c9
SW
1283 btrfs_commit_transaction(ac->newtrans, ac->root);
1284 kfree(ac);
1285}
1286
1287int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1288 struct btrfs_root *root,
1289 int wait_for_unblock)
1290{
1291 struct btrfs_async_commit *ac;
1292 struct btrfs_transaction *cur_trans;
1293
1294 ac = kmalloc(sizeof(*ac), GFP_NOFS);
db5b493a
TI
1295 if (!ac)
1296 return -ENOMEM;
bb9c12c9
SW
1297
1298 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1299 ac->root = root;
7a7eaa40 1300 ac->newtrans = btrfs_join_transaction(root);
3612b495
TI
1301 if (IS_ERR(ac->newtrans)) {
1302 int err = PTR_ERR(ac->newtrans);
1303 kfree(ac);
1304 return err;
1305 }
bb9c12c9
SW
1306
1307 /* take transaction reference */
bb9c12c9 1308 cur_trans = trans->transaction;
13c5a93e 1309 atomic_inc(&cur_trans->use_count);
bb9c12c9
SW
1310
1311 btrfs_end_transaction(trans, root);
6fc4e354
SW
1312
1313 /*
1314 * Tell lockdep we've released the freeze rwsem, since the
1315 * async commit thread will be the one to unlock it.
1316 */
1317 rwsem_release(&root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1],
1318 1, _THIS_IP_);
1319
bb9c12c9
SW
1320 schedule_delayed_work(&ac->work, 0);
1321
1322 /* wait for transaction to start and unblock */
bb9c12c9
SW
1323 if (wait_for_unblock)
1324 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1325 else
1326 wait_current_trans_commit_start(root, cur_trans);
bb9c12c9 1327
38e88054
SW
1328 if (current->journal_info == trans)
1329 current->journal_info = NULL;
1330
1331 put_transaction(cur_trans);
bb9c12c9
SW
1332 return 0;
1333}
1334
49b25e05
JM
1335
1336static void cleanup_transaction(struct btrfs_trans_handle *trans,
7b8b92af 1337 struct btrfs_root *root, int err)
49b25e05
JM
1338{
1339 struct btrfs_transaction *cur_trans = trans->transaction;
1340
1341 WARN_ON(trans->use_count > 1);
1342
7b8b92af
JB
1343 btrfs_abort_transaction(trans, root, err);
1344
49b25e05
JM
1345 spin_lock(&root->fs_info->trans_lock);
1346 list_del_init(&cur_trans->list);
d7096fc3
JB
1347 if (cur_trans == root->fs_info->running_transaction) {
1348 root->fs_info->running_transaction = NULL;
1349 root->fs_info->trans_no_join = 0;
1350 }
49b25e05
JM
1351 spin_unlock(&root->fs_info->trans_lock);
1352
1353 btrfs_cleanup_one_transaction(trans->transaction, root);
1354
1355 put_transaction(cur_trans);
1356 put_transaction(cur_trans);
1357
1358 trace_btrfs_transaction_commit(root);
1359
1360 btrfs_scrub_continue(root);
1361
1362 if (current->journal_info == trans)
1363 current->journal_info = NULL;
1364
1365 kmem_cache_free(btrfs_trans_handle_cachep, trans);
1366}
1367
bb9c12c9
SW
1368/*
1369 * btrfs_transaction state sequence:
1370 * in_commit = 0, blocked = 0 (initial)
1371 * in_commit = 1, blocked = 1
1372 * blocked = 0
1373 * commit_done = 1
1374 */
79154b1b
CM
1375int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1376 struct btrfs_root *root)
1377{
15ee9bc7 1378 unsigned long joined = 0;
49b25e05 1379 struct btrfs_transaction *cur_trans = trans->transaction;
8fd17795 1380 struct btrfs_transaction *prev_trans = NULL;
79154b1b 1381 DEFINE_WAIT(wait);
49b25e05 1382 int ret = -EIO;
89573b9c
CM
1383 int should_grow = 0;
1384 unsigned long now = get_seconds();
dccae999 1385 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
79154b1b 1386
5a3f23d5
CM
1387 btrfs_run_ordered_operations(root, 0);
1388
49b25e05
JM
1389 if (cur_trans->aborted)
1390 goto cleanup_transaction;
1391
56bec294
CM
1392 /* make a pass through all the delayed refs we have so far
1393 * any runnings procs may add more while we are here
1394 */
1395 ret = btrfs_run_delayed_refs(trans, root, 0);
49b25e05
JM
1396 if (ret)
1397 goto cleanup_transaction;
56bec294 1398
0e721106
JB
1399 btrfs_trans_release_metadata(trans, root);
1400 trans->block_rsv = NULL;
1401
b7ec40d7 1402 cur_trans = trans->transaction;
49b25e05 1403
56bec294
CM
1404 /*
1405 * set the flushing flag so procs in this transaction have to
1406 * start sending their work down.
1407 */
b7ec40d7 1408 cur_trans->delayed_refs.flushing = 1;
56bec294 1409
ea658bad
JB
1410 if (!list_empty(&trans->new_bgs))
1411 btrfs_create_pending_block_groups(trans, root);
1412
c3e69d58 1413 ret = btrfs_run_delayed_refs(trans, root, 0);
49b25e05
JM
1414 if (ret)
1415 goto cleanup_transaction;
56bec294 1416
a4abeea4 1417 spin_lock(&cur_trans->commit_lock);
b7ec40d7 1418 if (cur_trans->in_commit) {
a4abeea4 1419 spin_unlock(&cur_trans->commit_lock);
13c5a93e 1420 atomic_inc(&cur_trans->use_count);
49b25e05 1421 ret = btrfs_end_transaction(trans, root);
ccd467d6 1422
b9c8300c 1423 wait_for_commit(root, cur_trans);
15ee9bc7 1424
79154b1b 1425 put_transaction(cur_trans);
15ee9bc7 1426
49b25e05 1427 return ret;
79154b1b 1428 }
4313b399 1429
2c90e5d6 1430 trans->transaction->in_commit = 1;
f9295749 1431 trans->transaction->blocked = 1;
a4abeea4 1432 spin_unlock(&cur_trans->commit_lock);
bb9c12c9
SW
1433 wake_up(&root->fs_info->transaction_blocked_wait);
1434
a4abeea4 1435 spin_lock(&root->fs_info->trans_lock);
ccd467d6
CM
1436 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1437 prev_trans = list_entry(cur_trans->list.prev,
1438 struct btrfs_transaction, list);
1439 if (!prev_trans->commit_done) {
13c5a93e 1440 atomic_inc(&prev_trans->use_count);
a4abeea4 1441 spin_unlock(&root->fs_info->trans_lock);
ccd467d6
CM
1442
1443 wait_for_commit(root, prev_trans);
ccd467d6 1444
15ee9bc7 1445 put_transaction(prev_trans);
a4abeea4
JB
1446 } else {
1447 spin_unlock(&root->fs_info->trans_lock);
ccd467d6 1448 }
a4abeea4
JB
1449 } else {
1450 spin_unlock(&root->fs_info->trans_lock);
ccd467d6 1451 }
15ee9bc7 1452
e39e64ac
CM
1453 if (!btrfs_test_opt(root, SSD) &&
1454 (now < cur_trans->start_time || now - cur_trans->start_time < 1))
89573b9c
CM
1455 should_grow = 1;
1456
15ee9bc7 1457 do {
7ea394f1 1458 int snap_pending = 0;
a4abeea4 1459
15ee9bc7 1460 joined = cur_trans->num_joined;
7ea394f1
YZ
1461 if (!list_empty(&trans->transaction->pending_snapshots))
1462 snap_pending = 1;
1463
2c90e5d6 1464 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 1465
0bdb1db2 1466 if (flush_on_commit || snap_pending) {
24bbcf04 1467 btrfs_start_delalloc_inodes(root, 1);
143bede5 1468 btrfs_wait_ordered_extents(root, 0, 1);
7ea394f1
YZ
1469 }
1470
16cdcec7 1471 ret = btrfs_run_delayed_items(trans, root);
49b25e05
JM
1472 if (ret)
1473 goto cleanup_transaction;
16cdcec7 1474
edf39272
JS
1475 /*
1476 * running the delayed items may have added new refs. account
1477 * them now so that they hinder processing of more delayed refs
1478 * as little as possible.
1479 */
1480 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
1481
5a3f23d5
CM
1482 /*
1483 * rename don't use btrfs_join_transaction, so, once we
1484 * set the transaction to blocked above, we aren't going
1485 * to get any new ordered operations. We can safely run
1486 * it here and no for sure that nothing new will be added
1487 * to the list
1488 */
1489 btrfs_run_ordered_operations(root, 1);
1490
ed3b3d31
CM
1491 prepare_to_wait(&cur_trans->writer_wait, &wait,
1492 TASK_UNINTERRUPTIBLE);
1493
13c5a93e 1494 if (atomic_read(&cur_trans->num_writers) > 1)
99d16cbc
SW
1495 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1496 else if (should_grow)
1497 schedule_timeout(1);
15ee9bc7 1498
15ee9bc7 1499 finish_wait(&cur_trans->writer_wait, &wait);
13c5a93e 1500 } while (atomic_read(&cur_trans->num_writers) > 1 ||
89573b9c 1501 (should_grow && cur_trans->num_joined != joined));
15ee9bc7 1502
ed0ca140
JB
1503 /*
1504 * Ok now we need to make sure to block out any other joins while we
1505 * commit the transaction. We could have started a join before setting
1506 * no_join so make sure to wait for num_writers to == 1 again.
1507 */
1508 spin_lock(&root->fs_info->trans_lock);
1509 root->fs_info->trans_no_join = 1;
1510 spin_unlock(&root->fs_info->trans_lock);
1511 wait_event(cur_trans->writer_wait,
1512 atomic_read(&cur_trans->num_writers) == 1);
1513
7585717f
CM
1514 /*
1515 * the reloc mutex makes sure that we stop
1516 * the balancing code from coming in and moving
1517 * extents around in the middle of the commit
1518 */
1519 mutex_lock(&root->fs_info->reloc_mutex);
1520
42874b3d
MX
1521 /*
1522 * We needn't worry about the delayed items because we will
1523 * deal with them in create_pending_snapshot(), which is the
1524 * core function of the snapshot creation.
1525 */
1526 ret = create_pending_snapshots(trans, root->fs_info);
49b25e05
JM
1527 if (ret) {
1528 mutex_unlock(&root->fs_info->reloc_mutex);
1529 goto cleanup_transaction;
1530 }
3063d29f 1531
42874b3d
MX
1532 /*
1533 * We insert the dir indexes of the snapshots and update the inode
1534 * of the snapshots' parents after the snapshot creation, so there
1535 * are some delayed items which are not dealt with. Now deal with
1536 * them.
1537 *
1538 * We needn't worry that this operation will corrupt the snapshots,
1539 * because all the tree which are snapshoted will be forced to COW
1540 * the nodes and leaves.
1541 */
1542 ret = btrfs_run_delayed_items(trans, root);
49b25e05
JM
1543 if (ret) {
1544 mutex_unlock(&root->fs_info->reloc_mutex);
1545 goto cleanup_transaction;
1546 }
16cdcec7 1547
56bec294 1548 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49b25e05
JM
1549 if (ret) {
1550 mutex_unlock(&root->fs_info->reloc_mutex);
1551 goto cleanup_transaction;
1552 }
56bec294 1553
e999376f
CM
1554 /*
1555 * make sure none of the code above managed to slip in a
1556 * delayed item
1557 */
1558 btrfs_assert_delayed_root_empty(root);
1559
2c90e5d6 1560 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 1561
a2de733c 1562 btrfs_scrub_pause(root);
e02119d5
CM
1563 /* btrfs_commit_tree_roots is responsible for getting the
1564 * various roots consistent with each other. Every pointer
1565 * in the tree of tree roots has to point to the most up to date
1566 * root for every subvolume and other tree. So, we have to keep
1567 * the tree logging code from jumping in and changing any
1568 * of the trees.
1569 *
1570 * At this point in the commit, there can't be any tree-log
1571 * writers, but a little lower down we drop the trans mutex
1572 * and let new people in. By holding the tree_log_mutex
1573 * from now until after the super is written, we avoid races
1574 * with the tree-log code.
1575 */
1576 mutex_lock(&root->fs_info->tree_log_mutex);
1577
5d4f98a2 1578 ret = commit_fs_roots(trans, root);
49b25e05
JM
1579 if (ret) {
1580 mutex_unlock(&root->fs_info->tree_log_mutex);
871383be 1581 mutex_unlock(&root->fs_info->reloc_mutex);
49b25e05
JM
1582 goto cleanup_transaction;
1583 }
54aa1f4d 1584
5d4f98a2 1585 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
1586 * safe to free the root of tree log roots
1587 */
1588 btrfs_free_log_root_tree(trans, root->fs_info);
1589
5d4f98a2 1590 ret = commit_cowonly_roots(trans, root);
49b25e05
JM
1591 if (ret) {
1592 mutex_unlock(&root->fs_info->tree_log_mutex);
871383be 1593 mutex_unlock(&root->fs_info->reloc_mutex);
49b25e05
JM
1594 goto cleanup_transaction;
1595 }
54aa1f4d 1596
11833d66
YZ
1597 btrfs_prepare_extent_commit(trans, root);
1598
78fae27e 1599 cur_trans = root->fs_info->running_transaction;
5d4f98a2
YZ
1600
1601 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1602 root->fs_info->tree_root->node);
817d52f8 1603 switch_commit_root(root->fs_info->tree_root);
5d4f98a2
YZ
1604
1605 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1606 root->fs_info->chunk_root->node);
817d52f8 1607 switch_commit_root(root->fs_info->chunk_root);
5d4f98a2 1608
edf39272 1609 assert_qgroups_uptodate(trans);
5d4f98a2 1610 update_super_roots(root);
e02119d5
CM
1611
1612 if (!root->fs_info->log_root_recovering) {
6c41761f
DS
1613 btrfs_set_super_log_root(root->fs_info->super_copy, 0);
1614 btrfs_set_super_log_root_level(root->fs_info->super_copy, 0);
e02119d5
CM
1615 }
1616
6c41761f
DS
1617 memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy,
1618 sizeof(*root->fs_info->super_copy));
ccd467d6 1619
f9295749 1620 trans->transaction->blocked = 0;
a4abeea4
JB
1621 spin_lock(&root->fs_info->trans_lock);
1622 root->fs_info->running_transaction = NULL;
1623 root->fs_info->trans_no_join = 0;
1624 spin_unlock(&root->fs_info->trans_lock);
7585717f 1625 mutex_unlock(&root->fs_info->reloc_mutex);
b7ec40d7 1626
f9295749 1627 wake_up(&root->fs_info->transaction_wait);
e6dcd2dc 1628
79154b1b 1629 ret = btrfs_write_and_wait_transaction(trans, root);
49b25e05
JM
1630 if (ret) {
1631 btrfs_error(root->fs_info, ret,
1632 "Error while writing out transaction.");
1633 mutex_unlock(&root->fs_info->tree_log_mutex);
1634 goto cleanup_transaction;
1635 }
1636
1637 ret = write_ctree_super(trans, root, 0);
1638 if (ret) {
1639 mutex_unlock(&root->fs_info->tree_log_mutex);
1640 goto cleanup_transaction;
1641 }
4313b399 1642
e02119d5
CM
1643 /*
1644 * the super is written, we can safely allow the tree-loggers
1645 * to go about their business
1646 */
1647 mutex_unlock(&root->fs_info->tree_log_mutex);
1648
11833d66 1649 btrfs_finish_extent_commit(trans, root);
4313b399 1650
2c90e5d6 1651 cur_trans->commit_done = 1;
b7ec40d7 1652
15ee9bc7 1653 root->fs_info->last_trans_committed = cur_trans->transid;
817d52f8 1654
2c90e5d6 1655 wake_up(&cur_trans->commit_wait);
3de4586c 1656
a4abeea4 1657 spin_lock(&root->fs_info->trans_lock);
13c5a93e 1658 list_del_init(&cur_trans->list);
a4abeea4
JB
1659 spin_unlock(&root->fs_info->trans_lock);
1660
78fae27e 1661 put_transaction(cur_trans);
79154b1b 1662 put_transaction(cur_trans);
58176a96 1663
b2b5ef5c
JK
1664 sb_end_intwrite(root->fs_info->sb);
1665
1abe9b8a 1666 trace_btrfs_transaction_commit(root);
1667
a2de733c
AJ
1668 btrfs_scrub_continue(root);
1669
9ed74f2d
JB
1670 if (current->journal_info == trans)
1671 current->journal_info = NULL;
1672
2c90e5d6 1673 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04
YZ
1674
1675 if (current != root->fs_info->transaction_kthread)
1676 btrfs_run_delayed_iputs(root);
1677
79154b1b 1678 return ret;
49b25e05
JM
1679
1680cleanup_transaction:
0e721106
JB
1681 btrfs_trans_release_metadata(trans, root);
1682 trans->block_rsv = NULL;
49b25e05
JM
1683 btrfs_printk(root->fs_info, "Skipping commit of aborted transaction.\n");
1684// WARN_ON(1);
1685 if (current->journal_info == trans)
1686 current->journal_info = NULL;
7b8b92af 1687 cleanup_transaction(trans, root, ret);
49b25e05
JM
1688
1689 return ret;
79154b1b
CM
1690}
1691
d352ac68
CM
1692/*
1693 * interface function to delete all the snapshots we have scheduled for deletion
1694 */
e9d0b13b
CM
1695int btrfs_clean_old_snapshots(struct btrfs_root *root)
1696{
5d4f98a2
YZ
1697 LIST_HEAD(list);
1698 struct btrfs_fs_info *fs_info = root->fs_info;
1699
a4abeea4 1700 spin_lock(&fs_info->trans_lock);
5d4f98a2 1701 list_splice_init(&fs_info->dead_roots, &list);
a4abeea4 1702 spin_unlock(&fs_info->trans_lock);
e9d0b13b 1703
5d4f98a2 1704 while (!list_empty(&list)) {
2c536799
JM
1705 int ret;
1706
5d4f98a2 1707 root = list_entry(list.next, struct btrfs_root, root_list);
76dda93c
YZ
1708 list_del(&root->root_list);
1709
16cdcec7
MX
1710 btrfs_kill_all_delayed_nodes(root);
1711
76dda93c
YZ
1712 if (btrfs_header_backref_rev(root->node) <
1713 BTRFS_MIXED_BACKREF_REV)
2c536799 1714 ret = btrfs_drop_snapshot(root, NULL, 0, 0);
76dda93c 1715 else
2c536799
JM
1716 ret =btrfs_drop_snapshot(root, NULL, 1, 0);
1717 BUG_ON(ret < 0);
e9d0b13b
CM
1718 }
1719 return 0;
1720}