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" 3479154b1bSChris Mason 350f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0 360f7d52f4SChris Mason 374a9d8bdeSMiao Xie static unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 384a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 394a9d8bdeSMiao Xie [TRANS_STATE_BLOCKED] = (__TRANS_USERSPACE | 404a9d8bdeSMiao Xie __TRANS_START), 414a9d8bdeSMiao Xie [TRANS_STATE_COMMIT_START] = (__TRANS_USERSPACE | 424a9d8bdeSMiao Xie __TRANS_START | 434a9d8bdeSMiao Xie __TRANS_ATTACH), 444a9d8bdeSMiao Xie [TRANS_STATE_COMMIT_DOING] = (__TRANS_USERSPACE | 454a9d8bdeSMiao Xie __TRANS_START | 464a9d8bdeSMiao Xie __TRANS_ATTACH | 474a9d8bdeSMiao Xie __TRANS_JOIN), 484a9d8bdeSMiao Xie [TRANS_STATE_UNBLOCKED] = (__TRANS_USERSPACE | 494a9d8bdeSMiao Xie __TRANS_START | 504a9d8bdeSMiao Xie __TRANS_ATTACH | 514a9d8bdeSMiao Xie __TRANS_JOIN | 524a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 534a9d8bdeSMiao Xie [TRANS_STATE_COMPLETED] = (__TRANS_USERSPACE | 544a9d8bdeSMiao Xie __TRANS_START | 554a9d8bdeSMiao Xie __TRANS_ATTACH | 564a9d8bdeSMiao Xie __TRANS_JOIN | 574a9d8bdeSMiao Xie __TRANS_JOIN_NOLOCK), 584a9d8bdeSMiao Xie }; 594a9d8bdeSMiao Xie 6048a3b636SEric Sandeen static void put_transaction(struct btrfs_transaction *transaction) 6179154b1bSChris Mason { 6213c5a93eSJosef Bacik WARN_ON(atomic_read(&transaction->use_count) == 0); 6313c5a93eSJosef Bacik if (atomic_dec_and_test(&transaction->use_count)) { 64a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 6500f04b88SArne Jansen WARN_ON(transaction->delayed_refs.root.rb_node); 666df9a95eSJosef Bacik while (!list_empty(&transaction->pending_chunks)) { 676df9a95eSJosef Bacik struct extent_map *em; 686df9a95eSJosef Bacik 696df9a95eSJosef Bacik em = list_first_entry(&transaction->pending_chunks, 706df9a95eSJosef Bacik struct extent_map, list); 716df9a95eSJosef Bacik list_del_init(&em->list); 726df9a95eSJosef Bacik free_extent_map(em); 736df9a95eSJosef Bacik } 742c90e5d6SChris Mason kmem_cache_free(btrfs_transaction_cachep, transaction); 7579154b1bSChris Mason } 7678fae27eSChris Mason } 7779154b1bSChris Mason 78817d52f8SJosef Bacik static noinline void switch_commit_root(struct btrfs_root *root) 79817d52f8SJosef Bacik { 80817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 81817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 82817d52f8SJosef Bacik } 83817d52f8SJosef Bacik 840860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 850860adfdSMiao Xie unsigned int type) 860860adfdSMiao Xie { 870860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 880860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 890860adfdSMiao Xie } 900860adfdSMiao Xie 910860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 920860adfdSMiao Xie unsigned int type) 930860adfdSMiao Xie { 940860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 950860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 960860adfdSMiao Xie } 970860adfdSMiao Xie 980860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 990860adfdSMiao Xie unsigned int type) 1000860adfdSMiao Xie { 1010860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 1020860adfdSMiao Xie } 1030860adfdSMiao Xie 1040860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 1050860adfdSMiao Xie { 1060860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 107178260b2SMiao Xie } 108178260b2SMiao Xie 109d352ac68SChris Mason /* 110d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 111d352ac68SChris Mason */ 1120860adfdSMiao Xie static noinline int join_transaction(struct btrfs_root *root, unsigned int type) 11379154b1bSChris Mason { 11479154b1bSChris Mason struct btrfs_transaction *cur_trans; 11519ae4e81SJan Schmidt struct btrfs_fs_info *fs_info = root->fs_info; 116a4abeea4SJosef Bacik 11719ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 118d43317dcSChris Mason loop: 11949b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 12087533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 12119ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 12249b25e05SJeff Mahoney return -EROFS; 12349b25e05SJeff Mahoney } 12449b25e05SJeff Mahoney 12519ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 126a4abeea4SJosef Bacik if (cur_trans) { 127871383beSDavid Sterba if (cur_trans->aborted) { 12819ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 12949b25e05SJeff Mahoney return cur_trans->aborted; 130871383beSDavid Sterba } 1314a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 132178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 133178260b2SMiao Xie return -EBUSY; 134178260b2SMiao Xie } 135a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 136a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 1370860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 13819ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 139a4abeea4SJosef Bacik return 0; 140a4abeea4SJosef Bacik } 14119ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 142a4abeea4SJosef Bacik 143354aa0fbSMiao Xie /* 144354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 145354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 146354aa0fbSMiao Xie */ 147354aa0fbSMiao Xie if (type == TRANS_ATTACH) 148354aa0fbSMiao Xie return -ENOENT; 149354aa0fbSMiao Xie 1504a9d8bdeSMiao Xie /* 1514a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 1524a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 1534a9d8bdeSMiao Xie */ 1544a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 1554a9d8bdeSMiao Xie 156a4abeea4SJosef Bacik cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, GFP_NOFS); 157db5b493aSTsutomu Itoh if (!cur_trans) 158db5b493aSTsutomu Itoh return -ENOMEM; 159d43317dcSChris Mason 16019ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 16119ae4e81SJan Schmidt if (fs_info->running_transaction) { 162d43317dcSChris Mason /* 163d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 1644a9d8bdeSMiao Xie * to redo the checks above 165d43317dcSChris Mason */ 166a4abeea4SJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 167d43317dcSChris Mason goto loop; 16887533c47SMiao Xie } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 169e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 1707b8b92afSJosef Bacik kmem_cache_free(btrfs_transaction_cachep, cur_trans); 1717b8b92afSJosef Bacik return -EROFS; 172a4abeea4SJosef Bacik } 173d43317dcSChris Mason 17413c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 1750860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 17679154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 17779154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 1784a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 179a4abeea4SJosef Bacik /* 180a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 181a4abeea4SJosef Bacik * commit the transaction. 182a4abeea4SJosef Bacik */ 183a4abeea4SJosef Bacik atomic_set(&cur_trans->use_count, 2); 18408607c1bSChris Mason cur_trans->start_time = get_seconds(); 18556bec294SChris Mason 1866bef4d31SEric Paris cur_trans->delayed_refs.root = RB_ROOT; 18756bec294SChris Mason cur_trans->delayed_refs.num_entries = 0; 188c3e69d58SChris Mason cur_trans->delayed_refs.num_heads_ready = 0; 189c3e69d58SChris Mason cur_trans->delayed_refs.num_heads = 0; 19056bec294SChris Mason cur_trans->delayed_refs.flushing = 0; 191c3e69d58SChris Mason cur_trans->delayed_refs.run_delayed_start = 0; 19220b297d6SJan Schmidt 19320b297d6SJan Schmidt /* 19420b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 19520b297d6SJan Schmidt * the log must never go across transaction boundaries. 19620b297d6SJan Schmidt */ 19720b297d6SJan Schmidt smp_mb(); 19831b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 19931b1a2bdSJulia Lawall WARN(1, KERN_ERR "btrfs: tree_mod_seq_list not empty when " 20020b297d6SJan Schmidt "creating a fresh transaction\n"); 20131b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 20231b1a2bdSJulia Lawall WARN(1, KERN_ERR "btrfs: tree_mod_log rb tree not empty when " 20320b297d6SJan Schmidt "creating a fresh transaction\n"); 204fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 20520b297d6SJan Schmidt 20656bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 207bb721703SChris Mason atomic_set(&cur_trans->delayed_refs.procs_running_refs, 0); 208bb721703SChris Mason atomic_set(&cur_trans->delayed_refs.ref_seq, 0); 209bb721703SChris Mason init_waitqueue_head(&cur_trans->delayed_refs.wait); 21056bec294SChris Mason 2113063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 212569e0f35SJosef Bacik INIT_LIST_HEAD(&cur_trans->ordered_operations); 2136df9a95eSJosef Bacik INIT_LIST_HEAD(&cur_trans->pending_chunks); 21419ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 215d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 21619ae4e81SJan Schmidt fs_info->btree_inode->i_mapping); 21719ae4e81SJan Schmidt fs_info->generation++; 21819ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 21919ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 22049b25e05SJeff Mahoney cur_trans->aborted = 0; 22119ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 22215ee9bc7SJosef Bacik 22379154b1bSChris Mason return 0; 22479154b1bSChris Mason } 22579154b1bSChris Mason 226d352ac68SChris Mason /* 227d397712bSChris Mason * this does all the record keeping required to make sure that a reference 228d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 229d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 230d397712bSChris Mason * when the transaction commits 231d352ac68SChris Mason */ 2327585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 2335d4f98a2SYan Zheng struct btrfs_root *root) 2346702ed49SChris Mason { 2355d4f98a2SYan Zheng if (root->ref_cows && root->last_trans < trans->transid) { 2366702ed49SChris Mason WARN_ON(root == root->fs_info->extent_root); 2375d4f98a2SYan Zheng WARN_ON(root->commit_root != root->node); 2385d4f98a2SYan Zheng 2397585717fSChris Mason /* 2407585717fSChris Mason * see below for in_trans_setup usage rules 2417585717fSChris Mason * we have the reloc mutex held now, so there 2427585717fSChris Mason * is only one writer in this function 2437585717fSChris Mason */ 2447585717fSChris Mason root->in_trans_setup = 1; 2457585717fSChris Mason 2467585717fSChris Mason /* make sure readers find in_trans_setup before 2477585717fSChris Mason * they find our root->last_trans update 2487585717fSChris Mason */ 2497585717fSChris Mason smp_wmb(); 2507585717fSChris Mason 251a4abeea4SJosef Bacik spin_lock(&root->fs_info->fs_roots_radix_lock); 252a4abeea4SJosef Bacik if (root->last_trans == trans->transid) { 253a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 254a4abeea4SJosef Bacik return 0; 255a4abeea4SJosef Bacik } 2566702ed49SChris Mason radix_tree_tag_set(&root->fs_info->fs_roots_radix, 2576702ed49SChris Mason (unsigned long)root->root_key.objectid, 2586702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 259a4abeea4SJosef Bacik spin_unlock(&root->fs_info->fs_roots_radix_lock); 2607585717fSChris Mason root->last_trans = trans->transid; 2617585717fSChris Mason 2627585717fSChris Mason /* this is pretty tricky. We don't want to 2637585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 2647585717fSChris Mason * unless we're really doing the first setup for this root in 2657585717fSChris Mason * this transaction. 2667585717fSChris Mason * 2677585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 2687585717fSChris Mason * if we want to take the expensive mutex. 2697585717fSChris Mason * 2707585717fSChris Mason * But, we have to set root->last_trans before we 2717585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 2727585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 2737585717fSChris Mason * with root->in_trans_setup. When this is 1, we're still 2747585717fSChris Mason * fixing up the reloc trees and everyone must wait. 2757585717fSChris Mason * 2767585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 2777585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 2787585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 2797585717fSChris Mason * done before we pop in the zero below 2807585717fSChris Mason */ 2815d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 2827585717fSChris Mason smp_wmb(); 2837585717fSChris Mason root->in_trans_setup = 0; 2846702ed49SChris Mason } 2855d4f98a2SYan Zheng return 0; 2866702ed49SChris Mason } 2875d4f98a2SYan Zheng 2887585717fSChris Mason 2897585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 2907585717fSChris Mason struct btrfs_root *root) 2917585717fSChris Mason { 2927585717fSChris Mason if (!root->ref_cows) 2937585717fSChris Mason return 0; 2947585717fSChris Mason 2957585717fSChris Mason /* 2967585717fSChris Mason * see record_root_in_trans for comments about in_trans_setup usage 2977585717fSChris Mason * and barriers 2987585717fSChris Mason */ 2997585717fSChris Mason smp_rmb(); 3007585717fSChris Mason if (root->last_trans == trans->transid && 3017585717fSChris Mason !root->in_trans_setup) 3027585717fSChris Mason return 0; 3037585717fSChris Mason 3047585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 3057585717fSChris Mason record_root_in_trans(trans, root); 3067585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 3077585717fSChris Mason 3087585717fSChris Mason return 0; 3097585717fSChris Mason } 3107585717fSChris Mason 3114a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 3124a9d8bdeSMiao Xie { 3134a9d8bdeSMiao Xie return (trans->state >= TRANS_STATE_BLOCKED && 314501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 315501407aaSJosef Bacik !trans->aborted); 3164a9d8bdeSMiao Xie } 3174a9d8bdeSMiao Xie 318d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 319d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 320d352ac68SChris Mason * transaction might not be fully on disk. 321d352ac68SChris Mason */ 32237d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root) 32379154b1bSChris Mason { 324f9295749SChris Mason struct btrfs_transaction *cur_trans; 32579154b1bSChris Mason 326a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 327f9295749SChris Mason cur_trans = root->fs_info->running_transaction; 3284a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 32913c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 330a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 33172d63ed6SLi Zefan 33272d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 333501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 334501407aaSJosef Bacik cur_trans->aborted); 335f9295749SChris Mason put_transaction(cur_trans); 336a4abeea4SJosef Bacik } else { 337a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 338f9295749SChris Mason } 33937d1aeeeSChris Mason } 34037d1aeeeSChris Mason 341a22285a6SYan, Zheng static int may_wait_transaction(struct btrfs_root *root, int type) 34237d1aeeeSChris Mason { 343a4abeea4SJosef Bacik if (root->fs_info->log_root_recovering) 344a4abeea4SJosef Bacik return 0; 345a4abeea4SJosef Bacik 346a4abeea4SJosef Bacik if (type == TRANS_USERSPACE) 347a22285a6SYan, Zheng return 1; 348a4abeea4SJosef Bacik 349a4abeea4SJosef Bacik if (type == TRANS_START && 350a4abeea4SJosef Bacik !atomic_read(&root->fs_info->open_ioctl_trans)) 351a4abeea4SJosef Bacik return 1; 352a4abeea4SJosef Bacik 353a22285a6SYan, Zheng return 0; 354a22285a6SYan, Zheng } 355a22285a6SYan, Zheng 35608e007d2SMiao Xie static struct btrfs_trans_handle * 3570860adfdSMiao Xie start_transaction(struct btrfs_root *root, u64 num_items, unsigned int type, 35808e007d2SMiao Xie enum btrfs_reserve_flush_enum flush) 359a22285a6SYan, Zheng { 360a22285a6SYan, Zheng struct btrfs_trans_handle *h; 361a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 362b5009945SJosef Bacik u64 num_bytes = 0; 363a22285a6SYan, Zheng int ret; 364c5567237SArne Jansen u64 qgroup_reserved = 0; 365acce952bSliubo 36687533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) 367acce952bSliubo return ERR_PTR(-EROFS); 3682a1eb461SJosef Bacik 3692a1eb461SJosef Bacik if (current->journal_info) { 3700860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 3712a1eb461SJosef Bacik h = current->journal_info; 3722a1eb461SJosef Bacik h->use_count++; 373b7d5b0a8SMiao Xie WARN_ON(h->use_count > 2); 3742a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 3752a1eb461SJosef Bacik h->block_rsv = NULL; 3762a1eb461SJosef Bacik goto got_it; 3772a1eb461SJosef Bacik } 378b5009945SJosef Bacik 379b5009945SJosef Bacik /* 380b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 381b5009945SJosef Bacik * the appropriate flushing if need be. 382b5009945SJosef Bacik */ 383b5009945SJosef Bacik if (num_items > 0 && root != root->fs_info->chunk_root) { 384c5567237SArne Jansen if (root->fs_info->quota_enabled && 385c5567237SArne Jansen is_fstree(root->root_key.objectid)) { 386c5567237SArne Jansen qgroup_reserved = num_items * root->leafsize; 387c5567237SArne Jansen ret = btrfs_qgroup_reserve(root, qgroup_reserved); 388c5567237SArne Jansen if (ret) 389c5567237SArne Jansen return ERR_PTR(ret); 390c5567237SArne Jansen } 391c5567237SArne Jansen 392b5009945SJosef Bacik num_bytes = btrfs_calc_trans_metadata_size(root, num_items); 3934a92b1b8SJosef Bacik ret = btrfs_block_rsv_add(root, 394b5009945SJosef Bacik &root->fs_info->trans_block_rsv, 39508e007d2SMiao Xie num_bytes, flush); 396b5009945SJosef Bacik if (ret) 397843fcf35SMiao Xie goto reserve_fail; 398b5009945SJosef Bacik } 399a22285a6SYan, Zheng again: 400a22285a6SYan, Zheng h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS); 401843fcf35SMiao Xie if (!h) { 402843fcf35SMiao Xie ret = -ENOMEM; 403843fcf35SMiao Xie goto alloc_fail; 404843fcf35SMiao Xie } 405a22285a6SYan, Zheng 40698114659SJosef Bacik /* 40798114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 40898114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 40998114659SJosef Bacik * because we're already holding a ref. We need this because we could 41098114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 41198114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 412354aa0fbSMiao Xie * 413354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 414354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 41598114659SJosef Bacik */ 4160860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 417b2b5ef5cSJan Kara sb_start_intwrite(root->fs_info->sb); 418b2b5ef5cSJan Kara 419a22285a6SYan, Zheng if (may_wait_transaction(root, type)) 42037d1aeeeSChris Mason wait_current_trans(root); 421a22285a6SYan, Zheng 422a4abeea4SJosef Bacik do { 423354aa0fbSMiao Xie ret = join_transaction(root, type); 424178260b2SMiao Xie if (ret == -EBUSY) { 425a4abeea4SJosef Bacik wait_current_trans(root); 426178260b2SMiao Xie if (unlikely(type == TRANS_ATTACH)) 427178260b2SMiao Xie ret = -ENOENT; 428178260b2SMiao Xie } 429a4abeea4SJosef Bacik } while (ret == -EBUSY); 430a4abeea4SJosef Bacik 431db5b493aSTsutomu Itoh if (ret < 0) { 432354aa0fbSMiao Xie /* We must get the transaction if we are JOIN_NOLOCK. */ 433354aa0fbSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 434843fcf35SMiao Xie goto join_fail; 435db5b493aSTsutomu Itoh } 4360f7d52f4SChris Mason 437a22285a6SYan, Zheng cur_trans = root->fs_info->running_transaction; 438a22285a6SYan, Zheng 439a22285a6SYan, Zheng h->transid = cur_trans->transid; 440a22285a6SYan, Zheng h->transaction = cur_trans; 44179154b1bSChris Mason h->blocks_used = 0; 442a22285a6SYan, Zheng h->bytes_reserved = 0; 443d13603efSArne Jansen h->root = root; 44456bec294SChris Mason h->delayed_ref_updates = 0; 4452a1eb461SJosef Bacik h->use_count = 1; 4460e721106SJosef Bacik h->adding_csums = 0; 447f0486c68SYan, Zheng h->block_rsv = NULL; 4482a1eb461SJosef Bacik h->orig_rsv = NULL; 44949b25e05SJeff Mahoney h->aborted = 0; 4504b824906SMiao Xie h->qgroup_reserved = 0; 451bed92eaeSArne Jansen h->delayed_ref_elem.seq = 0; 452a698d075SMiao Xie h->type = type; 453c6b305a8SJosef Bacik h->allocating_chunk = false; 454bed92eaeSArne Jansen INIT_LIST_HEAD(&h->qgroup_ref_list); 455ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 456b7ec40d7SChris Mason 457a22285a6SYan, Zheng smp_mb(); 4584a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED && 4594a9d8bdeSMiao Xie may_wait_transaction(root, type)) { 460a22285a6SYan, Zheng btrfs_commit_transaction(h, root); 461a22285a6SYan, Zheng goto again; 462a22285a6SYan, Zheng } 4639ed74f2dSJosef Bacik 464b5009945SJosef Bacik if (num_bytes) { 4658c2a3ca2SJosef Bacik trace_btrfs_space_reservation(root->fs_info, "transaction", 4662bcc0328SLiu Bo h->transid, num_bytes, 1); 467b5009945SJosef Bacik h->block_rsv = &root->fs_info->trans_block_rsv; 468b5009945SJosef Bacik h->bytes_reserved = num_bytes; 469a22285a6SYan, Zheng } 4704b824906SMiao Xie h->qgroup_reserved = qgroup_reserved; 471a22285a6SYan, Zheng 4722a1eb461SJosef Bacik got_it: 473a4abeea4SJosef Bacik btrfs_record_root_in_trans(h, root); 474a22285a6SYan, Zheng 475a22285a6SYan, Zheng if (!current->journal_info && type != TRANS_USERSPACE) 476a22285a6SYan, Zheng current->journal_info = h; 47779154b1bSChris Mason return h; 478843fcf35SMiao Xie 479843fcf35SMiao Xie join_fail: 4800860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 481843fcf35SMiao Xie sb_end_intwrite(root->fs_info->sb); 482843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 483843fcf35SMiao Xie alloc_fail: 484843fcf35SMiao Xie if (num_bytes) 485843fcf35SMiao Xie btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv, 486843fcf35SMiao Xie num_bytes); 487843fcf35SMiao Xie reserve_fail: 488843fcf35SMiao Xie if (qgroup_reserved) 489843fcf35SMiao Xie btrfs_qgroup_free(root, qgroup_reserved); 490843fcf35SMiao Xie return ERR_PTR(ret); 49179154b1bSChris Mason } 49279154b1bSChris Mason 493f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 494a22285a6SYan, Zheng int num_items) 495f9295749SChris Mason { 49608e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 49708e007d2SMiao Xie BTRFS_RESERVE_FLUSH_ALL); 498f9295749SChris Mason } 4998407aa46SMiao Xie 50008e007d2SMiao Xie struct btrfs_trans_handle *btrfs_start_transaction_lflush( 5018407aa46SMiao Xie struct btrfs_root *root, int num_items) 5028407aa46SMiao Xie { 50308e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 50408e007d2SMiao Xie BTRFS_RESERVE_FLUSH_LIMIT); 5058407aa46SMiao Xie } 5068407aa46SMiao Xie 5077a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 508f9295749SChris Mason { 5098407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN, 0); 510f9295749SChris Mason } 511f9295749SChris Mason 5127a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root) 5130af3d00bSJosef Bacik { 5148407aa46SMiao Xie return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 0); 5150af3d00bSJosef Bacik } 5160af3d00bSJosef Bacik 5177a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root) 5189ca9ee09SSage Weil { 5198407aa46SMiao Xie return start_transaction(root, 0, TRANS_USERSPACE, 0); 5209ca9ee09SSage Weil } 5219ca9ee09SSage Weil 522d4edf39bSMiao Xie /* 523d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 524d4edf39bSMiao Xie * 525d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 526d4edf39bSMiao Xie * don't want to start a new one. 527d4edf39bSMiao Xie * 528d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 529d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 530d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 531d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 532d4edf39bSMiao Xie * invoke 533d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 534d4edf39bSMiao Xie */ 535354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 53660376ce4SJosef Bacik { 537354aa0fbSMiao Xie return start_transaction(root, 0, TRANS_ATTACH, 0); 53860376ce4SJosef Bacik } 53960376ce4SJosef Bacik 540d4edf39bSMiao Xie /* 54190b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 542d4edf39bSMiao Xie * 543d4edf39bSMiao Xie * It is similar to the above function, the differentia is this one 544d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 545d4edf39bSMiao Xie * complete. 546d4edf39bSMiao Xie */ 547d4edf39bSMiao Xie struct btrfs_trans_handle * 548d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 549d4edf39bSMiao Xie { 550d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 551d4edf39bSMiao Xie 552d4edf39bSMiao Xie trans = start_transaction(root, 0, TRANS_ATTACH, 0); 553d4edf39bSMiao Xie if (IS_ERR(trans) && PTR_ERR(trans) == -ENOENT) 554d4edf39bSMiao Xie btrfs_wait_for_commit(root, 0); 555d4edf39bSMiao Xie 556d4edf39bSMiao Xie return trans; 557d4edf39bSMiao Xie } 558d4edf39bSMiao Xie 559d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 560b9c8300cSLi Zefan static noinline void wait_for_commit(struct btrfs_root *root, 56189ce8a63SChris Mason struct btrfs_transaction *commit) 56289ce8a63SChris Mason { 5634a9d8bdeSMiao Xie wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); 56489ce8a63SChris Mason } 56589ce8a63SChris Mason 56646204592SSage Weil int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid) 56746204592SSage Weil { 56846204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 5698cd2807fSMiao Xie int ret = 0; 57046204592SSage Weil 57146204592SSage Weil if (transid) { 57246204592SSage Weil if (transid <= root->fs_info->last_trans_committed) 573a4abeea4SJosef Bacik goto out; 57446204592SSage Weil 5758cd2807fSMiao Xie ret = -EINVAL; 57646204592SSage Weil /* find specified transaction */ 577a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 57846204592SSage Weil list_for_each_entry(t, &root->fs_info->trans_list, list) { 57946204592SSage Weil if (t->transid == transid) { 58046204592SSage Weil cur_trans = t; 581a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 5828cd2807fSMiao Xie ret = 0; 58346204592SSage Weil break; 58446204592SSage Weil } 5858cd2807fSMiao Xie if (t->transid > transid) { 5868cd2807fSMiao Xie ret = 0; 58746204592SSage Weil break; 58846204592SSage Weil } 5898cd2807fSMiao Xie } 590a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 5918cd2807fSMiao Xie /* The specified transaction doesn't exist */ 59246204592SSage Weil if (!cur_trans) 5938cd2807fSMiao Xie goto out; 59446204592SSage Weil } else { 59546204592SSage Weil /* find newest transaction that is committing | committed */ 596a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 59746204592SSage Weil list_for_each_entry_reverse(t, &root->fs_info->trans_list, 59846204592SSage Weil list) { 5994a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 6004a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 6013473f3c0SJosef Bacik break; 60246204592SSage Weil cur_trans = t; 603a4abeea4SJosef Bacik atomic_inc(&cur_trans->use_count); 60446204592SSage Weil break; 60546204592SSage Weil } 60646204592SSage Weil } 607a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 60846204592SSage Weil if (!cur_trans) 609a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 61046204592SSage Weil } 61146204592SSage Weil 61246204592SSage Weil wait_for_commit(root, cur_trans); 61346204592SSage Weil put_transaction(cur_trans); 614a4abeea4SJosef Bacik out: 61546204592SSage Weil return ret; 61646204592SSage Weil } 61746204592SSage Weil 61837d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root) 61937d1aeeeSChris Mason { 620a4abeea4SJosef Bacik if (!atomic_read(&root->fs_info->open_ioctl_trans)) 62137d1aeeeSChris Mason wait_current_trans(root); 62237d1aeeeSChris Mason } 62337d1aeeeSChris Mason 6248929ecfaSYan, Zheng static int should_end_transaction(struct btrfs_trans_handle *trans, 6258929ecfaSYan, Zheng struct btrfs_root *root) 6268929ecfaSYan, Zheng { 6271be41b78SJosef Bacik if (root->fs_info->global_block_rsv.space_info->full && 6281be41b78SJosef Bacik btrfs_should_throttle_delayed_refs(trans, root)) 6291be41b78SJosef Bacik return 1; 63036ba022aSJosef Bacik 6311be41b78SJosef Bacik return !!btrfs_block_rsv_check(root, &root->fs_info->global_block_rsv, 5); 6328929ecfaSYan, Zheng } 6338929ecfaSYan, Zheng 6348929ecfaSYan, Zheng int btrfs_should_end_transaction(struct btrfs_trans_handle *trans, 6358929ecfaSYan, Zheng struct btrfs_root *root) 6368929ecfaSYan, Zheng { 6378929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 6388929ecfaSYan, Zheng int updates; 63949b25e05SJeff Mahoney int err; 6408929ecfaSYan, Zheng 641a4abeea4SJosef Bacik smp_mb(); 6424a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_BLOCKED || 6434a9d8bdeSMiao Xie cur_trans->delayed_refs.flushing) 6448929ecfaSYan, Zheng return 1; 6458929ecfaSYan, Zheng 6468929ecfaSYan, Zheng updates = trans->delayed_ref_updates; 6478929ecfaSYan, Zheng trans->delayed_ref_updates = 0; 64849b25e05SJeff Mahoney if (updates) { 64949b25e05SJeff Mahoney err = btrfs_run_delayed_refs(trans, root, updates); 65049b25e05SJeff Mahoney if (err) /* Error code will also eval true */ 65149b25e05SJeff Mahoney return err; 65249b25e05SJeff Mahoney } 6538929ecfaSYan, Zheng 6548929ecfaSYan, Zheng return should_end_transaction(trans, root); 6558929ecfaSYan, Zheng } 6568929ecfaSYan, Zheng 65789ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 658a698d075SMiao Xie struct btrfs_root *root, int throttle) 65979154b1bSChris Mason { 6608929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 661ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 6621be41b78SJosef Bacik unsigned long cur = trans->delayed_ref_updates; 663a698d075SMiao Xie int lock = (trans->type != TRANS_JOIN_NOLOCK); 6644edc2ca3SDave Jones int err = 0; 665d6e4a428SChris Mason 6662a1eb461SJosef Bacik if (--trans->use_count) { 6672a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 6682a1eb461SJosef Bacik return 0; 6692a1eb461SJosef Bacik } 6702a1eb461SJosef Bacik 671edf39272SJan Schmidt /* 672edf39272SJan Schmidt * do the qgroup accounting as early as possible 673edf39272SJan Schmidt */ 674edf39272SJan Schmidt err = btrfs_delayed_refs_qgroup_accounting(trans, info); 675edf39272SJan Schmidt 676b24e03dbSJosef Bacik btrfs_trans_release_metadata(trans, root); 6774c13d758SJosef Bacik trans->block_rsv = NULL; 678c5567237SArne Jansen 679c5567237SArne Jansen if (trans->qgroup_reserved) { 6807c2ec3f0SLiu Bo /* 6817c2ec3f0SLiu Bo * the same root has to be passed here between start_transaction 6827c2ec3f0SLiu Bo * and end_transaction. Subvolume quota depends on this. 6837c2ec3f0SLiu Bo */ 6847c2ec3f0SLiu Bo btrfs_qgroup_free(trans->root, trans->qgroup_reserved); 685c5567237SArne Jansen trans->qgroup_reserved = 0; 686c5567237SArne Jansen } 687c5567237SArne Jansen 688ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 689ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 690ea658badSJosef Bacik 691c3e69d58SChris Mason trans->delayed_ref_updates = 0; 6921be41b78SJosef Bacik if (btrfs_should_throttle_delayed_refs(trans, root)) { 6931be41b78SJosef Bacik cur = max_t(unsigned long, cur, 1); 694c3e69d58SChris Mason trans->delayed_ref_updates = 0; 695c3e69d58SChris Mason btrfs_run_delayed_refs(trans, root, cur); 69656bec294SChris Mason } 697bb721703SChris Mason 6980e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 6990e721106SJosef Bacik trans->block_rsv = NULL; 70056bec294SChris Mason 701ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 702ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 703ea658badSJosef Bacik 704a4abeea4SJosef Bacik if (lock && !atomic_read(&root->fs_info->open_ioctl_trans) && 7054a9d8bdeSMiao Xie should_end_transaction(trans, root) && 7064a9d8bdeSMiao Xie ACCESS_ONCE(cur_trans->state) == TRANS_STATE_RUNNING) { 7074a9d8bdeSMiao Xie spin_lock(&info->trans_lock); 7084a9d8bdeSMiao Xie if (cur_trans->state == TRANS_STATE_RUNNING) 7094a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_BLOCKED; 7104a9d8bdeSMiao Xie spin_unlock(&info->trans_lock); 711a4abeea4SJosef Bacik } 7128929ecfaSYan, Zheng 7134a9d8bdeSMiao Xie if (lock && ACCESS_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) { 71481317fdeSJosef Bacik if (throttle) { 71581317fdeSJosef Bacik /* 71681317fdeSJosef Bacik * We may race with somebody else here so end up having 71781317fdeSJosef Bacik * to call end_transaction on ourselves again, so inc 71881317fdeSJosef Bacik * our use_count. 71981317fdeSJosef Bacik */ 72081317fdeSJosef Bacik trans->use_count++; 7218929ecfaSYan, Zheng return btrfs_commit_transaction(trans, root); 72281317fdeSJosef Bacik } else { 7238929ecfaSYan, Zheng wake_up_process(info->transaction_kthread); 7248929ecfaSYan, Zheng } 72581317fdeSJosef Bacik } 7268929ecfaSYan, Zheng 7270860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 7286df7881aSJosef Bacik sb_end_intwrite(root->fs_info->sb); 7296df7881aSJosef Bacik 7308929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 73113c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 73213c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 7330860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 73489ce8a63SChris Mason 73599d16cbcSSage Weil smp_mb(); 73679154b1bSChris Mason if (waitqueue_active(&cur_trans->writer_wait)) 73779154b1bSChris Mason wake_up(&cur_trans->writer_wait); 73879154b1bSChris Mason put_transaction(cur_trans); 7399ed74f2dSJosef Bacik 7409ed74f2dSJosef Bacik if (current->journal_info == trans) 7419ed74f2dSJosef Bacik current->journal_info = NULL; 742ab78c84dSChris Mason 74324bbcf04SYan, Zheng if (throttle) 74424bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 74524bbcf04SYan, Zheng 74649b25e05SJeff Mahoney if (trans->aborted || 74787533c47SMiao Xie test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) 7484edc2ca3SDave Jones err = -EIO; 749edf39272SJan Schmidt assert_qgroups_uptodate(trans); 75049b25e05SJeff Mahoney 7514edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 7524edc2ca3SDave Jones return err; 75379154b1bSChris Mason } 75479154b1bSChris Mason 75589ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans, 75689ce8a63SChris Mason struct btrfs_root *root) 75789ce8a63SChris Mason { 75898ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 0); 75989ce8a63SChris Mason } 76089ce8a63SChris Mason 76189ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 76289ce8a63SChris Mason struct btrfs_root *root) 76389ce8a63SChris Mason { 76498ad43beSWang Shilong return __btrfs_end_transaction(trans, root, 1); 76516cdcec7SMiao Xie } 76616cdcec7SMiao Xie 76716cdcec7SMiao Xie int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans, 76816cdcec7SMiao Xie struct btrfs_root *root) 76916cdcec7SMiao Xie { 770a698d075SMiao Xie return __btrfs_end_transaction(trans, root, 1); 77189ce8a63SChris Mason } 77289ce8a63SChris Mason 773d352ac68SChris Mason /* 774d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 775d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 776690587d1SChris Mason * those extents are sent to disk but does not wait on them 777d352ac68SChris Mason */ 778690587d1SChris Mason int btrfs_write_marked_extents(struct btrfs_root *root, 7798cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 78079154b1bSChris Mason { 781777e6bd7SChris Mason int err = 0; 7827c4452b9SChris Mason int werr = 0; 7831728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 784e6138876SJosef Bacik struct extent_state *cached_state = NULL; 785777e6bd7SChris Mason u64 start = 0; 7865f39d397SChris Mason u64 end; 7877c4452b9SChris Mason 7881728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 789e6138876SJosef Bacik mark, &cached_state)) { 790e6138876SJosef Bacik convert_extent_bit(dirty_pages, start, end, EXTENT_NEED_WAIT, 791e6138876SJosef Bacik mark, &cached_state, GFP_NOFS); 792e6138876SJosef Bacik cached_state = NULL; 7931728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 7947c4452b9SChris Mason if (err) 7957c4452b9SChris Mason werr = err; 7961728366eSJosef Bacik cond_resched(); 7971728366eSJosef Bacik start = end + 1; 7987c4452b9SChris Mason } 799690587d1SChris Mason if (err) 800690587d1SChris Mason werr = err; 801690587d1SChris Mason return werr; 802690587d1SChris Mason } 803690587d1SChris Mason 804690587d1SChris Mason /* 805690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 806690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 807690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 808690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 809690587d1SChris Mason */ 810690587d1SChris Mason int btrfs_wait_marked_extents(struct btrfs_root *root, 8118cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 812690587d1SChris Mason { 813690587d1SChris Mason int err = 0; 814690587d1SChris Mason int werr = 0; 8151728366eSJosef Bacik struct address_space *mapping = root->fs_info->btree_inode->i_mapping; 816e6138876SJosef Bacik struct extent_state *cached_state = NULL; 817690587d1SChris Mason u64 start = 0; 818690587d1SChris Mason u64 end; 819690587d1SChris Mason 8201728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 821e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 822e6138876SJosef Bacik clear_extent_bit(dirty_pages, start, end, EXTENT_NEED_WAIT, 823e6138876SJosef Bacik 0, 0, &cached_state, GFP_NOFS); 8241728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 825777e6bd7SChris Mason if (err) 826777e6bd7SChris Mason werr = err; 827777e6bd7SChris Mason cond_resched(); 8281728366eSJosef Bacik start = end + 1; 829777e6bd7SChris Mason } 8307c4452b9SChris Mason if (err) 8317c4452b9SChris Mason werr = err; 8327c4452b9SChris Mason return werr; 83379154b1bSChris Mason } 83479154b1bSChris Mason 835690587d1SChris Mason /* 836690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 837690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 838690587d1SChris Mason * those extents are on disk for transaction or log commit 839690587d1SChris Mason */ 840171170c1SSergei Trofimovich static int btrfs_write_and_wait_marked_extents(struct btrfs_root *root, 8418cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 842690587d1SChris Mason { 843690587d1SChris Mason int ret; 844690587d1SChris Mason int ret2; 845c6adc9ccSMiao Xie struct blk_plug plug; 846690587d1SChris Mason 847c6adc9ccSMiao Xie blk_start_plug(&plug); 8488cef4e16SYan, Zheng ret = btrfs_write_marked_extents(root, dirty_pages, mark); 849c6adc9ccSMiao Xie blk_finish_plug(&plug); 8508cef4e16SYan, Zheng ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark); 851bf0da8c1SChris Mason 852bf0da8c1SChris Mason if (ret) 853bf0da8c1SChris Mason return ret; 854bf0da8c1SChris Mason if (ret2) 855bf0da8c1SChris Mason return ret2; 856bf0da8c1SChris Mason return 0; 857690587d1SChris Mason } 858690587d1SChris Mason 859d0c803c4SChris Mason int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, 860d0c803c4SChris Mason struct btrfs_root *root) 861d0c803c4SChris Mason { 862d0c803c4SChris Mason if (!trans || !trans->transaction) { 863d0c803c4SChris Mason struct inode *btree_inode; 864d0c803c4SChris Mason btree_inode = root->fs_info->btree_inode; 865d0c803c4SChris Mason return filemap_write_and_wait(btree_inode->i_mapping); 866d0c803c4SChris Mason } 867d0c803c4SChris Mason return btrfs_write_and_wait_marked_extents(root, 8688cef4e16SYan, Zheng &trans->transaction->dirty_pages, 8698cef4e16SYan, Zheng EXTENT_DIRTY); 870d0c803c4SChris Mason } 871d0c803c4SChris Mason 872d352ac68SChris Mason /* 873d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 874d352ac68SChris Mason * 875d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 876d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 877d352ac68SChris Mason * allocation tree. 878d352ac68SChris Mason * 879d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 880d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 881d352ac68SChris Mason */ 8820b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 88379154b1bSChris Mason struct btrfs_root *root) 88479154b1bSChris Mason { 88579154b1bSChris Mason int ret; 8860b86a832SChris Mason u64 old_root_bytenr; 88786b9f2ecSYan, Zheng u64 old_root_used; 8880b86a832SChris Mason struct btrfs_root *tree_root = root->fs_info->tree_root; 88979154b1bSChris Mason 89086b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 8910b86a832SChris Mason btrfs_write_dirty_block_groups(trans, root); 89256bec294SChris Mason 89379154b1bSChris Mason while (1) { 8940b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 89586b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 89686b9f2ecSYan, Zheng old_root_used == btrfs_root_used(&root->root_item)) 89779154b1bSChris Mason break; 89887ef2bb4SChris Mason 8995d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 90079154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 9010b86a832SChris Mason &root->root_key, 9020b86a832SChris Mason &root->root_item); 90349b25e05SJeff Mahoney if (ret) 90449b25e05SJeff Mahoney return ret; 90556bec294SChris Mason 90686b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 9074a8c9a62SYan Zheng ret = btrfs_write_dirty_block_groups(trans, root); 90849b25e05SJeff Mahoney if (ret) 90949b25e05SJeff Mahoney return ret; 9100b86a832SChris Mason } 911276e680dSYan Zheng 912276e680dSYan Zheng if (root != root->fs_info->extent_root) 913817d52f8SJosef Bacik switch_commit_root(root); 914276e680dSYan Zheng 9150b86a832SChris Mason return 0; 9160b86a832SChris Mason } 9170b86a832SChris Mason 918d352ac68SChris Mason /* 919d352ac68SChris Mason * update all the cowonly tree roots on disk 92049b25e05SJeff Mahoney * 92149b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 92249b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 92349b25e05SJeff Mahoney * to clean up the delayed refs. 924d352ac68SChris Mason */ 9255d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, 9260b86a832SChris Mason struct btrfs_root *root) 9270b86a832SChris Mason { 9280b86a832SChris Mason struct btrfs_fs_info *fs_info = root->fs_info; 9290b86a832SChris Mason struct list_head *next; 93084234f3aSYan Zheng struct extent_buffer *eb; 93156bec294SChris Mason int ret; 93284234f3aSYan Zheng 93356bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 93449b25e05SJeff Mahoney if (ret) 93549b25e05SJeff Mahoney return ret; 93687ef2bb4SChris Mason 93784234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 93849b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 93949b25e05SJeff Mahoney 0, &eb); 94084234f3aSYan Zheng btrfs_tree_unlock(eb); 94184234f3aSYan Zheng free_extent_buffer(eb); 9420b86a832SChris Mason 94349b25e05SJeff Mahoney if (ret) 94449b25e05SJeff Mahoney return ret; 94549b25e05SJeff Mahoney 94656bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 94749b25e05SJeff Mahoney if (ret) 94849b25e05SJeff Mahoney return ret; 94987ef2bb4SChris Mason 950733f4fbbSStefan Behrens ret = btrfs_run_dev_stats(trans, root->fs_info); 9518dabb742SStefan Behrens WARN_ON(ret); 9528dabb742SStefan Behrens ret = btrfs_run_dev_replace(trans, root->fs_info); 9538dabb742SStefan Behrens WARN_ON(ret); 954733f4fbbSStefan Behrens 955546adb0dSJan Schmidt ret = btrfs_run_qgroups(trans, root->fs_info); 956546adb0dSJan Schmidt BUG_ON(ret); 957546adb0dSJan Schmidt 958546adb0dSJan Schmidt /* run_qgroups might have added some more refs */ 959546adb0dSJan Schmidt ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 960546adb0dSJan Schmidt BUG_ON(ret); 961546adb0dSJan Schmidt 9620b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 9630b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 9640b86a832SChris Mason list_del_init(next); 9650b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 96687ef2bb4SChris Mason 96749b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 96849b25e05SJeff Mahoney if (ret) 96949b25e05SJeff Mahoney return ret; 97079154b1bSChris Mason } 971276e680dSYan Zheng 972276e680dSYan Zheng down_write(&fs_info->extent_commit_sem); 973276e680dSYan Zheng switch_commit_root(fs_info->extent_root); 974276e680dSYan Zheng up_write(&fs_info->extent_commit_sem); 975276e680dSYan Zheng 9768dabb742SStefan Behrens btrfs_after_dev_replace_commit(fs_info); 9778dabb742SStefan Behrens 97879154b1bSChris Mason return 0; 97979154b1bSChris Mason } 98079154b1bSChris Mason 981d352ac68SChris Mason /* 982d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 983d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 984d352ac68SChris Mason * be deleted 985d352ac68SChris Mason */ 986cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 9875eda7b5eSChris Mason { 988a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 989cfad392bSJosef Bacik if (list_empty(&root->root_list)) 9909d1a2a3aSDavid Sterba list_add_tail(&root->root_list, &root->fs_info->dead_roots); 991a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 9925eda7b5eSChris Mason } 9935eda7b5eSChris Mason 994d352ac68SChris Mason /* 9955d4f98a2SYan Zheng * update all the cowonly tree roots on disk 996d352ac68SChris Mason */ 9975d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, 9985d4f98a2SYan Zheng struct btrfs_root *root) 9990f7d52f4SChris Mason { 10000f7d52f4SChris Mason struct btrfs_root *gang[8]; 10015d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 10020f7d52f4SChris Mason int i; 10030f7d52f4SChris Mason int ret; 100454aa1f4dSChris Mason int err = 0; 100554aa1f4dSChris Mason 1006a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 10070f7d52f4SChris Mason while (1) { 10085d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 10095d4f98a2SYan Zheng (void **)gang, 0, 10100f7d52f4SChris Mason ARRAY_SIZE(gang), 10110f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 10120f7d52f4SChris Mason if (ret == 0) 10130f7d52f4SChris Mason break; 10140f7d52f4SChris Mason for (i = 0; i < ret; i++) { 10150f7d52f4SChris Mason root = gang[i]; 10165d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 10172619ba1fSChris Mason (unsigned long)root->root_key.objectid, 10180f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1019a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 102031153d81SYan Zheng 1021e02119d5SChris Mason btrfs_free_log(trans, root); 10225d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 1023d68fc57bSYan, Zheng btrfs_orphan_commit_root(trans, root); 1024e02119d5SChris Mason 102582d5902dSLi Zefan btrfs_save_ino_cache(root, trans); 102682d5902dSLi Zefan 1027f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 1028f1ebcc74SLiu Bo root->force_cow = 0; 1029f1ebcc74SLiu Bo smp_wmb(); 1030f1ebcc74SLiu Bo 1031978d910dSYan Zheng if (root->commit_root != root->node) { 1032581bb050SLi Zefan mutex_lock(&root->fs_commit_mutex); 1033817d52f8SJosef Bacik switch_commit_root(root); 1034581bb050SLi Zefan btrfs_unpin_free_ino(root); 1035581bb050SLi Zefan mutex_unlock(&root->fs_commit_mutex); 1036581bb050SLi Zefan 1037978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 1038978d910dSYan Zheng root->node); 1039978d910dSYan Zheng } 104031153d81SYan Zheng 10415d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 10420f7d52f4SChris Mason &root->root_key, 10430f7d52f4SChris Mason &root->root_item); 1044a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 104554aa1f4dSChris Mason if (err) 104654aa1f4dSChris Mason break; 10470f7d52f4SChris Mason } 10489f3a7427SChris Mason } 1049a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 105054aa1f4dSChris Mason return err; 10510f7d52f4SChris Mason } 10520f7d52f4SChris Mason 1053d352ac68SChris Mason /* 1054de78b51aSEric Sandeen * defrag a given btree. 1055de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1056d352ac68SChris Mason */ 1057de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1058e9d0b13bSChris Mason { 1059e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1060e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 10618929ecfaSYan, Zheng int ret; 1062e9d0b13bSChris Mason 10638929ecfaSYan, Zheng if (xchg(&root->defrag_running, 1)) 1064e9d0b13bSChris Mason return 0; 10658929ecfaSYan, Zheng 10666b80053dSChris Mason while (1) { 10678929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 10688929ecfaSYan, Zheng if (IS_ERR(trans)) 10698929ecfaSYan, Zheng return PTR_ERR(trans); 10708929ecfaSYan, Zheng 1071de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 10728929ecfaSYan, Zheng 1073e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 1074b53d3f5dSLiu Bo btrfs_btree_balance_dirty(info->tree_root); 1075e9d0b13bSChris Mason cond_resched(); 1076e9d0b13bSChris Mason 10777841cb28SDavid Sterba if (btrfs_fs_closing(root->fs_info) || ret != -EAGAIN) 1078e9d0b13bSChris Mason break; 1079210549ebSDavid Sterba 1080210549ebSDavid Sterba if (btrfs_defrag_cancelled(root->fs_info)) { 1081210549ebSDavid Sterba printk(KERN_DEBUG "btrfs: defrag_root cancelled\n"); 1082210549ebSDavid Sterba ret = -EAGAIN; 1083210549ebSDavid Sterba break; 1084210549ebSDavid Sterba } 1085e9d0b13bSChris Mason } 1086e9d0b13bSChris Mason root->defrag_running = 0; 10878929ecfaSYan, Zheng return ret; 1088e9d0b13bSChris Mason } 1089e9d0b13bSChris Mason 1090d352ac68SChris Mason /* 1091d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1092aec8030aSMiao Xie * transaction commit. This does the actual creation. 1093aec8030aSMiao Xie * 1094aec8030aSMiao Xie * Note: 1095aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1096aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1097aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1098d352ac68SChris Mason */ 109980b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 11003063d29fSChris Mason struct btrfs_fs_info *fs_info, 11013063d29fSChris Mason struct btrfs_pending_snapshot *pending) 11023063d29fSChris Mason { 11033063d29fSChris Mason struct btrfs_key key; 110480b6794dSChris Mason struct btrfs_root_item *new_root_item; 11053063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 11063063d29fSChris Mason struct btrfs_root *root = pending->root; 11076bdb72deSSage Weil struct btrfs_root *parent_root; 110898c9942aSLiu Bo struct btrfs_block_rsv *rsv; 11096bdb72deSSage Weil struct inode *parent_inode; 111042874b3dSMiao Xie struct btrfs_path *path; 111142874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1112a22285a6SYan, Zheng struct dentry *dentry; 11133063d29fSChris Mason struct extent_buffer *tmp; 1114925baeddSChris Mason struct extent_buffer *old; 11158ea05e3aSAlexander Block struct timespec cur_time = CURRENT_TIME; 1116aec8030aSMiao Xie int ret = 0; 1117d68fc57bSYan, Zheng u64 to_reserve = 0; 11186bdb72deSSage Weil u64 index = 0; 1119a22285a6SYan, Zheng u64 objectid; 1120b83cc969SLi Zefan u64 root_flags; 11218ea05e3aSAlexander Block uuid_le new_uuid; 11223063d29fSChris Mason 112342874b3dSMiao Xie path = btrfs_alloc_path(); 112442874b3dSMiao Xie if (!path) { 1125aec8030aSMiao Xie pending->error = -ENOMEM; 1126aec8030aSMiao Xie return 0; 112742874b3dSMiao Xie } 112842874b3dSMiao Xie 112980b6794dSChris Mason new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS); 113080b6794dSChris Mason if (!new_root_item) { 1131aec8030aSMiao Xie pending->error = -ENOMEM; 11326fa9700eSMiao Xie goto root_item_alloc_fail; 113380b6794dSChris Mason } 1134a22285a6SYan, Zheng 1135aec8030aSMiao Xie pending->error = btrfs_find_free_objectid(tree_root, &objectid); 1136aec8030aSMiao Xie if (pending->error) 11376fa9700eSMiao Xie goto no_free_objectid; 11383063d29fSChris Mason 11393fd0a558SYan, Zheng btrfs_reloc_pre_snapshot(trans, pending, &to_reserve); 1140d68fc57bSYan, Zheng 1141d68fc57bSYan, Zheng if (to_reserve > 0) { 1142aec8030aSMiao Xie pending->error = btrfs_block_rsv_add(root, 1143aec8030aSMiao Xie &pending->block_rsv, 114408e007d2SMiao Xie to_reserve, 114508e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1146aec8030aSMiao Xie if (pending->error) 11476fa9700eSMiao Xie goto no_free_objectid; 1148d68fc57bSYan, Zheng } 1149d68fc57bSYan, Zheng 1150aec8030aSMiao Xie pending->error = btrfs_qgroup_inherit(trans, fs_info, 1151aec8030aSMiao Xie root->root_key.objectid, 11526f72c7e2SArne Jansen objectid, pending->inherit); 1153aec8030aSMiao Xie if (pending->error) 11546fa9700eSMiao Xie goto no_free_objectid; 11556f72c7e2SArne Jansen 11563063d29fSChris Mason key.objectid = objectid; 1157a22285a6SYan, Zheng key.offset = (u64)-1; 1158a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 11593063d29fSChris Mason 11606fa9700eSMiao Xie rsv = trans->block_rsv; 1161a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 11622382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 11636bdb72deSSage Weil 1164a22285a6SYan, Zheng dentry = pending->dentry; 1165e9662f70SMiao Xie parent_inode = pending->dir; 1166a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 11677585717fSChris Mason record_root_in_trans(trans, parent_root); 1168a22285a6SYan, Zheng 11696bdb72deSSage Weil /* 11706bdb72deSSage Weil * insert the directory item 11716bdb72deSSage Weil */ 11726bdb72deSSage Weil ret = btrfs_set_inode_index(parent_inode, &index); 117349b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 117442874b3dSMiao Xie 117542874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 117642874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 117742874b3dSMiao Xie btrfs_ino(parent_inode), 117842874b3dSMiao Xie dentry->d_name.name, 117942874b3dSMiao Xie dentry->d_name.len, 0); 118042874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1181fe66a05aSChris Mason pending->error = -EEXIST; 1182aec8030aSMiao Xie goto dir_item_existed; 118342874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 118442874b3dSMiao Xie ret = PTR_ERR(dir_item); 11858732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 11868732d44fSMiao Xie goto fail; 118779787eaaSJeff Mahoney } 118842874b3dSMiao Xie btrfs_release_path(path); 11896bdb72deSSage Weil 1190e999376fSChris Mason /* 1191e999376fSChris Mason * pull in the delayed directory update 1192e999376fSChris Mason * and the delayed inode item 1193e999376fSChris Mason * otherwise we corrupt the FS during 1194e999376fSChris Mason * snapshot 1195e999376fSChris Mason */ 1196e999376fSChris Mason ret = btrfs_run_delayed_items(trans, root); 11978732d44fSMiao Xie if (ret) { /* Transaction aborted */ 11988732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 11998732d44fSMiao Xie goto fail; 12008732d44fSMiao Xie } 1201e999376fSChris Mason 12027585717fSChris Mason record_root_in_trans(trans, root); 12036bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 12046bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 120508fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 12066bdb72deSSage Weil 1207b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1208b83cc969SLi Zefan if (pending->readonly) 1209b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1210b83cc969SLi Zefan else 1211b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1212b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1213b83cc969SLi Zefan 12148ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 12158ea05e3aSAlexander Block trans->transid); 12168ea05e3aSAlexander Block uuid_le_gen(&new_uuid); 12178ea05e3aSAlexander Block memcpy(new_root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE); 12188ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 12198ea05e3aSAlexander Block BTRFS_UUID_SIZE); 122070023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 122170023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 122270023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 12238ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 12248ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 12258ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 12268ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 122770023da2SStefan Behrens } 12283cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 12293cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 123070023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 12318ea05e3aSAlexander Block 1232925baeddSChris Mason old = btrfs_lock_root_node(root); 123349b25e05SJeff Mahoney ret = btrfs_cow_block(trans, root, old, NULL, 0, &old); 123479787eaaSJeff Mahoney if (ret) { 123579787eaaSJeff Mahoney btrfs_tree_unlock(old); 123679787eaaSJeff Mahoney free_extent_buffer(old); 12378732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12388732d44fSMiao Xie goto fail; 123979787eaaSJeff Mahoney } 124049b25e05SJeff Mahoney 12415d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 12423063d29fSChris Mason 124349b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 124479787eaaSJeff Mahoney /* clean up in any case */ 1245925baeddSChris Mason btrfs_tree_unlock(old); 1246925baeddSChris Mason free_extent_buffer(old); 12478732d44fSMiao Xie if (ret) { 12488732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12498732d44fSMiao Xie goto fail; 12508732d44fSMiao Xie } 12513063d29fSChris Mason 1252f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 1253f1ebcc74SLiu Bo root->force_cow = 1; 1254f1ebcc74SLiu Bo smp_wmb(); 1255f1ebcc74SLiu Bo 12565d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1257a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1258a22285a6SYan, Zheng key.offset = trans->transid; 1259a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1260925baeddSChris Mason btrfs_tree_unlock(tmp); 12613063d29fSChris Mason free_extent_buffer(tmp); 12628732d44fSMiao Xie if (ret) { 12638732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12648732d44fSMiao Xie goto fail; 12658732d44fSMiao Xie } 12660660b5afSChris Mason 1267a22285a6SYan, Zheng /* 1268a22285a6SYan, Zheng * insert root back/forward references 1269a22285a6SYan, Zheng */ 1270a22285a6SYan, Zheng ret = btrfs_add_root_ref(trans, tree_root, objectid, 1271a22285a6SYan, Zheng parent_root->root_key.objectid, 127233345d01SLi Zefan btrfs_ino(parent_inode), index, 1273a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 12748732d44fSMiao Xie if (ret) { 12758732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12768732d44fSMiao Xie goto fail; 12778732d44fSMiao Xie } 1278a22285a6SYan, Zheng 1279a22285a6SYan, Zheng key.offset = (u64)-1; 1280a22285a6SYan, Zheng pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key); 128179787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 128279787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 12838732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12848732d44fSMiao Xie goto fail; 128579787eaaSJeff Mahoney } 1286d68fc57bSYan, Zheng 128749b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 12888732d44fSMiao Xie if (ret) { 12898732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12908732d44fSMiao Xie goto fail; 12918732d44fSMiao Xie } 1292361048f5SMiao Xie 1293361048f5SMiao Xie ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 12948732d44fSMiao Xie if (ret) { 12958732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 12968732d44fSMiao Xie goto fail; 12978732d44fSMiao Xie } 129842874b3dSMiao Xie 129942874b3dSMiao Xie ret = btrfs_insert_dir_item(trans, parent_root, 130042874b3dSMiao Xie dentry->d_name.name, dentry->d_name.len, 130142874b3dSMiao Xie parent_inode, &key, 130242874b3dSMiao Xie BTRFS_FT_DIR, index); 130342874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 13049c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 13058732d44fSMiao Xie if (ret) { 13068732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 13078732d44fSMiao Xie goto fail; 13088732d44fSMiao Xie } 130942874b3dSMiao Xie 131042874b3dSMiao Xie btrfs_i_size_write(parent_inode, parent_inode->i_size + 131142874b3dSMiao Xie dentry->d_name.len * 2); 131242874b3dSMiao Xie parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; 1313be6aef60SJosef Bacik ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode); 1314*dd5f9615SStefan Behrens if (ret) { 13158732d44fSMiao Xie btrfs_abort_transaction(trans, root, ret); 1316*dd5f9615SStefan Behrens goto fail; 1317*dd5f9615SStefan Behrens } 1318*dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, new_uuid.b, 1319*dd5f9615SStefan Behrens BTRFS_UUID_KEY_SUBVOL, objectid); 1320*dd5f9615SStefan Behrens if (ret) { 1321*dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1322*dd5f9615SStefan Behrens goto fail; 1323*dd5f9615SStefan Behrens } 1324*dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1325*dd5f9615SStefan Behrens ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, 1326*dd5f9615SStefan Behrens new_root_item->received_uuid, 1327*dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1328*dd5f9615SStefan Behrens objectid); 1329*dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 1330*dd5f9615SStefan Behrens btrfs_abort_transaction(trans, root, ret); 1331*dd5f9615SStefan Behrens goto fail; 1332*dd5f9615SStefan Behrens } 1333*dd5f9615SStefan Behrens } 13343063d29fSChris Mason fail: 1335aec8030aSMiao Xie pending->error = ret; 1336aec8030aSMiao Xie dir_item_existed: 133798c9942aSLiu Bo trans->block_rsv = rsv; 13382382c5ccSLiu Bo trans->bytes_reserved = 0; 13396fa9700eSMiao Xie no_free_objectid: 13406fa9700eSMiao Xie kfree(new_root_item); 13416fa9700eSMiao Xie root_item_alloc_fail: 134242874b3dSMiao Xie btrfs_free_path(path); 134349b25e05SJeff Mahoney return ret; 13443063d29fSChris Mason } 13453063d29fSChris Mason 1346d352ac68SChris Mason /* 1347d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1348d352ac68SChris Mason */ 134980b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, 13503063d29fSChris Mason struct btrfs_fs_info *fs_info) 13513063d29fSChris Mason { 1352aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 13533063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1354aec8030aSMiao Xie int ret = 0; 13553de4586cSChris Mason 1356aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1357aec8030aSMiao Xie list_del(&pending->list); 1358aec8030aSMiao Xie ret = create_pending_snapshot(trans, fs_info, pending); 1359aec8030aSMiao Xie if (ret) 1360aec8030aSMiao Xie break; 1361aec8030aSMiao Xie } 1362aec8030aSMiao Xie return ret; 13633de4586cSChris Mason } 13643de4586cSChris Mason 13655d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root) 13665d4f98a2SYan Zheng { 13675d4f98a2SYan Zheng struct btrfs_root_item *root_item; 13685d4f98a2SYan Zheng struct btrfs_super_block *super; 13695d4f98a2SYan Zheng 13706c41761fSDavid Sterba super = root->fs_info->super_copy; 13715d4f98a2SYan Zheng 13725d4f98a2SYan Zheng root_item = &root->fs_info->chunk_root->root_item; 13735d4f98a2SYan Zheng super->chunk_root = root_item->bytenr; 13745d4f98a2SYan Zheng super->chunk_root_generation = root_item->generation; 13755d4f98a2SYan Zheng super->chunk_root_level = root_item->level; 13765d4f98a2SYan Zheng 13775d4f98a2SYan Zheng root_item = &root->fs_info->tree_root->root_item; 13785d4f98a2SYan Zheng super->root = root_item->bytenr; 13795d4f98a2SYan Zheng super->generation = root_item->generation; 13805d4f98a2SYan Zheng super->root_level = root_item->level; 138173bc1876SJosef Bacik if (btrfs_test_opt(root, SPACE_CACHE)) 13820af3d00bSJosef Bacik super->cache_generation = root_item->generation; 13835d4f98a2SYan Zheng } 13845d4f98a2SYan Zheng 1385f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1386f36f3042SChris Mason { 13874a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1388f36f3042SChris Mason int ret = 0; 13894a9d8bdeSMiao Xie 1390a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 13914a9d8bdeSMiao Xie trans = info->running_transaction; 13924a9d8bdeSMiao Xie if (trans) 13934a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1394a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1395f36f3042SChris Mason return ret; 1396f36f3042SChris Mason } 1397f36f3042SChris Mason 13988929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 13998929ecfaSYan, Zheng { 14004a9d8bdeSMiao Xie struct btrfs_transaction *trans; 14018929ecfaSYan, Zheng int ret = 0; 14024a9d8bdeSMiao Xie 1403a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 14044a9d8bdeSMiao Xie trans = info->running_transaction; 14054a9d8bdeSMiao Xie if (trans) 14064a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1407a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 14088929ecfaSYan, Zheng return ret; 14098929ecfaSYan, Zheng } 14108929ecfaSYan, Zheng 1411bb9c12c9SSage Weil /* 1412bb9c12c9SSage Weil * wait for the current transaction commit to start and block subsequent 1413bb9c12c9SSage Weil * transaction joins 1414bb9c12c9SSage Weil */ 1415bb9c12c9SSage Weil static void wait_current_trans_commit_start(struct btrfs_root *root, 1416bb9c12c9SSage Weil struct btrfs_transaction *trans) 1417bb9c12c9SSage Weil { 14184a9d8bdeSMiao Xie wait_event(root->fs_info->transaction_blocked_wait, 1419501407aaSJosef Bacik trans->state >= TRANS_STATE_COMMIT_START || 1420501407aaSJosef Bacik trans->aborted); 1421bb9c12c9SSage Weil } 1422bb9c12c9SSage Weil 1423bb9c12c9SSage Weil /* 1424bb9c12c9SSage Weil * wait for the current transaction to start and then become unblocked. 1425bb9c12c9SSage Weil * caller holds ref. 1426bb9c12c9SSage Weil */ 1427bb9c12c9SSage Weil static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root, 1428bb9c12c9SSage Weil struct btrfs_transaction *trans) 1429bb9c12c9SSage Weil { 143072d63ed6SLi Zefan wait_event(root->fs_info->transaction_wait, 1431501407aaSJosef Bacik trans->state >= TRANS_STATE_UNBLOCKED || 1432501407aaSJosef Bacik trans->aborted); 1433bb9c12c9SSage Weil } 1434bb9c12c9SSage Weil 1435bb9c12c9SSage Weil /* 1436bb9c12c9SSage Weil * commit transactions asynchronously. once btrfs_commit_transaction_async 1437bb9c12c9SSage Weil * returns, any subsequent transaction will not be allowed to join. 1438bb9c12c9SSage Weil */ 1439bb9c12c9SSage Weil struct btrfs_async_commit { 1440bb9c12c9SSage Weil struct btrfs_trans_handle *newtrans; 1441bb9c12c9SSage Weil struct btrfs_root *root; 14427892b5afSMiao Xie struct work_struct work; 1443bb9c12c9SSage Weil }; 1444bb9c12c9SSage Weil 1445bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work) 1446bb9c12c9SSage Weil { 1447bb9c12c9SSage Weil struct btrfs_async_commit *ac = 14487892b5afSMiao Xie container_of(work, struct btrfs_async_commit, work); 1449bb9c12c9SSage Weil 14506fc4e354SSage Weil /* 14516fc4e354SSage Weil * We've got freeze protection passed with the transaction. 14526fc4e354SSage Weil * Tell lockdep about it. 14536fc4e354SSage Weil */ 1454ff7c1d33SMiao Xie if (ac->newtrans->type < TRANS_JOIN_NOLOCK) 14556fc4e354SSage Weil rwsem_acquire_read( 14566fc4e354SSage Weil &ac->root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1], 14576fc4e354SSage Weil 0, 1, _THIS_IP_); 14586fc4e354SSage Weil 1459e209db7aSSage Weil current->journal_info = ac->newtrans; 1460e209db7aSSage Weil 1461bb9c12c9SSage Weil btrfs_commit_transaction(ac->newtrans, ac->root); 1462bb9c12c9SSage Weil kfree(ac); 1463bb9c12c9SSage Weil } 1464bb9c12c9SSage Weil 1465bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, 1466bb9c12c9SSage Weil struct btrfs_root *root, 1467bb9c12c9SSage Weil int wait_for_unblock) 1468bb9c12c9SSage Weil { 1469bb9c12c9SSage Weil struct btrfs_async_commit *ac; 1470bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1471bb9c12c9SSage Weil 1472bb9c12c9SSage Weil ac = kmalloc(sizeof(*ac), GFP_NOFS); 1473db5b493aSTsutomu Itoh if (!ac) 1474db5b493aSTsutomu Itoh return -ENOMEM; 1475bb9c12c9SSage Weil 14767892b5afSMiao Xie INIT_WORK(&ac->work, do_async_commit); 1477bb9c12c9SSage Weil ac->root = root; 14787a7eaa40SJosef Bacik ac->newtrans = btrfs_join_transaction(root); 14793612b495STsutomu Itoh if (IS_ERR(ac->newtrans)) { 14803612b495STsutomu Itoh int err = PTR_ERR(ac->newtrans); 14813612b495STsutomu Itoh kfree(ac); 14823612b495STsutomu Itoh return err; 14833612b495STsutomu Itoh } 1484bb9c12c9SSage Weil 1485bb9c12c9SSage Weil /* take transaction reference */ 1486bb9c12c9SSage Weil cur_trans = trans->transaction; 148713c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 1488bb9c12c9SSage Weil 1489bb9c12c9SSage Weil btrfs_end_transaction(trans, root); 14906fc4e354SSage Weil 14916fc4e354SSage Weil /* 14926fc4e354SSage Weil * Tell lockdep we've released the freeze rwsem, since the 14936fc4e354SSage Weil * async commit thread will be the one to unlock it. 14946fc4e354SSage Weil */ 1495ff7c1d33SMiao Xie if (trans->type < TRANS_JOIN_NOLOCK) 1496ff7c1d33SMiao Xie rwsem_release( 1497ff7c1d33SMiao Xie &root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1], 14986fc4e354SSage Weil 1, _THIS_IP_); 14996fc4e354SSage Weil 15007892b5afSMiao Xie schedule_work(&ac->work); 1501bb9c12c9SSage Weil 1502bb9c12c9SSage Weil /* wait for transaction to start and unblock */ 1503bb9c12c9SSage Weil if (wait_for_unblock) 1504bb9c12c9SSage Weil wait_current_trans_commit_start_and_unblock(root, cur_trans); 1505bb9c12c9SSage Weil else 1506bb9c12c9SSage Weil wait_current_trans_commit_start(root, cur_trans); 1507bb9c12c9SSage Weil 150838e88054SSage Weil if (current->journal_info == trans) 150938e88054SSage Weil current->journal_info = NULL; 151038e88054SSage Weil 151138e88054SSage Weil put_transaction(cur_trans); 1512bb9c12c9SSage Weil return 0; 1513bb9c12c9SSage Weil } 1514bb9c12c9SSage Weil 151549b25e05SJeff Mahoney 151649b25e05SJeff Mahoney static void cleanup_transaction(struct btrfs_trans_handle *trans, 15177b8b92afSJosef Bacik struct btrfs_root *root, int err) 151849b25e05SJeff Mahoney { 151949b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 1520f094ac32SLiu Bo DEFINE_WAIT(wait); 152149b25e05SJeff Mahoney 152249b25e05SJeff Mahoney WARN_ON(trans->use_count > 1); 152349b25e05SJeff Mahoney 15247b8b92afSJosef Bacik btrfs_abort_transaction(trans, root, err); 15257b8b92afSJosef Bacik 152649b25e05SJeff Mahoney spin_lock(&root->fs_info->trans_lock); 152766b6135bSLiu Bo 152825d8c284SMiao Xie /* 152925d8c284SMiao Xie * If the transaction is removed from the list, it means this 153025d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 153125d8c284SMiao Xie * to call the cleanup function. 153225d8c284SMiao Xie */ 153325d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 153466b6135bSLiu Bo 153549b25e05SJeff Mahoney list_del_init(&cur_trans->list); 1536d7096fc3SJosef Bacik if (cur_trans == root->fs_info->running_transaction) { 15374a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1538f094ac32SLiu Bo spin_unlock(&root->fs_info->trans_lock); 1539f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1540f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1541f094ac32SLiu Bo 1542f094ac32SLiu Bo spin_lock(&root->fs_info->trans_lock); 1543d7096fc3SJosef Bacik } 154449b25e05SJeff Mahoney spin_unlock(&root->fs_info->trans_lock); 154549b25e05SJeff Mahoney 154649b25e05SJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, root); 154749b25e05SJeff Mahoney 15484a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 15494a9d8bdeSMiao Xie if (cur_trans == root->fs_info->running_transaction) 15504a9d8bdeSMiao Xie root->fs_info->running_transaction = NULL; 15514a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 15524a9d8bdeSMiao Xie 155349b25e05SJeff Mahoney put_transaction(cur_trans); 155449b25e05SJeff Mahoney put_transaction(cur_trans); 155549b25e05SJeff Mahoney 155649b25e05SJeff Mahoney trace_btrfs_transaction_commit(root); 155749b25e05SJeff Mahoney 155849b25e05SJeff Mahoney btrfs_scrub_continue(root); 155949b25e05SJeff Mahoney 156049b25e05SJeff Mahoney if (current->journal_info == trans) 156149b25e05SJeff Mahoney current->journal_info = NULL; 156249b25e05SJeff Mahoney 156349b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 156449b25e05SJeff Mahoney } 156549b25e05SJeff Mahoney 1566ca469637SMiao Xie static int btrfs_flush_all_pending_stuffs(struct btrfs_trans_handle *trans, 1567ca469637SMiao Xie struct btrfs_root *root) 1568ca469637SMiao Xie { 1569ca469637SMiao Xie int ret; 1570ca469637SMiao Xie 1571ca469637SMiao Xie ret = btrfs_run_delayed_items(trans, root); 1572ca469637SMiao Xie if (ret) 1573ca469637SMiao Xie return ret; 1574ca469637SMiao Xie 1575ca469637SMiao Xie /* 1576ca469637SMiao Xie * running the delayed items may have added new refs. account 1577ca469637SMiao Xie * them now so that they hinder processing of more delayed refs 1578ca469637SMiao Xie * as little as possible. 1579ca469637SMiao Xie */ 1580ca469637SMiao Xie btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info); 1581ca469637SMiao Xie 1582ca469637SMiao Xie /* 1583ca469637SMiao Xie * rename don't use btrfs_join_transaction, so, once we 1584ca469637SMiao Xie * set the transaction to blocked above, we aren't going 1585ca469637SMiao Xie * to get any new ordered operations. We can safely run 1586ca469637SMiao Xie * it here and no for sure that nothing new will be added 1587ca469637SMiao Xie * to the list 1588ca469637SMiao Xie */ 1589569e0f35SJosef Bacik ret = btrfs_run_ordered_operations(trans, root, 1); 1590ca469637SMiao Xie 1591eebc6084SMiao Xie return ret; 1592ca469637SMiao Xie } 1593ca469637SMiao Xie 159482436617SMiao Xie static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 159582436617SMiao Xie { 159682436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 159782436617SMiao Xie return btrfs_start_all_delalloc_inodes(fs_info, 1); 159882436617SMiao Xie return 0; 159982436617SMiao Xie } 160082436617SMiao Xie 160182436617SMiao Xie static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 160282436617SMiao Xie { 160382436617SMiao Xie if (btrfs_test_opt(fs_info->tree_root, FLUSHONCOMMIT)) 160482436617SMiao Xie btrfs_wait_all_ordered_extents(fs_info, 1); 160582436617SMiao Xie } 160682436617SMiao Xie 160779154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 160879154b1bSChris Mason struct btrfs_root *root) 160979154b1bSChris Mason { 161049b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 16118fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 161225287e0aSMiao Xie int ret; 161379154b1bSChris Mason 1614569e0f35SJosef Bacik ret = btrfs_run_ordered_operations(trans, root, 0); 161525287e0aSMiao Xie if (ret) { 161625287e0aSMiao Xie btrfs_abort_transaction(trans, root, ret); 1617e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1618e4a2bcacSJosef Bacik return ret; 161925287e0aSMiao Xie } 162025287e0aSMiao Xie 16218d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 16228d25a086SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 162325287e0aSMiao Xie ret = cur_trans->aborted; 1624e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1625e4a2bcacSJosef Bacik return ret; 162625287e0aSMiao Xie } 162749b25e05SJeff Mahoney 162856bec294SChris Mason /* make a pass through all the delayed refs we have so far 162956bec294SChris Mason * any runnings procs may add more while we are here 163056bec294SChris Mason */ 163156bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 1632e4a2bcacSJosef Bacik if (ret) { 1633e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1634e4a2bcacSJosef Bacik return ret; 1635e4a2bcacSJosef Bacik } 163656bec294SChris Mason 16370e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 16380e721106SJosef Bacik trans->block_rsv = NULL; 1639272d26d0SMiao Xie if (trans->qgroup_reserved) { 1640272d26d0SMiao Xie btrfs_qgroup_free(root, trans->qgroup_reserved); 1641272d26d0SMiao Xie trans->qgroup_reserved = 0; 1642272d26d0SMiao Xie } 16430e721106SJosef Bacik 1644b7ec40d7SChris Mason cur_trans = trans->transaction; 164549b25e05SJeff Mahoney 164656bec294SChris Mason /* 164756bec294SChris Mason * set the flushing flag so procs in this transaction have to 164856bec294SChris Mason * start sending their work down. 164956bec294SChris Mason */ 1650b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 16511be41b78SJosef Bacik smp_wmb(); 165256bec294SChris Mason 1653ea658badSJosef Bacik if (!list_empty(&trans->new_bgs)) 1654ea658badSJosef Bacik btrfs_create_pending_block_groups(trans, root); 1655ea658badSJosef Bacik 1656c3e69d58SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 1657e4a2bcacSJosef Bacik if (ret) { 1658e4a2bcacSJosef Bacik btrfs_end_transaction(trans, root); 1659e4a2bcacSJosef Bacik return ret; 1660e4a2bcacSJosef Bacik } 166156bec294SChris Mason 16624a9d8bdeSMiao Xie spin_lock(&root->fs_info->trans_lock); 16634a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 16644a9d8bdeSMiao Xie spin_unlock(&root->fs_info->trans_lock); 166513c5a93eSJosef Bacik atomic_inc(&cur_trans->use_count); 166649b25e05SJeff Mahoney ret = btrfs_end_transaction(trans, root); 1667ccd467d6SChris Mason 1668b9c8300cSLi Zefan wait_for_commit(root, cur_trans); 166915ee9bc7SJosef Bacik 167079154b1bSChris Mason put_transaction(cur_trans); 167115ee9bc7SJosef Bacik 167249b25e05SJeff Mahoney return ret; 167379154b1bSChris Mason } 16744313b399SChris Mason 16754a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 1676bb9c12c9SSage Weil wake_up(&root->fs_info->transaction_blocked_wait); 1677bb9c12c9SSage Weil 1678ccd467d6SChris Mason if (cur_trans->list.prev != &root->fs_info->trans_list) { 1679ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 1680ccd467d6SChris Mason struct btrfs_transaction, list); 16814a9d8bdeSMiao Xie if (prev_trans->state != TRANS_STATE_COMPLETED) { 168213c5a93eSJosef Bacik atomic_inc(&prev_trans->use_count); 1683a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1684ccd467d6SChris Mason 1685ccd467d6SChris Mason wait_for_commit(root, prev_trans); 1686ccd467d6SChris Mason 168715ee9bc7SJosef Bacik put_transaction(prev_trans); 1688a4abeea4SJosef Bacik } else { 1689a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1690ccd467d6SChris Mason } 1691a4abeea4SJosef Bacik } else { 1692a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1693ccd467d6SChris Mason } 169415ee9bc7SJosef Bacik 16950860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 16960860adfdSMiao Xie 169782436617SMiao Xie ret = btrfs_start_delalloc_flush(root->fs_info); 169882436617SMiao Xie if (ret) 169982436617SMiao Xie goto cleanup_transaction; 170082436617SMiao Xie 1701ca469637SMiao Xie ret = btrfs_flush_all_pending_stuffs(trans, root); 170249b25e05SJeff Mahoney if (ret) 170349b25e05SJeff Mahoney goto cleanup_transaction; 170416cdcec7SMiao Xie 1705581227d0SMiao Xie wait_event(cur_trans->writer_wait, 1706581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 1707ed3b3d31SChris Mason 1708581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 1709ca469637SMiao Xie ret = btrfs_flush_all_pending_stuffs(trans, root); 1710ca469637SMiao Xie if (ret) 1711ca469637SMiao Xie goto cleanup_transaction; 1712ca469637SMiao Xie 171382436617SMiao Xie btrfs_wait_delalloc_flush(root->fs_info); 1714ed0ca140SJosef Bacik /* 1715ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 1716ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 17174a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 1718ed0ca140SJosef Bacik */ 1719a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 17204a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 1721a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1722ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 1723ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 172415ee9bc7SJosef Bacik 17252cba30f1SMiao Xie /* ->aborted might be set after the previous check, so check it */ 17262cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 17272cba30f1SMiao Xie ret = cur_trans->aborted; 17282cba30f1SMiao Xie goto cleanup_transaction; 17292cba30f1SMiao Xie } 17307585717fSChris Mason /* 17317585717fSChris Mason * the reloc mutex makes sure that we stop 17327585717fSChris Mason * the balancing code from coming in and moving 17337585717fSChris Mason * extents around in the middle of the commit 17347585717fSChris Mason */ 17357585717fSChris Mason mutex_lock(&root->fs_info->reloc_mutex); 17367585717fSChris Mason 173742874b3dSMiao Xie /* 173842874b3dSMiao Xie * We needn't worry about the delayed items because we will 173942874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 174042874b3dSMiao Xie * core function of the snapshot creation. 174142874b3dSMiao Xie */ 174242874b3dSMiao Xie ret = create_pending_snapshots(trans, root->fs_info); 174349b25e05SJeff Mahoney if (ret) { 174449b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 174549b25e05SJeff Mahoney goto cleanup_transaction; 174649b25e05SJeff Mahoney } 17473063d29fSChris Mason 174842874b3dSMiao Xie /* 174942874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 175042874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 175142874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 175242874b3dSMiao Xie * them. 175342874b3dSMiao Xie * 175442874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 175542874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 175642874b3dSMiao Xie * the nodes and leaves. 175742874b3dSMiao Xie */ 175842874b3dSMiao Xie ret = btrfs_run_delayed_items(trans, root); 175949b25e05SJeff Mahoney if (ret) { 176049b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 176149b25e05SJeff Mahoney goto cleanup_transaction; 176249b25e05SJeff Mahoney } 176316cdcec7SMiao Xie 176456bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 176549b25e05SJeff Mahoney if (ret) { 176649b25e05SJeff Mahoney mutex_unlock(&root->fs_info->reloc_mutex); 176749b25e05SJeff Mahoney goto cleanup_transaction; 176849b25e05SJeff Mahoney } 176956bec294SChris Mason 1770e999376fSChris Mason /* 1771e999376fSChris Mason * make sure none of the code above managed to slip in a 1772e999376fSChris Mason * delayed item 1773e999376fSChris Mason */ 1774e999376fSChris Mason btrfs_assert_delayed_root_empty(root); 1775e999376fSChris Mason 17762c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 1777dc17ff8fSChris Mason 1778a2de733cSArne Jansen btrfs_scrub_pause(root); 1779e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 1780e02119d5SChris Mason * various roots consistent with each other. Every pointer 1781e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 1782e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 1783e02119d5SChris Mason * the tree logging code from jumping in and changing any 1784e02119d5SChris Mason * of the trees. 1785e02119d5SChris Mason * 1786e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 1787e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 1788e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 1789e02119d5SChris Mason * from now until after the super is written, we avoid races 1790e02119d5SChris Mason * with the tree-log code. 1791e02119d5SChris Mason */ 1792e02119d5SChris Mason mutex_lock(&root->fs_info->tree_log_mutex); 17931a40e23bSZheng Yan 17945d4f98a2SYan Zheng ret = commit_fs_roots(trans, root); 179549b25e05SJeff Mahoney if (ret) { 179649b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 1797871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 179849b25e05SJeff Mahoney goto cleanup_transaction; 179949b25e05SJeff Mahoney } 180054aa1f4dSChris Mason 18015d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 1802e02119d5SChris Mason * safe to free the root of tree log roots 1803e02119d5SChris Mason */ 1804e02119d5SChris Mason btrfs_free_log_root_tree(trans, root->fs_info); 1805e02119d5SChris Mason 18065d4f98a2SYan Zheng ret = commit_cowonly_roots(trans, root); 180749b25e05SJeff Mahoney if (ret) { 180849b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 1809871383beSDavid Sterba mutex_unlock(&root->fs_info->reloc_mutex); 181049b25e05SJeff Mahoney goto cleanup_transaction; 181149b25e05SJeff Mahoney } 181254aa1f4dSChris Mason 18132cba30f1SMiao Xie /* 18142cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 18152cba30f1SMiao Xie * update ->aborted, check it. 18162cba30f1SMiao Xie */ 18172cba30f1SMiao Xie if (unlikely(ACCESS_ONCE(cur_trans->aborted))) { 18182cba30f1SMiao Xie ret = cur_trans->aborted; 18192cba30f1SMiao Xie mutex_unlock(&root->fs_info->tree_log_mutex); 18202cba30f1SMiao Xie mutex_unlock(&root->fs_info->reloc_mutex); 18212cba30f1SMiao Xie goto cleanup_transaction; 18222cba30f1SMiao Xie } 18232cba30f1SMiao Xie 182411833d66SYan Zheng btrfs_prepare_extent_commit(trans, root); 182511833d66SYan Zheng 182678fae27eSChris Mason cur_trans = root->fs_info->running_transaction; 18275f39d397SChris Mason 18285d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->tree_root->root_item, 18295d4f98a2SYan Zheng root->fs_info->tree_root->node); 1830817d52f8SJosef Bacik switch_commit_root(root->fs_info->tree_root); 18315d4f98a2SYan Zheng 18325d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->chunk_root->root_item, 18335d4f98a2SYan Zheng root->fs_info->chunk_root->node); 1834817d52f8SJosef Bacik switch_commit_root(root->fs_info->chunk_root); 18355d4f98a2SYan Zheng 1836edf39272SJan Schmidt assert_qgroups_uptodate(trans); 18375d4f98a2SYan Zheng update_super_roots(root); 1838e02119d5SChris Mason 1839e02119d5SChris Mason if (!root->fs_info->log_root_recovering) { 18406c41761fSDavid Sterba btrfs_set_super_log_root(root->fs_info->super_copy, 0); 18416c41761fSDavid Sterba btrfs_set_super_log_root_level(root->fs_info->super_copy, 0); 1842e02119d5SChris Mason } 1843e02119d5SChris Mason 18446c41761fSDavid Sterba memcpy(root->fs_info->super_for_commit, root->fs_info->super_copy, 18456c41761fSDavid Sterba sizeof(*root->fs_info->super_copy)); 1846ccd467d6SChris Mason 1847a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 18484a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 1849a4abeea4SJosef Bacik root->fs_info->running_transaction = NULL; 1850a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 18517585717fSChris Mason mutex_unlock(&root->fs_info->reloc_mutex); 1852b7ec40d7SChris Mason 1853f9295749SChris Mason wake_up(&root->fs_info->transaction_wait); 1854e6dcd2dcSChris Mason 185579154b1bSChris Mason ret = btrfs_write_and_wait_transaction(trans, root); 185649b25e05SJeff Mahoney if (ret) { 185749b25e05SJeff Mahoney btrfs_error(root->fs_info, ret, 185808748810SDavid Sterba "Error while writing out transaction"); 185949b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 186049b25e05SJeff Mahoney goto cleanup_transaction; 186149b25e05SJeff Mahoney } 186249b25e05SJeff Mahoney 186349b25e05SJeff Mahoney ret = write_ctree_super(trans, root, 0); 186449b25e05SJeff Mahoney if (ret) { 186549b25e05SJeff Mahoney mutex_unlock(&root->fs_info->tree_log_mutex); 186649b25e05SJeff Mahoney goto cleanup_transaction; 186749b25e05SJeff Mahoney } 18684313b399SChris Mason 1869e02119d5SChris Mason /* 1870e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 1871e02119d5SChris Mason * to go about their business 1872e02119d5SChris Mason */ 1873e02119d5SChris Mason mutex_unlock(&root->fs_info->tree_log_mutex); 1874e02119d5SChris Mason 187511833d66SYan Zheng btrfs_finish_extent_commit(trans, root); 18764313b399SChris Mason 187715ee9bc7SJosef Bacik root->fs_info->last_trans_committed = cur_trans->transid; 18784a9d8bdeSMiao Xie /* 18794a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 18804a9d8bdeSMiao Xie * which can change it. 18814a9d8bdeSMiao Xie */ 18824a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 18832c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 18843de4586cSChris Mason 1885a4abeea4SJosef Bacik spin_lock(&root->fs_info->trans_lock); 188613c5a93eSJosef Bacik list_del_init(&cur_trans->list); 1887a4abeea4SJosef Bacik spin_unlock(&root->fs_info->trans_lock); 1888a4abeea4SJosef Bacik 188979154b1bSChris Mason put_transaction(cur_trans); 189078fae27eSChris Mason put_transaction(cur_trans); 189158176a96SJosef Bacik 18920860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 1893b2b5ef5cSJan Kara sb_end_intwrite(root->fs_info->sb); 1894b2b5ef5cSJan Kara 18951abe9b8aSliubo trace_btrfs_transaction_commit(root); 18961abe9b8aSliubo 1897a2de733cSArne Jansen btrfs_scrub_continue(root); 1898a2de733cSArne Jansen 18999ed74f2dSJosef Bacik if (current->journal_info == trans) 19009ed74f2dSJosef Bacik current->journal_info = NULL; 19019ed74f2dSJosef Bacik 19022c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 190324bbcf04SYan, Zheng 190424bbcf04SYan, Zheng if (current != root->fs_info->transaction_kthread) 190524bbcf04SYan, Zheng btrfs_run_delayed_iputs(root); 190624bbcf04SYan, Zheng 190779154b1bSChris Mason return ret; 190849b25e05SJeff Mahoney 190949b25e05SJeff Mahoney cleanup_transaction: 19100e721106SJosef Bacik btrfs_trans_release_metadata(trans, root); 19110e721106SJosef Bacik trans->block_rsv = NULL; 1912272d26d0SMiao Xie if (trans->qgroup_reserved) { 1913272d26d0SMiao Xie btrfs_qgroup_free(root, trans->qgroup_reserved); 1914272d26d0SMiao Xie trans->qgroup_reserved = 0; 1915272d26d0SMiao Xie } 1916c2cf52ebSSimon Kirby btrfs_warn(root->fs_info, "Skipping commit of aborted transaction."); 191749b25e05SJeff Mahoney if (current->journal_info == trans) 191849b25e05SJeff Mahoney current->journal_info = NULL; 19197b8b92afSJosef Bacik cleanup_transaction(trans, root, ret); 192049b25e05SJeff Mahoney 192149b25e05SJeff Mahoney return ret; 192279154b1bSChris Mason } 192379154b1bSChris Mason 1924d352ac68SChris Mason /* 19259d1a2a3aSDavid Sterba * return < 0 if error 19269d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 19279d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 19289d1a2a3aSDavid Sterba * 19299d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 19309d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 19319d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 19329d1a2a3aSDavid Sterba * few seconds later. 1933d352ac68SChris Mason */ 19349d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) 1935e9d0b13bSChris Mason { 19369d1a2a3aSDavid Sterba int ret; 19375d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 1938e9d0b13bSChris Mason 1939a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 19409d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 19419d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 19429d1a2a3aSDavid Sterba return 0; 19439d1a2a3aSDavid Sterba } 19449d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 19459d1a2a3aSDavid Sterba struct btrfs_root, root_list); 1946cfad392bSJosef Bacik list_del_init(&root->root_list); 1947a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 19485d4f98a2SYan Zheng 19499d1a2a3aSDavid Sterba pr_debug("btrfs: cleaner removing %llu\n", 19509d1a2a3aSDavid Sterba (unsigned long long)root->objectid); 195176dda93cSYan, Zheng 195216cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 195316cdcec7SMiao Xie 195476dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 195576dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 19562c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 0, 0); 195776dda93cSYan, Zheng else 19582c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 1, 0); 19599d1a2a3aSDavid Sterba /* 19609d1a2a3aSDavid Sterba * If we encounter a transaction abort during snapshot cleaning, we 19619d1a2a3aSDavid Sterba * don't want to crash here 19629d1a2a3aSDavid Sterba */ 19636596a928SJosef Bacik return (ret < 0) ? 0 : 1; 1964e9d0b13bSChris Mason } 1965