btrfs: allocate root item at snapshot ioctl time
[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"
8dabb742 33#include "dev-replace.h"
fcebe456 34#include "qgroup.h"
79154b1b 35
0f7d52f4
CM
36#define BTRFS_ROOT_TRANS_TAG 0
37
e8c9f186 38static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
4a9d8bde
MX
39 [TRANS_STATE_RUNNING] = 0U,
40 [TRANS_STATE_BLOCKED] = (__TRANS_USERSPACE |
41 __TRANS_START),
42 [TRANS_STATE_COMMIT_START] = (__TRANS_USERSPACE |
43 __TRANS_START |
44 __TRANS_ATTACH),
45 [TRANS_STATE_COMMIT_DOING] = (__TRANS_USERSPACE |
46 __TRANS_START |
47 __TRANS_ATTACH |
48 __TRANS_JOIN),
49 [TRANS_STATE_UNBLOCKED] = (__TRANS_USERSPACE |
50 __TRANS_START |
51 __TRANS_ATTACH |
52 __TRANS_JOIN |
53 __TRANS_JOIN_NOLOCK),
54 [TRANS_STATE_COMPLETED] = (__TRANS_USERSPACE |
55 __TRANS_START |
56 __TRANS_ATTACH |
57 __TRANS_JOIN |
58 __TRANS_JOIN_NOLOCK),
59};
60
724e2315 61void btrfs_put_transaction(struct btrfs_transaction *transaction)
79154b1b 62{
13c5a93e
JB
63 WARN_ON(atomic_read(&transaction->use_count) == 0);
64 if (atomic_dec_and_test(&transaction->use_count)) {
a4abeea4 65 BUG_ON(!list_empty(&transaction->list));
c46effa6 66 WARN_ON(!RB_EMPTY_ROOT(&transaction->delayed_refs.href_root));
1262133b
JB
67 if (transaction->delayed_refs.pending_csums)
68 printk(KERN_ERR "pending csums is %llu\n",
69 transaction->delayed_refs.pending_csums);
6df9a95e
JB
70 while (!list_empty(&transaction->pending_chunks)) {
71 struct extent_map *em;
72
73 em = list_first_entry(&transaction->pending_chunks,
74 struct extent_map, list);
75 list_del_init(&em->list);
76 free_extent_map(em);
77 }
2c90e5d6 78 kmem_cache_free(btrfs_transaction_cachep, transaction);
78fae27e 79 }
79154b1b
CM
80}
81
663dfbb0
FM
82static void clear_btree_io_tree(struct extent_io_tree *tree)
83{
84 spin_lock(&tree->lock);
b666a9cd
DS
85 /*
86 * Do a single barrier for the waitqueue_active check here, the state
87 * of the waitqueue should not change once clear_btree_io_tree is
88 * called.
89 */
90 smp_mb();
663dfbb0
FM
91 while (!RB_EMPTY_ROOT(&tree->state)) {
92 struct rb_node *node;
93 struct extent_state *state;
94
95 node = rb_first(&tree->state);
96 state = rb_entry(node, struct extent_state, rb_node);
97 rb_erase(&state->rb_node, &tree->state);
98 RB_CLEAR_NODE(&state->rb_node);
99 /*
100 * btree io trees aren't supposed to have tasks waiting for
101 * changes in the flags of extent states ever.
102 */
103 ASSERT(!waitqueue_active(&state->wq));
104 free_extent_state(state);
351810c1
DS
105
106 cond_resched_lock(&tree->lock);
663dfbb0
FM
107 }
108 spin_unlock(&tree->lock);
109}
110
9e351cc8
JB
111static noinline void switch_commit_roots(struct btrfs_transaction *trans,
112 struct btrfs_fs_info *fs_info)
817d52f8 113{
9e351cc8
JB
114 struct btrfs_root *root, *tmp;
115
116 down_write(&fs_info->commit_root_sem);
117 list_for_each_entry_safe(root, tmp, &trans->switch_commits,
118 dirty_list) {
119 list_del_init(&root->dirty_list);
120 free_extent_buffer(root->commit_root);
121 root->commit_root = btrfs_root_node(root);
122 if (is_fstree(root->objectid))
123 btrfs_unpin_free_ino(root);
663dfbb0 124 clear_btree_io_tree(&root->dirty_log_pages);
9e351cc8 125 }
2b9dbef2
JB
126
127 /* We can free old roots now. */
128 spin_lock(&trans->dropped_roots_lock);
129 while (!list_empty(&trans->dropped_roots)) {
130 root = list_first_entry(&trans->dropped_roots,
131 struct btrfs_root, root_list);
132 list_del_init(&root->root_list);
133 spin_unlock(&trans->dropped_roots_lock);
134 btrfs_drop_and_free_fs_root(fs_info, root);
135 spin_lock(&trans->dropped_roots_lock);
136 }
137 spin_unlock(&trans->dropped_roots_lock);
9e351cc8 138 up_write(&fs_info->commit_root_sem);
817d52f8
JB
139}
140
0860adfd
MX
141static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
142 unsigned int type)
143{
144 if (type & TRANS_EXTWRITERS)
145 atomic_inc(&trans->num_extwriters);
146}
147
148static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
149 unsigned int type)
150{
151 if (type & TRANS_EXTWRITERS)
152 atomic_dec(&trans->num_extwriters);
153}
154
155static inline void extwriter_counter_init(struct btrfs_transaction *trans,
156 unsigned int type)
157{
158 atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
159}
160
161static inline int extwriter_counter_read(struct btrfs_transaction *trans)
162{
163 return atomic_read(&trans->num_extwriters);
178260b2
MX
164}
165
d352ac68
CM
166/*
167 * either allocate a new transaction or hop into the existing one
168 */
0860adfd 169static noinline int join_transaction(struct btrfs_root *root, unsigned int type)
79154b1b
CM
170{
171 struct btrfs_transaction *cur_trans;
19ae4e81 172 struct btrfs_fs_info *fs_info = root->fs_info;
a4abeea4 173
19ae4e81 174 spin_lock(&fs_info->trans_lock);
d43317dc 175loop:
49b25e05 176 /* The file system has been taken offline. No new transactions. */
87533c47 177 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
19ae4e81 178 spin_unlock(&fs_info->trans_lock);
49b25e05
JM
179 return -EROFS;
180 }
181
19ae4e81 182 cur_trans = fs_info->running_transaction;
a4abeea4 183 if (cur_trans) {
871383be 184 if (cur_trans->aborted) {
19ae4e81 185 spin_unlock(&fs_info->trans_lock);
49b25e05 186 return cur_trans->aborted;
871383be 187 }
4a9d8bde 188 if (btrfs_blocked_trans_types[cur_trans->state] & type) {
178260b2
MX
189 spin_unlock(&fs_info->trans_lock);
190 return -EBUSY;
191 }
a4abeea4 192 atomic_inc(&cur_trans->use_count);
13c5a93e 193 atomic_inc(&cur_trans->num_writers);
0860adfd 194 extwriter_counter_inc(cur_trans, type);
19ae4e81 195 spin_unlock(&fs_info->trans_lock);
a4abeea4 196 return 0;
79154b1b 197 }
19ae4e81 198 spin_unlock(&fs_info->trans_lock);
a4abeea4 199
354aa0fb
MX
200 /*
201 * If we are ATTACH, we just want to catch the current transaction,
202 * and commit it. If there is no transaction, just return ENOENT.
203 */
204 if (type == TRANS_ATTACH)
205 return -ENOENT;
206
4a9d8bde
MX
207 /*
208 * JOIN_NOLOCK only happens during the transaction commit, so
209 * it is impossible that ->running_transaction is NULL
210 */
211 BUG_ON(type == TRANS_JOIN_NOLOCK);
212
a4abeea4
JB
213 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS);
214 if (!cur_trans)
215 return -ENOMEM;
d43317dc 216
19ae4e81
JS
217 spin_lock(&fs_info->trans_lock);
218 if (fs_info->running_transaction) {
d43317dc
CM
219 /*
220 * someone started a transaction after we unlocked. Make sure
4a9d8bde 221 * to redo the checks above
d43317dc 222 */
a4abeea4 223 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
d43317dc 224 goto loop;
87533c47 225 } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
e4b50e14 226 spin_unlock(&fs_info->trans_lock);
7b8b92af
JB
227 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
228 return -EROFS;
79154b1b 229 }
d43317dc 230
a4abeea4 231 atomic_set(&cur_trans->num_writers, 1);
0860adfd 232 extwriter_counter_init(cur_trans, type);
a4abeea4
JB
233 init_waitqueue_head(&cur_trans->writer_wait);
234 init_waitqueue_head(&cur_trans->commit_wait);
161c3549 235 init_waitqueue_head(&cur_trans->pending_wait);
4a9d8bde 236 cur_trans->state = TRANS_STATE_RUNNING;
a4abeea4
JB
237 /*
238 * One for this trans handle, one so it will live on until we
239 * commit the transaction.
240 */
241 atomic_set(&cur_trans->use_count, 2);
161c3549 242 atomic_set(&cur_trans->pending_ordered, 0);
3204d33c 243 cur_trans->flags = 0;
a4abeea4
JB
244 cur_trans->start_time = get_seconds();
245
a099d0fd
AM
246 memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
247
c46effa6 248 cur_trans->delayed_refs.href_root = RB_ROOT;
3368d001 249 cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
d7df2c79 250 atomic_set(&cur_trans->delayed_refs.num_entries, 0);
20b297d6
JS
251
252 /*
253 * although the tree mod log is per file system and not per transaction,
254 * the log must never go across transaction boundaries.
255 */
256 smp_mb();
31b1a2bd 257 if (!list_empty(&fs_info->tree_mod_seq_list))
efe120a0 258 WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when "
20b297d6 259 "creating a fresh transaction\n");
31b1a2bd 260 if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
efe120a0 261 WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when "
20b297d6 262 "creating a fresh transaction\n");
fc36ed7e 263 atomic64_set(&fs_info->tree_mod_seq, 0);
20b297d6 264
a4abeea4
JB
265 spin_lock_init(&cur_trans->delayed_refs.lock);
266
267 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
6df9a95e 268 INIT_LIST_HEAD(&cur_trans->pending_chunks);
9e351cc8 269 INIT_LIST_HEAD(&cur_trans->switch_commits);
ce93ec54 270 INIT_LIST_HEAD(&cur_trans->dirty_bgs);
1bbc621e 271 INIT_LIST_HEAD(&cur_trans->io_bgs);
2b9dbef2 272 INIT_LIST_HEAD(&cur_trans->dropped_roots);
1bbc621e 273 mutex_init(&cur_trans->cache_write_mutex);
cb723e49 274 cur_trans->num_dirty_bgs = 0;
ce93ec54 275 spin_lock_init(&cur_trans->dirty_bgs_lock);
e33e17ee 276 INIT_LIST_HEAD(&cur_trans->deleted_bgs);
2b9dbef2 277 spin_lock_init(&cur_trans->dropped_roots_lock);
19ae4e81 278 list_add_tail(&cur_trans->list, &fs_info->trans_list);
a4abeea4 279 extent_io_tree_init(&cur_trans->dirty_pages,
19ae4e81
JS
280 fs_info->btree_inode->i_mapping);
281 fs_info->generation++;
282 cur_trans->transid = fs_info->generation;
283 fs_info->running_transaction = cur_trans;
49b25e05 284 cur_trans->aborted = 0;
19ae4e81 285 spin_unlock(&fs_info->trans_lock);
15ee9bc7 286
79154b1b
CM
287 return 0;
288}
289
d352ac68 290/*
d397712b
CM
291 * this does all the record keeping required to make sure that a reference
292 * counted root is properly recorded in a given transaction. This is required
293 * to make sure the old root from before we joined the transaction is deleted
294 * when the transaction commits
d352ac68 295 */
7585717f 296static int record_root_in_trans(struct btrfs_trans_handle *trans,
a4abeea4 297 struct btrfs_root *root)
6702ed49 298{
27cdeb70
MX
299 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
300 root->last_trans < trans->transid) {
6702ed49 301 WARN_ON(root == root->fs_info->extent_root);
5d4f98a2
YZ
302 WARN_ON(root->commit_root != root->node);
303
7585717f 304 /*
27cdeb70 305 * see below for IN_TRANS_SETUP usage rules
7585717f
CM
306 * we have the reloc mutex held now, so there
307 * is only one writer in this function
308 */
27cdeb70 309 set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
7585717f 310
27cdeb70 311 /* make sure readers find IN_TRANS_SETUP before
7585717f
CM
312 * they find our root->last_trans update
313 */
314 smp_wmb();
315
a4abeea4
JB
316 spin_lock(&root->fs_info->fs_roots_radix_lock);
317 if (root->last_trans == trans->transid) {
318 spin_unlock(&root->fs_info->fs_roots_radix_lock);
319 return 0;
320 }
5d4f98a2
YZ
321 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
322 (unsigned long)root->root_key.objectid,
323 BTRFS_ROOT_TRANS_TAG);
a4abeea4 324 spin_unlock(&root->fs_info->fs_roots_radix_lock);
7585717f
CM
325 root->last_trans = trans->transid;
326
327 /* this is pretty tricky. We don't want to
328 * take the relocation lock in btrfs_record_root_in_trans
329 * unless we're really doing the first setup for this root in
330 * this transaction.
331 *
332 * Normally we'd use root->last_trans as a flag to decide
333 * if we want to take the expensive mutex.
334 *
335 * But, we have to set root->last_trans before we
336 * init the relocation root, otherwise, we trip over warnings
337 * in ctree.c. The solution used here is to flag ourselves
27cdeb70 338 * with root IN_TRANS_SETUP. When this is 1, we're still
7585717f
CM
339 * fixing up the reloc trees and everyone must wait.
340 *
341 * When this is zero, they can trust root->last_trans and fly
342 * through btrfs_record_root_in_trans without having to take the
343 * lock. smp_wmb() makes sure that all the writes above are
344 * done before we pop in the zero below
345 */
5d4f98a2 346 btrfs_init_reloc_root(trans, root);
c7548af6 347 smp_mb__before_atomic();
27cdeb70 348 clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
5d4f98a2
YZ
349 }
350 return 0;
351}
bcc63abb 352
7585717f 353
2b9dbef2
JB
354void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
355 struct btrfs_root *root)
356{
357 struct btrfs_transaction *cur_trans = trans->transaction;
358
359 /* Add ourselves to the transaction dropped list */
360 spin_lock(&cur_trans->dropped_roots_lock);
361 list_add_tail(&root->root_list, &cur_trans->dropped_roots);
362 spin_unlock(&cur_trans->dropped_roots_lock);
363
364 /* Make sure we don't try to update the root at commit time */
365 spin_lock(&root->fs_info->fs_roots_radix_lock);
366 radix_tree_tag_clear(&root->fs_info->fs_roots_radix,
367 (unsigned long)root->root_key.objectid,
368 BTRFS_ROOT_TRANS_TAG);
369 spin_unlock(&root->fs_info->fs_roots_radix_lock);
370}
371
7585717f
CM
372int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
373 struct btrfs_root *root)
374{
27cdeb70 375 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
7585717f
CM
376 return 0;
377
378 /*
27cdeb70 379 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
7585717f
CM
380 * and barriers
381 */
382 smp_rmb();
383 if (root->last_trans == trans->transid &&
27cdeb70 384 !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
7585717f
CM
385 return 0;
386
387 mutex_lock(&root->fs_info->reloc_mutex);
388 record_root_in_trans(trans, root);
389 mutex_unlock(&root->fs_info->reloc_mutex);
390
391 return 0;
392}
393
4a9d8bde
MX
394static inline int is_transaction_blocked(struct btrfs_transaction *trans)
395{
396 return (trans->state >= TRANS_STATE_BLOCKED &&
501407aa
JB
397 trans->state < TRANS_STATE_UNBLOCKED &&
398 !trans->aborted);
4a9d8bde
MX
399}
400
d352ac68
CM
401/* wait for commit against the current transaction to become unblocked
402 * when this is done, it is safe to start a new transaction, but the current
403 * transaction might not be fully on disk.
404 */
37d1aeee 405static void wait_current_trans(struct btrfs_root *root)
79154b1b 406{
f9295749 407 struct btrfs_transaction *cur_trans;
79154b1b 408
a4abeea4 409 spin_lock(&root->fs_info->trans_lock);
f9295749 410 cur_trans = root->fs_info->running_transaction;
4a9d8bde 411 if (cur_trans && is_transaction_blocked(cur_trans)) {
13c5a93e 412 atomic_inc(&cur_trans->use_count);
a4abeea4 413 spin_unlock(&root->fs_info->trans_lock);
72d63ed6
LZ
414
415 wait_event(root->fs_info->transaction_wait,
501407aa
JB
416 cur_trans->state >= TRANS_STATE_UNBLOCKED ||
417 cur_trans->aborted);
724e2315 418 btrfs_put_transaction(cur_trans);
a4abeea4
JB
419 } else {
420 spin_unlock(&root->fs_info->trans_lock);
f9295749 421 }
37d1aeee
CM
422}
423
a22285a6
YZ
424static int may_wait_transaction(struct btrfs_root *root, int type)
425{
a4abeea4
JB
426 if (root->fs_info->log_root_recovering)
427 return 0;
428
429 if (type == TRANS_USERSPACE)
430 return 1;
431
432 if (type == TRANS_START &&
433 !atomic_read(&root->fs_info->open_ioctl_trans))
a22285a6 434 return 1;
a4abeea4 435
a22285a6
YZ
436 return 0;
437}
438
20dd2cbf
MX
439static inline bool need_reserve_reloc_root(struct btrfs_root *root)
440{
441 if (!root->fs_info->reloc_ctl ||
27cdeb70 442 !test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
20dd2cbf
MX
443 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
444 root->reloc_root)
445 return false;
446
447 return true;
448}
449
08e007d2 450static struct btrfs_trans_handle *
5aed1dd8
AM
451start_transaction(struct btrfs_root *root, unsigned int num_items,
452 unsigned int type, enum btrfs_reserve_flush_enum flush)
37d1aeee 453{
a22285a6
YZ
454 struct btrfs_trans_handle *h;
455 struct btrfs_transaction *cur_trans;
b5009945 456 u64 num_bytes = 0;
c5567237 457 u64 qgroup_reserved = 0;
20dd2cbf
MX
458 bool reloc_reserved = false;
459 int ret;
acce952b 460
46c4e71e 461 /* Send isn't supposed to start transactions. */
2755a0de 462 ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB);
46c4e71e 463
87533c47 464 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
acce952b 465 return ERR_PTR(-EROFS);
2a1eb461 466
46c4e71e 467 if (current->journal_info) {
0860adfd 468 WARN_ON(type & TRANS_EXTWRITERS);
2a1eb461
JB
469 h = current->journal_info;
470 h->use_count++;
b7d5b0a8 471 WARN_ON(h->use_count > 2);
2a1eb461
JB
472 h->orig_rsv = h->block_rsv;
473 h->block_rsv = NULL;
474 goto got_it;
475 }
b5009945
JB
476
477 /*
478 * Do the reservation before we join the transaction so we can do all
479 * the appropriate flushing if need be.
480 */
481 if (num_items > 0 && root != root->fs_info->chunk_root) {
7174109c
QW
482 qgroup_reserved = num_items * root->nodesize;
483 ret = btrfs_qgroup_reserve_meta(root, qgroup_reserved);
484 if (ret)
485 return ERR_PTR(ret);
c5567237 486
b5009945 487 num_bytes = btrfs_calc_trans_metadata_size(root, num_items);
20dd2cbf
MX
488 /*
489 * Do the reservation for the relocation root creation
490 */
ee39b432 491 if (need_reserve_reloc_root(root)) {
20dd2cbf
MX
492 num_bytes += root->nodesize;
493 reloc_reserved = true;
494 }
495
08e007d2
MX
496 ret = btrfs_block_rsv_add(root,
497 &root->fs_info->trans_block_rsv,
498 num_bytes, flush);
b5009945 499 if (ret)
843fcf35 500 goto reserve_fail;
b5009945 501 }
a22285a6 502again:
f2f767e7 503 h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
843fcf35
MX
504 if (!h) {
505 ret = -ENOMEM;
506 goto alloc_fail;
507 }
37d1aeee 508
98114659
JB
509 /*
510 * If we are JOIN_NOLOCK we're already committing a transaction and
511 * waiting on this guy, so we don't need to do the sb_start_intwrite
512 * because we're already holding a ref. We need this because we could
513 * have raced in and did an fsync() on a file which can kick a commit
514 * and then we deadlock with somebody doing a freeze.
354aa0fb
MX
515 *
516 * If we are ATTACH, it means we just want to catch the current
517 * transaction and commit it, so we needn't do sb_start_intwrite().
98114659 518 */
0860adfd 519 if (type & __TRANS_FREEZABLE)
60376ce4 520 sb_start_intwrite(root->fs_info->sb);
b2b5ef5c 521
a22285a6 522 if (may_wait_transaction(root, type))
37d1aeee 523 wait_current_trans(root);
a22285a6 524
a4abeea4 525 do {
354aa0fb 526 ret = join_transaction(root, type);
178260b2 527 if (ret == -EBUSY) {
a4abeea4 528 wait_current_trans(root);
178260b2
MX
529 if (unlikely(type == TRANS_ATTACH))
530 ret = -ENOENT;
531 }
a4abeea4
JB
532 } while (ret == -EBUSY);
533
db5b493a 534 if (ret < 0) {
354aa0fb
MX
535 /* We must get the transaction if we are JOIN_NOLOCK. */
536 BUG_ON(type == TRANS_JOIN_NOLOCK);
843fcf35 537 goto join_fail;
db5b493a 538 }
0f7d52f4 539
a22285a6 540 cur_trans = root->fs_info->running_transaction;
a22285a6
YZ
541
542 h->transid = cur_trans->transid;
543 h->transaction = cur_trans;
d13603ef 544 h->root = root;
2a1eb461 545 h->use_count = 1;
7174109c 546
a698d075 547 h->type = type;
d9a0540a 548 h->can_flush_pending_bgs = true;
bed92eae 549 INIT_LIST_HEAD(&h->qgroup_ref_list);
ea658bad 550 INIT_LIST_HEAD(&h->new_bgs);
b7ec40d7 551
a22285a6 552 smp_mb();
4a9d8bde
MX
553 if (cur_trans->state >= TRANS_STATE_BLOCKED &&
554 may_wait_transaction(root, type)) {
abdd2e80 555 current->journal_info = h;
a22285a6
YZ
556 btrfs_commit_transaction(h, root);
557 goto again;
558 }
559
b5009945 560 if (num_bytes) {
8c2a3ca2 561 trace_btrfs_space_reservation(root->fs_info, "transaction",
2bcc0328 562 h->transid, num_bytes, 1);
b5009945
JB
563 h->block_rsv = &root->fs_info->trans_block_rsv;
564 h->bytes_reserved = num_bytes;
20dd2cbf 565 h->reloc_reserved = reloc_reserved;
a22285a6 566 }
9ed74f2d 567
2a1eb461 568got_it:
a4abeea4 569 btrfs_record_root_in_trans(h, root);
a22285a6
YZ
570
571 if (!current->journal_info && type != TRANS_USERSPACE)
572 current->journal_info = h;
79154b1b 573 return h;
843fcf35
MX
574
575join_fail:
0860adfd 576 if (type & __TRANS_FREEZABLE)
843fcf35
MX
577 sb_end_intwrite(root->fs_info->sb);
578 kmem_cache_free(btrfs_trans_handle_cachep, h);
579alloc_fail:
580 if (num_bytes)
581 btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv,
582 num_bytes);
583reserve_fail:
7174109c 584 btrfs_qgroup_free_meta(root, qgroup_reserved);
843fcf35 585 return ERR_PTR(ret);
79154b1b
CM
586}
587
f9295749 588struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
5aed1dd8 589 unsigned int num_items)
f9295749 590{
08e007d2
MX
591 return start_transaction(root, num_items, TRANS_START,
592 BTRFS_RESERVE_FLUSH_ALL);
f9295749 593}
8eab77ff
FM
594struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
595 struct btrfs_root *root,
596 unsigned int num_items,
597 int min_factor)
598{
599 struct btrfs_trans_handle *trans;
600 u64 num_bytes;
601 int ret;
602
603 trans = btrfs_start_transaction(root, num_items);
604 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
605 return trans;
606
607 trans = btrfs_start_transaction(root, 0);
608 if (IS_ERR(trans))
609 return trans;
610
611 num_bytes = btrfs_calc_trans_metadata_size(root, num_items);
612 ret = btrfs_cond_migrate_bytes(root->fs_info,
613 &root->fs_info->trans_block_rsv,
614 num_bytes,
615 min_factor);
616 if (ret) {
617 btrfs_end_transaction(trans, root);
618 return ERR_PTR(ret);
619 }
620
621 trans->block_rsv = &root->fs_info->trans_block_rsv;
622 trans->bytes_reserved = num_bytes;
623
624 return trans;
625}
8407aa46 626
08e007d2 627struct btrfs_trans_handle *btrfs_start_transaction_lflush(
5aed1dd8
AM
628 struct btrfs_root *root,
629 unsigned int num_items)
8407aa46 630{
08e007d2
MX
631 return start_transaction(root, num_items, TRANS_START,
632 BTRFS_RESERVE_FLUSH_LIMIT);
8407aa46
MX
633}
634
7a7eaa40 635struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
f9295749 636{
8407aa46 637 return start_transaction(root, 0, TRANS_JOIN, 0);
f9295749
CM
638}
639
7a7eaa40 640struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root)
0af3d00b 641{
8407aa46 642 return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0);
0af3d00b
JB
643}
644
7a7eaa40 645struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root)
9ca9ee09 646{
8407aa46 647 return start_transaction(root, 0, TRANS_USERSPACE, 0);
9ca9ee09
SW
648}
649
d4edf39b
MX
650/*
651 * btrfs_attach_transaction() - catch the running transaction
652 *
653 * It is used when we want to commit the current the transaction, but
654 * don't want to start a new one.
655 *
656 * Note: If this function return -ENOENT, it just means there is no
657 * running transaction. But it is possible that the inactive transaction
658 * is still in the memory, not fully on disk. If you hope there is no
659 * inactive transaction in the fs when -ENOENT is returned, you should
660 * invoke
661 * btrfs_attach_transaction_barrier()
662 */
354aa0fb 663struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
60376ce4 664{
354aa0fb 665 return start_transaction(root, 0, TRANS_ATTACH, 0);
60376ce4
JB
666}
667
d4edf39b 668/*
90b6d283 669 * btrfs_attach_transaction_barrier() - catch the running transaction
d4edf39b
MX
670 *
671 * It is similar to the above function, the differentia is this one
672 * will wait for all the inactive transactions until they fully
673 * complete.
674 */
675struct btrfs_trans_handle *
676btrfs_attach_transaction_barrier(struct btrfs_root *root)
677{
678 struct btrfs_trans_handle *trans;
679
680 trans = start_transaction(root, 0, TRANS_ATTACH, 0);
681 if (IS_ERR(trans) && PTR_ERR(trans) == -ENOENT)
682 btrfs_wait_for_commit(root, 0);
683
684 return trans;
685}
686
d352ac68 687/* wait for a transaction commit to be fully complete */
b9c8300c 688static noinline void wait_for_commit(struct btrfs_root *root,
89ce8a63
CM
689 struct btrfs_transaction *commit)
690{
4a9d8bde 691 wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED);
89ce8a63
CM
692}
693
46204592
SW
694int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
695{
696 struct btrfs_transaction *cur_trans = NULL, *t;
8cd2807f 697 int ret = 0;
46204592 698
46204592
SW
699 if (transid) {
700 if (transid <= root->fs_info->last_trans_committed)
a4abeea4 701 goto out;
46204592
SW
702
703 /* find specified transaction */
a4abeea4 704 spin_lock(&root->fs_info->trans_lock);
46204592
SW
705 list_for_each_entry(t, &root->fs_info->trans_list, list) {
706 if (t->transid == transid) {
707 cur_trans = t;
a4abeea4 708 atomic_inc(&cur_trans->use_count);
8cd2807f 709 ret = 0;
46204592
SW
710 break;
711 }
8cd2807f
MX
712 if (t->transid > transid) {
713 ret = 0;
46204592 714 break;
8cd2807f 715 }
46204592 716 }
a4abeea4 717 spin_unlock(&root->fs_info->trans_lock);
42383020
SW
718
719 /*
720 * The specified transaction doesn't exist, or we
721 * raced with btrfs_commit_transaction
722 */
723 if (!cur_trans) {
724 if (transid > root->fs_info->last_trans_committed)
725 ret = -EINVAL;
8cd2807f 726 goto out;
42383020 727 }
46204592
SW
728 } else {
729 /* find newest transaction that is committing | committed */
a4abeea4 730 spin_lock(&root->fs_info->trans_lock);
46204592
SW
731 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
732 list) {
4a9d8bde
MX
733 if (t->state >= TRANS_STATE_COMMIT_START) {
734 if (t->state == TRANS_STATE_COMPLETED)
3473f3c0 735 break;
46204592 736 cur_trans = t;
a4abeea4 737 atomic_inc(&cur_trans->use_count);
46204592
SW
738 break;
739 }
740 }
a4abeea4 741 spin_unlock(&root->fs_info->trans_lock);
46204592 742 if (!cur_trans)
a4abeea4 743 goto out; /* nothing committing|committed */
46204592
SW
744 }
745
46204592 746 wait_for_commit(root, cur_trans);
724e2315 747 btrfs_put_transaction(cur_trans);
a4abeea4 748out:
46204592
SW
749 return ret;
750}
751
37d1aeee
CM
752void btrfs_throttle(struct btrfs_root *root)
753{
a4abeea4 754 if (!atomic_read(&root->fs_info->open_ioctl_trans))
9ca9ee09 755 wait_current_trans(root);
37d1aeee
CM
756}
757
8929ecfa
YZ
758static int should_end_transaction(struct btrfs_trans_handle *trans,
759 struct btrfs_root *root)
760{
1be41b78 761 if (root->fs_info->global_block_rsv.space_info->full &&
0a2b2a84 762 btrfs_check_space_for_delayed_refs(trans, root))
1be41b78 763 return 1;
36ba022a 764
1be41b78 765 return !!btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5);
8929ecfa
YZ
766}
767
768int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
769 struct btrfs_root *root)
770{
771 struct btrfs_transaction *cur_trans = trans->transaction;
772 int updates;
49b25e05 773 int err;
8929ecfa 774
a4abeea4 775 smp_mb();
4a9d8bde
MX
776 if (cur_trans->state >= TRANS_STATE_BLOCKED ||
777 cur_trans->delayed_refs.flushing)
8929ecfa
YZ
778 return 1;
779
780 updates = trans->delayed_ref_updates;
781 trans->delayed_ref_updates = 0;
49b25e05 782 if (updates) {
28ed1345 783 err = btrfs_run_delayed_refs(trans, root, updates * 2);
49b25e05
JM
784 if (err) /* Error code will also eval true */
785 return err;
786 }
8929ecfa
YZ
787
788 return should_end_transaction(trans, root);
789}
790
89ce8a63 791static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
a698d075 792 struct btrfs_root *root, int throttle)
79154b1b 793{
8929ecfa 794 struct btrfs_transaction *cur_trans = trans->transaction;
ab78c84d 795 struct btrfs_fs_info *info = root->fs_info;
1be41b78 796 unsigned long cur = trans->delayed_ref_updates;
a698d075 797 int lock = (trans->type != TRANS_JOIN_NOLOCK);
4edc2ca3 798 int err = 0;
a79b7d4b 799 int must_run_delayed_refs = 0;
c3e69d58 800
3bbb24b2
JB
801 if (trans->use_count > 1) {
802 trans->use_count--;
2a1eb461
JB
803 trans->block_rsv = trans->orig_rsv;
804 return 0;
805 }
806
b24e03db 807 btrfs_trans_release_metadata(trans, root);
4c13d758 808 trans->block_rsv = NULL;
c5567237 809
ea658bad
JB
810 if (!list_empty(&trans->new_bgs))
811 btrfs_create_pending_block_groups(trans, root);
812
1be41b78 813 trans->delayed_ref_updates = 0;
a79b7d4b
CM
814 if (!trans->sync) {
815 must_run_delayed_refs =
816 btrfs_should_throttle_delayed_refs(trans, root);
0a2b2a84 817 cur = max_t(unsigned long, cur, 32);
a79b7d4b
CM
818
819 /*
820 * don't make the caller wait if they are from a NOLOCK
821 * or ATTACH transaction, it will deadlock with commit
822 */
823 if (must_run_delayed_refs == 1 &&
824 (trans->type & (__TRANS_JOIN_NOLOCK | __TRANS_ATTACH)))
825 must_run_delayed_refs = 2;
56bec294 826 }
bb721703 827
0e721106
JB
828 btrfs_trans_release_metadata(trans, root);
829 trans->block_rsv = NULL;
56bec294 830
ea658bad
JB
831 if (!list_empty(&trans->new_bgs))
832 btrfs_create_pending_block_groups(trans, root);
833
4fbcdf66
FM
834 btrfs_trans_release_chunk_metadata(trans);
835
a4abeea4 836 if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) &&
4a9d8bde
MX
837 should_end_transaction(trans, root) &&
838 ACCESS_ONCE(cur_trans->state) == TRANS_STATE_RUNNING) {
839 spin_lock(&info->trans_lock);
840 if (cur_trans->state == TRANS_STATE_RUNNING)
841 cur_trans->state = TRANS_STATE_BLOCKED;
842 spin_unlock(&info->trans_lock);
a4abeea4 843 }
8929ecfa 844
4a9d8bde 845 if (lock && ACCESS_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) {
3bbb24b2 846 if (throttle)
8929ecfa 847 return btrfs_commit_transaction(trans, root);
3bbb24b2 848 else
8929ecfa
YZ
849 wake_up_process(info->transaction_kthread);
850 }
851
0860adfd 852 if (trans->type & __TRANS_FREEZABLE)
98114659 853 sb_end_intwrite(root->fs_info->sb);
6df7881a 854
8929ecfa 855 WARN_ON(cur_trans != info->running_transaction);
13c5a93e
JB
856 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
857 atomic_dec(&cur_trans->num_writers);
0860adfd 858 extwriter_counter_dec(cur_trans, trans->type);
89ce8a63 859
a83342aa
DS
860 /*
861 * Make sure counter is updated before we wake up waiters.
862 */
99d16cbc 863 smp_mb();
79154b1b
CM
864 if (waitqueue_active(&cur_trans->writer_wait))
865 wake_up(&cur_trans->writer_wait);
724e2315 866 btrfs_put_transaction(cur_trans);
9ed74f2d
JB
867
868 if (current->journal_info == trans)
869 current->journal_info = NULL;
ab78c84d 870
24bbcf04
YZ
871 if (throttle)
872 btrfs_run_delayed_iputs(root);
873
49b25e05 874 if (trans->aborted ||
4e121c06
JB
875 test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) {
876 wake_up_process(info->transaction_kthread);
4edc2ca3 877 err = -EIO;
4e121c06 878 }
edf39272 879 assert_qgroups_uptodate(trans);
49b25e05 880
4edc2ca3 881 kmem_cache_free(btrfs_trans_handle_cachep, trans);
a79b7d4b
CM
882 if (must_run_delayed_refs) {
883 btrfs_async_run_delayed_refs(root, cur,
884 must_run_delayed_refs == 1);
885 }
4edc2ca3 886 return err;
79154b1b
CM
887}
888
89ce8a63
CM
889int btrfs_end_transaction(struct btrfs_trans_handle *trans,
890 struct btrfs_root *root)
891{
98ad43be 892 return __btrfs_end_transaction(trans, root, 0);
89ce8a63
CM
893}
894
895int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
896 struct btrfs_root *root)
897{
98ad43be 898 return __btrfs_end_transaction(trans, root, 1);
16cdcec7
MX
899}
900
d352ac68
CM
901/*
902 * when btree blocks are allocated, they have some corresponding bits set for
903 * them in one of two extent_io trees. This is used to make sure all of
690587d1 904 * those extents are sent to disk but does not wait on them
d352ac68 905 */
690587d1 906int btrfs_write_marked_extents(struct btrfs_root *root,
8cef4e16 907 struct extent_io_tree *dirty_pages, int mark)
79154b1b 908{
777e6bd7 909 int err = 0;
7c4452b9 910 int werr = 0;
1728366e 911 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
e6138876 912 struct extent_state *cached_state = NULL;
777e6bd7 913 u64 start = 0;
5f39d397 914 u64 end;
7c4452b9 915
1728366e 916 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 917 mark, &cached_state)) {
663dfbb0
FM
918 bool wait_writeback = false;
919
920 err = convert_extent_bit(dirty_pages, start, end,
921 EXTENT_NEED_WAIT,
922 mark, &cached_state, GFP_NOFS);
923 /*
924 * convert_extent_bit can return -ENOMEM, which is most of the
925 * time a temporary error. So when it happens, ignore the error
926 * and wait for writeback of this range to finish - because we
927 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
928 * to btrfs_wait_marked_extents() would not know that writeback
929 * for this range started and therefore wouldn't wait for it to
930 * finish - we don't want to commit a superblock that points to
931 * btree nodes/leafs for which writeback hasn't finished yet
932 * (and without errors).
933 * We cleanup any entries left in the io tree when committing
934 * the transaction (through clear_btree_io_tree()).
935 */
936 if (err == -ENOMEM) {
937 err = 0;
938 wait_writeback = true;
939 }
940 if (!err)
941 err = filemap_fdatawrite_range(mapping, start, end);
1728366e
JB
942 if (err)
943 werr = err;
663dfbb0
FM
944 else if (wait_writeback)
945 werr = filemap_fdatawait_range(mapping, start, end);
e38e2ed7 946 free_extent_state(cached_state);
663dfbb0 947 cached_state = NULL;
1728366e
JB
948 cond_resched();
949 start = end + 1;
7c4452b9 950 }
690587d1
CM
951 return werr;
952}
953
954/*
955 * when btree blocks are allocated, they have some corresponding bits set for
956 * them in one of two extent_io trees. This is used to make sure all of
957 * those extents are on disk for transaction or log commit. We wait
958 * on all the pages and clear them from the dirty pages state tree
959 */
960int btrfs_wait_marked_extents(struct btrfs_root *root,
8cef4e16 961 struct extent_io_tree *dirty_pages, int mark)
690587d1 962{
690587d1
CM
963 int err = 0;
964 int werr = 0;
1728366e 965 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
e6138876 966 struct extent_state *cached_state = NULL;
690587d1
CM
967 u64 start = 0;
968 u64 end;
656f30db
FM
969 struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode);
970 bool errors = false;
777e6bd7 971
1728366e 972 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 973 EXTENT_NEED_WAIT, &cached_state)) {
663dfbb0
FM
974 /*
975 * Ignore -ENOMEM errors returned by clear_extent_bit().
976 * When committing the transaction, we'll remove any entries
977 * left in the io tree. For a log commit, we don't remove them
978 * after committing the log because the tree can be accessed
979 * concurrently - we do it only at transaction commit time when
980 * it's safe to do it (through clear_btree_io_tree()).
981 */
982 err = clear_extent_bit(dirty_pages, start, end,
983 EXTENT_NEED_WAIT,
984 0, 0, &cached_state, GFP_NOFS);
985 if (err == -ENOMEM)
986 err = 0;
987 if (!err)
988 err = filemap_fdatawait_range(mapping, start, end);
1728366e
JB
989 if (err)
990 werr = err;
e38e2ed7
FM
991 free_extent_state(cached_state);
992 cached_state = NULL;
1728366e
JB
993 cond_resched();
994 start = end + 1;
777e6bd7 995 }
7c4452b9
CM
996 if (err)
997 werr = err;
656f30db
FM
998
999 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
1000 if ((mark & EXTENT_DIRTY) &&
1001 test_and_clear_bit(BTRFS_INODE_BTREE_LOG1_ERR,
1002 &btree_ino->runtime_flags))
1003 errors = true;
1004
1005 if ((mark & EXTENT_NEW) &&
1006 test_and_clear_bit(BTRFS_INODE_BTREE_LOG2_ERR,
1007 &btree_ino->runtime_flags))
1008 errors = true;
1009 } else {
1010 if (test_and_clear_bit(BTRFS_INODE_BTREE_ERR,
1011 &btree_ino->runtime_flags))
1012 errors = true;
1013 }
1014
1015 if (errors && !werr)
1016 werr = -EIO;
1017
7c4452b9 1018 return werr;
79154b1b
CM
1019}
1020
690587d1
CM
1021/*
1022 * when btree blocks are allocated, they have some corresponding bits set for
1023 * them in one of two extent_io trees. This is used to make sure all of
1024 * those extents are on disk for transaction or log commit
1025 */
171170c1 1026static int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
8cef4e16 1027 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
1028{
1029 int ret;
1030 int ret2;
c6adc9cc 1031 struct blk_plug plug;
690587d1 1032
c6adc9cc 1033 blk_start_plug(&plug);
8cef4e16 1034 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
c6adc9cc 1035 blk_finish_plug(&plug);
8cef4e16 1036 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
bf0da8c1
CM
1037
1038 if (ret)
1039 return ret;
1040 if (ret2)
1041 return ret2;
1042 return 0;
690587d1
CM
1043}
1044
663dfbb0 1045static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
d0c803c4
CM
1046 struct btrfs_root *root)
1047{
663dfbb0
FM
1048 int ret;
1049
1050 ret = btrfs_write_and_wait_marked_extents(root,
8cef4e16
YZ
1051 &trans->transaction->dirty_pages,
1052 EXTENT_DIRTY);
663dfbb0
FM
1053 clear_btree_io_tree(&trans->transaction->dirty_pages);
1054
1055 return ret;
d0c803c4
CM
1056}
1057
d352ac68
CM
1058/*
1059 * this is used to update the root pointer in the tree of tree roots.
1060 *
1061 * But, in the case of the extent allocation tree, updating the root
1062 * pointer may allocate blocks which may change the root of the extent
1063 * allocation tree.
1064 *
1065 * So, this loops and repeats and makes sure the cowonly root didn't
1066 * change while the root pointer was being updated in the metadata.
1067 */
0b86a832
CM
1068static int update_cowonly_root(struct btrfs_trans_handle *trans,
1069 struct btrfs_root *root)
79154b1b
CM
1070{
1071 int ret;
0b86a832 1072 u64 old_root_bytenr;
86b9f2ec 1073 u64 old_root_used;
0b86a832 1074 struct btrfs_root *tree_root = root->fs_info->tree_root;
79154b1b 1075
86b9f2ec 1076 old_root_used = btrfs_root_used(&root->root_item);
56bec294 1077
d397712b 1078 while (1) {
0b86a832 1079 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec 1080 if (old_root_bytenr == root->node->start &&
ea526d18 1081 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 1082 break;
87ef2bb4 1083
5d4f98a2 1084 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 1085 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
1086 &root->root_key,
1087 &root->root_item);
49b25e05
JM
1088 if (ret)
1089 return ret;
56bec294 1090
86b9f2ec 1091 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 1092 }
276e680d 1093
0b86a832
CM
1094 return 0;
1095}
1096
d352ac68
CM
1097/*
1098 * update all the cowonly tree roots on disk
49b25e05
JM
1099 *
1100 * The error handling in this function may not be obvious. Any of the
1101 * failures will cause the file system to go offline. We still need
1102 * to clean up the delayed refs.
d352ac68 1103 */
5d4f98a2
YZ
1104static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root)
0b86a832
CM
1106{
1107 struct btrfs_fs_info *fs_info = root->fs_info;
ea526d18 1108 struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
1bbc621e 1109 struct list_head *io_bgs = &trans->transaction->io_bgs;
0b86a832 1110 struct list_head *next;
84234f3a 1111 struct extent_buffer *eb;
56bec294 1112 int ret;
84234f3a
YZ
1113
1114 eb = btrfs_lock_root_node(fs_info->tree_root);
49b25e05
JM
1115 ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
1116 0, &eb);
84234f3a
YZ
1117 btrfs_tree_unlock(eb);
1118 free_extent_buffer(eb);
0b86a832 1119
49b25e05
JM
1120 if (ret)
1121 return ret;
1122
56bec294 1123 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49b25e05
JM
1124 if (ret)
1125 return ret;
87ef2bb4 1126
733f4fbb 1127 ret = btrfs_run_dev_stats(trans, root->fs_info);
c16ce190
JB
1128 if (ret)
1129 return ret;
8dabb742 1130 ret = btrfs_run_dev_replace(trans, root->fs_info);
c16ce190
JB
1131 if (ret)
1132 return ret;
546adb0d 1133 ret = btrfs_run_qgroups(trans, root->fs_info);
c16ce190
JB
1134 if (ret)
1135 return ret;
546adb0d 1136
dcdf7f6d
JB
1137 ret = btrfs_setup_space_cache(trans, root);
1138 if (ret)
1139 return ret;
1140
546adb0d
JS
1141 /* run_qgroups might have added some more refs */
1142 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
c16ce190
JB
1143 if (ret)
1144 return ret;
ea526d18 1145again:
d397712b 1146 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
0b86a832
CM
1147 next = fs_info->dirty_cowonly_roots.next;
1148 list_del_init(next);
1149 root = list_entry(next, struct btrfs_root, dirty_list);
e7070be1 1150 clear_bit(BTRFS_ROOT_DIRTY, &root->state);
87ef2bb4 1151
9e351cc8
JB
1152 if (root != fs_info->extent_root)
1153 list_add_tail(&root->dirty_list,
1154 &trans->transaction->switch_commits);
49b25e05
JM
1155 ret = update_cowonly_root(trans, root);
1156 if (ret)
1157 return ret;
ea526d18
JB
1158 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1159 if (ret)
1160 return ret;
79154b1b 1161 }
276e680d 1162
1bbc621e 1163 while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
ea526d18
JB
1164 ret = btrfs_write_dirty_block_groups(trans, root);
1165 if (ret)
1166 return ret;
1167 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1168 if (ret)
1169 return ret;
1170 }
1171
1172 if (!list_empty(&fs_info->dirty_cowonly_roots))
1173 goto again;
1174
9e351cc8
JB
1175 list_add_tail(&fs_info->extent_root->dirty_list,
1176 &trans->transaction->switch_commits);
8dabb742
SB
1177 btrfs_after_dev_replace_commit(fs_info);
1178
79154b1b
CM
1179 return 0;
1180}
1181
d352ac68
CM
1182/*
1183 * dead roots are old snapshots that need to be deleted. This allocates
1184 * a dirty root struct and adds it into the list of dead roots that need to
1185 * be deleted
1186 */
cfad392b 1187void btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 1188{
a4abeea4 1189 spin_lock(&root->fs_info->trans_lock);
cfad392b
JB
1190 if (list_empty(&root->root_list))
1191 list_add_tail(&root->root_list, &root->fs_info->dead_roots);
a4abeea4 1192 spin_unlock(&root->fs_info->trans_lock);
5eda7b5e
CM
1193}
1194
d352ac68 1195/*
5d4f98a2 1196 * update all the cowonly tree roots on disk
d352ac68 1197 */
5d4f98a2
YZ
1198static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
1199 struct btrfs_root *root)
0f7d52f4 1200{
0f7d52f4 1201 struct btrfs_root *gang[8];
5d4f98a2 1202 struct btrfs_fs_info *fs_info = root->fs_info;
0f7d52f4
CM
1203 int i;
1204 int ret;
54aa1f4d
CM
1205 int err = 0;
1206
a4abeea4 1207 spin_lock(&fs_info->fs_roots_radix_lock);
d397712b 1208 while (1) {
5d4f98a2
YZ
1209 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
1210 (void **)gang, 0,
0f7d52f4
CM
1211 ARRAY_SIZE(gang),
1212 BTRFS_ROOT_TRANS_TAG);
1213 if (ret == 0)
1214 break;
1215 for (i = 0; i < ret; i++) {
1216 root = gang[i];
5d4f98a2
YZ
1217 radix_tree_tag_clear(&fs_info->fs_roots_radix,
1218 (unsigned long)root->root_key.objectid,
1219 BTRFS_ROOT_TRANS_TAG);
a4abeea4 1220 spin_unlock(&fs_info->fs_roots_radix_lock);
31153d81 1221
e02119d5 1222 btrfs_free_log(trans, root);
5d4f98a2 1223 btrfs_update_reloc_root(trans, root);
d68fc57b 1224 btrfs_orphan_commit_root(trans, root);
bcc63abb 1225
82d5902d
LZ
1226 btrfs_save_ino_cache(root, trans);
1227
f1ebcc74 1228 /* see comments in should_cow_block() */
27cdeb70 1229 clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
c7548af6 1230 smp_mb__after_atomic();
f1ebcc74 1231
978d910d 1232 if (root->commit_root != root->node) {
9e351cc8
JB
1233 list_add_tail(&root->dirty_list,
1234 &trans->transaction->switch_commits);
978d910d
YZ
1235 btrfs_set_root_node(&root->root_item,
1236 root->node);
1237 }
5d4f98a2 1238
5d4f98a2 1239 err = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
1240 &root->root_key,
1241 &root->root_item);
a4abeea4 1242 spin_lock(&fs_info->fs_roots_radix_lock);
54aa1f4d
CM
1243 if (err)
1244 break;
7174109c 1245 btrfs_qgroup_free_meta_all(root);
0f7d52f4
CM
1246 }
1247 }
a4abeea4 1248 spin_unlock(&fs_info->fs_roots_radix_lock);
54aa1f4d 1249 return err;
0f7d52f4
CM
1250}
1251
d352ac68 1252/*
de78b51a
ES
1253 * defrag a given btree.
1254 * Every leaf in the btree is read and defragged.
d352ac68 1255 */
de78b51a 1256int btrfs_defrag_root(struct btrfs_root *root)
e9d0b13b
CM
1257{
1258 struct btrfs_fs_info *info = root->fs_info;
e9d0b13b 1259 struct btrfs_trans_handle *trans;
8929ecfa 1260 int ret;
e9d0b13b 1261
27cdeb70 1262 if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
e9d0b13b 1263 return 0;
8929ecfa 1264
6b80053d 1265 while (1) {
8929ecfa
YZ
1266 trans = btrfs_start_transaction(root, 0);
1267 if (IS_ERR(trans))
1268 return PTR_ERR(trans);
1269
de78b51a 1270 ret = btrfs_defrag_leaves(trans, root);
8929ecfa 1271
e9d0b13b 1272 btrfs_end_transaction(trans, root);
b53d3f5d 1273 btrfs_btree_balance_dirty(info->tree_root);
e9d0b13b
CM
1274 cond_resched();
1275
7841cb28 1276 if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN)
e9d0b13b 1277 break;
210549eb
DS
1278
1279 if (btrfs_defrag_cancelled(root->fs_info)) {
efe120a0 1280 pr_debug("BTRFS: defrag_root cancelled\n");
210549eb
DS
1281 ret = -EAGAIN;
1282 break;
1283 }
e9d0b13b 1284 }
27cdeb70 1285 clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
8929ecfa 1286 return ret;
e9d0b13b
CM
1287}
1288
d352ac68
CM
1289/*
1290 * new snapshots need to be created at a very specific time in the
aec8030a
MX
1291 * transaction commit. This does the actual creation.
1292 *
1293 * Note:
1294 * If the error which may affect the commitment of the current transaction
1295 * happens, we should return the error number. If the error which just affect
1296 * the creation of the pending snapshots, just return 0.
d352ac68 1297 */
80b6794d 1298static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
1299 struct btrfs_fs_info *fs_info,
1300 struct btrfs_pending_snapshot *pending)
1301{
1302 struct btrfs_key key;
80b6794d 1303 struct btrfs_root_item *new_root_item;
3063d29f
CM
1304 struct btrfs_root *tree_root = fs_info->tree_root;
1305 struct btrfs_root *root = pending->root;
6bdb72de 1306 struct btrfs_root *parent_root;
98c9942a 1307 struct btrfs_block_rsv *rsv;
6bdb72de 1308 struct inode *parent_inode;
42874b3d
MX
1309 struct btrfs_path *path;
1310 struct btrfs_dir_item *dir_item;
a22285a6 1311 struct dentry *dentry;
3063d29f 1312 struct extent_buffer *tmp;
925baedd 1313 struct extent_buffer *old;
8ea05e3a 1314 struct timespec cur_time = CURRENT_TIME;
aec8030a 1315 int ret = 0;
d68fc57b 1316 u64 to_reserve = 0;
6bdb72de 1317 u64 index = 0;
a22285a6 1318 u64 objectid;
b83cc969 1319 u64 root_flags;
8ea05e3a 1320 uuid_le new_uuid;
3063d29f 1321
42874b3d
MX
1322 path = btrfs_alloc_path();
1323 if (!path) {
aec8030a
MX
1324 pending->error = -ENOMEM;
1325 return 0;
42874b3d
MX
1326 }
1327
b0c0ea63
DS
1328 ASSERT(pending->root_item);
1329 new_root_item = pending->root_item;
a22285a6 1330
aec8030a
MX
1331 pending->error = btrfs_find_free_objectid(tree_root, &objectid);
1332 if (pending->error)
6fa9700e 1333 goto no_free_objectid;
3063d29f 1334
d6726335
QW
1335 /*
1336 * Make qgroup to skip current new snapshot's qgroupid, as it is
1337 * accounted by later btrfs_qgroup_inherit().
1338 */
1339 btrfs_set_skip_qgroup(trans, objectid);
1340
147d256e 1341 btrfs_reloc_pre_snapshot(pending, &to_reserve);
d68fc57b
YZ
1342
1343 if (to_reserve > 0) {
aec8030a
MX
1344 pending->error = btrfs_block_rsv_add(root,
1345 &pending->block_rsv,
1346 to_reserve,
1347 BTRFS_RESERVE_NO_FLUSH);
1348 if (pending->error)
d6726335 1349 goto clear_skip_qgroup;
d68fc57b
YZ
1350 }
1351
3063d29f 1352 key.objectid = objectid;
a22285a6
YZ
1353 key.offset = (u64)-1;
1354 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 1355
6fa9700e 1356 rsv = trans->block_rsv;
a22285a6 1357 trans->block_rsv = &pending->block_rsv;
2382c5cc 1358 trans->bytes_reserved = trans->block_rsv->reserved;
3de4586c 1359
a22285a6 1360 dentry = pending->dentry;
e9662f70 1361 parent_inode = pending->dir;
a22285a6 1362 parent_root = BTRFS_I(parent_inode)->root;
7585717f 1363 record_root_in_trans(trans, parent_root);
a22285a6 1364
3063d29f
CM
1365 /*
1366 * insert the directory item
1367 */
3de4586c 1368 ret = btrfs_set_inode_index(parent_inode, &index);
49b25e05 1369 BUG_ON(ret); /* -ENOMEM */
42874b3d
MX
1370
1371 /* check if there is a file/dir which has the same name. */
1372 dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
1373 btrfs_ino(parent_inode),
1374 dentry->d_name.name,
1375 dentry->d_name.len, 0);
1376 if (dir_item != NULL && !IS_ERR(dir_item)) {
fe66a05a 1377 pending->error = -EEXIST;
aec8030a 1378 goto dir_item_existed;
42874b3d
MX
1379 } else if (IS_ERR(dir_item)) {
1380 ret = PTR_ERR(dir_item);
8732d44f
MX
1381 btrfs_abort_transaction(trans, root, ret);
1382 goto fail;
79787eaa 1383 }
42874b3d 1384 btrfs_release_path(path);
52c26179 1385
e999376f
CM
1386 /*
1387 * pull in the delayed directory update
1388 * and the delayed inode item
1389 * otherwise we corrupt the FS during
1390 * snapshot
1391 */
1392 ret = btrfs_run_delayed_items(trans, root);
8732d44f
MX
1393 if (ret) { /* Transaction aborted */
1394 btrfs_abort_transaction(trans, root, ret);
1395 goto fail;
1396 }
e999376f 1397
7585717f 1398 record_root_in_trans(trans, root);
6bdb72de
SW
1399 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
1400 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
08fe4db1 1401 btrfs_check_and_init_root_item(new_root_item);
6bdb72de 1402
b83cc969
LZ
1403 root_flags = btrfs_root_flags(new_root_item);
1404 if (pending->readonly)
1405 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1406 else
1407 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1408 btrfs_set_root_flags(new_root_item, root_flags);
1409
8ea05e3a
AB
1410 btrfs_set_root_generation_v2(new_root_item,
1411 trans->transid);
1412 uuid_le_gen(&new_uuid);
1413 memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
1414 memcpy(new_root_item->parent_uuid, root->root_item.uuid,
1415 BTRFS_UUID_SIZE);
70023da2
SB
1416 if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
1417 memset(new_root_item->received_uuid, 0,
1418 sizeof(new_root_item->received_uuid));
1419 memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
1420 memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
1421 btrfs_set_root_stransid(new_root_item, 0);
1422 btrfs_set_root_rtransid(new_root_item, 0);
1423 }
3cae210f
QW
1424 btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
1425 btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
8ea05e3a 1426 btrfs_set_root_otransid(new_root_item, trans->transid);
8ea05e3a 1427
6bdb72de 1428 old = btrfs_lock_root_node(root);
49b25e05 1429 ret = btrfs_cow_block(trans, root, old, NULL, 0, &old);
79787eaa
JM
1430 if (ret) {
1431 btrfs_tree_unlock(old);
1432 free_extent_buffer(old);
8732d44f
MX
1433 btrfs_abort_transaction(trans, root, ret);
1434 goto fail;
79787eaa 1435 }
49b25e05 1436
6bdb72de
SW
1437 btrfs_set_lock_blocking(old);
1438
49b25e05 1439 ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
79787eaa 1440 /* clean up in any case */
6bdb72de
SW
1441 btrfs_tree_unlock(old);
1442 free_extent_buffer(old);
8732d44f
MX
1443 if (ret) {
1444 btrfs_abort_transaction(trans, root, ret);
1445 goto fail;
1446 }
f1ebcc74 1447 /* see comments in should_cow_block() */
27cdeb70 1448 set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
f1ebcc74
LB
1449 smp_wmb();
1450
6bdb72de 1451 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
1452 /* record when the snapshot was created in key.offset */
1453 key.offset = trans->transid;
1454 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
1455 btrfs_tree_unlock(tmp);
1456 free_extent_buffer(tmp);
8732d44f
MX
1457 if (ret) {
1458 btrfs_abort_transaction(trans, root, ret);
1459 goto fail;
1460 }
6bdb72de 1461
a22285a6
YZ
1462 /*
1463 * insert root back/forward references
1464 */
1465 ret = btrfs_add_root_ref(trans, tree_root, objectid,
0660b5af 1466 parent_root->root_key.objectid,
33345d01 1467 btrfs_ino(parent_inode), index,
a22285a6 1468 dentry->d_name.name, dentry->d_name.len);
8732d44f
MX
1469 if (ret) {
1470 btrfs_abort_transaction(trans, root, ret);
1471 goto fail;
1472 }
0660b5af 1473
a22285a6
YZ
1474 key.offset = (u64)-1;
1475 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
79787eaa
JM
1476 if (IS_ERR(pending->snap)) {
1477 ret = PTR_ERR(pending->snap);
8732d44f
MX
1478 btrfs_abort_transaction(trans, root, ret);
1479 goto fail;
79787eaa 1480 }
d68fc57b 1481
49b25e05 1482 ret = btrfs_reloc_post_snapshot(trans, pending);
8732d44f
MX
1483 if (ret) {
1484 btrfs_abort_transaction(trans, root, ret);
1485 goto fail;
1486 }
361048f5
MX
1487
1488 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
8732d44f
MX
1489 if (ret) {
1490 btrfs_abort_transaction(trans, root, ret);
1491 goto fail;
1492 }
42874b3d
MX
1493
1494 ret = btrfs_insert_dir_item(trans, parent_root,
1495 dentry->d_name.name, dentry->d_name.len,
1496 parent_inode, &key,
1497 BTRFS_FT_DIR, index);
1498 /* We have check then name at the beginning, so it is impossible. */
9c52057c 1499 BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
8732d44f
MX
1500 if (ret) {
1501 btrfs_abort_transaction(trans, root, ret);
1502 goto fail;
1503 }
42874b3d
MX
1504
1505 btrfs_i_size_write(parent_inode, parent_inode->i_size +
1506 dentry->d_name.len * 2);
1507 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
be6aef60 1508 ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode);
dd5f9615
SB
1509 if (ret) {
1510 btrfs_abort_transaction(trans, root, ret);
1511 goto fail;
1512 }
1513 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, new_uuid.b,
1514 BTRFS_UUID_KEY_SUBVOL, objectid);
1515 if (ret) {
8732d44f 1516 btrfs_abort_transaction(trans, root, ret);
dd5f9615
SB
1517 goto fail;
1518 }
1519 if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
1520 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
1521 new_root_item->received_uuid,
1522 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1523 objectid);
1524 if (ret && ret != -EEXIST) {
1525 btrfs_abort_transaction(trans, root, ret);
1526 goto fail;
1527 }
1528 }
d6726335
QW
1529
1530 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1531 if (ret) {
1532 btrfs_abort_transaction(trans, root, ret);
1533 goto fail;
1534 }
1535
1536 /*
1537 * account qgroup counters before qgroup_inherit()
1538 */
1539 ret = btrfs_qgroup_prepare_account_extents(trans, fs_info);
1540 if (ret)
1541 goto fail;
1542 ret = btrfs_qgroup_account_extents(trans, fs_info);
1543 if (ret)
1544 goto fail;
1545 ret = btrfs_qgroup_inherit(trans, fs_info,
1546 root->root_key.objectid,
1547 objectid, pending->inherit);
1548 if (ret) {
1549 btrfs_abort_transaction(trans, root, ret);
1550 goto fail;
1551 }
1552
3063d29f 1553fail:
aec8030a
MX
1554 pending->error = ret;
1555dir_item_existed:
98c9942a 1556 trans->block_rsv = rsv;
2382c5cc 1557 trans->bytes_reserved = 0;
d6726335
QW
1558clear_skip_qgroup:
1559 btrfs_clear_skip_qgroup(trans);
6fa9700e
MX
1560no_free_objectid:
1561 kfree(new_root_item);
b0c0ea63 1562 pending->root_item = NULL;
42874b3d 1563 btrfs_free_path(path);
49b25e05 1564 return ret;
3063d29f
CM
1565}
1566
d352ac68
CM
1567/*
1568 * create all the snapshots we've scheduled for creation
1569 */
80b6794d
CM
1570static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1571 struct btrfs_fs_info *fs_info)
3de4586c 1572{
aec8030a 1573 struct btrfs_pending_snapshot *pending, *next;
3de4586c 1574 struct list_head *head = &trans->transaction->pending_snapshots;
aec8030a 1575 int ret = 0;
3de4586c 1576
aec8030a
MX
1577 list_for_each_entry_safe(pending, next, head, list) {
1578 list_del(&pending->list);
1579 ret = create_pending_snapshot(trans, fs_info, pending);
1580 if (ret)
1581 break;
1582 }
1583 return ret;
3de4586c
CM
1584}
1585
5d4f98a2
YZ
1586static void update_super_roots(struct btrfs_root *root)
1587{
1588 struct btrfs_root_item *root_item;
1589 struct btrfs_super_block *super;
1590
6c41761f 1591 super = root->fs_info->super_copy;
5d4f98a2
YZ
1592
1593 root_item = &root->fs_info->chunk_root->root_item;
1594 super->chunk_root = root_item->bytenr;
1595 super->chunk_root_generation = root_item->generation;
1596 super->chunk_root_level = root_item->level;
1597
1598 root_item = &root->fs_info->tree_root->root_item;
1599 super->root = root_item->bytenr;
1600 super->generation = root_item->generation;
1601 super->root_level = root_item->level;
73bc1876 1602 if (btrfs_test_opt(root, SPACE_CACHE))
0af3d00b 1603 super->cache_generation = root_item->generation;
70f80175
SB
1604 if (root->fs_info->update_uuid_tree_gen)
1605 super->uuid_tree_generation = root_item->generation;
5d4f98a2
YZ
1606}
1607
f36f3042
CM
1608int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1609{
4a9d8bde 1610 struct btrfs_transaction *trans;
f36f3042 1611 int ret = 0;
4a9d8bde 1612
a4abeea4 1613 spin_lock(&info->trans_lock);
4a9d8bde
MX
1614 trans = info->running_transaction;
1615 if (trans)
1616 ret = (trans->state >= TRANS_STATE_COMMIT_START);
a4abeea4 1617 spin_unlock(&info->trans_lock);
f36f3042
CM
1618 return ret;
1619}
1620
8929ecfa
YZ
1621int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1622{
4a9d8bde 1623 struct btrfs_transaction *trans;
8929ecfa 1624 int ret = 0;
4a9d8bde 1625
a4abeea4 1626 spin_lock(&info->trans_lock);
4a9d8bde
MX
1627 trans = info->running_transaction;
1628 if (trans)
1629 ret = is_transaction_blocked(trans);
a4abeea4 1630 spin_unlock(&info->trans_lock);
8929ecfa
YZ
1631 return ret;
1632}
1633
bb9c12c9
SW
1634/*
1635 * wait for the current transaction commit to start and block subsequent
1636 * transaction joins
1637 */
1638static void wait_current_trans_commit_start(struct btrfs_root *root,
1639 struct btrfs_transaction *trans)
1640{
4a9d8bde 1641 wait_event(root->fs_info->transaction_blocked_wait,
501407aa
JB
1642 trans->state >= TRANS_STATE_COMMIT_START ||
1643 trans->aborted);
bb9c12c9
SW
1644}
1645
1646/*
1647 * wait for the current transaction to start and then become unblocked.
1648 * caller holds ref.
1649 */
1650static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1651 struct btrfs_transaction *trans)
1652{
72d63ed6 1653 wait_event(root->fs_info->transaction_wait,
501407aa
JB
1654 trans->state >= TRANS_STATE_UNBLOCKED ||
1655 trans->aborted);
bb9c12c9
SW
1656}
1657
1658/*
1659 * commit transactions asynchronously. once btrfs_commit_transaction_async
1660 * returns, any subsequent transaction will not be allowed to join.
1661 */
1662struct btrfs_async_commit {
1663 struct btrfs_trans_handle *newtrans;
1664 struct btrfs_root *root;
7892b5af 1665 struct work_struct work;
bb9c12c9
SW
1666};
1667
1668static void do_async_commit(struct work_struct *work)
1669{
1670 struct btrfs_async_commit *ac =
7892b5af 1671 container_of(work, struct btrfs_async_commit, work);
bb9c12c9 1672
6fc4e354
SW
1673 /*
1674 * We've got freeze protection passed with the transaction.
1675 * Tell lockdep about it.
1676 */
b1a06a4b 1677 if (ac->newtrans->type & __TRANS_FREEZABLE)
bee9182d 1678 __sb_writers_acquired(ac->root->fs_info->sb, SB_FREEZE_FS);
6fc4e354 1679
e209db7a
SW
1680 current->journal_info = ac->newtrans;
1681
bb9c12c9
SW
1682 btrfs_commit_transaction(ac->newtrans, ac->root);
1683 kfree(ac);
1684}
1685
1686int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1687 struct btrfs_root *root,
1688 int wait_for_unblock)
1689{
1690 struct btrfs_async_commit *ac;
1691 struct btrfs_transaction *cur_trans;
1692
1693 ac = kmalloc(sizeof(*ac), GFP_NOFS);
db5b493a
TI
1694 if (!ac)
1695 return -ENOMEM;
bb9c12c9 1696
7892b5af 1697 INIT_WORK(&ac->work, do_async_commit);
bb9c12c9 1698 ac->root = root;
7a7eaa40 1699 ac->newtrans = btrfs_join_transaction(root);
3612b495
TI
1700 if (IS_ERR(ac->newtrans)) {
1701 int err = PTR_ERR(ac->newtrans);
1702 kfree(ac);
1703 return err;
1704 }
bb9c12c9
SW
1705
1706 /* take transaction reference */
bb9c12c9 1707 cur_trans = trans->transaction;
13c5a93e 1708 atomic_inc(&cur_trans->use_count);
bb9c12c9
SW
1709
1710 btrfs_end_transaction(trans, root);
6fc4e354
SW
1711
1712 /*
1713 * Tell lockdep we've released the freeze rwsem, since the
1714 * async commit thread will be the one to unlock it.
1715 */
b1a06a4b 1716 if (ac->newtrans->type & __TRANS_FREEZABLE)
bee9182d 1717 __sb_writers_release(root->fs_info->sb, SB_FREEZE_FS);
6fc4e354 1718
7892b5af 1719 schedule_work(&ac->work);
bb9c12c9
SW
1720
1721 /* wait for transaction to start and unblock */
bb9c12c9
SW
1722 if (wait_for_unblock)
1723 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1724 else
1725 wait_current_trans_commit_start(root, cur_trans);
bb9c12c9 1726
38e88054
SW
1727 if (current->journal_info == trans)
1728 current->journal_info = NULL;
1729
724e2315 1730 btrfs_put_transaction(cur_trans);
bb9c12c9
SW
1731 return 0;
1732}
1733
49b25e05
JM
1734
1735static void cleanup_transaction(struct btrfs_trans_handle *trans,
7b8b92af 1736 struct btrfs_root *root, int err)
49b25e05
JM
1737{
1738 struct btrfs_transaction *cur_trans = trans->transaction;
f094ac32 1739 DEFINE_WAIT(wait);
49b25e05
JM
1740
1741 WARN_ON(trans->use_count > 1);
1742
7b8b92af
JB
1743 btrfs_abort_transaction(trans, root, err);
1744
49b25e05 1745 spin_lock(&root->fs_info->trans_lock);
66b6135b 1746
25d8c284
MX
1747 /*
1748 * If the transaction is removed from the list, it means this
1749 * transaction has been committed successfully, so it is impossible
1750 * to call the cleanup function.
1751 */
1752 BUG_ON(list_empty(&cur_trans->list));
66b6135b 1753
49b25e05 1754 list_del_init(&cur_trans->list);
d7096fc3 1755 if (cur_trans == root->fs_info->running_transaction) {
4a9d8bde 1756 cur_trans->state = TRANS_STATE_COMMIT_DOING;
f094ac32
LB
1757 spin_unlock(&root->fs_info->trans_lock);
1758 wait_event(cur_trans->writer_wait,
1759 atomic_read(&cur_trans->num_writers) == 1);
1760
1761 spin_lock(&root->fs_info->trans_lock);
d7096fc3 1762 }
49b25e05
JM
1763 spin_unlock(&root->fs_info->trans_lock);
1764
1765 btrfs_cleanup_one_transaction(trans->transaction, root);
1766
4a9d8bde
MX
1767 spin_lock(&root->fs_info->trans_lock);
1768 if (cur_trans == root->fs_info->running_transaction)
1769 root->fs_info->running_transaction = NULL;
1770 spin_unlock(&root->fs_info->trans_lock);
1771
e0228285
JB
1772 if (trans->type & __TRANS_FREEZABLE)
1773 sb_end_intwrite(root->fs_info->sb);
724e2315
JB
1774 btrfs_put_transaction(cur_trans);
1775 btrfs_put_transaction(cur_trans);
49b25e05
JM
1776
1777 trace_btrfs_transaction_commit(root);
1778
49b25e05
JM
1779 if (current->journal_info == trans)
1780 current->journal_info = NULL;
c0af8f0b 1781 btrfs_scrub_cancel(root->fs_info);
49b25e05
JM
1782
1783 kmem_cache_free(btrfs_trans_handle_cachep, trans);
1784}
1785
82436617
MX
1786static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
1787{
1788 if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT))
6c255e67 1789 return btrfs_start_delalloc_roots(fs_info, 1, -1);
82436617
MX
1790 return 0;
1791}
1792
1793static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
1794{
1795 if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT))
b0244199 1796 btrfs_wait_ordered_roots(fs_info, -1);
82436617
MX
1797}
1798
50d9aa99 1799static inline void
161c3549 1800btrfs_wait_pending_ordered(struct btrfs_transaction *cur_trans)
50d9aa99 1801{
161c3549
JB
1802 wait_event(cur_trans->pending_wait,
1803 atomic_read(&cur_trans->pending_ordered) == 0);
50d9aa99
JB
1804}
1805
79154b1b
CM
1806int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1807 struct btrfs_root *root)
1808{
49b25e05 1809 struct btrfs_transaction *cur_trans = trans->transaction;
8fd17795 1810 struct btrfs_transaction *prev_trans = NULL;
656f30db 1811 struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode);
25287e0a 1812 int ret;
79154b1b 1813
8d25a086
MX
1814 /* Stop the commit early if ->aborted is set */
1815 if (unlikely(ACCESS_ONCE(cur_trans->aborted))) {
25287e0a 1816 ret = cur_trans->aborted;
e4a2bcac
JB
1817 btrfs_end_transaction(trans, root);
1818 return ret;
25287e0a 1819 }
49b25e05 1820
56bec294
CM
1821 /* make a pass through all the delayed refs we have so far
1822 * any runnings procs may add more while we are here
1823 */
1824 ret = btrfs_run_delayed_refs(trans, root, 0);
e4a2bcac
JB
1825 if (ret) {
1826 btrfs_end_transaction(trans, root);
1827 return ret;
1828 }
56bec294 1829
0e721106
JB
1830 btrfs_trans_release_metadata(trans, root);
1831 trans->block_rsv = NULL;
1832
b7ec40d7 1833 cur_trans = trans->transaction;
49b25e05 1834
56bec294
CM
1835 /*
1836 * set the flushing flag so procs in this transaction have to
1837 * start sending their work down.
1838 */
b7ec40d7 1839 cur_trans->delayed_refs.flushing = 1;
1be41b78 1840 smp_wmb();
56bec294 1841
ea658bad
JB
1842 if (!list_empty(&trans->new_bgs))
1843 btrfs_create_pending_block_groups(trans, root);
1844
c3e69d58 1845 ret = btrfs_run_delayed_refs(trans, root, 0);
e4a2bcac
JB
1846 if (ret) {
1847 btrfs_end_transaction(trans, root);
1848 return ret;
1849 }
56bec294 1850
3204d33c 1851 if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
1bbc621e
CM
1852 int run_it = 0;
1853
1854 /* this mutex is also taken before trying to set
1855 * block groups readonly. We need to make sure
1856 * that nobody has set a block group readonly
1857 * after a extents from that block group have been
1858 * allocated for cache files. btrfs_set_block_group_ro
1859 * will wait for the transaction to commit if it
3204d33c 1860 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
1bbc621e 1861 *
3204d33c
JB
1862 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
1863 * only one process starts all the block group IO. It wouldn't
1bbc621e
CM
1864 * hurt to have more than one go through, but there's no
1865 * real advantage to it either.
1866 */
1867 mutex_lock(&root->fs_info->ro_block_group_mutex);
3204d33c
JB
1868 if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
1869 &cur_trans->flags))
1bbc621e 1870 run_it = 1;
1bbc621e
CM
1871 mutex_unlock(&root->fs_info->ro_block_group_mutex);
1872
1873 if (run_it)
1874 ret = btrfs_start_dirty_block_groups(trans, root);
1875 }
1876 if (ret) {
1877 btrfs_end_transaction(trans, root);
1878 return ret;
1879 }
1880
4a9d8bde
MX
1881 spin_lock(&root->fs_info->trans_lock);
1882 if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
1883 spin_unlock(&root->fs_info->trans_lock);
13c5a93e 1884 atomic_inc(&cur_trans->use_count);
49b25e05 1885 ret = btrfs_end_transaction(trans, root);
ccd467d6 1886
b9c8300c 1887 wait_for_commit(root, cur_trans);
15ee9bc7 1888
b4924a0f
LB
1889 if (unlikely(cur_trans->aborted))
1890 ret = cur_trans->aborted;
1891
724e2315 1892 btrfs_put_transaction(cur_trans);
15ee9bc7 1893
49b25e05 1894 return ret;
79154b1b 1895 }
4313b399 1896
4a9d8bde 1897 cur_trans->state = TRANS_STATE_COMMIT_START;
bb9c12c9
SW
1898 wake_up(&root->fs_info->transaction_blocked_wait);
1899
ccd467d6
CM
1900 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1901 prev_trans = list_entry(cur_trans->list.prev,
1902 struct btrfs_transaction, list);
4a9d8bde 1903 if (prev_trans->state != TRANS_STATE_COMPLETED) {
13c5a93e 1904 atomic_inc(&prev_trans->use_count);
a4abeea4 1905 spin_unlock(&root->fs_info->trans_lock);
ccd467d6
CM
1906
1907 wait_for_commit(root, prev_trans);
1f9b8c8f 1908 ret = prev_trans->aborted;
ccd467d6 1909
724e2315 1910 btrfs_put_transaction(prev_trans);
1f9b8c8f
FM
1911 if (ret)
1912 goto cleanup_transaction;
a4abeea4
JB
1913 } else {
1914 spin_unlock(&root->fs_info->trans_lock);
ccd467d6 1915 }
a4abeea4
JB
1916 } else {
1917 spin_unlock(&root->fs_info->trans_lock);
ccd467d6 1918 }
15ee9bc7 1919
0860adfd
MX
1920 extwriter_counter_dec(cur_trans, trans->type);
1921
82436617
MX
1922 ret = btrfs_start_delalloc_flush(root->fs_info);
1923 if (ret)
1924 goto cleanup_transaction;
1925
8d875f95 1926 ret = btrfs_run_delayed_items(trans, root);
581227d0
MX
1927 if (ret)
1928 goto cleanup_transaction;
15ee9bc7 1929
581227d0
MX
1930 wait_event(cur_trans->writer_wait,
1931 extwriter_counter_read(cur_trans) == 0);
15ee9bc7 1932
581227d0 1933 /* some pending stuffs might be added after the previous flush. */
8d875f95 1934 ret = btrfs_run_delayed_items(trans, root);
ca469637
MX
1935 if (ret)
1936 goto cleanup_transaction;
1937
82436617 1938 btrfs_wait_delalloc_flush(root->fs_info);
cb7ab021 1939
161c3549 1940 btrfs_wait_pending_ordered(cur_trans);
50d9aa99 1941
cb7ab021 1942 btrfs_scrub_pause(root);
ed0ca140
JB
1943 /*
1944 * Ok now we need to make sure to block out any other joins while we
1945 * commit the transaction. We could have started a join before setting
4a9d8bde 1946 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
ed0ca140
JB
1947 */
1948 spin_lock(&root->fs_info->trans_lock);
4a9d8bde 1949 cur_trans->state = TRANS_STATE_COMMIT_DOING;
ed0ca140
JB
1950 spin_unlock(&root->fs_info->trans_lock);
1951 wait_event(cur_trans->writer_wait,
1952 atomic_read(&cur_trans->num_writers) == 1);
1953
2cba30f1
MX
1954 /* ->aborted might be set after the previous check, so check it */
1955 if (unlikely(ACCESS_ONCE(cur_trans->aborted))) {
1956 ret = cur_trans->aborted;
6cf7f77e 1957 goto scrub_continue;
2cba30f1 1958 }
7585717f
CM
1959 /*
1960 * the reloc mutex makes sure that we stop
1961 * the balancing code from coming in and moving
1962 * extents around in the middle of the commit
1963 */
1964 mutex_lock(&root->fs_info->reloc_mutex);
1965
42874b3d
MX
1966 /*
1967 * We needn't worry about the delayed items because we will
1968 * deal with them in create_pending_snapshot(), which is the
1969 * core function of the snapshot creation.
1970 */
1971 ret = create_pending_snapshots(trans, root->fs_info);
49b25e05
JM
1972 if (ret) {
1973 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 1974 goto scrub_continue;
49b25e05 1975 }
3063d29f 1976
42874b3d
MX
1977 /*
1978 * We insert the dir indexes of the snapshots and update the inode
1979 * of the snapshots' parents after the snapshot creation, so there
1980 * are some delayed items which are not dealt with. Now deal with
1981 * them.
1982 *
1983 * We needn't worry that this operation will corrupt the snapshots,
1984 * because all the tree which are snapshoted will be forced to COW
1985 * the nodes and leaves.
1986 */
1987 ret = btrfs_run_delayed_items(trans, root);
49b25e05
JM
1988 if (ret) {
1989 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 1990 goto scrub_continue;
49b25e05 1991 }
16cdcec7 1992
56bec294 1993 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
49b25e05
JM
1994 if (ret) {
1995 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 1996 goto scrub_continue;
49b25e05 1997 }
56bec294 1998
0ed4792a
QW
1999 /* Reocrd old roots for later qgroup accounting */
2000 ret = btrfs_qgroup_prepare_account_extents(trans, root->fs_info);
2001 if (ret) {
2002 mutex_unlock(&root->fs_info->reloc_mutex);
2003 goto scrub_continue;
2004 }
2005
e999376f
CM
2006 /*
2007 * make sure none of the code above managed to slip in a
2008 * delayed item
2009 */
2010 btrfs_assert_delayed_root_empty(root);
2011
2c90e5d6 2012 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 2013
e02119d5
CM
2014 /* btrfs_commit_tree_roots is responsible for getting the
2015 * various roots consistent with each other. Every pointer
2016 * in the tree of tree roots has to point to the most up to date
2017 * root for every subvolume and other tree. So, we have to keep
2018 * the tree logging code from jumping in and changing any
2019 * of the trees.
2020 *
2021 * At this point in the commit, there can't be any tree-log
2022 * writers, but a little lower down we drop the trans mutex
2023 * and let new people in. By holding the tree_log_mutex
2024 * from now until after the super is written, we avoid races
2025 * with the tree-log code.
2026 */
2027 mutex_lock(&root->fs_info->tree_log_mutex);
2028
5d4f98a2 2029 ret = commit_fs_roots(trans, root);
49b25e05
JM
2030 if (ret) {
2031 mutex_unlock(&root->fs_info->tree_log_mutex);
871383be 2032 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 2033 goto scrub_continue;
49b25e05 2034 }
54aa1f4d 2035
3818aea2 2036 /*
7e1876ac
DS
2037 * Since the transaction is done, we can apply the pending changes
2038 * before the next transaction.
3818aea2 2039 */
572d9ab7 2040 btrfs_apply_pending_changes(root->fs_info);
3818aea2 2041
5d4f98a2 2042 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
2043 * safe to free the root of tree log roots
2044 */
2045 btrfs_free_log_root_tree(trans, root->fs_info);
2046
0ed4792a
QW
2047 /*
2048 * Since fs roots are all committed, we can get a quite accurate
2049 * new_roots. So let's do quota accounting.
2050 */
2051 ret = btrfs_qgroup_account_extents(trans, root->fs_info);
2052 if (ret < 0) {
2053 mutex_unlock(&root->fs_info->tree_log_mutex);
2054 mutex_unlock(&root->fs_info->reloc_mutex);
2055 goto scrub_continue;
2056 }
2057
5d4f98a2 2058 ret = commit_cowonly_roots(trans, root);
49b25e05
JM
2059 if (ret) {
2060 mutex_unlock(&root->fs_info->tree_log_mutex);
871383be 2061 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 2062 goto scrub_continue;
49b25e05 2063 }
54aa1f4d 2064
2cba30f1
MX
2065 /*
2066 * The tasks which save the space cache and inode cache may also
2067 * update ->aborted, check it.
2068 */
2069 if (unlikely(ACCESS_ONCE(cur_trans->aborted))) {
2070 ret = cur_trans->aborted;
2071 mutex_unlock(&root->fs_info->tree_log_mutex);
2072 mutex_unlock(&root->fs_info->reloc_mutex);
6cf7f77e 2073 goto scrub_continue;
2cba30f1
MX
2074 }
2075
11833d66
YZ
2076 btrfs_prepare_extent_commit(trans, root);
2077
78fae27e 2078 cur_trans = root->fs_info->running_transaction;
5d4f98a2
YZ
2079
2080 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
2081 root->fs_info->tree_root->node);
9e351cc8
JB
2082 list_add_tail(&root->fs_info->tree_root->dirty_list,
2083 &cur_trans->switch_commits);
5d4f98a2
YZ
2084
2085 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
2086 root->fs_info->chunk_root->node);
9e351cc8
JB
2087 list_add_tail(&root->fs_info->chunk_root->dirty_list,
2088 &cur_trans->switch_commits);
2089
2090 switch_commit_roots(cur_trans, root->fs_info);
5d4f98a2 2091
edf39272 2092 assert_qgroups_uptodate(trans);
ce93ec54 2093 ASSERT(list_empty(&cur_trans->dirty_bgs));
1bbc621e 2094 ASSERT(list_empty(&cur_trans->io_bgs));
5d4f98a2 2095 update_super_roots(root);
e02119d5 2096
60e7cd3a
JB
2097 btrfs_set_super_log_root(root->fs_info->super_copy, 0);
2098 btrfs_set_super_log_root_level(root->fs_info->super_copy, 0);
6c41761f
DS
2099 memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy,
2100 sizeof(*root->fs_info->super_copy));
ccd467d6 2101
935e5cc9 2102 btrfs_update_commit_device_size(root->fs_info);
ce7213c7 2103 btrfs_update_commit_device_bytes_used(root, cur_trans);
935e5cc9 2104
656f30db
FM
2105 clear_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
2106 clear_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
2107
4fbcdf66
FM
2108 btrfs_trans_release_chunk_metadata(trans);
2109
a4abeea4 2110 spin_lock(&root->fs_info->trans_lock);
4a9d8bde 2111 cur_trans->state = TRANS_STATE_UNBLOCKED;
a4abeea4 2112 root->fs_info->running_transaction = NULL;
a4abeea4 2113 spin_unlock(&root->fs_info->trans_lock);
7585717f 2114 mutex_unlock(&root->fs_info->reloc_mutex);
b7ec40d7 2115
f9295749 2116 wake_up(&root->fs_info->transaction_wait);
e6dcd2dc 2117
79154b1b 2118 ret = btrfs_write_and_wait_transaction(trans, root);
49b25e05 2119 if (ret) {
a4553fef 2120 btrfs_std_error(root->fs_info, ret,
08748810 2121 "Error while writing out transaction");
49b25e05 2122 mutex_unlock(&root->fs_info->tree_log_mutex);
6cf7f77e 2123 goto scrub_continue;
49b25e05
JM
2124 }
2125
2126 ret = write_ctree_super(trans, root, 0);
2127 if (ret) {
2128 mutex_unlock(&root->fs_info->tree_log_mutex);
6cf7f77e 2129 goto scrub_continue;
49b25e05 2130 }
4313b399 2131
e02119d5
CM
2132 /*
2133 * the super is written, we can safely allow the tree-loggers
2134 * to go about their business
2135 */
2136 mutex_unlock(&root->fs_info->tree_log_mutex);
2137
11833d66 2138 btrfs_finish_extent_commit(trans, root);
4313b399 2139
3204d33c 2140 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
13212b54
ZL
2141 btrfs_clear_space_info_full(root->fs_info);
2142
15ee9bc7 2143 root->fs_info->last_trans_committed = cur_trans->transid;
4a9d8bde
MX
2144 /*
2145 * We needn't acquire the lock here because there is no other task
2146 * which can change it.
2147 */
2148 cur_trans->state = TRANS_STATE_COMPLETED;
2c90e5d6 2149 wake_up(&cur_trans->commit_wait);
3de4586c 2150
a4abeea4 2151 spin_lock(&root->fs_info->trans_lock);
13c5a93e 2152 list_del_init(&cur_trans->list);
a4abeea4
JB
2153 spin_unlock(&root->fs_info->trans_lock);
2154
724e2315
JB
2155 btrfs_put_transaction(cur_trans);
2156 btrfs_put_transaction(cur_trans);
58176a96 2157
0860adfd 2158 if (trans->type & __TRANS_FREEZABLE)
354aa0fb 2159 sb_end_intwrite(root->fs_info->sb);
b2b5ef5c 2160
1abe9b8a 2161 trace_btrfs_transaction_commit(root);
2162
a2de733c
AJ
2163 btrfs_scrub_continue(root);
2164
9ed74f2d
JB
2165 if (current->journal_info == trans)
2166 current->journal_info = NULL;
2167
2c90e5d6 2168 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04 2169
8a733013
ZL
2170 if (current != root->fs_info->transaction_kthread &&
2171 current != root->fs_info->cleaner_kthread)
24bbcf04
YZ
2172 btrfs_run_delayed_iputs(root);
2173
79154b1b 2174 return ret;
49b25e05 2175
6cf7f77e
WS
2176scrub_continue:
2177 btrfs_scrub_continue(root);
49b25e05 2178cleanup_transaction:
0e721106 2179 btrfs_trans_release_metadata(trans, root);
4fbcdf66 2180 btrfs_trans_release_chunk_metadata(trans);
0e721106 2181 trans->block_rsv = NULL;
c2cf52eb 2182 btrfs_warn(root->fs_info, "Skipping commit of aborted transaction.");
49b25e05
JM
2183 if (current->journal_info == trans)
2184 current->journal_info = NULL;
7b8b92af 2185 cleanup_transaction(trans, root, ret);
49b25e05
JM
2186
2187 return ret;
79154b1b
CM
2188}
2189
d352ac68 2190/*
9d1a2a3a
DS
2191 * return < 0 if error
2192 * 0 if there are no more dead_roots at the time of call
2193 * 1 there are more to be processed, call me again
2194 *
2195 * The return value indicates there are certainly more snapshots to delete, but
2196 * if there comes a new one during processing, it may return 0. We don't mind,
2197 * because btrfs_commit_super will poke cleaner thread and it will process it a
2198 * few seconds later.
d352ac68 2199 */
9d1a2a3a 2200int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root)
e9d0b13b 2201{
9d1a2a3a 2202 int ret;
5d4f98a2
YZ
2203 struct btrfs_fs_info *fs_info = root->fs_info;
2204
a4abeea4 2205 spin_lock(&fs_info->trans_lock);
9d1a2a3a
DS
2206 if (list_empty(&fs_info->dead_roots)) {
2207 spin_unlock(&fs_info->trans_lock);
2208 return 0;
2209 }
2210 root = list_first_entry(&fs_info->dead_roots,
2211 struct btrfs_root, root_list);
cfad392b 2212 list_del_init(&root->root_list);
a4abeea4 2213 spin_unlock(&fs_info->trans_lock);
e9d0b13b 2214
efe120a0 2215 pr_debug("BTRFS: cleaner removing %llu\n", root->objectid);
76dda93c 2216
9d1a2a3a 2217 btrfs_kill_all_delayed_nodes(root);
16cdcec7 2218
9d1a2a3a
DS
2219 if (btrfs_header_backref_rev(root->node) <
2220 BTRFS_MIXED_BACKREF_REV)
2221 ret = btrfs_drop_snapshot(root, NULL, 0, 0);
2222 else
2223 ret = btrfs_drop_snapshot(root, NULL, 1, 0);
32471dc2 2224
6596a928 2225 return (ret < 0) ? 0 : 1;
e9d0b13b 2226}
572d9ab7
DS
2227
2228void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info)
2229{
2230 unsigned long prev;
2231 unsigned long bit;
2232
6c9fe14f 2233 prev = xchg(&fs_info->pending_changes, 0);
572d9ab7
DS
2234 if (!prev)
2235 return;
2236
7e1876ac
DS
2237 bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE;
2238 if (prev & bit)
2239 btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE);
2240 prev &= ~bit;
2241
2242 bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE;
2243 if (prev & bit)
2244 btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE);
2245 prev &= ~bit;
2246
d51033d0
DS
2247 bit = 1 << BTRFS_PENDING_COMMIT;
2248 if (prev & bit)
2249 btrfs_debug(fs_info, "pending commit done");
2250 prev &= ~bit;
2251
572d9ab7
DS
2252 if (prev)
2253 btrfs_warn(fs_info,
2254 "unknown pending changes left 0x%lx, ignoring", prev);
2255}