1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0 26cbd5570SChris Mason /* 36cbd5570SChris Mason * Copyright (C) 2007 Oracle. All rights reserved. 46cbd5570SChris Mason */ 56cbd5570SChris Mason 679154b1bSChris Mason #include <linux/fs.h> 75a0e3ad6STejun Heo #include <linux/slab.h> 834088780SChris Mason #include <linux/sched.h> 9d3c2fdcfSChris Mason #include <linux/writeback.h> 105f39d397SChris Mason #include <linux/pagemap.h> 115f2cc086SChris Mason #include <linux/blkdev.h> 128ea05e3aSAlexander Block #include <linux/uuid.h> 13602cbe91SDavid Sterba #include "misc.h" 1479154b1bSChris Mason #include "ctree.h" 1579154b1bSChris Mason #include "disk-io.h" 1679154b1bSChris Mason #include "transaction.h" 17925baeddSChris Mason #include "locking.h" 18e02119d5SChris Mason #include "tree-log.h" 19581bb050SLi Zefan #include "inode-map.h" 20733f4fbbSStefan Behrens #include "volumes.h" 218dabb742SStefan Behrens #include "dev-replace.h" 22fcebe456SJosef Bacik #include "qgroup.h" 23aac0023cSJosef Bacik #include "block-group.h" 2479154b1bSChris Mason 250f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0 260f7d52f4SChris Mason 2761c047b5SQu Wenruo /* 2861c047b5SQu Wenruo * Transaction states and transitions 2961c047b5SQu Wenruo * 3061c047b5SQu Wenruo * No running transaction (fs tree blocks are not modified) 3161c047b5SQu Wenruo * | 3261c047b5SQu Wenruo * | To next stage: 3361c047b5SQu Wenruo * | Call start_transaction() variants. Except btrfs_join_transaction_nostart(). 3461c047b5SQu Wenruo * V 3561c047b5SQu Wenruo * Transaction N [[TRANS_STATE_RUNNING]] 3661c047b5SQu Wenruo * | 3761c047b5SQu Wenruo * | New trans handles can be attached to transaction N by calling all 3861c047b5SQu Wenruo * | start_transaction() variants. 3961c047b5SQu Wenruo * | 4061c047b5SQu Wenruo * | To next stage: 4161c047b5SQu Wenruo * | Call btrfs_commit_transaction() on any trans handle attached to 4261c047b5SQu Wenruo * | transaction N 4361c047b5SQu Wenruo * V 4461c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_START]] 4561c047b5SQu Wenruo * | 4661c047b5SQu Wenruo * | Will wait for previous running transaction to completely finish if there 4761c047b5SQu Wenruo * | is one 4861c047b5SQu Wenruo * | 4961c047b5SQu Wenruo * | Then one of the following happes: 5061c047b5SQu Wenruo * | - Wait for all other trans handle holders to release. 5161c047b5SQu Wenruo * | The btrfs_commit_transaction() caller will do the commit work. 5261c047b5SQu Wenruo * | - Wait for current transaction to be committed by others. 5361c047b5SQu Wenruo * | Other btrfs_commit_transaction() caller will do the commit work. 5461c047b5SQu Wenruo * | 5561c047b5SQu Wenruo * | At this stage, only btrfs_join_transaction*() variants can attach 5661c047b5SQu Wenruo * | to this running transaction. 5761c047b5SQu Wenruo * | All other variants will wait for current one to finish and attach to 5861c047b5SQu Wenruo * | transaction N+1. 5961c047b5SQu Wenruo * | 6061c047b5SQu Wenruo * | To next stage: 6161c047b5SQu Wenruo * | Caller is chosen to commit transaction N, and all other trans handle 6261c047b5SQu Wenruo * | haven been released. 6361c047b5SQu Wenruo * V 6461c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_DOING]] 6561c047b5SQu Wenruo * | 6661c047b5SQu Wenruo * | The heavy lifting transaction work is started. 6761c047b5SQu Wenruo * | From running delayed refs (modifying extent tree) to creating pending 6861c047b5SQu Wenruo * | snapshots, running qgroups. 6961c047b5SQu Wenruo * | In short, modify supporting trees to reflect modifications of subvolume 7061c047b5SQu Wenruo * | trees. 7161c047b5SQu Wenruo * | 7261c047b5SQu Wenruo * | At this stage, all start_transaction() calls will wait for this 7361c047b5SQu Wenruo * | transaction to finish and attach to transaction N+1. 7461c047b5SQu Wenruo * | 7561c047b5SQu Wenruo * | To next stage: 7661c047b5SQu Wenruo * | Until all supporting trees are updated. 7761c047b5SQu Wenruo * V 7861c047b5SQu Wenruo * Transaction N [[TRANS_STATE_UNBLOCKED]] 7961c047b5SQu Wenruo * | Transaction N+1 8061c047b5SQu Wenruo * | All needed trees are modified, thus we only [[TRANS_STATE_RUNNING]] 8161c047b5SQu Wenruo * | need to write them back to disk and update | 8261c047b5SQu Wenruo * | super blocks. | 8361c047b5SQu Wenruo * | | 8461c047b5SQu Wenruo * | At this stage, new transaction is allowed to | 8561c047b5SQu Wenruo * | start. | 8661c047b5SQu Wenruo * | All new start_transaction() calls will be | 8761c047b5SQu Wenruo * | attached to transid N+1. | 8861c047b5SQu Wenruo * | | 8961c047b5SQu Wenruo * | To next stage: | 9061c047b5SQu Wenruo * | Until all tree blocks are super blocks are | 9161c047b5SQu Wenruo * | written to block devices | 9261c047b5SQu Wenruo * V | 9361c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMPLETED]] V 9461c047b5SQu Wenruo * All tree blocks and super blocks are written. Transaction N+1 9561c047b5SQu Wenruo * This transaction is finished and all its [[TRANS_STATE_COMMIT_START]] 9661c047b5SQu Wenruo * data structures will be cleaned up. | Life goes on 9761c047b5SQu Wenruo */ 98e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 994a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 100bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH), 101bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_DOING] = (__TRANS_START | 1024a9d8bdeSMiao Xie __TRANS_ATTACH | 103a6d155d2SFilipe Manana __TRANS_JOIN | 104a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 105bcf3a3e7SNikolay Borisov [TRANS_STATE_UNBLOCKED] = (__TRANS_START | 1064a9d8bdeSMiao Xie __TRANS_ATTACH | 1074a9d8bdeSMiao Xie __TRANS_JOIN | 108a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 109a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 110bcf3a3e7SNikolay Borisov [TRANS_STATE_COMPLETED] = (__TRANS_START | 1114a9d8bdeSMiao Xie __TRANS_ATTACH | 1124a9d8bdeSMiao Xie __TRANS_JOIN | 113a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 114a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 1154a9d8bdeSMiao Xie }; 1164a9d8bdeSMiao Xie 117724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction) 11879154b1bSChris Mason { 1199b64f57dSElena Reshetova WARN_ON(refcount_read(&transaction->use_count) == 0); 1209b64f57dSElena Reshetova if (refcount_dec_and_test(&transaction->use_count)) { 121a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 1225c9d028bSLiu Bo WARN_ON(!RB_EMPTY_ROOT( 1235c9d028bSLiu Bo &transaction->delayed_refs.href_root.rb_root)); 12481f7eb00SJeff Mahoney WARN_ON(!RB_EMPTY_ROOT( 12581f7eb00SJeff Mahoney &transaction->delayed_refs.dirty_extent_root)); 1261262133bSJosef Bacik if (transaction->delayed_refs.pending_csums) 127ab8d0fc4SJeff Mahoney btrfs_err(transaction->fs_info, 128ab8d0fc4SJeff Mahoney "pending csums is %llu", 1291262133bSJosef Bacik transaction->delayed_refs.pending_csums); 1307785a663SFilipe Manana /* 1317785a663SFilipe Manana * If any block groups are found in ->deleted_bgs then it's 1327785a663SFilipe Manana * because the transaction was aborted and a commit did not 1337785a663SFilipe Manana * happen (things failed before writing the new superblock 1347785a663SFilipe Manana * and calling btrfs_finish_extent_commit()), so we can not 1357785a663SFilipe Manana * discard the physical locations of the block groups. 1367785a663SFilipe Manana */ 1377785a663SFilipe Manana while (!list_empty(&transaction->deleted_bgs)) { 13832da5386SDavid Sterba struct btrfs_block_group *cache; 1397785a663SFilipe Manana 1407785a663SFilipe Manana cache = list_first_entry(&transaction->deleted_bgs, 14132da5386SDavid Sterba struct btrfs_block_group, 1427785a663SFilipe Manana bg_list); 1437785a663SFilipe Manana list_del_init(&cache->bg_list); 1447785a663SFilipe Manana btrfs_put_block_group_trimming(cache); 1457785a663SFilipe Manana btrfs_put_block_group(cache); 1467785a663SFilipe Manana } 147bbbf7243SNikolay Borisov WARN_ON(!list_empty(&transaction->dev_update_list)); 1484b5faeacSDavid Sterba kfree(transaction); 14979154b1bSChris Mason } 15078fae27eSChris Mason } 15179154b1bSChris Mason 152889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans) 153817d52f8SJosef Bacik { 154889bfa39SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 15516916a88SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1569e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 1579e351cc8SJosef Bacik 1589e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 159889bfa39SJosef Bacik list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits, 1609e351cc8SJosef Bacik dirty_list) { 1619e351cc8SJosef Bacik list_del_init(&root->dirty_list); 162817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 163817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 1644fd786e6SMisono Tomohiro if (is_fstree(root->root_key.objectid)) 1659e351cc8SJosef Bacik btrfs_unpin_free_ino(root); 16641e7acd3SNikolay Borisov extent_io_tree_release(&root->dirty_log_pages); 167370a11b8SQu Wenruo btrfs_qgroup_clean_swapped_blocks(root); 1689e351cc8SJosef Bacik } 1692b9dbef2SJosef Bacik 1702b9dbef2SJosef Bacik /* We can free old roots now. */ 171889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 172889bfa39SJosef Bacik while (!list_empty(&cur_trans->dropped_roots)) { 173889bfa39SJosef Bacik root = list_first_entry(&cur_trans->dropped_roots, 1742b9dbef2SJosef Bacik struct btrfs_root, root_list); 1752b9dbef2SJosef Bacik list_del_init(&root->root_list); 176889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 177889bfa39SJosef Bacik btrfs_free_log(trans, root); 1782b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 179889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 1802b9dbef2SJosef Bacik } 181889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 1829e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 183817d52f8SJosef Bacik } 184817d52f8SJosef Bacik 1850860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 1860860adfdSMiao Xie unsigned int type) 1870860adfdSMiao Xie { 1880860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1890860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 1900860adfdSMiao Xie } 1910860adfdSMiao Xie 1920860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 1930860adfdSMiao Xie unsigned int type) 1940860adfdSMiao Xie { 1950860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 1960860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 1970860adfdSMiao Xie } 1980860adfdSMiao Xie 1990860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 2000860adfdSMiao Xie unsigned int type) 2010860adfdSMiao Xie { 2020860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 2030860adfdSMiao Xie } 2040860adfdSMiao Xie 2050860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 2060860adfdSMiao Xie { 2070860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 208178260b2SMiao Xie } 209178260b2SMiao Xie 210d352ac68SChris Mason /* 211fb6dea26SJosef Bacik * To be called after all the new block groups attached to the transaction 212fb6dea26SJosef Bacik * handle have been created (btrfs_create_pending_block_groups()). 213fb6dea26SJosef Bacik */ 214fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) 215fb6dea26SJosef Bacik { 216fb6dea26SJosef Bacik struct btrfs_fs_info *fs_info = trans->fs_info; 217fb6dea26SJosef Bacik 218fb6dea26SJosef Bacik if (!trans->chunk_bytes_reserved) 219fb6dea26SJosef Bacik return; 220fb6dea26SJosef Bacik 221fb6dea26SJosef Bacik WARN_ON_ONCE(!list_empty(&trans->new_bgs)); 222fb6dea26SJosef Bacik 223fb6dea26SJosef Bacik btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv, 224fb6dea26SJosef Bacik trans->chunk_bytes_reserved); 225fb6dea26SJosef Bacik trans->chunk_bytes_reserved = 0; 226fb6dea26SJosef Bacik } 227fb6dea26SJosef Bacik 228fb6dea26SJosef Bacik /* 229d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 230d352ac68SChris Mason */ 2312ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info, 2322ff7e61eSJeff Mahoney unsigned int type) 23379154b1bSChris Mason { 23479154b1bSChris Mason struct btrfs_transaction *cur_trans; 235a4abeea4SJosef Bacik 23619ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 237d43317dcSChris Mason loop: 23849b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 23987533c47SMiao Xie if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 24019ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 24149b25e05SJeff Mahoney return -EROFS; 24249b25e05SJeff Mahoney } 24349b25e05SJeff Mahoney 24419ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 245a4abeea4SJosef Bacik if (cur_trans) { 246bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 24719ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 24849b25e05SJeff Mahoney return cur_trans->aborted; 249871383beSDavid Sterba } 2504a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 251178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 252178260b2SMiao Xie return -EBUSY; 253178260b2SMiao Xie } 2549b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 255a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 2560860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 25719ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 258a4abeea4SJosef Bacik return 0; 259a4abeea4SJosef Bacik } 26019ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 261a4abeea4SJosef Bacik 262354aa0fbSMiao Xie /* 263354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 264354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 265354aa0fbSMiao Xie */ 266354aa0fbSMiao Xie if (type == TRANS_ATTACH) 267354aa0fbSMiao Xie return -ENOENT; 268354aa0fbSMiao Xie 2694a9d8bdeSMiao Xie /* 2704a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 2714a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 2724a9d8bdeSMiao Xie */ 2734a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 2744a9d8bdeSMiao Xie 2754b5faeacSDavid Sterba cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS); 276db5b493aSTsutomu Itoh if (!cur_trans) 277db5b493aSTsutomu Itoh return -ENOMEM; 278d43317dcSChris Mason 27919ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 28019ae4e81SJan Schmidt if (fs_info->running_transaction) { 281d43317dcSChris Mason /* 282d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 2834a9d8bdeSMiao Xie * to redo the checks above 284d43317dcSChris Mason */ 2854b5faeacSDavid Sterba kfree(cur_trans); 286d43317dcSChris Mason goto loop; 28787533c47SMiao Xie } else if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { 288e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 2894b5faeacSDavid Sterba kfree(cur_trans); 2907b8b92afSJosef Bacik return -EROFS; 291a4abeea4SJosef Bacik } 292d43317dcSChris Mason 293ab8d0fc4SJeff Mahoney cur_trans->fs_info = fs_info; 29413c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 2950860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 29679154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 29779154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 2984a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 299a4abeea4SJosef Bacik /* 300a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 301a4abeea4SJosef Bacik * commit the transaction. 302a4abeea4SJosef Bacik */ 3039b64f57dSElena Reshetova refcount_set(&cur_trans->use_count, 2); 3043204d33cSJosef Bacik cur_trans->flags = 0; 305afd48513SArnd Bergmann cur_trans->start_time = ktime_get_seconds(); 30656bec294SChris Mason 307a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 308a099d0fdSAlexandru Moise 3095c9d028bSLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT_CACHED; 3103368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 311d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 31220b297d6SJan Schmidt 31320b297d6SJan Schmidt /* 31420b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 31520b297d6SJan Schmidt * the log must never go across transaction boundaries. 31620b297d6SJan Schmidt */ 31720b297d6SJan Schmidt smp_mb(); 31831b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 3195d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n"); 32031b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 3215d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n"); 322fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 32320b297d6SJan Schmidt 32456bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 32556bec294SChris Mason 3263063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 327bbbf7243SNikolay Borisov INIT_LIST_HEAD(&cur_trans->dev_update_list); 3289e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 329ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 3301bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 3312b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 3321bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 333ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 334e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 3352b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 33619ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 337c258d6e3SQu Wenruo extent_io_tree_init(fs_info, &cur_trans->dirty_pages, 33843eb5f29SQu Wenruo IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode); 339fe119a6eSNikolay Borisov extent_io_tree_init(fs_info, &cur_trans->pinned_extents, 340fe119a6eSNikolay Borisov IO_TREE_FS_PINNED_EXTENTS, NULL); 34119ae4e81SJan Schmidt fs_info->generation++; 34219ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 34319ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 34449b25e05SJeff Mahoney cur_trans->aborted = 0; 34519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 34615ee9bc7SJosef Bacik 34779154b1bSChris Mason return 0; 34879154b1bSChris Mason } 34979154b1bSChris Mason 350d352ac68SChris Mason /* 351d397712bSChris Mason * this does all the record keeping required to make sure that a reference 352d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 353d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 354d397712bSChris Mason * when the transaction commits 355d352ac68SChris Mason */ 3567585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 3576426c7adSQu Wenruo struct btrfs_root *root, 3586426c7adSQu Wenruo int force) 3596702ed49SChris Mason { 3600b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 3610b246afaSJeff Mahoney 3626426c7adSQu Wenruo if ((test_bit(BTRFS_ROOT_REF_COWS, &root->state) && 3636426c7adSQu Wenruo root->last_trans < trans->transid) || force) { 3640b246afaSJeff Mahoney WARN_ON(root == fs_info->extent_root); 3654d31778aSQu Wenruo WARN_ON(!force && root->commit_root != root->node); 3665d4f98a2SYan Zheng 3677585717fSChris Mason /* 36827cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 3697585717fSChris Mason * we have the reloc mutex held now, so there 3707585717fSChris Mason * is only one writer in this function 3717585717fSChris Mason */ 37227cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 3737585717fSChris Mason 37427cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 3757585717fSChris Mason * they find our root->last_trans update 3767585717fSChris Mason */ 3777585717fSChris Mason smp_wmb(); 3787585717fSChris Mason 3790b246afaSJeff Mahoney spin_lock(&fs_info->fs_roots_radix_lock); 3806426c7adSQu Wenruo if (root->last_trans == trans->transid && !force) { 3810b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 382a4abeea4SJosef Bacik return 0; 383a4abeea4SJosef Bacik } 3840b246afaSJeff Mahoney radix_tree_tag_set(&fs_info->fs_roots_radix, 3856702ed49SChris Mason (unsigned long)root->root_key.objectid, 3866702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 3870b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 3887585717fSChris Mason root->last_trans = trans->transid; 3897585717fSChris Mason 3907585717fSChris Mason /* this is pretty tricky. We don't want to 3917585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 3927585717fSChris Mason * unless we're really doing the first setup for this root in 3937585717fSChris Mason * this transaction. 3947585717fSChris Mason * 3957585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 3967585717fSChris Mason * if we want to take the expensive mutex. 3977585717fSChris Mason * 3987585717fSChris Mason * But, we have to set root->last_trans before we 3997585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 4007585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 40127cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 4027585717fSChris Mason * fixing up the reloc trees and everyone must wait. 4037585717fSChris Mason * 4047585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 4057585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 4067585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 4077585717fSChris Mason * done before we pop in the zero below 4087585717fSChris Mason */ 4095d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 410c7548af6SChris Mason smp_mb__before_atomic(); 41127cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4126702ed49SChris Mason } 4135d4f98a2SYan Zheng return 0; 4146702ed49SChris Mason } 4155d4f98a2SYan Zheng 4167585717fSChris Mason 4172b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 4182b9dbef2SJosef Bacik struct btrfs_root *root) 4192b9dbef2SJosef Bacik { 4200b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4212b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 4222b9dbef2SJosef Bacik 4232b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 4242b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 4252b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 4262b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 4272b9dbef2SJosef Bacik 4282b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 4290b246afaSJeff Mahoney spin_lock(&fs_info->fs_roots_radix_lock); 4300b246afaSJeff Mahoney radix_tree_tag_clear(&fs_info->fs_roots_radix, 4312b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 4322b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 4330b246afaSJeff Mahoney spin_unlock(&fs_info->fs_roots_radix_lock); 4342b9dbef2SJosef Bacik } 4352b9dbef2SJosef Bacik 4367585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 4377585717fSChris Mason struct btrfs_root *root) 4387585717fSChris Mason { 4390b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4400b246afaSJeff Mahoney 44127cdeb70SMiao Xie if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state)) 4427585717fSChris Mason return 0; 4437585717fSChris Mason 4447585717fSChris Mason /* 44527cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 4467585717fSChris Mason * and barriers 4477585717fSChris Mason */ 4487585717fSChris Mason smp_rmb(); 4497585717fSChris Mason if (root->last_trans == trans->transid && 45027cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 4517585717fSChris Mason return 0; 4527585717fSChris Mason 4530b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 4546426c7adSQu Wenruo record_root_in_trans(trans, root, 0); 4550b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 4567585717fSChris Mason 4577585717fSChris Mason return 0; 4587585717fSChris Mason } 4597585717fSChris Mason 4604a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 4614a9d8bdeSMiao Xie { 4623296bf56SQu Wenruo return (trans->state >= TRANS_STATE_COMMIT_START && 463501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 464bf31f87fSDavid Sterba !TRANS_ABORTED(trans)); 4654a9d8bdeSMiao Xie } 4664a9d8bdeSMiao Xie 467d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 468d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 469d352ac68SChris Mason * transaction might not be fully on disk. 470d352ac68SChris Mason */ 4712ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info) 47279154b1bSChris Mason { 473f9295749SChris Mason struct btrfs_transaction *cur_trans; 47479154b1bSChris Mason 4750b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 4760b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 4774a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 4789b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 4790b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 48072d63ed6SLi Zefan 4810b246afaSJeff Mahoney wait_event(fs_info->transaction_wait, 482501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 483bf31f87fSDavid Sterba TRANS_ABORTED(cur_trans)); 484724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 485a4abeea4SJosef Bacik } else { 4860b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 487f9295749SChris Mason } 48837d1aeeeSChris Mason } 48937d1aeeeSChris Mason 4902ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type) 49137d1aeeeSChris Mason { 4920b246afaSJeff Mahoney if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) 493a4abeea4SJosef Bacik return 0; 494a4abeea4SJosef Bacik 49592e2f7e3SNikolay Borisov if (type == TRANS_START) 496a4abeea4SJosef Bacik return 1; 497a4abeea4SJosef Bacik 498a22285a6SYan, Zheng return 0; 499a22285a6SYan, Zheng } 500a22285a6SYan, Zheng 50120dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 50220dd2cbfSMiao Xie { 5030b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5040b246afaSJeff Mahoney 5050b246afaSJeff Mahoney if (!fs_info->reloc_ctl || 50627cdeb70SMiao Xie !test_bit(BTRFS_ROOT_REF_COWS, &root->state) || 50720dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 50820dd2cbfSMiao Xie root->reloc_root) 50920dd2cbfSMiao Xie return false; 51020dd2cbfSMiao Xie 51120dd2cbfSMiao Xie return true; 51220dd2cbfSMiao Xie } 51320dd2cbfSMiao Xie 51408e007d2SMiao Xie static struct btrfs_trans_handle * 5155aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 516003d7c59SJeff Mahoney unsigned int type, enum btrfs_reserve_flush_enum flush, 517003d7c59SJeff Mahoney bool enforce_qgroups) 518a22285a6SYan, Zheng { 5190b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 520ba2c4d4eSJosef Bacik struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; 521a22285a6SYan, Zheng struct btrfs_trans_handle *h; 522a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 523b5009945SJosef Bacik u64 num_bytes = 0; 524c5567237SArne Jansen u64 qgroup_reserved = 0; 52520dd2cbfSMiao Xie bool reloc_reserved = false; 52620dd2cbfSMiao Xie int ret; 527acce952bSliubo 52846c4e71eSFilipe Manana /* Send isn't supposed to start transactions. */ 5292755a0deSDavid Sterba ASSERT(current->journal_info != BTRFS_SEND_TRANS_STUB); 53046c4e71eSFilipe Manana 5310b246afaSJeff Mahoney if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) 532acce952bSliubo return ERR_PTR(-EROFS); 5332a1eb461SJosef Bacik 53446c4e71eSFilipe Manana if (current->journal_info) { 5350860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 5362a1eb461SJosef Bacik h = current->journal_info; 537b50fff81SDavid Sterba refcount_inc(&h->use_count); 538b50fff81SDavid Sterba WARN_ON(refcount_read(&h->use_count) > 2); 5392a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 5402a1eb461SJosef Bacik h->block_rsv = NULL; 5412a1eb461SJosef Bacik goto got_it; 5422a1eb461SJosef Bacik } 543b5009945SJosef Bacik 544b5009945SJosef Bacik /* 545b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 546b5009945SJosef Bacik * the appropriate flushing if need be. 547b5009945SJosef Bacik */ 548003d7c59SJeff Mahoney if (num_items && root != fs_info->chunk_root) { 549ba2c4d4eSJosef Bacik struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv; 550ba2c4d4eSJosef Bacik u64 delayed_refs_bytes = 0; 551ba2c4d4eSJosef Bacik 5520b246afaSJeff Mahoney qgroup_reserved = num_items * fs_info->nodesize; 553733e03a0SQu Wenruo ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, 554003d7c59SJeff Mahoney enforce_qgroups); 555c5567237SArne Jansen if (ret) 556c5567237SArne Jansen return ERR_PTR(ret); 557c5567237SArne Jansen 558ba2c4d4eSJosef Bacik /* 559ba2c4d4eSJosef Bacik * We want to reserve all the bytes we may need all at once, so 560ba2c4d4eSJosef Bacik * we only do 1 enospc flushing cycle per transaction start. We 561ba2c4d4eSJosef Bacik * accomplish this by simply assuming we'll do 2 x num_items 562ba2c4d4eSJosef Bacik * worth of delayed refs updates in this trans handle, and 563ba2c4d4eSJosef Bacik * refill that amount for whatever is missing in the reserve. 564ba2c4d4eSJosef Bacik */ 5652bd36e7bSJosef Bacik num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items); 566ba2c4d4eSJosef Bacik if (delayed_refs_rsv->full == 0) { 567ba2c4d4eSJosef Bacik delayed_refs_bytes = num_bytes; 568ba2c4d4eSJosef Bacik num_bytes <<= 1; 569ba2c4d4eSJosef Bacik } 570ba2c4d4eSJosef Bacik 57120dd2cbfSMiao Xie /* 57220dd2cbfSMiao Xie * Do the reservation for the relocation root creation 57320dd2cbfSMiao Xie */ 574ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 5750b246afaSJeff Mahoney num_bytes += fs_info->nodesize; 57620dd2cbfSMiao Xie reloc_reserved = true; 57720dd2cbfSMiao Xie } 57820dd2cbfSMiao Xie 579ba2c4d4eSJosef Bacik ret = btrfs_block_rsv_add(root, rsv, num_bytes, flush); 580ba2c4d4eSJosef Bacik if (ret) 581ba2c4d4eSJosef Bacik goto reserve_fail; 582ba2c4d4eSJosef Bacik if (delayed_refs_bytes) { 583ba2c4d4eSJosef Bacik btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv, 584ba2c4d4eSJosef Bacik delayed_refs_bytes); 585ba2c4d4eSJosef Bacik num_bytes -= delayed_refs_bytes; 586ba2c4d4eSJosef Bacik } 587ba2c4d4eSJosef Bacik } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL && 588ba2c4d4eSJosef Bacik !delayed_refs_rsv->full) { 589ba2c4d4eSJosef Bacik /* 590ba2c4d4eSJosef Bacik * Some people call with btrfs_start_transaction(root, 0) 591ba2c4d4eSJosef Bacik * because they can be throttled, but have some other mechanism 592ba2c4d4eSJosef Bacik * for reserving space. We still want these guys to refill the 593ba2c4d4eSJosef Bacik * delayed block_rsv so just add 1 items worth of reservation 594ba2c4d4eSJosef Bacik * here. 595ba2c4d4eSJosef Bacik */ 596ba2c4d4eSJosef Bacik ret = btrfs_delayed_refs_rsv_refill(fs_info, flush); 597b5009945SJosef Bacik if (ret) 598843fcf35SMiao Xie goto reserve_fail; 599b5009945SJosef Bacik } 600a22285a6SYan, Zheng again: 601f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 602843fcf35SMiao Xie if (!h) { 603843fcf35SMiao Xie ret = -ENOMEM; 604843fcf35SMiao Xie goto alloc_fail; 605843fcf35SMiao Xie } 606a22285a6SYan, Zheng 60798114659SJosef Bacik /* 60898114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 60998114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 61098114659SJosef Bacik * because we're already holding a ref. We need this because we could 61198114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 61298114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 613354aa0fbSMiao Xie * 614354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 615354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 61698114659SJosef Bacik */ 6170860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 6180b246afaSJeff Mahoney sb_start_intwrite(fs_info->sb); 619b2b5ef5cSJan Kara 6202ff7e61eSJeff Mahoney if (may_wait_transaction(fs_info, type)) 6212ff7e61eSJeff Mahoney wait_current_trans(fs_info); 622a22285a6SYan, Zheng 623a4abeea4SJosef Bacik do { 6242ff7e61eSJeff Mahoney ret = join_transaction(fs_info, type); 625178260b2SMiao Xie if (ret == -EBUSY) { 6262ff7e61eSJeff Mahoney wait_current_trans(fs_info); 627a6d155d2SFilipe Manana if (unlikely(type == TRANS_ATTACH || 628a6d155d2SFilipe Manana type == TRANS_JOIN_NOSTART)) 629178260b2SMiao Xie ret = -ENOENT; 630178260b2SMiao Xie } 631a4abeea4SJosef Bacik } while (ret == -EBUSY); 632a4abeea4SJosef Bacik 633a43f7f82SLiu Bo if (ret < 0) 634843fcf35SMiao Xie goto join_fail; 6350f7d52f4SChris Mason 6360b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 637a22285a6SYan, Zheng 638a22285a6SYan, Zheng h->transid = cur_trans->transid; 639a22285a6SYan, Zheng h->transaction = cur_trans; 640d13603efSArne Jansen h->root = root; 641b50fff81SDavid Sterba refcount_set(&h->use_count, 1); 64264b63580SJeff Mahoney h->fs_info = root->fs_info; 6437174109cSQu Wenruo 644a698d075SMiao Xie h->type = type; 645d9a0540aSFilipe Manana h->can_flush_pending_bgs = true; 646ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 647b7ec40d7SChris Mason 648a22285a6SYan, Zheng smp_mb(); 6493296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START && 6502ff7e61eSJeff Mahoney may_wait_transaction(fs_info, type)) { 651abdd2e80SFilipe Manana current->journal_info = h; 6523a45bb20SJeff Mahoney btrfs_commit_transaction(h); 653a22285a6SYan, Zheng goto again; 654a22285a6SYan, Zheng } 6559ed74f2dSJosef Bacik 656b5009945SJosef Bacik if (num_bytes) { 6570b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 6582bcc0328SLiu Bo h->transid, num_bytes, 1); 6590b246afaSJeff Mahoney h->block_rsv = &fs_info->trans_block_rsv; 660b5009945SJosef Bacik h->bytes_reserved = num_bytes; 66120dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 662a22285a6SYan, Zheng } 663a22285a6SYan, Zheng 6642a1eb461SJosef Bacik got_it: 665a4abeea4SJosef Bacik btrfs_record_root_in_trans(h, root); 666a22285a6SYan, Zheng 667bcf3a3e7SNikolay Borisov if (!current->journal_info) 668a22285a6SYan, Zheng current->journal_info = h; 66979154b1bSChris Mason return h; 670843fcf35SMiao Xie 671843fcf35SMiao Xie join_fail: 6720860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 6730b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 674843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 675843fcf35SMiao Xie alloc_fail: 676843fcf35SMiao Xie if (num_bytes) 6772ff7e61eSJeff Mahoney btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, 678843fcf35SMiao Xie num_bytes); 679843fcf35SMiao Xie reserve_fail: 680733e03a0SQu Wenruo btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); 681843fcf35SMiao Xie return ERR_PTR(ret); 68279154b1bSChris Mason } 68379154b1bSChris Mason 684f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 6855aed1dd8SAlexandru Moise unsigned int num_items) 686f9295749SChris Mason { 68708e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 688003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, true); 689f9295749SChris Mason } 690003d7c59SJeff Mahoney 6918eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 6928eab77ffSFilipe Manana struct btrfs_root *root, 6938eab77ffSFilipe Manana unsigned int num_items, 6948eab77ffSFilipe Manana int min_factor) 6958eab77ffSFilipe Manana { 6960b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 6978eab77ffSFilipe Manana struct btrfs_trans_handle *trans; 6988eab77ffSFilipe Manana u64 num_bytes; 6998eab77ffSFilipe Manana int ret; 7008eab77ffSFilipe Manana 701003d7c59SJeff Mahoney /* 702003d7c59SJeff Mahoney * We have two callers: unlink and block group removal. The 703003d7c59SJeff Mahoney * former should succeed even if we will temporarily exceed 704003d7c59SJeff Mahoney * quota and the latter operates on the extent root so 705003d7c59SJeff Mahoney * qgroup enforcement is ignored anyway. 706003d7c59SJeff Mahoney */ 707003d7c59SJeff Mahoney trans = start_transaction(root, num_items, TRANS_START, 708003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, false); 7098eab77ffSFilipe Manana if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) 7108eab77ffSFilipe Manana return trans; 7118eab77ffSFilipe Manana 7128eab77ffSFilipe Manana trans = btrfs_start_transaction(root, 0); 7138eab77ffSFilipe Manana if (IS_ERR(trans)) 7148eab77ffSFilipe Manana return trans; 7158eab77ffSFilipe Manana 7162bd36e7bSJosef Bacik num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items); 7170b246afaSJeff Mahoney ret = btrfs_cond_migrate_bytes(fs_info, &fs_info->trans_block_rsv, 7180b246afaSJeff Mahoney num_bytes, min_factor); 7198eab77ffSFilipe Manana if (ret) { 7203a45bb20SJeff Mahoney btrfs_end_transaction(trans); 7218eab77ffSFilipe Manana return ERR_PTR(ret); 7228eab77ffSFilipe Manana } 7238eab77ffSFilipe Manana 7240b246afaSJeff Mahoney trans->block_rsv = &fs_info->trans_block_rsv; 7258eab77ffSFilipe Manana trans->bytes_reserved = num_bytes; 7260b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 72788d3a5aaSJosef Bacik trans->transid, num_bytes, 1); 7288eab77ffSFilipe Manana 7298eab77ffSFilipe Manana return trans; 7308eab77ffSFilipe Manana } 7318407aa46SMiao Xie 7327a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 733f9295749SChris Mason { 734003d7c59SJeff Mahoney return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH, 735003d7c59SJeff Mahoney true); 736f9295749SChris Mason } 737f9295749SChris Mason 7388d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root) 7390af3d00bSJosef Bacik { 740575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 741003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 7420af3d00bSJosef Bacik } 7430af3d00bSJosef Bacik 744d4edf39bSMiao Xie /* 745a6d155d2SFilipe Manana * Similar to regular join but it never starts a transaction when none is 746a6d155d2SFilipe Manana * running or after waiting for the current one to finish. 747a6d155d2SFilipe Manana */ 748a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root) 749a6d155d2SFilipe Manana { 750a6d155d2SFilipe Manana return start_transaction(root, 0, TRANS_JOIN_NOSTART, 751a6d155d2SFilipe Manana BTRFS_RESERVE_NO_FLUSH, true); 752a6d155d2SFilipe Manana } 753a6d155d2SFilipe Manana 754a6d155d2SFilipe Manana /* 755d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 756d4edf39bSMiao Xie * 757d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 758d4edf39bSMiao Xie * don't want to start a new one. 759d4edf39bSMiao Xie * 760d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 761d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 762d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 763d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 764d4edf39bSMiao Xie * invoke 765d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 766d4edf39bSMiao Xie */ 767354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 76860376ce4SJosef Bacik { 769575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_ATTACH, 770003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 77160376ce4SJosef Bacik } 77260376ce4SJosef Bacik 773d4edf39bSMiao Xie /* 77490b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 775d4edf39bSMiao Xie * 77652042d8eSAndrea Gelmini * It is similar to the above function, the difference is this one 777d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 778d4edf39bSMiao Xie * complete. 779d4edf39bSMiao Xie */ 780d4edf39bSMiao Xie struct btrfs_trans_handle * 781d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 782d4edf39bSMiao Xie { 783d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 784d4edf39bSMiao Xie 785575a75d6SAlexandru Moise trans = start_transaction(root, 0, TRANS_ATTACH, 786003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 7878d9e220cSAl Viro if (trans == ERR_PTR(-ENOENT)) 7882ff7e61eSJeff Mahoney btrfs_wait_for_commit(root->fs_info, 0); 789d4edf39bSMiao Xie 790d4edf39bSMiao Xie return trans; 791d4edf39bSMiao Xie } 792d4edf39bSMiao Xie 793d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 7942ff7e61eSJeff Mahoney static noinline void wait_for_commit(struct btrfs_transaction *commit) 79589ce8a63SChris Mason { 7964a9d8bdeSMiao Xie wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); 79789ce8a63SChris Mason } 79889ce8a63SChris Mason 7992ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid) 80046204592SSage Weil { 80146204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 8028cd2807fSMiao Xie int ret = 0; 80346204592SSage Weil 80446204592SSage Weil if (transid) { 8050b246afaSJeff Mahoney if (transid <= fs_info->last_trans_committed) 806a4abeea4SJosef Bacik goto out; 80746204592SSage Weil 80846204592SSage Weil /* find specified transaction */ 8090b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 8100b246afaSJeff Mahoney list_for_each_entry(t, &fs_info->trans_list, list) { 81146204592SSage Weil if (t->transid == transid) { 81246204592SSage Weil cur_trans = t; 8139b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 8148cd2807fSMiao Xie ret = 0; 81546204592SSage Weil break; 81646204592SSage Weil } 8178cd2807fSMiao Xie if (t->transid > transid) { 8188cd2807fSMiao Xie ret = 0; 81946204592SSage Weil break; 82046204592SSage Weil } 8218cd2807fSMiao Xie } 8220b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 82342383020SSage Weil 82442383020SSage Weil /* 82542383020SSage Weil * The specified transaction doesn't exist, or we 82642383020SSage Weil * raced with btrfs_commit_transaction 82742383020SSage Weil */ 82842383020SSage Weil if (!cur_trans) { 8290b246afaSJeff Mahoney if (transid > fs_info->last_trans_committed) 83042383020SSage Weil ret = -EINVAL; 8318cd2807fSMiao Xie goto out; 83242383020SSage Weil } 83346204592SSage Weil } else { 83446204592SSage Weil /* find newest transaction that is committing | committed */ 8350b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 8360b246afaSJeff Mahoney list_for_each_entry_reverse(t, &fs_info->trans_list, 83746204592SSage Weil list) { 8384a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 8394a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 8403473f3c0SJosef Bacik break; 84146204592SSage Weil cur_trans = t; 8429b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 84346204592SSage Weil break; 84446204592SSage Weil } 84546204592SSage Weil } 8460b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 84746204592SSage Weil if (!cur_trans) 848a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 84946204592SSage Weil } 85046204592SSage Weil 8512ff7e61eSJeff Mahoney wait_for_commit(cur_trans); 852724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 853a4abeea4SJosef Bacik out: 85446204592SSage Weil return ret; 85546204592SSage Weil } 85646204592SSage Weil 8572ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info) 85837d1aeeeSChris Mason { 8592ff7e61eSJeff Mahoney wait_current_trans(fs_info); 86037d1aeeeSChris Mason } 86137d1aeeeSChris Mason 8622ff7e61eSJeff Mahoney static int should_end_transaction(struct btrfs_trans_handle *trans) 8638929ecfaSYan, Zheng { 8642ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 8650b246afaSJeff Mahoney 86664403612SJosef Bacik if (btrfs_check_space_for_delayed_refs(fs_info)) 8671be41b78SJosef Bacik return 1; 86836ba022aSJosef Bacik 8692ff7e61eSJeff Mahoney return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5); 8708929ecfaSYan, Zheng } 8718929ecfaSYan, Zheng 8723a45bb20SJeff Mahoney int btrfs_should_end_transaction(struct btrfs_trans_handle *trans) 8738929ecfaSYan, Zheng { 8748929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 8758929ecfaSYan, Zheng 876a4abeea4SJosef Bacik smp_mb(); 8773296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START || 8784a9d8bdeSMiao Xie cur_trans->delayed_refs.flushing) 8798929ecfaSYan, Zheng return 1; 8808929ecfaSYan, Zheng 8812ff7e61eSJeff Mahoney return should_end_transaction(trans); 8828929ecfaSYan, Zheng } 8838929ecfaSYan, Zheng 884dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans) 885dc60c525SNikolay Borisov 8860e34693fSNikolay Borisov { 887dc60c525SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 888dc60c525SNikolay Borisov 8890e34693fSNikolay Borisov if (!trans->block_rsv) { 8900e34693fSNikolay Borisov ASSERT(!trans->bytes_reserved); 8910e34693fSNikolay Borisov return; 8920e34693fSNikolay Borisov } 8930e34693fSNikolay Borisov 8940e34693fSNikolay Borisov if (!trans->bytes_reserved) 8950e34693fSNikolay Borisov return; 8960e34693fSNikolay Borisov 8970e34693fSNikolay Borisov ASSERT(trans->block_rsv == &fs_info->trans_block_rsv); 8980e34693fSNikolay Borisov trace_btrfs_space_reservation(fs_info, "transaction", 8990e34693fSNikolay Borisov trans->transid, trans->bytes_reserved, 0); 9000e34693fSNikolay Borisov btrfs_block_rsv_release(fs_info, trans->block_rsv, 9010e34693fSNikolay Borisov trans->bytes_reserved); 9020e34693fSNikolay Borisov trans->bytes_reserved = 0; 9030e34693fSNikolay Borisov } 9040e34693fSNikolay Borisov 90589ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 9063a45bb20SJeff Mahoney int throttle) 90779154b1bSChris Mason { 9083a45bb20SJeff Mahoney struct btrfs_fs_info *info = trans->fs_info; 9098929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 9104edc2ca3SDave Jones int err = 0; 911d6e4a428SChris Mason 912b50fff81SDavid Sterba if (refcount_read(&trans->use_count) > 1) { 913b50fff81SDavid Sterba refcount_dec(&trans->use_count); 9142a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 9152a1eb461SJosef Bacik return 0; 9162a1eb461SJosef Bacik } 9172a1eb461SJosef Bacik 918dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 9194c13d758SJosef Bacik trans->block_rsv = NULL; 920c5567237SArne Jansen 9216c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 922ea658badSJosef Bacik 9234fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 9244fbcdf66SFilipe Manana 9250860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 9260b246afaSJeff Mahoney sb_end_intwrite(info->sb); 9276df7881aSJosef Bacik 9288929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 92913c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 93013c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 9310860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 93289ce8a63SChris Mason 933093258e6SDavid Sterba cond_wake_up(&cur_trans->writer_wait); 934724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 9359ed74f2dSJosef Bacik 9369ed74f2dSJosef Bacik if (current->journal_info == trans) 9379ed74f2dSJosef Bacik current->journal_info = NULL; 938ab78c84dSChris Mason 93924bbcf04SYan, Zheng if (throttle) 9402ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(info); 94124bbcf04SYan, Zheng 942bf31f87fSDavid Sterba if (TRANS_ABORTED(trans) || 9430b246afaSJeff Mahoney test_bit(BTRFS_FS_STATE_ERROR, &info->fs_state)) { 9444e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 9454edc2ca3SDave Jones err = -EIO; 9464e121c06SJosef Bacik } 94749b25e05SJeff Mahoney 9484edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 9494edc2ca3SDave Jones return err; 95079154b1bSChris Mason } 95179154b1bSChris Mason 9523a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans) 95389ce8a63SChris Mason { 9543a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 0); 95589ce8a63SChris Mason } 95689ce8a63SChris Mason 9573a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans) 95889ce8a63SChris Mason { 9593a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 1); 96016cdcec7SMiao Xie } 96116cdcec7SMiao Xie 962d352ac68SChris Mason /* 963d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 964d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 965690587d1SChris Mason * those extents are sent to disk but does not wait on them 966d352ac68SChris Mason */ 9672ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info, 9688cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 96979154b1bSChris Mason { 970777e6bd7SChris Mason int err = 0; 9717c4452b9SChris Mason int werr = 0; 9720b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 973e6138876SJosef Bacik struct extent_state *cached_state = NULL; 974777e6bd7SChris Mason u64 start = 0; 9755f39d397SChris Mason u64 end; 9767c4452b9SChris Mason 9776300463bSLiu Bo atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers); 9781728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 979e6138876SJosef Bacik mark, &cached_state)) { 980663dfbb0SFilipe Manana bool wait_writeback = false; 981663dfbb0SFilipe Manana 982663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 983663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 984210aa277SDavid Sterba mark, &cached_state); 985663dfbb0SFilipe Manana /* 986663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 987663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 988663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 989663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 990bf89d38fSJeff Mahoney * to __btrfs_wait_marked_extents() would not know that 991bf89d38fSJeff Mahoney * writeback for this range started and therefore wouldn't 992bf89d38fSJeff Mahoney * wait for it to finish - we don't want to commit a 993bf89d38fSJeff Mahoney * superblock that points to btree nodes/leafs for which 994bf89d38fSJeff Mahoney * writeback hasn't finished yet (and without errors). 995663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 99641e7acd3SNikolay Borisov * the transaction (through extent_io_tree_release()). 997663dfbb0SFilipe Manana */ 998663dfbb0SFilipe Manana if (err == -ENOMEM) { 999663dfbb0SFilipe Manana err = 0; 1000663dfbb0SFilipe Manana wait_writeback = true; 1001663dfbb0SFilipe Manana } 1002663dfbb0SFilipe Manana if (!err) 10031728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 10047c4452b9SChris Mason if (err) 10057c4452b9SChris Mason werr = err; 1006663dfbb0SFilipe Manana else if (wait_writeback) 1007663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 1008e38e2ed7SFilipe Manana free_extent_state(cached_state); 1009663dfbb0SFilipe Manana cached_state = NULL; 10101728366eSJosef Bacik cond_resched(); 10111728366eSJosef Bacik start = end + 1; 10127c4452b9SChris Mason } 10136300463bSLiu Bo atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers); 1014690587d1SChris Mason return werr; 1015690587d1SChris Mason } 1016690587d1SChris Mason 1017690587d1SChris Mason /* 1018690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1019690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1020690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 1021690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 1022690587d1SChris Mason */ 1023bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info, 1024bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1025690587d1SChris Mason { 1026690587d1SChris Mason int err = 0; 1027690587d1SChris Mason int werr = 0; 10280b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1029e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1030690587d1SChris Mason u64 start = 0; 1031690587d1SChris Mason u64 end; 1032690587d1SChris Mason 10331728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1034e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 1035663dfbb0SFilipe Manana /* 1036663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 1037663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 1038663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 1039663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 1040663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 104141e7acd3SNikolay Borisov * it's safe to do it (through extent_io_tree_release()). 1042663dfbb0SFilipe Manana */ 1043663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 1044ae0f1625SDavid Sterba EXTENT_NEED_WAIT, 0, 0, &cached_state); 1045663dfbb0SFilipe Manana if (err == -ENOMEM) 1046663dfbb0SFilipe Manana err = 0; 1047663dfbb0SFilipe Manana if (!err) 10481728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 1049777e6bd7SChris Mason if (err) 1050777e6bd7SChris Mason werr = err; 1051e38e2ed7SFilipe Manana free_extent_state(cached_state); 1052e38e2ed7SFilipe Manana cached_state = NULL; 1053777e6bd7SChris Mason cond_resched(); 10541728366eSJosef Bacik start = end + 1; 1055777e6bd7SChris Mason } 10567c4452b9SChris Mason if (err) 10577c4452b9SChris Mason werr = err; 1058bf89d38fSJeff Mahoney return werr; 1059bf89d38fSJeff Mahoney } 1060656f30dbSFilipe Manana 1061b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info, 1062bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1063bf89d38fSJeff Mahoney { 1064bf89d38fSJeff Mahoney bool errors = false; 1065bf89d38fSJeff Mahoney int err; 1066bf89d38fSJeff Mahoney 1067bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1068bf89d38fSJeff Mahoney if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags)) 1069bf89d38fSJeff Mahoney errors = true; 1070bf89d38fSJeff Mahoney 1071bf89d38fSJeff Mahoney if (errors && !err) 1072bf89d38fSJeff Mahoney err = -EIO; 1073bf89d38fSJeff Mahoney return err; 1074bf89d38fSJeff Mahoney } 1075bf89d38fSJeff Mahoney 1076bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark) 1077bf89d38fSJeff Mahoney { 1078bf89d38fSJeff Mahoney struct btrfs_fs_info *fs_info = log_root->fs_info; 1079bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages; 1080bf89d38fSJeff Mahoney bool errors = false; 1081bf89d38fSJeff Mahoney int err; 1082bf89d38fSJeff Mahoney 1083bf89d38fSJeff Mahoney ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); 1084bf89d38fSJeff Mahoney 1085bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1086656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 10870b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags)) 1088656f30dbSFilipe Manana errors = true; 1089656f30dbSFilipe Manana 1090656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 10910b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags)) 1092656f30dbSFilipe Manana errors = true; 1093656f30dbSFilipe Manana 1094bf89d38fSJeff Mahoney if (errors && !err) 1095bf89d38fSJeff Mahoney err = -EIO; 1096bf89d38fSJeff Mahoney return err; 109779154b1bSChris Mason } 109879154b1bSChris Mason 1099690587d1SChris Mason /* 1100c9b577c0SNikolay Borisov * When btree blocks are allocated the corresponding extents are marked dirty. 1101c9b577c0SNikolay Borisov * This function ensures such extents are persisted on disk for transaction or 1102c9b577c0SNikolay Borisov * log commit. 1103c9b577c0SNikolay Borisov * 1104c9b577c0SNikolay Borisov * @trans: transaction whose dirty pages we'd like to write 1105690587d1SChris Mason */ 110670458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans) 1107d0c803c4SChris Mason { 1108663dfbb0SFilipe Manana int ret; 1109c9b577c0SNikolay Borisov int ret2; 1110c9b577c0SNikolay Borisov struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages; 111170458a58SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1112c9b577c0SNikolay Borisov struct blk_plug plug; 1113663dfbb0SFilipe Manana 1114c9b577c0SNikolay Borisov blk_start_plug(&plug); 1115c9b577c0SNikolay Borisov ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY); 1116c9b577c0SNikolay Borisov blk_finish_plug(&plug); 1117c9b577c0SNikolay Borisov ret2 = btrfs_wait_extents(fs_info, dirty_pages); 1118c9b577c0SNikolay Borisov 111941e7acd3SNikolay Borisov extent_io_tree_release(&trans->transaction->dirty_pages); 1120663dfbb0SFilipe Manana 1121c9b577c0SNikolay Borisov if (ret) 1122663dfbb0SFilipe Manana return ret; 1123c9b577c0SNikolay Borisov else if (ret2) 1124c9b577c0SNikolay Borisov return ret2; 1125c9b577c0SNikolay Borisov else 1126c9b577c0SNikolay Borisov return 0; 1127d0c803c4SChris Mason } 1128d0c803c4SChris Mason 1129d352ac68SChris Mason /* 1130d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1131d352ac68SChris Mason * 1132d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1133d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1134d352ac68SChris Mason * allocation tree. 1135d352ac68SChris Mason * 1136d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1137d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1138d352ac68SChris Mason */ 11390b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 114079154b1bSChris Mason struct btrfs_root *root) 114179154b1bSChris Mason { 114279154b1bSChris Mason int ret; 11430b86a832SChris Mason u64 old_root_bytenr; 114486b9f2ecSYan, Zheng u64 old_root_used; 11450b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 11460b246afaSJeff Mahoney struct btrfs_root *tree_root = fs_info->tree_root; 114779154b1bSChris Mason 114886b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 114956bec294SChris Mason 115079154b1bSChris Mason while (1) { 11510b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 115286b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1153ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 115479154b1bSChris Mason break; 115587ef2bb4SChris Mason 11565d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 115779154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 11580b86a832SChris Mason &root->root_key, 11590b86a832SChris Mason &root->root_item); 116049b25e05SJeff Mahoney if (ret) 116149b25e05SJeff Mahoney return ret; 116256bec294SChris Mason 116386b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1164e7070be1SJosef Bacik } 1165276e680dSYan Zheng 11660b86a832SChris Mason return 0; 11670b86a832SChris Mason } 11680b86a832SChris Mason 1169d352ac68SChris Mason /* 1170d352ac68SChris Mason * update all the cowonly tree roots on disk 117149b25e05SJeff Mahoney * 117249b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 117349b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 117449b25e05SJeff Mahoney * to clean up the delayed refs. 1175d352ac68SChris Mason */ 11769386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans) 11770b86a832SChris Mason { 11789386d8bcSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1179ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 11801bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 11810b86a832SChris Mason struct list_head *next; 118284234f3aSYan Zheng struct extent_buffer *eb; 118356bec294SChris Mason int ret; 118484234f3aSYan Zheng 118584234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 118649b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 118749b25e05SJeff Mahoney 0, &eb); 118884234f3aSYan Zheng btrfs_tree_unlock(eb); 118984234f3aSYan Zheng free_extent_buffer(eb); 11900b86a832SChris Mason 119149b25e05SJeff Mahoney if (ret) 119249b25e05SJeff Mahoney return ret; 119349b25e05SJeff Mahoney 1194c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 119549b25e05SJeff Mahoney if (ret) 119649b25e05SJeff Mahoney return ret; 119787ef2bb4SChris Mason 1198196c9d8dSDavid Sterba ret = btrfs_run_dev_stats(trans); 1199c16ce190SJosef Bacik if (ret) 1200c16ce190SJosef Bacik return ret; 12012b584c68SDavid Sterba ret = btrfs_run_dev_replace(trans); 1202c16ce190SJosef Bacik if (ret) 1203c16ce190SJosef Bacik return ret; 1204280f8bd2SLu Fengqi ret = btrfs_run_qgroups(trans); 1205c16ce190SJosef Bacik if (ret) 1206c16ce190SJosef Bacik return ret; 1207546adb0dSJan Schmidt 1208bbebb3e0SDavid Sterba ret = btrfs_setup_space_cache(trans); 1209dcdf7f6dSJosef Bacik if (ret) 1210dcdf7f6dSJosef Bacik return ret; 1211dcdf7f6dSJosef Bacik 1212546adb0dSJan Schmidt /* run_qgroups might have added some more refs */ 1213c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1214c16ce190SJosef Bacik if (ret) 1215c16ce190SJosef Bacik return ret; 1216ea526d18SJosef Bacik again: 12170b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 12182ff7e61eSJeff Mahoney struct btrfs_root *root; 12190b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 12200b86a832SChris Mason list_del_init(next); 12210b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1222e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 122387ef2bb4SChris Mason 12249e351cc8SJosef Bacik if (root != fs_info->extent_root) 12259e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 12269e351cc8SJosef Bacik &trans->transaction->switch_commits); 122749b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 122849b25e05SJeff Mahoney if (ret) 122949b25e05SJeff Mahoney return ret; 1230c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1231ea526d18SJosef Bacik if (ret) 1232ea526d18SJosef Bacik return ret; 123379154b1bSChris Mason } 1234276e680dSYan Zheng 12351bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 12365742d15fSDavid Sterba ret = btrfs_write_dirty_block_groups(trans); 1237ea526d18SJosef Bacik if (ret) 1238ea526d18SJosef Bacik return ret; 1239c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1240ea526d18SJosef Bacik if (ret) 1241ea526d18SJosef Bacik return ret; 1242ea526d18SJosef Bacik } 1243ea526d18SJosef Bacik 1244ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1245ea526d18SJosef Bacik goto again; 1246ea526d18SJosef Bacik 12479e351cc8SJosef Bacik list_add_tail(&fs_info->extent_root->dirty_list, 12489e351cc8SJosef Bacik &trans->transaction->switch_commits); 12499f6cbcbbSDavid Sterba 12509f6cbcbbSDavid Sterba /* Update dev-replace pointer once everything is committed */ 12519f6cbcbbSDavid Sterba fs_info->dev_replace.committed_cursor_left = 12529f6cbcbbSDavid Sterba fs_info->dev_replace.cursor_left_last_write_of_item; 12538dabb742SStefan Behrens 125479154b1bSChris Mason return 0; 125579154b1bSChris Mason } 125679154b1bSChris Mason 1257d352ac68SChris Mason /* 1258d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1259d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1260d352ac68SChris Mason * be deleted 1261d352ac68SChris Mason */ 1262cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 12635eda7b5eSChris Mason { 12640b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12650b246afaSJeff Mahoney 12660b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1267cfad392bSJosef Bacik if (list_empty(&root->root_list)) 12680b246afaSJeff Mahoney list_add_tail(&root->root_list, &fs_info->dead_roots); 12690b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 12705eda7b5eSChris Mason } 12715eda7b5eSChris Mason 1272d352ac68SChris Mason /* 12735d4f98a2SYan Zheng * update all the cowonly tree roots on disk 1274d352ac68SChris Mason */ 12757e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans) 12760f7d52f4SChris Mason { 12777e4443d9SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 12780f7d52f4SChris Mason struct btrfs_root *gang[8]; 12790f7d52f4SChris Mason int i; 12800f7d52f4SChris Mason int ret; 128154aa1f4dSChris Mason int err = 0; 128254aa1f4dSChris Mason 1283a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 12840f7d52f4SChris Mason while (1) { 12855d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 12865d4f98a2SYan Zheng (void **)gang, 0, 12870f7d52f4SChris Mason ARRAY_SIZE(gang), 12880f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 12890f7d52f4SChris Mason if (ret == 0) 12900f7d52f4SChris Mason break; 12910f7d52f4SChris Mason for (i = 0; i < ret; i++) { 12925b4aacefSJeff Mahoney struct btrfs_root *root = gang[i]; 12935d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 12942619ba1fSChris Mason (unsigned long)root->root_key.objectid, 12950f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1296a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 129731153d81SYan Zheng 1298e02119d5SChris Mason btrfs_free_log(trans, root); 12995d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 1300e02119d5SChris Mason 130182d5902dSLi Zefan btrfs_save_ino_cache(root, trans); 130282d5902dSLi Zefan 1303f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 130427cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1305c7548af6SChris Mason smp_mb__after_atomic(); 1306f1ebcc74SLiu Bo 1307978d910dSYan Zheng if (root->commit_root != root->node) { 13089e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 13099e351cc8SJosef Bacik &trans->transaction->switch_commits); 1310978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 1311978d910dSYan Zheng root->node); 1312978d910dSYan Zheng } 131331153d81SYan Zheng 13145d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 13150f7d52f4SChris Mason &root->root_key, 13160f7d52f4SChris Mason &root->root_item); 1317a4abeea4SJosef Bacik spin_lock(&fs_info->fs_roots_radix_lock); 131854aa1f4dSChris Mason if (err) 131954aa1f4dSChris Mason break; 1320733e03a0SQu Wenruo btrfs_qgroup_free_meta_all_pertrans(root); 13210f7d52f4SChris Mason } 13229f3a7427SChris Mason } 1323a4abeea4SJosef Bacik spin_unlock(&fs_info->fs_roots_radix_lock); 132454aa1f4dSChris Mason return err; 13250f7d52f4SChris Mason } 13260f7d52f4SChris Mason 1327d352ac68SChris Mason /* 1328de78b51aSEric Sandeen * defrag a given btree. 1329de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1330d352ac68SChris Mason */ 1331de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1332e9d0b13bSChris Mason { 1333e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1334e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 13358929ecfaSYan, Zheng int ret; 1336e9d0b13bSChris Mason 133727cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1338e9d0b13bSChris Mason return 0; 13398929ecfaSYan, Zheng 13406b80053dSChris Mason while (1) { 13418929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 13428929ecfaSYan, Zheng if (IS_ERR(trans)) 13438929ecfaSYan, Zheng return PTR_ERR(trans); 13448929ecfaSYan, Zheng 1345de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 13468929ecfaSYan, Zheng 13473a45bb20SJeff Mahoney btrfs_end_transaction(trans); 13482ff7e61eSJeff Mahoney btrfs_btree_balance_dirty(info); 1349e9d0b13bSChris Mason cond_resched(); 1350e9d0b13bSChris Mason 1351ab8d0fc4SJeff Mahoney if (btrfs_fs_closing(info) || ret != -EAGAIN) 1352e9d0b13bSChris Mason break; 1353210549ebSDavid Sterba 1354ab8d0fc4SJeff Mahoney if (btrfs_defrag_cancelled(info)) { 1355ab8d0fc4SJeff Mahoney btrfs_debug(info, "defrag_root cancelled"); 1356210549ebSDavid Sterba ret = -EAGAIN; 1357210549ebSDavid Sterba break; 1358210549ebSDavid Sterba } 1359e9d0b13bSChris Mason } 136027cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 13618929ecfaSYan, Zheng return ret; 1362e9d0b13bSChris Mason } 1363e9d0b13bSChris Mason 1364d352ac68SChris Mason /* 13656426c7adSQu Wenruo * Do all special snapshot related qgroup dirty hack. 13666426c7adSQu Wenruo * 13676426c7adSQu Wenruo * Will do all needed qgroup inherit and dirty hack like switch commit 13686426c7adSQu Wenruo * roots inside one transaction and write all btree into disk, to make 13696426c7adSQu Wenruo * qgroup works. 13706426c7adSQu Wenruo */ 13716426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, 13726426c7adSQu Wenruo struct btrfs_root *src, 13736426c7adSQu Wenruo struct btrfs_root *parent, 13746426c7adSQu Wenruo struct btrfs_qgroup_inherit *inherit, 13756426c7adSQu Wenruo u64 dst_objectid) 13766426c7adSQu Wenruo { 13776426c7adSQu Wenruo struct btrfs_fs_info *fs_info = src->fs_info; 13786426c7adSQu Wenruo int ret; 13796426c7adSQu Wenruo 13806426c7adSQu Wenruo /* 13816426c7adSQu Wenruo * Save some performance in the case that qgroups are not 13826426c7adSQu Wenruo * enabled. If this check races with the ioctl, rescan will 13836426c7adSQu Wenruo * kick in anyway. 13846426c7adSQu Wenruo */ 13859ea6e2b5SDavid Sterba if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) 13866426c7adSQu Wenruo return 0; 13876426c7adSQu Wenruo 13886426c7adSQu Wenruo /* 138952042d8eSAndrea Gelmini * Ensure dirty @src will be committed. Or, after coming 13904d31778aSQu Wenruo * commit_fs_roots() and switch_commit_roots(), any dirty but not 13914d31778aSQu Wenruo * recorded root will never be updated again, causing an outdated root 13924d31778aSQu Wenruo * item. 13934d31778aSQu Wenruo */ 13944d31778aSQu Wenruo record_root_in_trans(trans, src, 1); 13954d31778aSQu Wenruo 13964d31778aSQu Wenruo /* 13976426c7adSQu Wenruo * We are going to commit transaction, see btrfs_commit_transaction() 13986426c7adSQu Wenruo * comment for reason locking tree_log_mutex 13996426c7adSQu Wenruo */ 14006426c7adSQu Wenruo mutex_lock(&fs_info->tree_log_mutex); 14016426c7adSQu Wenruo 14027e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 14036426c7adSQu Wenruo if (ret) 14046426c7adSQu Wenruo goto out; 1405460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 14066426c7adSQu Wenruo if (ret < 0) 14076426c7adSQu Wenruo goto out; 14086426c7adSQu Wenruo 14096426c7adSQu Wenruo /* Now qgroup are all updated, we can inherit it to new qgroups */ 1410a9377422SLu Fengqi ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid, 14116426c7adSQu Wenruo inherit); 14126426c7adSQu Wenruo if (ret < 0) 14136426c7adSQu Wenruo goto out; 14146426c7adSQu Wenruo 14156426c7adSQu Wenruo /* 14166426c7adSQu Wenruo * Now we do a simplified commit transaction, which will: 14176426c7adSQu Wenruo * 1) commit all subvolume and extent tree 14186426c7adSQu Wenruo * To ensure all subvolume and extent tree have a valid 14196426c7adSQu Wenruo * commit_root to accounting later insert_dir_item() 14206426c7adSQu Wenruo * 2) write all btree blocks onto disk 14216426c7adSQu Wenruo * This is to make sure later btree modification will be cowed 14226426c7adSQu Wenruo * Or commit_root can be populated and cause wrong qgroup numbers 14236426c7adSQu Wenruo * In this simplified commit, we don't really care about other trees 14246426c7adSQu Wenruo * like chunk and root tree, as they won't affect qgroup. 14256426c7adSQu Wenruo * And we don't write super to avoid half committed status. 14266426c7adSQu Wenruo */ 14279386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 14286426c7adSQu Wenruo if (ret) 14296426c7adSQu Wenruo goto out; 1430889bfa39SJosef Bacik switch_commit_roots(trans); 143170458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 14326426c7adSQu Wenruo if (ret) 1433f7af3934SDavid Sterba btrfs_handle_fs_error(fs_info, ret, 14346426c7adSQu Wenruo "Error while writing out transaction for qgroup"); 14356426c7adSQu Wenruo 14366426c7adSQu Wenruo out: 14376426c7adSQu Wenruo mutex_unlock(&fs_info->tree_log_mutex); 14386426c7adSQu Wenruo 14396426c7adSQu Wenruo /* 14406426c7adSQu Wenruo * Force parent root to be updated, as we recorded it before so its 14416426c7adSQu Wenruo * last_trans == cur_transid. 14426426c7adSQu Wenruo * Or it won't be committed again onto disk after later 14436426c7adSQu Wenruo * insert_dir_item() 14446426c7adSQu Wenruo */ 14456426c7adSQu Wenruo if (!ret) 14466426c7adSQu Wenruo record_root_in_trans(trans, parent, 1); 14476426c7adSQu Wenruo return ret; 14486426c7adSQu Wenruo } 14496426c7adSQu Wenruo 14506426c7adSQu Wenruo /* 1451d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1452aec8030aSMiao Xie * transaction commit. This does the actual creation. 1453aec8030aSMiao Xie * 1454aec8030aSMiao Xie * Note: 1455aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1456aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1457aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1458d352ac68SChris Mason */ 145980b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 14603063d29fSChris Mason struct btrfs_pending_snapshot *pending) 14613063d29fSChris Mason { 146208d50ca3SNikolay Borisov 146308d50ca3SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 14643063d29fSChris Mason struct btrfs_key key; 146580b6794dSChris Mason struct btrfs_root_item *new_root_item; 14663063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 14673063d29fSChris Mason struct btrfs_root *root = pending->root; 14686bdb72deSSage Weil struct btrfs_root *parent_root; 146998c9942aSLiu Bo struct btrfs_block_rsv *rsv; 14706bdb72deSSage Weil struct inode *parent_inode; 147142874b3dSMiao Xie struct btrfs_path *path; 147242874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1473a22285a6SYan, Zheng struct dentry *dentry; 14743063d29fSChris Mason struct extent_buffer *tmp; 1475925baeddSChris Mason struct extent_buffer *old; 147695582b00SDeepa Dinamani struct timespec64 cur_time; 1477aec8030aSMiao Xie int ret = 0; 1478d68fc57bSYan, Zheng u64 to_reserve = 0; 14796bdb72deSSage Weil u64 index = 0; 1480a22285a6SYan, Zheng u64 objectid; 1481b83cc969SLi Zefan u64 root_flags; 14823063d29fSChris Mason 14838546b570SDavid Sterba ASSERT(pending->path); 14848546b570SDavid Sterba path = pending->path; 148542874b3dSMiao Xie 1486b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1487b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1488a22285a6SYan, Zheng 1489aec8030aSMiao Xie pending->error = btrfs_find_free_objectid(tree_root, &objectid); 1490aec8030aSMiao Xie if (pending->error) 14916fa9700eSMiao Xie goto no_free_objectid; 14923063d29fSChris Mason 1493d6726335SQu Wenruo /* 1494d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1495d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1496d6726335SQu Wenruo */ 1497d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1498d6726335SQu Wenruo 1499147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1500d68fc57bSYan, Zheng 1501d68fc57bSYan, Zheng if (to_reserve > 0) { 1502aec8030aSMiao Xie pending->error = btrfs_block_rsv_add(root, 1503aec8030aSMiao Xie &pending->block_rsv, 150408e007d2SMiao Xie to_reserve, 150508e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1506aec8030aSMiao Xie if (pending->error) 1507d6726335SQu Wenruo goto clear_skip_qgroup; 1508d68fc57bSYan, Zheng } 1509d68fc57bSYan, Zheng 15103063d29fSChris Mason key.objectid = objectid; 1511a22285a6SYan, Zheng key.offset = (u64)-1; 1512a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 15133063d29fSChris Mason 15146fa9700eSMiao Xie rsv = trans->block_rsv; 1515a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 15162382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 15170b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 151888d3a5aaSJosef Bacik trans->transid, 151988d3a5aaSJosef Bacik trans->bytes_reserved, 1); 1520a22285a6SYan, Zheng dentry = pending->dentry; 1521e9662f70SMiao Xie parent_inode = pending->dir; 1522a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 15236426c7adSQu Wenruo record_root_in_trans(trans, parent_root, 0); 1524a22285a6SYan, Zheng 1525c2050a45SDeepa Dinamani cur_time = current_time(parent_inode); 152604b285f3SDeepa Dinamani 15276bdb72deSSage Weil /* 15286bdb72deSSage Weil * insert the directory item 15296bdb72deSSage Weil */ 1530877574e2SNikolay Borisov ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index); 153149b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 153242874b3dSMiao Xie 153342874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 153442874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 15354a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), 153642874b3dSMiao Xie dentry->d_name.name, 153742874b3dSMiao Xie dentry->d_name.len, 0); 153842874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1539fe66a05aSChris Mason pending->error = -EEXIST; 1540aec8030aSMiao Xie goto dir_item_existed; 154142874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 154242874b3dSMiao Xie ret = PTR_ERR(dir_item); 154366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15448732d44fSMiao Xie goto fail; 154579787eaaSJeff Mahoney } 154642874b3dSMiao Xie btrfs_release_path(path); 15476bdb72deSSage Weil 1548e999376fSChris Mason /* 1549e999376fSChris Mason * pull in the delayed directory update 1550e999376fSChris Mason * and the delayed inode item 1551e999376fSChris Mason * otherwise we corrupt the FS during 1552e999376fSChris Mason * snapshot 1553e999376fSChris Mason */ 1554e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 15558732d44fSMiao Xie if (ret) { /* Transaction aborted */ 155666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15578732d44fSMiao Xie goto fail; 15588732d44fSMiao Xie } 1559e999376fSChris Mason 15606426c7adSQu Wenruo record_root_in_trans(trans, root, 0); 15616bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 15626bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 156308fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 15646bdb72deSSage Weil 1565b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1566b83cc969SLi Zefan if (pending->readonly) 1567b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1568b83cc969SLi Zefan else 1569b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1570b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1571b83cc969SLi Zefan 15728ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 15738ea05e3aSAlexander Block trans->transid); 1574*807fc790SAndy Shevchenko generate_random_guid(new_root_item->uuid); 15758ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 15768ea05e3aSAlexander Block BTRFS_UUID_SIZE); 157770023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 157870023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 157970023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 15808ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 15818ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 15828ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 15838ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 158470023da2SStefan Behrens } 15853cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 15863cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 158770023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 15888ea05e3aSAlexander Block 1589925baeddSChris Mason old = btrfs_lock_root_node(root); 159049b25e05SJeff Mahoney ret = btrfs_cow_block(trans, root, old, NULL, 0, &old); 159179787eaaSJeff Mahoney if (ret) { 159279787eaaSJeff Mahoney btrfs_tree_unlock(old); 159379787eaaSJeff Mahoney free_extent_buffer(old); 159466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 15958732d44fSMiao Xie goto fail; 159679787eaaSJeff Mahoney } 159749b25e05SJeff Mahoney 15988bead258SDavid Sterba btrfs_set_lock_blocking_write(old); 15993063d29fSChris Mason 160049b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 160179787eaaSJeff Mahoney /* clean up in any case */ 1602925baeddSChris Mason btrfs_tree_unlock(old); 1603925baeddSChris Mason free_extent_buffer(old); 16048732d44fSMiao Xie if (ret) { 160566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16068732d44fSMiao Xie goto fail; 16078732d44fSMiao Xie } 1608f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 160927cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1610f1ebcc74SLiu Bo smp_wmb(); 1611f1ebcc74SLiu Bo 16125d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1613a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1614a22285a6SYan, Zheng key.offset = trans->transid; 1615a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1616925baeddSChris Mason btrfs_tree_unlock(tmp); 16173063d29fSChris Mason free_extent_buffer(tmp); 16188732d44fSMiao Xie if (ret) { 161966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16208732d44fSMiao Xie goto fail; 16218732d44fSMiao Xie } 16220660b5afSChris Mason 1623a22285a6SYan, Zheng /* 1624a22285a6SYan, Zheng * insert root back/forward references 1625a22285a6SYan, Zheng */ 16266025c19fSLu Fengqi ret = btrfs_add_root_ref(trans, objectid, 1627a22285a6SYan, Zheng parent_root->root_key.objectid, 16284a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), index, 1629a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 16308732d44fSMiao Xie if (ret) { 163166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16328732d44fSMiao Xie goto fail; 16338732d44fSMiao Xie } 1634a22285a6SYan, Zheng 1635a22285a6SYan, Zheng key.offset = (u64)-1; 16363619c94fSJosef Bacik pending->snap = btrfs_get_fs_root(fs_info, &key, true); 163779787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 163879787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 163966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16408732d44fSMiao Xie goto fail; 164179787eaaSJeff Mahoney } 1642d68fc57bSYan, Zheng 164349b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 16448732d44fSMiao Xie if (ret) { 164566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16468732d44fSMiao Xie goto fail; 16478732d44fSMiao Xie } 1648361048f5SMiao Xie 1649c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 16508732d44fSMiao Xie if (ret) { 165166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16528732d44fSMiao Xie goto fail; 16538732d44fSMiao Xie } 165442874b3dSMiao Xie 16556426c7adSQu Wenruo /* 16566426c7adSQu Wenruo * Do special qgroup accounting for snapshot, as we do some qgroup 16576426c7adSQu Wenruo * snapshot hack to do fast snapshot. 16586426c7adSQu Wenruo * To co-operate with that hack, we do hack again. 16596426c7adSQu Wenruo * Or snapshot will be greatly slowed down by a subtree qgroup rescan 16606426c7adSQu Wenruo */ 16616426c7adSQu Wenruo ret = qgroup_account_snapshot(trans, root, parent_root, 16626426c7adSQu Wenruo pending->inherit, objectid); 16636426c7adSQu Wenruo if (ret < 0) 16646426c7adSQu Wenruo goto fail; 16656426c7adSQu Wenruo 1666684572dfSLu Fengqi ret = btrfs_insert_dir_item(trans, dentry->d_name.name, 1667684572dfSLu Fengqi dentry->d_name.len, BTRFS_I(parent_inode), 1668684572dfSLu Fengqi &key, BTRFS_FT_DIR, index); 166942874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 16709c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 16718732d44fSMiao Xie if (ret) { 167266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 16738732d44fSMiao Xie goto fail; 16748732d44fSMiao Xie } 167542874b3dSMiao Xie 16766ef06d27SNikolay Borisov btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size + 167742874b3dSMiao Xie dentry->d_name.len * 2); 167804b285f3SDeepa Dinamani parent_inode->i_mtime = parent_inode->i_ctime = 1679c2050a45SDeepa Dinamani current_time(parent_inode); 1680be6aef60SJosef Bacik ret = btrfs_update_inode_fallback(trans, parent_root, parent_inode); 1681dd5f9615SStefan Behrens if (ret) { 168266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1683dd5f9615SStefan Behrens goto fail; 1684dd5f9615SStefan Behrens } 1685*807fc790SAndy Shevchenko ret = btrfs_uuid_tree_add(trans, new_root_item->uuid, 1686*807fc790SAndy Shevchenko BTRFS_UUID_KEY_SUBVOL, 1687cdb345a8SLu Fengqi objectid); 1688dd5f9615SStefan Behrens if (ret) { 168966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1690dd5f9615SStefan Behrens goto fail; 1691dd5f9615SStefan Behrens } 1692dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1693cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid, 1694dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1695dd5f9615SStefan Behrens objectid); 1696dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 169766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1698dd5f9615SStefan Behrens goto fail; 1699dd5f9615SStefan Behrens } 1700dd5f9615SStefan Behrens } 1701d6726335SQu Wenruo 1702c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1703d6726335SQu Wenruo if (ret) { 170466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1705d6726335SQu Wenruo goto fail; 1706d6726335SQu Wenruo } 1707d6726335SQu Wenruo 17083063d29fSChris Mason fail: 1709aec8030aSMiao Xie pending->error = ret; 1710aec8030aSMiao Xie dir_item_existed: 171198c9942aSLiu Bo trans->block_rsv = rsv; 17122382c5ccSLiu Bo trans->bytes_reserved = 0; 1713d6726335SQu Wenruo clear_skip_qgroup: 1714d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 17156fa9700eSMiao Xie no_free_objectid: 17166fa9700eSMiao Xie kfree(new_root_item); 1717b0c0ea63SDavid Sterba pending->root_item = NULL; 171842874b3dSMiao Xie btrfs_free_path(path); 17198546b570SDavid Sterba pending->path = NULL; 17208546b570SDavid Sterba 172149b25e05SJeff Mahoney return ret; 17223063d29fSChris Mason } 17233063d29fSChris Mason 1724d352ac68SChris Mason /* 1725d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1726d352ac68SChris Mason */ 172708d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans) 17283063d29fSChris Mason { 1729aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 17303063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1731aec8030aSMiao Xie int ret = 0; 17323de4586cSChris Mason 1733aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1734aec8030aSMiao Xie list_del(&pending->list); 173508d50ca3SNikolay Borisov ret = create_pending_snapshot(trans, pending); 1736aec8030aSMiao Xie if (ret) 1737aec8030aSMiao Xie break; 1738aec8030aSMiao Xie } 1739aec8030aSMiao Xie return ret; 17403de4586cSChris Mason } 17413de4586cSChris Mason 17422ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info) 17435d4f98a2SYan Zheng { 17445d4f98a2SYan Zheng struct btrfs_root_item *root_item; 17455d4f98a2SYan Zheng struct btrfs_super_block *super; 17465d4f98a2SYan Zheng 17470b246afaSJeff Mahoney super = fs_info->super_copy; 17485d4f98a2SYan Zheng 17490b246afaSJeff Mahoney root_item = &fs_info->chunk_root->root_item; 1750093e037cSDavid Sterba super->chunk_root = root_item->bytenr; 1751093e037cSDavid Sterba super->chunk_root_generation = root_item->generation; 1752093e037cSDavid Sterba super->chunk_root_level = root_item->level; 17535d4f98a2SYan Zheng 17540b246afaSJeff Mahoney root_item = &fs_info->tree_root->root_item; 1755093e037cSDavid Sterba super->root = root_item->bytenr; 1756093e037cSDavid Sterba super->generation = root_item->generation; 1757093e037cSDavid Sterba super->root_level = root_item->level; 17580b246afaSJeff Mahoney if (btrfs_test_opt(fs_info, SPACE_CACHE)) 1759093e037cSDavid Sterba super->cache_generation = root_item->generation; 17600b246afaSJeff Mahoney if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)) 1761093e037cSDavid Sterba super->uuid_tree_generation = root_item->generation; 17625d4f98a2SYan Zheng } 17635d4f98a2SYan Zheng 1764f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1765f36f3042SChris Mason { 17664a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1767f36f3042SChris Mason int ret = 0; 17684a9d8bdeSMiao Xie 1769a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 17704a9d8bdeSMiao Xie trans = info->running_transaction; 17714a9d8bdeSMiao Xie if (trans) 17724a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1773a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1774f36f3042SChris Mason return ret; 1775f36f3042SChris Mason } 1776f36f3042SChris Mason 17778929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 17788929ecfaSYan, Zheng { 17794a9d8bdeSMiao Xie struct btrfs_transaction *trans; 17808929ecfaSYan, Zheng int ret = 0; 17814a9d8bdeSMiao Xie 1782a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 17834a9d8bdeSMiao Xie trans = info->running_transaction; 17844a9d8bdeSMiao Xie if (trans) 17854a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1786a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 17878929ecfaSYan, Zheng return ret; 17888929ecfaSYan, Zheng } 17898929ecfaSYan, Zheng 1790bb9c12c9SSage Weil /* 1791bb9c12c9SSage Weil * wait for the current transaction commit to start and block subsequent 1792bb9c12c9SSage Weil * transaction joins 1793bb9c12c9SSage Weil */ 17942ff7e61eSJeff Mahoney static void wait_current_trans_commit_start(struct btrfs_fs_info *fs_info, 1795bb9c12c9SSage Weil struct btrfs_transaction *trans) 1796bb9c12c9SSage Weil { 17972ff7e61eSJeff Mahoney wait_event(fs_info->transaction_blocked_wait, 1798bf31f87fSDavid Sterba trans->state >= TRANS_STATE_COMMIT_START || 1799bf31f87fSDavid Sterba TRANS_ABORTED(trans)); 1800bb9c12c9SSage Weil } 1801bb9c12c9SSage Weil 1802bb9c12c9SSage Weil /* 1803bb9c12c9SSage Weil * wait for the current transaction to start and then become unblocked. 1804bb9c12c9SSage Weil * caller holds ref. 1805bb9c12c9SSage Weil */ 18062ff7e61eSJeff Mahoney static void wait_current_trans_commit_start_and_unblock( 18072ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info, 1808bb9c12c9SSage Weil struct btrfs_transaction *trans) 1809bb9c12c9SSage Weil { 18102ff7e61eSJeff Mahoney wait_event(fs_info->transaction_wait, 1811bf31f87fSDavid Sterba trans->state >= TRANS_STATE_UNBLOCKED || 1812bf31f87fSDavid Sterba TRANS_ABORTED(trans)); 1813bb9c12c9SSage Weil } 1814bb9c12c9SSage Weil 1815bb9c12c9SSage Weil /* 1816bb9c12c9SSage Weil * commit transactions asynchronously. once btrfs_commit_transaction_async 1817bb9c12c9SSage Weil * returns, any subsequent transaction will not be allowed to join. 1818bb9c12c9SSage Weil */ 1819bb9c12c9SSage Weil struct btrfs_async_commit { 1820bb9c12c9SSage Weil struct btrfs_trans_handle *newtrans; 18217892b5afSMiao Xie struct work_struct work; 1822bb9c12c9SSage Weil }; 1823bb9c12c9SSage Weil 1824bb9c12c9SSage Weil static void do_async_commit(struct work_struct *work) 1825bb9c12c9SSage Weil { 1826bb9c12c9SSage Weil struct btrfs_async_commit *ac = 18277892b5afSMiao Xie container_of(work, struct btrfs_async_commit, work); 1828bb9c12c9SSage Weil 18296fc4e354SSage Weil /* 18306fc4e354SSage Weil * We've got freeze protection passed with the transaction. 18316fc4e354SSage Weil * Tell lockdep about it. 18326fc4e354SSage Weil */ 1833b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 18343a45bb20SJeff Mahoney __sb_writers_acquired(ac->newtrans->fs_info->sb, SB_FREEZE_FS); 18356fc4e354SSage Weil 1836e209db7aSSage Weil current->journal_info = ac->newtrans; 1837e209db7aSSage Weil 18383a45bb20SJeff Mahoney btrfs_commit_transaction(ac->newtrans); 1839bb9c12c9SSage Weil kfree(ac); 1840bb9c12c9SSage Weil } 1841bb9c12c9SSage Weil 1842bb9c12c9SSage Weil int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, 1843bb9c12c9SSage Weil int wait_for_unblock) 1844bb9c12c9SSage Weil { 18453a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 1846bb9c12c9SSage Weil struct btrfs_async_commit *ac; 1847bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1848bb9c12c9SSage Weil 1849bb9c12c9SSage Weil ac = kmalloc(sizeof(*ac), GFP_NOFS); 1850db5b493aSTsutomu Itoh if (!ac) 1851db5b493aSTsutomu Itoh return -ENOMEM; 1852bb9c12c9SSage Weil 18537892b5afSMiao Xie INIT_WORK(&ac->work, do_async_commit); 18543a45bb20SJeff Mahoney ac->newtrans = btrfs_join_transaction(trans->root); 18553612b495STsutomu Itoh if (IS_ERR(ac->newtrans)) { 18563612b495STsutomu Itoh int err = PTR_ERR(ac->newtrans); 18573612b495STsutomu Itoh kfree(ac); 18583612b495STsutomu Itoh return err; 18593612b495STsutomu Itoh } 1860bb9c12c9SSage Weil 1861bb9c12c9SSage Weil /* take transaction reference */ 1862bb9c12c9SSage Weil cur_trans = trans->transaction; 18639b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 1864bb9c12c9SSage Weil 18653a45bb20SJeff Mahoney btrfs_end_transaction(trans); 18666fc4e354SSage Weil 18676fc4e354SSage Weil /* 18686fc4e354SSage Weil * Tell lockdep we've released the freeze rwsem, since the 18696fc4e354SSage Weil * async commit thread will be the one to unlock it. 18706fc4e354SSage Weil */ 1871b1a06a4bSLiu Bo if (ac->newtrans->type & __TRANS_FREEZABLE) 18720b246afaSJeff Mahoney __sb_writers_release(fs_info->sb, SB_FREEZE_FS); 18736fc4e354SSage Weil 18747892b5afSMiao Xie schedule_work(&ac->work); 1875bb9c12c9SSage Weil 1876bb9c12c9SSage Weil /* wait for transaction to start and unblock */ 1877bb9c12c9SSage Weil if (wait_for_unblock) 18782ff7e61eSJeff Mahoney wait_current_trans_commit_start_and_unblock(fs_info, cur_trans); 1879bb9c12c9SSage Weil else 18802ff7e61eSJeff Mahoney wait_current_trans_commit_start(fs_info, cur_trans); 1881bb9c12c9SSage Weil 188238e88054SSage Weil if (current->journal_info == trans) 188338e88054SSage Weil current->journal_info = NULL; 188438e88054SSage Weil 1885724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1886bb9c12c9SSage Weil return 0; 1887bb9c12c9SSage Weil } 1888bb9c12c9SSage Weil 188949b25e05SJeff Mahoney 189097cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err) 189149b25e05SJeff Mahoney { 189297cb39bbSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 189349b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 189449b25e05SJeff Mahoney 1895b50fff81SDavid Sterba WARN_ON(refcount_read(&trans->use_count) > 1); 189649b25e05SJeff Mahoney 189766642832SJeff Mahoney btrfs_abort_transaction(trans, err); 18987b8b92afSJosef Bacik 18990b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 190066b6135bSLiu Bo 190125d8c284SMiao Xie /* 190225d8c284SMiao Xie * If the transaction is removed from the list, it means this 190325d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 190425d8c284SMiao Xie * to call the cleanup function. 190525d8c284SMiao Xie */ 190625d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 190766b6135bSLiu Bo 190849b25e05SJeff Mahoney list_del_init(&cur_trans->list); 19090b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) { 19104a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 19110b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 1912f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1913f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1914f094ac32SLiu Bo 19150b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1916d7096fc3SJosef Bacik } 19170b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 191849b25e05SJeff Mahoney 19192ff7e61eSJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, fs_info); 192049b25e05SJeff Mahoney 19210b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 19220b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) 19230b246afaSJeff Mahoney fs_info->running_transaction = NULL; 19240b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 19254a9d8bdeSMiao Xie 1926e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 19270b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 1928724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1929724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 193049b25e05SJeff Mahoney 193197cb39bbSNikolay Borisov trace_btrfs_transaction_commit(trans->root); 193249b25e05SJeff Mahoney 193349b25e05SJeff Mahoney if (current->journal_info == trans) 193449b25e05SJeff Mahoney current->journal_info = NULL; 19350b246afaSJeff Mahoney btrfs_scrub_cancel(fs_info); 193649b25e05SJeff Mahoney 193749b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 193849b25e05SJeff Mahoney } 193949b25e05SJeff Mahoney 1940c7cc64a9SDavid Sterba /* 1941c7cc64a9SDavid Sterba * Release reserved delayed ref space of all pending block groups of the 1942c7cc64a9SDavid Sterba * transaction and remove them from the list 1943c7cc64a9SDavid Sterba */ 1944c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans) 1945c7cc64a9SDavid Sterba { 1946c7cc64a9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 194732da5386SDavid Sterba struct btrfs_block_group *block_group, *tmp; 1948c7cc64a9SDavid Sterba 1949c7cc64a9SDavid Sterba list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { 1950c7cc64a9SDavid Sterba btrfs_delayed_refs_rsv_release(fs_info, 1); 1951c7cc64a9SDavid Sterba list_del_init(&block_group->bg_list); 1952c7cc64a9SDavid Sterba } 1953c7cc64a9SDavid Sterba } 1954c7cc64a9SDavid Sterba 1955609e804dSFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_trans_handle *trans) 195682436617SMiao Xie { 1957609e804dSFilipe Manana struct btrfs_fs_info *fs_info = trans->fs_info; 1958609e804dSFilipe Manana 1959ce8ea7ccSJosef Bacik /* 1960ce8ea7ccSJosef Bacik * We use writeback_inodes_sb here because if we used 1961ce8ea7ccSJosef Bacik * btrfs_start_delalloc_roots we would deadlock with fs freeze. 1962ce8ea7ccSJosef Bacik * Currently are holding the fs freeze lock, if we do an async flush 1963ce8ea7ccSJosef Bacik * we'll do btrfs_join_transaction() and deadlock because we need to 1964ce8ea7ccSJosef Bacik * wait for the fs freeze lock. Using the direct flushing we benefit 1965ce8ea7ccSJosef Bacik * from already being in a transaction and our join_transaction doesn't 1966ce8ea7ccSJosef Bacik * have to re-take the fs freeze lock. 1967ce8ea7ccSJosef Bacik */ 1968609e804dSFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) { 1969ce8ea7ccSJosef Bacik writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC); 1970609e804dSFilipe Manana } else { 1971609e804dSFilipe Manana struct btrfs_pending_snapshot *pending; 1972609e804dSFilipe Manana struct list_head *head = &trans->transaction->pending_snapshots; 1973609e804dSFilipe Manana 1974609e804dSFilipe Manana /* 1975609e804dSFilipe Manana * Flush dellaloc for any root that is going to be snapshotted. 1976609e804dSFilipe Manana * This is done to avoid a corrupted version of files, in the 1977609e804dSFilipe Manana * snapshots, that had both buffered and direct IO writes (even 1978609e804dSFilipe Manana * if they were done sequentially) due to an unordered update of 1979609e804dSFilipe Manana * the inode's size on disk. 1980609e804dSFilipe Manana */ 1981609e804dSFilipe Manana list_for_each_entry(pending, head, list) { 1982609e804dSFilipe Manana int ret; 1983609e804dSFilipe Manana 1984609e804dSFilipe Manana ret = btrfs_start_delalloc_snapshot(pending->root); 1985609e804dSFilipe Manana if (ret) 1986609e804dSFilipe Manana return ret; 1987609e804dSFilipe Manana } 1988609e804dSFilipe Manana } 198982436617SMiao Xie return 0; 199082436617SMiao Xie } 199182436617SMiao Xie 1992609e804dSFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_trans_handle *trans) 199382436617SMiao Xie { 1994609e804dSFilipe Manana struct btrfs_fs_info *fs_info = trans->fs_info; 1995609e804dSFilipe Manana 1996609e804dSFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) { 19976374e57aSChris Mason btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); 1998609e804dSFilipe Manana } else { 1999609e804dSFilipe Manana struct btrfs_pending_snapshot *pending; 2000609e804dSFilipe Manana struct list_head *head = &trans->transaction->pending_snapshots; 2001609e804dSFilipe Manana 2002609e804dSFilipe Manana /* 2003609e804dSFilipe Manana * Wait for any dellaloc that we started previously for the roots 2004609e804dSFilipe Manana * that are going to be snapshotted. This is to avoid a corrupted 2005609e804dSFilipe Manana * version of files in the snapshots that had both buffered and 2006609e804dSFilipe Manana * direct IO writes (even if they were done sequentially). 2007609e804dSFilipe Manana */ 2008609e804dSFilipe Manana list_for_each_entry(pending, head, list) 2009609e804dSFilipe Manana btrfs_wait_ordered_extents(pending->root, 2010609e804dSFilipe Manana U64_MAX, 0, U64_MAX); 2011609e804dSFilipe Manana } 201282436617SMiao Xie } 201382436617SMiao Xie 20143a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans) 201579154b1bSChris Mason { 20163a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 201749b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 20188fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 201925287e0aSMiao Xie int ret; 202079154b1bSChris Mason 202135b814f3SNikolay Borisov ASSERT(refcount_read(&trans->use_count) == 1); 202235b814f3SNikolay Borisov 2023d62b23c9SJosef Bacik /* 2024d62b23c9SJosef Bacik * Some places just start a transaction to commit it. We need to make 2025d62b23c9SJosef Bacik * sure that if this commit fails that the abort code actually marks the 2026d62b23c9SJosef Bacik * transaction as failed, so set trans->dirty to make the abort code do 2027d62b23c9SJosef Bacik * the right thing. 2028d62b23c9SJosef Bacik */ 2029d62b23c9SJosef Bacik trans->dirty = true; 2030d62b23c9SJosef Bacik 20318d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 2032bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 203325287e0aSMiao Xie ret = cur_trans->aborted; 20343a45bb20SJeff Mahoney btrfs_end_transaction(trans); 2035e4a2bcacSJosef Bacik return ret; 203625287e0aSMiao Xie } 203749b25e05SJeff Mahoney 2038f45c752bSJosef Bacik btrfs_trans_release_metadata(trans); 2039f45c752bSJosef Bacik trans->block_rsv = NULL; 2040f45c752bSJosef Bacik 204156bec294SChris Mason /* make a pass through all the delayed refs we have so far 204256bec294SChris Mason * any runnings procs may add more while we are here 204356bec294SChris Mason */ 2044c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 2045e4a2bcacSJosef Bacik if (ret) { 20463a45bb20SJeff Mahoney btrfs_end_transaction(trans); 2047e4a2bcacSJosef Bacik return ret; 2048e4a2bcacSJosef Bacik } 204956bec294SChris Mason 2050b7ec40d7SChris Mason cur_trans = trans->transaction; 205149b25e05SJeff Mahoney 205256bec294SChris Mason /* 205356bec294SChris Mason * set the flushing flag so procs in this transaction have to 205456bec294SChris Mason * start sending their work down. 205556bec294SChris Mason */ 2056b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 20571be41b78SJosef Bacik smp_wmb(); 205856bec294SChris Mason 20596c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 2060ea658badSJosef Bacik 2061c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 2062e4a2bcacSJosef Bacik if (ret) { 20633a45bb20SJeff Mahoney btrfs_end_transaction(trans); 2064e4a2bcacSJosef Bacik return ret; 2065e4a2bcacSJosef Bacik } 206656bec294SChris Mason 20673204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 20681bbc621eSChris Mason int run_it = 0; 20691bbc621eSChris Mason 20701bbc621eSChris Mason /* this mutex is also taken before trying to set 20711bbc621eSChris Mason * block groups readonly. We need to make sure 20721bbc621eSChris Mason * that nobody has set a block group readonly 20731bbc621eSChris Mason * after a extents from that block group have been 20741bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 20751bbc621eSChris Mason * will wait for the transaction to commit if it 20763204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 20771bbc621eSChris Mason * 20783204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 20793204d33cSJosef Bacik * only one process starts all the block group IO. It wouldn't 20801bbc621eSChris Mason * hurt to have more than one go through, but there's no 20811bbc621eSChris Mason * real advantage to it either. 20821bbc621eSChris Mason */ 20830b246afaSJeff Mahoney mutex_lock(&fs_info->ro_block_group_mutex); 20843204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 20853204d33cSJosef Bacik &cur_trans->flags)) 20861bbc621eSChris Mason run_it = 1; 20870b246afaSJeff Mahoney mutex_unlock(&fs_info->ro_block_group_mutex); 20881bbc621eSChris Mason 2089f9cacae3SNikolay Borisov if (run_it) { 209021217054SNikolay Borisov ret = btrfs_start_dirty_block_groups(trans); 20911bbc621eSChris Mason if (ret) { 20923a45bb20SJeff Mahoney btrfs_end_transaction(trans); 20931bbc621eSChris Mason return ret; 20941bbc621eSChris Mason } 2095f9cacae3SNikolay Borisov } 2096f9cacae3SNikolay Borisov } 20971bbc621eSChris Mason 20980b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 20994a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 21000b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 21019b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 21023a45bb20SJeff Mahoney ret = btrfs_end_transaction(trans); 2103ccd467d6SChris Mason 21042ff7e61eSJeff Mahoney wait_for_commit(cur_trans); 210515ee9bc7SJosef Bacik 2106bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) 2107b4924a0fSLiu Bo ret = cur_trans->aborted; 2108b4924a0fSLiu Bo 2109724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 211015ee9bc7SJosef Bacik 211149b25e05SJeff Mahoney return ret; 211279154b1bSChris Mason } 21134313b399SChris Mason 21144a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 21150b246afaSJeff Mahoney wake_up(&fs_info->transaction_blocked_wait); 2116bb9c12c9SSage Weil 21170b246afaSJeff Mahoney if (cur_trans->list.prev != &fs_info->trans_list) { 2118ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 2119ccd467d6SChris Mason struct btrfs_transaction, list); 21204a9d8bdeSMiao Xie if (prev_trans->state != TRANS_STATE_COMPLETED) { 21219b64f57dSElena Reshetova refcount_inc(&prev_trans->use_count); 21220b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2123ccd467d6SChris Mason 21242ff7e61eSJeff Mahoney wait_for_commit(prev_trans); 2125bf31f87fSDavid Sterba ret = READ_ONCE(prev_trans->aborted); 2126ccd467d6SChris Mason 2127724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 21281f9b8c8fSFilipe Manana if (ret) 21291f9b8c8fSFilipe Manana goto cleanup_transaction; 2130a4abeea4SJosef Bacik } else { 21310b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2132ccd467d6SChris Mason } 2133a4abeea4SJosef Bacik } else { 21340b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2135cb2d3dadSFilipe Manana /* 2136cb2d3dadSFilipe Manana * The previous transaction was aborted and was already removed 2137cb2d3dadSFilipe Manana * from the list of transactions at fs_info->trans_list. So we 2138cb2d3dadSFilipe Manana * abort to prevent writing a new superblock that reflects a 2139cb2d3dadSFilipe Manana * corrupt state (pointing to trees with unwritten nodes/leafs). 2140cb2d3dadSFilipe Manana */ 2141cb2d3dadSFilipe Manana if (test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state)) { 2142cb2d3dadSFilipe Manana ret = -EROFS; 2143cb2d3dadSFilipe Manana goto cleanup_transaction; 2144cb2d3dadSFilipe Manana } 2145ccd467d6SChris Mason } 214615ee9bc7SJosef Bacik 21470860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 21480860adfdSMiao Xie 2149609e804dSFilipe Manana ret = btrfs_start_delalloc_flush(trans); 215082436617SMiao Xie if (ret) 215182436617SMiao Xie goto cleanup_transaction; 215282436617SMiao Xie 2153e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 215449b25e05SJeff Mahoney if (ret) 215549b25e05SJeff Mahoney goto cleanup_transaction; 215616cdcec7SMiao Xie 2157581227d0SMiao Xie wait_event(cur_trans->writer_wait, 2158581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 2159ed3b3d31SChris Mason 2160581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 2161e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 2162ca469637SMiao Xie if (ret) 2163ca469637SMiao Xie goto cleanup_transaction; 2164ca469637SMiao Xie 2165609e804dSFilipe Manana btrfs_wait_delalloc_flush(trans); 2166cb7ab021SWang Shilong 21672ff7e61eSJeff Mahoney btrfs_scrub_pause(fs_info); 2168ed0ca140SJosef Bacik /* 2169ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 2170ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 21714a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 2172ed0ca140SJosef Bacik */ 21730b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 21744a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 21750b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2176ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 2177ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 217815ee9bc7SJosef Bacik 2179bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 21802cba30f1SMiao Xie ret = cur_trans->aborted; 21816cf7f77eSWang Shilong goto scrub_continue; 21822cba30f1SMiao Xie } 21837585717fSChris Mason /* 21847585717fSChris Mason * the reloc mutex makes sure that we stop 21857585717fSChris Mason * the balancing code from coming in and moving 21867585717fSChris Mason * extents around in the middle of the commit 21877585717fSChris Mason */ 21880b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 21897585717fSChris Mason 219042874b3dSMiao Xie /* 219142874b3dSMiao Xie * We needn't worry about the delayed items because we will 219242874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 219342874b3dSMiao Xie * core function of the snapshot creation. 219442874b3dSMiao Xie */ 219508d50ca3SNikolay Borisov ret = create_pending_snapshots(trans); 219656e9f6eaSDavid Sterba if (ret) 219756e9f6eaSDavid Sterba goto unlock_reloc; 21983063d29fSChris Mason 219942874b3dSMiao Xie /* 220042874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 220142874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 220242874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 220342874b3dSMiao Xie * them. 220442874b3dSMiao Xie * 220542874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 220642874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 220742874b3dSMiao Xie * the nodes and leaves. 220842874b3dSMiao Xie */ 2209e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 221056e9f6eaSDavid Sterba if (ret) 221156e9f6eaSDavid Sterba goto unlock_reloc; 221216cdcec7SMiao Xie 2213c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 221456e9f6eaSDavid Sterba if (ret) 221556e9f6eaSDavid Sterba goto unlock_reloc; 221656bec294SChris Mason 2217e999376fSChris Mason /* 2218e999376fSChris Mason * make sure none of the code above managed to slip in a 2219e999376fSChris Mason * delayed item 2220e999376fSChris Mason */ 2221ccdf9b30SJeff Mahoney btrfs_assert_delayed_root_empty(fs_info); 2222e999376fSChris Mason 22232c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2224dc17ff8fSChris Mason 2225e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 2226e02119d5SChris Mason * various roots consistent with each other. Every pointer 2227e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 2228e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 2229e02119d5SChris Mason * the tree logging code from jumping in and changing any 2230e02119d5SChris Mason * of the trees. 2231e02119d5SChris Mason * 2232e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 2233e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 2234e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 2235e02119d5SChris Mason * from now until after the super is written, we avoid races 2236e02119d5SChris Mason * with the tree-log code. 2237e02119d5SChris Mason */ 22380b246afaSJeff Mahoney mutex_lock(&fs_info->tree_log_mutex); 22391a40e23bSZheng Yan 22407e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 224156e9f6eaSDavid Sterba if (ret) 224256e9f6eaSDavid Sterba goto unlock_tree_log; 224354aa1f4dSChris Mason 22443818aea2SQu Wenruo /* 22457e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 22467e1876acSDavid Sterba * before the next transaction. 22473818aea2SQu Wenruo */ 22480b246afaSJeff Mahoney btrfs_apply_pending_changes(fs_info); 22493818aea2SQu Wenruo 22505d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2251e02119d5SChris Mason * safe to free the root of tree log roots 2252e02119d5SChris Mason */ 22530b246afaSJeff Mahoney btrfs_free_log_root_tree(trans, fs_info); 2254e02119d5SChris Mason 22550ed4792aSQu Wenruo /* 225682bafb38SQu Wenruo * commit_fs_roots() can call btrfs_save_ino_cache(), which generates 225782bafb38SQu Wenruo * new delayed refs. Must handle them or qgroup can be wrong. 225882bafb38SQu Wenruo */ 2259c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 226056e9f6eaSDavid Sterba if (ret) 226156e9f6eaSDavid Sterba goto unlock_tree_log; 226282bafb38SQu Wenruo 226382bafb38SQu Wenruo /* 22640ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 22650ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 22660ed4792aSQu Wenruo */ 2267460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 226856e9f6eaSDavid Sterba if (ret < 0) 226956e9f6eaSDavid Sterba goto unlock_tree_log; 22700ed4792aSQu Wenruo 22719386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 227256e9f6eaSDavid Sterba if (ret) 227356e9f6eaSDavid Sterba goto unlock_tree_log; 227454aa1f4dSChris Mason 22752cba30f1SMiao Xie /* 22762cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 22772cba30f1SMiao Xie * update ->aborted, check it. 22782cba30f1SMiao Xie */ 2279bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 22802cba30f1SMiao Xie ret = cur_trans->aborted; 228156e9f6eaSDavid Sterba goto unlock_tree_log; 22822cba30f1SMiao Xie } 22832cba30f1SMiao Xie 22848b74c03eSDavid Sterba btrfs_prepare_extent_commit(fs_info); 228511833d66SYan Zheng 22860b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 22875f39d397SChris Mason 22880b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->tree_root->root_item, 22890b246afaSJeff Mahoney fs_info->tree_root->node); 22900b246afaSJeff Mahoney list_add_tail(&fs_info->tree_root->dirty_list, 22919e351cc8SJosef Bacik &cur_trans->switch_commits); 22925d4f98a2SYan Zheng 22930b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->chunk_root->root_item, 22940b246afaSJeff Mahoney fs_info->chunk_root->node); 22950b246afaSJeff Mahoney list_add_tail(&fs_info->chunk_root->dirty_list, 22969e351cc8SJosef Bacik &cur_trans->switch_commits); 22979e351cc8SJosef Bacik 2298889bfa39SJosef Bacik switch_commit_roots(trans); 22995d4f98a2SYan Zheng 2300ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 23011bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 23022ff7e61eSJeff Mahoney update_super_roots(fs_info); 2303e02119d5SChris Mason 23040b246afaSJeff Mahoney btrfs_set_super_log_root(fs_info->super_copy, 0); 23050b246afaSJeff Mahoney btrfs_set_super_log_root_level(fs_info->super_copy, 0); 23060b246afaSJeff Mahoney memcpy(fs_info->super_for_commit, fs_info->super_copy, 23070b246afaSJeff Mahoney sizeof(*fs_info->super_copy)); 2308ccd467d6SChris Mason 2309bbbf7243SNikolay Borisov btrfs_commit_device_sizes(cur_trans); 2310935e5cc9SMiao Xie 23110b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags); 23120b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags); 2313656f30dbSFilipe Manana 23144fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 23154fbcdf66SFilipe Manana 23160b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 23174a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 23180b246afaSJeff Mahoney fs_info->running_transaction = NULL; 23190b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 23200b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 2321b7ec40d7SChris Mason 23220b246afaSJeff Mahoney wake_up(&fs_info->transaction_wait); 2323e6dcd2dcSChris Mason 232470458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 232549b25e05SJeff Mahoney if (ret) { 23260b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, 232708748810SDavid Sterba "Error while writing out transaction"); 232856e9f6eaSDavid Sterba /* 232956e9f6eaSDavid Sterba * reloc_mutex has been unlocked, tree_log_mutex is still held 233056e9f6eaSDavid Sterba * but we can't jump to unlock_tree_log causing double unlock 233156e9f6eaSDavid Sterba */ 23320b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 23336cf7f77eSWang Shilong goto scrub_continue; 233449b25e05SJeff Mahoney } 233549b25e05SJeff Mahoney 2336eece6a9cSDavid Sterba ret = write_all_supers(fs_info, 0); 2337e02119d5SChris Mason /* 2338e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2339e02119d5SChris Mason * to go about their business 2340e02119d5SChris Mason */ 23410b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 2342c1f32b7cSAnand Jain if (ret) 2343c1f32b7cSAnand Jain goto scrub_continue; 2344e02119d5SChris Mason 23455ead2dd0SNikolay Borisov btrfs_finish_extent_commit(trans); 23464313b399SChris Mason 23473204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 23480b246afaSJeff Mahoney btrfs_clear_space_info_full(fs_info); 234913212b54SZhao Lei 23500b246afaSJeff Mahoney fs_info->last_trans_committed = cur_trans->transid; 23514a9d8bdeSMiao Xie /* 23524a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 23534a9d8bdeSMiao Xie * which can change it. 23544a9d8bdeSMiao Xie */ 23554a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 23562c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 2357a514d638SQu Wenruo clear_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags); 23583de4586cSChris Mason 23590b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 236013c5a93eSJosef Bacik list_del_init(&cur_trans->list); 23610b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2362a4abeea4SJosef Bacik 2363724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2364724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 236558176a96SJosef Bacik 23660860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 23670b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2368b2b5ef5cSJan Kara 23693a45bb20SJeff Mahoney trace_btrfs_transaction_commit(trans->root); 23701abe9b8aSliubo 23712ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 2372a2de733cSArne Jansen 23739ed74f2dSJosef Bacik if (current->journal_info == trans) 23749ed74f2dSJosef Bacik current->journal_info = NULL; 23759ed74f2dSJosef Bacik 23762c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 237724bbcf04SYan, Zheng 237879154b1bSChris Mason return ret; 237949b25e05SJeff Mahoney 238056e9f6eaSDavid Sterba unlock_tree_log: 238156e9f6eaSDavid Sterba mutex_unlock(&fs_info->tree_log_mutex); 238256e9f6eaSDavid Sterba unlock_reloc: 238356e9f6eaSDavid Sterba mutex_unlock(&fs_info->reloc_mutex); 23846cf7f77eSWang Shilong scrub_continue: 23852ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 238649b25e05SJeff Mahoney cleanup_transaction: 2387dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 2388c7cc64a9SDavid Sterba btrfs_cleanup_pending_block_groups(trans); 23894fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 23900e721106SJosef Bacik trans->block_rsv = NULL; 23910b246afaSJeff Mahoney btrfs_warn(fs_info, "Skipping commit of aborted transaction."); 239249b25e05SJeff Mahoney if (current->journal_info == trans) 239349b25e05SJeff Mahoney current->journal_info = NULL; 239497cb39bbSNikolay Borisov cleanup_transaction(trans, ret); 239549b25e05SJeff Mahoney 239649b25e05SJeff Mahoney return ret; 239779154b1bSChris Mason } 239879154b1bSChris Mason 2399d352ac68SChris Mason /* 24009d1a2a3aSDavid Sterba * return < 0 if error 24019d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 24029d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 24039d1a2a3aSDavid Sterba * 24049d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 24059d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 24069d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 24079d1a2a3aSDavid Sterba * few seconds later. 2408d352ac68SChris Mason */ 24099d1a2a3aSDavid Sterba int btrfs_clean_one_deleted_snapshot(struct btrfs_root *root) 2410e9d0b13bSChris Mason { 24119d1a2a3aSDavid Sterba int ret; 24125d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 2413e9d0b13bSChris Mason 2414a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 24159d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 24169d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 24179d1a2a3aSDavid Sterba return 0; 24189d1a2a3aSDavid Sterba } 24199d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 24209d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2421cfad392bSJosef Bacik list_del_init(&root->root_list); 2422a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 24235d4f98a2SYan Zheng 24244fd786e6SMisono Tomohiro btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid); 242576dda93cSYan, Zheng 242616cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 242716cdcec7SMiao Xie 242876dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 242976dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 24302c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 0, 0); 243176dda93cSYan, Zheng else 24322c536799SJeff Mahoney ret = btrfs_drop_snapshot(root, NULL, 1, 0); 243332471dc2SDavid Sterba 24346596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2435e9d0b13bSChris Mason } 2436572d9ab7SDavid Sterba 2437572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2438572d9ab7SDavid Sterba { 2439572d9ab7SDavid Sterba unsigned long prev; 2440572d9ab7SDavid Sterba unsigned long bit; 2441572d9ab7SDavid Sterba 24426c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2443572d9ab7SDavid Sterba if (!prev) 2444572d9ab7SDavid Sterba return; 2445572d9ab7SDavid Sterba 24467e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_SET_INODE_MAP_CACHE; 24477e1876acSDavid Sterba if (prev & bit) 24487e1876acSDavid Sterba btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); 24497e1876acSDavid Sterba prev &= ~bit; 24507e1876acSDavid Sterba 24517e1876acSDavid Sterba bit = 1 << BTRFS_PENDING_CLEAR_INODE_MAP_CACHE; 24527e1876acSDavid Sterba if (prev & bit) 24537e1876acSDavid Sterba btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); 24547e1876acSDavid Sterba prev &= ~bit; 24557e1876acSDavid Sterba 2456d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2457d51033d0SDavid Sterba if (prev & bit) 2458d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2459d51033d0SDavid Sterba prev &= ~bit; 2460d51033d0SDavid Sterba 2461572d9ab7SDavid Sterba if (prev) 2462572d9ab7SDavid Sterba btrfs_warn(fs_info, 2463572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2464572d9ab7SDavid Sterba } 2465