btrfs: move accessor helpers into accessors.h
[linux-2.6-block.git] / fs / btrfs / transaction.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
6cbd5570
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
6cbd5570
CM
4 */
5
79154b1b 6#include <linux/fs.h>
5a0e3ad6 7#include <linux/slab.h>
34088780 8#include <linux/sched.h>
d3c2fdcf 9#include <linux/writeback.h>
5f39d397 10#include <linux/pagemap.h>
5f2cc086 11#include <linux/blkdev.h>
8ea05e3a 12#include <linux/uuid.h>
e55958c8 13#include <linux/timekeeping.h>
602cbe91 14#include "misc.h"
79154b1b
CM
15#include "ctree.h"
16#include "disk-io.h"
17#include "transaction.h"
925baedd 18#include "locking.h"
e02119d5 19#include "tree-log.h"
733f4fbb 20#include "volumes.h"
8dabb742 21#include "dev-replace.h"
fcebe456 22#include "qgroup.h"
aac0023c 23#include "block-group.h"
9c343784 24#include "space-info.h"
d3575156 25#include "zoned.h"
c7f13d42 26#include "fs.h"
07e81dc9 27#include "accessors.h"
79154b1b 28
956504a3
JB
29static struct kmem_cache *btrfs_trans_handle_cachep;
30
fc7cbcd4 31#define BTRFS_ROOT_TRANS_TAG 0
0f7d52f4 32
61c047b5
QW
33/*
34 * Transaction states and transitions
35 *
36 * No running transaction (fs tree blocks are not modified)
37 * |
38 * | To next stage:
39 * | Call start_transaction() variants. Except btrfs_join_transaction_nostart().
40 * V
41 * Transaction N [[TRANS_STATE_RUNNING]]
42 * |
43 * | New trans handles can be attached to transaction N by calling all
44 * | start_transaction() variants.
45 * |
46 * | To next stage:
47 * | Call btrfs_commit_transaction() on any trans handle attached to
48 * | transaction N
49 * V
50 * Transaction N [[TRANS_STATE_COMMIT_START]]
51 * |
52 * | Will wait for previous running transaction to completely finish if there
53 * | is one
54 * |
55 * | Then one of the following happes:
56 * | - Wait for all other trans handle holders to release.
57 * | The btrfs_commit_transaction() caller will do the commit work.
58 * | - Wait for current transaction to be committed by others.
59 * | Other btrfs_commit_transaction() caller will do the commit work.
60 * |
61 * | At this stage, only btrfs_join_transaction*() variants can attach
62 * | to this running transaction.
63 * | All other variants will wait for current one to finish and attach to
64 * | transaction N+1.
65 * |
66 * | To next stage:
67 * | Caller is chosen to commit transaction N, and all other trans handle
68 * | haven been released.
69 * V
70 * Transaction N [[TRANS_STATE_COMMIT_DOING]]
71 * |
72 * | The heavy lifting transaction work is started.
73 * | From running delayed refs (modifying extent tree) to creating pending
74 * | snapshots, running qgroups.
75 * | In short, modify supporting trees to reflect modifications of subvolume
76 * | trees.
77 * |
78 * | At this stage, all start_transaction() calls will wait for this
79 * | transaction to finish and attach to transaction N+1.
80 * |
81 * | To next stage:
82 * | Until all supporting trees are updated.
83 * V
84 * Transaction N [[TRANS_STATE_UNBLOCKED]]
85 * | Transaction N+1
86 * | All needed trees are modified, thus we only [[TRANS_STATE_RUNNING]]
87 * | need to write them back to disk and update |
88 * | super blocks. |
89 * | |
90 * | At this stage, new transaction is allowed to |
91 * | start. |
92 * | All new start_transaction() calls will be |
93 * | attached to transid N+1. |
94 * | |
95 * | To next stage: |
96 * | Until all tree blocks are super blocks are |
97 * | written to block devices |
98 * V |
99 * Transaction N [[TRANS_STATE_COMPLETED]] V
100 * All tree blocks and super blocks are written. Transaction N+1
101 * This transaction is finished and all its [[TRANS_STATE_COMMIT_START]]
102 * data structures will be cleaned up. | Life goes on
103 */
e8c9f186 104static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = {
4a9d8bde 105 [TRANS_STATE_RUNNING] = 0U,
bcf3a3e7
NB
106 [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH),
107 [TRANS_STATE_COMMIT_DOING] = (__TRANS_START |
4a9d8bde 108 __TRANS_ATTACH |
a6d155d2
FM
109 __TRANS_JOIN |
110 __TRANS_JOIN_NOSTART),
bcf3a3e7 111 [TRANS_STATE_UNBLOCKED] = (__TRANS_START |
4a9d8bde
MX
112 __TRANS_ATTACH |
113 __TRANS_JOIN |
a6d155d2
FM
114 __TRANS_JOIN_NOLOCK |
115 __TRANS_JOIN_NOSTART),
d0c2f4fa
FM
116 [TRANS_STATE_SUPER_COMMITTED] = (__TRANS_START |
117 __TRANS_ATTACH |
118 __TRANS_JOIN |
119 __TRANS_JOIN_NOLOCK |
120 __TRANS_JOIN_NOSTART),
bcf3a3e7 121 [TRANS_STATE_COMPLETED] = (__TRANS_START |
4a9d8bde
MX
122 __TRANS_ATTACH |
123 __TRANS_JOIN |
a6d155d2
FM
124 __TRANS_JOIN_NOLOCK |
125 __TRANS_JOIN_NOSTART),
4a9d8bde
MX
126};
127
724e2315 128void btrfs_put_transaction(struct btrfs_transaction *transaction)
79154b1b 129{
9b64f57d
ER
130 WARN_ON(refcount_read(&transaction->use_count) == 0);
131 if (refcount_dec_and_test(&transaction->use_count)) {
a4abeea4 132 BUG_ON(!list_empty(&transaction->list));
5c9d028b
LB
133 WARN_ON(!RB_EMPTY_ROOT(
134 &transaction->delayed_refs.href_root.rb_root));
81f7eb00
JM
135 WARN_ON(!RB_EMPTY_ROOT(
136 &transaction->delayed_refs.dirty_extent_root));
1262133b 137 if (transaction->delayed_refs.pending_csums)
ab8d0fc4
JM
138 btrfs_err(transaction->fs_info,
139 "pending csums is %llu",
140 transaction->delayed_refs.pending_csums);
7785a663
FM
141 /*
142 * If any block groups are found in ->deleted_bgs then it's
143 * because the transaction was aborted and a commit did not
144 * happen (things failed before writing the new superblock
145 * and calling btrfs_finish_extent_commit()), so we can not
146 * discard the physical locations of the block groups.
147 */
148 while (!list_empty(&transaction->deleted_bgs)) {
32da5386 149 struct btrfs_block_group *cache;
7785a663
FM
150
151 cache = list_first_entry(&transaction->deleted_bgs,
32da5386 152 struct btrfs_block_group,
7785a663
FM
153 bg_list);
154 list_del_init(&cache->bg_list);
6b7304af 155 btrfs_unfreeze_block_group(cache);
7785a663
FM
156 btrfs_put_block_group(cache);
157 }
bbbf7243 158 WARN_ON(!list_empty(&transaction->dev_update_list));
4b5faeac 159 kfree(transaction);
78fae27e 160 }
79154b1b
CM
161}
162
889bfa39 163static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
817d52f8 164{
889bfa39 165 struct btrfs_transaction *cur_trans = trans->transaction;
16916a88 166 struct btrfs_fs_info *fs_info = trans->fs_info;
9e351cc8
JB
167 struct btrfs_root *root, *tmp;
168
dfba78dc
FM
169 /*
170 * At this point no one can be using this transaction to modify any tree
171 * and no one can start another transaction to modify any tree either.
172 */
173 ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING);
174
9e351cc8 175 down_write(&fs_info->commit_root_sem);
d96b3424
FM
176
177 if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
178 fs_info->last_reloc_trans = trans->transid;
179
889bfa39 180 list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
9e351cc8
JB
181 dirty_list) {
182 list_del_init(&root->dirty_list);
183 free_extent_buffer(root->commit_root);
184 root->commit_root = btrfs_root_node(root);
41e7acd3 185 extent_io_tree_release(&root->dirty_log_pages);
370a11b8 186 btrfs_qgroup_clean_swapped_blocks(root);
9e351cc8 187 }
2b9dbef2
JB
188
189 /* We can free old roots now. */
889bfa39
JB
190 spin_lock(&cur_trans->dropped_roots_lock);
191 while (!list_empty(&cur_trans->dropped_roots)) {
192 root = list_first_entry(&cur_trans->dropped_roots,
2b9dbef2
JB
193 struct btrfs_root, root_list);
194 list_del_init(&root->root_list);
889bfa39
JB
195 spin_unlock(&cur_trans->dropped_roots_lock);
196 btrfs_free_log(trans, root);
2b9dbef2 197 btrfs_drop_and_free_fs_root(fs_info, root);
889bfa39 198 spin_lock(&cur_trans->dropped_roots_lock);
2b9dbef2 199 }
889bfa39 200 spin_unlock(&cur_trans->dropped_roots_lock);
27d56e62 201
9e351cc8 202 up_write(&fs_info->commit_root_sem);
817d52f8
JB
203}
204
0860adfd
MX
205static inline void extwriter_counter_inc(struct btrfs_transaction *trans,
206 unsigned int type)
207{
208 if (type & TRANS_EXTWRITERS)
209 atomic_inc(&trans->num_extwriters);
210}
211
212static inline void extwriter_counter_dec(struct btrfs_transaction *trans,
213 unsigned int type)
214{
215 if (type & TRANS_EXTWRITERS)
216 atomic_dec(&trans->num_extwriters);
217}
218
219static inline void extwriter_counter_init(struct btrfs_transaction *trans,
220 unsigned int type)
221{
222 atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0));
223}
224
225static inline int extwriter_counter_read(struct btrfs_transaction *trans)
226{
227 return atomic_read(&trans->num_extwriters);
178260b2
MX
228}
229
fb6dea26 230/*
79bd3712
FM
231 * To be called after doing the chunk btree updates right after allocating a new
232 * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a
233 * chunk after all chunk btree updates and after finishing the second phase of
234 * chunk allocation (btrfs_create_pending_block_groups()) in case some block
235 * group had its chunk item insertion delayed to the second phase.
fb6dea26
JB
236 */
237void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
238{
239 struct btrfs_fs_info *fs_info = trans->fs_info;
240
241 if (!trans->chunk_bytes_reserved)
242 return;
243
fb6dea26 244 btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv,
63f018be 245 trans->chunk_bytes_reserved, NULL);
fb6dea26
JB
246 trans->chunk_bytes_reserved = 0;
247}
248
d352ac68
CM
249/*
250 * either allocate a new transaction or hop into the existing one
251 */
2ff7e61e
JM
252static noinline int join_transaction(struct btrfs_fs_info *fs_info,
253 unsigned int type)
79154b1b
CM
254{
255 struct btrfs_transaction *cur_trans;
a4abeea4 256
19ae4e81 257 spin_lock(&fs_info->trans_lock);
d43317dc 258loop:
49b25e05 259 /* The file system has been taken offline. No new transactions. */
84961539 260 if (BTRFS_FS_ERROR(fs_info)) {
19ae4e81 261 spin_unlock(&fs_info->trans_lock);
49b25e05
JM
262 return -EROFS;
263 }
264
19ae4e81 265 cur_trans = fs_info->running_transaction;
a4abeea4 266 if (cur_trans) {
bf31f87f 267 if (TRANS_ABORTED(cur_trans)) {
19ae4e81 268 spin_unlock(&fs_info->trans_lock);
49b25e05 269 return cur_trans->aborted;
871383be 270 }
4a9d8bde 271 if (btrfs_blocked_trans_types[cur_trans->state] & type) {
178260b2
MX
272 spin_unlock(&fs_info->trans_lock);
273 return -EBUSY;
274 }
9b64f57d 275 refcount_inc(&cur_trans->use_count);
13c5a93e 276 atomic_inc(&cur_trans->num_writers);
0860adfd 277 extwriter_counter_inc(cur_trans, type);
19ae4e81 278 spin_unlock(&fs_info->trans_lock);
e1489b4f 279 btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers);
5a9ba670 280 btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters);
a4abeea4 281 return 0;
79154b1b 282 }
19ae4e81 283 spin_unlock(&fs_info->trans_lock);
a4abeea4 284
354aa0fb
MX
285 /*
286 * If we are ATTACH, we just want to catch the current transaction,
287 * and commit it. If there is no transaction, just return ENOENT.
288 */
289 if (type == TRANS_ATTACH)
290 return -ENOENT;
291
4a9d8bde
MX
292 /*
293 * JOIN_NOLOCK only happens during the transaction commit, so
294 * it is impossible that ->running_transaction is NULL
295 */
296 BUG_ON(type == TRANS_JOIN_NOLOCK);
297
4b5faeac 298 cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS);
a4abeea4
JB
299 if (!cur_trans)
300 return -ENOMEM;
d43317dc 301
e1489b4f 302 btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers);
5a9ba670 303 btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters);
e1489b4f 304
19ae4e81
JS
305 spin_lock(&fs_info->trans_lock);
306 if (fs_info->running_transaction) {
d43317dc
CM
307 /*
308 * someone started a transaction after we unlocked. Make sure
4a9d8bde 309 * to redo the checks above
d43317dc 310 */
5a9ba670 311 btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
e1489b4f 312 btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
4b5faeac 313 kfree(cur_trans);
d43317dc 314 goto loop;
84961539 315 } else if (BTRFS_FS_ERROR(fs_info)) {
e4b50e14 316 spin_unlock(&fs_info->trans_lock);
5a9ba670 317 btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
e1489b4f 318 btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
4b5faeac 319 kfree(cur_trans);
7b8b92af 320 return -EROFS;
79154b1b 321 }
d43317dc 322
ab8d0fc4 323 cur_trans->fs_info = fs_info;
48778179
FM
324 atomic_set(&cur_trans->pending_ordered, 0);
325 init_waitqueue_head(&cur_trans->pending_wait);
a4abeea4 326 atomic_set(&cur_trans->num_writers, 1);
0860adfd 327 extwriter_counter_init(cur_trans, type);
a4abeea4
JB
328 init_waitqueue_head(&cur_trans->writer_wait);
329 init_waitqueue_head(&cur_trans->commit_wait);
4a9d8bde 330 cur_trans->state = TRANS_STATE_RUNNING;
a4abeea4
JB
331 /*
332 * One for this trans handle, one so it will live on until we
333 * commit the transaction.
334 */
9b64f57d 335 refcount_set(&cur_trans->use_count, 2);
3204d33c 336 cur_trans->flags = 0;
afd48513 337 cur_trans->start_time = ktime_get_seconds();
a4abeea4 338
a099d0fd
AM
339 memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs));
340
5c9d028b 341 cur_trans->delayed_refs.href_root = RB_ROOT_CACHED;
3368d001 342 cur_trans->delayed_refs.dirty_extent_root = RB_ROOT;
d7df2c79 343 atomic_set(&cur_trans->delayed_refs.num_entries, 0);
20b297d6
JS
344
345 /*
346 * although the tree mod log is per file system and not per transaction,
347 * the log must never go across transaction boundaries.
348 */
349 smp_mb();
31b1a2bd 350 if (!list_empty(&fs_info->tree_mod_seq_list))
5d163e0e 351 WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n");
31b1a2bd 352 if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log))
5d163e0e 353 WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n");
fc36ed7e 354 atomic64_set(&fs_info->tree_mod_seq, 0);
20b297d6 355
a4abeea4
JB
356 spin_lock_init(&cur_trans->delayed_refs.lock);
357
358 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
bbbf7243 359 INIT_LIST_HEAD(&cur_trans->dev_update_list);
9e351cc8 360 INIT_LIST_HEAD(&cur_trans->switch_commits);
ce93ec54 361 INIT_LIST_HEAD(&cur_trans->dirty_bgs);
1bbc621e 362 INIT_LIST_HEAD(&cur_trans->io_bgs);
2b9dbef2 363 INIT_LIST_HEAD(&cur_trans->dropped_roots);
1bbc621e 364 mutex_init(&cur_trans->cache_write_mutex);
ce93ec54 365 spin_lock_init(&cur_trans->dirty_bgs_lock);
e33e17ee 366 INIT_LIST_HEAD(&cur_trans->deleted_bgs);
2b9dbef2 367 spin_lock_init(&cur_trans->dropped_roots_lock);
d3575156
NA
368 INIT_LIST_HEAD(&cur_trans->releasing_ebs);
369 spin_lock_init(&cur_trans->releasing_ebs_lock);
19ae4e81 370 list_add_tail(&cur_trans->list, &fs_info->trans_list);
c258d6e3 371 extent_io_tree_init(fs_info, &cur_trans->dirty_pages,
efb0645b 372 IO_TREE_TRANS_DIRTY_PAGES, NULL);
fe119a6e
NB
373 extent_io_tree_init(fs_info, &cur_trans->pinned_extents,
374 IO_TREE_FS_PINNED_EXTENTS, NULL);
19ae4e81
JS
375 fs_info->generation++;
376 cur_trans->transid = fs_info->generation;
377 fs_info->running_transaction = cur_trans;
49b25e05 378 cur_trans->aborted = 0;
19ae4e81 379 spin_unlock(&fs_info->trans_lock);
15ee9bc7 380
79154b1b
CM
381 return 0;
382}
383
d352ac68 384/*
92a7cc42
QW
385 * This does all the record keeping required to make sure that a shareable root
386 * is properly recorded in a given transaction. This is required to make sure
387 * the old root from before we joined the transaction is deleted when the
388 * transaction commits.
d352ac68 389 */
7585717f 390static int record_root_in_trans(struct btrfs_trans_handle *trans,
6426c7ad
QW
391 struct btrfs_root *root,
392 int force)
6702ed49 393{
0b246afa 394 struct btrfs_fs_info *fs_info = root->fs_info;
03a7e111 395 int ret = 0;
0b246afa 396
92a7cc42 397 if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
6426c7ad 398 root->last_trans < trans->transid) || force) {
4d31778a 399 WARN_ON(!force && root->commit_root != root->node);
5d4f98a2 400
7585717f 401 /*
27cdeb70 402 * see below for IN_TRANS_SETUP usage rules
7585717f
CM
403 * we have the reloc mutex held now, so there
404 * is only one writer in this function
405 */
27cdeb70 406 set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
7585717f 407
27cdeb70 408 /* make sure readers find IN_TRANS_SETUP before
7585717f
CM
409 * they find our root->last_trans update
410 */
411 smp_wmb();
412
fc7cbcd4 413 spin_lock(&fs_info->fs_roots_radix_lock);
6426c7ad 414 if (root->last_trans == trans->transid && !force) {
fc7cbcd4 415 spin_unlock(&fs_info->fs_roots_radix_lock);
a4abeea4
JB
416 return 0;
417 }
fc7cbcd4
DS
418 radix_tree_tag_set(&fs_info->fs_roots_radix,
419 (unsigned long)root->root_key.objectid,
420 BTRFS_ROOT_TRANS_TAG);
421 spin_unlock(&fs_info->fs_roots_radix_lock);
7585717f
CM
422 root->last_trans = trans->transid;
423
424 /* this is pretty tricky. We don't want to
425 * take the relocation lock in btrfs_record_root_in_trans
426 * unless we're really doing the first setup for this root in
427 * this transaction.
428 *
429 * Normally we'd use root->last_trans as a flag to decide
430 * if we want to take the expensive mutex.
431 *
432 * But, we have to set root->last_trans before we
433 * init the relocation root, otherwise, we trip over warnings
434 * in ctree.c. The solution used here is to flag ourselves
27cdeb70 435 * with root IN_TRANS_SETUP. When this is 1, we're still
7585717f
CM
436 * fixing up the reloc trees and everyone must wait.
437 *
438 * When this is zero, they can trust root->last_trans and fly
439 * through btrfs_record_root_in_trans without having to take the
440 * lock. smp_wmb() makes sure that all the writes above are
441 * done before we pop in the zero below
442 */
03a7e111 443 ret = btrfs_init_reloc_root(trans, root);
c7548af6 444 smp_mb__before_atomic();
27cdeb70 445 clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state);
5d4f98a2 446 }
03a7e111 447 return ret;
5d4f98a2 448}
bcc63abb 449
7585717f 450
2b9dbef2
JB
451void btrfs_add_dropped_root(struct btrfs_trans_handle *trans,
452 struct btrfs_root *root)
453{
0b246afa 454 struct btrfs_fs_info *fs_info = root->fs_info;
2b9dbef2
JB
455 struct btrfs_transaction *cur_trans = trans->transaction;
456
457 /* Add ourselves to the transaction dropped list */
458 spin_lock(&cur_trans->dropped_roots_lock);
459 list_add_tail(&root->root_list, &cur_trans->dropped_roots);
460 spin_unlock(&cur_trans->dropped_roots_lock);
461
462 /* Make sure we don't try to update the root at commit time */
fc7cbcd4
DS
463 spin_lock(&fs_info->fs_roots_radix_lock);
464 radix_tree_tag_clear(&fs_info->fs_roots_radix,
465 (unsigned long)root->root_key.objectid,
466 BTRFS_ROOT_TRANS_TAG);
467 spin_unlock(&fs_info->fs_roots_radix_lock);
2b9dbef2
JB
468}
469
7585717f
CM
470int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
471 struct btrfs_root *root)
472{
0b246afa 473 struct btrfs_fs_info *fs_info = root->fs_info;
1409e6cc 474 int ret;
0b246afa 475
92a7cc42 476 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
7585717f
CM
477 return 0;
478
479 /*
27cdeb70 480 * see record_root_in_trans for comments about IN_TRANS_SETUP usage
7585717f
CM
481 * and barriers
482 */
483 smp_rmb();
484 if (root->last_trans == trans->transid &&
27cdeb70 485 !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state))
7585717f
CM
486 return 0;
487
0b246afa 488 mutex_lock(&fs_info->reloc_mutex);
1409e6cc 489 ret = record_root_in_trans(trans, root, 0);
0b246afa 490 mutex_unlock(&fs_info->reloc_mutex);
7585717f 491
1409e6cc 492 return ret;
7585717f
CM
493}
494
4a9d8bde
MX
495static inline int is_transaction_blocked(struct btrfs_transaction *trans)
496{
3296bf56 497 return (trans->state >= TRANS_STATE_COMMIT_START &&
501407aa 498 trans->state < TRANS_STATE_UNBLOCKED &&
bf31f87f 499 !TRANS_ABORTED(trans));
4a9d8bde
MX
500}
501
d352ac68
CM
502/* wait for commit against the current transaction to become unblocked
503 * when this is done, it is safe to start a new transaction, but the current
504 * transaction might not be fully on disk.
505 */
2ff7e61e 506static void wait_current_trans(struct btrfs_fs_info *fs_info)
79154b1b 507{
f9295749 508 struct btrfs_transaction *cur_trans;
79154b1b 509
0b246afa
JM
510 spin_lock(&fs_info->trans_lock);
511 cur_trans = fs_info->running_transaction;
4a9d8bde 512 if (cur_trans && is_transaction_blocked(cur_trans)) {
9b64f57d 513 refcount_inc(&cur_trans->use_count);
0b246afa 514 spin_unlock(&fs_info->trans_lock);
72d63ed6 515
3e738c53 516 btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
0b246afa 517 wait_event(fs_info->transaction_wait,
501407aa 518 cur_trans->state >= TRANS_STATE_UNBLOCKED ||
bf31f87f 519 TRANS_ABORTED(cur_trans));
724e2315 520 btrfs_put_transaction(cur_trans);
a4abeea4 521 } else {
0b246afa 522 spin_unlock(&fs_info->trans_lock);
f9295749 523 }
37d1aeee
CM
524}
525
2ff7e61e 526static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type)
a22285a6 527{
0b246afa 528 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
a4abeea4
JB
529 return 0;
530
92e2f7e3 531 if (type == TRANS_START)
a22285a6 532 return 1;
a4abeea4 533
a22285a6
YZ
534 return 0;
535}
536
20dd2cbf
MX
537static inline bool need_reserve_reloc_root(struct btrfs_root *root)
538{
0b246afa
JM
539 struct btrfs_fs_info *fs_info = root->fs_info;
540
541 if (!fs_info->reloc_ctl ||
92a7cc42 542 !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
20dd2cbf
MX
543 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
544 root->reloc_root)
545 return false;
546
547 return true;
548}
549
08e007d2 550static struct btrfs_trans_handle *
5aed1dd8 551start_transaction(struct btrfs_root *root, unsigned int num_items,
003d7c59
JM
552 unsigned int type, enum btrfs_reserve_flush_enum flush,
553 bool enforce_qgroups)
37d1aeee 554{
0b246afa 555 struct btrfs_fs_info *fs_info = root->fs_info;
ba2c4d4e 556 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
a22285a6
YZ
557 struct btrfs_trans_handle *h;
558 struct btrfs_transaction *cur_trans;
b5009945 559 u64 num_bytes = 0;
c5567237 560 u64 qgroup_reserved = 0;
20dd2cbf 561 bool reloc_reserved = false;
9c343784 562 bool do_chunk_alloc = false;
20dd2cbf 563 int ret;
acce952b 564
84961539 565 if (BTRFS_FS_ERROR(fs_info))
acce952b 566 return ERR_PTR(-EROFS);
2a1eb461 567
46c4e71e 568 if (current->journal_info) {
0860adfd 569 WARN_ON(type & TRANS_EXTWRITERS);
2a1eb461 570 h = current->journal_info;
b50fff81
DS
571 refcount_inc(&h->use_count);
572 WARN_ON(refcount_read(&h->use_count) > 2);
2a1eb461
JB
573 h->orig_rsv = h->block_rsv;
574 h->block_rsv = NULL;
575 goto got_it;
576 }
b5009945
JB
577
578 /*
579 * Do the reservation before we join the transaction so we can do all
580 * the appropriate flushing if need be.
581 */
003d7c59 582 if (num_items && root != fs_info->chunk_root) {
ba2c4d4e
JB
583 struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv;
584 u64 delayed_refs_bytes = 0;
585
0b246afa 586 qgroup_reserved = num_items * fs_info->nodesize;
733e03a0
QW
587 ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved,
588 enforce_qgroups);
7174109c
QW
589 if (ret)
590 return ERR_PTR(ret);
c5567237 591
ba2c4d4e
JB
592 /*
593 * We want to reserve all the bytes we may need all at once, so
594 * we only do 1 enospc flushing cycle per transaction start. We
595 * accomplish this by simply assuming we'll do 2 x num_items
596 * worth of delayed refs updates in this trans handle, and
597 * refill that amount for whatever is missing in the reserve.
598 */
2bd36e7b 599 num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items);
7f9fe614 600 if (flush == BTRFS_RESERVE_FLUSH_ALL &&
748f553c 601 btrfs_block_rsv_full(delayed_refs_rsv) == 0) {
ba2c4d4e
JB
602 delayed_refs_bytes = num_bytes;
603 num_bytes <<= 1;
604 }
605
20dd2cbf
MX
606 /*
607 * Do the reservation for the relocation root creation
608 */
ee39b432 609 if (need_reserve_reloc_root(root)) {
0b246afa 610 num_bytes += fs_info->nodesize;
20dd2cbf
MX
611 reloc_reserved = true;
612 }
613
9270501c 614 ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush);
ba2c4d4e
JB
615 if (ret)
616 goto reserve_fail;
617 if (delayed_refs_bytes) {
618 btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv,
619 delayed_refs_bytes);
620 num_bytes -= delayed_refs_bytes;
621 }
9c343784
JB
622
623 if (rsv->space_info->force_alloc)
624 do_chunk_alloc = true;
ba2c4d4e 625 } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL &&
748f553c 626 !btrfs_block_rsv_full(delayed_refs_rsv)) {
ba2c4d4e
JB
627 /*
628 * Some people call with btrfs_start_transaction(root, 0)
629 * because they can be throttled, but have some other mechanism
630 * for reserving space. We still want these guys to refill the
631 * delayed block_rsv so just add 1 items worth of reservation
632 * here.
633 */
634 ret = btrfs_delayed_refs_rsv_refill(fs_info, flush);
b5009945 635 if (ret)
843fcf35 636 goto reserve_fail;
b5009945 637 }
a22285a6 638again:
f2f767e7 639 h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS);
843fcf35
MX
640 if (!h) {
641 ret = -ENOMEM;
642 goto alloc_fail;
643 }
37d1aeee 644
98114659
JB
645 /*
646 * If we are JOIN_NOLOCK we're already committing a transaction and
647 * waiting on this guy, so we don't need to do the sb_start_intwrite
648 * because we're already holding a ref. We need this because we could
649 * have raced in and did an fsync() on a file which can kick a commit
650 * and then we deadlock with somebody doing a freeze.
354aa0fb
MX
651 *
652 * If we are ATTACH, it means we just want to catch the current
653 * transaction and commit it, so we needn't do sb_start_intwrite().
98114659 654 */
0860adfd 655 if (type & __TRANS_FREEZABLE)
0b246afa 656 sb_start_intwrite(fs_info->sb);
b2b5ef5c 657
2ff7e61e
JM
658 if (may_wait_transaction(fs_info, type))
659 wait_current_trans(fs_info);
a22285a6 660
a4abeea4 661 do {
2ff7e61e 662 ret = join_transaction(fs_info, type);
178260b2 663 if (ret == -EBUSY) {
2ff7e61e 664 wait_current_trans(fs_info);
a6d155d2
FM
665 if (unlikely(type == TRANS_ATTACH ||
666 type == TRANS_JOIN_NOSTART))
178260b2
MX
667 ret = -ENOENT;
668 }
a4abeea4
JB
669 } while (ret == -EBUSY);
670
a43f7f82 671 if (ret < 0)
843fcf35 672 goto join_fail;
0f7d52f4 673
0b246afa 674 cur_trans = fs_info->running_transaction;
a22285a6
YZ
675
676 h->transid = cur_trans->transid;
677 h->transaction = cur_trans;
b50fff81 678 refcount_set(&h->use_count, 1);
64b63580 679 h->fs_info = root->fs_info;
7174109c 680
a698d075 681 h->type = type;
ea658bad 682 INIT_LIST_HEAD(&h->new_bgs);
b7ec40d7 683
a22285a6 684 smp_mb();
3296bf56 685 if (cur_trans->state >= TRANS_STATE_COMMIT_START &&
2ff7e61e 686 may_wait_transaction(fs_info, type)) {
abdd2e80 687 current->journal_info = h;
3a45bb20 688 btrfs_commit_transaction(h);
a22285a6
YZ
689 goto again;
690 }
691
b5009945 692 if (num_bytes) {
0b246afa 693 trace_btrfs_space_reservation(fs_info, "transaction",
2bcc0328 694 h->transid, num_bytes, 1);
0b246afa 695 h->block_rsv = &fs_info->trans_block_rsv;
b5009945 696 h->bytes_reserved = num_bytes;
20dd2cbf 697 h->reloc_reserved = reloc_reserved;
a22285a6 698 }
9ed74f2d 699
2a1eb461 700got_it:
bcf3a3e7 701 if (!current->journal_info)
a22285a6 702 current->journal_info = h;
fcc99734 703
9c343784
JB
704 /*
705 * If the space_info is marked ALLOC_FORCE then we'll get upgraded to
706 * ALLOC_FORCE the first run through, and then we won't allocate for
707 * anybody else who races in later. We don't care about the return
708 * value here.
709 */
710 if (do_chunk_alloc && num_bytes) {
711 u64 flags = h->block_rsv->space_info->flags;
712
713 btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags),
714 CHUNK_ALLOC_NO_FORCE);
715 }
716
fcc99734
QW
717 /*
718 * btrfs_record_root_in_trans() needs to alloc new extents, and may
719 * call btrfs_join_transaction() while we're also starting a
720 * transaction.
721 *
722 * Thus it need to be called after current->journal_info initialized,
723 * or we can deadlock.
724 */
68075ea8
JB
725 ret = btrfs_record_root_in_trans(h, root);
726 if (ret) {
727 /*
728 * The transaction handle is fully initialized and linked with
729 * other structures so it needs to be ended in case of errors,
730 * not just freed.
731 */
732 btrfs_end_transaction(h);
733 return ERR_PTR(ret);
734 }
fcc99734 735
79154b1b 736 return h;
843fcf35
MX
737
738join_fail:
0860adfd 739 if (type & __TRANS_FREEZABLE)
0b246afa 740 sb_end_intwrite(fs_info->sb);
843fcf35
MX
741 kmem_cache_free(btrfs_trans_handle_cachep, h);
742alloc_fail:
743 if (num_bytes)
2ff7e61e 744 btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv,
63f018be 745 num_bytes, NULL);
843fcf35 746reserve_fail:
733e03a0 747 btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved);
843fcf35 748 return ERR_PTR(ret);
79154b1b
CM
749}
750
f9295749 751struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
5aed1dd8 752 unsigned int num_items)
f9295749 753{
08e007d2 754 return start_transaction(root, num_items, TRANS_START,
003d7c59 755 BTRFS_RESERVE_FLUSH_ALL, true);
f9295749 756}
003d7c59 757
8eab77ff
FM
758struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv(
759 struct btrfs_root *root,
7f9fe614 760 unsigned int num_items)
8eab77ff 761{
7f9fe614
JB
762 return start_transaction(root, num_items, TRANS_START,
763 BTRFS_RESERVE_FLUSH_ALL_STEAL, false);
8eab77ff 764}
8407aa46 765
7a7eaa40 766struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
f9295749 767{
003d7c59
JM
768 return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH,
769 true);
f9295749
CM
770}
771
8d510121 772struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root)
0af3d00b 773{
575a75d6 774 return start_transaction(root, 0, TRANS_JOIN_NOLOCK,
003d7c59 775 BTRFS_RESERVE_NO_FLUSH, true);
0af3d00b
JB
776}
777
a6d155d2
FM
778/*
779 * Similar to regular join but it never starts a transaction when none is
780 * running or after waiting for the current one to finish.
781 */
782struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
783{
784 return start_transaction(root, 0, TRANS_JOIN_NOSTART,
785 BTRFS_RESERVE_NO_FLUSH, true);
786}
787
d4edf39b
MX
788/*
789 * btrfs_attach_transaction() - catch the running transaction
790 *
791 * It is used when we want to commit the current the transaction, but
792 * don't want to start a new one.
793 *
794 * Note: If this function return -ENOENT, it just means there is no
795 * running transaction. But it is possible that the inactive transaction
796 * is still in the memory, not fully on disk. If you hope there is no
797 * inactive transaction in the fs when -ENOENT is returned, you should
798 * invoke
799 * btrfs_attach_transaction_barrier()
800 */
354aa0fb 801struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root)
60376ce4 802{
575a75d6 803 return start_transaction(root, 0, TRANS_ATTACH,
003d7c59 804 BTRFS_RESERVE_NO_FLUSH, true);
60376ce4
JB
805}
806
d4edf39b 807/*
90b6d283 808 * btrfs_attach_transaction_barrier() - catch the running transaction
d4edf39b 809 *
52042d8e 810 * It is similar to the above function, the difference is this one
d4edf39b
MX
811 * will wait for all the inactive transactions until they fully
812 * complete.
813 */
814struct btrfs_trans_handle *
815btrfs_attach_transaction_barrier(struct btrfs_root *root)
816{
817 struct btrfs_trans_handle *trans;
818
575a75d6 819 trans = start_transaction(root, 0, TRANS_ATTACH,
003d7c59 820 BTRFS_RESERVE_NO_FLUSH, true);
8d9e220c 821 if (trans == ERR_PTR(-ENOENT))
2ff7e61e 822 btrfs_wait_for_commit(root->fs_info, 0);
d4edf39b
MX
823
824 return trans;
825}
826
d0c2f4fa
FM
827/* Wait for a transaction commit to reach at least the given state. */
828static noinline void wait_for_commit(struct btrfs_transaction *commit,
829 const enum btrfs_trans_state min_state)
89ce8a63 830{
5fd76bf3
OS
831 struct btrfs_fs_info *fs_info = commit->fs_info;
832 u64 transid = commit->transid;
833 bool put = false;
834
3e738c53
IA
835 /*
836 * At the moment this function is called with min_state either being
837 * TRANS_STATE_COMPLETED or TRANS_STATE_SUPER_COMMITTED.
838 */
839 if (min_state == TRANS_STATE_COMPLETED)
840 btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
841 else
842 btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
843
5fd76bf3
OS
844 while (1) {
845 wait_event(commit->commit_wait, commit->state >= min_state);
846 if (put)
847 btrfs_put_transaction(commit);
848
849 if (min_state < TRANS_STATE_COMPLETED)
850 break;
851
852 /*
853 * A transaction isn't really completed until all of the
854 * previous transactions are completed, but with fsync we can
855 * end up with SUPER_COMMITTED transactions before a COMPLETED
856 * transaction. Wait for those.
857 */
858
859 spin_lock(&fs_info->trans_lock);
860 commit = list_first_entry_or_null(&fs_info->trans_list,
861 struct btrfs_transaction,
862 list);
863 if (!commit || commit->transid > transid) {
864 spin_unlock(&fs_info->trans_lock);
865 break;
866 }
867 refcount_inc(&commit->use_count);
868 put = true;
869 spin_unlock(&fs_info->trans_lock);
870 }
89ce8a63
CM
871}
872
2ff7e61e 873int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid)
46204592
SW
874{
875 struct btrfs_transaction *cur_trans = NULL, *t;
8cd2807f 876 int ret = 0;
46204592 877
46204592 878 if (transid) {
0b246afa 879 if (transid <= fs_info->last_trans_committed)
a4abeea4 880 goto out;
46204592
SW
881
882 /* find specified transaction */
0b246afa
JM
883 spin_lock(&fs_info->trans_lock);
884 list_for_each_entry(t, &fs_info->trans_list, list) {
46204592
SW
885 if (t->transid == transid) {
886 cur_trans = t;
9b64f57d 887 refcount_inc(&cur_trans->use_count);
8cd2807f 888 ret = 0;
46204592
SW
889 break;
890 }
8cd2807f
MX
891 if (t->transid > transid) {
892 ret = 0;
46204592 893 break;
8cd2807f 894 }
46204592 895 }
0b246afa 896 spin_unlock(&fs_info->trans_lock);
42383020
SW
897
898 /*
899 * The specified transaction doesn't exist, or we
900 * raced with btrfs_commit_transaction
901 */
902 if (!cur_trans) {
0b246afa 903 if (transid > fs_info->last_trans_committed)
42383020 904 ret = -EINVAL;
8cd2807f 905 goto out;
42383020 906 }
46204592
SW
907 } else {
908 /* find newest transaction that is committing | committed */
0b246afa
JM
909 spin_lock(&fs_info->trans_lock);
910 list_for_each_entry_reverse(t, &fs_info->trans_list,
46204592 911 list) {
4a9d8bde
MX
912 if (t->state >= TRANS_STATE_COMMIT_START) {
913 if (t->state == TRANS_STATE_COMPLETED)
3473f3c0 914 break;
46204592 915 cur_trans = t;
9b64f57d 916 refcount_inc(&cur_trans->use_count);
46204592
SW
917 break;
918 }
919 }
0b246afa 920 spin_unlock(&fs_info->trans_lock);
46204592 921 if (!cur_trans)
a4abeea4 922 goto out; /* nothing committing|committed */
46204592
SW
923 }
924
d0c2f4fa 925 wait_for_commit(cur_trans, TRANS_STATE_COMPLETED);
724e2315 926 btrfs_put_transaction(cur_trans);
a4abeea4 927out:
46204592
SW
928 return ret;
929}
930
2ff7e61e 931void btrfs_throttle(struct btrfs_fs_info *fs_info)
37d1aeee 932{
92e2f7e3 933 wait_current_trans(fs_info);
37d1aeee
CM
934}
935
8a8f4dea 936static bool should_end_transaction(struct btrfs_trans_handle *trans)
8929ecfa 937{
2ff7e61e 938 struct btrfs_fs_info *fs_info = trans->fs_info;
0b246afa 939
64403612 940 if (btrfs_check_space_for_delayed_refs(fs_info))
8a8f4dea 941 return true;
36ba022a 942
2ff7e61e 943 return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
8929ecfa
YZ
944}
945
a2633b6a 946bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans)
8929ecfa
YZ
947{
948 struct btrfs_transaction *cur_trans = trans->transaction;
8929ecfa 949
3296bf56 950 if (cur_trans->state >= TRANS_STATE_COMMIT_START ||
e19eb11f 951 test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags))
a2633b6a 952 return true;
8929ecfa 953
2ff7e61e 954 return should_end_transaction(trans);
8929ecfa
YZ
955}
956
dc60c525
NB
957static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans)
958
0e34693f 959{
dc60c525
NB
960 struct btrfs_fs_info *fs_info = trans->fs_info;
961
0e34693f
NB
962 if (!trans->block_rsv) {
963 ASSERT(!trans->bytes_reserved);
964 return;
965 }
966
967 if (!trans->bytes_reserved)
968 return;
969
970 ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
971 trace_btrfs_space_reservation(fs_info, "transaction",
972 trans->transid, trans->bytes_reserved, 0);
973 btrfs_block_rsv_release(fs_info, trans->block_rsv,
63f018be 974 trans->bytes_reserved, NULL);
0e34693f
NB
975 trans->bytes_reserved = 0;
976}
977
89ce8a63 978static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
3a45bb20 979 int throttle)
79154b1b 980{
3a45bb20 981 struct btrfs_fs_info *info = trans->fs_info;
8929ecfa 982 struct btrfs_transaction *cur_trans = trans->transaction;
4edc2ca3 983 int err = 0;
c3e69d58 984
b50fff81
DS
985 if (refcount_read(&trans->use_count) > 1) {
986 refcount_dec(&trans->use_count);
2a1eb461
JB
987 trans->block_rsv = trans->orig_rsv;
988 return 0;
989 }
990
dc60c525 991 btrfs_trans_release_metadata(trans);
4c13d758 992 trans->block_rsv = NULL;
c5567237 993
119e80df 994 btrfs_create_pending_block_groups(trans);
ea658bad 995
4fbcdf66
FM
996 btrfs_trans_release_chunk_metadata(trans);
997
0860adfd 998 if (trans->type & __TRANS_FREEZABLE)
0b246afa 999 sb_end_intwrite(info->sb);
6df7881a 1000
8929ecfa 1001 WARN_ON(cur_trans != info->running_transaction);
13c5a93e
JB
1002 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
1003 atomic_dec(&cur_trans->num_writers);
0860adfd 1004 extwriter_counter_dec(cur_trans, trans->type);
89ce8a63 1005
093258e6 1006 cond_wake_up(&cur_trans->writer_wait);
e1489b4f 1007
5a9ba670 1008 btrfs_lockdep_release(info, btrfs_trans_num_extwriters);
e1489b4f
IA
1009 btrfs_lockdep_release(info, btrfs_trans_num_writers);
1010
724e2315 1011 btrfs_put_transaction(cur_trans);
9ed74f2d
JB
1012
1013 if (current->journal_info == trans)
1014 current->journal_info = NULL;
ab78c84d 1015
24bbcf04 1016 if (throttle)
2ff7e61e 1017 btrfs_run_delayed_iputs(info);
24bbcf04 1018
84961539 1019 if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) {
4e121c06 1020 wake_up_process(info->transaction_kthread);
fbabd4a3
JB
1021 if (TRANS_ABORTED(trans))
1022 err = trans->aborted;
1023 else
1024 err = -EROFS;
4e121c06 1025 }
49b25e05 1026
4edc2ca3
DJ
1027 kmem_cache_free(btrfs_trans_handle_cachep, trans);
1028 return err;
79154b1b
CM
1029}
1030
3a45bb20 1031int btrfs_end_transaction(struct btrfs_trans_handle *trans)
89ce8a63 1032{
3a45bb20 1033 return __btrfs_end_transaction(trans, 0);
89ce8a63
CM
1034}
1035
3a45bb20 1036int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans)
89ce8a63 1037{
3a45bb20 1038 return __btrfs_end_transaction(trans, 1);
16cdcec7
MX
1039}
1040
d352ac68
CM
1041/*
1042 * when btree blocks are allocated, they have some corresponding bits set for
1043 * them in one of two extent_io trees. This is used to make sure all of
690587d1 1044 * those extents are sent to disk but does not wait on them
d352ac68 1045 */
2ff7e61e 1046int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info,
8cef4e16 1047 struct extent_io_tree *dirty_pages, int mark)
79154b1b 1048{
777e6bd7 1049 int err = 0;
7c4452b9 1050 int werr = 0;
0b246afa 1051 struct address_space *mapping = fs_info->btree_inode->i_mapping;
e6138876 1052 struct extent_state *cached_state = NULL;
777e6bd7 1053 u64 start = 0;
5f39d397 1054 u64 end;
7c4452b9 1055
6300463b 1056 atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers);
1728366e 1057 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 1058 mark, &cached_state)) {
663dfbb0
FM
1059 bool wait_writeback = false;
1060
1061 err = convert_extent_bit(dirty_pages, start, end,
1062 EXTENT_NEED_WAIT,
210aa277 1063 mark, &cached_state);
663dfbb0
FM
1064 /*
1065 * convert_extent_bit can return -ENOMEM, which is most of the
1066 * time a temporary error. So when it happens, ignore the error
1067 * and wait for writeback of this range to finish - because we
1068 * failed to set the bit EXTENT_NEED_WAIT for the range, a call
bf89d38f
JM
1069 * to __btrfs_wait_marked_extents() would not know that
1070 * writeback for this range started and therefore wouldn't
1071 * wait for it to finish - we don't want to commit a
1072 * superblock that points to btree nodes/leafs for which
1073 * writeback hasn't finished yet (and without errors).
663dfbb0 1074 * We cleanup any entries left in the io tree when committing
41e7acd3 1075 * the transaction (through extent_io_tree_release()).
663dfbb0
FM
1076 */
1077 if (err == -ENOMEM) {
1078 err = 0;
1079 wait_writeback = true;
1080 }
1081 if (!err)
1082 err = filemap_fdatawrite_range(mapping, start, end);
1728366e
JB
1083 if (err)
1084 werr = err;
663dfbb0
FM
1085 else if (wait_writeback)
1086 werr = filemap_fdatawait_range(mapping, start, end);
e38e2ed7 1087 free_extent_state(cached_state);
663dfbb0 1088 cached_state = NULL;
1728366e
JB
1089 cond_resched();
1090 start = end + 1;
7c4452b9 1091 }
6300463b 1092 atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers);
690587d1
CM
1093 return werr;
1094}
1095
1096/*
1097 * when btree blocks are allocated, they have some corresponding bits set for
1098 * them in one of two extent_io trees. This is used to make sure all of
1099 * those extents are on disk for transaction or log commit. We wait
1100 * on all the pages and clear them from the dirty pages state tree
1101 */
bf89d38f
JM
1102static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info,
1103 struct extent_io_tree *dirty_pages)
690587d1 1104{
690587d1
CM
1105 int err = 0;
1106 int werr = 0;
0b246afa 1107 struct address_space *mapping = fs_info->btree_inode->i_mapping;
e6138876 1108 struct extent_state *cached_state = NULL;
690587d1
CM
1109 u64 start = 0;
1110 u64 end;
777e6bd7 1111
1728366e 1112 while (!find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 1113 EXTENT_NEED_WAIT, &cached_state)) {
663dfbb0
FM
1114 /*
1115 * Ignore -ENOMEM errors returned by clear_extent_bit().
1116 * When committing the transaction, we'll remove any entries
1117 * left in the io tree. For a log commit, we don't remove them
1118 * after committing the log because the tree can be accessed
1119 * concurrently - we do it only at transaction commit time when
41e7acd3 1120 * it's safe to do it (through extent_io_tree_release()).
663dfbb0
FM
1121 */
1122 err = clear_extent_bit(dirty_pages, start, end,
bd015294 1123 EXTENT_NEED_WAIT, &cached_state);
663dfbb0
FM
1124 if (err == -ENOMEM)
1125 err = 0;
1126 if (!err)
1127 err = filemap_fdatawait_range(mapping, start, end);
1728366e
JB
1128 if (err)
1129 werr = err;
e38e2ed7
FM
1130 free_extent_state(cached_state);
1131 cached_state = NULL;
1728366e
JB
1132 cond_resched();
1133 start = end + 1;
777e6bd7 1134 }
7c4452b9
CM
1135 if (err)
1136 werr = err;
bf89d38f
JM
1137 return werr;
1138}
656f30db 1139
b9fae2eb 1140static int btrfs_wait_extents(struct btrfs_fs_info *fs_info,
bf89d38f
JM
1141 struct extent_io_tree *dirty_pages)
1142{
1143 bool errors = false;
1144 int err;
656f30db 1145
bf89d38f
JM
1146 err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1147 if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags))
1148 errors = true;
1149
1150 if (errors && !err)
1151 err = -EIO;
1152 return err;
1153}
656f30db 1154
bf89d38f
JM
1155int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark)
1156{
1157 struct btrfs_fs_info *fs_info = log_root->fs_info;
1158 struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages;
1159 bool errors = false;
1160 int err;
656f30db 1161
bf89d38f
JM
1162 ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
1163
1164 err = __btrfs_wait_marked_extents(fs_info, dirty_pages);
1165 if ((mark & EXTENT_DIRTY) &&
1166 test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags))
1167 errors = true;
1168
1169 if ((mark & EXTENT_NEW) &&
1170 test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags))
1171 errors = true;
1172
1173 if (errors && !err)
1174 err = -EIO;
1175 return err;
79154b1b
CM
1176}
1177
690587d1 1178/*
c9b577c0
NB
1179 * When btree blocks are allocated the corresponding extents are marked dirty.
1180 * This function ensures such extents are persisted on disk for transaction or
1181 * log commit.
1182 *
1183 * @trans: transaction whose dirty pages we'd like to write
690587d1 1184 */
70458a58 1185static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans)
690587d1
CM
1186{
1187 int ret;
1188 int ret2;
c9b577c0 1189 struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages;
70458a58 1190 struct btrfs_fs_info *fs_info = trans->fs_info;
c6adc9cc 1191 struct blk_plug plug;
690587d1 1192
c6adc9cc 1193 blk_start_plug(&plug);
c9b577c0 1194 ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY);
c6adc9cc 1195 blk_finish_plug(&plug);
bf89d38f 1196 ret2 = btrfs_wait_extents(fs_info, dirty_pages);
bf0da8c1 1197
41e7acd3 1198 extent_io_tree_release(&trans->transaction->dirty_pages);
c9b577c0 1199
bf0da8c1
CM
1200 if (ret)
1201 return ret;
c9b577c0 1202 else if (ret2)
bf0da8c1 1203 return ret2;
c9b577c0
NB
1204 else
1205 return 0;
d0c803c4
CM
1206}
1207
d352ac68
CM
1208/*
1209 * this is used to update the root pointer in the tree of tree roots.
1210 *
1211 * But, in the case of the extent allocation tree, updating the root
1212 * pointer may allocate blocks which may change the root of the extent
1213 * allocation tree.
1214 *
1215 * So, this loops and repeats and makes sure the cowonly root didn't
1216 * change while the root pointer was being updated in the metadata.
1217 */
0b86a832
CM
1218static int update_cowonly_root(struct btrfs_trans_handle *trans,
1219 struct btrfs_root *root)
79154b1b
CM
1220{
1221 int ret;
0b86a832 1222 u64 old_root_bytenr;
86b9f2ec 1223 u64 old_root_used;
0b246afa
JM
1224 struct btrfs_fs_info *fs_info = root->fs_info;
1225 struct btrfs_root *tree_root = fs_info->tree_root;
79154b1b 1226
86b9f2ec 1227 old_root_used = btrfs_root_used(&root->root_item);
56bec294 1228
d397712b 1229 while (1) {
0b86a832 1230 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec 1231 if (old_root_bytenr == root->node->start &&
ea526d18 1232 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 1233 break;
87ef2bb4 1234
5d4f98a2 1235 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 1236 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
1237 &root->root_key,
1238 &root->root_item);
49b25e05
JM
1239 if (ret)
1240 return ret;
56bec294 1241
86b9f2ec 1242 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 1243 }
276e680d 1244
0b86a832
CM
1245 return 0;
1246}
1247
d352ac68
CM
1248/*
1249 * update all the cowonly tree roots on disk
49b25e05
JM
1250 *
1251 * The error handling in this function may not be obvious. Any of the
1252 * failures will cause the file system to go offline. We still need
1253 * to clean up the delayed refs.
d352ac68 1254 */
9386d8bc 1255static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans)
0b86a832 1256{
9386d8bc 1257 struct btrfs_fs_info *fs_info = trans->fs_info;
ea526d18 1258 struct list_head *dirty_bgs = &trans->transaction->dirty_bgs;
1bbc621e 1259 struct list_head *io_bgs = &trans->transaction->io_bgs;
0b86a832 1260 struct list_head *next;
84234f3a 1261 struct extent_buffer *eb;
56bec294 1262 int ret;
84234f3a 1263
dfba78dc
FM
1264 /*
1265 * At this point no one can be using this transaction to modify any tree
1266 * and no one can start another transaction to modify any tree either.
1267 */
1268 ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1269
84234f3a 1270 eb = btrfs_lock_root_node(fs_info->tree_root);
49b25e05 1271 ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL,
9631e4cc 1272 0, &eb, BTRFS_NESTING_COW);
84234f3a
YZ
1273 btrfs_tree_unlock(eb);
1274 free_extent_buffer(eb);
0b86a832 1275
49b25e05
JM
1276 if (ret)
1277 return ret;
87ef2bb4 1278
196c9d8d 1279 ret = btrfs_run_dev_stats(trans);
c16ce190
JB
1280 if (ret)
1281 return ret;
2b584c68 1282 ret = btrfs_run_dev_replace(trans);
c16ce190
JB
1283 if (ret)
1284 return ret;
280f8bd2 1285 ret = btrfs_run_qgroups(trans);
c16ce190
JB
1286 if (ret)
1287 return ret;
546adb0d 1288
bbebb3e0 1289 ret = btrfs_setup_space_cache(trans);
dcdf7f6d
JB
1290 if (ret)
1291 return ret;
1292
ea526d18 1293again:
d397712b 1294 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
2ff7e61e 1295 struct btrfs_root *root;
0b86a832
CM
1296 next = fs_info->dirty_cowonly_roots.next;
1297 list_del_init(next);
1298 root = list_entry(next, struct btrfs_root, dirty_list);
e7070be1 1299 clear_bit(BTRFS_ROOT_DIRTY, &root->state);
87ef2bb4 1300
826582ca
JB
1301 list_add_tail(&root->dirty_list,
1302 &trans->transaction->switch_commits);
49b25e05
JM
1303 ret = update_cowonly_root(trans, root);
1304 if (ret)
1305 return ret;
79154b1b 1306 }
276e680d 1307
488bc2a2
JB
1308 /* Now flush any delayed refs generated by updating all of the roots */
1309 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1310 if (ret)
1311 return ret;
1312
1bbc621e 1313 while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) {
5742d15f 1314 ret = btrfs_write_dirty_block_groups(trans);
ea526d18
JB
1315 if (ret)
1316 return ret;
488bc2a2
JB
1317
1318 /*
1319 * We're writing the dirty block groups, which could generate
1320 * delayed refs, which could generate more dirty block groups,
1321 * so we want to keep this flushing in this loop to make sure
1322 * everything gets run.
1323 */
c79a70b1 1324 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
ea526d18
JB
1325 if (ret)
1326 return ret;
1327 }
1328
1329 if (!list_empty(&fs_info->dirty_cowonly_roots))
1330 goto again;
1331
9f6cbcbb
DS
1332 /* Update dev-replace pointer once everything is committed */
1333 fs_info->dev_replace.committed_cursor_left =
1334 fs_info->dev_replace.cursor_left_last_write_of_item;
8dabb742 1335
79154b1b
CM
1336 return 0;
1337}
1338
b4be6aef
JB
1339/*
1340 * If we had a pending drop we need to see if there are any others left in our
1341 * dead roots list, and if not clear our bit and wake any waiters.
1342 */
1343void btrfs_maybe_wake_unfinished_drop(struct btrfs_fs_info *fs_info)
1344{
1345 /*
1346 * We put the drop in progress roots at the front of the list, so if the
1347 * first entry doesn't have UNFINISHED_DROP set we can wake everybody
1348 * up.
1349 */
1350 spin_lock(&fs_info->trans_lock);
1351 if (!list_empty(&fs_info->dead_roots)) {
1352 struct btrfs_root *root = list_first_entry(&fs_info->dead_roots,
1353 struct btrfs_root,
1354 root_list);
1355 if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) {
1356 spin_unlock(&fs_info->trans_lock);
1357 return;
1358 }
1359 }
1360 spin_unlock(&fs_info->trans_lock);
1361
1362 btrfs_wake_unfinished_drop(fs_info);
1363}
1364
d352ac68
CM
1365/*
1366 * dead roots are old snapshots that need to be deleted. This allocates
1367 * a dirty root struct and adds it into the list of dead roots that need to
1368 * be deleted
1369 */
cfad392b 1370void btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 1371{
0b246afa
JM
1372 struct btrfs_fs_info *fs_info = root->fs_info;
1373
1374 spin_lock(&fs_info->trans_lock);
dc9492c1
JB
1375 if (list_empty(&root->root_list)) {
1376 btrfs_grab_root(root);
b4be6aef
JB
1377
1378 /* We want to process the partially complete drops first. */
1379 if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state))
1380 list_add(&root->root_list, &fs_info->dead_roots);
1381 else
1382 list_add_tail(&root->root_list, &fs_info->dead_roots);
dc9492c1 1383 }
0b246afa 1384 spin_unlock(&fs_info->trans_lock);
5eda7b5e
CM
1385}
1386
d352ac68 1387/*
dfba78dc
FM
1388 * Update each subvolume root and its relocation root, if it exists, in the tree
1389 * of tree roots. Also free log roots if they exist.
d352ac68 1390 */
7e4443d9 1391static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
0f7d52f4 1392{
7e4443d9 1393 struct btrfs_fs_info *fs_info = trans->fs_info;
fc7cbcd4
DS
1394 struct btrfs_root *gang[8];
1395 int i;
1396 int ret;
54aa1f4d 1397
dfba78dc
FM
1398 /*
1399 * At this point no one can be using this transaction to modify any tree
1400 * and no one can start another transaction to modify any tree either.
1401 */
1402 ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING);
1403
fc7cbcd4
DS
1404 spin_lock(&fs_info->fs_roots_radix_lock);
1405 while (1) {
1406 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
1407 (void **)gang, 0,
1408 ARRAY_SIZE(gang),
1409 BTRFS_ROOT_TRANS_TAG);
1410 if (ret == 0)
1411 break;
1412 for (i = 0; i < ret; i++) {
1413 struct btrfs_root *root = gang[i];
1414 int ret2;
1415
1416 /*
1417 * At this point we can neither have tasks logging inodes
1418 * from a root nor trying to commit a log tree.
1419 */
1420 ASSERT(atomic_read(&root->log_writers) == 0);
1421 ASSERT(atomic_read(&root->log_commit[0]) == 0);
1422 ASSERT(atomic_read(&root->log_commit[1]) == 0);
1423
1424 radix_tree_tag_clear(&fs_info->fs_roots_radix,
1425 (unsigned long)root->root_key.objectid,
1426 BTRFS_ROOT_TRANS_TAG);
1427 spin_unlock(&fs_info->fs_roots_radix_lock);
1428
1429 btrfs_free_log(trans, root);
1430 ret2 = btrfs_update_reloc_root(trans, root);
1431 if (ret2)
1432 return ret2;
1433
1434 /* see comments in should_cow_block() */
1435 clear_bit(BTRFS_ROOT_FORCE_COW, &root->state);
1436 smp_mb__after_atomic();
1437
1438 if (root->commit_root != root->node) {
1439 list_add_tail(&root->dirty_list,
1440 &trans->transaction->switch_commits);
1441 btrfs_set_root_node(&root->root_item,
1442 root->node);
1443 }
48b36a60 1444
fc7cbcd4
DS
1445 ret2 = btrfs_update_root(trans, fs_info->tree_root,
1446 &root->root_key,
1447 &root->root_item);
1448 if (ret2)
1449 return ret2;
1450 spin_lock(&fs_info->fs_roots_radix_lock);
1451 btrfs_qgroup_free_meta_all_pertrans(root);
0f7d52f4
CM
1452 }
1453 }
fc7cbcd4 1454 spin_unlock(&fs_info->fs_roots_radix_lock);
4f4317c1 1455 return 0;
0f7d52f4
CM
1456}
1457
d352ac68 1458/*
de78b51a
ES
1459 * defrag a given btree.
1460 * Every leaf in the btree is read and defragged.
d352ac68 1461 */
de78b51a 1462int btrfs_defrag_root(struct btrfs_root *root)
e9d0b13b
CM
1463{
1464 struct btrfs_fs_info *info = root->fs_info;
e9d0b13b 1465 struct btrfs_trans_handle *trans;
8929ecfa 1466 int ret;
e9d0b13b 1467
27cdeb70 1468 if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state))
e9d0b13b 1469 return 0;
8929ecfa 1470
6b80053d 1471 while (1) {
8929ecfa 1472 trans = btrfs_start_transaction(root, 0);
6819703f
DS
1473 if (IS_ERR(trans)) {
1474 ret = PTR_ERR(trans);
1475 break;
1476 }
8929ecfa 1477
de78b51a 1478 ret = btrfs_defrag_leaves(trans, root);
8929ecfa 1479
3a45bb20 1480 btrfs_end_transaction(trans);
2ff7e61e 1481 btrfs_btree_balance_dirty(info);
e9d0b13b
CM
1482 cond_resched();
1483
ab8d0fc4 1484 if (btrfs_fs_closing(info) || ret != -EAGAIN)
e9d0b13b 1485 break;
210549eb 1486
ab8d0fc4
JM
1487 if (btrfs_defrag_cancelled(info)) {
1488 btrfs_debug(info, "defrag_root cancelled");
210549eb
DS
1489 ret = -EAGAIN;
1490 break;
1491 }
e9d0b13b 1492 }
27cdeb70 1493 clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state);
8929ecfa 1494 return ret;
e9d0b13b
CM
1495}
1496
6426c7ad
QW
1497/*
1498 * Do all special snapshot related qgroup dirty hack.
1499 *
1500 * Will do all needed qgroup inherit and dirty hack like switch commit
1501 * roots inside one transaction and write all btree into disk, to make
1502 * qgroup works.
1503 */
1504static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
1505 struct btrfs_root *src,
1506 struct btrfs_root *parent,
1507 struct btrfs_qgroup_inherit *inherit,
1508 u64 dst_objectid)
1509{
1510 struct btrfs_fs_info *fs_info = src->fs_info;
1511 int ret;
1512
1513 /*
1514 * Save some performance in the case that qgroups are not
1515 * enabled. If this check races with the ioctl, rescan will
1516 * kick in anyway.
1517 */
9ea6e2b5 1518 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags))
6426c7ad 1519 return 0;
6426c7ad 1520
4d31778a 1521 /*
52042d8e 1522 * Ensure dirty @src will be committed. Or, after coming
4d31778a
QW
1523 * commit_fs_roots() and switch_commit_roots(), any dirty but not
1524 * recorded root will never be updated again, causing an outdated root
1525 * item.
1526 */
1c442d22
JB
1527 ret = record_root_in_trans(trans, src, 1);
1528 if (ret)
1529 return ret;
4d31778a 1530
2a4d84c1
JB
1531 /*
1532 * btrfs_qgroup_inherit relies on a consistent view of the usage for the
1533 * src root, so we must run the delayed refs here.
1534 *
1535 * However this isn't particularly fool proof, because there's no
1536 * synchronization keeping us from changing the tree after this point
1537 * before we do the qgroup_inherit, or even from making changes while
1538 * we're doing the qgroup_inherit. But that's a problem for the future,
1539 * for now flush the delayed refs to narrow the race window where the
1540 * qgroup counters could end up wrong.
1541 */
1542 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
1543 if (ret) {
1544 btrfs_abort_transaction(trans, ret);
44365827 1545 return ret;
2a4d84c1
JB
1546 }
1547
7e4443d9 1548 ret = commit_fs_roots(trans);
6426c7ad
QW
1549 if (ret)
1550 goto out;
460fb20a 1551 ret = btrfs_qgroup_account_extents(trans);
6426c7ad
QW
1552 if (ret < 0)
1553 goto out;
1554
1555 /* Now qgroup are all updated, we can inherit it to new qgroups */
a9377422 1556 ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid,
6426c7ad
QW
1557 inherit);
1558 if (ret < 0)
1559 goto out;
1560
1561 /*
1562 * Now we do a simplified commit transaction, which will:
1563 * 1) commit all subvolume and extent tree
1564 * To ensure all subvolume and extent tree have a valid
1565 * commit_root to accounting later insert_dir_item()
1566 * 2) write all btree blocks onto disk
1567 * This is to make sure later btree modification will be cowed
1568 * Or commit_root can be populated and cause wrong qgroup numbers
1569 * In this simplified commit, we don't really care about other trees
1570 * like chunk and root tree, as they won't affect qgroup.
1571 * And we don't write super to avoid half committed status.
1572 */
9386d8bc 1573 ret = commit_cowonly_roots(trans);
6426c7ad
QW
1574 if (ret)
1575 goto out;
889bfa39 1576 switch_commit_roots(trans);
70458a58 1577 ret = btrfs_write_and_wait_transaction(trans);
6426c7ad 1578 if (ret)
f7af3934 1579 btrfs_handle_fs_error(fs_info, ret,
6426c7ad
QW
1580 "Error while writing out transaction for qgroup");
1581
1582out:
6426c7ad
QW
1583 /*
1584 * Force parent root to be updated, as we recorded it before so its
1585 * last_trans == cur_transid.
1586 * Or it won't be committed again onto disk after later
1587 * insert_dir_item()
1588 */
1589 if (!ret)
1c442d22 1590 ret = record_root_in_trans(trans, parent, 1);
6426c7ad
QW
1591 return ret;
1592}
1593
d352ac68
CM
1594/*
1595 * new snapshots need to be created at a very specific time in the
aec8030a
MX
1596 * transaction commit. This does the actual creation.
1597 *
1598 * Note:
1599 * If the error which may affect the commitment of the current transaction
1600 * happens, we should return the error number. If the error which just affect
1601 * the creation of the pending snapshots, just return 0.
d352ac68 1602 */
80b6794d 1603static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
1604 struct btrfs_pending_snapshot *pending)
1605{
08d50ca3
NB
1606
1607 struct btrfs_fs_info *fs_info = trans->fs_info;
3063d29f 1608 struct btrfs_key key;
80b6794d 1609 struct btrfs_root_item *new_root_item;
3063d29f
CM
1610 struct btrfs_root *tree_root = fs_info->tree_root;
1611 struct btrfs_root *root = pending->root;
6bdb72de 1612 struct btrfs_root *parent_root;
98c9942a 1613 struct btrfs_block_rsv *rsv;
6bdb72de 1614 struct inode *parent_inode;
42874b3d
MX
1615 struct btrfs_path *path;
1616 struct btrfs_dir_item *dir_item;
a22285a6 1617 struct dentry *dentry;
3063d29f 1618 struct extent_buffer *tmp;
925baedd 1619 struct extent_buffer *old;
95582b00 1620 struct timespec64 cur_time;
aec8030a 1621 int ret = 0;
d68fc57b 1622 u64 to_reserve = 0;
6bdb72de 1623 u64 index = 0;
a22285a6 1624 u64 objectid;
b83cc969 1625 u64 root_flags;
3063d29f 1626
8546b570
DS
1627 ASSERT(pending->path);
1628 path = pending->path;
42874b3d 1629
b0c0ea63
DS
1630 ASSERT(pending->root_item);
1631 new_root_item = pending->root_item;
a22285a6 1632
543068a2 1633 pending->error = btrfs_get_free_objectid(tree_root, &objectid);
aec8030a 1634 if (pending->error)
6fa9700e 1635 goto no_free_objectid;
3063d29f 1636
d6726335
QW
1637 /*
1638 * Make qgroup to skip current new snapshot's qgroupid, as it is
1639 * accounted by later btrfs_qgroup_inherit().
1640 */
1641 btrfs_set_skip_qgroup(trans, objectid);
1642
147d256e 1643 btrfs_reloc_pre_snapshot(pending, &to_reserve);
d68fc57b
YZ
1644
1645 if (to_reserve > 0) {
9270501c 1646 pending->error = btrfs_block_rsv_add(fs_info,
aec8030a
MX
1647 &pending->block_rsv,
1648 to_reserve,
1649 BTRFS_RESERVE_NO_FLUSH);
1650 if (pending->error)
d6726335 1651 goto clear_skip_qgroup;
d68fc57b
YZ
1652 }
1653
3063d29f 1654 key.objectid = objectid;
a22285a6
YZ
1655 key.offset = (u64)-1;
1656 key.type = BTRFS_ROOT_ITEM_KEY;
3063d29f 1657
6fa9700e 1658 rsv = trans->block_rsv;
a22285a6 1659 trans->block_rsv = &pending->block_rsv;
2382c5cc 1660 trans->bytes_reserved = trans->block_rsv->reserved;
0b246afa 1661 trace_btrfs_space_reservation(fs_info, "transaction",
88d3a5aa
JB
1662 trans->transid,
1663 trans->bytes_reserved, 1);
a22285a6 1664 dentry = pending->dentry;
e9662f70 1665 parent_inode = pending->dir;
a22285a6 1666 parent_root = BTRFS_I(parent_inode)->root;
f0118cb6
JB
1667 ret = record_root_in_trans(trans, parent_root, 0);
1668 if (ret)
1669 goto fail;
c2050a45 1670 cur_time = current_time(parent_inode);
04b285f3 1671
3063d29f
CM
1672 /*
1673 * insert the directory item
1674 */
877574e2 1675 ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index);
49b25e05 1676 BUG_ON(ret); /* -ENOMEM */
42874b3d
MX
1677
1678 /* check if there is a file/dir which has the same name. */
1679 dir_item = btrfs_lookup_dir_item(NULL, parent_root, path,
4a0cc7ca 1680 btrfs_ino(BTRFS_I(parent_inode)),
42874b3d
MX
1681 dentry->d_name.name,
1682 dentry->d_name.len, 0);
1683 if (dir_item != NULL && !IS_ERR(dir_item)) {
fe66a05a 1684 pending->error = -EEXIST;
aec8030a 1685 goto dir_item_existed;
42874b3d
MX
1686 } else if (IS_ERR(dir_item)) {
1687 ret = PTR_ERR(dir_item);
66642832 1688 btrfs_abort_transaction(trans, ret);
8732d44f 1689 goto fail;
79787eaa 1690 }
42874b3d 1691 btrfs_release_path(path);
52c26179 1692
e999376f
CM
1693 /*
1694 * pull in the delayed directory update
1695 * and the delayed inode item
1696 * otherwise we corrupt the FS during
1697 * snapshot
1698 */
e5c304e6 1699 ret = btrfs_run_delayed_items(trans);
8732d44f 1700 if (ret) { /* Transaction aborted */
66642832 1701 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1702 goto fail;
1703 }
e999376f 1704
f0118cb6
JB
1705 ret = record_root_in_trans(trans, root, 0);
1706 if (ret) {
1707 btrfs_abort_transaction(trans, ret);
1708 goto fail;
1709 }
6bdb72de
SW
1710 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
1711 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
08fe4db1 1712 btrfs_check_and_init_root_item(new_root_item);
6bdb72de 1713
b83cc969
LZ
1714 root_flags = btrfs_root_flags(new_root_item);
1715 if (pending->readonly)
1716 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
1717 else
1718 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
1719 btrfs_set_root_flags(new_root_item, root_flags);
1720
8ea05e3a
AB
1721 btrfs_set_root_generation_v2(new_root_item,
1722 trans->transid);
807fc790 1723 generate_random_guid(new_root_item->uuid);
8ea05e3a
AB
1724 memcpy(new_root_item->parent_uuid, root->root_item.uuid,
1725 BTRFS_UUID_SIZE);
70023da2
SB
1726 if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) {
1727 memset(new_root_item->received_uuid, 0,
1728 sizeof(new_root_item->received_uuid));
1729 memset(&new_root_item->stime, 0, sizeof(new_root_item->stime));
1730 memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime));
1731 btrfs_set_root_stransid(new_root_item, 0);
1732 btrfs_set_root_rtransid(new_root_item, 0);
1733 }
3cae210f
QW
1734 btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec);
1735 btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec);
8ea05e3a 1736 btrfs_set_root_otransid(new_root_item, trans->transid);
8ea05e3a 1737
6bdb72de 1738 old = btrfs_lock_root_node(root);
9631e4cc
JB
1739 ret = btrfs_cow_block(trans, root, old, NULL, 0, &old,
1740 BTRFS_NESTING_COW);
79787eaa
JM
1741 if (ret) {
1742 btrfs_tree_unlock(old);
1743 free_extent_buffer(old);
66642832 1744 btrfs_abort_transaction(trans, ret);
8732d44f 1745 goto fail;
79787eaa 1746 }
49b25e05 1747
49b25e05 1748 ret = btrfs_copy_root(trans, root, old, &tmp, objectid);
79787eaa 1749 /* clean up in any case */
6bdb72de
SW
1750 btrfs_tree_unlock(old);
1751 free_extent_buffer(old);
8732d44f 1752 if (ret) {
66642832 1753 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1754 goto fail;
1755 }
f1ebcc74 1756 /* see comments in should_cow_block() */
27cdeb70 1757 set_bit(BTRFS_ROOT_FORCE_COW, &root->state);
f1ebcc74
LB
1758 smp_wmb();
1759
6bdb72de 1760 btrfs_set_root_node(new_root_item, tmp);
a22285a6
YZ
1761 /* record when the snapshot was created in key.offset */
1762 key.offset = trans->transid;
1763 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
6bdb72de
SW
1764 btrfs_tree_unlock(tmp);
1765 free_extent_buffer(tmp);
8732d44f 1766 if (ret) {
66642832 1767 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1768 goto fail;
1769 }
6bdb72de 1770
a22285a6
YZ
1771 /*
1772 * insert root back/forward references
1773 */
6025c19f 1774 ret = btrfs_add_root_ref(trans, objectid,
0660b5af 1775 parent_root->root_key.objectid,
4a0cc7ca 1776 btrfs_ino(BTRFS_I(parent_inode)), index,
a22285a6 1777 dentry->d_name.name, dentry->d_name.len);
8732d44f 1778 if (ret) {
66642832 1779 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1780 goto fail;
1781 }
0660b5af 1782
a22285a6 1783 key.offset = (u64)-1;
2dfb1e43 1784 pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev);
79787eaa
JM
1785 if (IS_ERR(pending->snap)) {
1786 ret = PTR_ERR(pending->snap);
2d892ccd 1787 pending->snap = NULL;
66642832 1788 btrfs_abort_transaction(trans, ret);
8732d44f 1789 goto fail;
79787eaa 1790 }
d68fc57b 1791
49b25e05 1792 ret = btrfs_reloc_post_snapshot(trans, pending);
8732d44f 1793 if (ret) {
66642832 1794 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1795 goto fail;
1796 }
361048f5 1797
6426c7ad
QW
1798 /*
1799 * Do special qgroup accounting for snapshot, as we do some qgroup
1800 * snapshot hack to do fast snapshot.
1801 * To co-operate with that hack, we do hack again.
1802 * Or snapshot will be greatly slowed down by a subtree qgroup rescan
1803 */
1804 ret = qgroup_account_snapshot(trans, root, parent_root,
1805 pending->inherit, objectid);
1806 if (ret < 0)
1807 goto fail;
1808
684572df
LF
1809 ret = btrfs_insert_dir_item(trans, dentry->d_name.name,
1810 dentry->d_name.len, BTRFS_I(parent_inode),
1811 &key, BTRFS_FT_DIR, index);
42874b3d 1812 /* We have check then name at the beginning, so it is impossible. */
9c52057c 1813 BUG_ON(ret == -EEXIST || ret == -EOVERFLOW);
8732d44f 1814 if (ret) {
66642832 1815 btrfs_abort_transaction(trans, ret);
8732d44f
MX
1816 goto fail;
1817 }
42874b3d 1818
6ef06d27 1819 btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size +
42874b3d 1820 dentry->d_name.len * 2);
c1867eb3
DS
1821 parent_inode->i_mtime = current_time(parent_inode);
1822 parent_inode->i_ctime = parent_inode->i_mtime;
729f7961 1823 ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode));
dd5f9615 1824 if (ret) {
66642832 1825 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1826 goto fail;
1827 }
807fc790
AS
1828 ret = btrfs_uuid_tree_add(trans, new_root_item->uuid,
1829 BTRFS_UUID_KEY_SUBVOL,
cdb345a8 1830 objectid);
dd5f9615 1831 if (ret) {
66642832 1832 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1833 goto fail;
1834 }
1835 if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) {
cdb345a8 1836 ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid,
dd5f9615
SB
1837 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
1838 objectid);
1839 if (ret && ret != -EEXIST) {
66642832 1840 btrfs_abort_transaction(trans, ret);
dd5f9615
SB
1841 goto fail;
1842 }
1843 }
d6726335 1844
3063d29f 1845fail:
aec8030a
MX
1846 pending->error = ret;
1847dir_item_existed:
98c9942a 1848 trans->block_rsv = rsv;
2382c5cc 1849 trans->bytes_reserved = 0;
d6726335
QW
1850clear_skip_qgroup:
1851 btrfs_clear_skip_qgroup(trans);
6fa9700e
MX
1852no_free_objectid:
1853 kfree(new_root_item);
b0c0ea63 1854 pending->root_item = NULL;
42874b3d 1855 btrfs_free_path(path);
8546b570
DS
1856 pending->path = NULL;
1857
49b25e05 1858 return ret;
3063d29f
CM
1859}
1860
d352ac68
CM
1861/*
1862 * create all the snapshots we've scheduled for creation
1863 */
08d50ca3 1864static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans)
3de4586c 1865{
aec8030a 1866 struct btrfs_pending_snapshot *pending, *next;
3de4586c 1867 struct list_head *head = &trans->transaction->pending_snapshots;
aec8030a 1868 int ret = 0;
3de4586c 1869
aec8030a
MX
1870 list_for_each_entry_safe(pending, next, head, list) {
1871 list_del(&pending->list);
08d50ca3 1872 ret = create_pending_snapshot(trans, pending);
aec8030a
MX
1873 if (ret)
1874 break;
1875 }
1876 return ret;
3de4586c
CM
1877}
1878
2ff7e61e 1879static void update_super_roots(struct btrfs_fs_info *fs_info)
5d4f98a2
YZ
1880{
1881 struct btrfs_root_item *root_item;
1882 struct btrfs_super_block *super;
1883
0b246afa 1884 super = fs_info->super_copy;
5d4f98a2 1885
0b246afa 1886 root_item = &fs_info->chunk_root->root_item;
093e037c
DS
1887 super->chunk_root = root_item->bytenr;
1888 super->chunk_root_generation = root_item->generation;
1889 super->chunk_root_level = root_item->level;
5d4f98a2 1890
0b246afa 1891 root_item = &fs_info->tree_root->root_item;
093e037c
DS
1892 super->root = root_item->bytenr;
1893 super->generation = root_item->generation;
1894 super->root_level = root_item->level;
0b246afa 1895 if (btrfs_test_opt(fs_info, SPACE_CACHE))
093e037c 1896 super->cache_generation = root_item->generation;
94846229
BB
1897 else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags))
1898 super->cache_generation = 0;
0b246afa 1899 if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))
093e037c 1900 super->uuid_tree_generation = root_item->generation;
5d4f98a2
YZ
1901}
1902
f36f3042
CM
1903int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1904{
4a9d8bde 1905 struct btrfs_transaction *trans;
f36f3042 1906 int ret = 0;
4a9d8bde 1907
a4abeea4 1908 spin_lock(&info->trans_lock);
4a9d8bde
MX
1909 trans = info->running_transaction;
1910 if (trans)
1911 ret = (trans->state >= TRANS_STATE_COMMIT_START);
a4abeea4 1912 spin_unlock(&info->trans_lock);
f36f3042
CM
1913 return ret;
1914}
1915
8929ecfa
YZ
1916int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1917{
4a9d8bde 1918 struct btrfs_transaction *trans;
8929ecfa 1919 int ret = 0;
4a9d8bde 1920
a4abeea4 1921 spin_lock(&info->trans_lock);
4a9d8bde
MX
1922 trans = info->running_transaction;
1923 if (trans)
1924 ret = is_transaction_blocked(trans);
a4abeea4 1925 spin_unlock(&info->trans_lock);
8929ecfa
YZ
1926 return ret;
1927}
1928
fdfbf020 1929void btrfs_commit_transaction_async(struct btrfs_trans_handle *trans)
bb9c12c9 1930{
3a45bb20 1931 struct btrfs_fs_info *fs_info = trans->fs_info;
bb9c12c9
SW
1932 struct btrfs_transaction *cur_trans;
1933
fdfbf020
JB
1934 /* Kick the transaction kthread. */
1935 set_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags);
1936 wake_up_process(fs_info->transaction_kthread);
bb9c12c9
SW
1937
1938 /* take transaction reference */
bb9c12c9 1939 cur_trans = trans->transaction;
9b64f57d 1940 refcount_inc(&cur_trans->use_count);
bb9c12c9 1941
3a45bb20 1942 btrfs_end_transaction(trans);
6fc4e354 1943
ae5d29d4
DS
1944 /*
1945 * Wait for the current transaction commit to start and block
1946 * subsequent transaction joins
1947 */
3e738c53 1948 btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
ae5d29d4
DS
1949 wait_event(fs_info->transaction_blocked_wait,
1950 cur_trans->state >= TRANS_STATE_COMMIT_START ||
1951 TRANS_ABORTED(cur_trans));
724e2315 1952 btrfs_put_transaction(cur_trans);
bb9c12c9
SW
1953}
1954
97cb39bb 1955static void cleanup_transaction(struct btrfs_trans_handle *trans, int err)
49b25e05 1956{
97cb39bb 1957 struct btrfs_fs_info *fs_info = trans->fs_info;
49b25e05
JM
1958 struct btrfs_transaction *cur_trans = trans->transaction;
1959
b50fff81 1960 WARN_ON(refcount_read(&trans->use_count) > 1);
49b25e05 1961
66642832 1962 btrfs_abort_transaction(trans, err);
7b8b92af 1963
0b246afa 1964 spin_lock(&fs_info->trans_lock);
66b6135b 1965
25d8c284
MX
1966 /*
1967 * If the transaction is removed from the list, it means this
1968 * transaction has been committed successfully, so it is impossible
1969 * to call the cleanup function.
1970 */
1971 BUG_ON(list_empty(&cur_trans->list));
66b6135b 1972
0b246afa 1973 if (cur_trans == fs_info->running_transaction) {
4a9d8bde 1974 cur_trans->state = TRANS_STATE_COMMIT_DOING;
0b246afa 1975 spin_unlock(&fs_info->trans_lock);
e1489b4f
IA
1976
1977 /*
1978 * The thread has already released the lockdep map as reader
1979 * already in btrfs_commit_transaction().
1980 */
1981 btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers);
f094ac32
LB
1982 wait_event(cur_trans->writer_wait,
1983 atomic_read(&cur_trans->num_writers) == 1);
1984
0b246afa 1985 spin_lock(&fs_info->trans_lock);
d7096fc3 1986 }
061dde82
FM
1987
1988 /*
1989 * Now that we know no one else is still using the transaction we can
1990 * remove the transaction from the list of transactions. This avoids
1991 * the transaction kthread from cleaning up the transaction while some
1992 * other task is still using it, which could result in a use-after-free
1993 * on things like log trees, as it forces the transaction kthread to
1994 * wait for this transaction to be cleaned up by us.
1995 */
1996 list_del_init(&cur_trans->list);
1997
0b246afa 1998 spin_unlock(&fs_info->trans_lock);
49b25e05 1999
2ff7e61e 2000 btrfs_cleanup_one_transaction(trans->transaction, fs_info);
49b25e05 2001
0b246afa
JM
2002 spin_lock(&fs_info->trans_lock);
2003 if (cur_trans == fs_info->running_transaction)
2004 fs_info->running_transaction = NULL;
2005 spin_unlock(&fs_info->trans_lock);
4a9d8bde 2006
e0228285 2007 if (trans->type & __TRANS_FREEZABLE)
0b246afa 2008 sb_end_intwrite(fs_info->sb);
724e2315
JB
2009 btrfs_put_transaction(cur_trans);
2010 btrfs_put_transaction(cur_trans);
49b25e05 2011
2e4e97ab 2012 trace_btrfs_transaction_commit(fs_info);
49b25e05 2013
49b25e05
JM
2014 if (current->journal_info == trans)
2015 current->journal_info = NULL;
0b246afa 2016 btrfs_scrub_cancel(fs_info);
49b25e05
JM
2017
2018 kmem_cache_free(btrfs_trans_handle_cachep, trans);
2019}
2020
c7cc64a9
DS
2021/*
2022 * Release reserved delayed ref space of all pending block groups of the
2023 * transaction and remove them from the list
2024 */
2025static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans)
2026{
2027 struct btrfs_fs_info *fs_info = trans->fs_info;
32da5386 2028 struct btrfs_block_group *block_group, *tmp;
c7cc64a9
DS
2029
2030 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
2031 btrfs_delayed_refs_rsv_release(fs_info, 1);
2032 list_del_init(&block_group->bg_list);
2033 }
2034}
2035
88090ad3 2036static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info)
82436617 2037{
ce8ea7cc 2038 /*
a0f0cf83 2039 * We use try_to_writeback_inodes_sb() here because if we used
ce8ea7cc
JB
2040 * btrfs_start_delalloc_roots we would deadlock with fs freeze.
2041 * Currently are holding the fs freeze lock, if we do an async flush
2042 * we'll do btrfs_join_transaction() and deadlock because we need to
2043 * wait for the fs freeze lock. Using the direct flushing we benefit
2044 * from already being in a transaction and our join_transaction doesn't
2045 * have to re-take the fs freeze lock.
a0f0cf83
FM
2046 *
2047 * Note that try_to_writeback_inodes_sb() will only trigger writeback
2048 * if it can read lock sb->s_umount. It will always be able to lock it,
2049 * except when the filesystem is being unmounted or being frozen, but in
2050 * those cases sync_filesystem() is called, which results in calling
2051 * writeback_inodes_sb() while holding a write lock on sb->s_umount.
2052 * Note that we don't call writeback_inodes_sb() directly, because it
2053 * will emit a warning if sb->s_umount is not locked.
ce8ea7cc 2054 */
88090ad3 2055 if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
a0f0cf83 2056 try_to_writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC);
82436617
MX
2057 return 0;
2058}
2059
88090ad3 2060static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info)
82436617 2061{
88090ad3 2062 if (btrfs_test_opt(fs_info, FLUSHONCOMMIT))
6374e57a 2063 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
82436617
MX
2064}
2065
28b21c55
FM
2066/*
2067 * Add a pending snapshot associated with the given transaction handle to the
2068 * respective handle. This must be called after the transaction commit started
2069 * and while holding fs_info->trans_lock.
2070 * This serves to guarantee a caller of btrfs_commit_transaction() that it can
2071 * safely free the pending snapshot pointer in case btrfs_commit_transaction()
2072 * returns an error.
2073 */
2074static void add_pending_snapshot(struct btrfs_trans_handle *trans)
2075{
2076 struct btrfs_transaction *cur_trans = trans->transaction;
2077
2078 if (!trans->pending_snapshot)
2079 return;
2080
2081 lockdep_assert_held(&trans->fs_info->trans_lock);
2082 ASSERT(cur_trans->state >= TRANS_STATE_COMMIT_START);
2083
2084 list_add(&trans->pending_snapshot->list, &cur_trans->pending_snapshots);
2085}
2086
e55958c8
IA
2087static void update_commit_stats(struct btrfs_fs_info *fs_info, ktime_t interval)
2088{
2089 fs_info->commit_stats.commit_count++;
2090 fs_info->commit_stats.last_commit_dur = interval;
2091 fs_info->commit_stats.max_commit_dur =
2092 max_t(u64, fs_info->commit_stats.max_commit_dur, interval);
2093 fs_info->commit_stats.total_commit_dur += interval;
2094}
2095
3a45bb20 2096int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
79154b1b 2097{
3a45bb20 2098 struct btrfs_fs_info *fs_info = trans->fs_info;
49b25e05 2099 struct btrfs_transaction *cur_trans = trans->transaction;
8fd17795 2100 struct btrfs_transaction *prev_trans = NULL;
25287e0a 2101 int ret;
e55958c8
IA
2102 ktime_t start_time;
2103 ktime_t interval;
79154b1b 2104
35b814f3 2105 ASSERT(refcount_read(&trans->use_count) == 1);
3e738c53 2106 btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
35b814f3 2107
c52cc7b7
JB
2108 clear_bit(BTRFS_FS_NEED_TRANS_COMMIT, &fs_info->flags);
2109
8d25a086 2110 /* Stop the commit early if ->aborted is set */
bf31f87f 2111 if (TRANS_ABORTED(cur_trans)) {
25287e0a 2112 ret = cur_trans->aborted;
3e738c53 2113 goto lockdep_trans_commit_start_release;
25287e0a 2114 }
49b25e05 2115
f45c752b
JB
2116 btrfs_trans_release_metadata(trans);
2117 trans->block_rsv = NULL;
2118
56bec294 2119 /*
e19eb11f
JB
2120 * We only want one transaction commit doing the flushing so we do not
2121 * waste a bunch of time on lock contention on the extent root node.
56bec294 2122 */
e19eb11f
JB
2123 if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING,
2124 &cur_trans->delayed_refs.flags)) {
2125 /*
2126 * Make a pass through all the delayed refs we have so far.
2127 * Any running threads may add more while we are here.
2128 */
2129 ret = btrfs_run_delayed_refs(trans, 0);
3e738c53
IA
2130 if (ret)
2131 goto lockdep_trans_commit_start_release;
e19eb11f 2132 }
56bec294 2133
119e80df 2134 btrfs_create_pending_block_groups(trans);
ea658bad 2135
3204d33c 2136 if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) {
1bbc621e
CM
2137 int run_it = 0;
2138
2139 /* this mutex is also taken before trying to set
2140 * block groups readonly. We need to make sure
2141 * that nobody has set a block group readonly
2142 * after a extents from that block group have been
2143 * allocated for cache files. btrfs_set_block_group_ro
2144 * will wait for the transaction to commit if it
3204d33c 2145 * finds BTRFS_TRANS_DIRTY_BG_RUN set.
1bbc621e 2146 *
3204d33c
JB
2147 * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure
2148 * only one process starts all the block group IO. It wouldn't
1bbc621e
CM
2149 * hurt to have more than one go through, but there's no
2150 * real advantage to it either.
2151 */
0b246afa 2152 mutex_lock(&fs_info->ro_block_group_mutex);
3204d33c
JB
2153 if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN,
2154 &cur_trans->flags))
1bbc621e 2155 run_it = 1;
0b246afa 2156 mutex_unlock(&fs_info->ro_block_group_mutex);
1bbc621e 2157
f9cacae3 2158 if (run_it) {
21217054 2159 ret = btrfs_start_dirty_block_groups(trans);
3e738c53
IA
2160 if (ret)
2161 goto lockdep_trans_commit_start_release;
f9cacae3 2162 }
1bbc621e
CM
2163 }
2164
0b246afa 2165 spin_lock(&fs_info->trans_lock);
4a9d8bde 2166 if (cur_trans->state >= TRANS_STATE_COMMIT_START) {
d0c2f4fa
FM
2167 enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2168
28b21c55
FM
2169 add_pending_snapshot(trans);
2170
0b246afa 2171 spin_unlock(&fs_info->trans_lock);
9b64f57d 2172 refcount_inc(&cur_trans->use_count);
ccd467d6 2173
d0c2f4fa
FM
2174 if (trans->in_fsync)
2175 want_state = TRANS_STATE_SUPER_COMMITTED;
3e738c53
IA
2176
2177 btrfs_trans_state_lockdep_release(fs_info,
2178 BTRFS_LOCKDEP_TRANS_COMMIT_START);
d0c2f4fa
FM
2179 ret = btrfs_end_transaction(trans);
2180 wait_for_commit(cur_trans, want_state);
15ee9bc7 2181
bf31f87f 2182 if (TRANS_ABORTED(cur_trans))
b4924a0f
LB
2183 ret = cur_trans->aborted;
2184
724e2315 2185 btrfs_put_transaction(cur_trans);
15ee9bc7 2186
49b25e05 2187 return ret;
79154b1b 2188 }
4313b399 2189
4a9d8bde 2190 cur_trans->state = TRANS_STATE_COMMIT_START;
0b246afa 2191 wake_up(&fs_info->transaction_blocked_wait);
3e738c53 2192 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
bb9c12c9 2193
0b246afa 2194 if (cur_trans->list.prev != &fs_info->trans_list) {
d0c2f4fa
FM
2195 enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED;
2196
2197 if (trans->in_fsync)
2198 want_state = TRANS_STATE_SUPER_COMMITTED;
2199
ccd467d6
CM
2200 prev_trans = list_entry(cur_trans->list.prev,
2201 struct btrfs_transaction, list);
d0c2f4fa 2202 if (prev_trans->state < want_state) {
9b64f57d 2203 refcount_inc(&prev_trans->use_count);
0b246afa 2204 spin_unlock(&fs_info->trans_lock);
ccd467d6 2205
d0c2f4fa
FM
2206 wait_for_commit(prev_trans, want_state);
2207
bf31f87f 2208 ret = READ_ONCE(prev_trans->aborted);
ccd467d6 2209
724e2315 2210 btrfs_put_transaction(prev_trans);
1f9b8c8f 2211 if (ret)
e1489b4f 2212 goto lockdep_release;
a4abeea4 2213 } else {
0b246afa 2214 spin_unlock(&fs_info->trans_lock);
ccd467d6 2215 }
a4abeea4 2216 } else {
0b246afa 2217 spin_unlock(&fs_info->trans_lock);
cb2d3dad
FM
2218 /*
2219 * The previous transaction was aborted and was already removed
2220 * from the list of transactions at fs_info->trans_list. So we
2221 * abort to prevent writing a new superblock that reflects a
2222 * corrupt state (pointing to trees with unwritten nodes/leafs).
2223 */
84961539 2224 if (BTRFS_FS_ERROR(fs_info)) {
cb2d3dad 2225 ret = -EROFS;
e1489b4f 2226 goto lockdep_release;
cb2d3dad 2227 }
ccd467d6 2228 }
15ee9bc7 2229
e55958c8
IA
2230 /*
2231 * Get the time spent on the work done by the commit thread and not
2232 * the time spent waiting on a previous commit
2233 */
2234 start_time = ktime_get_ns();
2235
0860adfd
MX
2236 extwriter_counter_dec(cur_trans, trans->type);
2237
88090ad3 2238 ret = btrfs_start_delalloc_flush(fs_info);
82436617 2239 if (ret)
e1489b4f 2240 goto lockdep_release;
82436617 2241
e5c304e6 2242 ret = btrfs_run_delayed_items(trans);
581227d0 2243 if (ret)
e1489b4f 2244 goto lockdep_release;
15ee9bc7 2245
5a9ba670
IA
2246 /*
2247 * The thread has started/joined the transaction thus it holds the
2248 * lockdep map as a reader. It has to release it before acquiring the
2249 * lockdep map as a writer.
2250 */
2251 btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
2252 btrfs_might_wait_for_event(fs_info, btrfs_trans_num_extwriters);
581227d0
MX
2253 wait_event(cur_trans->writer_wait,
2254 extwriter_counter_read(cur_trans) == 0);
15ee9bc7 2255
581227d0 2256 /* some pending stuffs might be added after the previous flush. */
e5c304e6 2257 ret = btrfs_run_delayed_items(trans);
e1489b4f
IA
2258 if (ret) {
2259 btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
ca469637 2260 goto cleanup_transaction;
e1489b4f 2261 }
ca469637 2262
88090ad3 2263 btrfs_wait_delalloc_flush(fs_info);
cb7ab021 2264
48778179
FM
2265 /*
2266 * Wait for all ordered extents started by a fast fsync that joined this
2267 * transaction. Otherwise if this transaction commits before the ordered
2268 * extents complete we lose logged data after a power failure.
2269 */
8b53779e 2270 btrfs_might_wait_for_event(fs_info, btrfs_trans_pending_ordered);
48778179
FM
2271 wait_event(cur_trans->pending_wait,
2272 atomic_read(&cur_trans->pending_ordered) == 0);
2273
2ff7e61e 2274 btrfs_scrub_pause(fs_info);
ed0ca140
JB
2275 /*
2276 * Ok now we need to make sure to block out any other joins while we
2277 * commit the transaction. We could have started a join before setting
4a9d8bde 2278 * COMMIT_DOING so make sure to wait for num_writers to == 1 again.
ed0ca140 2279 */
0b246afa 2280 spin_lock(&fs_info->trans_lock);
28b21c55 2281 add_pending_snapshot(trans);
4a9d8bde 2282 cur_trans->state = TRANS_STATE_COMMIT_DOING;
0b246afa 2283 spin_unlock(&fs_info->trans_lock);
e1489b4f
IA
2284
2285 /*
2286 * The thread has started/joined the transaction thus it holds the
2287 * lockdep map as a reader. It has to release it before acquiring the
2288 * lockdep map as a writer.
2289 */
2290 btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
2291 btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers);
ed0ca140
JB
2292 wait_event(cur_trans->writer_wait,
2293 atomic_read(&cur_trans->num_writers) == 1);
2294
3e738c53
IA
2295 /*
2296 * Make lockdep happy by acquiring the state locks after
2297 * btrfs_trans_num_writers is released. If we acquired the state locks
2298 * before releasing the btrfs_trans_num_writers lock then lockdep would
2299 * complain because we did not follow the reverse order unlocking rule.
2300 */
2301 btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
2302 btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
2303 btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
2304
fdfbf020
JB
2305 /*
2306 * We've started the commit, clear the flag in case we were triggered to
2307 * do an async commit but somebody else started before the transaction
2308 * kthread could do the work.
2309 */
2310 clear_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags);
2311
bf31f87f 2312 if (TRANS_ABORTED(cur_trans)) {
2cba30f1 2313 ret = cur_trans->aborted;
3e738c53 2314 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
6cf7f77e 2315 goto scrub_continue;
2cba30f1 2316 }
7585717f
CM
2317 /*
2318 * the reloc mutex makes sure that we stop
2319 * the balancing code from coming in and moving
2320 * extents around in the middle of the commit
2321 */
0b246afa 2322 mutex_lock(&fs_info->reloc_mutex);
7585717f 2323
42874b3d
MX
2324 /*
2325 * We needn't worry about the delayed items because we will
2326 * deal with them in create_pending_snapshot(), which is the
2327 * core function of the snapshot creation.
2328 */
08d50ca3 2329 ret = create_pending_snapshots(trans);
56e9f6ea
DS
2330 if (ret)
2331 goto unlock_reloc;
3063d29f 2332
42874b3d
MX
2333 /*
2334 * We insert the dir indexes of the snapshots and update the inode
2335 * of the snapshots' parents after the snapshot creation, so there
2336 * are some delayed items which are not dealt with. Now deal with
2337 * them.
2338 *
2339 * We needn't worry that this operation will corrupt the snapshots,
2340 * because all the tree which are snapshoted will be forced to COW
2341 * the nodes and leaves.
2342 */
e5c304e6 2343 ret = btrfs_run_delayed_items(trans);
56e9f6ea
DS
2344 if (ret)
2345 goto unlock_reloc;
16cdcec7 2346
c79a70b1 2347 ret = btrfs_run_delayed_refs(trans, (unsigned long)-1);
56e9f6ea
DS
2348 if (ret)
2349 goto unlock_reloc;
56bec294 2350
e999376f
CM
2351 /*
2352 * make sure none of the code above managed to slip in a
2353 * delayed item
2354 */
ccdf9b30 2355 btrfs_assert_delayed_root_empty(fs_info);
e999376f 2356
2c90e5d6 2357 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 2358
7e4443d9 2359 ret = commit_fs_roots(trans);
56e9f6ea 2360 if (ret)
dfba78dc 2361 goto unlock_reloc;
54aa1f4d 2362
5d4f98a2 2363 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
2364 * safe to free the root of tree log roots
2365 */
0b246afa 2366 btrfs_free_log_root_tree(trans, fs_info);
e02119d5 2367
0ed4792a
QW
2368 /*
2369 * Since fs roots are all committed, we can get a quite accurate
2370 * new_roots. So let's do quota accounting.
2371 */
460fb20a 2372 ret = btrfs_qgroup_account_extents(trans);
56e9f6ea 2373 if (ret < 0)
dfba78dc 2374 goto unlock_reloc;
0ed4792a 2375
9386d8bc 2376 ret = commit_cowonly_roots(trans);
56e9f6ea 2377 if (ret)
dfba78dc 2378 goto unlock_reloc;
54aa1f4d 2379
2cba30f1
MX
2380 /*
2381 * The tasks which save the space cache and inode cache may also
2382 * update ->aborted, check it.
2383 */
bf31f87f 2384 if (TRANS_ABORTED(cur_trans)) {
2cba30f1 2385 ret = cur_trans->aborted;
dfba78dc 2386 goto unlock_reloc;
2cba30f1
MX
2387 }
2388
0b246afa 2389 cur_trans = fs_info->running_transaction;
5d4f98a2 2390
0b246afa
JM
2391 btrfs_set_root_node(&fs_info->tree_root->root_item,
2392 fs_info->tree_root->node);
2393 list_add_tail(&fs_info->tree_root->dirty_list,
9e351cc8 2394 &cur_trans->switch_commits);
5d4f98a2 2395
0b246afa
JM
2396 btrfs_set_root_node(&fs_info->chunk_root->root_item,
2397 fs_info->chunk_root->node);
2398 list_add_tail(&fs_info->chunk_root->dirty_list,
9e351cc8
JB
2399 &cur_trans->switch_commits);
2400
f7238e50
JB
2401 if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) {
2402 btrfs_set_root_node(&fs_info->block_group_root->root_item,
2403 fs_info->block_group_root->node);
2404 list_add_tail(&fs_info->block_group_root->dirty_list,
2405 &cur_trans->switch_commits);
2406 }
2407
889bfa39 2408 switch_commit_roots(trans);
5d4f98a2 2409
ce93ec54 2410 ASSERT(list_empty(&cur_trans->dirty_bgs));
1bbc621e 2411 ASSERT(list_empty(&cur_trans->io_bgs));
2ff7e61e 2412 update_super_roots(fs_info);
e02119d5 2413
0b246afa
JM
2414 btrfs_set_super_log_root(fs_info->super_copy, 0);
2415 btrfs_set_super_log_root_level(fs_info->super_copy, 0);
2416 memcpy(fs_info->super_for_commit, fs_info->super_copy,
2417 sizeof(*fs_info->super_copy));
ccd467d6 2418
bbbf7243 2419 btrfs_commit_device_sizes(cur_trans);
935e5cc9 2420
0b246afa
JM
2421 clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags);
2422 clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags);
656f30db 2423
4fbcdf66
FM
2424 btrfs_trans_release_chunk_metadata(trans);
2425
dfba78dc
FM
2426 /*
2427 * Before changing the transaction state to TRANS_STATE_UNBLOCKED and
2428 * setting fs_info->running_transaction to NULL, lock tree_log_mutex to
2429 * make sure that before we commit our superblock, no other task can
2430 * start a new transaction and commit a log tree before we commit our
2431 * superblock. Anyone trying to commit a log tree locks this mutex before
2432 * writing its superblock.
2433 */
2434 mutex_lock(&fs_info->tree_log_mutex);
2435
0b246afa 2436 spin_lock(&fs_info->trans_lock);
4a9d8bde 2437 cur_trans->state = TRANS_STATE_UNBLOCKED;
0b246afa
JM
2438 fs_info->running_transaction = NULL;
2439 spin_unlock(&fs_info->trans_lock);
2440 mutex_unlock(&fs_info->reloc_mutex);
b7ec40d7 2441
0b246afa 2442 wake_up(&fs_info->transaction_wait);
3e738c53 2443 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
e6dcd2dc 2444
70458a58 2445 ret = btrfs_write_and_wait_transaction(trans);
49b25e05 2446 if (ret) {
0b246afa
JM
2447 btrfs_handle_fs_error(fs_info, ret,
2448 "Error while writing out transaction");
2449 mutex_unlock(&fs_info->tree_log_mutex);
6cf7f77e 2450 goto scrub_continue;
49b25e05
JM
2451 }
2452
d3575156
NA
2453 /*
2454 * At this point, we should have written all the tree blocks allocated
2455 * in this transaction. So it's now safe to free the redirtyied extent
2456 * buffers.
2457 */
2458 btrfs_free_redirty_list(cur_trans);
2459
eece6a9c 2460 ret = write_all_supers(fs_info, 0);
e02119d5
CM
2461 /*
2462 * the super is written, we can safely allow the tree-loggers
2463 * to go about their business
2464 */
0b246afa 2465 mutex_unlock(&fs_info->tree_log_mutex);
c1f32b7c
AJ
2466 if (ret)
2467 goto scrub_continue;
e02119d5 2468
d0c2f4fa
FM
2469 /*
2470 * We needn't acquire the lock here because there is no other task
2471 * which can change it.
2472 */
2473 cur_trans->state = TRANS_STATE_SUPER_COMMITTED;
2474 wake_up(&cur_trans->commit_wait);
3e738c53 2475 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
d0c2f4fa 2476
5ead2dd0 2477 btrfs_finish_extent_commit(trans);
4313b399 2478
3204d33c 2479 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags))
0b246afa 2480 btrfs_clear_space_info_full(fs_info);
13212b54 2481
0b246afa 2482 fs_info->last_trans_committed = cur_trans->transid;
4a9d8bde
MX
2483 /*
2484 * We needn't acquire the lock here because there is no other task
2485 * which can change it.
2486 */
2487 cur_trans->state = TRANS_STATE_COMPLETED;
2c90e5d6 2488 wake_up(&cur_trans->commit_wait);
3e738c53 2489 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
3de4586c 2490
0b246afa 2491 spin_lock(&fs_info->trans_lock);
13c5a93e 2492 list_del_init(&cur_trans->list);
0b246afa 2493 spin_unlock(&fs_info->trans_lock);
a4abeea4 2494
724e2315
JB
2495 btrfs_put_transaction(cur_trans);
2496 btrfs_put_transaction(cur_trans);
58176a96 2497
0860adfd 2498 if (trans->type & __TRANS_FREEZABLE)
0b246afa 2499 sb_end_intwrite(fs_info->sb);
b2b5ef5c 2500
2e4e97ab 2501 trace_btrfs_transaction_commit(fs_info);
1abe9b8a 2502
e55958c8
IA
2503 interval = ktime_get_ns() - start_time;
2504
2ff7e61e 2505 btrfs_scrub_continue(fs_info);
a2de733c 2506
9ed74f2d
JB
2507 if (current->journal_info == trans)
2508 current->journal_info = NULL;
2509
2c90e5d6 2510 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04 2511
e55958c8
IA
2512 update_commit_stats(fs_info, interval);
2513
79154b1b 2514 return ret;
49b25e05 2515
56e9f6ea
DS
2516unlock_reloc:
2517 mutex_unlock(&fs_info->reloc_mutex);
3e738c53 2518 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED);
6cf7f77e 2519scrub_continue:
3e738c53
IA
2520 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED);
2521 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED);
2ff7e61e 2522 btrfs_scrub_continue(fs_info);
49b25e05 2523cleanup_transaction:
dc60c525 2524 btrfs_trans_release_metadata(trans);
c7cc64a9 2525 btrfs_cleanup_pending_block_groups(trans);
4fbcdf66 2526 btrfs_trans_release_chunk_metadata(trans);
0e721106 2527 trans->block_rsv = NULL;
0b246afa 2528 btrfs_warn(fs_info, "Skipping commit of aborted transaction.");
49b25e05
JM
2529 if (current->journal_info == trans)
2530 current->journal_info = NULL;
97cb39bb 2531 cleanup_transaction(trans, ret);
49b25e05
JM
2532
2533 return ret;
e1489b4f
IA
2534
2535lockdep_release:
5a9ba670 2536 btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters);
e1489b4f
IA
2537 btrfs_lockdep_release(fs_info, btrfs_trans_num_writers);
2538 goto cleanup_transaction;
3e738c53
IA
2539
2540lockdep_trans_commit_start_release:
2541 btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START);
2542 btrfs_end_transaction(trans);
2543 return ret;
79154b1b
CM
2544}
2545
d352ac68 2546/*
9d1a2a3a
DS
2547 * return < 0 if error
2548 * 0 if there are no more dead_roots at the time of call
2549 * 1 there are more to be processed, call me again
2550 *
2551 * The return value indicates there are certainly more snapshots to delete, but
2552 * if there comes a new one during processing, it may return 0. We don't mind,
2553 * because btrfs_commit_super will poke cleaner thread and it will process it a
2554 * few seconds later.
d352ac68 2555 */
33c44184 2556int btrfs_clean_one_deleted_snapshot(struct btrfs_fs_info *fs_info)
e9d0b13b 2557{
33c44184 2558 struct btrfs_root *root;
9d1a2a3a 2559 int ret;
5d4f98a2 2560
a4abeea4 2561 spin_lock(&fs_info->trans_lock);
9d1a2a3a
DS
2562 if (list_empty(&fs_info->dead_roots)) {
2563 spin_unlock(&fs_info->trans_lock);
2564 return 0;
2565 }
2566 root = list_first_entry(&fs_info->dead_roots,
2567 struct btrfs_root, root_list);
cfad392b 2568 list_del_init(&root->root_list);
a4abeea4 2569 spin_unlock(&fs_info->trans_lock);
e9d0b13b 2570
4fd786e6 2571 btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid);
76dda93c 2572
9d1a2a3a 2573 btrfs_kill_all_delayed_nodes(root);
16cdcec7 2574
9d1a2a3a
DS
2575 if (btrfs_header_backref_rev(root->node) <
2576 BTRFS_MIXED_BACKREF_REV)
0078a9f9 2577 ret = btrfs_drop_snapshot(root, 0, 0);
9d1a2a3a 2578 else
0078a9f9 2579 ret = btrfs_drop_snapshot(root, 1, 0);
32471dc2 2580
dc9492c1 2581 btrfs_put_root(root);
6596a928 2582 return (ret < 0) ? 0 : 1;
e9d0b13b 2583}
572d9ab7 2584
956504a3
JB
2585int __init btrfs_transaction_init(void)
2586{
2587 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
2588 sizeof(struct btrfs_trans_handle), 0,
2589 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
2590 if (!btrfs_trans_handle_cachep)
2591 return -ENOMEM;
2592 return 0;
2593}
2594
2595void __cold btrfs_transaction_exit(void)
2596{
2597 kmem_cache_destroy(btrfs_trans_handle_cachep);
2598}