16cbd5570SChris Mason /* 26cbd5570SChris Mason * Copyright (C) 2007 Oracle. All rights reserved. 36cbd5570SChris Mason * 46cbd5570SChris Mason * This program is free software; you can redistribute it and/or 56cbd5570SChris Mason * modify it under the terms of the GNU General Public 66cbd5570SChris Mason * License v2 as published by the Free Software Foundation. 76cbd5570SChris Mason * 86cbd5570SChris Mason * This program is distributed in the hope that it will be useful, 96cbd5570SChris Mason * but WITHOUT ANY WARRANTY; without even the implied warranty of 106cbd5570SChris Mason * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 116cbd5570SChris Mason * General Public License for more details. 126cbd5570SChris Mason * 136cbd5570SChris Mason * You should have received a copy of the GNU General Public 146cbd5570SChris Mason * License along with this program; if not, write to the 156cbd5570SChris Mason * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 166cbd5570SChris Mason * Boston, MA 021110-1307, USA. 176cbd5570SChris Mason */ 186cbd5570SChris Mason 1979154b1bSChris Mason #include <linux/fs.h> 205a0e3ad6STejun Heo #include <linux/slab.h> 2134088780SChris Mason #include <linux/sched.h> 22d3c2fdcfSChris Mason #include <linux/writeback.h> 235f39d397SChris Mason #include <linux/pagemap.h> 245f2cc086SChris Mason #include <linux/blkdev.h> 258ea05e3aSAlexander Block #include <linux/uuid.h> 2679154b1bSChris Mason #include "ctree.h" 2779154b1bSChris Mason #include "disk-io.h" 2879154b1bSChris Mason #include "transaction.h" 29925baeddSChris Mason #include "locking.h" 30e02119d5SChris Mason #include "tree-log.h" 31581bb050SLi Zefan #include "inode-map.h" 32733f4fbbSStefan Behrens #include "volumes.h" 338dabb742SStefan Behrens #include "dev-replace.h" 34fcebe456SJosef Bacik #include "qgroup.h" 3579154b1bSChris Mason 360f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0 370f7d52f4SChris Mason 38e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 394a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 404a9d8bdeSMiao Xie [TRANS_STATE_BLOCKED] = (__TRANS_USERSPACE | 414a9d8bdeSMiao Xie __TRANS_START), 424a9d8bdeSMiao Xie [TRANS_STATE_COMMIT_START] = (__TRANS_USERSPACE | 434a9d8bdeSMiao Xie __TRANS_START | 444a9d8bdeSMiao Xie __TRANS_ATTACH), 454a9d8bdeSMiao Xie [TRANS_STATE_COMMIT_DOING] = (__TRANS_USERSPACE | 464a9d8bdeSMiao Xie __TRANS_START | 474a9d8bdeSMiao Xie __TRANS_ATTACH | 484a9d8bdeSMiao Xie __TRANS_JOIN), 494a9d8bdeSMiao Xie [TRANS_STATE_UNBLOCKED] = (__TRANS_USERSPACE | 504a9d8bdeSMiao Xie __TRANS_START | 514a9d8bdeSMiao Xie __TRANS_ATTACH | 524a9d8bdeSMiao Xie __TRANS_JOIN | 534a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 544a9d8bdeSMiao Xie [TRANS_STATE_COMPLETED] = (__TRANS_USERSPACE | 554a9d8bdeSMiao Xie __TRANS_START | 564a9d8bdeSMiao Xie __TRANS_ATTACH | 574a9d8bdeSMiao Xie __TRANS_JOIN | 584a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 594a9d8bdeSMiao Xie }; 604a9d8bdeSMiao Xie 61724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction) 6279154b1bSChris Mason { 6313c5a93eSJosef Bacik WARN_ON(atomic_read(&transaction->use_count) == 0); 6413c5a93eSJosef Bacik if (atomic_dec_and_test(&transaction->use_count)) { 65a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 66c46effa6SLiu Bo WARN_ON(!RB_EMPTY_ROOT(&transaction->delayed_refs.href_root)); 671262133bSJosef Bacik if (transaction->delayed_refs.pending_csums) 681262133bSJosef Bacik printk(KERN_ERR "pending csums is %llu\n", 691262133bSJosef Bacik transaction->delayed_refs.pending_csums); 706df9a95eSJosef Bacik while (!list_empty(&transaction->pending_chunks)) { 716df9a95eSJosef Bacik struct extent_map *em; 726df9a95eSJosef Bacik 736df9a95eSJosef Bacik em = list_first_entry(&transaction->pending_chunks, 746df9a95eSJosef Bacik struct extent_map, list); 756df9a95eSJosef Bacik list_del_init(&em->list); 766df9a95eSJosef Bacik free_extent_map(em); 776df9a95eSJosef Bacik } 782c90e5d6SChris Mason kmem_cache_free(btrfs_transaction_cachep, transaction); 7979154b1bSChris Mason } 8078fae27eSChris Mason } 8179154b1bSChris Mason 82663dfbb0SFilipe Manana static void clear_btree_io_tree(struct extent_io_tree *tree) 83663dfbb0SFilipe Manana { 84663dfbb0SFilipe Manana spin_lock(&tree->lock); 85663dfbb0SFilipe Manana while (!RB_EMPTY_ROOT(&tree->state)) { 86663dfbb0SFilipe Manana struct rb_node *node; 87663dfbb0SFilipe Manana struct extent_state *state; 88663dfbb0SFilipe Manana 89663dfbb0SFilipe Manana node = rb_first(&tree->state); 90663dfbb0SFilipe Manana state = rb_entry(node, struct extent_state, rb_node); 91663dfbb0SFilipe Manana rb_erase(&state->rb_node, &tree->state); 92663dfbb0SFilipe Manana RB_CLEAR_NODE(&state->rb_node); 93663dfbb0SFilipe Manana /* 94663dfbb0SFilipe Manana * btree io trees aren't supposed to have tasks waiting for 95663dfbb0SFilipe Manana * changes in the flags of extent states ever. 96663dfbb0SFilipe Manana */ 97663dfbb0SFilipe Manana ASSERT(!waitqueue_active(&state->wq)); 98663dfbb0SFilipe Manana free_extent_state(state); 99351810c1SDavid Sterba 100351810c1SDavid Sterba cond_resched_lock(&tree->lock); 101663dfbb0SFilipe Manana } 102663dfbb0SFilipe Manana spin_unlock(&tree->lock); 103663dfbb0SFilipe Manana } 104663dfbb0SFilipe Manana 1059e351cc8SJosef Bacik static noinline void switch_commit_roots(struct btrfs_transaction *trans, 1069e351cc8SJosef Bacik struct btrfs_fs_info *fs_info) 107817d52f8SJosef Bacik { 1089e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 1099e351cc8SJosef Bacik 1109e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 1119e351cc8SJosef Bacik list_for_each_entry_safe(root, tmp, &trans->switch_commits, 1129e351cc8SJosef Bacik dirty_list) { 1139e351cc8SJosef Bacik list_del_init(&root->dirty_list); 114817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 115817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 1169e351cc8SJosef Bacik if (is_fstree(root->objectid)) 1179e351cc8SJosef Bacik btrfs_unpin_free_ino(root); 118663dfbb0SFilipe Manana clear_btree_io_tree(&root->dirty_log_pages); 1199e351cc8SJosef Bacik } 1202b9dbef2SJosef Bacik 1212b9dbef2SJosef Bacik /* We can free old roots now. */ 1222b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1232b9dbef2SJosef Bacik while (!list_empty(&trans->dropped_roots)) { 1242b9dbef2SJosef Bacik root = list_first_entry(&trans->dropped_roots, 1252b9dbef2SJosef Bacik struct btrfs_root, root_list); 1262b9dbef2SJosef Bacik list_del_init(&root->root_list); 1272b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1282b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 1292b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1302b9dbef2SJosef Bacik } 1312b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1329e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 133817d52f8SJosef Bacik } 134817d52f8SJosef Bacik 1350860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 1360860adfdSMiao Xie unsigned int type) 1370860adfdSMiao Xie { 1380860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1390860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 1400860adfdSMiao Xie } 1410860adfdSMiao Xie 1420860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 1430860adfdSMiao Xie unsigned int type) 1440860adfdSMiao Xie { 1450860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1460860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 1470860adfdSMiao Xie } 1480860adfdSMiao Xie 1490860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 1500860adfdSMiao Xie unsigned int type) 1510860adfdSMiao Xie { 1520860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 1530860adfdSMiao Xie } 1540860adfdSMiao Xie 1550860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 1560860adfdSMiao Xie { 1570860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 158178260b2SMiao Xie } 159178260b2SMiao Xie 160d352ac68SChris Mason /* 161d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 162d352ac68SChris Mason */ 1630860adfdSMiao Xie static noinline int join_transaction(struct btrfs_root *root, unsigned int type) 16479154b1bSChris Mason { 16579154b1bSChris Mason struct btrfs_transaction *cur_trans; 16619ae4e81SJan Schmidt struct btrfs_fs_info *fs_info = root->fs_info; 167a4abeea4SJosef Bacik 16819ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 169d43317dcSChris Mason loop: 17049b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 17187533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 17219ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 17349b25e05SJeff Mahoney return -EROFS; 17449b25e05SJeff Mahoney } 17549b25e05SJeff Mahoney 17619ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 177a4abeea4SJosef Bacik if (cur_trans) { 178871383beSDavid Sterba if (cur_trans->aborted) { 17919ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 18049b25e05SJeff Mahoney return cur_trans->aborted; 181871383beSDavid Sterba } 1824a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 183178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 184178260b2SMiao Xie return -EBUSY; 185178260b2SMiao Xie } 186a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 187a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 1880860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 18919ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 190a4abeea4SJosef Bacik return 0; 191a4abeea4SJosef Bacik } 19219ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 193a4abeea4SJosef Bacik 194354aa0fbSMiao Xie /* 195354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 196354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 197354aa0fbSMiao Xie */ 198354aa0fbSMiao Xie if (type == TRANS_ATTACH) 199354aa0fbSMiao Xie return -ENOENT; 200354aa0fbSMiao Xie 2014a9d8bdeSMiao Xie /* 2024a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 2034a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 2044a9d8bdeSMiao Xie */ 2054a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 2064a9d8bdeSMiao Xie 207a4abeea4SJosef Bacik cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS); 208db5b493aSTsutomu Itoh if (!cur_trans) 209db5b493aSTsutomu Itoh return -ENOMEM; 210d43317dcSChris Mason 21119ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 21219ae4e81SJan Schmidt if (fs_info->running_transaction) { 213d43317dcSChris Mason /* 214d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 2154a9d8bdeSMiao Xie * to redo the checks above 216d43317dcSChris Mason */ 217a4abeea4SJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 218d43317dcSChris Mason goto loop; 21987533c47SMiao Xie } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 220e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 2217b8b92afSJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 2227b8b92afSJosef Bacik return -EROFS; 223a4abeea4SJosef Bacik } 224d43317dcSChris Mason 22513c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 2260860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 22779154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 22879154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 2294a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 230a4abeea4SJosef Bacik /* 231a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 232a4abeea4SJosef Bacik * commit the transaction. 233a4abeea4SJosef Bacik */ 234a4abeea4SJosef Bacik atomic_set(&cur_trans->use_count, 2); 23513212b54SZhao Lei cur_trans->have_free_bgs = 0; 23608607c1bSChris Mason cur_trans->start_time = get_seconds(); 2371bbc621eSChris Mason cur_trans->dirty_bg_run = 0; 23856bec294SChris Mason 239*a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 240*a099d0fdSAlexandru Moise 241c46effa6SLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT; 2423368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 243d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 24420b297d6SJan Schmidt 24520b297d6SJan Schmidt /* 24620b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 24720b297d6SJan Schmidt * the log must never go across transaction boundaries. 24820b297d6SJan Schmidt */ 24920b297d6SJan Schmidt smp_mb(); 25031b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 251efe120a0SFrank Holton WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when " 25220b297d6SJan Schmidt "creating a fresh transaction\n"); 25331b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 254efe120a0SFrank Holton WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when " 25520b297d6SJan Schmidt "creating a fresh transaction\n"); 256fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 25720b297d6SJan Schmidt 25856bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 25956bec294SChris Mason 2603063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 2616df9a95eSJosef Bacik INIT_LIST_HEAD(&cur_trans->pending_chunks); 2629e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 26350d9aa99SJosef Bacik INIT_LIST_HEAD(&cur_trans->pending_ordered); 264ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 2651bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 2662b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 2671bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 268cb723e49SJosef Bacik cur_trans->num_dirty_bgs = 0; 269ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 270e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 271e33e17eeSJeff Mahoney spin_lock_init(&cur_trans->deleted_bgs_lock); 2722b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 27319ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 274d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 27519ae4e81SJan Schmidt fs_info->btree_inode->i_mapping); 27619ae4e81SJan Schmidt fs_info->generation++; 27719ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 27819ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 27949b25e05SJeff Mahoney cur_trans->aborted = 0; 28019ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 28115ee9bc7SJosef Bacik 28279154b1bSChris Mason return 0; 28379154b1bSChris Mason } 28479154b1bSChris Mason 285d352ac68SChris Mason /* 286d397712bSChris Mason * this does all the record keeping required to make sure that a reference 287d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 288d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 289d397712bSChris Mason * when the transaction commits 290d352ac68SChris Mason */ 2917585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 2925d4f98a2SYan Zheng struct btrfs_root *root) 2936702ed49SChris Mason { 29427cdeb70SMiao Xie if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) && 29527cdeb70SMiao Xie root->last_trans < trans->transid) { 2966702ed49SChris Mason WARN_ON(root == root->fs_info->extent_root); 2975d4f98a2SYan Zheng WARN_ON(root->commit_root != root->node); 2985d4f98a2SYan Zheng 2997585717fSChris Mason /* 30027cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 3017585717fSChris Mason * we have the reloc mutex held now, so there 3027585717fSChris Mason * is only one writer in this function 3037585717fSChris Mason */ 30427cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3057585717fSChris Mason 30627cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 3077585717fSChris Mason * they find our root->last_trans update 3087585717fSChris Mason */ 3097585717fSChris Mason smp_wmb(); 3107585717fSChris Mason 311a4abeea4SJosef Bacik spin_lock(&root->fs_info->fs_roots_radix_lock); 312a4abeea4SJosef Bacik if (root->last_trans == trans->transid) { 313a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 314a4abeea4SJosef Bacik return 0; 315a4abeea4SJosef Bacik } 3166702ed49SChris Mason radix_tree_tag_set(&root->fs_info->fs_roots_radix, 3176702ed49SChris Mason (unsigned long)root->root_key.objectid, 3186702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 319a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 3207585717fSChris Mason root->last_trans = trans->transid; 3217585717fSChris Mason 3227585717fSChris Mason /* this is pretty tricky. We don't want to 3237585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 3247585717fSChris Mason * unless we're really doing the first setup for this root in 3257585717fSChris Mason * this transaction. 3267585717fSChris Mason * 3277585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 3287585717fSChris Mason * if we want to take the expensive mutex. 3297585717fSChris Mason * 3307585717fSChris Mason * But, we have to set root->last_trans before we 3317585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 3327585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 33327cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 3347585717fSChris Mason * fixing up the reloc trees and everyone must wait. 3357585717fSChris Mason * 3367585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 3377585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 3387585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 3397585717fSChris Mason * done before we pop in the zero below 3407585717fSChris Mason */ 3415d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 342c7548af6SChris Mason smp_mb__before_atomic(); 34327cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3446702ed49SChris Mason } 3455d4f98a2SYan Zheng return 0; 3466702ed49SChris Mason } 3475d4f98a2SYan Zheng 3487585717fSChris Mason 3492b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 3502b9dbef2SJosef Bacik struct btrfs_root *root) 3512b9dbef2SJosef Bacik { 3522b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 3532b9dbef2SJosef Bacik 3542b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 3552b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 3562b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 3572b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 3582b9dbef2SJosef Bacik 3592b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 3602b9dbef2SJosef Bacik spin_lock(&root->fs_info->fs_roots_radix_lock); 3612b9dbef2SJosef Bacik radix_tree_tag_clear(&root->fs_info->fs_roots_radix, 3622b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 3632b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 3642b9dbef2SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 3652b9dbef2SJosef Bacik } 3662b9dbef2SJosef Bacik 3677585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 3687585717fSChris Mason struct btrfs_root *root) 3697585717fSChris Mason { 37027cdeb70SMiao Xie if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state)) 3717585717fSChris Mason return 0; 3727585717fSChris Mason 3737585717fSChris Mason /* 37427cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 3757585717fSChris Mason * and barriers 3767585717fSChris Mason */ 3777585717fSChris Mason smp_rmb(); 3787585717fSChris Mason if (root->last_trans == trans->transid && 37927cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 3807585717fSChris Mason return 0; 3817585717fSChris Mason 3827585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 3837585717fSChris Mason record_root_in_trans(trans, root); 3847585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 3857585717fSChris Mason 3867585717fSChris Mason return 0; 3877585717fSChris Mason } 3887585717fSChris Mason 3894a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 3904a9d8bdeSMiao Xie { 3914a9d8bdeSMiao Xie return (trans->state >= TRANS_STATE_BLOCKED && 392501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 393501407aaSJosef Bacik !trans->aborted); 3944a9d8bdeSMiao Xie } 3954a9d8bdeSMiao Xie 396d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 397d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 398d352ac68SChris Mason * transaction might not be fully on disk. 399d352ac68SChris Mason */ 40037d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root) 40179154b1bSChris Mason { 402f9295749SChris Mason struct btrfs_transaction *cur_trans; 40379154b1bSChris Mason 404a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 405f9295749SChris Mason cur_trans = root->fs_info->running_transaction; 4064a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 40713c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 408a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 40972d63ed6SLi Zefan 41072d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 411501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 412501407aaSJosef Bacik cur_trans->aborted); 413724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 414a4abeea4SJosef Bacik } else { 415a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 416f9295749SChris Mason } 41737d1aeeeSChris Mason } 41837d1aeeeSChris Mason 419a22285a6SYan, Zheng static int may_wait_transaction(struct btrfs_root *root, int type) 42037d1aeeeSChris Mason { 421a4abeea4SJosef Bacik if (root->fs_info->log_root_recovering) 422a4abeea4SJosef Bacik return 0; 423a4abeea4SJosef Bacik 424a4abeea4SJosef Bacik if (type == TRANS_USERSPACE) 425a22285a6SYan, Zheng return 1; 426a4abeea4SJosef Bacik 427a4abeea4SJosef Bacik if (type == TRANS_START && 428a4abeea4SJosef Bacik !atomic_read(&root->fs_info->open_ioctl_trans)) 429a4abeea4SJosef Bacik return 1; 430a4abeea4SJosef Bacik 431a22285a6SYan, Zheng return 0; 432a22285a6SYan, Zheng } 433a22285a6SYan, Zheng 43420dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 43520dd2cbfSMiao Xie { 43620dd2cbfSMiao Xie if (!root->fs_info->reloc_ctl || 43727cdeb70SMiao Xie !test_bit(BTRFS_ROOT_REF_COWS, &root->state) || 43820dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 43920dd2cbfSMiao Xie root->reloc_root) 44020dd2cbfSMiao Xie return false; 44120dd2cbfSMiao Xie 44220dd2cbfSMiao Xie return true; 44320dd2cbfSMiao Xie } 44420dd2cbfSMiao Xie 44508e007d2SMiao Xie static struct btrfs_trans_handle * 4460860adfdSMiao Xie start_transaction(struct btrfs_root *root, u64 num_items, unsigned int type, 44708e007d2SMiao Xie enum btrfs_reserve_flush_enum flush) 448a22285a6SYan, Zheng { 449a22285a6SYan, Zheng struct btrfs_trans_handle *h; 450a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 451b5009945SJosef Bacik u64 num_bytes = 0; 452c5567237SArne Jansen u64 qgroup_reserved = 0; 45320dd2cbfSMiao Xie bool reloc_reserved = false; 45420dd2cbfSMiao Xie int ret; 455acce952bSliubo 45646c4e71eSFilipe Manana /* Send isn't supposed to start transactions. */ 4572755a0deSDavid Sterba ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB); 45846c4e71eSFilipe Manana 45987533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) 460acce952bSliubo return ERR_PTR(-EROFS); 4612a1eb461SJosef Bacik 46246c4e71eSFilipe Manana if (current->journal_info) { 4630860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 4642a1eb461SJosef Bacik h = current->journal_info; 4652a1eb461SJosef Bacik h->use_count++; 466b7d5b0a8SMiao Xie WARN_ON(h->use_count > 2); 4672a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 4682a1eb461SJosef Bacik h->block_rsv = NULL; 4692a1eb461SJosef Bacik goto got_it; 4702a1eb461SJosef Bacik } 471b5009945SJosef Bacik 472b5009945SJosef Bacik /* 473b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 474b5009945SJosef Bacik * the appropriate flushing if need be. 475b5009945SJosef Bacik */ 476b5009945SJosef Bacik if (num_items > 0 && root != root->fs_info->chunk_root) { 477c5567237SArne Jansen if (root->fs_info->quota_enabled && 478c5567237SArne Jansen is_fstree(root->root_key.objectid)) { 479707e8a07SDavid Sterba qgroup_reserved = num_items * root->nodesize; 480c5567237SArne Jansen ret = btrfs_qgroup_reserve(root, qgroup_reserved); 481c5567237SArne Jansen if (ret) 482c5567237SArne Jansen return ERR_PTR(ret); 483c5567237SArne Jansen } 484c5567237SArne Jansen 485b5009945SJosef Bacik num_bytes = btrfs_calc_trans_metadata_size(root, num_items); 48620dd2cbfSMiao Xie /* 48720dd2cbfSMiao Xie * Do the reservation for the relocation root creation 48820dd2cbfSMiao Xie */ 489ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 49020dd2cbfSMiao Xie num_bytes += root->nodesize; 49120dd2cbfSMiao Xie reloc_reserved = true; 49220dd2cbfSMiao Xie } 49320dd2cbfSMiao Xie 4944a92b1b8SJosef Bacik ret = btrfs_block_rsv_add(root, 495b5009945SJosef Bacik &root->fs_info->trans_block_rsv, 49608e007d2SMiao Xie num_bytes, flush); 497b5009945SJosef Bacik if (ret) 498843fcf35SMiao Xie goto reserve_fail; 499b5009945SJosef Bacik } 500a22285a6SYan, Zheng again: 501f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 502843fcf35SMiao Xie if (!h) { 503843fcf35SMiao Xie ret = -ENOMEM; 504843fcf35SMiao Xie goto alloc_fail; 505843fcf35SMiao Xie } 506a22285a6SYan, Zheng 50798114659SJosef Bacik /* 50898114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 50998114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 51098114659SJosef Bacik * because we're already holding a ref. We need this because we could 51198114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 51298114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 513354aa0fbSMiao Xie * 514354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 515354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 51698114659SJosef Bacik */ 5170860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 518b2b5ef5cSJan Kara sb_start_intwrite(root->fs_info->sb); 519b2b5ef5cSJan Kara 520a22285a6SYan, Zheng if (may_wait_transaction(root, type)) 52137d1aeeeSChris Mason wait_current_trans(root); 522a22285a6SYan, Zheng 523a4abeea4SJosef Bacik do { 524354aa0fbSMiao Xie ret = join_transaction(root, type); 525178260b2SMiao Xie if (ret == -EBUSY) { 526a4abeea4SJosef Bacik wait_current_trans(root); 527178260b2SMiao Xie if (unlikely(type == TRANS_ATTACH)) 528178260b2SMiao Xie ret = -ENOENT; 529178260b2SMiao Xie } 530a4abeea4SJosef Bacik } while (ret == -EBUSY); 531a4abeea4SJosef Bacik 532db5b493aSTsutomu Itoh if (ret < 0) { 533354aa0fbSMiao Xie /* We must get the transaction if we are JOIN_NOLOCK. */ 534354aa0fbSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 535843fcf35SMiao Xie goto join_fail; 536db5b493aSTsutomu Itoh } 5370f7d52f4SChris Mason 538a22285a6SYan, Zheng cur_trans = root->fs_info->running_transaction; 539a22285a6SYan, Zheng 540a22285a6SYan, Zheng h->transid = cur_trans->transid; 541a22285a6SYan, Zheng h->transaction = cur_trans; 542d13603efSArne Jansen h->root = root; 5432a1eb461SJosef Bacik h->use_count = 1; 544a698d075SMiao Xie h->type = type; 545d9a0540aSFilipe Manana h->can_flush_pending_bgs = true; 546bed92eaeSArne Jansen INIT_LIST_HEAD(&h->qgroup_ref_list); 547ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 54850d9aa99SJosef Bacik INIT_LIST_HEAD(&h->ordered); 549b7ec40d7SChris Mason 550a22285a6SYan, Zheng smp_mb(); 5514a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED && 5524a9d8bdeSMiao Xie may_wait_transaction(root, type)) { 553abdd2e80SFilipe Manana current->journal_info = h; 554a22285a6SYan, Zheng btrfs_commit_transaction(h, root); 555a22285a6SYan, Zheng goto again; 556a22285a6SYan, Zheng } 5579ed74f2dSJosef Bacik 558b5009945SJosef Bacik if (num_bytes) { 5598c2a3ca2SJosef Bacik trace_btrfs_space_reservation(root->fs_info, "transaction", 5602bcc0328SLiu Bo h->transid, num_bytes, 1); 561b5009945SJosef Bacik h->block_rsv = &root->fs_info->trans_block_rsv; 562b5009945SJosef Bacik h->bytes_reserved = num_bytes; 56320dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 564a22285a6SYan, Zheng } 5654b824906SMiao Xie h->qgroup_reserved = qgroup_reserved; 566a22285a6SYan, Zheng 5672a1eb461SJosef Bacik got_it: 568a4abeea4SJosef Bacik btrfs_record_root_in_trans(h, root); 569a22285a6SYan, Zheng 570a22285a6SYan, Zheng if (!current->journal_info && type != TRANS_USERSPACE) 571a22285a6SYan, Zheng current->journal_info = h; 57279154b1bSChris Mason return h; 573843fcf35SMiao Xie 574843fcf35SMiao Xie join_fail: 5750860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 576843fcf35SMiao Xie sb_end_intwrite(root->fs_info->sb); 577843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 578843fcf35SMiao Xie alloc_fail: 579843fcf35SMiao Xie if (num_bytes) 580843fcf35SMiao Xie btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv, 581843fcf35SMiao Xie num_bytes); 582843fcf35SMiao Xie reserve_fail: 583843fcf35SMiao Xie if (qgroup_reserved) 584843fcf35SMiao Xie btrfs_qgroup_free(root, qgroup_reserved); 585843fcf35SMiao Xie return ERR_PTR(ret); 58679154b1bSChris Mason } 58779154b1bSChris Mason 588f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 589a22285a6SYan, Zheng int num_items) 590f9295749SChris Mason { 59108e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 59208e007d2SMiao Xie BTRFS_RESERVE_FLUSH_ALL); 593f9295749SChris Mason } 5948407aa46SMiao Xie 59508e007d2SMiao Xie struct btrfs_trans_handle *btrfs_start_transaction_lflush( 5968407aa46SMiao Xie struct btrfs_root *root, int num_items) 5978407aa46SMiao Xie { 59808e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 59908e007d2SMiao Xie BTRFS_RESERVE_FLUSH_LIMIT); 6008407aa46SMiao Xie } 6018407aa46SMiao Xie 6027a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 603f9295749SChris Mason { 6048407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN, 0); 605f9295749SChris Mason } 606f9295749SChris Mason 6077a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root) 6080af3d00bSJosef Bacik { 6098407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0); 6100af3d00bSJosef Bacik } 6110af3d00bSJosef Bacik 6127a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root) 6139ca9ee09SSage Weil { 6148407aa46SMiao Xie return start_transaction(root, 0, TRANS_USERSPACE, 0); 6159ca9ee09SSage Weil } 6169ca9ee09SSage Weil 617d4edf39bSMiao Xie /* 618d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 619d4edf39bSMiao Xie * 620d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 621d4edf39bSMiao Xie * don't want to start a new one. 622d4edf39bSMiao Xie * 623d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 624d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 625d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 626d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 627d4edf39bSMiao Xie * invoke 628d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 629d4edf39bSMiao Xie */ 630354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 63160376ce4SJosef Bacik { 632354aa0fbSMiao Xie return start_transaction(root, 0, TRANS_ATTACH, 0); 63360376ce4SJosef Bacik } 63460376ce4SJosef Bacik 635d4edf39bSMiao Xie /* 63690b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 637d4edf39bSMiao Xie * 638d4edf39bSMiao Xie * It is similar to the above function, the differentia is this one 639d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 640d4edf39bSMiao Xie * complete. 641d4edf39bSMiao Xie */ 642d4edf39bSMiao Xie struct btrfs_trans_handle * 643d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 644d4edf39bSMiao Xie { 645d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 646d4edf39bSMiao Xie 647d4edf39bSMiao Xie trans = start_transaction(root, 0, TRANS_ATTACH, 0); 648d4edf39bSMiao Xie if (IS_ERR(trans) && PTR_ERR(trans) == -ENOENT) 649d4edf39bSMiao Xie btrfs_wait_for_commit(root, 0); 650d4edf39bSMiao Xie 651d4edf39bSMiao Xie return trans; 652d4edf39bSMiao Xie } 653d4edf39bSMiao Xie 654d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 655b9c8300cSLi Zefan static noinline void wait_for_commit(struct btrfs_root *root, 65689ce8a63SChris Mason struct btrfs_transaction *commit) 65789ce8a63SChris Mason { 6584a9d8bdeSMiao Xie wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); 65989ce8a63SChris Mason } 66089ce8a63SChris Mason 66146204592SSage Weil int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid) 66246204592SSage Weil { 66346204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 6648cd2807fSMiao Xie int ret = 0; 66546204592SSage Weil 66646204592SSage Weil if (transid) { 66746204592SSage Weil if (transid <= root->fs_info->last_trans_committed) 668a4abeea4SJosef Bacik goto out; 66946204592SSage Weil 67046204592SSage Weil /* find specified transaction */ 671a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 67246204592SSage Weil list_for_each_entry(t, &root->fs_info->trans_list, list) { 67346204592SSage Weil if (t->transid == transid) { 67446204592SSage Weil cur_trans = t; 675a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 6768cd2807fSMiao Xie ret = 0; 67746204592SSage Weil break; 67846204592SSage Weil } 6798cd2807fSMiao Xie if (t->transid > transid) { 6808cd2807fSMiao Xie ret = 0; 68146204592SSage Weil break; 68246204592SSage Weil } 6838cd2807fSMiao Xie } 684a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 68542383020SSage Weil 68642383020SSage Weil /* 68742383020SSage Weil * The specified transaction doesn't exist, or we 68842383020SSage Weil * raced with btrfs_commit_transaction 68942383020SSage Weil */ 69042383020SSage Weil if (!cur_trans) { 69142383020SSage Weil if (transid > root->fs_info->last_trans_committed) 69242383020SSage Weil ret = -EINVAL; 6938cd2807fSMiao Xie goto out; 69442383020SSage Weil } 69546204592SSage Weil } else { 69646204592SSage Weil /* find newest transaction that is committing | committed */ 697a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 69846204592SSage Weil list_for_each_entry_reverse(t, &root->fs_info->trans_list, 69946204592SSage Weil list) { 7004a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 7014a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 7023473f3c0SJosef Bacik break; 70346204592SSage Weil cur_trans = t; 704a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 70546204592SSage Weil break; 70646204592SSage Weil } 70746204592SSage Weil } 708a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 70946204592SSage Weil if (!cur_trans) 710a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 71146204592SSage Weil } 71246204592SSage Weil 71346204592SSage Weil wait_for_commit(root, cur_trans); 714724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 715a4abeea4SJosef Bacik out: 71646204592SSage Weil return ret; 71746204592SSage Weil } 71846204592SSage Weil 71937d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root) 72037d1aeeeSChris Mason { 721a4abeea4SJosef Bacik if (!atomic_read(&root->fs_info->open_ioctl_trans)) 72237d1aeeeSChris Mason wait_current_trans(root); 72337d1aeeeSChris Mason } 72437d1aeeeSChris Mason 7258929ecfaSYan, Zheng static int should_end_transaction(struct btrfs_trans_handle *trans, 7268929ecfaSYan, Zheng struct btrfs_root *root) 7278929ecfaSYan, Zheng { 7281be41b78SJosef Bacik if (root->fs_info->global_block_rsv.space_info->full && 7290a2b2a84SJosef Bacik btrfs_check_space_for_delayed_refs(trans, root)) 7301be41b78SJosef Bacik return 1; 73136ba022aSJosef Bacik 7321be41b78SJosef Bacik return !!btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5); 7338929ecfaSYan, Zheng } 7348929ecfaSYan, Zheng 7358929ecfaSYan, Zheng int btrfs_should_end_transaction(struct btrfs_trans_handle *trans, 7368929ecfaSYan, Zheng struct btrfs_root *root) 7378929ecfaSYan, Zheng { 7388929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 7398929ecfaSYan, Zheng int updates; 74049b25e05SJeff Mahoney int err; 7418929ecfaSYan, Zheng 742a4abeea4SJosef Bacik smp_mb(); 7434a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED || 7444a9d8bdeSMiao Xie cur_trans->delayed_refs.flushing) 7458929ecfaSYan, Zheng return 1; 7468929ecfaSYan, Zheng 7478929ecfaSYan, Zheng updates = trans->delayed_ref_updates; 7488929ecfaSYan, Zheng trans->delayed_ref_updates = 0; 74949b25e05SJeff Mahoney if (updates) { 75028ed1345SChris Mason err = btrfs_run_delayed_refs(trans, root, updates * 2); 75149b25e05SJeff Mahoney if (err) /* Error code will also eval true */ 75249b25e05SJeff Mahoney return err; 75349b25e05SJeff Mahoney } 7548929ecfaSYan, Zheng 7558929ecfaSYan, Zheng return should_end_transaction(trans, root); 7568929ecfaSYan, Zheng } 7578929ecfaSYan, Zheng 75889ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 759a698d075SMiao Xie struct btrfs_root *root, int throttle) 76079154b1bSChris Mason { 7618929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 762ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 7631be41b78SJosef Bacik unsigned long cur = trans->delayed_ref_updates; 764a698d075SMiao Xie int lock = (trans->type != TRANS_JOIN_NOLOCK); 7654edc2ca3SDave Jones int err = 0; 766a79b7d4bSChris Mason int must_run_delayed_refs = 0; 767d6e4a428SChris Mason 7683bbb24b2SJosef Bacik if (trans->use_count > 1) { 7693bbb24b2SJosef Bacik trans->use_count--; 7702a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 7712a1eb461SJosef Bacik return 0; 7722a1eb461SJosef Bacik } 7732a1eb461SJosef Bacik 774b24e03dbSJosef Bacik btrfs_trans_release_metadata(trans, root); 7754c13d758SJosef Bacik trans->block_rsv = NULL; 776c5567237SArne Jansen 777ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 778ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 779ea658badSJosef Bacik 78050d9aa99SJosef Bacik if (!list_empty(&trans->ordered)) { 78150d9aa99SJosef Bacik spin_lock(&info->trans_lock); 782d3efe084SFilipe Manana list_splice_init(&trans->ordered, &cur_trans->pending_ordered); 78350d9aa99SJosef Bacik spin_unlock(&info->trans_lock); 78450d9aa99SJosef Bacik } 78550d9aa99SJosef Bacik 786c3e69d58SChris Mason trans->delayed_ref_updates = 0; 787a79b7d4bSChris Mason if (!trans->sync) { 788a79b7d4bSChris Mason must_run_delayed_refs = 789a79b7d4bSChris Mason btrfs_should_throttle_delayed_refs(trans, root); 7900a2b2a84SJosef Bacik cur = max_t(unsigned long, cur, 32); 791a79b7d4bSChris Mason 792a79b7d4bSChris Mason /* 793a79b7d4bSChris Mason * don't make the caller wait if they are from a NOLOCK 794a79b7d4bSChris Mason * or ATTACH transaction, it will deadlock with commit 795a79b7d4bSChris Mason */ 796a79b7d4bSChris Mason if (must_run_delayed_refs == 1 && 797a79b7d4bSChris Mason (trans->type & (__TRANS_JOIN_NOLOCK | __TRANS_ATTACH))) 798a79b7d4bSChris Mason must_run_delayed_refs = 2; 79956bec294SChris Mason } 800bb721703SChris Mason 801fcebe456SJosef Bacik if (trans->qgroup_reserved) { 802fcebe456SJosef Bacik /* 803fcebe456SJosef Bacik * the same root has to be passed here between start_transaction 804fcebe456SJosef Bacik * and end_transaction. Subvolume quota depends on this. 805fcebe456SJosef Bacik */ 806fcebe456SJosef Bacik btrfs_qgroup_free(trans->root, trans->qgroup_reserved); 807fcebe456SJosef Bacik trans->qgroup_reserved = 0; 808fcebe456SJosef Bacik } 809fcebe456SJosef Bacik 8100e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 8110e721106SJosef Bacik trans->block_rsv = NULL; 81256bec294SChris Mason 813ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 814ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 815ea658badSJosef Bacik 8164fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 8174fbcdf66SFilipe Manana 818a4abeea4SJosef Bacik if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) && 8194a9d8bdeSMiao Xie should_end_transaction(trans, root) && 8204a9d8bdeSMiao Xie ACCESS_ONCE(cur_trans->state) == TRANS_STATE_RUNNING) { 8214a9d8bdeSMiao Xie spin_lock(&info->trans_lock); 8224a9d8bdeSMiao Xie if (cur_trans->state == TRANS_STATE_RUNNING) 8234a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_BLOCKED; 8244a9d8bdeSMiao Xie spin_unlock(&info->trans_lock); 825a4abeea4SJosef Bacik } 8268929ecfaSYan, Zheng 8274a9d8bdeSMiao Xie if (lock && ACCESS_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) { 8283bbb24b2SJosef Bacik if (throttle) 8298929ecfaSYan, Zheng return btrfs_commit_transaction(trans, root); 8303bbb24b2SJosef Bacik else 8318929ecfaSYan, Zheng wake_up_process(info->transaction_kthread); 8328929ecfaSYan, Zheng } 8338929ecfaSYan, Zheng 8340860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 8356df7881aSJosef Bacik sb_end_intwrite(root->fs_info->sb); 8366df7881aSJosef Bacik 8378929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 83813c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 83913c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 8400860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 84189ce8a63SChris Mason 84299d16cbcSSage Weil smp_mb(); 84379154b1bSChris Mason if (waitqueue_active(&cur_trans->writer_wait)) 84479154b1bSChris Mason wake_up(&cur_trans->writer_wait); 845724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 8469ed74f2dSJosef Bacik 8479ed74f2dSJosef Bacik if (current->journal_info == trans) 8489ed74f2dSJosef Bacik current->journal_info = NULL; 849ab78c84dSChris Mason 85024bbcf04SYan, Zheng if (throttle) 85124bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 85224bbcf04SYan, Zheng 85349b25e05SJeff Mahoney if (trans->aborted || 8544e121c06SJosef Bacik test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) { 8554e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 8564edc2ca3SDave Jones err = -EIO; 8574e121c06SJosef Bacik } 858edf39272SJan Schmidt assert_qgroups_uptodate(trans); 85949b25e05SJeff Mahoney 8604edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 861a79b7d4bSChris Mason if (must_run_delayed_refs) { 862a79b7d4bSChris Mason btrfs_async_run_delayed_refs(root, cur, 863a79b7d4bSChris Mason must_run_delayed_refs == 1); 864a79b7d4bSChris Mason } 8654edc2ca3SDave Jones return err; 86679154b1bSChris Mason } 86779154b1bSChris Mason 86889ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans, 86989ce8a63SChris Mason struct btrfs_root *root) 87089ce8a63SChris Mason { 87198ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 0); 87289ce8a63SChris Mason } 87389ce8a63SChris Mason 87489ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 87589ce8a63SChris Mason struct btrfs_root *root) 87689ce8a63SChris Mason { 87798ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 1); 87816cdcec7SMiao Xie } 87916cdcec7SMiao Xie 880d352ac68SChris Mason /* 881d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 882d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 883690587d1SChris Mason * those extents are sent to disk but does not wait on them 884d352ac68SChris Mason */ 885690587d1SChris Mason int btrfs_write_marked_extents(struct btrfs_root *root, 8868cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 88779154b1bSChris Mason { 888777e6bd7SChris Mason int err = 0; 8897c4452b9SChris Mason int werr = 0; 8901728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 891e6138876SJosef Bacik struct extent_state *cached_state = NULL; 892777e6bd7SChris Mason u64 start = 0; 8935f39d397SChris Mason u64 end; 8947c4452b9SChris Mason 8951728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 896e6138876SJosef Bacik mark, &cached_state)) { 897663dfbb0SFilipe Manana bool wait_writeback = false; 898663dfbb0SFilipe Manana 899663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 900663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 901e6138876SJosef Bacik mark, &cached_state, GFP_NOFS); 902663dfbb0SFilipe Manana /* 903663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 904663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 905663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 906663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 907663dfbb0SFilipe Manana * to btrfs_wait_marked_extents() would not know that writeback 908663dfbb0SFilipe Manana * for this range started and therefore wouldn't wait for it to 909663dfbb0SFilipe Manana * finish - we don't want to commit a superblock that points to 910663dfbb0SFilipe Manana * btree nodes/leafs for which writeback hasn't finished yet 911663dfbb0SFilipe Manana * (and without errors). 912663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 913663dfbb0SFilipe Manana * the transaction (through clear_btree_io_tree()). 914663dfbb0SFilipe Manana */ 915663dfbb0SFilipe Manana if (err == -ENOMEM) { 916663dfbb0SFilipe Manana err = 0; 917663dfbb0SFilipe Manana wait_writeback = true; 918663dfbb0SFilipe Manana } 919663dfbb0SFilipe Manana if (!err) 9201728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 9217c4452b9SChris Mason if (err) 9227c4452b9SChris Mason werr = err; 923663dfbb0SFilipe Manana else if (wait_writeback) 924663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 925e38e2ed7SFilipe Manana free_extent_state(cached_state); 926663dfbb0SFilipe Manana cached_state = NULL; 9271728366eSJosef Bacik cond_resched(); 9281728366eSJosef Bacik start = end + 1; 9297c4452b9SChris Mason } 930690587d1SChris Mason return werr; 931690587d1SChris Mason } 932690587d1SChris Mason 933690587d1SChris Mason /* 934690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 935690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 936690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 937690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 938690587d1SChris Mason */ 939690587d1SChris Mason int btrfs_wait_marked_extents(struct btrfs_root *root, 9408cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 941690587d1SChris Mason { 942690587d1SChris Mason int err = 0; 943690587d1SChris Mason int werr = 0; 9441728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 945e6138876SJosef Bacik struct extent_state *cached_state = NULL; 946690587d1SChris Mason u64 start = 0; 947690587d1SChris Mason u64 end; 948656f30dbSFilipe Manana struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode); 949656f30dbSFilipe Manana bool errors = false; 950690587d1SChris Mason 9511728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 952e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 953663dfbb0SFilipe Manana /* 954663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 955663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 956663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 957663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 958663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 959663dfbb0SFilipe Manana * it's safe to do it (through clear_btree_io_tree()). 960663dfbb0SFilipe Manana */ 961663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 962663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 963e6138876SJosef Bacik 0, 0, &cached_state, GFP_NOFS); 964663dfbb0SFilipe Manana if (err == -ENOMEM) 965663dfbb0SFilipe Manana err = 0; 966663dfbb0SFilipe Manana if (!err) 9671728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 968777e6bd7SChris Mason if (err) 969777e6bd7SChris Mason werr = err; 970e38e2ed7SFilipe Manana free_extent_state(cached_state); 971e38e2ed7SFilipe Manana cached_state = NULL; 972777e6bd7SChris Mason cond_resched(); 9731728366eSJosef Bacik start = end + 1; 974777e6bd7SChris Mason } 9757c4452b9SChris Mason if (err) 9767c4452b9SChris Mason werr = err; 977656f30dbSFilipe Manana 978656f30dbSFilipe Manana if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { 979656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 980656f30dbSFilipe Manana test_and_clear_bit(BTRFS_INODE_BTREE_LOG1_ERR, 981656f30dbSFilipe Manana &btree_ino->runtime_flags)) 982656f30dbSFilipe Manana errors = true; 983656f30dbSFilipe Manana 984656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 985656f30dbSFilipe Manana test_and_clear_bit(BTRFS_INODE_BTREE_LOG2_ERR, 986656f30dbSFilipe Manana &btree_ino->runtime_flags)) 987656f30dbSFilipe Manana errors = true; 988656f30dbSFilipe Manana } else { 989656f30dbSFilipe Manana if (test_and_clear_bit(BTRFS_INODE_BTREE_ERR, 990656f30dbSFilipe Manana &btree_ino->runtime_flags)) 991656f30dbSFilipe Manana errors = true; 992656f30dbSFilipe Manana } 993656f30dbSFilipe Manana 994656f30dbSFilipe Manana if (errors && !werr) 995656f30dbSFilipe Manana werr = -EIO; 996656f30dbSFilipe Manana 9977c4452b9SChris Mason return werr; 99879154b1bSChris Mason } 99979154b1bSChris Mason 1000690587d1SChris Mason /* 1001690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1002690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1003690587d1SChris Mason * those extents are on disk for transaction or log commit 1004690587d1SChris Mason */ 1005171170c1SSergei Trofimovich static int btrfs_write_and_wait_marked_extents(struct btrfs_root *root, 10068cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 1007690587d1SChris Mason { 1008690587d1SChris Mason int ret; 1009690587d1SChris Mason int ret2; 1010c6adc9ccSMiao Xie struct blk_plug plug; 1011690587d1SChris Mason 1012c6adc9ccSMiao Xie blk_start_plug(&plug); 10138cef4e16SYan, Zheng ret = btrfs_write_marked_extents(root, dirty_pages, mark); 1014c6adc9ccSMiao Xie blk_finish_plug(&plug); 10158cef4e16SYan, Zheng ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark); 1016bf0da8c1SChris Mason 1017bf0da8c1SChris Mason if (ret) 1018bf0da8c1SChris Mason return ret; 1019bf0da8c1SChris Mason if (ret2) 1020bf0da8c1SChris Mason return ret2; 1021bf0da8c1SChris Mason return 0; 1022690587d1SChris Mason } 1023690587d1SChris Mason 1024663dfbb0SFilipe Manana static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, 1025d0c803c4SChris Mason struct btrfs_root *root) 1026d0c803c4SChris Mason { 1027663dfbb0SFilipe Manana int ret; 1028663dfbb0SFilipe Manana 1029663dfbb0SFilipe Manana ret = btrfs_write_and_wait_marked_extents(root, 10308cef4e16SYan, Zheng &trans->transaction->dirty_pages, 10318cef4e16SYan, Zheng EXTENT_DIRTY); 1032663dfbb0SFilipe Manana clear_btree_io_tree(&trans->transaction->dirty_pages); 1033663dfbb0SFilipe Manana 1034663dfbb0SFilipe Manana return ret; 1035d0c803c4SChris Mason } 1036d0c803c4SChris Mason 1037d352ac68SChris Mason /* 1038d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1039d352ac68SChris Mason * 1040d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1041d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1042d352ac68SChris Mason * allocation tree. 1043d352ac68SChris Mason * 1044d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1045d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1046d352ac68SChris Mason */ 10470b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 104879154b1bSChris Mason struct btrfs_root *root) 104979154b1bSChris Mason { 105079154b1bSChris Mason int ret; 10510b86a832SChris Mason u64 old_root_bytenr; 105286b9f2ecSYan, Zheng u64 old_root_used; 10530b86a832SChris Mason struct btrfs_root *tree_root = root->fs_info->tree_root; 105479154b1bSChris Mason 105586b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 105656bec294SChris Mason 105779154b1bSChris Mason while (1) { 10580b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 105986b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1060ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 106179154b1bSChris Mason break; 106287ef2bb4SChris Mason 10635d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 106479154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 10650b86a832SChris Mason &root->root_key, 10660b86a832SChris Mason &root->root_item); 106749b25e05SJeff Mahoney if (ret) 106849b25e05SJeff Mahoney return ret; 106956bec294SChris Mason 107086b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1071e7070be1SJosef Bacik } 1072276e680dSYan Zheng 10730b86a832SChris Mason return 0; 10740b86a832SChris Mason } 10750b86a832SChris Mason 1076d352ac68SChris Mason /* 1077d352ac68SChris Mason * update all the cowonly tree roots on disk 107849b25e05SJeff Mahoney * 107949b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 108049b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 108149b25e05SJeff Mahoney * to clean up the delayed refs. 1082d352ac68SChris Mason */ 10835d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, 10840b86a832SChris Mason struct btrfs_root *root) 10850b86a832SChris Mason { 10860b86a832SChris Mason struct btrfs_fs_info *fs_info = root->fs_info; 1087ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 10881bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 10890b86a832SChris Mason struct list_head *next; 109084234f3aSYan Zheng struct extent_buffer *eb; 109156bec294SChris Mason int ret; 109284234f3aSYan Zheng 109384234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 109449b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 109549b25e05SJeff Mahoney 0, &eb); 109684234f3aSYan Zheng btrfs_tree_unlock(eb); 109784234f3aSYan Zheng free_extent_buffer(eb); 10980b86a832SChris Mason 109949b25e05SJeff Mahoney if (ret) 110049b25e05SJeff Mahoney return ret; 110149b25e05SJeff Mahoney 110256bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 110349b25e05SJeff Mahoney if (ret) 110449b25e05SJeff Mahoney return ret; 110587ef2bb4SChris Mason 1106733f4fbbSStefan Behrens ret = btrfs_run_dev_stats(trans, root->fs_info); 1107c16ce190SJosef Bacik if (ret) 1108c16ce190SJosef Bacik return ret; 11098dabb742SStefan Behrens ret = btrfs_run_dev_replace(trans, root->fs_info); 1110c16ce190SJosef Bacik if (ret) 1111c16ce190SJosef Bacik return ret; 1112546adb0dSJan Schmidt ret = btrfs_run_qgroups(trans, root->fs_info); 1113c16ce190SJosef Bacik if (ret) 1114c16ce190SJosef Bacik return ret; 1115546adb0dSJan Schmidt 1116dcdf7f6dSJosef Bacik ret = btrfs_setup_space_cache(trans, root); 1117dcdf7f6dSJosef Bacik if (ret) 1118dcdf7f6dSJosef Bacik return ret; 1119dcdf7f6dSJosef Bacik 1120546adb0dSJan Schmidt /* run_qgroups might have added some more refs */ 1121546adb0dSJan Schmidt ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1122c16ce190SJosef Bacik if (ret) 1123c16ce190SJosef Bacik return ret; 1124ea526d18SJosef Bacik again: 11250b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 11260b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 11270b86a832SChris Mason list_del_init(next); 11280b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1129e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 113087ef2bb4SChris Mason 11319e351cc8SJosef Bacik if (root != fs_info->extent_root) 11329e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 11339e351cc8SJosef Bacik &trans->transaction->switch_commits); 113449b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 113549b25e05SJeff Mahoney if (ret) 113649b25e05SJeff Mahoney return ret; 1137ea526d18SJosef Bacik ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1138ea526d18SJosef Bacik if (ret) 1139ea526d18SJosef Bacik return ret; 114079154b1bSChris Mason } 1141276e680dSYan Zheng 11421bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 1143ea526d18SJosef Bacik ret = btrfs_write_dirty_block_groups(trans, root); 1144ea526d18SJosef Bacik if (ret) 1145ea526d18SJosef Bacik return ret; 1146ea526d18SJosef Bacik ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1147ea526d18SJosef Bacik if (ret) 1148ea526d18SJosef Bacik return ret; 1149ea526d18SJosef Bacik } 1150ea526d18SJosef Bacik 1151ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1152ea526d18SJosef Bacik goto again; 1153ea526d18SJosef Bacik 11549e351cc8SJosef Bacik list_add_tail(&fs_info->extent_root->dirty_list, 11559e351cc8SJosef Bacik &trans->transaction->switch_commits); 11568dabb742SStefan Behrens btrfs_after_dev_replace_commit(fs_info); 11578dabb742SStefan Behrens 115879154b1bSChris Mason return 0; 115979154b1bSChris Mason } 116079154b1bSChris Mason 1161d352ac68SChris Mason /* 1162d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1163d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1164d352ac68SChris Mason * be deleted 1165d352ac68SChris Mason */ 1166cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 11675eda7b5eSChris Mason { 1168a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 1169cfad392bSJosef Bacik if (list_empty(&root->root_list)) 11709d1a2a3aSDavid Sterba list_add_tail(&root->root_list, &root->fs_info->dead_roots); 1171a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 11725eda7b5eSChris Mason } 11735eda7b5eSChris Mason 1174d352ac68SChris Mason /* 11755d4f98a2SYan Zheng * update all the cowonly tree roots on disk 1176d352ac68SChris Mason */ 11775d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, 11785d4f98a2SYan Zheng struct btrfs_root *root) 11790f7d52f4SChris Mason { 11800f7d52f4SChris Mason struct btrfs_root *gang[8]; 11815d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 11820f7d52f4SChris Mason int i; 11830f7d52f4SChris Mason int ret; 118454aa1f4dSChris Mason int err = 0; 118554aa1f4dSChris Mason 1186a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 11870f7d52f4SChris Mason while (1) { 11885d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 11895d4f98a2SYan Zheng (void **)gang, 0, 11900f7d52f4SChris Mason ARRAY_SIZE(gang), 11910f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 11920f7d52f4SChris Mason if (ret == 0) 11930f7d52f4SChris Mason break; 11940f7d52f4SChris Mason for (i = 0; i < ret; i++) { 11950f7d52f4SChris Mason root = gang[i]; 11965d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 11972619ba1fSChris Mason (unsigned long)root->root_key.objectid, 11980f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1199a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 120031153d81SYan Zheng 1201e02119d5SChris Mason btrfs_free_log(trans, root); 12025d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 1203d68fc57bSYan, Zheng btrfs_orphan_commit_root(trans, root); 1204e02119d5SChris Mason 120582d5902dSLi Zefan btrfs_save_ino_cache(root, trans); 120682d5902dSLi Zefan 1207f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 120827cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1209c7548af6SChris Mason smp_mb__after_atomic(); 1210f1ebcc74SLiu Bo 1211978d910dSYan Zheng if (root->commit_root != root->node) { 12129e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 12139e351cc8SJosef Bacik &trans->transaction->switch_commits); 1214978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 1215978d910dSYan Zheng root->node); 1216978d910dSYan Zheng } 121731153d81SYan Zheng 12185d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 12190f7d52f4SChris Mason &root->root_key, 12200f7d52f4SChris Mason &root->root_item); 1221a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 122254aa1f4dSChris Mason if (err) 122354aa1f4dSChris Mason break; 12240f7d52f4SChris Mason } 12259f3a7427SChris Mason } 1226a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 122754aa1f4dSChris Mason return err; 12280f7d52f4SChris Mason } 12290f7d52f4SChris Mason 1230d352ac68SChris Mason /* 1231de78b51aSEric Sandeen * defrag a given btree. 1232de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1233d352ac68SChris Mason */ 1234de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1235e9d0b13bSChris Mason { 1236e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1237e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 12388929ecfaSYan, Zheng int ret; 1239e9d0b13bSChris Mason 124027cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1241e9d0b13bSChris Mason return 0; 12428929ecfaSYan, Zheng 12436b80053dSChris Mason while (1) { 12448929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 12458929ecfaSYan, Zheng if (IS_ERR(trans)) 12468929ecfaSYan, Zheng return PTR_ERR(trans); 12478929ecfaSYan, Zheng 1248de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 12498929ecfaSYan, Zheng 1250e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 1251b53d3f5dSLiu Bo btrfs_btree_balance_dirty(info->tree_root); 1252e9d0b13bSChris Mason cond_resched(); 1253e9d0b13bSChris Mason 12547841cb28SDavid Sterba if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN) 1255e9d0b13bSChris Mason break; 1256210549ebSDavid Sterba 1257210549ebSDavid Sterba if (btrfs_defrag_cancelled(root->fs_info)) { 1258efe120a0SFrank Holton pr_debug("BTRFS: defrag_root cancelled\n"); 1259210549ebSDavid Sterba ret = -EAGAIN; 1260210549ebSDavid Sterba break; 1261210549ebSDavid Sterba } 1262e9d0b13bSChris Mason } 126327cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 12648929ecfaSYan, Zheng return ret; 1265e9d0b13bSChris Mason } 1266e9d0b13bSChris Mason 1267d352ac68SChris Mason /* 1268d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1269aec8030aSMiao Xie * transaction commit. This does the actual creation. 1270aec8030aSMiao Xie * 1271aec8030aSMiao Xie * Note: 1272aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1273aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1274aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1275d352ac68SChris Mason */ 127680b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 12773063d29fSChris Mason struct btrfs_fs_info *fs_info, 12783063d29fSChris Mason struct btrfs_pending_snapshot *pending) 12793063d29fSChris Mason { 12803063d29fSChris Mason struct btrfs_key key; 128180b6794dSChris Mason struct btrfs_root_item *new_root_item; 12823063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 12833063d29fSChris Mason struct btrfs_root *root = pending->root; 12846bdb72deSSage Weil struct btrfs_root *parent_root; 128598c9942aSLiu Bo struct btrfs_block_rsv *rsv; 12866bdb72deSSage Weil struct inode *parent_inode; 128742874b3dSMiao Xie struct btrfs_path *path; 128842874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1289a22285a6SYan, Zheng struct dentry *dentry; 12903063d29fSChris Mason struct extent_buffer *tmp; 1291925baeddSChris Mason struct extent_buffer *old; 12928ea05e3aSAlexander Block struct timespec cur_time = CURRENT_TIME; 1293aec8030aSMiao Xie int ret = 0; 1294d68fc57bSYan, Zheng u64 to_reserve = 0; 12956bdb72deSSage Weil u64 index = 0; 1296a22285a6SYan, Zheng u64 objectid; 1297b83cc969SLi Zefan u64 root_flags; 12988ea05e3aSAlexander Block uuid_le new_uuid; 12993063d29fSChris Mason 130042874b3dSMiao Xie path = btrfs_alloc_path(); 130142874b3dSMiao Xie if (!path) { 1302aec8030aSMiao Xie pending->error = -ENOMEM; 1303aec8030aSMiao Xie return 0; 130442874b3dSMiao Xie } 130542874b3dSMiao Xie 130680b6794dSChris Mason new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS); 130780b6794dSChris Mason if (!new_root_item) { 1308aec8030aSMiao Xie pending->error = -ENOMEM; 13096fa9700eSMiao Xie goto root_item_alloc_fail; 131080b6794dSChris Mason } 1311a22285a6SYan, Zheng 1312aec8030aSMiao Xie pending->error = btrfs_find_free_objectid(tree_root, &objectid); 1313aec8030aSMiao Xie if (pending->error) 13146fa9700eSMiao Xie goto no_free_objectid; 13153063d29fSChris Mason 1316d6726335SQu Wenruo /* 1317d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1318d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1319d6726335SQu Wenruo */ 1320d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1321d6726335SQu Wenruo 1322147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1323d68fc57bSYan, Zheng 1324d68fc57bSYan, Zheng if (to_reserve > 0) { 1325aec8030aSMiao Xie pending->error = btrfs_block_rsv_add(root, 1326aec8030aSMiao Xie &pending->block_rsv, 132708e007d2SMiao Xie to_reserve, 132808e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1329aec8030aSMiao Xie if (pending->error) 1330d6726335SQu Wenruo goto clear_skip_qgroup; 1331d68fc57bSYan, Zheng } 1332d68fc57bSYan, Zheng 13333063d29fSChris Mason key.objectid = objectid; 1334a22285a6SYan, Zheng key.offset = (u64)-1; 1335a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 13363063d29fSChris Mason 13376fa9700eSMiao Xie rsv = trans->block_rsv; 1338a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 13392382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 13406bdb72deSSage Weil 1341a22285a6SYan, Zheng dentry = pending->dentry; 1342e9662f70SMiao Xie parent_inode = pending->dir; 1343a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 13447585717fSChris Mason record_root_in_trans(trans, parent_root); 1345a22285a6SYan, Zheng 13466bdb72deSSage Weil /* 13476bdb72deSSage Weil * insert the directory item 13486bdb72deSSage Weil */ 13496bdb72deSSage Weil ret = btrfs_set_inode_index(parent_inode, &index); 135049b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 135142874b3dSMiao Xie 135242874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 135342874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 135442874b3dSMiao Xie btrfs_ino(parent_inode), 135542874b3dSMiao Xie dentry->d_name.name, 135642874b3dSMiao Xie dentry->d_name.len, 0); 135742874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1358fe66a05aSChris Mason pending->error = -EEXIST; 1359aec8030aSMiao Xie goto dir_item_existed; 136042874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 136142874b3dSMiao Xie ret = PTR_ERR(dir_item); 13628732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 13638732d44fSMiao Xie goto fail; 136479787eaaSJeff Mahoney } 136542874b3dSMiao Xie btrfs_release_path(path); 13666bdb72deSSage Weil 1367e999376fSChris Mason /* 1368e999376fSChris Mason * pull in the delayed directory update 1369e999376fSChris Mason * and the delayed inode item 1370e999376fSChris Mason * otherwise we corrupt the FS during 1371e999376fSChris Mason * snapshot 1372e999376fSChris Mason */ 1373e999376fSChris Mason ret = btrfs_run_delayed_items(trans, root); 13748732d44fSMiao Xie if (ret) { /* Transaction aborted */ 13758732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 13768732d44fSMiao Xie goto fail; 13778732d44fSMiao Xie } 1378e999376fSChris Mason 13797585717fSChris Mason record_root_in_trans(trans, root); 13806bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 13816bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 138208fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 13836bdb72deSSage Weil 1384b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1385b83cc969SLi Zefan if (pending->readonly) 1386b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1387b83cc969SLi Zefan else 1388b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1389b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1390b83cc969SLi Zefan 13918ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 13928ea05e3aSAlexander Block trans->transid); 13938ea05e3aSAlexander Block uuid_le_gen(&new_uuid); 13948ea05e3aSAlexander Block memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE); 13958ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 13968ea05e3aSAlexander Block BTRFS_UUID_SIZE); 139770023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 139870023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 139970023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 14008ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 14018ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 14028ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 14038ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 140470023da2SStefan Behrens } 14053cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 14063cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 140770023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 14088ea05e3aSAlexander Block 1409925baeddSChris Mason old = btrfs_lock_root_node(root); 141049b25e05SJeff Mahoney ret = btrfs_cow_block(trans, root, old, NULL, 0, &old); 141179787eaaSJeff Mahoney if (ret) { 141279787eaaSJeff Mahoney btrfs_tree_unlock(old); 141379787eaaSJeff Mahoney free_extent_buffer(old); 14148732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14158732d44fSMiao Xie goto fail; 141679787eaaSJeff Mahoney } 141749b25e05SJeff Mahoney 14185d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 14193063d29fSChris Mason 142049b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 142179787eaaSJeff Mahoney /* clean up in any case */ 1422925baeddSChris Mason btrfs_tree_unlock(old); 1423925baeddSChris Mason free_extent_buffer(old); 14248732d44fSMiao Xie if (ret) { 14258732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14268732d44fSMiao Xie goto fail; 14278732d44fSMiao Xie } 1428f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 142927cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1430f1ebcc74SLiu Bo smp_wmb(); 1431f1ebcc74SLiu Bo 14325d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1433a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1434a22285a6SYan, Zheng key.offset = trans->transid; 1435a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1436925baeddSChris Mason btrfs_tree_unlock(tmp); 14373063d29fSChris Mason free_extent_buffer(tmp); 14388732d44fSMiao Xie if (ret) { 14398732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14408732d44fSMiao Xie goto fail; 14418732d44fSMiao Xie } 14420660b5afSChris Mason 1443a22285a6SYan, Zheng /* 1444a22285a6SYan, Zheng * insert root back/forward references 1445a22285a6SYan, Zheng */ 1446a22285a6SYan, Zheng ret = btrfs_add_root_ref(trans, tree_root, objectid, 1447a22285a6SYan, Zheng parent_root->root_key.objectid, 144833345d01SLi Zefan btrfs_ino(parent_inode), index, 1449a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 14508732d44fSMiao Xie if (ret) { 14518732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14528732d44fSMiao Xie goto fail; 14538732d44fSMiao Xie } 1454a22285a6SYan, Zheng 1455a22285a6SYan, Zheng key.offset = (u64)-1; 1456a22285a6SYan, Zheng pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key); 145779787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 145879787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 14598732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14608732d44fSMiao Xie goto fail; 146179787eaaSJeff Mahoney } 1462d68fc57bSYan, Zheng 146349b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 14648732d44fSMiao Xie if (ret) { 14658732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14668732d44fSMiao Xie goto fail; 14678732d44fSMiao Xie } 1468361048f5SMiao Xie 1469361048f5SMiao Xie ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 14708732d44fSMiao Xie if (ret) { 14718732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14728732d44fSMiao Xie goto fail; 14738732d44fSMiao Xie } 147442874b3dSMiao Xie 147542874b3dSMiao Xie ret = btrfs_insert_dir_item(trans, parent_root, 147642874b3dSMiao Xie dentry->d_name.name, dentry->d_name.len, 147742874b3dSMiao Xie parent_inode, &key, 147842874b3dSMiao Xie BTRFS_FT_DIR, index); 147942874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 14809c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 14818732d44fSMiao Xie if (ret) { 14828732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14838732d44fSMiao Xie goto fail; 14848732d44fSMiao Xie } 148542874b3dSMiao Xie 148642874b3dSMiao Xie btrfs_i_size_write(parent_inode, parent_inode->i_size + 148742874b3dSMiao Xie dentry->d_name.len * 2); 148842874b3dSMiao Xie parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; 1489be6aef60SJosef Bacik ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode); 1490dd5f9615SStefan Behrens if (ret) { 14918732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 1492dd5f9615SStefan Behrens goto fail; 1493dd5f9615SStefan Behrens } 1494dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, new_uuid.b, 1495dd5f9615SStefan Behrens BTRFS_UUID_KEY_SUBVOL, objectid); 1496dd5f9615SStefan Behrens if (ret) { 1497dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1498dd5f9615SStefan Behrens goto fail; 1499dd5f9615SStefan Behrens } 1500dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1501dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, 1502dd5f9615SStefan Behrens new_root_item->received_uuid, 1503dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1504dd5f9615SStefan Behrens objectid); 1505dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 1506dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1507dd5f9615SStefan Behrens goto fail; 1508dd5f9615SStefan Behrens } 1509dd5f9615SStefan Behrens } 1510d6726335SQu Wenruo 1511d6726335SQu Wenruo ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1512d6726335SQu Wenruo if (ret) { 1513d6726335SQu Wenruo btrfs_abort_transaction(trans, root, ret); 1514d6726335SQu Wenruo goto fail; 1515d6726335SQu Wenruo } 1516d6726335SQu Wenruo 1517d6726335SQu Wenruo /* 1518d6726335SQu Wenruo * account qgroup counters before qgroup_inherit() 1519d6726335SQu Wenruo */ 1520d6726335SQu Wenruo ret = btrfs_qgroup_prepare_account_extents(trans, fs_info); 1521d6726335SQu Wenruo if (ret) 1522d6726335SQu Wenruo goto fail; 1523d6726335SQu Wenruo ret = btrfs_qgroup_account_extents(trans, fs_info); 1524d6726335SQu Wenruo if (ret) 1525d6726335SQu Wenruo goto fail; 1526d6726335SQu Wenruo ret = btrfs_qgroup_inherit(trans, fs_info, 1527d6726335SQu Wenruo root->root_key.objectid, 1528d6726335SQu Wenruo objectid, pending->inherit); 1529d6726335SQu Wenruo if (ret) { 1530d6726335SQu Wenruo btrfs_abort_transaction(trans, root, ret); 1531d6726335SQu Wenruo goto fail; 1532d6726335SQu Wenruo } 1533d6726335SQu Wenruo 15343063d29fSChris Mason fail: 1535aec8030aSMiao Xie pending->error = ret; 1536aec8030aSMiao Xie dir_item_existed: 153798c9942aSLiu Bo trans->block_rsv = rsv; 15382382c5ccSLiu Bo trans->bytes_reserved = 0; 1539d6726335SQu Wenruo clear_skip_qgroup: 1540d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 15416fa9700eSMiao Xie no_free_objectid: 15426fa9700eSMiao Xie kfree(new_root_item); 15436fa9700eSMiao Xie root_item_alloc_fail: 154442874b3dSMiao Xie btrfs_free_path(path); 154549b25e05SJeff Mahoney return ret; 15463063d29fSChris Mason } 15473063d29fSChris Mason 1548d352ac68SChris Mason /* 1549d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1550d352ac68SChris Mason */ 155180b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, 15523063d29fSChris Mason struct btrfs_fs_info *fs_info) 15533063d29fSChris Mason { 1554aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 15553063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1556aec8030aSMiao Xie int ret = 0; 15573de4586cSChris Mason 1558aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1559aec8030aSMiao Xie list_del(&pending->list); 1560aec8030aSMiao Xie ret = create_pending_snapshot(trans, fs_info, pending); 1561aec8030aSMiao Xie if (ret) 1562aec8030aSMiao Xie break; 1563aec8030aSMiao Xie } 1564aec8030aSMiao Xie return ret; 15653de4586cSChris Mason } 15663de4586cSChris Mason 15675d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root) 15685d4f98a2SYan Zheng { 15695d4f98a2SYan Zheng struct btrfs_root_item *root_item; 15705d4f98a2SYan Zheng struct btrfs_super_block *super; 15715d4f98a2SYan Zheng 15726c41761fSDavid Sterba super = root->fs_info->super_copy; 15735d4f98a2SYan Zheng 15745d4f98a2SYan Zheng root_item = &root->fs_info->chunk_root->root_item; 15755d4f98a2SYan Zheng super->chunk_root = root_item->bytenr; 15765d4f98a2SYan Zheng super->chunk_root_generation = root_item->generation; 15775d4f98a2SYan Zheng super->chunk_root_level = root_item->level; 15785d4f98a2SYan Zheng 15795d4f98a2SYan Zheng root_item = &root->fs_info->tree_root->root_item; 15805d4f98a2SYan Zheng super->root = root_item->bytenr; 15815d4f98a2SYan Zheng super->generation = root_item->generation; 15825d4f98a2SYan Zheng super->root_level = root_item->level; 158373bc1876SJosef Bacik if (btrfs_test_opt(root, SPACE_CACHE)) 15840af3d00bSJosef Bacik super->cache_generation = root_item->generation; 158570f80175SStefan Behrens if (root->fs_info->update_uuid_tree_gen) 158626432799SStefan Behrens super->uuid_tree_generation = root_item->generation; 15875d4f98a2SYan Zheng } 15885d4f98a2SYan Zheng 1589f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1590f36f3042SChris Mason { 15914a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1592f36f3042SChris Mason int ret = 0; 15934a9d8bdeSMiao Xie 1594a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 15954a9d8bdeSMiao Xie trans = info->running_transaction; 15964a9d8bdeSMiao Xie if (trans) 15974a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1598a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1599f36f3042SChris Mason return ret; 1600f36f3042SChris Mason } 1601f36f3042SChris Mason 16028929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 16038929ecfaSYan, Zheng { 16044a9d8bdeSMiao Xie struct btrfs_transaction *trans; 16058929ecfaSYan, Zheng int ret = 0; 16064a9d8bdeSMiao Xie 1607a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 16084a9d8bdeSMiao Xie trans = info->running_transaction; 16094a9d8bdeSMiao Xie if (trans) 16104a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1611a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 16128929ecfaSYan, Zheng return ret; 16138929ecfaSYan, Zheng } 16148929ecfaSYan, Zheng 1615bb9c12c9SSage Weil /* 1616bb9c12c9SSage Weil * wait for the current transaction commit to start and block subsequent 1617bb9c12c9SSage Weil * transaction joins 1618bb9c12c9SSage Weil */ 1619bb9c12c9SSage Weil static void wait_current_trans_commit_start(struct btrfs_root *root, 1620bb9c12c9SSage Weil struct btrfs_transaction *trans) 1621bb9c12c9SSage Weil { 16224a9d8bdeSMiao Xie wait_event(root->fs_info->transaction_blocked_wait, 1623501407aaSJosef Bacik trans->state >= TRANS_STATE_COMMIT_START || 1624501407aaSJosef Bacik trans->aborted); 1625bb9c12c9SSage Weil } 1626bb9c12c9SSage Weil 1627bb9c12c9SSage Weil /* 1628bb9c12c9SSage Weil * wait for the current transaction to start and then become unblocked. 1629bb9c12c9SSage Weil * caller holds ref. 1630bb9c12c9SSage Weil */ 1631bb9c12c9SSage Weil static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root, 1632bb9c12c9SSage Weil struct btrfs_transaction *trans) 1633bb9c12c9SSage Weil { 163472d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 1635501407aaSJosef Bacik trans->state >= TRANS_STATE_UNBLOCKED || 1636501407aaSJosef Bacik trans->aborted); 1637bb9c12c9SSage Weil } 1638bb9c12c9SSage Weil 1639bb9c12c9SSage Weil /* 1640bb9c12c9SSage Weil * commit transactions asynchronously. once btrfs_commit_transaction_async 1641bb9c12c9SSage Weil * returns, any subsequent transaction will not be allowed to join. 1642bb9c12c9SSage Weil */ 1643bb9c12c9SSage Weil struct btrfs_async_commit { 1644bb9c12c9SSage Weil struct btrfs_trans_handle *newtrans; 1645bb9c12c9SSage Weil struct btrfs_root *root; 16467892b5afSMiao Xie struct work_struct work; 1647bb9c12c9SSage Weil }; 1648bb9c12c9SSage Weil 1649bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work) 1650bb9c12c9SSage Weil { 1651bb9c12c9SSage Weil struct btrfs_async_commit *ac = 16527892b5afSMiao Xie container_of(work, struct btrfs_async_commit, work); 1653bb9c12c9SSage Weil 16546fc4e354SSage Weil /* 16556fc4e354SSage Weil * We've got freeze protection passed with the transaction. 16566fc4e354SSage Weil * Tell lockdep about it. 16576fc4e354SSage Weil */ 1658b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 1659bee9182dSOleg Nesterov __sb_writers_acquired(ac->root->fs_info->sb, SB_FREEZE_FS); 16606fc4e354SSage Weil 1661e209db7aSSage Weil current->journal_info = ac->newtrans; 1662e209db7aSSage Weil 1663bb9c12c9SSage Weil btrfs_commit_transaction(ac->newtrans, ac->root); 1664bb9c12c9SSage Weil kfree(ac); 1665bb9c12c9SSage Weil } 1666bb9c12c9SSage Weil 1667bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, 1668bb9c12c9SSage Weil struct btrfs_root *root, 1669bb9c12c9SSage Weil int wait_for_unblock) 1670bb9c12c9SSage Weil { 1671bb9c12c9SSage Weil struct btrfs_async_commit *ac; 1672bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1673bb9c12c9SSage Weil 1674bb9c12c9SSage Weil ac = kmalloc(sizeof(*ac), GFP_NOFS); 1675db5b493aSTsutomu Itoh if (!ac) 1676db5b493aSTsutomu Itoh return -ENOMEM; 1677bb9c12c9SSage Weil 16787892b5afSMiao Xie INIT_WORK(&ac->work, do_async_commit); 1679bb9c12c9SSage Weil ac->root = root; 16807a7eaa40SJosef Bacik ac->newtrans = btrfs_join_transaction(root); 16813612b495STsutomu Itoh if (IS_ERR(ac->newtrans)) { 16823612b495STsutomu Itoh int err = PTR_ERR(ac->newtrans); 16833612b495STsutomu Itoh kfree(ac); 16843612b495STsutomu Itoh return err; 16853612b495STsutomu Itoh } 1686bb9c12c9SSage Weil 1687bb9c12c9SSage Weil /* take transaction reference */ 1688bb9c12c9SSage Weil cur_trans = trans->transaction; 168913c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 1690bb9c12c9SSage Weil 1691bb9c12c9SSage Weil btrfs_end_transaction(trans, root); 16926fc4e354SSage Weil 16936fc4e354SSage Weil /* 16946fc4e354SSage Weil * Tell lockdep we've released the freeze rwsem, since the 16956fc4e354SSage Weil * async commit thread will be the one to unlock it. 16966fc4e354SSage Weil */ 1697b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 1698bee9182dSOleg Nesterov __sb_writers_release(root->fs_info->sb, SB_FREEZE_FS); 16996fc4e354SSage Weil 17007892b5afSMiao Xie schedule_work(&ac->work); 1701bb9c12c9SSage Weil 1702bb9c12c9SSage Weil /* wait for transaction to start and unblock */ 1703bb9c12c9SSage Weil if (wait_for_unblock) 1704bb9c12c9SSage Weil wait_current_trans_commit_start_and_unblock(root, cur_trans); 1705bb9c12c9SSage Weil else 1706bb9c12c9SSage Weil wait_current_trans_commit_start(root, cur_trans); 1707bb9c12c9SSage Weil 170838e88054SSage Weil if (current->journal_info == trans) 170938e88054SSage Weil current->journal_info = NULL; 171038e88054SSage Weil 1711724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1712bb9c12c9SSage Weil return 0; 1713bb9c12c9SSage Weil } 1714bb9c12c9SSage Weil 171549b25e05SJeff Mahoney 171649b25e05SJeff Mahoney static void cleanup_transaction(struct btrfs_trans_handle *trans, 17177b8b92afSJosef Bacik struct btrfs_root *root, int err) 171849b25e05SJeff Mahoney { 171949b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 1720f094ac32SLiu Bo DEFINE_WAIT(wait); 172149b25e05SJeff Mahoney 172249b25e05SJeff Mahoney WARN_ON(trans->use_count > 1); 172349b25e05SJeff Mahoney 17247b8b92afSJosef Bacik btrfs_abort_transaction(trans, root, err); 17257b8b92afSJosef Bacik 172649b25e05SJeff Mahoney spin_lock(&root->fs_info->trans_lock); 172766b6135bSLiu Bo 172825d8c284SMiao Xie /* 172925d8c284SMiao Xie * If the transaction is removed from the list, it means this 173025d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 173125d8c284SMiao Xie * to call the cleanup function. 173225d8c284SMiao Xie */ 173325d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 173466b6135bSLiu Bo 173549b25e05SJeff Mahoney list_del_init(&cur_trans->list); 1736d7096fc3SJosef Bacik if (cur_trans == root->fs_info->running_transaction) { 17374a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1738f094ac32SLiu Bo spin_unlock(&root->fs_info->trans_lock); 1739f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1740f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1741f094ac32SLiu Bo 1742f094ac32SLiu Bo spin_lock(&root->fs_info->trans_lock); 1743d7096fc3SJosef Bacik } 174449b25e05SJeff Mahoney spin_unlock(&root->fs_info->trans_lock); 174549b25e05SJeff Mahoney 174649b25e05SJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, root); 174749b25e05SJeff Mahoney 17484a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 17494a9d8bdeSMiao Xie if (cur_trans == root->fs_info->running_transaction) 17504a9d8bdeSMiao Xie root->fs_info->running_transaction = NULL; 17514a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 17524a9d8bdeSMiao Xie 1753e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 1754e0228285SJosef Bacik sb_end_intwrite(root->fs_info->sb); 1755724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1756724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 175749b25e05SJeff Mahoney 175849b25e05SJeff Mahoney trace_btrfs_transaction_commit(root); 175949b25e05SJeff Mahoney 176049b25e05SJeff Mahoney if (current->journal_info == trans) 176149b25e05SJeff Mahoney current->journal_info = NULL; 1762c0af8f0bSWang Shilong btrfs_scrub_cancel(root->fs_info); 176349b25e05SJeff Mahoney 176449b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 176549b25e05SJeff Mahoney } 176649b25e05SJeff Mahoney 176782436617SMiao Xie static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 176882436617SMiao Xie { 176982436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 17706c255e67SMiao Xie return btrfs_start_delalloc_roots(fs_info, 1, -1); 177182436617SMiao Xie return 0; 177282436617SMiao Xie } 177382436617SMiao Xie 177482436617SMiao Xie static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 177582436617SMiao Xie { 177682436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 1777b0244199SMiao Xie btrfs_wait_ordered_roots(fs_info, -1); 177882436617SMiao Xie } 177982436617SMiao Xie 178050d9aa99SJosef Bacik static inline void 178150d9aa99SJosef Bacik btrfs_wait_pending_ordered(struct btrfs_transaction *cur_trans, 178250d9aa99SJosef Bacik struct btrfs_fs_info *fs_info) 178350d9aa99SJosef Bacik { 178450d9aa99SJosef Bacik struct btrfs_ordered_extent *ordered; 178550d9aa99SJosef Bacik 178650d9aa99SJosef Bacik spin_lock(&fs_info->trans_lock); 178750d9aa99SJosef Bacik while (!list_empty(&cur_trans->pending_ordered)) { 178850d9aa99SJosef Bacik ordered = list_first_entry(&cur_trans->pending_ordered, 178950d9aa99SJosef Bacik struct btrfs_ordered_extent, 179050d9aa99SJosef Bacik trans_list); 179150d9aa99SJosef Bacik list_del_init(&ordered->trans_list); 179250d9aa99SJosef Bacik spin_unlock(&fs_info->trans_lock); 179350d9aa99SJosef Bacik 179450d9aa99SJosef Bacik wait_event(ordered->wait, test_bit(BTRFS_ORDERED_COMPLETE, 179550d9aa99SJosef Bacik &ordered->flags)); 179650d9aa99SJosef Bacik btrfs_put_ordered_extent(ordered); 179750d9aa99SJosef Bacik spin_lock(&fs_info->trans_lock); 179850d9aa99SJosef Bacik } 179950d9aa99SJosef Bacik spin_unlock(&fs_info->trans_lock); 180050d9aa99SJosef Bacik } 180150d9aa99SJosef Bacik 180279154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 180379154b1bSChris Mason struct btrfs_root *root) 180479154b1bSChris Mason { 180549b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 18068fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 1807656f30dbSFilipe Manana struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode); 180825287e0aSMiao Xie int ret; 180979154b1bSChris Mason 18108d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 18118d25a086SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 181225287e0aSMiao Xie ret = cur_trans->aborted; 1813e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1814e4a2bcacSJosef Bacik return ret; 181525287e0aSMiao Xie } 181649b25e05SJeff Mahoney 181756bec294SChris Mason /* make a pass through all the delayed refs we have so far 181856bec294SChris Mason * any runnings procs may add more while we are here 181956bec294SChris Mason */ 182056bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 1821e4a2bcacSJosef Bacik if (ret) { 1822e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1823e4a2bcacSJosef Bacik return ret; 1824e4a2bcacSJosef Bacik } 182556bec294SChris Mason 18260e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 18270e721106SJosef Bacik trans->block_rsv = NULL; 1828272d26d0SMiao Xie if (trans->qgroup_reserved) { 1829272d26d0SMiao Xie btrfs_qgroup_free(root, trans->qgroup_reserved); 1830272d26d0SMiao Xie trans->qgroup_reserved = 0; 1831272d26d0SMiao Xie } 18320e721106SJosef Bacik 1833b7ec40d7SChris Mason cur_trans = trans->transaction; 183449b25e05SJeff Mahoney 183556bec294SChris Mason /* 183656bec294SChris Mason * set the flushing flag so procs in this transaction have to 183756bec294SChris Mason * start sending their work down. 183856bec294SChris Mason */ 1839b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 18401be41b78SJosef Bacik smp_wmb(); 184156bec294SChris Mason 1842ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 1843ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 1844ea658badSJosef Bacik 1845c3e69d58SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 1846e4a2bcacSJosef Bacik if (ret) { 1847e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1848e4a2bcacSJosef Bacik return ret; 1849e4a2bcacSJosef Bacik } 185056bec294SChris Mason 18511bbc621eSChris Mason if (!cur_trans->dirty_bg_run) { 18521bbc621eSChris Mason int run_it = 0; 18531bbc621eSChris Mason 18541bbc621eSChris Mason /* this mutex is also taken before trying to set 18551bbc621eSChris Mason * block groups readonly. We need to make sure 18561bbc621eSChris Mason * that nobody has set a block group readonly 18571bbc621eSChris Mason * after a extents from that block group have been 18581bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 18591bbc621eSChris Mason * will wait for the transaction to commit if it 18601bbc621eSChris Mason * finds dirty_bg_run = 1 18611bbc621eSChris Mason * 18621bbc621eSChris Mason * The dirty_bg_run flag is also used to make sure only 18631bbc621eSChris Mason * one process starts all the block group IO. It wouldn't 18641bbc621eSChris Mason * hurt to have more than one go through, but there's no 18651bbc621eSChris Mason * real advantage to it either. 18661bbc621eSChris Mason */ 18671bbc621eSChris Mason mutex_lock(&root->fs_info->ro_block_group_mutex); 18681bbc621eSChris Mason if (!cur_trans->dirty_bg_run) { 18691bbc621eSChris Mason run_it = 1; 18701bbc621eSChris Mason cur_trans->dirty_bg_run = 1; 18711bbc621eSChris Mason } 18721bbc621eSChris Mason mutex_unlock(&root->fs_info->ro_block_group_mutex); 18731bbc621eSChris Mason 18741bbc621eSChris Mason if (run_it) 18751bbc621eSChris Mason ret = btrfs_start_dirty_block_groups(trans, root); 18761bbc621eSChris Mason } 18771bbc621eSChris Mason if (ret) { 18781bbc621eSChris Mason btrfs_end_transaction(trans, root); 18791bbc621eSChris Mason return ret; 18801bbc621eSChris Mason } 18811bbc621eSChris Mason 18824a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 1883d3efe084SFilipe Manana list_splice_init(&trans->ordered, &cur_trans->pending_ordered); 18844a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 18854a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 188613c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 188749b25e05SJeff Mahoney ret = btrfs_end_transaction(trans, root); 1888ccd467d6SChris Mason 1889b9c8300cSLi Zefan wait_for_commit(root, cur_trans); 189015ee9bc7SJosef Bacik 1891b4924a0fSLiu Bo if (unlikely(cur_trans->aborted)) 1892b4924a0fSLiu Bo ret = cur_trans->aborted; 1893b4924a0fSLiu Bo 1894724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 189515ee9bc7SJosef Bacik 189649b25e05SJeff Mahoney return ret; 189779154b1bSChris Mason } 18984313b399SChris Mason 18994a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 1900bb9c12c9SSage Weil wake_up(&root->fs_info->transaction_blocked_wait); 1901bb9c12c9SSage Weil 1902ccd467d6SChris Mason if (cur_trans->list.prev != &root->fs_info->trans_list) { 1903ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 1904ccd467d6SChris Mason struct btrfs_transaction, list); 19054a9d8bdeSMiao Xie if (prev_trans->state != TRANS_STATE_COMPLETED) { 190613c5a93eSJosef Bacik atomic_inc(&prev_trans->use_count); 1907a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1908ccd467d6SChris Mason 1909ccd467d6SChris Mason wait_for_commit(root, prev_trans); 19101f9b8c8fSFilipe Manana ret = prev_trans->aborted; 1911ccd467d6SChris Mason 1912724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 19131f9b8c8fSFilipe Manana if (ret) 19141f9b8c8fSFilipe Manana goto cleanup_transaction; 1915a4abeea4SJosef Bacik } else { 1916a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1917ccd467d6SChris Mason } 1918a4abeea4SJosef Bacik } else { 1919a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1920ccd467d6SChris Mason } 192115ee9bc7SJosef Bacik 19220860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 19230860adfdSMiao Xie 192482436617SMiao Xie ret = btrfs_start_delalloc_flush(root->fs_info); 192582436617SMiao Xie if (ret) 192682436617SMiao Xie goto cleanup_transaction; 192782436617SMiao Xie 19288d875f95SChris Mason ret = btrfs_run_delayed_items(trans, root); 192949b25e05SJeff Mahoney if (ret) 193049b25e05SJeff Mahoney goto cleanup_transaction; 193116cdcec7SMiao Xie 1932581227d0SMiao Xie wait_event(cur_trans->writer_wait, 1933581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 1934ed3b3d31SChris Mason 1935581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 19368d875f95SChris Mason ret = btrfs_run_delayed_items(trans, root); 1937ca469637SMiao Xie if (ret) 1938ca469637SMiao Xie goto cleanup_transaction; 1939ca469637SMiao Xie 194082436617SMiao Xie btrfs_wait_delalloc_flush(root->fs_info); 1941cb7ab021SWang Shilong 194250d9aa99SJosef Bacik btrfs_wait_pending_ordered(cur_trans, root->fs_info); 194350d9aa99SJosef Bacik 1944cb7ab021SWang Shilong btrfs_scrub_pause(root); 1945ed0ca140SJosef Bacik /* 1946ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 1947ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 19484a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 1949ed0ca140SJosef Bacik */ 1950a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 19514a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1952a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1953ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 1954ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 195515ee9bc7SJosef Bacik 19562cba30f1SMiao Xie /* ->aborted might be set after the previous check, so check it */ 19572cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 19582cba30f1SMiao Xie ret = cur_trans->aborted; 19596cf7f77eSWang Shilong goto scrub_continue; 19602cba30f1SMiao Xie } 19617585717fSChris Mason /* 19627585717fSChris Mason * the reloc mutex makes sure that we stop 19637585717fSChris Mason * the balancing code from coming in and moving 19647585717fSChris Mason * extents around in the middle of the commit 19657585717fSChris Mason */ 19667585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 19677585717fSChris Mason 196842874b3dSMiao Xie /* 196942874b3dSMiao Xie * We needn't worry about the delayed items because we will 197042874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 197142874b3dSMiao Xie * core function of the snapshot creation. 197242874b3dSMiao Xie */ 197342874b3dSMiao Xie ret = create_pending_snapshots(trans, root->fs_info); 197449b25e05SJeff Mahoney if (ret) { 197549b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19766cf7f77eSWang Shilong goto scrub_continue; 197749b25e05SJeff Mahoney } 19783063d29fSChris Mason 197942874b3dSMiao Xie /* 198042874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 198142874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 198242874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 198342874b3dSMiao Xie * them. 198442874b3dSMiao Xie * 198542874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 198642874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 198742874b3dSMiao Xie * the nodes and leaves. 198842874b3dSMiao Xie */ 198942874b3dSMiao Xie ret = btrfs_run_delayed_items(trans, root); 199049b25e05SJeff Mahoney if (ret) { 199149b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19926cf7f77eSWang Shilong goto scrub_continue; 199349b25e05SJeff Mahoney } 199416cdcec7SMiao Xie 199556bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 199649b25e05SJeff Mahoney if (ret) { 199749b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19986cf7f77eSWang Shilong goto scrub_continue; 199949b25e05SJeff Mahoney } 200056bec294SChris Mason 20010ed4792aSQu Wenruo /* Reocrd old roots for later qgroup accounting */ 20020ed4792aSQu Wenruo ret = btrfs_qgroup_prepare_account_extents(trans, root->fs_info); 20030ed4792aSQu Wenruo if (ret) { 20040ed4792aSQu Wenruo mutex_unlock(&root->fs_info->reloc_mutex); 20050ed4792aSQu Wenruo goto scrub_continue; 20060ed4792aSQu Wenruo } 20070ed4792aSQu Wenruo 2008e999376fSChris Mason /* 2009e999376fSChris Mason * make sure none of the code above managed to slip in a 2010e999376fSChris Mason * delayed item 2011e999376fSChris Mason */ 2012e999376fSChris Mason btrfs_assert_delayed_root_empty(root); 2013e999376fSChris Mason 20142c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2015dc17ff8fSChris Mason 2016e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 2017e02119d5SChris Mason * various roots consistent with each other. Every pointer 2018e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 2019e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 2020e02119d5SChris Mason * the tree logging code from jumping in and changing any 2021e02119d5SChris Mason * of the trees. 2022e02119d5SChris Mason * 2023e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 2024e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 2025e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 2026e02119d5SChris Mason * from now until after the super is written, we avoid races 2027e02119d5SChris Mason * with the tree-log code. 2028e02119d5SChris Mason */ 2029e02119d5SChris Mason mutex_lock(&root->fs_info->tree_log_mutex); 20301a40e23bSZheng Yan 20315d4f98a2SYan Zheng ret = commit_fs_roots(trans, root); 203249b25e05SJeff Mahoney if (ret) { 203349b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 2034871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 20356cf7f77eSWang Shilong goto scrub_continue; 203649b25e05SJeff Mahoney } 203754aa1f4dSChris Mason 20383818aea2SQu Wenruo /* 20397e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 20407e1876acSDavid Sterba * before the next transaction. 20413818aea2SQu Wenruo */ 2042572d9ab7SDavid Sterba btrfs_apply_pending_changes(root->fs_info); 20433818aea2SQu Wenruo 20445d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2045e02119d5SChris Mason * safe to free the root of tree log roots 2046e02119d5SChris Mason */ 2047e02119d5SChris Mason btrfs_free_log_root_tree(trans, root->fs_info); 2048e02119d5SChris Mason 20490ed4792aSQu Wenruo /* 20500ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 20510ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 20520ed4792aSQu Wenruo */ 20530ed4792aSQu Wenruo ret = btrfs_qgroup_account_extents(trans, root->fs_info); 20540ed4792aSQu Wenruo if (ret < 0) { 20550ed4792aSQu Wenruo mutex_unlock(&root->fs_info->tree_log_mutex); 20560ed4792aSQu Wenruo mutex_unlock(&root->fs_info->reloc_mutex); 20570ed4792aSQu Wenruo goto scrub_continue; 20580ed4792aSQu Wenruo } 20590ed4792aSQu Wenruo 20605d4f98a2SYan Zheng ret = commit_cowonly_roots(trans, root); 206149b25e05SJeff Mahoney if (ret) { 206249b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 2063871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 20646cf7f77eSWang Shilong goto scrub_continue; 206549b25e05SJeff Mahoney } 206654aa1f4dSChris Mason 20672cba30f1SMiao Xie /* 20682cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 20692cba30f1SMiao Xie * update ->aborted, check it. 20702cba30f1SMiao Xie */ 20712cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 20722cba30f1SMiao Xie ret = cur_trans->aborted; 20732cba30f1SMiao Xie mutex_unlock(&root->fs_info->tree_log_mutex); 20742cba30f1SMiao Xie mutex_unlock(&root->fs_info->reloc_mutex); 20756cf7f77eSWang Shilong goto scrub_continue; 20762cba30f1SMiao Xie } 20772cba30f1SMiao Xie 207811833d66SYan Zheng btrfs_prepare_extent_commit(trans, root); 207911833d66SYan Zheng 208078fae27eSChris Mason cur_trans = root->fs_info->running_transaction; 20815f39d397SChris Mason 20825d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->tree_root->root_item, 20835d4f98a2SYan Zheng root->fs_info->tree_root->node); 20849e351cc8SJosef Bacik list_add_tail(&root->fs_info->tree_root->dirty_list, 20859e351cc8SJosef Bacik &cur_trans->switch_commits); 20865d4f98a2SYan Zheng 20875d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->chunk_root->root_item, 20885d4f98a2SYan Zheng root->fs_info->chunk_root->node); 20899e351cc8SJosef Bacik list_add_tail(&root->fs_info->chunk_root->dirty_list, 20909e351cc8SJosef Bacik &cur_trans->switch_commits); 20919e351cc8SJosef Bacik 20929e351cc8SJosef Bacik switch_commit_roots(cur_trans, root->fs_info); 20935d4f98a2SYan Zheng 2094edf39272SJan Schmidt assert_qgroups_uptodate(trans); 2095ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 20961bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 20975d4f98a2SYan Zheng update_super_roots(root); 2098e02119d5SChris Mason 20996c41761fSDavid Sterba btrfs_set_super_log_root(root->fs_info->super_copy, 0); 21006c41761fSDavid Sterba btrfs_set_super_log_root_level(root->fs_info->super_copy, 0); 21016c41761fSDavid Sterba memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy, 21026c41761fSDavid Sterba sizeof(*root->fs_info->super_copy)); 2103ccd467d6SChris Mason 2104935e5cc9SMiao Xie btrfs_update_commit_device_size(root->fs_info); 2105ce7213c7SMiao Xie btrfs_update_commit_device_bytes_used(root, cur_trans); 2106935e5cc9SMiao Xie 2107656f30dbSFilipe Manana clear_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags); 2108656f30dbSFilipe Manana clear_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags); 2109656f30dbSFilipe Manana 21104fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 21114fbcdf66SFilipe Manana 2112a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 21134a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 2114a4abeea4SJosef Bacik root->fs_info->running_transaction = NULL; 2115a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 21167585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 2117b7ec40d7SChris Mason 2118f9295749SChris Mason wake_up(&root->fs_info->transaction_wait); 2119e6dcd2dcSChris Mason 212079154b1bSChris Mason ret = btrfs_write_and_wait_transaction(trans, root); 212149b25e05SJeff Mahoney if (ret) { 212249b25e05SJeff Mahoney btrfs_error(root->fs_info, ret, 212308748810SDavid Sterba "Error while writing out transaction"); 212449b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 21256cf7f77eSWang Shilong goto scrub_continue; 212649b25e05SJeff Mahoney } 212749b25e05SJeff Mahoney 212849b25e05SJeff Mahoney ret = write_ctree_super(trans, root, 0); 212949b25e05SJeff Mahoney if (ret) { 213049b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 21316cf7f77eSWang Shilong goto scrub_continue; 213249b25e05SJeff Mahoney } 21334313b399SChris Mason 2134e02119d5SChris Mason /* 2135e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2136e02119d5SChris Mason * to go about their business 2137e02119d5SChris Mason */ 2138e02119d5SChris Mason mutex_unlock(&root->fs_info->tree_log_mutex); 2139e02119d5SChris Mason 214011833d66SYan Zheng btrfs_finish_extent_commit(trans, root); 21414313b399SChris Mason 214213212b54SZhao Lei if (cur_trans->have_free_bgs) 214313212b54SZhao Lei btrfs_clear_space_info_full(root->fs_info); 214413212b54SZhao Lei 214515ee9bc7SJosef Bacik root->fs_info->last_trans_committed = cur_trans->transid; 21464a9d8bdeSMiao Xie /* 21474a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 21484a9d8bdeSMiao Xie * which can change it. 21494a9d8bdeSMiao Xie */ 21504a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 21512c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 21523de4586cSChris Mason 2153a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 215413c5a93eSJosef Bacik list_del_init(&cur_trans->list); 2155a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 2156a4abeea4SJosef Bacik 2157724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2158724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 215958176a96SJosef Bacik 21600860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 2161b2b5ef5cSJan Kara sb_end_intwrite(root->fs_info->sb); 2162b2b5ef5cSJan Kara 21631abe9b8aSliubo trace_btrfs_transaction_commit(root); 21641abe9b8aSliubo 2165a2de733cSArne Jansen btrfs_scrub_continue(root); 2166a2de733cSArne Jansen 21679ed74f2dSJosef Bacik if (current->journal_info == trans) 21689ed74f2dSJosef Bacik current->journal_info = NULL; 21699ed74f2dSJosef Bacik 21702c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 217124bbcf04SYan, Zheng 21728a733013SZhao Lei if (current != root->fs_info->transaction_kthread && 21738a733013SZhao Lei current != root->fs_info->cleaner_kthread) 217424bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 217524bbcf04SYan, Zheng 217679154b1bSChris Mason return ret; 217749b25e05SJeff Mahoney 21786cf7f77eSWang Shilong scrub_continue: 21796cf7f77eSWang Shilong btrfs_scrub_continue(root); 218049b25e05SJeff Mahoney cleanup_transaction: 21810e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 21824fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 21830e721106SJosef Bacik trans->block_rsv = NULL; 2184272d26d0SMiao Xie if (trans->qgroup_reserved) { 2185272d26d0SMiao Xie btrfs_qgroup_free(root, trans->qgroup_reserved); 2186272d26d0SMiao Xie trans->qgroup_reserved = 0; 2187272d26d0SMiao Xie } 2188c2cf52ebSSimon Kirby btrfs_warn(root->fs_info, "Skipping commit of aborted transaction."); 218949b25e05SJeff Mahoney if (current->journal_info == trans) 219049b25e05SJeff Mahoney current->journal_info = NULL; 21917b8b92afSJosef Bacik cleanup_transaction(trans, root, ret); 219249b25e05SJeff Mahoney 219349b25e05SJeff Mahoney return ret; 219479154b1bSChris Mason } 219579154b1bSChris Mason 2196d352ac68SChris Mason /* 21979d1a2a3aSDavid Sterba * return < 0 if error 21989d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 21999d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 22009d1a2a3aSDavid Sterba * 22019d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 22029d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 22039d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 22049d1a2a3aSDavid Sterba * few seconds later. 2205d352ac68SChris Mason */ 22069d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) 2207e9d0b13bSChris Mason { 22089d1a2a3aSDavid Sterba int ret; 22095d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 2210e9d0b13bSChris Mason 2211a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 22129d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 22139d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 22149d1a2a3aSDavid Sterba return 0; 22159d1a2a3aSDavid Sterba } 22169d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 22179d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2218cfad392bSJosef Bacik list_del_init(&root->root_list); 2219a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 22205d4f98a2SYan Zheng 2221efe120a0SFrank Holton pr_debug("BTRFS: cleaner removing %llu\n", root->objectid); 222276dda93cSYan, Zheng 222316cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 222416cdcec7SMiao Xie 222576dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 222676dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 22272c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 0, 0); 222876dda93cSYan, Zheng else 22292c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 1, 0); 223032471dc2SDavid Sterba 22316596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2232e9d0b13bSChris Mason } 2233572d9ab7SDavid Sterba 2234572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2235572d9ab7SDavid Sterba { 2236572d9ab7SDavid Sterba unsigned long prev; 2237572d9ab7SDavid Sterba unsigned long bit; 2238572d9ab7SDavid Sterba 22396c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2240572d9ab7SDavid Sterba if (!prev) 2241572d9ab7SDavid Sterba return; 2242572d9ab7SDavid Sterba 22437e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE; 22447e1876acSDavid Sterba if (prev & bit) 22457e1876acSDavid Sterba btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); 22467e1876acSDavid Sterba prev &= ~bit; 22477e1876acSDavid Sterba 22487e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE; 22497e1876acSDavid Sterba if (prev & bit) 22507e1876acSDavid Sterba btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); 22517e1876acSDavid Sterba prev &= ~bit; 22527e1876acSDavid Sterba 2253d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2254d51033d0SDavid Sterba if (prev & bit) 2255d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2256d51033d0SDavid Sterba prev &= ~bit; 2257d51033d0SDavid Sterba 2258572d9ab7SDavid Sterba if (prev) 2259572d9ab7SDavid Sterba btrfs_warn(fs_info, 2260572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2261572d9ab7SDavid Sterba } 2262