1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0 26cbd5570SChris Mason /* 36cbd5570SChris Mason * Copyright (C) 2007 Oracle. All rights reserved. 46cbd5570SChris Mason */ 56cbd5570SChris Mason 679154b1bSChris Mason #include <linux/fs.h> 75a0e3ad6STejun Heo #include <linux/slab.h> 834088780SChris Mason #include <linux/sched.h> 9d3c2fdcfSChris Mason #include <linux/writeback.h> 105f39d397SChris Mason #include <linux/pagemap.h> 115f2cc086SChris Mason #include <linux/blkdev.h> 128ea05e3aSAlexander Block #include <linux/uuid.h> 1379154b1bSChris Mason #include "ctree.h" 1479154b1bSChris Mason #include "disk-io.h" 1579154b1bSChris Mason #include "transaction.h" 16925baeddSChris Mason #include "locking.h" 17e02119d5SChris Mason #include "tree-log.h" 18581bb050SLi Zefan #include "inode-map.h" 19733f4fbbSStefan Behrens #include "volumes.h" 208dabb742SStefan Behrens #include "dev-replace.h" 21fcebe456SJosef Bacik #include "qgroup.h" 2279154b1bSChris Mason 230f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0 240f7d52f4SChris Mason 25e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 264a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 27bcf3a3e7SNikolay Borisov [TRANS_STATE_BLOCKED] = __TRANS_START, 28bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH), 29bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_DOING] = (__TRANS_START | 304a9d8bdeSMiao Xie __TRANS_ATTACH | 314a9d8bdeSMiao Xie __TRANS_JOIN), 32bcf3a3e7SNikolay Borisov [TRANS_STATE_UNBLOCKED] = (__TRANS_START | 334a9d8bdeSMiao Xie __TRANS_ATTACH | 344a9d8bdeSMiao Xie __TRANS_JOIN | 354a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 36bcf3a3e7SNikolay Borisov [TRANS_STATE_COMPLETED] = (__TRANS_START | 374a9d8bdeSMiao Xie __TRANS_ATTACH | 384a9d8bdeSMiao Xie __TRANS_JOIN | 394a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 404a9d8bdeSMiao Xie }; 414a9d8bdeSMiao Xie 42724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction) 4379154b1bSChris Mason { 449b64f57dSElena Reshetova WARN_ON(refcount_read(&transaction->use_count) == 0); 459b64f57dSElena Reshetova if (refcount_dec_and_test(&transaction->use_count)) { 46a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 47c46effa6SLiu Bo WARN_ON(!RB_EMPTY_ROOT(&transaction->delayed_refs.href_root)); 481262133bSJosef Bacik if (transaction->delayed_refs.pending_csums) 49ab8d0fc4SJeff Mahoney btrfs_err(transaction->fs_info, 50ab8d0fc4SJeff Mahoney "pending csums is %llu", 511262133bSJosef Bacik transaction->delayed_refs.pending_csums); 526df9a95eSJosef Bacik while (!list_empty(&transaction->pending_chunks)) { 536df9a95eSJosef Bacik struct extent_map *em; 546df9a95eSJosef Bacik 556df9a95eSJosef Bacik em = list_first_entry(&transaction->pending_chunks, 566df9a95eSJosef Bacik struct extent_map, list); 576df9a95eSJosef Bacik list_del_init(&em->list); 586df9a95eSJosef Bacik free_extent_map(em); 596df9a95eSJosef Bacik } 607785a663SFilipe Manana /* 617785a663SFilipe Manana * If any block groups are found in ->deleted_bgs then it's 627785a663SFilipe Manana * because the transaction was aborted and a commit did not 637785a663SFilipe Manana * happen (things failed before writing the new superblock 647785a663SFilipe Manana * and calling btrfs_finish_extent_commit()), so we can not 657785a663SFilipe Manana * discard the physical locations of the block groups. 667785a663SFilipe Manana */ 677785a663SFilipe Manana while (!list_empty(&transaction->deleted_bgs)) { 687785a663SFilipe Manana struct btrfs_block_group_cache *cache; 697785a663SFilipe Manana 707785a663SFilipe Manana cache = list_first_entry(&transaction->deleted_bgs, 717785a663SFilipe Manana struct btrfs_block_group_cache, 727785a663SFilipe Manana bg_list); 737785a663SFilipe Manana list_del_init(&cache->bg_list); 747785a663SFilipe Manana btrfs_put_block_group_trimming(cache); 757785a663SFilipe Manana btrfs_put_block_group(cache); 767785a663SFilipe Manana } 774b5faeacSDavid Sterba kfree(transaction); 7879154b1bSChris Mason } 7978fae27eSChris Mason } 8079154b1bSChris Mason 81663dfbb0SFilipe Manana static void clear_btree_io_tree(struct extent_io_tree *tree) 82663dfbb0SFilipe Manana { 83663dfbb0SFilipe Manana spin_lock(&tree->lock); 84b666a9cdSDavid Sterba /* 85b666a9cdSDavid Sterba * Do a single barrier for the waitqueue_active check here, the state 86b666a9cdSDavid Sterba * of the waitqueue should not change once clear_btree_io_tree is 87b666a9cdSDavid Sterba * called. 88b666a9cdSDavid Sterba */ 89b666a9cdSDavid Sterba smp_mb(); 90663dfbb0SFilipe Manana while (!RB_EMPTY_ROOT(&tree->state)) { 91663dfbb0SFilipe Manana struct rb_node *node; 92663dfbb0SFilipe Manana struct extent_state *state; 93663dfbb0SFilipe Manana 94663dfbb0SFilipe Manana node = rb_first(&tree->state); 95663dfbb0SFilipe Manana state = rb_entry(node, struct extent_state, rb_node); 96663dfbb0SFilipe Manana rb_erase(&state->rb_node, &tree->state); 97663dfbb0SFilipe Manana RB_CLEAR_NODE(&state->rb_node); 98663dfbb0SFilipe Manana /* 99663dfbb0SFilipe Manana * btree io trees aren't supposed to have tasks waiting for 100663dfbb0SFilipe Manana * changes in the flags of extent states ever. 101663dfbb0SFilipe Manana */ 102663dfbb0SFilipe Manana ASSERT(!waitqueue_active(&state->wq)); 103663dfbb0SFilipe Manana free_extent_state(state); 104351810c1SDavid Sterba 105351810c1SDavid Sterba cond_resched_lock(&tree->lock); 106663dfbb0SFilipe Manana } 107663dfbb0SFilipe Manana spin_unlock(&tree->lock); 108663dfbb0SFilipe Manana } 109663dfbb0SFilipe Manana 11016916a88SNikolay Borisov static noinline void switch_commit_roots(struct btrfs_transaction *trans) 111817d52f8SJosef Bacik { 11216916a88SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1139e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 1149e351cc8SJosef Bacik 1159e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 1169e351cc8SJosef Bacik list_for_each_entry_safe(root, tmp, &trans->switch_commits, 1179e351cc8SJosef Bacik dirty_list) { 1189e351cc8SJosef Bacik list_del_init(&root->dirty_list); 119817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 120817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 1219e351cc8SJosef Bacik if (is_fstree(root->objectid)) 1229e351cc8SJosef Bacik btrfs_unpin_free_ino(root); 123663dfbb0SFilipe Manana clear_btree_io_tree(&root->dirty_log_pages); 1249e351cc8SJosef Bacik } 1252b9dbef2SJosef Bacik 1262b9dbef2SJosef Bacik /* We can free old roots now. */ 1272b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1282b9dbef2SJosef Bacik while (!list_empty(&trans->dropped_roots)) { 1292b9dbef2SJosef Bacik root = list_first_entry(&trans->dropped_roots, 1302b9dbef2SJosef Bacik struct btrfs_root, root_list); 1312b9dbef2SJosef Bacik list_del_init(&root->root_list); 1322b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1332b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 1342b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1352b9dbef2SJosef Bacik } 1362b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1379e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 138817d52f8SJosef Bacik } 139817d52f8SJosef Bacik 1400860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 1410860adfdSMiao Xie unsigned int type) 1420860adfdSMiao Xie { 1430860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1440860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 1450860adfdSMiao Xie } 1460860adfdSMiao Xie 1470860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 1480860adfdSMiao Xie unsigned int type) 1490860adfdSMiao Xie { 1500860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1510860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 1520860adfdSMiao Xie } 1530860adfdSMiao Xie 1540860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 1550860adfdSMiao Xie unsigned int type) 1560860adfdSMiao Xie { 1570860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 1580860adfdSMiao Xie } 1590860adfdSMiao Xie 1600860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 1610860adfdSMiao Xie { 1620860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 163178260b2SMiao Xie } 164178260b2SMiao Xie 165d352ac68SChris Mason /* 166d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 167d352ac68SChris Mason */ 1682ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info, 1692ff7e61eSJeff Mahoney unsigned int type) 17079154b1bSChris Mason { 17179154b1bSChris Mason struct btrfs_transaction *cur_trans; 172a4abeea4SJosef Bacik 17319ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 174d43317dcSChris Mason loop: 17549b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 17687533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 17719ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 17849b25e05SJeff Mahoney return -EROFS; 17949b25e05SJeff Mahoney } 18049b25e05SJeff Mahoney 18119ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 182a4abeea4SJosef Bacik if (cur_trans) { 183871383beSDavid Sterba if (cur_trans->aborted) { 18419ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 18549b25e05SJeff Mahoney return cur_trans->aborted; 186871383beSDavid Sterba } 1874a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 188178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 189178260b2SMiao Xie return -EBUSY; 190178260b2SMiao Xie } 1919b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 192a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 1930860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 19419ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 195a4abeea4SJosef Bacik return 0; 196a4abeea4SJosef Bacik } 19719ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 198a4abeea4SJosef Bacik 199354aa0fbSMiao Xie /* 200354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 201354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 202354aa0fbSMiao Xie */ 203354aa0fbSMiao Xie if (type == TRANS_ATTACH) 204354aa0fbSMiao Xie return -ENOENT; 205354aa0fbSMiao Xie 2064a9d8bdeSMiao Xie /* 2074a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 2084a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 2094a9d8bdeSMiao Xie */ 2104a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 2114a9d8bdeSMiao Xie 2124b5faeacSDavid Sterba cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS); 213db5b493aSTsutomu Itoh if (!cur_trans) 214db5b493aSTsutomu Itoh return -ENOMEM; 215d43317dcSChris Mason 21619ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 21719ae4e81SJan Schmidt if (fs_info->running_transaction) { 218d43317dcSChris Mason /* 219d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 2204a9d8bdeSMiao Xie * to redo the checks above 221d43317dcSChris Mason */ 2224b5faeacSDavid Sterba kfree(cur_trans); 223d43317dcSChris Mason goto loop; 22487533c47SMiao Xie } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 225e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 2264b5faeacSDavid Sterba kfree(cur_trans); 2277b8b92afSJosef Bacik return -EROFS; 228a4abeea4SJosef Bacik } 229d43317dcSChris Mason 230ab8d0fc4SJeff Mahoney cur_trans->fs_info = fs_info; 23113c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 2320860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 23379154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 23479154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 235161c3549SJosef Bacik init_waitqueue_head(&cur_trans->pending_wait); 2364a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 237a4abeea4SJosef Bacik /* 238a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 239a4abeea4SJosef Bacik * commit the transaction. 240a4abeea4SJosef Bacik */ 2419b64f57dSElena Reshetova refcount_set(&cur_trans->use_count, 2); 242161c3549SJosef Bacik atomic_set(&cur_trans->pending_ordered, 0); 2433204d33cSJosef Bacik cur_trans->flags = 0; 244*afd48513SArnd Bergmann cur_trans->start_time = ktime_get_seconds(); 24556bec294SChris Mason 246a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 247a099d0fdSAlexandru Moise 248c46effa6SLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT; 2493368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 250d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 25120b297d6SJan Schmidt 25220b297d6SJan Schmidt /* 25320b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 25420b297d6SJan Schmidt * the log must never go across transaction boundaries. 25520b297d6SJan Schmidt */ 25620b297d6SJan Schmidt smp_mb(); 25731b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 2585d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n"); 25931b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 2605d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n"); 261fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 26220b297d6SJan Schmidt 26356bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 26456bec294SChris Mason 2653063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 2666df9a95eSJosef Bacik INIT_LIST_HEAD(&cur_trans->pending_chunks); 2679e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 268ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 2691bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 2702b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 2711bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 272cb723e49SJosef Bacik cur_trans->num_dirty_bgs = 0; 273ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 274e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 2752b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 27619ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 277d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 278c6100a4bSJosef Bacik fs_info->btree_inode); 27919ae4e81SJan Schmidt fs_info->generation++; 28019ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 28119ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 28249b25e05SJeff Mahoney cur_trans->aborted = 0; 28319ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 28415ee9bc7SJosef Bacik 28579154b1bSChris Mason return 0; 28679154b1bSChris Mason } 28779154b1bSChris Mason 288d352ac68SChris Mason /* 289d397712bSChris Mason * this does all the record keeping required to make sure that a reference 290d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 291d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 292d397712bSChris Mason * when the transaction commits 293d352ac68SChris Mason */ 2947585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 2956426c7adSQu Wenruo struct btrfs_root *root, 2966426c7adSQu Wenruo int force) 2976702ed49SChris Mason { 2980b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 2990b246afaSJeff Mahoney 3006426c7adSQu Wenruo if ((test_bit(BTRFS_ROOT_REF_COWS, &root->state) && 3016426c7adSQu Wenruo root->last_trans < trans->transid) || force) { 3020b246afaSJeff Mahoney WARN_ON(root == fs_info->extent_root); 3034d31778aSQu Wenruo WARN_ON(!force && root->commit_root != root->node); 3045d4f98a2SYan Zheng 3057585717fSChris Mason /* 30627cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 3077585717fSChris Mason * we have the reloc mutex held now, so there 3087585717fSChris Mason * is only one writer in this function 3097585717fSChris Mason */ 31027cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3117585717fSChris Mason 31227cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 3137585717fSChris Mason * they find our root->last_trans update 3147585717fSChris Mason */ 3157585717fSChris Mason smp_wmb(); 3167585717fSChris Mason 3170b246afaSJeff Mahoney spin_lock(&fs_info->fs_roots_radix_lock); 3186426c7adSQu Wenruo if (root->last_trans == trans->transid && !force) { 3190b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 320a4abeea4SJosef Bacik return 0; 321a4abeea4SJosef Bacik } 3220b246afaSJeff Mahoney radix_tree_tag_set(&fs_info->fs_roots_radix, 3236702ed49SChris Mason (unsigned long)root->root_key.objectid, 3246702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 3250b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 3267585717fSChris Mason root->last_trans = trans->transid; 3277585717fSChris Mason 3287585717fSChris Mason /* this is pretty tricky. We don't want to 3297585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 3307585717fSChris Mason * unless we're really doing the first setup for this root in 3317585717fSChris Mason * this transaction. 3327585717fSChris Mason * 3337585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 3347585717fSChris Mason * if we want to take the expensive mutex. 3357585717fSChris Mason * 3367585717fSChris Mason * But, we have to set root->last_trans before we 3377585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 3387585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 33927cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 3407585717fSChris Mason * fixing up the reloc trees and everyone must wait. 3417585717fSChris Mason * 3427585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 3437585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 3447585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 3457585717fSChris Mason * done before we pop in the zero below 3467585717fSChris Mason */ 3475d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 348c7548af6SChris Mason smp_mb__before_atomic(); 34927cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3506702ed49SChris Mason } 3515d4f98a2SYan Zheng return 0; 3526702ed49SChris Mason } 3535d4f98a2SYan Zheng 3547585717fSChris Mason 3552b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 3562b9dbef2SJosef Bacik struct btrfs_root *root) 3572b9dbef2SJosef Bacik { 3580b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 3592b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 3602b9dbef2SJosef Bacik 3612b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 3622b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 3632b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 3642b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 3652b9dbef2SJosef Bacik 3662b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 3670b246afaSJeff Mahoney spin_lock(&fs_info->fs_roots_radix_lock); 3680b246afaSJeff Mahoney radix_tree_tag_clear(&fs_info->fs_roots_radix, 3692b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 3702b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 3710b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 3722b9dbef2SJosef Bacik } 3732b9dbef2SJosef Bacik 3747585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 3757585717fSChris Mason struct btrfs_root *root) 3767585717fSChris Mason { 3770b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 3780b246afaSJeff Mahoney 37927cdeb70SMiao Xie if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state)) 3807585717fSChris Mason return 0; 3817585717fSChris Mason 3827585717fSChris Mason /* 38327cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 3847585717fSChris Mason * and barriers 3857585717fSChris Mason */ 3867585717fSChris Mason smp_rmb(); 3877585717fSChris Mason if (root->last_trans == trans->transid && 38827cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 3897585717fSChris Mason return 0; 3907585717fSChris Mason 3910b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 3926426c7adSQu Wenruo record_root_in_trans(trans, root, 0); 3930b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 3947585717fSChris Mason 3957585717fSChris Mason return 0; 3967585717fSChris Mason } 3977585717fSChris Mason 3984a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 3994a9d8bdeSMiao Xie { 4004a9d8bdeSMiao Xie return (trans->state >= TRANS_STATE_BLOCKED && 401501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 402501407aaSJosef Bacik !trans->aborted); 4034a9d8bdeSMiao Xie } 4044a9d8bdeSMiao Xie 405d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 406d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 407d352ac68SChris Mason * transaction might not be fully on disk. 408d352ac68SChris Mason */ 4092ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info) 41079154b1bSChris Mason { 411f9295749SChris Mason struct btrfs_transaction *cur_trans; 41279154b1bSChris Mason 4130b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 4140b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 4154a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 4169b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 4170b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 41872d63ed6SLi Zefan 4190b246afaSJeff Mahoney wait_event(fs_info->transaction_wait, 420501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 421501407aaSJosef Bacik cur_trans->aborted); 422724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 423a4abeea4SJosef Bacik } else { 4240b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 425f9295749SChris Mason } 42637d1aeeeSChris Mason } 42737d1aeeeSChris Mason 4282ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type) 42937d1aeeeSChris Mason { 4300b246afaSJeff Mahoney if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) 431a4abeea4SJosef Bacik return 0; 432a4abeea4SJosef Bacik 43392e2f7e3SNikolay Borisov if (type == TRANS_START) 434a4abeea4SJosef Bacik return 1; 435a4abeea4SJosef Bacik 436a22285a6SYan, Zheng return 0; 437a22285a6SYan, Zheng } 438a22285a6SYan, Zheng 43920dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 44020dd2cbfSMiao Xie { 4410b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4420b246afaSJeff Mahoney 4430b246afaSJeff Mahoney if (!fs_info->reloc_ctl || 44427cdeb70SMiao Xie !test_bit(BTRFS_ROOT_REF_COWS, &root->state) || 44520dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 44620dd2cbfSMiao Xie root->reloc_root) 44720dd2cbfSMiao Xie return false; 44820dd2cbfSMiao Xie 44920dd2cbfSMiao Xie return true; 45020dd2cbfSMiao Xie } 45120dd2cbfSMiao Xie 45208e007d2SMiao Xie static struct btrfs_trans_handle * 4535aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 454003d7c59SJeff Mahoney unsigned int type, enum btrfs_reserve_flush_enum flush, 455003d7c59SJeff Mahoney bool enforce_qgroups) 456a22285a6SYan, Zheng { 4570b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4580b246afaSJeff Mahoney 459a22285a6SYan, Zheng struct btrfs_trans_handle *h; 460a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 461b5009945SJosef Bacik u64 num_bytes = 0; 462c5567237SArne Jansen u64 qgroup_reserved = 0; 46320dd2cbfSMiao Xie bool reloc_reserved = false; 46420dd2cbfSMiao Xie int ret; 465acce952bSliubo 46646c4e71eSFilipe Manana /* Send isn't supposed to start transactions. */ 4672755a0deSDavid Sterba ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB); 46846c4e71eSFilipe Manana 4690b246afaSJeff Mahoney if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) 470acce952bSliubo return ERR_PTR(-EROFS); 4712a1eb461SJosef Bacik 47246c4e71eSFilipe Manana if (current->journal_info) { 4730860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 4742a1eb461SJosef Bacik h = current->journal_info; 475b50fff81SDavid Sterba refcount_inc(&h->use_count); 476b50fff81SDavid Sterba WARN_ON(refcount_read(&h->use_count) > 2); 4772a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 4782a1eb461SJosef Bacik h->block_rsv = NULL; 4792a1eb461SJosef Bacik goto got_it; 4802a1eb461SJosef Bacik } 481b5009945SJosef Bacik 482b5009945SJosef Bacik /* 483b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 484b5009945SJosef Bacik * the appropriate flushing if need be. 485b5009945SJosef Bacik */ 486003d7c59SJeff Mahoney if (num_items && root != fs_info->chunk_root) { 4870b246afaSJeff Mahoney qgroup_reserved = num_items * fs_info->nodesize; 488733e03a0SQu Wenruo ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, 489003d7c59SJeff Mahoney enforce_qgroups); 490c5567237SArne Jansen if (ret) 491c5567237SArne Jansen return ERR_PTR(ret); 492c5567237SArne Jansen 4930b246afaSJeff Mahoney num_bytes = btrfs_calc_trans_metadata_size(fs_info, num_items); 49420dd2cbfSMiao Xie /* 49520dd2cbfSMiao Xie * Do the reservation for the relocation root creation 49620dd2cbfSMiao Xie */ 497ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 4980b246afaSJeff Mahoney num_bytes += fs_info->nodesize; 49920dd2cbfSMiao Xie reloc_reserved = true; 50020dd2cbfSMiao Xie } 50120dd2cbfSMiao Xie 5020b246afaSJeff Mahoney ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv, 50308e007d2SMiao Xie num_bytes, flush); 504b5009945SJosef Bacik if (ret) 505843fcf35SMiao Xie goto reserve_fail; 506b5009945SJosef Bacik } 507a22285a6SYan, Zheng again: 508f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 509843fcf35SMiao Xie if (!h) { 510843fcf35SMiao Xie ret = -ENOMEM; 511843fcf35SMiao Xie goto alloc_fail; 512843fcf35SMiao Xie } 513a22285a6SYan, Zheng 51498114659SJosef Bacik /* 51598114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 51698114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 51798114659SJosef Bacik * because we're already holding a ref. We need this because we could 51898114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 51998114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 520354aa0fbSMiao Xie * 521354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 522354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 52398114659SJosef Bacik */ 5240860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 5250b246afaSJeff Mahoney sb_start_intwrite(fs_info->sb); 526b2b5ef5cSJan Kara 5272ff7e61eSJeff Mahoney if (may_wait_transaction(fs_info, type)) 5282ff7e61eSJeff Mahoney wait_current_trans(fs_info); 529a22285a6SYan, Zheng 530a4abeea4SJosef Bacik do { 5312ff7e61eSJeff Mahoney ret = join_transaction(fs_info, type); 532178260b2SMiao Xie if (ret == -EBUSY) { 5332ff7e61eSJeff Mahoney wait_current_trans(fs_info); 534178260b2SMiao Xie if (unlikely(type == TRANS_ATTACH)) 535178260b2SMiao Xie ret = -ENOENT; 536178260b2SMiao Xie } 537a4abeea4SJosef Bacik } while (ret == -EBUSY); 538a4abeea4SJosef Bacik 539a43f7f82SLiu Bo if (ret < 0) 540843fcf35SMiao Xie goto join_fail; 5410f7d52f4SChris Mason 5420b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 543a22285a6SYan, Zheng 544a22285a6SYan, Zheng h->transid = cur_trans->transid; 545a22285a6SYan, Zheng h->transaction = cur_trans; 546d13603efSArne Jansen h->root = root; 547b50fff81SDavid Sterba refcount_set(&h->use_count, 1); 54864b63580SJeff Mahoney h->fs_info = root->fs_info; 5497174109cSQu Wenruo 550a698d075SMiao Xie h->type = type; 551d9a0540aSFilipe Manana h->can_flush_pending_bgs = true; 552ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 553b7ec40d7SChris Mason 554a22285a6SYan, Zheng smp_mb(); 5554a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED && 5562ff7e61eSJeff Mahoney may_wait_transaction(fs_info, type)) { 557abdd2e80SFilipe Manana current->journal_info = h; 5583a45bb20SJeff Mahoney btrfs_commit_transaction(h); 559a22285a6SYan, Zheng goto again; 560a22285a6SYan, Zheng } 5619ed74f2dSJosef Bacik 562b5009945SJosef Bacik if (num_bytes) { 5630b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 5642bcc0328SLiu Bo h->transid, num_bytes, 1); 5650b246afaSJeff Mahoney h->block_rsv = &fs_info->trans_block_rsv; 566b5009945SJosef Bacik h->bytes_reserved = num_bytes; 56720dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 568a22285a6SYan, Zheng } 569a22285a6SYan, Zheng 5702a1eb461SJosef Bacik got_it: 571a4abeea4SJosef Bacik btrfs_record_root_in_trans(h, root); 572a22285a6SYan, Zheng 573bcf3a3e7SNikolay Borisov if (!current->journal_info) 574a22285a6SYan, Zheng current->journal_info = h; 57579154b1bSChris Mason return h; 576843fcf35SMiao Xie 577843fcf35SMiao Xie join_fail: 5780860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 5790b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 580843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 581843fcf35SMiao Xie alloc_fail: 582843fcf35SMiao Xie if (num_bytes) 5832ff7e61eSJeff Mahoney btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, 584843fcf35SMiao Xie num_bytes); 585843fcf35SMiao Xie reserve_fail: 586733e03a0SQu Wenruo btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); 587843fcf35SMiao Xie return ERR_PTR(ret); 58879154b1bSChris Mason } 58979154b1bSChris Mason 590f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 5915aed1dd8SAlexandru Moise unsigned int num_items) 592f9295749SChris Mason { 59308e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 594003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, true); 595f9295749SChris Mason } 596003d7c59SJeff Mahoney 5978eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 5988eab77ffSFilipe Manana struct btrfs_root *root, 5998eab77ffSFilipe Manana unsigned int num_items, 6008eab77ffSFilipe Manana int min_factor) 6018eab77ffSFilipe Manana { 6020b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 6038eab77ffSFilipe Manana struct btrfs_trans_handle *trans; 6048eab77ffSFilipe Manana u64 num_bytes; 6058eab77ffSFilipe Manana int ret; 6068eab77ffSFilipe Manana 607003d7c59SJeff Mahoney /* 608003d7c59SJeff Mahoney * We have two callers: unlink and block group removal. The 609003d7c59SJeff Mahoney * former should succeed even if we will temporarily exceed 610003d7c59SJeff Mahoney * quota and the latter operates on the extent root so 611003d7c59SJeff Mahoney * qgroup enforcement is ignored anyway. 612003d7c59SJeff Mahoney */ 613003d7c59SJeff Mahoney trans = start_transaction(root, num_items, TRANS_START, 614003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, false); 6158eab77ffSFilipe Manana if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) 6168eab77ffSFilipe Manana return trans; 6178eab77ffSFilipe Manana 6188eab77ffSFilipe Manana trans = btrfs_start_transaction(root, 0); 6198eab77ffSFilipe Manana if (IS_ERR(trans)) 6208eab77ffSFilipe Manana return trans; 6218eab77ffSFilipe Manana 6220b246afaSJeff Mahoney num_bytes = btrfs_calc_trans_metadata_size(fs_info, num_items); 6230b246afaSJeff Mahoney ret = btrfs_cond_migrate_bytes(fs_info, &fs_info->trans_block_rsv, 6240b246afaSJeff Mahoney num_bytes, min_factor); 6258eab77ffSFilipe Manana if (ret) { 6263a45bb20SJeff Mahoney btrfs_end_transaction(trans); 6278eab77ffSFilipe Manana return ERR_PTR(ret); 6288eab77ffSFilipe Manana } 6298eab77ffSFilipe Manana 6300b246afaSJeff Mahoney trans->block_rsv = &fs_info->trans_block_rsv; 6318eab77ffSFilipe Manana trans->bytes_reserved = num_bytes; 6320b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 63388d3a5aaSJosef Bacik trans->transid, num_bytes, 1); 6348eab77ffSFilipe Manana 6358eab77ffSFilipe Manana return trans; 6368eab77ffSFilipe Manana } 6378407aa46SMiao Xie 6387a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 639f9295749SChris Mason { 640003d7c59SJeff Mahoney return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH, 641003d7c59SJeff Mahoney true); 642f9295749SChris Mason } 643f9295749SChris Mason 6447a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root) 6450af3d00bSJosef Bacik { 646575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 647003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 6480af3d00bSJosef Bacik } 6490af3d00bSJosef Bacik 650d4edf39bSMiao Xie /* 651d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 652d4edf39bSMiao Xie * 653d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 654d4edf39bSMiao Xie * don't want to start a new one. 655d4edf39bSMiao Xie * 656d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 657d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 658d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 659d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 660d4edf39bSMiao Xie * invoke 661d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 662d4edf39bSMiao Xie */ 663354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 66460376ce4SJosef Bacik { 665575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_ATTACH, 666003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 66760376ce4SJosef Bacik } 66860376ce4SJosef Bacik 669d4edf39bSMiao Xie /* 67090b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 671d4edf39bSMiao Xie * 672d4edf39bSMiao Xie * It is similar to the above function, the differentia is this one 673d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 674d4edf39bSMiao Xie * complete. 675d4edf39bSMiao Xie */ 676d4edf39bSMiao Xie struct btrfs_trans_handle * 677d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 678d4edf39bSMiao Xie { 679d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 680d4edf39bSMiao Xie 681575a75d6SAlexandru Moise trans = start_transaction(root, 0, TRANS_ATTACH, 682003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 683d4edf39bSMiao Xie if (IS_ERR(trans) && PTR_ERR(trans) == -ENOENT) 6842ff7e61eSJeff Mahoney btrfs_wait_for_commit(root->fs_info, 0); 685d4edf39bSMiao Xie 686d4edf39bSMiao Xie return trans; 687d4edf39bSMiao Xie } 688d4edf39bSMiao Xie 689d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 6902ff7e61eSJeff Mahoney static noinline void wait_for_commit(struct btrfs_transaction *commit) 69189ce8a63SChris Mason { 6924a9d8bdeSMiao Xie wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); 69389ce8a63SChris Mason } 69489ce8a63SChris Mason 6952ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid) 69646204592SSage Weil { 69746204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 6988cd2807fSMiao Xie int ret = 0; 69946204592SSage Weil 70046204592SSage Weil if (transid) { 7010b246afaSJeff Mahoney if (transid <= fs_info->last_trans_committed) 702a4abeea4SJosef Bacik goto out; 70346204592SSage Weil 70446204592SSage Weil /* find specified transaction */ 7050b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 7060b246afaSJeff Mahoney list_for_each_entry(t, &fs_info->trans_list, list) { 70746204592SSage Weil if (t->transid == transid) { 70846204592SSage Weil cur_trans = t; 7099b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 7108cd2807fSMiao Xie ret = 0; 71146204592SSage Weil break; 71246204592SSage Weil } 7138cd2807fSMiao Xie if (t->transid > transid) { 7148cd2807fSMiao Xie ret = 0; 71546204592SSage Weil break; 71646204592SSage Weil } 7178cd2807fSMiao Xie } 7180b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 71942383020SSage Weil 72042383020SSage Weil /* 72142383020SSage Weil * The specified transaction doesn't exist, or we 72242383020SSage Weil * raced with btrfs_commit_transaction 72342383020SSage Weil */ 72442383020SSage Weil if (!cur_trans) { 7250b246afaSJeff Mahoney if (transid > fs_info->last_trans_committed) 72642383020SSage Weil ret = -EINVAL; 7278cd2807fSMiao Xie goto out; 72842383020SSage Weil } 72946204592SSage Weil } else { 73046204592SSage Weil /* find newest transaction that is committing | committed */ 7310b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 7320b246afaSJeff Mahoney list_for_each_entry_reverse(t, &fs_info->trans_list, 73346204592SSage Weil list) { 7344a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 7354a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 7363473f3c0SJosef Bacik break; 73746204592SSage Weil cur_trans = t; 7389b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 73946204592SSage Weil break; 74046204592SSage Weil } 74146204592SSage Weil } 7420b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 74346204592SSage Weil if (!cur_trans) 744a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 74546204592SSage Weil } 74646204592SSage Weil 7472ff7e61eSJeff Mahoney wait_for_commit(cur_trans); 748724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 749a4abeea4SJosef Bacik out: 75046204592SSage Weil return ret; 75146204592SSage Weil } 75246204592SSage Weil 7532ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info) 75437d1aeeeSChris Mason { 7552ff7e61eSJeff Mahoney wait_current_trans(fs_info); 75637d1aeeeSChris Mason } 75737d1aeeeSChris Mason 7582ff7e61eSJeff Mahoney static int should_end_transaction(struct btrfs_trans_handle *trans) 7598929ecfaSYan, Zheng { 7602ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 7610b246afaSJeff Mahoney 7627c777430SJosef Bacik if (btrfs_check_space_for_delayed_refs(trans, fs_info)) 7631be41b78SJosef Bacik return 1; 76436ba022aSJosef Bacik 7652ff7e61eSJeff Mahoney return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5); 7668929ecfaSYan, Zheng } 7678929ecfaSYan, Zheng 7683a45bb20SJeff Mahoney int btrfs_should_end_transaction(struct btrfs_trans_handle *trans) 7698929ecfaSYan, Zheng { 7708929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 7718929ecfaSYan, Zheng int updates; 77249b25e05SJeff Mahoney int err; 7738929ecfaSYan, Zheng 774a4abeea4SJosef Bacik smp_mb(); 7754a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED || 7764a9d8bdeSMiao Xie cur_trans->delayed_refs.flushing) 7778929ecfaSYan, Zheng return 1; 7788929ecfaSYan, Zheng 7798929ecfaSYan, Zheng updates = trans->delayed_ref_updates; 7808929ecfaSYan, Zheng trans->delayed_ref_updates = 0; 78149b25e05SJeff Mahoney if (updates) { 782c79a70b1SNikolay Borisov err = btrfs_run_delayed_refs(trans, updates * 2); 78349b25e05SJeff Mahoney if (err) /* Error code will also eval true */ 78449b25e05SJeff Mahoney return err; 78549b25e05SJeff Mahoney } 7868929ecfaSYan, Zheng 7872ff7e61eSJeff Mahoney return should_end_transaction(trans); 7888929ecfaSYan, Zheng } 7898929ecfaSYan, Zheng 790dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans) 791dc60c525SNikolay Borisov 7920e34693fSNikolay Borisov { 793dc60c525SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 794dc60c525SNikolay Borisov 7950e34693fSNikolay Borisov if (!trans->block_rsv) { 7960e34693fSNikolay Borisov ASSERT(!trans->bytes_reserved); 7970e34693fSNikolay Borisov return; 7980e34693fSNikolay Borisov } 7990e34693fSNikolay Borisov 8000e34693fSNikolay Borisov if (!trans->bytes_reserved) 8010e34693fSNikolay Borisov return; 8020e34693fSNikolay Borisov 8030e34693fSNikolay Borisov ASSERT(trans->block_rsv == &fs_info->trans_block_rsv); 8040e34693fSNikolay Borisov trace_btrfs_space_reservation(fs_info, "transaction", 8050e34693fSNikolay Borisov trans->transid, trans->bytes_reserved, 0); 8060e34693fSNikolay Borisov btrfs_block_rsv_release(fs_info, trans->block_rsv, 8070e34693fSNikolay Borisov trans->bytes_reserved); 8080e34693fSNikolay Borisov trans->bytes_reserved = 0; 8090e34693fSNikolay Borisov } 8100e34693fSNikolay Borisov 81189ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 8123a45bb20SJeff Mahoney int throttle) 81379154b1bSChris Mason { 8143a45bb20SJeff Mahoney struct btrfs_fs_info *info = trans->fs_info; 8158929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 81631b9655fSJosef Bacik u64 transid = trans->transid; 8171be41b78SJosef Bacik unsigned long cur = trans->delayed_ref_updates; 818a698d075SMiao Xie int lock = (trans->type != TRANS_JOIN_NOLOCK); 8194edc2ca3SDave Jones int err = 0; 820a79b7d4bSChris Mason int must_run_delayed_refs = 0; 821d6e4a428SChris Mason 822b50fff81SDavid Sterba if (refcount_read(&trans->use_count) > 1) { 823b50fff81SDavid Sterba refcount_dec(&trans->use_count); 8242a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 8252a1eb461SJosef Bacik return 0; 8262a1eb461SJosef Bacik } 8272a1eb461SJosef Bacik 828dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 8294c13d758SJosef Bacik trans->block_rsv = NULL; 830c5567237SArne Jansen 831ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 8326c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 833ea658badSJosef Bacik 834c3e69d58SChris Mason trans->delayed_ref_updates = 0; 835a79b7d4bSChris Mason if (!trans->sync) { 836a79b7d4bSChris Mason must_run_delayed_refs = 8372ff7e61eSJeff Mahoney btrfs_should_throttle_delayed_refs(trans, info); 8380a2b2a84SJosef Bacik cur = max_t(unsigned long, cur, 32); 839a79b7d4bSChris Mason 840a79b7d4bSChris Mason /* 841a79b7d4bSChris Mason * don't make the caller wait if they are from a NOLOCK 842a79b7d4bSChris Mason * or ATTACH transaction, it will deadlock with commit 843a79b7d4bSChris Mason */ 844a79b7d4bSChris Mason if (must_run_delayed_refs == 1 && 845a79b7d4bSChris Mason (trans->type & (__TRANS_JOIN_NOLOCK | __TRANS_ATTACH))) 846a79b7d4bSChris Mason must_run_delayed_refs = 2; 84756bec294SChris Mason } 848bb721703SChris Mason 849dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 8500e721106SJosef Bacik trans->block_rsv = NULL; 85156bec294SChris Mason 852ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 8536c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 854ea658badSJosef Bacik 8554fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 8564fbcdf66SFilipe Manana 85792e2f7e3SNikolay Borisov if (lock && should_end_transaction(trans) && 85820c7bcecSSeraphime Kirkovski READ_ONCE(cur_trans->state) == TRANS_STATE_RUNNING) { 8594a9d8bdeSMiao Xie spin_lock(&info->trans_lock); 8604a9d8bdeSMiao Xie if (cur_trans->state == TRANS_STATE_RUNNING) 8614a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_BLOCKED; 8624a9d8bdeSMiao Xie spin_unlock(&info->trans_lock); 863a4abeea4SJosef Bacik } 8648929ecfaSYan, Zheng 86520c7bcecSSeraphime Kirkovski if (lock && READ_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) { 8663bbb24b2SJosef Bacik if (throttle) 8673a45bb20SJeff Mahoney return btrfs_commit_transaction(trans); 8683bbb24b2SJosef Bacik else 8698929ecfaSYan, Zheng wake_up_process(info->transaction_kthread); 8708929ecfaSYan, Zheng } 8718929ecfaSYan, Zheng 8720860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 8730b246afaSJeff Mahoney sb_end_intwrite(info->sb); 8746df7881aSJosef Bacik 8758929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 87613c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 87713c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 8780860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 87989ce8a63SChris Mason 880093258e6SDavid Sterba cond_wake_up(&cur_trans->writer_wait); 881724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 8829ed74f2dSJosef Bacik 8839ed74f2dSJosef Bacik if (current->journal_info == trans) 8849ed74f2dSJosef Bacik current->journal_info = NULL; 885ab78c84dSChris Mason 88624bbcf04SYan, Zheng if (throttle) 8872ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(info); 88824bbcf04SYan, Zheng 88949b25e05SJeff Mahoney if (trans->aborted || 8900b246afaSJeff Mahoney test_bit(BTRFS_FS_STATE_ERROR, &info->fs_state)) { 8914e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 8924edc2ca3SDave Jones err = -EIO; 8934e121c06SJosef Bacik } 89449b25e05SJeff Mahoney 8954edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 896a79b7d4bSChris Mason if (must_run_delayed_refs) { 8972ff7e61eSJeff Mahoney btrfs_async_run_delayed_refs(info, cur, transid, 898a79b7d4bSChris Mason must_run_delayed_refs == 1); 899a79b7d4bSChris Mason } 9004edc2ca3SDave Jones return err; 90179154b1bSChris Mason } 90279154b1bSChris Mason 9033a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans) 90489ce8a63SChris Mason { 9053a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 0); 90689ce8a63SChris Mason } 90789ce8a63SChris Mason 9083a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans) 90989ce8a63SChris Mason { 9103a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 1); 91116cdcec7SMiao Xie } 91216cdcec7SMiao Xie 913d352ac68SChris Mason /* 914d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 915d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 916690587d1SChris Mason * those extents are sent to disk but does not wait on them 917d352ac68SChris Mason */ 9182ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info, 9198cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 92079154b1bSChris Mason { 921777e6bd7SChris Mason int err = 0; 9227c4452b9SChris Mason int werr = 0; 9230b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 924e6138876SJosef Bacik struct extent_state *cached_state = NULL; 925777e6bd7SChris Mason u64 start = 0; 9265f39d397SChris Mason u64 end; 9277c4452b9SChris Mason 9286300463bSLiu Bo atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers); 9291728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 930e6138876SJosef Bacik mark, &cached_state)) { 931663dfbb0SFilipe Manana bool wait_writeback = false; 932663dfbb0SFilipe Manana 933663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 934663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 935210aa277SDavid Sterba mark, &cached_state); 936663dfbb0SFilipe Manana /* 937663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 938663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 939663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 940663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 941bf89d38fSJeff Mahoney * to __btrfs_wait_marked_extents() would not know that 942bf89d38fSJeff Mahoney * writeback for this range started and therefore wouldn't 943bf89d38fSJeff Mahoney * wait for it to finish - we don't want to commit a 944bf89d38fSJeff Mahoney * superblock that points to btree nodes/leafs for which 945bf89d38fSJeff Mahoney * writeback hasn't finished yet (and without errors). 946663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 947663dfbb0SFilipe Manana * the transaction (through clear_btree_io_tree()). 948663dfbb0SFilipe Manana */ 949663dfbb0SFilipe Manana if (err == -ENOMEM) { 950663dfbb0SFilipe Manana err = 0; 951663dfbb0SFilipe Manana wait_writeback = true; 952663dfbb0SFilipe Manana } 953663dfbb0SFilipe Manana if (!err) 9541728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 9557c4452b9SChris Mason if (err) 9567c4452b9SChris Mason werr = err; 957663dfbb0SFilipe Manana else if (wait_writeback) 958663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 959e38e2ed7SFilipe Manana free_extent_state(cached_state); 960663dfbb0SFilipe Manana cached_state = NULL; 9611728366eSJosef Bacik cond_resched(); 9621728366eSJosef Bacik start = end + 1; 9637c4452b9SChris Mason } 9646300463bSLiu Bo atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers); 965690587d1SChris Mason return werr; 966690587d1SChris Mason } 967690587d1SChris Mason 968690587d1SChris Mason /* 969690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 970690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 971690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 972690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 973690587d1SChris Mason */ 974bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info, 975bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 976690587d1SChris Mason { 977690587d1SChris Mason int err = 0; 978690587d1SChris Mason int werr = 0; 9790b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 980e6138876SJosef Bacik struct extent_state *cached_state = NULL; 981690587d1SChris Mason u64 start = 0; 982690587d1SChris Mason u64 end; 983690587d1SChris Mason 9841728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 985e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 986663dfbb0SFilipe Manana /* 987663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 988663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 989663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 990663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 991663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 992663dfbb0SFilipe Manana * it's safe to do it (through clear_btree_io_tree()). 993663dfbb0SFilipe Manana */ 994663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 995ae0f1625SDavid Sterba EXTENT_NEED_WAIT, 0, 0, &cached_state); 996663dfbb0SFilipe Manana if (err == -ENOMEM) 997663dfbb0SFilipe Manana err = 0; 998663dfbb0SFilipe Manana if (!err) 9991728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 1000777e6bd7SChris Mason if (err) 1001777e6bd7SChris Mason werr = err; 1002e38e2ed7SFilipe Manana free_extent_state(cached_state); 1003e38e2ed7SFilipe Manana cached_state = NULL; 1004777e6bd7SChris Mason cond_resched(); 10051728366eSJosef Bacik start = end + 1; 1006777e6bd7SChris Mason } 10077c4452b9SChris Mason if (err) 10087c4452b9SChris Mason werr = err; 1009bf89d38fSJeff Mahoney return werr; 1010bf89d38fSJeff Mahoney } 1011656f30dbSFilipe Manana 1012bf89d38fSJeff Mahoney int btrfs_wait_extents(struct btrfs_fs_info *fs_info, 1013bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1014bf89d38fSJeff Mahoney { 1015bf89d38fSJeff Mahoney bool errors = false; 1016bf89d38fSJeff Mahoney int err; 1017bf89d38fSJeff Mahoney 1018bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1019bf89d38fSJeff Mahoney if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags)) 1020bf89d38fSJeff Mahoney errors = true; 1021bf89d38fSJeff Mahoney 1022bf89d38fSJeff Mahoney if (errors && !err) 1023bf89d38fSJeff Mahoney err = -EIO; 1024bf89d38fSJeff Mahoney return err; 1025bf89d38fSJeff Mahoney } 1026bf89d38fSJeff Mahoney 1027bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark) 1028bf89d38fSJeff Mahoney { 1029bf89d38fSJeff Mahoney struct btrfs_fs_info *fs_info = log_root->fs_info; 1030bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages; 1031bf89d38fSJeff Mahoney bool errors = false; 1032bf89d38fSJeff Mahoney int err; 1033bf89d38fSJeff Mahoney 1034bf89d38fSJeff Mahoney ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); 1035bf89d38fSJeff Mahoney 1036bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1037656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 10380b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags)) 1039656f30dbSFilipe Manana errors = true; 1040656f30dbSFilipe Manana 1041656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 10420b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags)) 1043656f30dbSFilipe Manana errors = true; 1044656f30dbSFilipe Manana 1045bf89d38fSJeff Mahoney if (errors && !err) 1046bf89d38fSJeff Mahoney err = -EIO; 1047bf89d38fSJeff Mahoney return err; 104879154b1bSChris Mason } 104979154b1bSChris Mason 1050690587d1SChris Mason /* 1051c9b577c0SNikolay Borisov * When btree blocks are allocated the corresponding extents are marked dirty. 1052c9b577c0SNikolay Borisov * This function ensures such extents are persisted on disk for transaction or 1053c9b577c0SNikolay Borisov * log commit. 1054c9b577c0SNikolay Borisov * 1055c9b577c0SNikolay Borisov * @trans: transaction whose dirty pages we'd like to write 1056690587d1SChris Mason */ 105770458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans) 1058d0c803c4SChris Mason { 1059663dfbb0SFilipe Manana int ret; 1060c9b577c0SNikolay Borisov int ret2; 1061c9b577c0SNikolay Borisov struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages; 106270458a58SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1063c9b577c0SNikolay Borisov struct blk_plug plug; 1064663dfbb0SFilipe Manana 1065c9b577c0SNikolay Borisov blk_start_plug(&plug); 1066c9b577c0SNikolay Borisov ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY); 1067c9b577c0SNikolay Borisov blk_finish_plug(&plug); 1068c9b577c0SNikolay Borisov ret2 = btrfs_wait_extents(fs_info, dirty_pages); 1069c9b577c0SNikolay Borisov 1070663dfbb0SFilipe Manana clear_btree_io_tree(&trans->transaction->dirty_pages); 1071663dfbb0SFilipe Manana 1072c9b577c0SNikolay Borisov if (ret) 1073663dfbb0SFilipe Manana return ret; 1074c9b577c0SNikolay Borisov else if (ret2) 1075c9b577c0SNikolay Borisov return ret2; 1076c9b577c0SNikolay Borisov else 1077c9b577c0SNikolay Borisov return 0; 1078d0c803c4SChris Mason } 1079d0c803c4SChris Mason 1080d352ac68SChris Mason /* 1081d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1082d352ac68SChris Mason * 1083d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1084d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1085d352ac68SChris Mason * allocation tree. 1086d352ac68SChris Mason * 1087d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1088d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1089d352ac68SChris Mason */ 10900b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 109179154b1bSChris Mason struct btrfs_root *root) 109279154b1bSChris Mason { 109379154b1bSChris Mason int ret; 10940b86a832SChris Mason u64 old_root_bytenr; 109586b9f2ecSYan, Zheng u64 old_root_used; 10960b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 10970b246afaSJeff Mahoney struct btrfs_root *tree_root = fs_info->tree_root; 109879154b1bSChris Mason 109986b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 110056bec294SChris Mason 110179154b1bSChris Mason while (1) { 11020b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 110386b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1104ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 110579154b1bSChris Mason break; 110687ef2bb4SChris Mason 11075d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 110879154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 11090b86a832SChris Mason &root->root_key, 11100b86a832SChris Mason &root->root_item); 111149b25e05SJeff Mahoney if (ret) 111249b25e05SJeff Mahoney return ret; 111356bec294SChris Mason 111486b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1115e7070be1SJosef Bacik } 1116276e680dSYan Zheng 11170b86a832SChris Mason return 0; 11180b86a832SChris Mason } 11190b86a832SChris Mason 1120d352ac68SChris Mason /* 1121d352ac68SChris Mason * update all the cowonly tree roots on disk 112249b25e05SJeff Mahoney * 112349b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 112449b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 112549b25e05SJeff Mahoney * to clean up the delayed refs. 1126d352ac68SChris Mason */ 11279386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans) 11280b86a832SChris Mason { 11299386d8bcSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1130ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 11311bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 11320b86a832SChris Mason struct list_head *next; 113384234f3aSYan Zheng struct extent_buffer *eb; 113456bec294SChris Mason int ret; 113584234f3aSYan Zheng 113684234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 113749b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 113849b25e05SJeff Mahoney 0, &eb); 113984234f3aSYan Zheng btrfs_tree_unlock(eb); 114084234f3aSYan Zheng free_extent_buffer(eb); 11410b86a832SChris Mason 114249b25e05SJeff Mahoney if (ret) 114349b25e05SJeff Mahoney return ret; 114449b25e05SJeff Mahoney 1145c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 114649b25e05SJeff Mahoney if (ret) 114749b25e05SJeff Mahoney return ret; 114887ef2bb4SChris Mason 11490b246afaSJeff Mahoney ret = btrfs_run_dev_stats(trans, fs_info); 1150c16ce190SJosef Bacik if (ret) 1151c16ce190SJosef Bacik return ret; 11520b246afaSJeff Mahoney ret = btrfs_run_dev_replace(trans, fs_info); 1153c16ce190SJosef Bacik if (ret) 1154c16ce190SJosef Bacik return ret; 11550b246afaSJeff Mahoney ret = btrfs_run_qgroups(trans, fs_info); 1156c16ce190SJosef Bacik if (ret) 1157c16ce190SJosef Bacik return ret; 1158546adb0dSJan Schmidt 11592ff7e61eSJeff Mahoney ret = btrfs_setup_space_cache(trans, fs_info); 1160dcdf7f6dSJosef Bacik if (ret) 1161dcdf7f6dSJosef Bacik return ret; 1162dcdf7f6dSJosef Bacik 1163546adb0dSJan Schmidt /* run_qgroups might have added some more refs */ 1164c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1165c16ce190SJosef Bacik if (ret) 1166c16ce190SJosef Bacik return ret; 1167ea526d18SJosef Bacik again: 11680b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 11692ff7e61eSJeff Mahoney struct btrfs_root *root; 11700b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 11710b86a832SChris Mason list_del_init(next); 11720b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1173e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 117487ef2bb4SChris Mason 11759e351cc8SJosef Bacik if (root != fs_info->extent_root) 11769e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 11779e351cc8SJosef Bacik &trans->transaction->switch_commits); 117849b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 117949b25e05SJeff Mahoney if (ret) 118049b25e05SJeff Mahoney return ret; 1181c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1182ea526d18SJosef Bacik if (ret) 1183ea526d18SJosef Bacik return ret; 118479154b1bSChris Mason } 1185276e680dSYan Zheng 11861bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 11872ff7e61eSJeff Mahoney ret = btrfs_write_dirty_block_groups(trans, fs_info); 1188ea526d18SJosef Bacik if (ret) 1189ea526d18SJosef Bacik return ret; 1190c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1191ea526d18SJosef Bacik if (ret) 1192ea526d18SJosef Bacik return ret; 1193ea526d18SJosef Bacik } 1194ea526d18SJosef Bacik 1195ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1196ea526d18SJosef Bacik goto again; 1197ea526d18SJosef Bacik 11989e351cc8SJosef Bacik list_add_tail(&fs_info->extent_root->dirty_list, 11999e351cc8SJosef Bacik &trans->transaction->switch_commits); 12008dabb742SStefan Behrens btrfs_after_dev_replace_commit(fs_info); 12018dabb742SStefan Behrens 120279154b1bSChris Mason return 0; 120379154b1bSChris Mason } 120479154b1bSChris Mason 1205d352ac68SChris Mason /* 1206d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1207d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1208d352ac68SChris Mason * be deleted 1209d352ac68SChris Mason */ 1210cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 12115eda7b5eSChris Mason { 12120b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12130b246afaSJeff Mahoney 12140b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1215cfad392bSJosef Bacik if (list_empty(&root->root_list)) 12160b246afaSJeff Mahoney list_add_tail(&root->root_list, &fs_info->dead_roots); 12170b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 12185eda7b5eSChris Mason } 12195eda7b5eSChris Mason 1220d352ac68SChris Mason /* 12215d4f98a2SYan Zheng * update all the cowonly tree roots on disk 1222d352ac68SChris Mason */ 12237e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans) 12240f7d52f4SChris Mason { 12257e4443d9SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 12260f7d52f4SChris Mason struct btrfs_root *gang[8]; 12270f7d52f4SChris Mason int i; 12280f7d52f4SChris Mason int ret; 122954aa1f4dSChris Mason int err = 0; 123054aa1f4dSChris Mason 1231a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 12320f7d52f4SChris Mason while (1) { 12335d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 12345d4f98a2SYan Zheng (void **)gang, 0, 12350f7d52f4SChris Mason ARRAY_SIZE(gang), 12360f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 12370f7d52f4SChris Mason if (ret == 0) 12380f7d52f4SChris Mason break; 12390f7d52f4SChris Mason for (i = 0; i < ret; i++) { 12405b4aacefSJeff Mahoney struct btrfs_root *root = gang[i]; 12415d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 12422619ba1fSChris Mason (unsigned long)root->root_key.objectid, 12430f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1244a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 124531153d81SYan Zheng 1246e02119d5SChris Mason btrfs_free_log(trans, root); 12475d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 1248e02119d5SChris Mason 124982d5902dSLi Zefan btrfs_save_ino_cache(root, trans); 125082d5902dSLi Zefan 1251f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 125227cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1253c7548af6SChris Mason smp_mb__after_atomic(); 1254f1ebcc74SLiu Bo 1255978d910dSYan Zheng if (root->commit_root != root->node) { 12569e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 12579e351cc8SJosef Bacik &trans->transaction->switch_commits); 1258978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 1259978d910dSYan Zheng root->node); 1260978d910dSYan Zheng } 126131153d81SYan Zheng 12625d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 12630f7d52f4SChris Mason &root->root_key, 12640f7d52f4SChris Mason &root->root_item); 1265a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 126654aa1f4dSChris Mason if (err) 126754aa1f4dSChris Mason break; 1268733e03a0SQu Wenruo btrfs_qgroup_free_meta_all_pertrans(root); 12690f7d52f4SChris Mason } 12709f3a7427SChris Mason } 1271a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 127254aa1f4dSChris Mason return err; 12730f7d52f4SChris Mason } 12740f7d52f4SChris Mason 1275d352ac68SChris Mason /* 1276de78b51aSEric Sandeen * defrag a given btree. 1277de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1278d352ac68SChris Mason */ 1279de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1280e9d0b13bSChris Mason { 1281e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1282e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 12838929ecfaSYan, Zheng int ret; 1284e9d0b13bSChris Mason 128527cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1286e9d0b13bSChris Mason return 0; 12878929ecfaSYan, Zheng 12886b80053dSChris Mason while (1) { 12898929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 12908929ecfaSYan, Zheng if (IS_ERR(trans)) 12918929ecfaSYan, Zheng return PTR_ERR(trans); 12928929ecfaSYan, Zheng 1293de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 12948929ecfaSYan, Zheng 12953a45bb20SJeff Mahoney btrfs_end_transaction(trans); 12962ff7e61eSJeff Mahoney btrfs_btree_balance_dirty(info); 1297e9d0b13bSChris Mason cond_resched(); 1298e9d0b13bSChris Mason 1299ab8d0fc4SJeff Mahoney if (btrfs_fs_closing(info) || ret != -EAGAIN) 1300e9d0b13bSChris Mason break; 1301210549ebSDavid Sterba 1302ab8d0fc4SJeff Mahoney if (btrfs_defrag_cancelled(info)) { 1303ab8d0fc4SJeff Mahoney btrfs_debug(info, "defrag_root cancelled"); 1304210549ebSDavid Sterba ret = -EAGAIN; 1305210549ebSDavid Sterba break; 1306210549ebSDavid Sterba } 1307e9d0b13bSChris Mason } 130827cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 13098929ecfaSYan, Zheng return ret; 1310e9d0b13bSChris Mason } 1311e9d0b13bSChris Mason 1312d352ac68SChris Mason /* 13136426c7adSQu Wenruo * Do all special snapshot related qgroup dirty hack. 13146426c7adSQu Wenruo * 13156426c7adSQu Wenruo * Will do all needed qgroup inherit and dirty hack like switch commit 13166426c7adSQu Wenruo * roots inside one transaction and write all btree into disk, to make 13176426c7adSQu Wenruo * qgroup works. 13186426c7adSQu Wenruo */ 13196426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, 13206426c7adSQu Wenruo struct btrfs_root *src, 13216426c7adSQu Wenruo struct btrfs_root *parent, 13226426c7adSQu Wenruo struct btrfs_qgroup_inherit *inherit, 13236426c7adSQu Wenruo u64 dst_objectid) 13246426c7adSQu Wenruo { 13256426c7adSQu Wenruo struct btrfs_fs_info *fs_info = src->fs_info; 13266426c7adSQu Wenruo int ret; 13276426c7adSQu Wenruo 13286426c7adSQu Wenruo /* 13296426c7adSQu Wenruo * Save some performance in the case that qgroups are not 13306426c7adSQu Wenruo * enabled. If this check races with the ioctl, rescan will 13316426c7adSQu Wenruo * kick in anyway. 13326426c7adSQu Wenruo */ 13339ea6e2b5SDavid Sterba if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) 13346426c7adSQu Wenruo return 0; 13356426c7adSQu Wenruo 13366426c7adSQu Wenruo /* 13374d31778aSQu Wenruo * Ensure dirty @src will be commited. Or, after comming 13384d31778aSQu Wenruo * commit_fs_roots() and switch_commit_roots(), any dirty but not 13394d31778aSQu Wenruo * recorded root will never be updated again, causing an outdated root 13404d31778aSQu Wenruo * item. 13414d31778aSQu Wenruo */ 13424d31778aSQu Wenruo record_root_in_trans(trans, src, 1); 13434d31778aSQu Wenruo 13444d31778aSQu Wenruo /* 13456426c7adSQu Wenruo * We are going to commit transaction, see btrfs_commit_transaction() 13466426c7adSQu Wenruo * comment for reason locking tree_log_mutex 13476426c7adSQu Wenruo */ 13486426c7adSQu Wenruo mutex_lock(&fs_info->tree_log_mutex); 13496426c7adSQu Wenruo 13507e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 13516426c7adSQu Wenruo if (ret) 13526426c7adSQu Wenruo goto out; 1353460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 13546426c7adSQu Wenruo if (ret < 0) 13556426c7adSQu Wenruo goto out; 13566426c7adSQu Wenruo 13576426c7adSQu Wenruo /* Now qgroup are all updated, we can inherit it to new qgroups */ 13586426c7adSQu Wenruo ret = btrfs_qgroup_inherit(trans, fs_info, 13596426c7adSQu Wenruo src->root_key.objectid, dst_objectid, 13606426c7adSQu Wenruo inherit); 13616426c7adSQu Wenruo if (ret < 0) 13626426c7adSQu Wenruo goto out; 13636426c7adSQu Wenruo 13646426c7adSQu Wenruo /* 13656426c7adSQu Wenruo * Now we do a simplified commit transaction, which will: 13666426c7adSQu Wenruo * 1) commit all subvolume and extent tree 13676426c7adSQu Wenruo * To ensure all subvolume and extent tree have a valid 13686426c7adSQu Wenruo * commit_root to accounting later insert_dir_item() 13696426c7adSQu Wenruo * 2) write all btree blocks onto disk 13706426c7adSQu Wenruo * This is to make sure later btree modification will be cowed 13716426c7adSQu Wenruo * Or commit_root can be populated and cause wrong qgroup numbers 13726426c7adSQu Wenruo * In this simplified commit, we don't really care about other trees 13736426c7adSQu Wenruo * like chunk and root tree, as they won't affect qgroup. 13746426c7adSQu Wenruo * And we don't write super to avoid half committed status. 13756426c7adSQu Wenruo */ 13769386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 13776426c7adSQu Wenruo if (ret) 13786426c7adSQu Wenruo goto out; 137916916a88SNikolay Borisov switch_commit_roots(trans->transaction); 138070458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 13816426c7adSQu Wenruo if (ret) 1382f7af3934SDavid Sterba btrfs_handle_fs_error(fs_info, ret, 13836426c7adSQu Wenruo "Error while writing out transaction for qgroup"); 13846426c7adSQu Wenruo 13856426c7adSQu Wenruo out: 13866426c7adSQu Wenruo mutex_unlock(&fs_info->tree_log_mutex); 13876426c7adSQu Wenruo 13886426c7adSQu Wenruo /* 13896426c7adSQu Wenruo * Force parent root to be updated, as we recorded it before so its 13906426c7adSQu Wenruo * last_trans == cur_transid. 13916426c7adSQu Wenruo * Or it won't be committed again onto disk after later 13926426c7adSQu Wenruo * insert_dir_item() 13936426c7adSQu Wenruo */ 13946426c7adSQu Wenruo if (!ret) 13956426c7adSQu Wenruo record_root_in_trans(trans, parent, 1); 13966426c7adSQu Wenruo return ret; 13976426c7adSQu Wenruo } 13986426c7adSQu Wenruo 13996426c7adSQu Wenruo /* 1400d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1401aec8030aSMiao Xie * transaction commit. This does the actual creation. 1402aec8030aSMiao Xie * 1403aec8030aSMiao Xie * Note: 1404aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1405aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1406aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1407d352ac68SChris Mason */ 140880b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 14093063d29fSChris Mason struct btrfs_pending_snapshot *pending) 14103063d29fSChris Mason { 141108d50ca3SNikolay Borisov 141208d50ca3SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 14133063d29fSChris Mason struct btrfs_key key; 141480b6794dSChris Mason struct btrfs_root_item *new_root_item; 14153063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 14163063d29fSChris Mason struct btrfs_root *root = pending->root; 14176bdb72deSSage Weil struct btrfs_root *parent_root; 141898c9942aSLiu Bo struct btrfs_block_rsv *rsv; 14196bdb72deSSage Weil struct inode *parent_inode; 142042874b3dSMiao Xie struct btrfs_path *path; 142142874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1422a22285a6SYan, Zheng struct dentry *dentry; 14233063d29fSChris Mason struct extent_buffer *tmp; 1424925baeddSChris Mason struct extent_buffer *old; 142595582b00SDeepa Dinamani struct timespec64 cur_time; 1426aec8030aSMiao Xie int ret = 0; 1427d68fc57bSYan, Zheng u64 to_reserve = 0; 14286bdb72deSSage Weil u64 index = 0; 1429a22285a6SYan, Zheng u64 objectid; 1430b83cc969SLi Zefan u64 root_flags; 14318ea05e3aSAlexander Block uuid_le new_uuid; 14323063d29fSChris Mason 14338546b570SDavid Sterba ASSERT(pending->path); 14348546b570SDavid Sterba path = pending->path; 143542874b3dSMiao Xie 1436b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1437b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1438a22285a6SYan, Zheng 1439aec8030aSMiao Xie pending->error = btrfs_find_free_objectid(tree_root, &objectid); 1440aec8030aSMiao Xie if (pending->error) 14416fa9700eSMiao Xie goto no_free_objectid; 14423063d29fSChris Mason 1443d6726335SQu Wenruo /* 1444d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1445d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1446d6726335SQu Wenruo */ 1447d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1448d6726335SQu Wenruo 1449147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1450d68fc57bSYan, Zheng 1451d68fc57bSYan, Zheng if (to_reserve > 0) { 1452aec8030aSMiao Xie pending->error = btrfs_block_rsv_add(root, 1453aec8030aSMiao Xie &pending->block_rsv, 145408e007d2SMiao Xie to_reserve, 145508e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1456aec8030aSMiao Xie if (pending->error) 1457d6726335SQu Wenruo goto clear_skip_qgroup; 1458d68fc57bSYan, Zheng } 1459d68fc57bSYan, Zheng 14603063d29fSChris Mason key.objectid = objectid; 1461a22285a6SYan, Zheng key.offset = (u64)-1; 1462a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 14633063d29fSChris Mason 14646fa9700eSMiao Xie rsv = trans->block_rsv; 1465a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 14662382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 14670b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 146888d3a5aaSJosef Bacik trans->transid, 146988d3a5aaSJosef Bacik trans->bytes_reserved, 1); 1470a22285a6SYan, Zheng dentry = pending->dentry; 1471e9662f70SMiao Xie parent_inode = pending->dir; 1472a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 14736426c7adSQu Wenruo record_root_in_trans(trans, parent_root, 0); 1474a22285a6SYan, Zheng 1475c2050a45SDeepa Dinamani cur_time = current_time(parent_inode); 147604b285f3SDeepa Dinamani 14776bdb72deSSage Weil /* 14786bdb72deSSage Weil * insert the directory item 14796bdb72deSSage Weil */ 1480877574e2SNikolay Borisov ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index); 148149b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 148242874b3dSMiao Xie 148342874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 148442874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 14854a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), 148642874b3dSMiao Xie dentry->d_name.name, 148742874b3dSMiao Xie dentry->d_name.len, 0); 148842874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1489fe66a05aSChris Mason pending->error = -EEXIST; 1490aec8030aSMiao Xie goto dir_item_existed; 149142874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 149242874b3dSMiao Xie ret = PTR_ERR(dir_item); 149366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 14948732d44fSMiao Xie goto fail; 149579787eaaSJeff Mahoney } 149642874b3dSMiao Xie btrfs_release_path(path); 14976bdb72deSSage Weil 1498e999376fSChris Mason /* 1499e999376fSChris Mason * pull in the delayed directory update 1500e999376fSChris Mason * and the delayed inode item 1501e999376fSChris Mason * otherwise we corrupt the FS during 1502e999376fSChris Mason * snapshot 1503e999376fSChris Mason */ 1504e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 15058732d44fSMiao Xie if (ret) { /* Transaction aborted */ 150666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15078732d44fSMiao Xie goto fail; 15088732d44fSMiao Xie } 1509e999376fSChris Mason 15106426c7adSQu Wenruo record_root_in_trans(trans, root, 0); 15116bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 15126bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 151308fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 15146bdb72deSSage Weil 1515b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1516b83cc969SLi Zefan if (pending->readonly) 1517b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1518b83cc969SLi Zefan else 1519b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1520b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1521b83cc969SLi Zefan 15228ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 15238ea05e3aSAlexander Block trans->transid); 15248ea05e3aSAlexander Block uuid_le_gen(&new_uuid); 15258ea05e3aSAlexander Block memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE); 15268ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 15278ea05e3aSAlexander Block BTRFS_UUID_SIZE); 152870023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 152970023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 153070023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 15318ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 15328ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 15338ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 15348ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 153570023da2SStefan Behrens } 15363cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 15373cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 153870023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 15398ea05e3aSAlexander Block 1540925baeddSChris Mason old = btrfs_lock_root_node(root); 154149b25e05SJeff Mahoney ret = btrfs_cow_block(trans, root, old, NULL, 0, &old); 154279787eaaSJeff Mahoney if (ret) { 154379787eaaSJeff Mahoney btrfs_tree_unlock(old); 154479787eaaSJeff Mahoney free_extent_buffer(old); 154566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15468732d44fSMiao Xie goto fail; 154779787eaaSJeff Mahoney } 154849b25e05SJeff Mahoney 15495d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 15503063d29fSChris Mason 155149b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 155279787eaaSJeff Mahoney /* clean up in any case */ 1553925baeddSChris Mason btrfs_tree_unlock(old); 1554925baeddSChris Mason free_extent_buffer(old); 15558732d44fSMiao Xie if (ret) { 155666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15578732d44fSMiao Xie goto fail; 15588732d44fSMiao Xie } 1559f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 156027cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1561f1ebcc74SLiu Bo smp_wmb(); 1562f1ebcc74SLiu Bo 15635d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1564a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1565a22285a6SYan, Zheng key.offset = trans->transid; 1566a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1567925baeddSChris Mason btrfs_tree_unlock(tmp); 15683063d29fSChris Mason free_extent_buffer(tmp); 15698732d44fSMiao Xie if (ret) { 157066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15718732d44fSMiao Xie goto fail; 15728732d44fSMiao Xie } 15730660b5afSChris Mason 1574a22285a6SYan, Zheng /* 1575a22285a6SYan, Zheng * insert root back/forward references 1576a22285a6SYan, Zheng */ 15776bccf3abSJeff Mahoney ret = btrfs_add_root_ref(trans, fs_info, objectid, 1578a22285a6SYan, Zheng parent_root->root_key.objectid, 15794a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), index, 1580a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 15818732d44fSMiao Xie if (ret) { 158266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15838732d44fSMiao Xie goto fail; 15848732d44fSMiao Xie } 1585a22285a6SYan, Zheng 1586a22285a6SYan, Zheng key.offset = (u64)-1; 15870b246afaSJeff Mahoney pending->snap = btrfs_read_fs_root_no_name(fs_info, &key); 158879787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 158979787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 159066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15918732d44fSMiao Xie goto fail; 159279787eaaSJeff Mahoney } 1593d68fc57bSYan, Zheng 159449b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 15958732d44fSMiao Xie if (ret) { 159666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15978732d44fSMiao Xie goto fail; 15988732d44fSMiao Xie } 1599361048f5SMiao Xie 1600c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 16018732d44fSMiao Xie if (ret) { 160266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16038732d44fSMiao Xie goto fail; 16048732d44fSMiao Xie } 160542874b3dSMiao Xie 16066426c7adSQu Wenruo /* 16076426c7adSQu Wenruo * Do special qgroup accounting for snapshot, as we do some qgroup 16086426c7adSQu Wenruo * snapshot hack to do fast snapshot. 16096426c7adSQu Wenruo * To co-operate with that hack, we do hack again. 16106426c7adSQu Wenruo * Or snapshot will be greatly slowed down by a subtree qgroup rescan 16116426c7adSQu Wenruo */ 16126426c7adSQu Wenruo ret = qgroup_account_snapshot(trans, root, parent_root, 16136426c7adSQu Wenruo pending->inherit, objectid); 16146426c7adSQu Wenruo if (ret < 0) 16156426c7adSQu Wenruo goto fail; 16166426c7adSQu Wenruo 161742874b3dSMiao Xie ret = btrfs_insert_dir_item(trans, parent_root, 161842874b3dSMiao Xie dentry->d_name.name, dentry->d_name.len, 16198e7611cfSNikolay Borisov BTRFS_I(parent_inode), &key, 162042874b3dSMiao Xie BTRFS_FT_DIR, index); 162142874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 16229c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 16238732d44fSMiao Xie if (ret) { 162466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16258732d44fSMiao Xie goto fail; 16268732d44fSMiao Xie } 162742874b3dSMiao Xie 16286ef06d27SNikolay Borisov btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size + 162942874b3dSMiao Xie dentry->d_name.len * 2); 163004b285f3SDeepa Dinamani parent_inode->i_mtime = parent_inode->i_ctime = 1631c2050a45SDeepa Dinamani current_time(parent_inode); 1632be6aef60SJosef Bacik ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode); 1633dd5f9615SStefan Behrens if (ret) { 163466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1635dd5f9615SStefan Behrens goto fail; 1636dd5f9615SStefan Behrens } 1637cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_uuid.b, BTRFS_UUID_KEY_SUBVOL, 1638cdb345a8SLu Fengqi objectid); 1639dd5f9615SStefan Behrens if (ret) { 164066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1641dd5f9615SStefan Behrens goto fail; 1642dd5f9615SStefan Behrens } 1643dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1644cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid, 1645dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1646dd5f9615SStefan Behrens objectid); 1647dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 164866642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1649dd5f9615SStefan Behrens goto fail; 1650dd5f9615SStefan Behrens } 1651dd5f9615SStefan Behrens } 1652d6726335SQu Wenruo 1653c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1654d6726335SQu Wenruo if (ret) { 165566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1656d6726335SQu Wenruo goto fail; 1657d6726335SQu Wenruo } 1658d6726335SQu Wenruo 16593063d29fSChris Mason fail: 1660aec8030aSMiao Xie pending->error = ret; 1661aec8030aSMiao Xie dir_item_existed: 166298c9942aSLiu Bo trans->block_rsv = rsv; 16632382c5ccSLiu Bo trans->bytes_reserved = 0; 1664d6726335SQu Wenruo clear_skip_qgroup: 1665d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 16666fa9700eSMiao Xie no_free_objectid: 16676fa9700eSMiao Xie kfree(new_root_item); 1668b0c0ea63SDavid Sterba pending->root_item = NULL; 166942874b3dSMiao Xie btrfs_free_path(path); 16708546b570SDavid Sterba pending->path = NULL; 16718546b570SDavid Sterba 167249b25e05SJeff Mahoney return ret; 16733063d29fSChris Mason } 16743063d29fSChris Mason 1675d352ac68SChris Mason /* 1676d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1677d352ac68SChris Mason */ 167808d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans) 16793063d29fSChris Mason { 1680aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 16813063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1682aec8030aSMiao Xie int ret = 0; 16833de4586cSChris Mason 1684aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1685aec8030aSMiao Xie list_del(&pending->list); 168608d50ca3SNikolay Borisov ret = create_pending_snapshot(trans, pending); 1687aec8030aSMiao Xie if (ret) 1688aec8030aSMiao Xie break; 1689aec8030aSMiao Xie } 1690aec8030aSMiao Xie return ret; 16913de4586cSChris Mason } 16923de4586cSChris Mason 16932ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info) 16945d4f98a2SYan Zheng { 16955d4f98a2SYan Zheng struct btrfs_root_item *root_item; 16965d4f98a2SYan Zheng struct btrfs_super_block *super; 16975d4f98a2SYan Zheng 16980b246afaSJeff Mahoney super = fs_info->super_copy; 16995d4f98a2SYan Zheng 17000b246afaSJeff Mahoney root_item = &fs_info->chunk_root->root_item; 1701093e037cSDavid Sterba super->chunk_root = root_item->bytenr; 1702093e037cSDavid Sterba super->chunk_root_generation = root_item->generation; 1703093e037cSDavid Sterba super->chunk_root_level = root_item->level; 17045d4f98a2SYan Zheng 17050b246afaSJeff Mahoney root_item = &fs_info->tree_root->root_item; 1706093e037cSDavid Sterba super->root = root_item->bytenr; 1707093e037cSDavid Sterba super->generation = root_item->generation; 1708093e037cSDavid Sterba super->root_level = root_item->level; 17090b246afaSJeff Mahoney if (btrfs_test_opt(fs_info, SPACE_CACHE)) 1710093e037cSDavid Sterba super->cache_generation = root_item->generation; 17110b246afaSJeff Mahoney if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)) 1712093e037cSDavid Sterba super->uuid_tree_generation = root_item->generation; 17135d4f98a2SYan Zheng } 17145d4f98a2SYan Zheng 1715f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1716f36f3042SChris Mason { 17174a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1718f36f3042SChris Mason int ret = 0; 17194a9d8bdeSMiao Xie 1720a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 17214a9d8bdeSMiao Xie trans = info->running_transaction; 17224a9d8bdeSMiao Xie if (trans) 17234a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1724a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1725f36f3042SChris Mason return ret; 1726f36f3042SChris Mason } 1727f36f3042SChris Mason 17288929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 17298929ecfaSYan, Zheng { 17304a9d8bdeSMiao Xie struct btrfs_transaction *trans; 17318929ecfaSYan, Zheng int ret = 0; 17324a9d8bdeSMiao Xie 1733a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 17344a9d8bdeSMiao Xie trans = info->running_transaction; 17354a9d8bdeSMiao Xie if (trans) 17364a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1737a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 17388929ecfaSYan, Zheng return ret; 17398929ecfaSYan, Zheng } 17408929ecfaSYan, Zheng 1741bb9c12c9SSage Weil /* 1742bb9c12c9SSage Weil * wait for the current transaction commit to start and block subsequent 1743bb9c12c9SSage Weil * transaction joins 1744bb9c12c9SSage Weil */ 17452ff7e61eSJeff Mahoney static void wait_current_trans_commit_start(struct btrfs_fs_info *fs_info, 1746bb9c12c9SSage Weil struct btrfs_transaction *trans) 1747bb9c12c9SSage Weil { 17482ff7e61eSJeff Mahoney wait_event(fs_info->transaction_blocked_wait, 17492ff7e61eSJeff Mahoney trans->state >= TRANS_STATE_COMMIT_START || trans->aborted); 1750bb9c12c9SSage Weil } 1751bb9c12c9SSage Weil 1752bb9c12c9SSage Weil /* 1753bb9c12c9SSage Weil * wait for the current transaction to start and then become unblocked. 1754bb9c12c9SSage Weil * caller holds ref. 1755bb9c12c9SSage Weil */ 17562ff7e61eSJeff Mahoney static void wait_current_trans_commit_start_and_unblock( 17572ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info, 1758bb9c12c9SSage Weil struct btrfs_transaction *trans) 1759bb9c12c9SSage Weil { 17602ff7e61eSJeff Mahoney wait_event(fs_info->transaction_wait, 17612ff7e61eSJeff Mahoney trans->state >= TRANS_STATE_UNBLOCKED || trans->aborted); 1762bb9c12c9SSage Weil } 1763bb9c12c9SSage Weil 1764bb9c12c9SSage Weil /* 1765bb9c12c9SSage Weil * commit transactions asynchronously. once btrfs_commit_transaction_async 1766bb9c12c9SSage Weil * returns, any subsequent transaction will not be allowed to join. 1767bb9c12c9SSage Weil */ 1768bb9c12c9SSage Weil struct btrfs_async_commit { 1769bb9c12c9SSage Weil struct btrfs_trans_handle *newtrans; 17707892b5afSMiao Xie struct work_struct work; 1771bb9c12c9SSage Weil }; 1772bb9c12c9SSage Weil 1773bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work) 1774bb9c12c9SSage Weil { 1775bb9c12c9SSage Weil struct btrfs_async_commit *ac = 17767892b5afSMiao Xie container_of(work, struct btrfs_async_commit, work); 1777bb9c12c9SSage Weil 17786fc4e354SSage Weil /* 17796fc4e354SSage Weil * We've got freeze protection passed with the transaction. 17806fc4e354SSage Weil * Tell lockdep about it. 17816fc4e354SSage Weil */ 1782b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 17833a45bb20SJeff Mahoney __sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS); 17846fc4e354SSage Weil 1785e209db7aSSage Weil current->journal_info = ac->newtrans; 1786e209db7aSSage Weil 17873a45bb20SJeff Mahoney btrfs_commit_transaction(ac->newtrans); 1788bb9c12c9SSage Weil kfree(ac); 1789bb9c12c9SSage Weil } 1790bb9c12c9SSage Weil 1791bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, 1792bb9c12c9SSage Weil int wait_for_unblock) 1793bb9c12c9SSage Weil { 17943a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 1795bb9c12c9SSage Weil struct btrfs_async_commit *ac; 1796bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1797bb9c12c9SSage Weil 1798bb9c12c9SSage Weil ac = kmalloc(sizeof(*ac), GFP_NOFS); 1799db5b493aSTsutomu Itoh if (!ac) 1800db5b493aSTsutomu Itoh return -ENOMEM; 1801bb9c12c9SSage Weil 18027892b5afSMiao Xie INIT_WORK(&ac->work, do_async_commit); 18033a45bb20SJeff Mahoney ac->newtrans = btrfs_join_transaction(trans->root); 18043612b495STsutomu Itoh if (IS_ERR(ac->newtrans)) { 18053612b495STsutomu Itoh int err = PTR_ERR(ac->newtrans); 18063612b495STsutomu Itoh kfree(ac); 18073612b495STsutomu Itoh return err; 18083612b495STsutomu Itoh } 1809bb9c12c9SSage Weil 1810bb9c12c9SSage Weil /* take transaction reference */ 1811bb9c12c9SSage Weil cur_trans = trans->transaction; 18129b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 1813bb9c12c9SSage Weil 18143a45bb20SJeff Mahoney btrfs_end_transaction(trans); 18156fc4e354SSage Weil 18166fc4e354SSage Weil /* 18176fc4e354SSage Weil * Tell lockdep we've released the freeze rwsem, since the 18186fc4e354SSage Weil * async commit thread will be the one to unlock it. 18196fc4e354SSage Weil */ 1820b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 18210b246afaSJeff Mahoney __sb_writers_release(fs_info->sb, SB_FREEZE_FS); 18226fc4e354SSage Weil 18237892b5afSMiao Xie schedule_work(&ac->work); 1824bb9c12c9SSage Weil 1825bb9c12c9SSage Weil /* wait for transaction to start and unblock */ 1826bb9c12c9SSage Weil if (wait_for_unblock) 18272ff7e61eSJeff Mahoney wait_current_trans_commit_start_and_unblock(fs_info, cur_trans); 1828bb9c12c9SSage Weil else 18292ff7e61eSJeff Mahoney wait_current_trans_commit_start(fs_info, cur_trans); 1830bb9c12c9SSage Weil 183138e88054SSage Weil if (current->journal_info == trans) 183238e88054SSage Weil current->journal_info = NULL; 183338e88054SSage Weil 1834724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1835bb9c12c9SSage Weil return 0; 1836bb9c12c9SSage Weil } 1837bb9c12c9SSage Weil 183849b25e05SJeff Mahoney 183997cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err) 184049b25e05SJeff Mahoney { 184197cb39bbSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 184249b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 1843f094ac32SLiu Bo DEFINE_WAIT(wait); 184449b25e05SJeff Mahoney 1845b50fff81SDavid Sterba WARN_ON(refcount_read(&trans->use_count) > 1); 184649b25e05SJeff Mahoney 184766642832SJeff Mahoney btrfs_abort_transaction(trans, err); 18487b8b92afSJosef Bacik 18490b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 185066b6135bSLiu Bo 185125d8c284SMiao Xie /* 185225d8c284SMiao Xie * If the transaction is removed from the list, it means this 185325d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 185425d8c284SMiao Xie * to call the cleanup function. 185525d8c284SMiao Xie */ 185625d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 185766b6135bSLiu Bo 185849b25e05SJeff Mahoney list_del_init(&cur_trans->list); 18590b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) { 18604a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 18610b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 1862f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1863f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1864f094ac32SLiu Bo 18650b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1866d7096fc3SJosef Bacik } 18670b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 186849b25e05SJeff Mahoney 18692ff7e61eSJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, fs_info); 187049b25e05SJeff Mahoney 18710b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 18720b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) 18730b246afaSJeff Mahoney fs_info->running_transaction = NULL; 18740b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 18754a9d8bdeSMiao Xie 1876e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 18770b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 1878724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1879724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 188049b25e05SJeff Mahoney 188197cb39bbSNikolay Borisov trace_btrfs_transaction_commit(trans->root); 188249b25e05SJeff Mahoney 188349b25e05SJeff Mahoney if (current->journal_info == trans) 188449b25e05SJeff Mahoney current->journal_info = NULL; 18850b246afaSJeff Mahoney btrfs_scrub_cancel(fs_info); 188649b25e05SJeff Mahoney 188749b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 188849b25e05SJeff Mahoney } 188949b25e05SJeff Mahoney 189082436617SMiao Xie static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 189182436617SMiao Xie { 1892ce8ea7ccSJosef Bacik /* 1893ce8ea7ccSJosef Bacik * We use writeback_inodes_sb here because if we used 1894ce8ea7ccSJosef Bacik * btrfs_start_delalloc_roots we would deadlock with fs freeze. 1895ce8ea7ccSJosef Bacik * Currently are holding the fs freeze lock, if we do an async flush 1896ce8ea7ccSJosef Bacik * we'll do btrfs_join_transaction() and deadlock because we need to 1897ce8ea7ccSJosef Bacik * wait for the fs freeze lock. Using the direct flushing we benefit 1898ce8ea7ccSJosef Bacik * from already being in a transaction and our join_transaction doesn't 1899ce8ea7ccSJosef Bacik * have to re-take the fs freeze lock. 1900ce8ea7ccSJosef Bacik */ 19013cdde224SJeff Mahoney if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 1902ce8ea7ccSJosef Bacik writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC); 190382436617SMiao Xie return 0; 190482436617SMiao Xie } 190582436617SMiao Xie 190682436617SMiao Xie static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 190782436617SMiao Xie { 19083cdde224SJeff Mahoney if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 19096374e57aSChris Mason btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); 191082436617SMiao Xie } 191182436617SMiao Xie 191250d9aa99SJosef Bacik static inline void 1913161c3549SJosef Bacik btrfs_wait_pending_ordered(struct btrfs_transaction *cur_trans) 191450d9aa99SJosef Bacik { 1915161c3549SJosef Bacik wait_event(cur_trans->pending_wait, 1916161c3549SJosef Bacik atomic_read(&cur_trans->pending_ordered) == 0); 191750d9aa99SJosef Bacik } 191850d9aa99SJosef Bacik 19193a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans) 192079154b1bSChris Mason { 19213a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 192249b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 19238fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 192425287e0aSMiao Xie int ret; 192579154b1bSChris Mason 19268d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 192720c7bcecSSeraphime Kirkovski if (unlikely(READ_ONCE(cur_trans->aborted))) { 192825287e0aSMiao Xie ret = cur_trans->aborted; 19293a45bb20SJeff Mahoney btrfs_end_transaction(trans); 1930e4a2bcacSJosef Bacik return ret; 193125287e0aSMiao Xie } 193249b25e05SJeff Mahoney 193356bec294SChris Mason /* make a pass through all the delayed refs we have so far 193456bec294SChris Mason * any runnings procs may add more while we are here 193556bec294SChris Mason */ 1936c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 1937e4a2bcacSJosef Bacik if (ret) { 19383a45bb20SJeff Mahoney btrfs_end_transaction(trans); 1939e4a2bcacSJosef Bacik return ret; 1940e4a2bcacSJosef Bacik } 194156bec294SChris Mason 1942dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 19430e721106SJosef Bacik trans->block_rsv = NULL; 19440e721106SJosef Bacik 1945b7ec40d7SChris Mason cur_trans = trans->transaction; 194649b25e05SJeff Mahoney 194756bec294SChris Mason /* 194856bec294SChris Mason * set the flushing flag so procs in this transaction have to 194956bec294SChris Mason * start sending their work down. 195056bec294SChris Mason */ 1951b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 19521be41b78SJosef Bacik smp_wmb(); 195356bec294SChris Mason 1954ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 19556c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 1956ea658badSJosef Bacik 1957c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 1958e4a2bcacSJosef Bacik if (ret) { 19593a45bb20SJeff Mahoney btrfs_end_transaction(trans); 1960e4a2bcacSJosef Bacik return ret; 1961e4a2bcacSJosef Bacik } 196256bec294SChris Mason 19633204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 19641bbc621eSChris Mason int run_it = 0; 19651bbc621eSChris Mason 19661bbc621eSChris Mason /* this mutex is also taken before trying to set 19671bbc621eSChris Mason * block groups readonly. We need to make sure 19681bbc621eSChris Mason * that nobody has set a block group readonly 19691bbc621eSChris Mason * after a extents from that block group have been 19701bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 19711bbc621eSChris Mason * will wait for the transaction to commit if it 19723204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 19731bbc621eSChris Mason * 19743204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 19753204d33cSJosef Bacik * only one process starts all the block group IO. It wouldn't 19761bbc621eSChris Mason * hurt to have more than one go through, but there's no 19771bbc621eSChris Mason * real advantage to it either. 19781bbc621eSChris Mason */ 19790b246afaSJeff Mahoney mutex_lock(&fs_info->ro_block_group_mutex); 19803204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 19813204d33cSJosef Bacik &cur_trans->flags)) 19821bbc621eSChris Mason run_it = 1; 19830b246afaSJeff Mahoney mutex_unlock(&fs_info->ro_block_group_mutex); 19841bbc621eSChris Mason 1985f9cacae3SNikolay Borisov if (run_it) { 198621217054SNikolay Borisov ret = btrfs_start_dirty_block_groups(trans); 19871bbc621eSChris Mason if (ret) { 19883a45bb20SJeff Mahoney btrfs_end_transaction(trans); 19891bbc621eSChris Mason return ret; 19901bbc621eSChris Mason } 1991f9cacae3SNikolay Borisov } 1992f9cacae3SNikolay Borisov } 19931bbc621eSChris Mason 19940b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 19954a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 19960b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 19979b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 19983a45bb20SJeff Mahoney ret = btrfs_end_transaction(trans); 1999ccd467d6SChris Mason 20002ff7e61eSJeff Mahoney wait_for_commit(cur_trans); 200115ee9bc7SJosef Bacik 2002b4924a0fSLiu Bo if (unlikely(cur_trans->aborted)) 2003b4924a0fSLiu Bo ret = cur_trans->aborted; 2004b4924a0fSLiu Bo 2005724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 200615ee9bc7SJosef Bacik 200749b25e05SJeff Mahoney return ret; 200879154b1bSChris Mason } 20094313b399SChris Mason 20104a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 20110b246afaSJeff Mahoney wake_up(&fs_info->transaction_blocked_wait); 2012bb9c12c9SSage Weil 20130b246afaSJeff Mahoney if (cur_trans->list.prev != &fs_info->trans_list) { 2014ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 2015ccd467d6SChris Mason struct btrfs_transaction, list); 20164a9d8bdeSMiao Xie if (prev_trans->state != TRANS_STATE_COMPLETED) { 20179b64f57dSElena Reshetova refcount_inc(&prev_trans->use_count); 20180b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2019ccd467d6SChris Mason 20202ff7e61eSJeff Mahoney wait_for_commit(prev_trans); 20211f9b8c8fSFilipe Manana ret = prev_trans->aborted; 2022ccd467d6SChris Mason 2023724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 20241f9b8c8fSFilipe Manana if (ret) 20251f9b8c8fSFilipe Manana goto cleanup_transaction; 2026a4abeea4SJosef Bacik } else { 20270b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2028ccd467d6SChris Mason } 2029a4abeea4SJosef Bacik } else { 20300b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2031ccd467d6SChris Mason } 203215ee9bc7SJosef Bacik 20330860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 20340860adfdSMiao Xie 20350b246afaSJeff Mahoney ret = btrfs_start_delalloc_flush(fs_info); 203682436617SMiao Xie if (ret) 203782436617SMiao Xie goto cleanup_transaction; 203882436617SMiao Xie 2039e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 204049b25e05SJeff Mahoney if (ret) 204149b25e05SJeff Mahoney goto cleanup_transaction; 204216cdcec7SMiao Xie 2043581227d0SMiao Xie wait_event(cur_trans->writer_wait, 2044581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 2045ed3b3d31SChris Mason 2046581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 2047e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 2048ca469637SMiao Xie if (ret) 2049ca469637SMiao Xie goto cleanup_transaction; 2050ca469637SMiao Xie 20510b246afaSJeff Mahoney btrfs_wait_delalloc_flush(fs_info); 2052cb7ab021SWang Shilong 2053161c3549SJosef Bacik btrfs_wait_pending_ordered(cur_trans); 205450d9aa99SJosef Bacik 20552ff7e61eSJeff Mahoney btrfs_scrub_pause(fs_info); 2056ed0ca140SJosef Bacik /* 2057ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 2058ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 20594a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 2060ed0ca140SJosef Bacik */ 20610b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 20624a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 20630b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2064ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 2065ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 206615ee9bc7SJosef Bacik 20672cba30f1SMiao Xie /* ->aborted might be set after the previous check, so check it */ 206820c7bcecSSeraphime Kirkovski if (unlikely(READ_ONCE(cur_trans->aborted))) { 20692cba30f1SMiao Xie ret = cur_trans->aborted; 20706cf7f77eSWang Shilong goto scrub_continue; 20712cba30f1SMiao Xie } 20727585717fSChris Mason /* 20737585717fSChris Mason * the reloc mutex makes sure that we stop 20747585717fSChris Mason * the balancing code from coming in and moving 20757585717fSChris Mason * extents around in the middle of the commit 20767585717fSChris Mason */ 20770b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 20787585717fSChris Mason 207942874b3dSMiao Xie /* 208042874b3dSMiao Xie * We needn't worry about the delayed items because we will 208142874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 208242874b3dSMiao Xie * core function of the snapshot creation. 208342874b3dSMiao Xie */ 208408d50ca3SNikolay Borisov ret = create_pending_snapshots(trans); 208549b25e05SJeff Mahoney if (ret) { 20860b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 20876cf7f77eSWang Shilong goto scrub_continue; 208849b25e05SJeff Mahoney } 20893063d29fSChris Mason 209042874b3dSMiao Xie /* 209142874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 209242874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 209342874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 209442874b3dSMiao Xie * them. 209542874b3dSMiao Xie * 209642874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 209742874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 209842874b3dSMiao Xie * the nodes and leaves. 209942874b3dSMiao Xie */ 2100e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 210149b25e05SJeff Mahoney if (ret) { 21020b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21036cf7f77eSWang Shilong goto scrub_continue; 210449b25e05SJeff Mahoney } 210516cdcec7SMiao Xie 2106c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 210749b25e05SJeff Mahoney if (ret) { 21080b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21096cf7f77eSWang Shilong goto scrub_continue; 211049b25e05SJeff Mahoney } 211156bec294SChris Mason 2112e999376fSChris Mason /* 2113e999376fSChris Mason * make sure none of the code above managed to slip in a 2114e999376fSChris Mason * delayed item 2115e999376fSChris Mason */ 2116ccdf9b30SJeff Mahoney btrfs_assert_delayed_root_empty(fs_info); 2117e999376fSChris Mason 21182c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2119dc17ff8fSChris Mason 2120e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 2121e02119d5SChris Mason * various roots consistent with each other. Every pointer 2122e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 2123e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 2124e02119d5SChris Mason * the tree logging code from jumping in and changing any 2125e02119d5SChris Mason * of the trees. 2126e02119d5SChris Mason * 2127e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 2128e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 2129e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 2130e02119d5SChris Mason * from now until after the super is written, we avoid races 2131e02119d5SChris Mason * with the tree-log code. 2132e02119d5SChris Mason */ 21330b246afaSJeff Mahoney mutex_lock(&fs_info->tree_log_mutex); 21341a40e23bSZheng Yan 21357e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 213649b25e05SJeff Mahoney if (ret) { 21370b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 21380b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21396cf7f77eSWang Shilong goto scrub_continue; 214049b25e05SJeff Mahoney } 214154aa1f4dSChris Mason 21423818aea2SQu Wenruo /* 21437e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 21447e1876acSDavid Sterba * before the next transaction. 21453818aea2SQu Wenruo */ 21460b246afaSJeff Mahoney btrfs_apply_pending_changes(fs_info); 21473818aea2SQu Wenruo 21485d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2149e02119d5SChris Mason * safe to free the root of tree log roots 2150e02119d5SChris Mason */ 21510b246afaSJeff Mahoney btrfs_free_log_root_tree(trans, fs_info); 2152e02119d5SChris Mason 21530ed4792aSQu Wenruo /* 215482bafb38SQu Wenruo * commit_fs_roots() can call btrfs_save_ino_cache(), which generates 215582bafb38SQu Wenruo * new delayed refs. Must handle them or qgroup can be wrong. 215682bafb38SQu Wenruo */ 2157c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 215882bafb38SQu Wenruo if (ret) { 215982bafb38SQu Wenruo mutex_unlock(&fs_info->tree_log_mutex); 216082bafb38SQu Wenruo mutex_unlock(&fs_info->reloc_mutex); 216182bafb38SQu Wenruo goto scrub_continue; 216282bafb38SQu Wenruo } 216382bafb38SQu Wenruo 216482bafb38SQu Wenruo /* 21650ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 21660ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 21670ed4792aSQu Wenruo */ 2168460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 21690ed4792aSQu Wenruo if (ret < 0) { 21700b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 21710b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21720ed4792aSQu Wenruo goto scrub_continue; 21730ed4792aSQu Wenruo } 21740ed4792aSQu Wenruo 21759386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 217649b25e05SJeff Mahoney if (ret) { 21770b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 21780b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21796cf7f77eSWang Shilong goto scrub_continue; 218049b25e05SJeff Mahoney } 218154aa1f4dSChris Mason 21822cba30f1SMiao Xie /* 21832cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 21842cba30f1SMiao Xie * update ->aborted, check it. 21852cba30f1SMiao Xie */ 218620c7bcecSSeraphime Kirkovski if (unlikely(READ_ONCE(cur_trans->aborted))) { 21872cba30f1SMiao Xie ret = cur_trans->aborted; 21880b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 21890b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 21906cf7f77eSWang Shilong goto scrub_continue; 21912cba30f1SMiao Xie } 21922cba30f1SMiao Xie 21938b74c03eSDavid Sterba btrfs_prepare_extent_commit(fs_info); 219411833d66SYan Zheng 21950b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 21965f39d397SChris Mason 21970b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->tree_root->root_item, 21980b246afaSJeff Mahoney fs_info->tree_root->node); 21990b246afaSJeff Mahoney list_add_tail(&fs_info->tree_root->dirty_list, 22009e351cc8SJosef Bacik &cur_trans->switch_commits); 22015d4f98a2SYan Zheng 22020b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->chunk_root->root_item, 22030b246afaSJeff Mahoney fs_info->chunk_root->node); 22040b246afaSJeff Mahoney list_add_tail(&fs_info->chunk_root->dirty_list, 22059e351cc8SJosef Bacik &cur_trans->switch_commits); 22069e351cc8SJosef Bacik 220716916a88SNikolay Borisov switch_commit_roots(cur_trans); 22085d4f98a2SYan Zheng 2209ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 22101bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 22112ff7e61eSJeff Mahoney update_super_roots(fs_info); 2212e02119d5SChris Mason 22130b246afaSJeff Mahoney btrfs_set_super_log_root(fs_info->super_copy, 0); 22140b246afaSJeff Mahoney btrfs_set_super_log_root_level(fs_info->super_copy, 0); 22150b246afaSJeff Mahoney memcpy(fs_info->super_for_commit, fs_info->super_copy, 22160b246afaSJeff Mahoney sizeof(*fs_info->super_copy)); 2217ccd467d6SChris Mason 22180b246afaSJeff Mahoney btrfs_update_commit_device_size(fs_info); 2219e9b919b1SNikolay Borisov btrfs_update_commit_device_bytes_used(cur_trans); 2220935e5cc9SMiao Xie 22210b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags); 22220b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags); 2223656f30dbSFilipe Manana 22244fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 22254fbcdf66SFilipe Manana 22260b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 22274a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 22280b246afaSJeff Mahoney fs_info->running_transaction = NULL; 22290b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 22300b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 2231b7ec40d7SChris Mason 22320b246afaSJeff Mahoney wake_up(&fs_info->transaction_wait); 2233e6dcd2dcSChris Mason 223470458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 223549b25e05SJeff Mahoney if (ret) { 22360b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, 223708748810SDavid Sterba "Error while writing out transaction"); 22380b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 22396cf7f77eSWang Shilong goto scrub_continue; 224049b25e05SJeff Mahoney } 224149b25e05SJeff Mahoney 2242eece6a9cSDavid Sterba ret = write_all_supers(fs_info, 0); 2243e02119d5SChris Mason /* 2244e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2245e02119d5SChris Mason * to go about their business 2246e02119d5SChris Mason */ 22470b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 2248c1f32b7cSAnand Jain if (ret) 2249c1f32b7cSAnand Jain goto scrub_continue; 2250e02119d5SChris Mason 22515ead2dd0SNikolay Borisov btrfs_finish_extent_commit(trans); 22524313b399SChris Mason 22533204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 22540b246afaSJeff Mahoney btrfs_clear_space_info_full(fs_info); 225513212b54SZhao Lei 22560b246afaSJeff Mahoney fs_info->last_trans_committed = cur_trans->transid; 22574a9d8bdeSMiao Xie /* 22584a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 22594a9d8bdeSMiao Xie * which can change it. 22604a9d8bdeSMiao Xie */ 22614a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 22622c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 2263a514d638SQu Wenruo clear_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags); 22643de4586cSChris Mason 22650b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 226613c5a93eSJosef Bacik list_del_init(&cur_trans->list); 22670b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2268a4abeea4SJosef Bacik 2269724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2270724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 227158176a96SJosef Bacik 22720860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 22730b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2274b2b5ef5cSJan Kara 22753a45bb20SJeff Mahoney trace_btrfs_transaction_commit(trans->root); 22761abe9b8aSliubo 22772ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 2278a2de733cSArne Jansen 22799ed74f2dSJosef Bacik if (current->journal_info == trans) 22809ed74f2dSJosef Bacik current->journal_info = NULL; 22819ed74f2dSJosef Bacik 22822c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 228324bbcf04SYan, Zheng 22849e7cc91aSWang Xiaoguang /* 22859e7cc91aSWang Xiaoguang * If fs has been frozen, we can not handle delayed iputs, otherwise 22869e7cc91aSWang Xiaoguang * it'll result in deadlock about SB_FREEZE_FS. 22879e7cc91aSWang Xiaoguang */ 22880b246afaSJeff Mahoney if (current != fs_info->transaction_kthread && 2289fac03c8dSDavid Sterba current != fs_info->cleaner_kthread && 2290fac03c8dSDavid Sterba !test_bit(BTRFS_FS_FROZEN, &fs_info->flags)) 22912ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(fs_info); 229224bbcf04SYan, Zheng 229379154b1bSChris Mason return ret; 229449b25e05SJeff Mahoney 22956cf7f77eSWang Shilong scrub_continue: 22962ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 229749b25e05SJeff Mahoney cleanup_transaction: 2298dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 22994fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 23000e721106SJosef Bacik trans->block_rsv = NULL; 23010b246afaSJeff Mahoney btrfs_warn(fs_info, "Skipping commit of aborted transaction."); 230249b25e05SJeff Mahoney if (current->journal_info == trans) 230349b25e05SJeff Mahoney current->journal_info = NULL; 230497cb39bbSNikolay Borisov cleanup_transaction(trans, ret); 230549b25e05SJeff Mahoney 230649b25e05SJeff Mahoney return ret; 230779154b1bSChris Mason } 230879154b1bSChris Mason 2309d352ac68SChris Mason /* 23109d1a2a3aSDavid Sterba * return < 0 if error 23119d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 23129d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 23139d1a2a3aSDavid Sterba * 23149d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 23159d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 23169d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 23179d1a2a3aSDavid Sterba * few seconds later. 2318d352ac68SChris Mason */ 23199d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) 2320e9d0b13bSChris Mason { 23219d1a2a3aSDavid Sterba int ret; 23225d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 2323e9d0b13bSChris Mason 2324a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 23259d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 23269d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 23279d1a2a3aSDavid Sterba return 0; 23289d1a2a3aSDavid Sterba } 23299d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 23309d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2331cfad392bSJosef Bacik list_del_init(&root->root_list); 2332a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 23335d4f98a2SYan Zheng 2334ab8d0fc4SJeff Mahoney btrfs_debug(fs_info, "cleaner removing %llu", root->objectid); 233576dda93cSYan, Zheng 233616cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 233716cdcec7SMiao Xie 233876dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 233976dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 23402c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 0, 0); 234176dda93cSYan, Zheng else 23422c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 1, 0); 234332471dc2SDavid Sterba 23446596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2345e9d0b13bSChris Mason } 2346572d9ab7SDavid Sterba 2347572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2348572d9ab7SDavid Sterba { 2349572d9ab7SDavid Sterba unsigned long prev; 2350572d9ab7SDavid Sterba unsigned long bit; 2351572d9ab7SDavid Sterba 23526c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2353572d9ab7SDavid Sterba if (!prev) 2354572d9ab7SDavid Sterba return; 2355572d9ab7SDavid Sterba 23567e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE; 23577e1876acSDavid Sterba if (prev & bit) 23587e1876acSDavid Sterba btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); 23597e1876acSDavid Sterba prev &= ~bit; 23607e1876acSDavid Sterba 23617e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE; 23627e1876acSDavid Sterba if (prev & bit) 23637e1876acSDavid Sterba btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); 23647e1876acSDavid Sterba prev &= ~bit; 23657e1876acSDavid Sterba 2366d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2367d51033d0SDavid Sterba if (prev & bit) 2368d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2369d51033d0SDavid Sterba prev &= ~bit; 2370d51033d0SDavid Sterba 2371572d9ab7SDavid Sterba if (prev) 2372572d9ab7SDavid Sterba btrfs_warn(fs_info, 2373572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2374572d9ab7SDavid Sterba } 2375