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); 85b666a9cdSDavid Sterba /* 86b666a9cdSDavid Sterba * Do a single barrier for the waitqueue_active check here, the state 87b666a9cdSDavid Sterba * of the waitqueue should not change once clear_btree_io_tree is 88b666a9cdSDavid Sterba * called. 89b666a9cdSDavid Sterba */ 90b666a9cdSDavid Sterba smp_mb(); 91663dfbb0SFilipe Manana while (!RB_EMPTY_ROOT(&tree->state)) { 92663dfbb0SFilipe Manana struct rb_node *node; 93663dfbb0SFilipe Manana struct extent_state *state; 94663dfbb0SFilipe Manana 95663dfbb0SFilipe Manana node = rb_first(&tree->state); 96663dfbb0SFilipe Manana state = rb_entry(node, struct extent_state, rb_node); 97663dfbb0SFilipe Manana rb_erase(&state->rb_node, &tree->state); 98663dfbb0SFilipe Manana RB_CLEAR_NODE(&state->rb_node); 99663dfbb0SFilipe Manana /* 100663dfbb0SFilipe Manana * btree io trees aren't supposed to have tasks waiting for 101663dfbb0SFilipe Manana * changes in the flags of extent states ever. 102663dfbb0SFilipe Manana */ 103663dfbb0SFilipe Manana ASSERT(!waitqueue_active(&state->wq)); 104663dfbb0SFilipe Manana free_extent_state(state); 105351810c1SDavid Sterba 106351810c1SDavid Sterba cond_resched_lock(&tree->lock); 107663dfbb0SFilipe Manana } 108663dfbb0SFilipe Manana spin_unlock(&tree->lock); 109663dfbb0SFilipe Manana } 110663dfbb0SFilipe Manana 1119e351cc8SJosef Bacik static noinline void switch_commit_roots(struct btrfs_transaction *trans, 1129e351cc8SJosef Bacik struct btrfs_fs_info *fs_info) 113817d52f8SJosef Bacik { 1149e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 1159e351cc8SJosef Bacik 1169e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 1179e351cc8SJosef Bacik list_for_each_entry_safe(root, tmp, &trans->switch_commits, 1189e351cc8SJosef Bacik dirty_list) { 1199e351cc8SJosef Bacik list_del_init(&root->dirty_list); 120817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 121817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 1229e351cc8SJosef Bacik if (is_fstree(root->objectid)) 1239e351cc8SJosef Bacik btrfs_unpin_free_ino(root); 124663dfbb0SFilipe Manana clear_btree_io_tree(&root->dirty_log_pages); 1259e351cc8SJosef Bacik } 1262b9dbef2SJosef Bacik 1272b9dbef2SJosef Bacik /* We can free old roots now. */ 1282b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1292b9dbef2SJosef Bacik while (!list_empty(&trans->dropped_roots)) { 1302b9dbef2SJosef Bacik root = list_first_entry(&trans->dropped_roots, 1312b9dbef2SJosef Bacik struct btrfs_root, root_list); 1322b9dbef2SJosef Bacik list_del_init(&root->root_list); 1332b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1342b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 1352b9dbef2SJosef Bacik spin_lock(&trans->dropped_roots_lock); 1362b9dbef2SJosef Bacik } 1372b9dbef2SJosef Bacik spin_unlock(&trans->dropped_roots_lock); 1389e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 139817d52f8SJosef Bacik } 140817d52f8SJosef Bacik 1410860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 1420860adfdSMiao Xie unsigned int type) 1430860adfdSMiao Xie { 1440860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1450860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 1460860adfdSMiao Xie } 1470860adfdSMiao Xie 1480860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 1490860adfdSMiao Xie unsigned int type) 1500860adfdSMiao Xie { 1510860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1520860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 1530860adfdSMiao Xie } 1540860adfdSMiao Xie 1550860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 1560860adfdSMiao Xie unsigned int type) 1570860adfdSMiao Xie { 1580860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 1590860adfdSMiao Xie } 1600860adfdSMiao Xie 1610860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 1620860adfdSMiao Xie { 1630860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 164178260b2SMiao Xie } 165178260b2SMiao Xie 166d352ac68SChris Mason /* 167d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 168d352ac68SChris Mason */ 1690860adfdSMiao Xie static noinline int join_transaction(struct btrfs_root *root, unsigned int type) 17079154b1bSChris Mason { 17179154b1bSChris Mason struct btrfs_transaction *cur_trans; 17219ae4e81SJan Schmidt struct btrfs_fs_info *fs_info = root->fs_info; 173a4abeea4SJosef Bacik 17419ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 175d43317dcSChris Mason loop: 17649b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 17787533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 17819ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 17949b25e05SJeff Mahoney return -EROFS; 18049b25e05SJeff Mahoney } 18149b25e05SJeff Mahoney 18219ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 183a4abeea4SJosef Bacik if (cur_trans) { 184871383beSDavid Sterba if (cur_trans->aborted) { 18519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 18649b25e05SJeff Mahoney return cur_trans->aborted; 187871383beSDavid Sterba } 1884a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 189178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 190178260b2SMiao Xie return -EBUSY; 191178260b2SMiao Xie } 192a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 193a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 1940860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 19519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 196a4abeea4SJosef Bacik return 0; 197a4abeea4SJosef Bacik } 19819ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 199a4abeea4SJosef Bacik 200354aa0fbSMiao Xie /* 201354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 202354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 203354aa0fbSMiao Xie */ 204354aa0fbSMiao Xie if (type == TRANS_ATTACH) 205354aa0fbSMiao Xie return -ENOENT; 206354aa0fbSMiao Xie 2074a9d8bdeSMiao Xie /* 2084a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 2094a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 2104a9d8bdeSMiao Xie */ 2114a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 2124a9d8bdeSMiao Xie 213a4abeea4SJosef Bacik cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS); 214db5b493aSTsutomu Itoh if (!cur_trans) 215db5b493aSTsutomu Itoh return -ENOMEM; 216d43317dcSChris Mason 21719ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 21819ae4e81SJan Schmidt if (fs_info->running_transaction) { 219d43317dcSChris Mason /* 220d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 2214a9d8bdeSMiao Xie * to redo the checks above 222d43317dcSChris Mason */ 223a4abeea4SJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 224d43317dcSChris Mason goto loop; 22587533c47SMiao Xie } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 226e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 2277b8b92afSJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 2287b8b92afSJosef Bacik return -EROFS; 229a4abeea4SJosef Bacik } 230d43317dcSChris Mason 23113c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 2320860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 23379154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 23479154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 235161c3549SJosef Bacik init_waitqueue_head(&cur_trans->pending_wait); 2364a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 237a4abeea4SJosef Bacik /* 238a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 239a4abeea4SJosef Bacik * commit the transaction. 240a4abeea4SJosef Bacik */ 241a4abeea4SJosef Bacik atomic_set(&cur_trans->use_count, 2); 242161c3549SJosef Bacik atomic_set(&cur_trans->pending_ordered, 0); 2433204d33cSJosef Bacik cur_trans->flags = 0; 24408607c1bSChris Mason cur_trans->start_time = get_seconds(); 24556bec294SChris Mason 246a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 247a099d0fdSAlexandru Moise 248c46effa6SLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT; 2493368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 250d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 25120b297d6SJan Schmidt 25220b297d6SJan Schmidt /* 25320b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 25420b297d6SJan Schmidt * the log must never go across transaction boundaries. 25520b297d6SJan Schmidt */ 25620b297d6SJan Schmidt smp_mb(); 25731b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 258efe120a0SFrank Holton WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when " 25920b297d6SJan Schmidt "creating a fresh transaction\n"); 26031b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 261efe120a0SFrank Holton WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when " 26220b297d6SJan Schmidt "creating a fresh transaction\n"); 263fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 26420b297d6SJan Schmidt 26556bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 26656bec294SChris Mason 2673063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 2686df9a95eSJosef Bacik INIT_LIST_HEAD(&cur_trans->pending_chunks); 2699e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 270ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 2711bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 2722b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 2731bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 274cb723e49SJosef Bacik cur_trans->num_dirty_bgs = 0; 275ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 276e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 2772b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 27819ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 279d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 28019ae4e81SJan Schmidt fs_info->btree_inode->i_mapping); 28119ae4e81SJan Schmidt fs_info->generation++; 28219ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 28319ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 28449b25e05SJeff Mahoney cur_trans->aborted = 0; 28519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 28615ee9bc7SJosef Bacik 28779154b1bSChris Mason return 0; 28879154b1bSChris Mason } 28979154b1bSChris Mason 290d352ac68SChris Mason /* 291d397712bSChris Mason * this does all the record keeping required to make sure that a reference 292d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 293d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 294d397712bSChris Mason * when the transaction commits 295d352ac68SChris Mason */ 2967585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 2975d4f98a2SYan Zheng struct btrfs_root *root) 2986702ed49SChris Mason { 29927cdeb70SMiao Xie if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) && 30027cdeb70SMiao Xie root->last_trans < trans->transid) { 3016702ed49SChris Mason WARN_ON(root == root->fs_info->extent_root); 3025d4f98a2SYan Zheng WARN_ON(root->commit_root != root->node); 3035d4f98a2SYan Zheng 3047585717fSChris Mason /* 30527cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 3067585717fSChris Mason * we have the reloc mutex held now, so there 3077585717fSChris Mason * is only one writer in this function 3087585717fSChris Mason */ 30927cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3107585717fSChris Mason 31127cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 3127585717fSChris Mason * they find our root->last_trans update 3137585717fSChris Mason */ 3147585717fSChris Mason smp_wmb(); 3157585717fSChris Mason 316a4abeea4SJosef Bacik spin_lock(&root->fs_info->fs_roots_radix_lock); 317a4abeea4SJosef Bacik if (root->last_trans == trans->transid) { 318a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 319a4abeea4SJosef Bacik return 0; 320a4abeea4SJosef Bacik } 3216702ed49SChris Mason radix_tree_tag_set(&root->fs_info->fs_roots_radix, 3226702ed49SChris Mason (unsigned long)root->root_key.objectid, 3236702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 324a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 3257585717fSChris Mason root->last_trans = trans->transid; 3267585717fSChris Mason 3277585717fSChris Mason /* this is pretty tricky. We don't want to 3287585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 3297585717fSChris Mason * unless we're really doing the first setup for this root in 3307585717fSChris Mason * this transaction. 3317585717fSChris Mason * 3327585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 3337585717fSChris Mason * if we want to take the expensive mutex. 3347585717fSChris Mason * 3357585717fSChris Mason * But, we have to set root->last_trans before we 3367585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 3377585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 33827cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 3397585717fSChris Mason * fixing up the reloc trees and everyone must wait. 3407585717fSChris Mason * 3417585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 3427585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 3437585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 3447585717fSChris Mason * done before we pop in the zero below 3457585717fSChris Mason */ 3465d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 347c7548af6SChris Mason smp_mb__before_atomic(); 34827cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3496702ed49SChris Mason } 3505d4f98a2SYan Zheng return 0; 3516702ed49SChris Mason } 3525d4f98a2SYan Zheng 3537585717fSChris Mason 3542b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 3552b9dbef2SJosef Bacik struct btrfs_root *root) 3562b9dbef2SJosef Bacik { 3572b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 3582b9dbef2SJosef Bacik 3592b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 3602b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 3612b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 3622b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 3632b9dbef2SJosef Bacik 3642b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 3652b9dbef2SJosef Bacik spin_lock(&root->fs_info->fs_roots_radix_lock); 3662b9dbef2SJosef Bacik radix_tree_tag_clear(&root->fs_info->fs_roots_radix, 3672b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 3682b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 3692b9dbef2SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 3702b9dbef2SJosef Bacik } 3712b9dbef2SJosef Bacik 3727585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 3737585717fSChris Mason struct btrfs_root *root) 3747585717fSChris Mason { 37527cdeb70SMiao Xie if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state)) 3767585717fSChris Mason return 0; 3777585717fSChris Mason 3787585717fSChris Mason /* 37927cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 3807585717fSChris Mason * and barriers 3817585717fSChris Mason */ 3827585717fSChris Mason smp_rmb(); 3837585717fSChris Mason if (root->last_trans == trans->transid && 38427cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 3857585717fSChris Mason return 0; 3867585717fSChris Mason 3877585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 3887585717fSChris Mason record_root_in_trans(trans, root); 3897585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 3907585717fSChris Mason 3917585717fSChris Mason return 0; 3927585717fSChris Mason } 3937585717fSChris Mason 3944a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 3954a9d8bdeSMiao Xie { 3964a9d8bdeSMiao Xie return (trans->state >= TRANS_STATE_BLOCKED && 397501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 398501407aaSJosef Bacik !trans->aborted); 3994a9d8bdeSMiao Xie } 4004a9d8bdeSMiao Xie 401d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 402d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 403d352ac68SChris Mason * transaction might not be fully on disk. 404d352ac68SChris Mason */ 40537d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root) 40679154b1bSChris Mason { 407f9295749SChris Mason struct btrfs_transaction *cur_trans; 40879154b1bSChris Mason 409a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 410f9295749SChris Mason cur_trans = root->fs_info->running_transaction; 4114a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 41213c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 413a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 41472d63ed6SLi Zefan 41572d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 416501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 417501407aaSJosef Bacik cur_trans->aborted); 418724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 419a4abeea4SJosef Bacik } else { 420a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 421f9295749SChris Mason } 42237d1aeeeSChris Mason } 42337d1aeeeSChris Mason 424a22285a6SYan, Zheng static int may_wait_transaction(struct btrfs_root *root, int type) 42537d1aeeeSChris Mason { 426a4abeea4SJosef Bacik if (root->fs_info->log_root_recovering) 427a4abeea4SJosef Bacik return 0; 428a4abeea4SJosef Bacik 429a4abeea4SJosef Bacik if (type == TRANS_USERSPACE) 430a22285a6SYan, Zheng return 1; 431a4abeea4SJosef Bacik 432a4abeea4SJosef Bacik if (type == TRANS_START && 433a4abeea4SJosef Bacik !atomic_read(&root->fs_info->open_ioctl_trans)) 434a4abeea4SJosef Bacik return 1; 435a4abeea4SJosef Bacik 436a22285a6SYan, Zheng return 0; 437a22285a6SYan, Zheng } 438a22285a6SYan, Zheng 43920dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 44020dd2cbfSMiao Xie { 44120dd2cbfSMiao Xie if (!root->fs_info->reloc_ctl || 44227cdeb70SMiao Xie !test_bit(BTRFS_ROOT_REF_COWS, &root->state) || 44320dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 44420dd2cbfSMiao Xie root->reloc_root) 44520dd2cbfSMiao Xie return false; 44620dd2cbfSMiao Xie 44720dd2cbfSMiao Xie return true; 44820dd2cbfSMiao Xie } 44920dd2cbfSMiao Xie 45008e007d2SMiao Xie static struct btrfs_trans_handle * 4515aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 4525aed1dd8SAlexandru Moise unsigned int type, enum btrfs_reserve_flush_enum flush) 453a22285a6SYan, Zheng { 454a22285a6SYan, Zheng struct btrfs_trans_handle *h; 455a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 456b5009945SJosef Bacik u64 num_bytes = 0; 457c5567237SArne Jansen u64 qgroup_reserved = 0; 45820dd2cbfSMiao Xie bool reloc_reserved = false; 45920dd2cbfSMiao Xie int ret; 460acce952bSliubo 46146c4e71eSFilipe Manana /* Send isn't supposed to start transactions. */ 4622755a0deSDavid Sterba ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB); 46346c4e71eSFilipe Manana 46487533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) 465acce952bSliubo return ERR_PTR(-EROFS); 4662a1eb461SJosef Bacik 46746c4e71eSFilipe Manana if (current->journal_info) { 4680860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 4692a1eb461SJosef Bacik h = current->journal_info; 4702a1eb461SJosef Bacik h->use_count++; 471b7d5b0a8SMiao Xie WARN_ON(h->use_count > 2); 4722a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 4732a1eb461SJosef Bacik h->block_rsv = NULL; 4742a1eb461SJosef Bacik goto got_it; 4752a1eb461SJosef Bacik } 476b5009945SJosef Bacik 477b5009945SJosef Bacik /* 478b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 479b5009945SJosef Bacik * the appropriate flushing if need be. 480b5009945SJosef Bacik */ 481b5009945SJosef Bacik if (num_items > 0 && root != root->fs_info->chunk_root) { 482707e8a07SDavid Sterba qgroup_reserved = num_items * root->nodesize; 4837174109cSQu Wenruo ret = btrfs_qgroup_reserve_meta(root, qgroup_reserved); 484c5567237SArne Jansen if (ret) 485c5567237SArne Jansen return ERR_PTR(ret); 486c5567237SArne Jansen 487b5009945SJosef Bacik num_bytes = btrfs_calc_trans_metadata_size(root, num_items); 48820dd2cbfSMiao Xie /* 48920dd2cbfSMiao Xie * Do the reservation for the relocation root creation 49020dd2cbfSMiao Xie */ 491ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 49220dd2cbfSMiao Xie num_bytes += root->nodesize; 49320dd2cbfSMiao Xie reloc_reserved = true; 49420dd2cbfSMiao Xie } 49520dd2cbfSMiao Xie 4964a92b1b8SJosef Bacik ret = btrfs_block_rsv_add(root, 497b5009945SJosef Bacik &root->fs_info->trans_block_rsv, 49808e007d2SMiao Xie num_bytes, flush); 499b5009945SJosef Bacik if (ret) 500843fcf35SMiao Xie goto reserve_fail; 501b5009945SJosef Bacik } 502a22285a6SYan, Zheng again: 503f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 504843fcf35SMiao Xie if (!h) { 505843fcf35SMiao Xie ret = -ENOMEM; 506843fcf35SMiao Xie goto alloc_fail; 507843fcf35SMiao Xie } 508a22285a6SYan, Zheng 50998114659SJosef Bacik /* 51098114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 51198114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 51298114659SJosef Bacik * because we're already holding a ref. We need this because we could 51398114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 51498114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 515354aa0fbSMiao Xie * 516354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 517354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 51898114659SJosef Bacik */ 5190860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 520b2b5ef5cSJan Kara sb_start_intwrite(root->fs_info->sb); 521b2b5ef5cSJan Kara 522a22285a6SYan, Zheng if (may_wait_transaction(root, type)) 52337d1aeeeSChris Mason wait_current_trans(root); 524a22285a6SYan, Zheng 525a4abeea4SJosef Bacik do { 526354aa0fbSMiao Xie ret = join_transaction(root, type); 527178260b2SMiao Xie if (ret == -EBUSY) { 528a4abeea4SJosef Bacik wait_current_trans(root); 529178260b2SMiao Xie if (unlikely(type == TRANS_ATTACH)) 530178260b2SMiao Xie ret = -ENOENT; 531178260b2SMiao Xie } 532a4abeea4SJosef Bacik } while (ret == -EBUSY); 533a4abeea4SJosef Bacik 534db5b493aSTsutomu Itoh if (ret < 0) { 535354aa0fbSMiao Xie /* We must get the transaction if we are JOIN_NOLOCK. */ 536354aa0fbSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 537843fcf35SMiao Xie goto join_fail; 538db5b493aSTsutomu Itoh } 5390f7d52f4SChris Mason 540a22285a6SYan, Zheng cur_trans = root->fs_info->running_transaction; 541a22285a6SYan, Zheng 542a22285a6SYan, Zheng h->transid = cur_trans->transid; 543a22285a6SYan, Zheng h->transaction = cur_trans; 544d13603efSArne Jansen h->root = root; 5452a1eb461SJosef Bacik h->use_count = 1; 5467174109cSQu Wenruo 547a698d075SMiao Xie h->type = type; 548d9a0540aSFilipe Manana h->can_flush_pending_bgs = true; 549bed92eaeSArne Jansen INIT_LIST_HEAD(&h->qgroup_ref_list); 550ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 551b7ec40d7SChris Mason 552a22285a6SYan, Zheng smp_mb(); 5534a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED && 5544a9d8bdeSMiao Xie may_wait_transaction(root, type)) { 555abdd2e80SFilipe Manana current->journal_info = h; 556a22285a6SYan, Zheng btrfs_commit_transaction(h, root); 557a22285a6SYan, Zheng goto again; 558a22285a6SYan, Zheng } 5599ed74f2dSJosef Bacik 560b5009945SJosef Bacik if (num_bytes) { 5618c2a3ca2SJosef Bacik trace_btrfs_space_reservation(root->fs_info, "transaction", 5622bcc0328SLiu Bo h->transid, num_bytes, 1); 563b5009945SJosef Bacik h->block_rsv = &root->fs_info->trans_block_rsv; 564b5009945SJosef Bacik h->bytes_reserved = num_bytes; 56520dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 566a22285a6SYan, Zheng } 567a22285a6SYan, Zheng 5682a1eb461SJosef Bacik got_it: 569a4abeea4SJosef Bacik btrfs_record_root_in_trans(h, root); 570a22285a6SYan, Zheng 571a22285a6SYan, Zheng if (!current->journal_info && type != TRANS_USERSPACE) 572a22285a6SYan, Zheng current->journal_info = h; 57379154b1bSChris Mason return h; 574843fcf35SMiao Xie 575843fcf35SMiao Xie join_fail: 5760860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 577843fcf35SMiao Xie sb_end_intwrite(root->fs_info->sb); 578843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 579843fcf35SMiao Xie alloc_fail: 580843fcf35SMiao Xie if (num_bytes) 581843fcf35SMiao Xie btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv, 582843fcf35SMiao Xie num_bytes); 583843fcf35SMiao Xie reserve_fail: 5847174109cSQu Wenruo btrfs_qgroup_free_meta(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, 5895aed1dd8SAlexandru Moise unsigned int num_items) 590f9295749SChris Mason { 59108e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 59208e007d2SMiao Xie BTRFS_RESERVE_FLUSH_ALL); 593f9295749SChris Mason } 5948eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 5958eab77ffSFilipe Manana struct btrfs_root *root, 5968eab77ffSFilipe Manana unsigned int num_items, 5978eab77ffSFilipe Manana int min_factor) 5988eab77ffSFilipe Manana { 5998eab77ffSFilipe Manana struct btrfs_trans_handle *trans; 6008eab77ffSFilipe Manana u64 num_bytes; 6018eab77ffSFilipe Manana int ret; 6028eab77ffSFilipe Manana 6038eab77ffSFilipe Manana trans = btrfs_start_transaction(root, num_items); 6048eab77ffSFilipe Manana if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) 6058eab77ffSFilipe Manana return trans; 6068eab77ffSFilipe Manana 6078eab77ffSFilipe Manana trans = btrfs_start_transaction(root, 0); 6088eab77ffSFilipe Manana if (IS_ERR(trans)) 6098eab77ffSFilipe Manana return trans; 6108eab77ffSFilipe Manana 6118eab77ffSFilipe Manana num_bytes = btrfs_calc_trans_metadata_size(root, num_items); 6128eab77ffSFilipe Manana ret = btrfs_cond_migrate_bytes(root->fs_info, 6138eab77ffSFilipe Manana &root->fs_info->trans_block_rsv, 6148eab77ffSFilipe Manana num_bytes, 6158eab77ffSFilipe Manana min_factor); 6168eab77ffSFilipe Manana if (ret) { 6178eab77ffSFilipe Manana btrfs_end_transaction(trans, root); 6188eab77ffSFilipe Manana return ERR_PTR(ret); 6198eab77ffSFilipe Manana } 6208eab77ffSFilipe Manana 6218eab77ffSFilipe Manana trans->block_rsv = &root->fs_info->trans_block_rsv; 6228eab77ffSFilipe Manana trans->bytes_reserved = num_bytes; 6238eab77ffSFilipe Manana 6248eab77ffSFilipe Manana return trans; 6258eab77ffSFilipe Manana } 6268407aa46SMiao Xie 62708e007d2SMiao Xie struct btrfs_trans_handle *btrfs_start_transaction_lflush( 6285aed1dd8SAlexandru Moise struct btrfs_root *root, 6295aed1dd8SAlexandru Moise unsigned int num_items) 6308407aa46SMiao Xie { 63108e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 63208e007d2SMiao Xie BTRFS_RESERVE_FLUSH_LIMIT); 6338407aa46SMiao Xie } 6348407aa46SMiao Xie 6357a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 636f9295749SChris Mason { 6378407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN, 0); 638f9295749SChris Mason } 639f9295749SChris Mason 6407a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root) 6410af3d00bSJosef Bacik { 6428407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0); 6430af3d00bSJosef Bacik } 6440af3d00bSJosef Bacik 6457a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root) 6469ca9ee09SSage Weil { 6478407aa46SMiao Xie return start_transaction(root, 0, TRANS_USERSPACE, 0); 6489ca9ee09SSage Weil } 6499ca9ee09SSage Weil 650d4edf39bSMiao Xie /* 651d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 652d4edf39bSMiao Xie * 653d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 654d4edf39bSMiao Xie * don't want to start a new one. 655d4edf39bSMiao Xie * 656d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 657d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 658d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 659d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 660d4edf39bSMiao Xie * invoke 661d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 662d4edf39bSMiao Xie */ 663354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 66460376ce4SJosef Bacik { 665354aa0fbSMiao Xie return start_transaction(root, 0, TRANS_ATTACH, 0); 66660376ce4SJosef Bacik } 66760376ce4SJosef Bacik 668d4edf39bSMiao Xie /* 66990b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 670d4edf39bSMiao Xie * 671d4edf39bSMiao Xie * It is similar to the above function, the differentia is this one 672d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 673d4edf39bSMiao Xie * complete. 674d4edf39bSMiao Xie */ 675d4edf39bSMiao Xie struct btrfs_trans_handle * 676d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 677d4edf39bSMiao Xie { 678d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 679d4edf39bSMiao Xie 680d4edf39bSMiao Xie trans = start_transaction(root, 0, TRANS_ATTACH, 0); 681d4edf39bSMiao Xie if (IS_ERR(trans) && PTR_ERR(trans) == -ENOENT) 682d4edf39bSMiao Xie btrfs_wait_for_commit(root, 0); 683d4edf39bSMiao Xie 684d4edf39bSMiao Xie return trans; 685d4edf39bSMiao Xie } 686d4edf39bSMiao Xie 687d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 688b9c8300cSLi Zefan static noinline void wait_for_commit(struct btrfs_root *root, 68989ce8a63SChris Mason struct btrfs_transaction *commit) 69089ce8a63SChris Mason { 6914a9d8bdeSMiao Xie wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); 69289ce8a63SChris Mason } 69389ce8a63SChris Mason 69446204592SSage Weil int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid) 69546204592SSage Weil { 69646204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 6978cd2807fSMiao Xie int ret = 0; 69846204592SSage Weil 69946204592SSage Weil if (transid) { 70046204592SSage Weil if (transid <= root->fs_info->last_trans_committed) 701a4abeea4SJosef Bacik goto out; 70246204592SSage Weil 70346204592SSage Weil /* find specified transaction */ 704a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 70546204592SSage Weil list_for_each_entry(t, &root->fs_info->trans_list, list) { 70646204592SSage Weil if (t->transid == transid) { 70746204592SSage Weil cur_trans = t; 708a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 7098cd2807fSMiao Xie ret = 0; 71046204592SSage Weil break; 71146204592SSage Weil } 7128cd2807fSMiao Xie if (t->transid > transid) { 7138cd2807fSMiao Xie ret = 0; 71446204592SSage Weil break; 71546204592SSage Weil } 7168cd2807fSMiao Xie } 717a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 71842383020SSage Weil 71942383020SSage Weil /* 72042383020SSage Weil * The specified transaction doesn't exist, or we 72142383020SSage Weil * raced with btrfs_commit_transaction 72242383020SSage Weil */ 72342383020SSage Weil if (!cur_trans) { 72442383020SSage Weil if (transid > root->fs_info->last_trans_committed) 72542383020SSage Weil ret = -EINVAL; 7268cd2807fSMiao Xie goto out; 72742383020SSage Weil } 72846204592SSage Weil } else { 72946204592SSage Weil /* find newest transaction that is committing | committed */ 730a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 73146204592SSage Weil list_for_each_entry_reverse(t, &root->fs_info->trans_list, 73246204592SSage Weil list) { 7334a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 7344a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 7353473f3c0SJosef Bacik break; 73646204592SSage Weil cur_trans = t; 737a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 73846204592SSage Weil break; 73946204592SSage Weil } 74046204592SSage Weil } 741a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 74246204592SSage Weil if (!cur_trans) 743a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 74446204592SSage Weil } 74546204592SSage Weil 74646204592SSage Weil wait_for_commit(root, cur_trans); 747724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 748a4abeea4SJosef Bacik out: 74946204592SSage Weil return ret; 75046204592SSage Weil } 75146204592SSage Weil 75237d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root) 75337d1aeeeSChris Mason { 754a4abeea4SJosef Bacik if (!atomic_read(&root->fs_info->open_ioctl_trans)) 75537d1aeeeSChris Mason wait_current_trans(root); 75637d1aeeeSChris Mason } 75737d1aeeeSChris Mason 7588929ecfaSYan, Zheng static int should_end_transaction(struct btrfs_trans_handle *trans, 7598929ecfaSYan, Zheng struct btrfs_root *root) 7608929ecfaSYan, Zheng { 7611be41b78SJosef Bacik if (root->fs_info->global_block_rsv.space_info->full && 7620a2b2a84SJosef Bacik btrfs_check_space_for_delayed_refs(trans, root)) 7631be41b78SJosef Bacik return 1; 76436ba022aSJosef Bacik 7651be41b78SJosef Bacik return !!btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5); 7668929ecfaSYan, Zheng } 7678929ecfaSYan, Zheng 7688929ecfaSYan, Zheng int btrfs_should_end_transaction(struct btrfs_trans_handle *trans, 7698929ecfaSYan, Zheng struct btrfs_root *root) 7708929ecfaSYan, Zheng { 7718929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 7728929ecfaSYan, Zheng int updates; 77349b25e05SJeff Mahoney int err; 7748929ecfaSYan, Zheng 775a4abeea4SJosef Bacik smp_mb(); 7764a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED || 7774a9d8bdeSMiao Xie cur_trans->delayed_refs.flushing) 7788929ecfaSYan, Zheng return 1; 7798929ecfaSYan, Zheng 7808929ecfaSYan, Zheng updates = trans->delayed_ref_updates; 7818929ecfaSYan, Zheng trans->delayed_ref_updates = 0; 78249b25e05SJeff Mahoney if (updates) { 78328ed1345SChris Mason err = btrfs_run_delayed_refs(trans, root, updates * 2); 78449b25e05SJeff Mahoney if (err) /* Error code will also eval true */ 78549b25e05SJeff Mahoney return err; 78649b25e05SJeff Mahoney } 7878929ecfaSYan, Zheng 7888929ecfaSYan, Zheng return should_end_transaction(trans, root); 7898929ecfaSYan, Zheng } 7908929ecfaSYan, Zheng 79189ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 792a698d075SMiao Xie struct btrfs_root *root, int throttle) 79379154b1bSChris Mason { 7948929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 795ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 7961be41b78SJosef Bacik unsigned long cur = trans->delayed_ref_updates; 797a698d075SMiao Xie int lock = (trans->type != TRANS_JOIN_NOLOCK); 7984edc2ca3SDave Jones int err = 0; 799a79b7d4bSChris Mason int must_run_delayed_refs = 0; 800d6e4a428SChris Mason 8013bbb24b2SJosef Bacik if (trans->use_count > 1) { 8023bbb24b2SJosef Bacik trans->use_count--; 8032a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 8042a1eb461SJosef Bacik return 0; 8052a1eb461SJosef Bacik } 8062a1eb461SJosef Bacik 807b24e03dbSJosef Bacik btrfs_trans_release_metadata(trans, root); 8084c13d758SJosef Bacik trans->block_rsv = NULL; 809c5567237SArne Jansen 810ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 811ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 812ea658badSJosef Bacik 813c3e69d58SChris Mason trans->delayed_ref_updates = 0; 814a79b7d4bSChris Mason if (!trans->sync) { 815a79b7d4bSChris Mason must_run_delayed_refs = 816a79b7d4bSChris Mason btrfs_should_throttle_delayed_refs(trans, root); 8170a2b2a84SJosef Bacik cur = max_t(unsigned long, cur, 32); 818a79b7d4bSChris Mason 819a79b7d4bSChris Mason /* 820a79b7d4bSChris Mason * don't make the caller wait if they are from a NOLOCK 821a79b7d4bSChris Mason * or ATTACH transaction, it will deadlock with commit 822a79b7d4bSChris Mason */ 823a79b7d4bSChris Mason if (must_run_delayed_refs == 1 && 824a79b7d4bSChris Mason (trans->type & (__TRANS_JOIN_NOLOCK | __TRANS_ATTACH))) 825a79b7d4bSChris Mason must_run_delayed_refs = 2; 82656bec294SChris Mason } 827bb721703SChris Mason 8280e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 8290e721106SJosef Bacik trans->block_rsv = NULL; 83056bec294SChris Mason 831ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 832ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 833ea658badSJosef Bacik 8344fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 8354fbcdf66SFilipe Manana 836a4abeea4SJosef Bacik if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) && 8374a9d8bdeSMiao Xie should_end_transaction(trans, root) && 8384a9d8bdeSMiao Xie ACCESS_ONCE(cur_trans->state) == TRANS_STATE_RUNNING) { 8394a9d8bdeSMiao Xie spin_lock(&info->trans_lock); 8404a9d8bdeSMiao Xie if (cur_trans->state == TRANS_STATE_RUNNING) 8414a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_BLOCKED; 8424a9d8bdeSMiao Xie spin_unlock(&info->trans_lock); 843a4abeea4SJosef Bacik } 8448929ecfaSYan, Zheng 8454a9d8bdeSMiao Xie if (lock && ACCESS_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) { 8463bbb24b2SJosef Bacik if (throttle) 8478929ecfaSYan, Zheng return btrfs_commit_transaction(trans, root); 8483bbb24b2SJosef Bacik else 8498929ecfaSYan, Zheng wake_up_process(info->transaction_kthread); 8508929ecfaSYan, Zheng } 8518929ecfaSYan, Zheng 8520860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 8536df7881aSJosef Bacik sb_end_intwrite(root->fs_info->sb); 8546df7881aSJosef Bacik 8558929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 85613c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 85713c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 8580860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 85989ce8a63SChris Mason 860a83342aaSDavid Sterba /* 861a83342aaSDavid Sterba * Make sure counter is updated before we wake up waiters. 862a83342aaSDavid Sterba */ 86399d16cbcSSage Weil smp_mb(); 86479154b1bSChris Mason if (waitqueue_active(&cur_trans->writer_wait)) 86579154b1bSChris Mason wake_up(&cur_trans->writer_wait); 866724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 8679ed74f2dSJosef Bacik 8689ed74f2dSJosef Bacik if (current->journal_info == trans) 8699ed74f2dSJosef Bacik current->journal_info = NULL; 870ab78c84dSChris Mason 87124bbcf04SYan, Zheng if (throttle) 87224bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 87324bbcf04SYan, Zheng 87449b25e05SJeff Mahoney if (trans->aborted || 8754e121c06SJosef Bacik test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) { 8764e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 8774edc2ca3SDave Jones err = -EIO; 8784e121c06SJosef Bacik } 879edf39272SJan Schmidt assert_qgroups_uptodate(trans); 88049b25e05SJeff Mahoney 8814edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 882a79b7d4bSChris Mason if (must_run_delayed_refs) { 883a79b7d4bSChris Mason btrfs_async_run_delayed_refs(root, cur, 884a79b7d4bSChris Mason must_run_delayed_refs == 1); 885a79b7d4bSChris Mason } 8864edc2ca3SDave Jones return err; 88779154b1bSChris Mason } 88879154b1bSChris Mason 88989ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans, 89089ce8a63SChris Mason struct btrfs_root *root) 89189ce8a63SChris Mason { 89298ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 0); 89389ce8a63SChris Mason } 89489ce8a63SChris Mason 89589ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 89689ce8a63SChris Mason struct btrfs_root *root) 89789ce8a63SChris Mason { 89898ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 1); 89916cdcec7SMiao Xie } 90016cdcec7SMiao Xie 901d352ac68SChris Mason /* 902d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 903d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 904690587d1SChris Mason * those extents are sent to disk but does not wait on them 905d352ac68SChris Mason */ 906690587d1SChris Mason int btrfs_write_marked_extents(struct btrfs_root *root, 9078cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 90879154b1bSChris Mason { 909777e6bd7SChris Mason int err = 0; 9107c4452b9SChris Mason int werr = 0; 9111728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 912e6138876SJosef Bacik struct extent_state *cached_state = NULL; 913777e6bd7SChris Mason u64 start = 0; 9145f39d397SChris Mason u64 end; 9157c4452b9SChris Mason 9161728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 917e6138876SJosef Bacik mark, &cached_state)) { 918663dfbb0SFilipe Manana bool wait_writeback = false; 919663dfbb0SFilipe Manana 920663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 921663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 922e6138876SJosef Bacik mark, &cached_state, GFP_NOFS); 923663dfbb0SFilipe Manana /* 924663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 925663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 926663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 927663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 928663dfbb0SFilipe Manana * to btrfs_wait_marked_extents() would not know that writeback 929663dfbb0SFilipe Manana * for this range started and therefore wouldn't wait for it to 930663dfbb0SFilipe Manana * finish - we don't want to commit a superblock that points to 931663dfbb0SFilipe Manana * btree nodes/leafs for which writeback hasn't finished yet 932663dfbb0SFilipe Manana * (and without errors). 933663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 934663dfbb0SFilipe Manana * the transaction (through clear_btree_io_tree()). 935663dfbb0SFilipe Manana */ 936663dfbb0SFilipe Manana if (err == -ENOMEM) { 937663dfbb0SFilipe Manana err = 0; 938663dfbb0SFilipe Manana wait_writeback = true; 939663dfbb0SFilipe Manana } 940663dfbb0SFilipe Manana if (!err) 9411728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 9427c4452b9SChris Mason if (err) 9437c4452b9SChris Mason werr = err; 944663dfbb0SFilipe Manana else if (wait_writeback) 945663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 946e38e2ed7SFilipe Manana free_extent_state(cached_state); 947663dfbb0SFilipe Manana cached_state = NULL; 9481728366eSJosef Bacik cond_resched(); 9491728366eSJosef Bacik start = end + 1; 9507c4452b9SChris Mason } 951690587d1SChris Mason return werr; 952690587d1SChris Mason } 953690587d1SChris Mason 954690587d1SChris Mason /* 955690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 956690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 957690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 958690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 959690587d1SChris Mason */ 960690587d1SChris Mason int btrfs_wait_marked_extents(struct btrfs_root *root, 9618cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 962690587d1SChris Mason { 963690587d1SChris Mason int err = 0; 964690587d1SChris Mason int werr = 0; 9651728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 966e6138876SJosef Bacik struct extent_state *cached_state = NULL; 967690587d1SChris Mason u64 start = 0; 968690587d1SChris Mason u64 end; 969656f30dbSFilipe Manana struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode); 970656f30dbSFilipe Manana bool errors = false; 971690587d1SChris Mason 9721728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 973e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 974663dfbb0SFilipe Manana /* 975663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 976663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 977663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 978663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 979663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 980663dfbb0SFilipe Manana * it's safe to do it (through clear_btree_io_tree()). 981663dfbb0SFilipe Manana */ 982663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 983663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 984e6138876SJosef Bacik 0, 0, &cached_state, GFP_NOFS); 985663dfbb0SFilipe Manana if (err == -ENOMEM) 986663dfbb0SFilipe Manana err = 0; 987663dfbb0SFilipe Manana if (!err) 9881728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 989777e6bd7SChris Mason if (err) 990777e6bd7SChris Mason werr = err; 991e38e2ed7SFilipe Manana free_extent_state(cached_state); 992e38e2ed7SFilipe Manana cached_state = NULL; 993777e6bd7SChris Mason cond_resched(); 9941728366eSJosef Bacik start = end + 1; 995777e6bd7SChris Mason } 9967c4452b9SChris Mason if (err) 9977c4452b9SChris Mason werr = err; 998656f30dbSFilipe Manana 999656f30dbSFilipe Manana if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { 1000656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 1001656f30dbSFilipe Manana test_and_clear_bit(BTRFS_INODE_BTREE_LOG1_ERR, 1002656f30dbSFilipe Manana &btree_ino->runtime_flags)) 1003656f30dbSFilipe Manana errors = true; 1004656f30dbSFilipe Manana 1005656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 1006656f30dbSFilipe Manana test_and_clear_bit(BTRFS_INODE_BTREE_LOG2_ERR, 1007656f30dbSFilipe Manana &btree_ino->runtime_flags)) 1008656f30dbSFilipe Manana errors = true; 1009656f30dbSFilipe Manana } else { 1010656f30dbSFilipe Manana if (test_and_clear_bit(BTRFS_INODE_BTREE_ERR, 1011656f30dbSFilipe Manana &btree_ino->runtime_flags)) 1012656f30dbSFilipe Manana errors = true; 1013656f30dbSFilipe Manana } 1014656f30dbSFilipe Manana 1015656f30dbSFilipe Manana if (errors && !werr) 1016656f30dbSFilipe Manana werr = -EIO; 1017656f30dbSFilipe Manana 10187c4452b9SChris Mason return werr; 101979154b1bSChris Mason } 102079154b1bSChris Mason 1021690587d1SChris Mason /* 1022690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1023690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1024690587d1SChris Mason * those extents are on disk for transaction or log commit 1025690587d1SChris Mason */ 1026171170c1SSergei Trofimovich static int btrfs_write_and_wait_marked_extents(struct btrfs_root *root, 10278cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 1028690587d1SChris Mason { 1029690587d1SChris Mason int ret; 1030690587d1SChris Mason int ret2; 1031c6adc9ccSMiao Xie struct blk_plug plug; 1032690587d1SChris Mason 1033c6adc9ccSMiao Xie blk_start_plug(&plug); 10348cef4e16SYan, Zheng ret = btrfs_write_marked_extents(root, dirty_pages, mark); 1035c6adc9ccSMiao Xie blk_finish_plug(&plug); 10368cef4e16SYan, Zheng ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark); 1037bf0da8c1SChris Mason 1038bf0da8c1SChris Mason if (ret) 1039bf0da8c1SChris Mason return ret; 1040bf0da8c1SChris Mason if (ret2) 1041bf0da8c1SChris Mason return ret2; 1042bf0da8c1SChris Mason return 0; 1043690587d1SChris Mason } 1044690587d1SChris Mason 1045663dfbb0SFilipe Manana static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, 1046d0c803c4SChris Mason struct btrfs_root *root) 1047d0c803c4SChris Mason { 1048663dfbb0SFilipe Manana int ret; 1049663dfbb0SFilipe Manana 1050663dfbb0SFilipe Manana ret = btrfs_write_and_wait_marked_extents(root, 10518cef4e16SYan, Zheng &trans->transaction->dirty_pages, 10528cef4e16SYan, Zheng EXTENT_DIRTY); 1053663dfbb0SFilipe Manana clear_btree_io_tree(&trans->transaction->dirty_pages); 1054663dfbb0SFilipe Manana 1055663dfbb0SFilipe Manana return ret; 1056d0c803c4SChris Mason } 1057d0c803c4SChris Mason 1058d352ac68SChris Mason /* 1059d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1060d352ac68SChris Mason * 1061d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1062d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1063d352ac68SChris Mason * allocation tree. 1064d352ac68SChris Mason * 1065d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1066d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1067d352ac68SChris Mason */ 10680b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 106979154b1bSChris Mason struct btrfs_root *root) 107079154b1bSChris Mason { 107179154b1bSChris Mason int ret; 10720b86a832SChris Mason u64 old_root_bytenr; 107386b9f2ecSYan, Zheng u64 old_root_used; 10740b86a832SChris Mason struct btrfs_root *tree_root = root->fs_info->tree_root; 107579154b1bSChris Mason 107686b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 107756bec294SChris Mason 107879154b1bSChris Mason while (1) { 10790b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 108086b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1081ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 108279154b1bSChris Mason break; 108387ef2bb4SChris Mason 10845d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 108579154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 10860b86a832SChris Mason &root->root_key, 10870b86a832SChris Mason &root->root_item); 108849b25e05SJeff Mahoney if (ret) 108949b25e05SJeff Mahoney return ret; 109056bec294SChris Mason 109186b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1092e7070be1SJosef Bacik } 1093276e680dSYan Zheng 10940b86a832SChris Mason return 0; 10950b86a832SChris Mason } 10960b86a832SChris Mason 1097d352ac68SChris Mason /* 1098d352ac68SChris Mason * update all the cowonly tree roots on disk 109949b25e05SJeff Mahoney * 110049b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 110149b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 110249b25e05SJeff Mahoney * to clean up the delayed refs. 1103d352ac68SChris Mason */ 11045d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, 11050b86a832SChris Mason struct btrfs_root *root) 11060b86a832SChris Mason { 11070b86a832SChris Mason struct btrfs_fs_info *fs_info = root->fs_info; 1108ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 11091bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 11100b86a832SChris Mason struct list_head *next; 111184234f3aSYan Zheng struct extent_buffer *eb; 111256bec294SChris Mason int ret; 111384234f3aSYan Zheng 111484234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 111549b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 111649b25e05SJeff Mahoney 0, &eb); 111784234f3aSYan Zheng btrfs_tree_unlock(eb); 111884234f3aSYan Zheng free_extent_buffer(eb); 11190b86a832SChris Mason 112049b25e05SJeff Mahoney if (ret) 112149b25e05SJeff Mahoney return ret; 112249b25e05SJeff Mahoney 112356bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 112449b25e05SJeff Mahoney if (ret) 112549b25e05SJeff Mahoney return ret; 112687ef2bb4SChris Mason 1127733f4fbbSStefan Behrens ret = btrfs_run_dev_stats(trans, root->fs_info); 1128c16ce190SJosef Bacik if (ret) 1129c16ce190SJosef Bacik return ret; 11308dabb742SStefan Behrens ret = btrfs_run_dev_replace(trans, root->fs_info); 1131c16ce190SJosef Bacik if (ret) 1132c16ce190SJosef Bacik return ret; 1133546adb0dSJan Schmidt ret = btrfs_run_qgroups(trans, root->fs_info); 1134c16ce190SJosef Bacik if (ret) 1135c16ce190SJosef Bacik return ret; 1136546adb0dSJan Schmidt 1137dcdf7f6dSJosef Bacik ret = btrfs_setup_space_cache(trans, root); 1138dcdf7f6dSJosef Bacik if (ret) 1139dcdf7f6dSJosef Bacik return ret; 1140dcdf7f6dSJosef Bacik 1141546adb0dSJan Schmidt /* run_qgroups might have added some more refs */ 1142546adb0dSJan Schmidt ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1143c16ce190SJosef Bacik if (ret) 1144c16ce190SJosef Bacik return ret; 1145ea526d18SJosef Bacik again: 11460b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 11470b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 11480b86a832SChris Mason list_del_init(next); 11490b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1150e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 115187ef2bb4SChris Mason 11529e351cc8SJosef Bacik if (root != fs_info->extent_root) 11539e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 11549e351cc8SJosef Bacik &trans->transaction->switch_commits); 115549b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 115649b25e05SJeff Mahoney if (ret) 115749b25e05SJeff Mahoney return ret; 1158ea526d18SJosef Bacik ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1159ea526d18SJosef Bacik if (ret) 1160ea526d18SJosef Bacik return ret; 116179154b1bSChris Mason } 1162276e680dSYan Zheng 11631bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 1164ea526d18SJosef Bacik ret = btrfs_write_dirty_block_groups(trans, root); 1165ea526d18SJosef Bacik if (ret) 1166ea526d18SJosef Bacik return ret; 1167ea526d18SJosef Bacik ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1168ea526d18SJosef Bacik if (ret) 1169ea526d18SJosef Bacik return ret; 1170ea526d18SJosef Bacik } 1171ea526d18SJosef Bacik 1172ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1173ea526d18SJosef Bacik goto again; 1174ea526d18SJosef Bacik 11759e351cc8SJosef Bacik list_add_tail(&fs_info->extent_root->dirty_list, 11769e351cc8SJosef Bacik &trans->transaction->switch_commits); 11778dabb742SStefan Behrens btrfs_after_dev_replace_commit(fs_info); 11788dabb742SStefan Behrens 117979154b1bSChris Mason return 0; 118079154b1bSChris Mason } 118179154b1bSChris Mason 1182d352ac68SChris Mason /* 1183d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1184d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1185d352ac68SChris Mason * be deleted 1186d352ac68SChris Mason */ 1187cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 11885eda7b5eSChris Mason { 1189a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 1190cfad392bSJosef Bacik if (list_empty(&root->root_list)) 11919d1a2a3aSDavid Sterba list_add_tail(&root->root_list, &root->fs_info->dead_roots); 1192a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 11935eda7b5eSChris Mason } 11945eda7b5eSChris Mason 1195d352ac68SChris Mason /* 11965d4f98a2SYan Zheng * update all the cowonly tree roots on disk 1197d352ac68SChris Mason */ 11985d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, 11995d4f98a2SYan Zheng struct btrfs_root *root) 12000f7d52f4SChris Mason { 12010f7d52f4SChris Mason struct btrfs_root *gang[8]; 12025d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 12030f7d52f4SChris Mason int i; 12040f7d52f4SChris Mason int ret; 120554aa1f4dSChris Mason int err = 0; 120654aa1f4dSChris Mason 1207a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 12080f7d52f4SChris Mason while (1) { 12095d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 12105d4f98a2SYan Zheng (void **)gang, 0, 12110f7d52f4SChris Mason ARRAY_SIZE(gang), 12120f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 12130f7d52f4SChris Mason if (ret == 0) 12140f7d52f4SChris Mason break; 12150f7d52f4SChris Mason for (i = 0; i < ret; i++) { 12160f7d52f4SChris Mason root = gang[i]; 12175d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 12182619ba1fSChris Mason (unsigned long)root->root_key.objectid, 12190f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1220a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 122131153d81SYan Zheng 1222e02119d5SChris Mason btrfs_free_log(trans, root); 12235d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 1224d68fc57bSYan, Zheng btrfs_orphan_commit_root(trans, root); 1225e02119d5SChris Mason 122682d5902dSLi Zefan btrfs_save_ino_cache(root, trans); 122782d5902dSLi Zefan 1228f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 122927cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1230c7548af6SChris Mason smp_mb__after_atomic(); 1231f1ebcc74SLiu Bo 1232978d910dSYan Zheng if (root->commit_root != root->node) { 12339e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 12349e351cc8SJosef Bacik &trans->transaction->switch_commits); 1235978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 1236978d910dSYan Zheng root->node); 1237978d910dSYan Zheng } 123831153d81SYan Zheng 12395d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 12400f7d52f4SChris Mason &root->root_key, 12410f7d52f4SChris Mason &root->root_item); 1242a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 124354aa1f4dSChris Mason if (err) 124454aa1f4dSChris Mason break; 12457174109cSQu Wenruo btrfs_qgroup_free_meta_all(root); 12460f7d52f4SChris Mason } 12479f3a7427SChris Mason } 1248a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 124954aa1f4dSChris Mason return err; 12500f7d52f4SChris Mason } 12510f7d52f4SChris Mason 1252d352ac68SChris Mason /* 1253de78b51aSEric Sandeen * defrag a given btree. 1254de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1255d352ac68SChris Mason */ 1256de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1257e9d0b13bSChris Mason { 1258e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1259e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 12608929ecfaSYan, Zheng int ret; 1261e9d0b13bSChris Mason 126227cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1263e9d0b13bSChris Mason return 0; 12648929ecfaSYan, Zheng 12656b80053dSChris Mason while (1) { 12668929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 12678929ecfaSYan, Zheng if (IS_ERR(trans)) 12688929ecfaSYan, Zheng return PTR_ERR(trans); 12698929ecfaSYan, Zheng 1270de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 12718929ecfaSYan, Zheng 1272e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 1273b53d3f5dSLiu Bo btrfs_btree_balance_dirty(info->tree_root); 1274e9d0b13bSChris Mason cond_resched(); 1275e9d0b13bSChris Mason 12767841cb28SDavid Sterba if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN) 1277e9d0b13bSChris Mason break; 1278210549ebSDavid Sterba 1279210549ebSDavid Sterba if (btrfs_defrag_cancelled(root->fs_info)) { 1280efe120a0SFrank Holton pr_debug("BTRFS: defrag_root cancelled\n"); 1281210549ebSDavid Sterba ret = -EAGAIN; 1282210549ebSDavid Sterba break; 1283210549ebSDavid Sterba } 1284e9d0b13bSChris Mason } 128527cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 12868929ecfaSYan, Zheng return ret; 1287e9d0b13bSChris Mason } 1288e9d0b13bSChris Mason 1289d352ac68SChris Mason /* 1290d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1291aec8030aSMiao Xie * transaction commit. This does the actual creation. 1292aec8030aSMiao Xie * 1293aec8030aSMiao Xie * Note: 1294aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1295aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1296aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1297d352ac68SChris Mason */ 129880b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 12993063d29fSChris Mason struct btrfs_fs_info *fs_info, 13003063d29fSChris Mason struct btrfs_pending_snapshot *pending) 13013063d29fSChris Mason { 13023063d29fSChris Mason struct btrfs_key key; 130380b6794dSChris Mason struct btrfs_root_item *new_root_item; 13043063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 13053063d29fSChris Mason struct btrfs_root *root = pending->root; 13066bdb72deSSage Weil struct btrfs_root *parent_root; 130798c9942aSLiu Bo struct btrfs_block_rsv *rsv; 13086bdb72deSSage Weil struct inode *parent_inode; 130942874b3dSMiao Xie struct btrfs_path *path; 131042874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1311a22285a6SYan, Zheng struct dentry *dentry; 13123063d29fSChris Mason struct extent_buffer *tmp; 1313925baeddSChris Mason struct extent_buffer *old; 13148ea05e3aSAlexander Block struct timespec cur_time = CURRENT_TIME; 1315aec8030aSMiao Xie int ret = 0; 1316d68fc57bSYan, Zheng u64 to_reserve = 0; 13176bdb72deSSage Weil u64 index = 0; 1318a22285a6SYan, Zheng u64 objectid; 1319b83cc969SLi Zefan u64 root_flags; 13208ea05e3aSAlexander Block uuid_le new_uuid; 13213063d29fSChris Mason 132242874b3dSMiao Xie path = btrfs_alloc_path(); 132342874b3dSMiao Xie if (!path) { 1324aec8030aSMiao Xie pending->error = -ENOMEM; 1325aec8030aSMiao Xie return 0; 132642874b3dSMiao Xie } 132742874b3dSMiao Xie 1328*b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1329*b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1330a22285a6SYan, Zheng 1331aec8030aSMiao Xie pending->error = btrfs_find_free_objectid(tree_root, &objectid); 1332aec8030aSMiao Xie if (pending->error) 13336fa9700eSMiao Xie goto no_free_objectid; 13343063d29fSChris Mason 1335d6726335SQu Wenruo /* 1336d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1337d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1338d6726335SQu Wenruo */ 1339d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1340d6726335SQu Wenruo 1341147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1342d68fc57bSYan, Zheng 1343d68fc57bSYan, Zheng if (to_reserve > 0) { 1344aec8030aSMiao Xie pending->error = btrfs_block_rsv_add(root, 1345aec8030aSMiao Xie &pending->block_rsv, 134608e007d2SMiao Xie to_reserve, 134708e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1348aec8030aSMiao Xie if (pending->error) 1349d6726335SQu Wenruo goto clear_skip_qgroup; 1350d68fc57bSYan, Zheng } 1351d68fc57bSYan, Zheng 13523063d29fSChris Mason key.objectid = objectid; 1353a22285a6SYan, Zheng key.offset = (u64)-1; 1354a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 13553063d29fSChris Mason 13566fa9700eSMiao Xie rsv = trans->block_rsv; 1357a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 13582382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 13596bdb72deSSage Weil 1360a22285a6SYan, Zheng dentry = pending->dentry; 1361e9662f70SMiao Xie parent_inode = pending->dir; 1362a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 13637585717fSChris Mason record_root_in_trans(trans, parent_root); 1364a22285a6SYan, Zheng 13656bdb72deSSage Weil /* 13666bdb72deSSage Weil * insert the directory item 13676bdb72deSSage Weil */ 13686bdb72deSSage Weil ret = btrfs_set_inode_index(parent_inode, &index); 136949b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 137042874b3dSMiao Xie 137142874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 137242874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 137342874b3dSMiao Xie btrfs_ino(parent_inode), 137442874b3dSMiao Xie dentry->d_name.name, 137542874b3dSMiao Xie dentry->d_name.len, 0); 137642874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1377fe66a05aSChris Mason pending->error = -EEXIST; 1378aec8030aSMiao Xie goto dir_item_existed; 137942874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 138042874b3dSMiao Xie ret = PTR_ERR(dir_item); 13818732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 13828732d44fSMiao Xie goto fail; 138379787eaaSJeff Mahoney } 138442874b3dSMiao Xie btrfs_release_path(path); 13856bdb72deSSage Weil 1386e999376fSChris Mason /* 1387e999376fSChris Mason * pull in the delayed directory update 1388e999376fSChris Mason * and the delayed inode item 1389e999376fSChris Mason * otherwise we corrupt the FS during 1390e999376fSChris Mason * snapshot 1391e999376fSChris Mason */ 1392e999376fSChris Mason ret = btrfs_run_delayed_items(trans, root); 13938732d44fSMiao Xie if (ret) { /* Transaction aborted */ 13948732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 13958732d44fSMiao Xie goto fail; 13968732d44fSMiao Xie } 1397e999376fSChris Mason 13987585717fSChris Mason record_root_in_trans(trans, root); 13996bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 14006bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 140108fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 14026bdb72deSSage Weil 1403b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1404b83cc969SLi Zefan if (pending->readonly) 1405b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1406b83cc969SLi Zefan else 1407b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1408b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1409b83cc969SLi Zefan 14108ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 14118ea05e3aSAlexander Block trans->transid); 14128ea05e3aSAlexander Block uuid_le_gen(&new_uuid); 14138ea05e3aSAlexander Block memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE); 14148ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 14158ea05e3aSAlexander Block BTRFS_UUID_SIZE); 141670023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 141770023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 141870023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 14198ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 14208ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 14218ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 14228ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 142370023da2SStefan Behrens } 14243cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 14253cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 142670023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 14278ea05e3aSAlexander Block 1428925baeddSChris Mason old = btrfs_lock_root_node(root); 142949b25e05SJeff Mahoney ret = btrfs_cow_block(trans, root, old, NULL, 0, &old); 143079787eaaSJeff Mahoney if (ret) { 143179787eaaSJeff Mahoney btrfs_tree_unlock(old); 143279787eaaSJeff Mahoney free_extent_buffer(old); 14338732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14348732d44fSMiao Xie goto fail; 143579787eaaSJeff Mahoney } 143649b25e05SJeff Mahoney 14375d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 14383063d29fSChris Mason 143949b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 144079787eaaSJeff Mahoney /* clean up in any case */ 1441925baeddSChris Mason btrfs_tree_unlock(old); 1442925baeddSChris Mason free_extent_buffer(old); 14438732d44fSMiao Xie if (ret) { 14448732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14458732d44fSMiao Xie goto fail; 14468732d44fSMiao Xie } 1447f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 144827cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1449f1ebcc74SLiu Bo smp_wmb(); 1450f1ebcc74SLiu Bo 14515d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1452a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1453a22285a6SYan, Zheng key.offset = trans->transid; 1454a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1455925baeddSChris Mason btrfs_tree_unlock(tmp); 14563063d29fSChris Mason free_extent_buffer(tmp); 14578732d44fSMiao Xie if (ret) { 14588732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14598732d44fSMiao Xie goto fail; 14608732d44fSMiao Xie } 14610660b5afSChris Mason 1462a22285a6SYan, Zheng /* 1463a22285a6SYan, Zheng * insert root back/forward references 1464a22285a6SYan, Zheng */ 1465a22285a6SYan, Zheng ret = btrfs_add_root_ref(trans, tree_root, objectid, 1466a22285a6SYan, Zheng parent_root->root_key.objectid, 146733345d01SLi Zefan btrfs_ino(parent_inode), index, 1468a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 14698732d44fSMiao Xie if (ret) { 14708732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14718732d44fSMiao Xie goto fail; 14728732d44fSMiao Xie } 1473a22285a6SYan, Zheng 1474a22285a6SYan, Zheng key.offset = (u64)-1; 1475a22285a6SYan, Zheng pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key); 147679787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 147779787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 14788732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14798732d44fSMiao Xie goto fail; 148079787eaaSJeff Mahoney } 1481d68fc57bSYan, Zheng 148249b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 14838732d44fSMiao Xie if (ret) { 14848732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14858732d44fSMiao Xie goto fail; 14868732d44fSMiao Xie } 1487361048f5SMiao Xie 1488361048f5SMiao Xie ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 14898732d44fSMiao Xie if (ret) { 14908732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 14918732d44fSMiao Xie goto fail; 14928732d44fSMiao Xie } 149342874b3dSMiao Xie 149442874b3dSMiao Xie ret = btrfs_insert_dir_item(trans, parent_root, 149542874b3dSMiao Xie dentry->d_name.name, dentry->d_name.len, 149642874b3dSMiao Xie parent_inode, &key, 149742874b3dSMiao Xie BTRFS_FT_DIR, index); 149842874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 14999c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 15008732d44fSMiao Xie if (ret) { 15018732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 15028732d44fSMiao Xie goto fail; 15038732d44fSMiao Xie } 150442874b3dSMiao Xie 150542874b3dSMiao Xie btrfs_i_size_write(parent_inode, parent_inode->i_size + 150642874b3dSMiao Xie dentry->d_name.len * 2); 150742874b3dSMiao Xie parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; 1508be6aef60SJosef Bacik ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode); 1509dd5f9615SStefan Behrens if (ret) { 15108732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 1511dd5f9615SStefan Behrens goto fail; 1512dd5f9615SStefan Behrens } 1513dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, new_uuid.b, 1514dd5f9615SStefan Behrens BTRFS_UUID_KEY_SUBVOL, objectid); 1515dd5f9615SStefan Behrens if (ret) { 1516dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1517dd5f9615SStefan Behrens goto fail; 1518dd5f9615SStefan Behrens } 1519dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1520dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, 1521dd5f9615SStefan Behrens new_root_item->received_uuid, 1522dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1523dd5f9615SStefan Behrens objectid); 1524dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 1525dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1526dd5f9615SStefan Behrens goto fail; 1527dd5f9615SStefan Behrens } 1528dd5f9615SStefan Behrens } 1529d6726335SQu Wenruo 1530d6726335SQu Wenruo ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 1531d6726335SQu Wenruo if (ret) { 1532d6726335SQu Wenruo btrfs_abort_transaction(trans, root, ret); 1533d6726335SQu Wenruo goto fail; 1534d6726335SQu Wenruo } 1535d6726335SQu Wenruo 1536d6726335SQu Wenruo /* 1537d6726335SQu Wenruo * account qgroup counters before qgroup_inherit() 1538d6726335SQu Wenruo */ 1539d6726335SQu Wenruo ret = btrfs_qgroup_prepare_account_extents(trans, fs_info); 1540d6726335SQu Wenruo if (ret) 1541d6726335SQu Wenruo goto fail; 1542d6726335SQu Wenruo ret = btrfs_qgroup_account_extents(trans, fs_info); 1543d6726335SQu Wenruo if (ret) 1544d6726335SQu Wenruo goto fail; 1545d6726335SQu Wenruo ret = btrfs_qgroup_inherit(trans, fs_info, 1546d6726335SQu Wenruo root->root_key.objectid, 1547d6726335SQu Wenruo objectid, pending->inherit); 1548d6726335SQu Wenruo if (ret) { 1549d6726335SQu Wenruo btrfs_abort_transaction(trans, root, ret); 1550d6726335SQu Wenruo goto fail; 1551d6726335SQu Wenruo } 1552d6726335SQu Wenruo 15533063d29fSChris Mason fail: 1554aec8030aSMiao Xie pending->error = ret; 1555aec8030aSMiao Xie dir_item_existed: 155698c9942aSLiu Bo trans->block_rsv = rsv; 15572382c5ccSLiu Bo trans->bytes_reserved = 0; 1558d6726335SQu Wenruo clear_skip_qgroup: 1559d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 15606fa9700eSMiao Xie no_free_objectid: 15616fa9700eSMiao Xie kfree(new_root_item); 1562*b0c0ea63SDavid Sterba pending->root_item = NULL; 156342874b3dSMiao Xie btrfs_free_path(path); 156449b25e05SJeff Mahoney return ret; 15653063d29fSChris Mason } 15663063d29fSChris Mason 1567d352ac68SChris Mason /* 1568d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1569d352ac68SChris Mason */ 157080b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, 15713063d29fSChris Mason struct btrfs_fs_info *fs_info) 15723063d29fSChris Mason { 1573aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 15743063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1575aec8030aSMiao Xie int ret = 0; 15763de4586cSChris Mason 1577aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1578aec8030aSMiao Xie list_del(&pending->list); 1579aec8030aSMiao Xie ret = create_pending_snapshot(trans, fs_info, pending); 1580aec8030aSMiao Xie if (ret) 1581aec8030aSMiao Xie break; 1582aec8030aSMiao Xie } 1583aec8030aSMiao Xie return ret; 15843de4586cSChris Mason } 15853de4586cSChris Mason 15865d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root) 15875d4f98a2SYan Zheng { 15885d4f98a2SYan Zheng struct btrfs_root_item *root_item; 15895d4f98a2SYan Zheng struct btrfs_super_block *super; 15905d4f98a2SYan Zheng 15916c41761fSDavid Sterba super = root->fs_info->super_copy; 15925d4f98a2SYan Zheng 15935d4f98a2SYan Zheng root_item = &root->fs_info->chunk_root->root_item; 15945d4f98a2SYan Zheng super->chunk_root = root_item->bytenr; 15955d4f98a2SYan Zheng super->chunk_root_generation = root_item->generation; 15965d4f98a2SYan Zheng super->chunk_root_level = root_item->level; 15975d4f98a2SYan Zheng 15985d4f98a2SYan Zheng root_item = &root->fs_info->tree_root->root_item; 15995d4f98a2SYan Zheng super->root = root_item->bytenr; 16005d4f98a2SYan Zheng super->generation = root_item->generation; 16015d4f98a2SYan Zheng super->root_level = root_item->level; 160273bc1876SJosef Bacik if (btrfs_test_opt(root, SPACE_CACHE)) 16030af3d00bSJosef Bacik super->cache_generation = root_item->generation; 160470f80175SStefan Behrens if (root->fs_info->update_uuid_tree_gen) 160526432799SStefan Behrens super->uuid_tree_generation = root_item->generation; 16065d4f98a2SYan Zheng } 16075d4f98a2SYan Zheng 1608f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1609f36f3042SChris Mason { 16104a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1611f36f3042SChris Mason int ret = 0; 16124a9d8bdeSMiao Xie 1613a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 16144a9d8bdeSMiao Xie trans = info->running_transaction; 16154a9d8bdeSMiao Xie if (trans) 16164a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1617a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1618f36f3042SChris Mason return ret; 1619f36f3042SChris Mason } 1620f36f3042SChris Mason 16218929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 16228929ecfaSYan, Zheng { 16234a9d8bdeSMiao Xie struct btrfs_transaction *trans; 16248929ecfaSYan, Zheng int ret = 0; 16254a9d8bdeSMiao Xie 1626a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 16274a9d8bdeSMiao Xie trans = info->running_transaction; 16284a9d8bdeSMiao Xie if (trans) 16294a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1630a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 16318929ecfaSYan, Zheng return ret; 16328929ecfaSYan, Zheng } 16338929ecfaSYan, Zheng 1634bb9c12c9SSage Weil /* 1635bb9c12c9SSage Weil * wait for the current transaction commit to start and block subsequent 1636bb9c12c9SSage Weil * transaction joins 1637bb9c12c9SSage Weil */ 1638bb9c12c9SSage Weil static void wait_current_trans_commit_start(struct btrfs_root *root, 1639bb9c12c9SSage Weil struct btrfs_transaction *trans) 1640bb9c12c9SSage Weil { 16414a9d8bdeSMiao Xie wait_event(root->fs_info->transaction_blocked_wait, 1642501407aaSJosef Bacik trans->state >= TRANS_STATE_COMMIT_START || 1643501407aaSJosef Bacik trans->aborted); 1644bb9c12c9SSage Weil } 1645bb9c12c9SSage Weil 1646bb9c12c9SSage Weil /* 1647bb9c12c9SSage Weil * wait for the current transaction to start and then become unblocked. 1648bb9c12c9SSage Weil * caller holds ref. 1649bb9c12c9SSage Weil */ 1650bb9c12c9SSage Weil static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root, 1651bb9c12c9SSage Weil struct btrfs_transaction *trans) 1652bb9c12c9SSage Weil { 165372d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 1654501407aaSJosef Bacik trans->state >= TRANS_STATE_UNBLOCKED || 1655501407aaSJosef Bacik trans->aborted); 1656bb9c12c9SSage Weil } 1657bb9c12c9SSage Weil 1658bb9c12c9SSage Weil /* 1659bb9c12c9SSage Weil * commit transactions asynchronously. once btrfs_commit_transaction_async 1660bb9c12c9SSage Weil * returns, any subsequent transaction will not be allowed to join. 1661bb9c12c9SSage Weil */ 1662bb9c12c9SSage Weil struct btrfs_async_commit { 1663bb9c12c9SSage Weil struct btrfs_trans_handle *newtrans; 1664bb9c12c9SSage Weil struct btrfs_root *root; 16657892b5afSMiao Xie struct work_struct work; 1666bb9c12c9SSage Weil }; 1667bb9c12c9SSage Weil 1668bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work) 1669bb9c12c9SSage Weil { 1670bb9c12c9SSage Weil struct btrfs_async_commit *ac = 16717892b5afSMiao Xie container_of(work, struct btrfs_async_commit, work); 1672bb9c12c9SSage Weil 16736fc4e354SSage Weil /* 16746fc4e354SSage Weil * We've got freeze protection passed with the transaction. 16756fc4e354SSage Weil * Tell lockdep about it. 16766fc4e354SSage Weil */ 1677b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 1678bee9182dSOleg Nesterov __sb_writers_acquired(ac->root->fs_info->sb, SB_FREEZE_FS); 16796fc4e354SSage Weil 1680e209db7aSSage Weil current->journal_info = ac->newtrans; 1681e209db7aSSage Weil 1682bb9c12c9SSage Weil btrfs_commit_transaction(ac->newtrans, ac->root); 1683bb9c12c9SSage Weil kfree(ac); 1684bb9c12c9SSage Weil } 1685bb9c12c9SSage Weil 1686bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, 1687bb9c12c9SSage Weil struct btrfs_root *root, 1688bb9c12c9SSage Weil int wait_for_unblock) 1689bb9c12c9SSage Weil { 1690bb9c12c9SSage Weil struct btrfs_async_commit *ac; 1691bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1692bb9c12c9SSage Weil 1693bb9c12c9SSage Weil ac = kmalloc(sizeof(*ac), GFP_NOFS); 1694db5b493aSTsutomu Itoh if (!ac) 1695db5b493aSTsutomu Itoh return -ENOMEM; 1696bb9c12c9SSage Weil 16977892b5afSMiao Xie INIT_WORK(&ac->work, do_async_commit); 1698bb9c12c9SSage Weil ac->root = root; 16997a7eaa40SJosef Bacik ac->newtrans = btrfs_join_transaction(root); 17003612b495STsutomu Itoh if (IS_ERR(ac->newtrans)) { 17013612b495STsutomu Itoh int err = PTR_ERR(ac->newtrans); 17023612b495STsutomu Itoh kfree(ac); 17033612b495STsutomu Itoh return err; 17043612b495STsutomu Itoh } 1705bb9c12c9SSage Weil 1706bb9c12c9SSage Weil /* take transaction reference */ 1707bb9c12c9SSage Weil cur_trans = trans->transaction; 170813c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 1709bb9c12c9SSage Weil 1710bb9c12c9SSage Weil btrfs_end_transaction(trans, root); 17116fc4e354SSage Weil 17126fc4e354SSage Weil /* 17136fc4e354SSage Weil * Tell lockdep we've released the freeze rwsem, since the 17146fc4e354SSage Weil * async commit thread will be the one to unlock it. 17156fc4e354SSage Weil */ 1716b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 1717bee9182dSOleg Nesterov __sb_writers_release(root->fs_info->sb, SB_FREEZE_FS); 17186fc4e354SSage Weil 17197892b5afSMiao Xie schedule_work(&ac->work); 1720bb9c12c9SSage Weil 1721bb9c12c9SSage Weil /* wait for transaction to start and unblock */ 1722bb9c12c9SSage Weil if (wait_for_unblock) 1723bb9c12c9SSage Weil wait_current_trans_commit_start_and_unblock(root, cur_trans); 1724bb9c12c9SSage Weil else 1725bb9c12c9SSage Weil wait_current_trans_commit_start(root, cur_trans); 1726bb9c12c9SSage Weil 172738e88054SSage Weil if (current->journal_info == trans) 172838e88054SSage Weil current->journal_info = NULL; 172938e88054SSage Weil 1730724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1731bb9c12c9SSage Weil return 0; 1732bb9c12c9SSage Weil } 1733bb9c12c9SSage Weil 173449b25e05SJeff Mahoney 173549b25e05SJeff Mahoney static void cleanup_transaction(struct btrfs_trans_handle *trans, 17367b8b92afSJosef Bacik struct btrfs_root *root, int err) 173749b25e05SJeff Mahoney { 173849b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 1739f094ac32SLiu Bo DEFINE_WAIT(wait); 174049b25e05SJeff Mahoney 174149b25e05SJeff Mahoney WARN_ON(trans->use_count > 1); 174249b25e05SJeff Mahoney 17437b8b92afSJosef Bacik btrfs_abort_transaction(trans, root, err); 17447b8b92afSJosef Bacik 174549b25e05SJeff Mahoney spin_lock(&root->fs_info->trans_lock); 174666b6135bSLiu Bo 174725d8c284SMiao Xie /* 174825d8c284SMiao Xie * If the transaction is removed from the list, it means this 174925d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 175025d8c284SMiao Xie * to call the cleanup function. 175125d8c284SMiao Xie */ 175225d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 175366b6135bSLiu Bo 175449b25e05SJeff Mahoney list_del_init(&cur_trans->list); 1755d7096fc3SJosef Bacik if (cur_trans == root->fs_info->running_transaction) { 17564a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1757f094ac32SLiu Bo spin_unlock(&root->fs_info->trans_lock); 1758f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1759f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1760f094ac32SLiu Bo 1761f094ac32SLiu Bo spin_lock(&root->fs_info->trans_lock); 1762d7096fc3SJosef Bacik } 176349b25e05SJeff Mahoney spin_unlock(&root->fs_info->trans_lock); 176449b25e05SJeff Mahoney 176549b25e05SJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, root); 176649b25e05SJeff Mahoney 17674a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 17684a9d8bdeSMiao Xie if (cur_trans == root->fs_info->running_transaction) 17694a9d8bdeSMiao Xie root->fs_info->running_transaction = NULL; 17704a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 17714a9d8bdeSMiao Xie 1772e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 1773e0228285SJosef Bacik sb_end_intwrite(root->fs_info->sb); 1774724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1775724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 177649b25e05SJeff Mahoney 177749b25e05SJeff Mahoney trace_btrfs_transaction_commit(root); 177849b25e05SJeff Mahoney 177949b25e05SJeff Mahoney if (current->journal_info == trans) 178049b25e05SJeff Mahoney current->journal_info = NULL; 1781c0af8f0bSWang Shilong btrfs_scrub_cancel(root->fs_info); 178249b25e05SJeff Mahoney 178349b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 178449b25e05SJeff Mahoney } 178549b25e05SJeff Mahoney 178682436617SMiao Xie static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 178782436617SMiao Xie { 178882436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 17896c255e67SMiao Xie return btrfs_start_delalloc_roots(fs_info, 1, -1); 179082436617SMiao Xie return 0; 179182436617SMiao Xie } 179282436617SMiao Xie 179382436617SMiao Xie static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 179482436617SMiao Xie { 179582436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 1796b0244199SMiao Xie btrfs_wait_ordered_roots(fs_info, -1); 179782436617SMiao Xie } 179882436617SMiao Xie 179950d9aa99SJosef Bacik static inline void 1800161c3549SJosef Bacik btrfs_wait_pending_ordered(struct btrfs_transaction *cur_trans) 180150d9aa99SJosef Bacik { 1802161c3549SJosef Bacik wait_event(cur_trans->pending_wait, 1803161c3549SJosef Bacik atomic_read(&cur_trans->pending_ordered) == 0); 180450d9aa99SJosef Bacik } 180550d9aa99SJosef Bacik 180679154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 180779154b1bSChris Mason struct btrfs_root *root) 180879154b1bSChris Mason { 180949b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 18108fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 1811656f30dbSFilipe Manana struct btrfs_inode *btree_ino = BTRFS_I(root->fs_info->btree_inode); 181225287e0aSMiao Xie int ret; 181379154b1bSChris Mason 18148d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 18158d25a086SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 181625287e0aSMiao Xie ret = cur_trans->aborted; 1817e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1818e4a2bcacSJosef Bacik return ret; 181925287e0aSMiao Xie } 182049b25e05SJeff Mahoney 182156bec294SChris Mason /* make a pass through all the delayed refs we have so far 182256bec294SChris Mason * any runnings procs may add more while we are here 182356bec294SChris Mason */ 182456bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 1825e4a2bcacSJosef Bacik if (ret) { 1826e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1827e4a2bcacSJosef Bacik return ret; 1828e4a2bcacSJosef Bacik } 182956bec294SChris Mason 18300e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 18310e721106SJosef Bacik trans->block_rsv = NULL; 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 18513204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 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 18603204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 18611bbc621eSChris Mason * 18623204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 18633204d33cSJosef Bacik * only 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); 18683204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 18693204d33cSJosef Bacik &cur_trans->flags)) 18701bbc621eSChris Mason run_it = 1; 18711bbc621eSChris Mason mutex_unlock(&root->fs_info->ro_block_group_mutex); 18721bbc621eSChris Mason 18731bbc621eSChris Mason if (run_it) 18741bbc621eSChris Mason ret = btrfs_start_dirty_block_groups(trans, root); 18751bbc621eSChris Mason } 18761bbc621eSChris Mason if (ret) { 18771bbc621eSChris Mason btrfs_end_transaction(trans, root); 18781bbc621eSChris Mason return ret; 18791bbc621eSChris Mason } 18801bbc621eSChris Mason 18814a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 18824a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 18834a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 188413c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 188549b25e05SJeff Mahoney ret = btrfs_end_transaction(trans, root); 1886ccd467d6SChris Mason 1887b9c8300cSLi Zefan wait_for_commit(root, cur_trans); 188815ee9bc7SJosef Bacik 1889b4924a0fSLiu Bo if (unlikely(cur_trans->aborted)) 1890b4924a0fSLiu Bo ret = cur_trans->aborted; 1891b4924a0fSLiu Bo 1892724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 189315ee9bc7SJosef Bacik 189449b25e05SJeff Mahoney return ret; 189579154b1bSChris Mason } 18964313b399SChris Mason 18974a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 1898bb9c12c9SSage Weil wake_up(&root->fs_info->transaction_blocked_wait); 1899bb9c12c9SSage Weil 1900ccd467d6SChris Mason if (cur_trans->list.prev != &root->fs_info->trans_list) { 1901ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 1902ccd467d6SChris Mason struct btrfs_transaction, list); 19034a9d8bdeSMiao Xie if (prev_trans->state != TRANS_STATE_COMPLETED) { 190413c5a93eSJosef Bacik atomic_inc(&prev_trans->use_count); 1905a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1906ccd467d6SChris Mason 1907ccd467d6SChris Mason wait_for_commit(root, prev_trans); 19081f9b8c8fSFilipe Manana ret = prev_trans->aborted; 1909ccd467d6SChris Mason 1910724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 19111f9b8c8fSFilipe Manana if (ret) 19121f9b8c8fSFilipe Manana goto cleanup_transaction; 1913a4abeea4SJosef Bacik } else { 1914a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1915ccd467d6SChris Mason } 1916a4abeea4SJosef Bacik } else { 1917a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1918ccd467d6SChris Mason } 191915ee9bc7SJosef Bacik 19200860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 19210860adfdSMiao Xie 192282436617SMiao Xie ret = btrfs_start_delalloc_flush(root->fs_info); 192382436617SMiao Xie if (ret) 192482436617SMiao Xie goto cleanup_transaction; 192582436617SMiao Xie 19268d875f95SChris Mason ret = btrfs_run_delayed_items(trans, root); 192749b25e05SJeff Mahoney if (ret) 192849b25e05SJeff Mahoney goto cleanup_transaction; 192916cdcec7SMiao Xie 1930581227d0SMiao Xie wait_event(cur_trans->writer_wait, 1931581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 1932ed3b3d31SChris Mason 1933581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 19348d875f95SChris Mason ret = btrfs_run_delayed_items(trans, root); 1935ca469637SMiao Xie if (ret) 1936ca469637SMiao Xie goto cleanup_transaction; 1937ca469637SMiao Xie 193882436617SMiao Xie btrfs_wait_delalloc_flush(root->fs_info); 1939cb7ab021SWang Shilong 1940161c3549SJosef Bacik btrfs_wait_pending_ordered(cur_trans); 194150d9aa99SJosef Bacik 1942cb7ab021SWang Shilong btrfs_scrub_pause(root); 1943ed0ca140SJosef Bacik /* 1944ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 1945ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 19464a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 1947ed0ca140SJosef Bacik */ 1948a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 19494a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1950a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1951ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 1952ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 195315ee9bc7SJosef Bacik 19542cba30f1SMiao Xie /* ->aborted might be set after the previous check, so check it */ 19552cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 19562cba30f1SMiao Xie ret = cur_trans->aborted; 19576cf7f77eSWang Shilong goto scrub_continue; 19582cba30f1SMiao Xie } 19597585717fSChris Mason /* 19607585717fSChris Mason * the reloc mutex makes sure that we stop 19617585717fSChris Mason * the balancing code from coming in and moving 19627585717fSChris Mason * extents around in the middle of the commit 19637585717fSChris Mason */ 19647585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 19657585717fSChris Mason 196642874b3dSMiao Xie /* 196742874b3dSMiao Xie * We needn't worry about the delayed items because we will 196842874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 196942874b3dSMiao Xie * core function of the snapshot creation. 197042874b3dSMiao Xie */ 197142874b3dSMiao Xie ret = create_pending_snapshots(trans, root->fs_info); 197249b25e05SJeff Mahoney if (ret) { 197349b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19746cf7f77eSWang Shilong goto scrub_continue; 197549b25e05SJeff Mahoney } 19763063d29fSChris Mason 197742874b3dSMiao Xie /* 197842874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 197942874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 198042874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 198142874b3dSMiao Xie * them. 198242874b3dSMiao Xie * 198342874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 198442874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 198542874b3dSMiao Xie * the nodes and leaves. 198642874b3dSMiao Xie */ 198742874b3dSMiao Xie ret = btrfs_run_delayed_items(trans, root); 198849b25e05SJeff Mahoney if (ret) { 198949b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19906cf7f77eSWang Shilong goto scrub_continue; 199149b25e05SJeff Mahoney } 199216cdcec7SMiao Xie 199356bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 199449b25e05SJeff Mahoney if (ret) { 199549b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 19966cf7f77eSWang Shilong goto scrub_continue; 199749b25e05SJeff Mahoney } 199856bec294SChris Mason 19990ed4792aSQu Wenruo /* Reocrd old roots for later qgroup accounting */ 20000ed4792aSQu Wenruo ret = btrfs_qgroup_prepare_account_extents(trans, root->fs_info); 20010ed4792aSQu Wenruo if (ret) { 20020ed4792aSQu Wenruo mutex_unlock(&root->fs_info->reloc_mutex); 20030ed4792aSQu Wenruo goto scrub_continue; 20040ed4792aSQu Wenruo } 20050ed4792aSQu Wenruo 2006e999376fSChris Mason /* 2007e999376fSChris Mason * make sure none of the code above managed to slip in a 2008e999376fSChris Mason * delayed item 2009e999376fSChris Mason */ 2010e999376fSChris Mason btrfs_assert_delayed_root_empty(root); 2011e999376fSChris Mason 20122c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2013dc17ff8fSChris Mason 2014e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 2015e02119d5SChris Mason * various roots consistent with each other. Every pointer 2016e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 2017e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 2018e02119d5SChris Mason * the tree logging code from jumping in and changing any 2019e02119d5SChris Mason * of the trees. 2020e02119d5SChris Mason * 2021e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 2022e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 2023e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 2024e02119d5SChris Mason * from now until after the super is written, we avoid races 2025e02119d5SChris Mason * with the tree-log code. 2026e02119d5SChris Mason */ 2027e02119d5SChris Mason mutex_lock(&root->fs_info->tree_log_mutex); 20281a40e23bSZheng Yan 20295d4f98a2SYan Zheng ret = commit_fs_roots(trans, root); 203049b25e05SJeff Mahoney if (ret) { 203149b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 2032871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 20336cf7f77eSWang Shilong goto scrub_continue; 203449b25e05SJeff Mahoney } 203554aa1f4dSChris Mason 20363818aea2SQu Wenruo /* 20377e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 20387e1876acSDavid Sterba * before the next transaction. 20393818aea2SQu Wenruo */ 2040572d9ab7SDavid Sterba btrfs_apply_pending_changes(root->fs_info); 20413818aea2SQu Wenruo 20425d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2043e02119d5SChris Mason * safe to free the root of tree log roots 2044e02119d5SChris Mason */ 2045e02119d5SChris Mason btrfs_free_log_root_tree(trans, root->fs_info); 2046e02119d5SChris Mason 20470ed4792aSQu Wenruo /* 20480ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 20490ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 20500ed4792aSQu Wenruo */ 20510ed4792aSQu Wenruo ret = btrfs_qgroup_account_extents(trans, root->fs_info); 20520ed4792aSQu Wenruo if (ret < 0) { 20530ed4792aSQu Wenruo mutex_unlock(&root->fs_info->tree_log_mutex); 20540ed4792aSQu Wenruo mutex_unlock(&root->fs_info->reloc_mutex); 20550ed4792aSQu Wenruo goto scrub_continue; 20560ed4792aSQu Wenruo } 20570ed4792aSQu Wenruo 20585d4f98a2SYan Zheng ret = commit_cowonly_roots(trans, root); 205949b25e05SJeff Mahoney if (ret) { 206049b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 2061871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 20626cf7f77eSWang Shilong goto scrub_continue; 206349b25e05SJeff Mahoney } 206454aa1f4dSChris Mason 20652cba30f1SMiao Xie /* 20662cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 20672cba30f1SMiao Xie * update ->aborted, check it. 20682cba30f1SMiao Xie */ 20692cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 20702cba30f1SMiao Xie ret = cur_trans->aborted; 20712cba30f1SMiao Xie mutex_unlock(&root->fs_info->tree_log_mutex); 20722cba30f1SMiao Xie mutex_unlock(&root->fs_info->reloc_mutex); 20736cf7f77eSWang Shilong goto scrub_continue; 20742cba30f1SMiao Xie } 20752cba30f1SMiao Xie 207611833d66SYan Zheng btrfs_prepare_extent_commit(trans, root); 207711833d66SYan Zheng 207878fae27eSChris Mason cur_trans = root->fs_info->running_transaction; 20795f39d397SChris Mason 20805d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->tree_root->root_item, 20815d4f98a2SYan Zheng root->fs_info->tree_root->node); 20829e351cc8SJosef Bacik list_add_tail(&root->fs_info->tree_root->dirty_list, 20839e351cc8SJosef Bacik &cur_trans->switch_commits); 20845d4f98a2SYan Zheng 20855d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->chunk_root->root_item, 20865d4f98a2SYan Zheng root->fs_info->chunk_root->node); 20879e351cc8SJosef Bacik list_add_tail(&root->fs_info->chunk_root->dirty_list, 20889e351cc8SJosef Bacik &cur_trans->switch_commits); 20899e351cc8SJosef Bacik 20909e351cc8SJosef Bacik switch_commit_roots(cur_trans, root->fs_info); 20915d4f98a2SYan Zheng 2092edf39272SJan Schmidt assert_qgroups_uptodate(trans); 2093ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 20941bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 20955d4f98a2SYan Zheng update_super_roots(root); 2096e02119d5SChris Mason 20976c41761fSDavid Sterba btrfs_set_super_log_root(root->fs_info->super_copy, 0); 20986c41761fSDavid Sterba btrfs_set_super_log_root_level(root->fs_info->super_copy, 0); 20996c41761fSDavid Sterba memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy, 21006c41761fSDavid Sterba sizeof(*root->fs_info->super_copy)); 2101ccd467d6SChris Mason 2102935e5cc9SMiao Xie btrfs_update_commit_device_size(root->fs_info); 2103ce7213c7SMiao Xie btrfs_update_commit_device_bytes_used(root, cur_trans); 2104935e5cc9SMiao Xie 2105656f30dbSFilipe Manana clear_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags); 2106656f30dbSFilipe Manana clear_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags); 2107656f30dbSFilipe Manana 21084fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 21094fbcdf66SFilipe Manana 2110a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 21114a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 2112a4abeea4SJosef Bacik root->fs_info->running_transaction = NULL; 2113a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 21147585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 2115b7ec40d7SChris Mason 2116f9295749SChris Mason wake_up(&root->fs_info->transaction_wait); 2117e6dcd2dcSChris Mason 211879154b1bSChris Mason ret = btrfs_write_and_wait_transaction(trans, root); 211949b25e05SJeff Mahoney if (ret) { 2120a4553fefSAnand Jain btrfs_std_error(root->fs_info, ret, 212108748810SDavid Sterba "Error while writing out transaction"); 212249b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 21236cf7f77eSWang Shilong goto scrub_continue; 212449b25e05SJeff Mahoney } 212549b25e05SJeff Mahoney 212649b25e05SJeff Mahoney ret = write_ctree_super(trans, root, 0); 212749b25e05SJeff Mahoney if (ret) { 212849b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 21296cf7f77eSWang Shilong goto scrub_continue; 213049b25e05SJeff Mahoney } 21314313b399SChris Mason 2132e02119d5SChris Mason /* 2133e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2134e02119d5SChris Mason * to go about their business 2135e02119d5SChris Mason */ 2136e02119d5SChris Mason mutex_unlock(&root->fs_info->tree_log_mutex); 2137e02119d5SChris Mason 213811833d66SYan Zheng btrfs_finish_extent_commit(trans, root); 21394313b399SChris Mason 21403204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 214113212b54SZhao Lei btrfs_clear_space_info_full(root->fs_info); 214213212b54SZhao Lei 214315ee9bc7SJosef Bacik root->fs_info->last_trans_committed = cur_trans->transid; 21444a9d8bdeSMiao Xie /* 21454a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 21464a9d8bdeSMiao Xie * which can change it. 21474a9d8bdeSMiao Xie */ 21484a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 21492c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 21503de4586cSChris Mason 2151a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 215213c5a93eSJosef Bacik list_del_init(&cur_trans->list); 2153a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 2154a4abeea4SJosef Bacik 2155724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2156724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 215758176a96SJosef Bacik 21580860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 2159b2b5ef5cSJan Kara sb_end_intwrite(root->fs_info->sb); 2160b2b5ef5cSJan Kara 21611abe9b8aSliubo trace_btrfs_transaction_commit(root); 21621abe9b8aSliubo 2163a2de733cSArne Jansen btrfs_scrub_continue(root); 2164a2de733cSArne Jansen 21659ed74f2dSJosef Bacik if (current->journal_info == trans) 21669ed74f2dSJosef Bacik current->journal_info = NULL; 21679ed74f2dSJosef Bacik 21682c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 216924bbcf04SYan, Zheng 21708a733013SZhao Lei if (current != root->fs_info->transaction_kthread && 21718a733013SZhao Lei current != root->fs_info->cleaner_kthread) 217224bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 217324bbcf04SYan, Zheng 217479154b1bSChris Mason return ret; 217549b25e05SJeff Mahoney 21766cf7f77eSWang Shilong scrub_continue: 21776cf7f77eSWang Shilong btrfs_scrub_continue(root); 217849b25e05SJeff Mahoney cleanup_transaction: 21790e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 21804fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 21810e721106SJosef Bacik trans->block_rsv = NULL; 2182c2cf52ebSSimon Kirby btrfs_warn(root->fs_info, "Skipping commit of aborted transaction."); 218349b25e05SJeff Mahoney if (current->journal_info == trans) 218449b25e05SJeff Mahoney current->journal_info = NULL; 21857b8b92afSJosef Bacik cleanup_transaction(trans, root, ret); 218649b25e05SJeff Mahoney 218749b25e05SJeff Mahoney return ret; 218879154b1bSChris Mason } 218979154b1bSChris Mason 2190d352ac68SChris Mason /* 21919d1a2a3aSDavid Sterba * return < 0 if error 21929d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 21939d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 21949d1a2a3aSDavid Sterba * 21959d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 21969d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 21979d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 21989d1a2a3aSDavid Sterba * few seconds later. 2199d352ac68SChris Mason */ 22009d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) 2201e9d0b13bSChris Mason { 22029d1a2a3aSDavid Sterba int ret; 22035d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 2204e9d0b13bSChris Mason 2205a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 22069d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 22079d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 22089d1a2a3aSDavid Sterba return 0; 22099d1a2a3aSDavid Sterba } 22109d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 22119d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2212cfad392bSJosef Bacik list_del_init(&root->root_list); 2213a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 22145d4f98a2SYan Zheng 2215efe120a0SFrank Holton pr_debug("BTRFS: cleaner removing %llu\n", root->objectid); 221676dda93cSYan, Zheng 221716cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 221816cdcec7SMiao Xie 221976dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 222076dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 22212c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 0, 0); 222276dda93cSYan, Zheng else 22232c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 1, 0); 222432471dc2SDavid Sterba 22256596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2226e9d0b13bSChris Mason } 2227572d9ab7SDavid Sterba 2228572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2229572d9ab7SDavid Sterba { 2230572d9ab7SDavid Sterba unsigned long prev; 2231572d9ab7SDavid Sterba unsigned long bit; 2232572d9ab7SDavid Sterba 22336c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2234572d9ab7SDavid Sterba if (!prev) 2235572d9ab7SDavid Sterba return; 2236572d9ab7SDavid Sterba 22377e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE; 22387e1876acSDavid Sterba if (prev & bit) 22397e1876acSDavid Sterba btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); 22407e1876acSDavid Sterba prev &= ~bit; 22417e1876acSDavid Sterba 22427e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE; 22437e1876acSDavid Sterba if (prev & bit) 22447e1876acSDavid Sterba btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); 22457e1876acSDavid Sterba prev &= ~bit; 22467e1876acSDavid Sterba 2247d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2248d51033d0SDavid Sterba if (prev & bit) 2249d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2250d51033d0SDavid Sterba prev &= ~bit; 2251d51033d0SDavid Sterba 2252572d9ab7SDavid Sterba if (prev) 2253572d9ab7SDavid Sterba btrfs_warn(fs_info, 2254572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2255572d9ab7SDavid Sterba } 2256