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> 9ab3c5c18SSweet Tea Dorminy #include <linux/sched/mm.h> 10d3c2fdcfSChris Mason #include <linux/writeback.h> 115f39d397SChris Mason #include <linux/pagemap.h> 125f2cc086SChris Mason #include <linux/blkdev.h> 138ea05e3aSAlexander Block #include <linux/uuid.h> 14e55958c8SIoannis Angelakopoulos #include <linux/timekeeping.h> 15602cbe91SDavid Sterba #include "misc.h" 1679154b1bSChris Mason #include "ctree.h" 1779154b1bSChris Mason #include "disk-io.h" 1879154b1bSChris Mason #include "transaction.h" 19925baeddSChris Mason #include "locking.h" 20e02119d5SChris Mason #include "tree-log.h" 21733f4fbbSStefan Behrens #include "volumes.h" 228dabb742SStefan Behrens #include "dev-replace.h" 23fcebe456SJosef Bacik #include "qgroup.h" 24aac0023cSJosef Bacik #include "block-group.h" 259c343784SJosef Bacik #include "space-info.h" 26d3575156SNaohiro Aota #include "zoned.h" 27c7f13d42SJosef Bacik #include "fs.h" 2807e81dc9SJosef Bacik #include "accessors.h" 2979154b1bSChris Mason 30956504a3SJosef Bacik static struct kmem_cache *btrfs_trans_handle_cachep; 31956504a3SJosef Bacik 32fc7cbcd4SDavid Sterba #define BTRFS_ROOT_TRANS_TAG 0 330f7d52f4SChris Mason 3461c047b5SQu Wenruo /* 3561c047b5SQu Wenruo * Transaction states and transitions 3661c047b5SQu Wenruo * 3761c047b5SQu Wenruo * No running transaction (fs tree blocks are not modified) 3861c047b5SQu Wenruo * | 3961c047b5SQu Wenruo * | To next stage: 4061c047b5SQu Wenruo * | Call start_transaction() variants. Except btrfs_join_transaction_nostart(). 4161c047b5SQu Wenruo * V 4261c047b5SQu Wenruo * Transaction N [[TRANS_STATE_RUNNING]] 4361c047b5SQu Wenruo * | 4461c047b5SQu Wenruo * | New trans handles can be attached to transaction N by calling all 4561c047b5SQu Wenruo * | start_transaction() variants. 4661c047b5SQu Wenruo * | 4761c047b5SQu Wenruo * | To next stage: 4861c047b5SQu Wenruo * | Call btrfs_commit_transaction() on any trans handle attached to 4961c047b5SQu Wenruo * | transaction N 5061c047b5SQu Wenruo * V 5161c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_START]] 5261c047b5SQu Wenruo * | 5361c047b5SQu Wenruo * | Will wait for previous running transaction to completely finish if there 5461c047b5SQu Wenruo * | is one 5561c047b5SQu Wenruo * | 5661c047b5SQu Wenruo * | Then one of the following happes: 5761c047b5SQu Wenruo * | - Wait for all other trans handle holders to release. 5861c047b5SQu Wenruo * | The btrfs_commit_transaction() caller will do the commit work. 5961c047b5SQu Wenruo * | - Wait for current transaction to be committed by others. 6061c047b5SQu Wenruo * | Other btrfs_commit_transaction() caller will do the commit work. 6161c047b5SQu Wenruo * | 6261c047b5SQu Wenruo * | At this stage, only btrfs_join_transaction*() variants can attach 6361c047b5SQu Wenruo * | to this running transaction. 6461c047b5SQu Wenruo * | All other variants will wait for current one to finish and attach to 6561c047b5SQu Wenruo * | transaction N+1. 6661c047b5SQu Wenruo * | 6761c047b5SQu Wenruo * | To next stage: 6861c047b5SQu Wenruo * | Caller is chosen to commit transaction N, and all other trans handle 6961c047b5SQu Wenruo * | haven been released. 7061c047b5SQu Wenruo * V 7161c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_DOING]] 7261c047b5SQu Wenruo * | 7361c047b5SQu Wenruo * | The heavy lifting transaction work is started. 7461c047b5SQu Wenruo * | From running delayed refs (modifying extent tree) to creating pending 7561c047b5SQu Wenruo * | snapshots, running qgroups. 7661c047b5SQu Wenruo * | In short, modify supporting trees to reflect modifications of subvolume 7761c047b5SQu Wenruo * | trees. 7861c047b5SQu Wenruo * | 7961c047b5SQu Wenruo * | At this stage, all start_transaction() calls will wait for this 8061c047b5SQu Wenruo * | transaction to finish and attach to transaction N+1. 8161c047b5SQu Wenruo * | 8261c047b5SQu Wenruo * | To next stage: 8361c047b5SQu Wenruo * | Until all supporting trees are updated. 8461c047b5SQu Wenruo * V 8561c047b5SQu Wenruo * Transaction N [[TRANS_STATE_UNBLOCKED]] 8661c047b5SQu Wenruo * | Transaction N+1 8761c047b5SQu Wenruo * | All needed trees are modified, thus we only [[TRANS_STATE_RUNNING]] 8861c047b5SQu Wenruo * | need to write them back to disk and update | 8961c047b5SQu Wenruo * | super blocks. | 9061c047b5SQu Wenruo * | | 9161c047b5SQu Wenruo * | At this stage, new transaction is allowed to | 9261c047b5SQu Wenruo * | start. | 9361c047b5SQu Wenruo * | All new start_transaction() calls will be | 9461c047b5SQu Wenruo * | attached to transid N+1. | 9561c047b5SQu Wenruo * | | 9661c047b5SQu Wenruo * | To next stage: | 9761c047b5SQu Wenruo * | Until all tree blocks are super blocks are | 9861c047b5SQu Wenruo * | written to block devices | 9961c047b5SQu Wenruo * V | 10061c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMPLETED]] V 10161c047b5SQu Wenruo * All tree blocks and super blocks are written. Transaction N+1 10261c047b5SQu Wenruo * This transaction is finished and all its [[TRANS_STATE_COMMIT_START]] 10361c047b5SQu Wenruo * data structures will be cleaned up. | Life goes on 10461c047b5SQu Wenruo */ 105e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 1064a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 107bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH), 108bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_DOING] = (__TRANS_START | 1094a9d8bdeSMiao Xie __TRANS_ATTACH | 110a6d155d2SFilipe Manana __TRANS_JOIN | 111a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 112bcf3a3e7SNikolay Borisov [TRANS_STATE_UNBLOCKED] = (__TRANS_START | 1134a9d8bdeSMiao Xie __TRANS_ATTACH | 1144a9d8bdeSMiao Xie __TRANS_JOIN | 115a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 116a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 117d0c2f4faSFilipe Manana [TRANS_STATE_SUPER_COMMITTED] = (__TRANS_START | 118d0c2f4faSFilipe Manana __TRANS_ATTACH | 119d0c2f4faSFilipe Manana __TRANS_JOIN | 120d0c2f4faSFilipe Manana __TRANS_JOIN_NOLOCK | 121d0c2f4faSFilipe Manana __TRANS_JOIN_NOSTART), 122bcf3a3e7SNikolay Borisov [TRANS_STATE_COMPLETED] = (__TRANS_START | 1234a9d8bdeSMiao Xie __TRANS_ATTACH | 1244a9d8bdeSMiao Xie __TRANS_JOIN | 125a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 126a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 1274a9d8bdeSMiao Xie }; 1284a9d8bdeSMiao Xie 129724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction) 13079154b1bSChris Mason { 1319b64f57dSElena Reshetova WARN_ON(refcount_read(&transaction->use_count) == 0); 1329b64f57dSElena Reshetova if (refcount_dec_and_test(&transaction->use_count)) { 133a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 1345c9d028bSLiu Bo WARN_ON(!RB_EMPTY_ROOT( 1355c9d028bSLiu Bo &transaction->delayed_refs.href_root.rb_root)); 13681f7eb00SJeff Mahoney WARN_ON(!RB_EMPTY_ROOT( 13781f7eb00SJeff Mahoney &transaction->delayed_refs.dirty_extent_root)); 1381262133bSJosef Bacik if (transaction->delayed_refs.pending_csums) 139ab8d0fc4SJeff Mahoney btrfs_err(transaction->fs_info, 140ab8d0fc4SJeff Mahoney "pending csums is %llu", 1411262133bSJosef Bacik transaction->delayed_refs.pending_csums); 1427785a663SFilipe Manana /* 1437785a663SFilipe Manana * If any block groups are found in ->deleted_bgs then it's 1447785a663SFilipe Manana * because the transaction was aborted and a commit did not 1457785a663SFilipe Manana * happen (things failed before writing the new superblock 1467785a663SFilipe Manana * and calling btrfs_finish_extent_commit()), so we can not 1477785a663SFilipe Manana * discard the physical locations of the block groups. 1487785a663SFilipe Manana */ 1497785a663SFilipe Manana while (!list_empty(&transaction->deleted_bgs)) { 15032da5386SDavid Sterba struct btrfs_block_group *cache; 1517785a663SFilipe Manana 1527785a663SFilipe Manana cache = list_first_entry(&transaction->deleted_bgs, 15332da5386SDavid Sterba struct btrfs_block_group, 1547785a663SFilipe Manana bg_list); 1557785a663SFilipe Manana list_del_init(&cache->bg_list); 1566b7304afSFilipe Manana btrfs_unfreeze_block_group(cache); 1577785a663SFilipe Manana btrfs_put_block_group(cache); 1587785a663SFilipe Manana } 159bbbf7243SNikolay Borisov WARN_ON(!list_empty(&transaction->dev_update_list)); 1604b5faeacSDavid Sterba kfree(transaction); 16179154b1bSChris Mason } 16278fae27eSChris Mason } 16379154b1bSChris Mason 164889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans) 165817d52f8SJosef Bacik { 166889bfa39SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 16716916a88SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1689e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 1699e351cc8SJosef Bacik 170dfba78dcSFilipe Manana /* 171dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 172dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 173dfba78dcSFilipe Manana */ 174dfba78dcSFilipe Manana ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING); 175dfba78dcSFilipe Manana 1769e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 177d96b3424SFilipe Manana 178d96b3424SFilipe Manana if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags)) 179d96b3424SFilipe Manana fs_info->last_reloc_trans = trans->transid; 180d96b3424SFilipe Manana 181889bfa39SJosef Bacik list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits, 1829e351cc8SJosef Bacik dirty_list) { 1839e351cc8SJosef Bacik list_del_init(&root->dirty_list); 184817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 185817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 18641e7acd3SNikolay Borisov extent_io_tree_release(&root->dirty_log_pages); 187370a11b8SQu Wenruo btrfs_qgroup_clean_swapped_blocks(root); 1889e351cc8SJosef Bacik } 1892b9dbef2SJosef Bacik 1902b9dbef2SJosef Bacik /* We can free old roots now. */ 191889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 192889bfa39SJosef Bacik while (!list_empty(&cur_trans->dropped_roots)) { 193889bfa39SJosef Bacik root = list_first_entry(&cur_trans->dropped_roots, 1942b9dbef2SJosef Bacik struct btrfs_root, root_list); 1952b9dbef2SJosef Bacik list_del_init(&root->root_list); 196889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 197889bfa39SJosef Bacik btrfs_free_log(trans, root); 1982b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 199889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 2002b9dbef2SJosef Bacik } 201889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 20227d56e62SJosef Bacik 2039e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 204817d52f8SJosef Bacik } 205817d52f8SJosef Bacik 2060860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 2070860adfdSMiao Xie unsigned int type) 2080860adfdSMiao Xie { 2090860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 2100860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 2110860adfdSMiao Xie } 2120860adfdSMiao Xie 2130860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 2140860adfdSMiao Xie unsigned int type) 2150860adfdSMiao Xie { 2160860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 2170860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 2180860adfdSMiao Xie } 2190860adfdSMiao Xie 2200860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 2210860adfdSMiao Xie unsigned int type) 2220860adfdSMiao Xie { 2230860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 2240860adfdSMiao Xie } 2250860adfdSMiao Xie 2260860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 2270860adfdSMiao Xie { 2280860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 229178260b2SMiao Xie } 230178260b2SMiao Xie 231d352ac68SChris Mason /* 23279bd3712SFilipe Manana * To be called after doing the chunk btree updates right after allocating a new 23379bd3712SFilipe Manana * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a 23479bd3712SFilipe Manana * chunk after all chunk btree updates and after finishing the second phase of 23579bd3712SFilipe Manana * chunk allocation (btrfs_create_pending_block_groups()) in case some block 23679bd3712SFilipe Manana * group had its chunk item insertion delayed to the second phase. 237fb6dea26SJosef Bacik */ 238fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) 239fb6dea26SJosef Bacik { 240fb6dea26SJosef Bacik struct btrfs_fs_info *fs_info = trans->fs_info; 241fb6dea26SJosef Bacik 242fb6dea26SJosef Bacik if (!trans->chunk_bytes_reserved) 243fb6dea26SJosef Bacik return; 244fb6dea26SJosef Bacik 245fb6dea26SJosef Bacik btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv, 24663f018beSNikolay Borisov trans->chunk_bytes_reserved, NULL); 247fb6dea26SJosef Bacik trans->chunk_bytes_reserved = 0; 248fb6dea26SJosef Bacik } 249fb6dea26SJosef Bacik 250fb6dea26SJosef Bacik /* 251d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 252d352ac68SChris Mason */ 2532ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info, 2542ff7e61eSJeff Mahoney unsigned int type) 25579154b1bSChris Mason { 25679154b1bSChris Mason struct btrfs_transaction *cur_trans; 257a4abeea4SJosef Bacik 25819ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 259d43317dcSChris Mason loop: 26049b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 26184961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) { 26219ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 26349b25e05SJeff Mahoney return -EROFS; 26449b25e05SJeff Mahoney } 26549b25e05SJeff Mahoney 26619ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 267a4abeea4SJosef Bacik if (cur_trans) { 268bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 26919ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 27049b25e05SJeff Mahoney return cur_trans->aborted; 271871383beSDavid Sterba } 2724a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 273178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 274178260b2SMiao Xie return -EBUSY; 275178260b2SMiao Xie } 2769b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 277a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 2780860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 27919ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 280e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 2815a9ba670SIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters); 282a4abeea4SJosef Bacik return 0; 283a4abeea4SJosef Bacik } 28419ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 285a4abeea4SJosef Bacik 286354aa0fbSMiao Xie /* 287354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 288354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 289354aa0fbSMiao Xie */ 290354aa0fbSMiao Xie if (type == TRANS_ATTACH) 291354aa0fbSMiao Xie return -ENOENT; 292354aa0fbSMiao Xie 2934a9d8bdeSMiao Xie /* 2944a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 2954a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 2964a9d8bdeSMiao Xie */ 2974a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 2984a9d8bdeSMiao Xie 2994b5faeacSDavid Sterba cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS); 300db5b493aSTsutomu Itoh if (!cur_trans) 301db5b493aSTsutomu Itoh return -ENOMEM; 302d43317dcSChris Mason 303e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 3045a9ba670SIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters); 305e1489b4fSIoannis Angelakopoulos 30619ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 30719ae4e81SJan Schmidt if (fs_info->running_transaction) { 308d43317dcSChris Mason /* 309d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 3104a9d8bdeSMiao Xie * to redo the checks above 311d43317dcSChris Mason */ 3125a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 313e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3144b5faeacSDavid Sterba kfree(cur_trans); 315d43317dcSChris Mason goto loop; 31684961539SJosef Bacik } else if (BTRFS_FS_ERROR(fs_info)) { 317e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 3185a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 319e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3204b5faeacSDavid Sterba kfree(cur_trans); 3217b8b92afSJosef Bacik return -EROFS; 322a4abeea4SJosef Bacik } 323d43317dcSChris Mason 324ab8d0fc4SJeff Mahoney cur_trans->fs_info = fs_info; 32548778179SFilipe Manana atomic_set(&cur_trans->pending_ordered, 0); 32648778179SFilipe Manana init_waitqueue_head(&cur_trans->pending_wait); 32713c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 3280860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 32979154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 33079154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 3314a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 332a4abeea4SJosef Bacik /* 333a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 334a4abeea4SJosef Bacik * commit the transaction. 335a4abeea4SJosef Bacik */ 3369b64f57dSElena Reshetova refcount_set(&cur_trans->use_count, 2); 3373204d33cSJosef Bacik cur_trans->flags = 0; 338afd48513SArnd Bergmann cur_trans->start_time = ktime_get_seconds(); 33956bec294SChris Mason 340a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 341a099d0fdSAlexandru Moise 3425c9d028bSLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT_CACHED; 3433368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 344d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 34520b297d6SJan Schmidt 34620b297d6SJan Schmidt /* 34720b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 34820b297d6SJan Schmidt * the log must never go across transaction boundaries. 34920b297d6SJan Schmidt */ 35020b297d6SJan Schmidt smp_mb(); 35131b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 3525d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n"); 35331b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 3545d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n"); 355fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 35620b297d6SJan Schmidt 35756bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 35856bec294SChris Mason 3593063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 360bbbf7243SNikolay Borisov INIT_LIST_HEAD(&cur_trans->dev_update_list); 3619e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 362ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 3631bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 3642b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 3651bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 366ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 367e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 3682b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 369d3575156SNaohiro Aota INIT_LIST_HEAD(&cur_trans->releasing_ebs); 370d3575156SNaohiro Aota spin_lock_init(&cur_trans->releasing_ebs_lock); 37119ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 372c258d6e3SQu Wenruo extent_io_tree_init(fs_info, &cur_trans->dirty_pages, 373efb0645bSJosef Bacik IO_TREE_TRANS_DIRTY_PAGES, NULL); 374fe119a6eSNikolay Borisov extent_io_tree_init(fs_info, &cur_trans->pinned_extents, 375fe119a6eSNikolay Borisov IO_TREE_FS_PINNED_EXTENTS, NULL); 37619ae4e81SJan Schmidt fs_info->generation++; 37719ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 37819ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 37949b25e05SJeff Mahoney cur_trans->aborted = 0; 38019ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 38115ee9bc7SJosef Bacik 38279154b1bSChris Mason return 0; 38379154b1bSChris Mason } 38479154b1bSChris Mason 385d352ac68SChris Mason /* 38692a7cc42SQu Wenruo * This does all the record keeping required to make sure that a shareable root 38792a7cc42SQu Wenruo * is properly recorded in a given transaction. This is required to make sure 38892a7cc42SQu Wenruo * the old root from before we joined the transaction is deleted when the 38992a7cc42SQu Wenruo * transaction commits. 390d352ac68SChris Mason */ 3917585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 3926426c7adSQu Wenruo struct btrfs_root *root, 3936426c7adSQu Wenruo int force) 3946702ed49SChris Mason { 3950b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 39603a7e111SJosef Bacik int ret = 0; 3970b246afaSJeff Mahoney 39892a7cc42SQu Wenruo if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 3996426c7adSQu Wenruo root->last_trans < trans->transid) || force) { 4004d31778aSQu Wenruo WARN_ON(!force && root->commit_root != root->node); 4015d4f98a2SYan Zheng 4027585717fSChris Mason /* 40327cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 4047585717fSChris Mason * we have the reloc mutex held now, so there 4057585717fSChris Mason * is only one writer in this function 4067585717fSChris Mason */ 40727cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4087585717fSChris Mason 40927cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 4107585717fSChris Mason * they find our root->last_trans update 4117585717fSChris Mason */ 4127585717fSChris Mason smp_wmb(); 4137585717fSChris Mason 414fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 4156426c7adSQu Wenruo if (root->last_trans == trans->transid && !force) { 416fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 417a4abeea4SJosef Bacik return 0; 418a4abeea4SJosef Bacik } 419fc7cbcd4SDavid Sterba radix_tree_tag_set(&fs_info->fs_roots_radix, 4206702ed49SChris Mason (unsigned long)root->root_key.objectid, 4216702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 422fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 4237585717fSChris Mason root->last_trans = trans->transid; 4247585717fSChris Mason 4257585717fSChris Mason /* this is pretty tricky. We don't want to 4267585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 4277585717fSChris Mason * unless we're really doing the first setup for this root in 4287585717fSChris Mason * this transaction. 4297585717fSChris Mason * 4307585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 4317585717fSChris Mason * if we want to take the expensive mutex. 4327585717fSChris Mason * 4337585717fSChris Mason * But, we have to set root->last_trans before we 4347585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 4357585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 43627cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 4377585717fSChris Mason * fixing up the reloc trees and everyone must wait. 4387585717fSChris Mason * 4397585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 4407585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 4417585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 4427585717fSChris Mason * done before we pop in the zero below 4437585717fSChris Mason */ 44403a7e111SJosef Bacik ret = btrfs_init_reloc_root(trans, root); 445c7548af6SChris Mason smp_mb__before_atomic(); 44627cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4476702ed49SChris Mason } 44803a7e111SJosef Bacik return ret; 4496702ed49SChris Mason } 4505d4f98a2SYan Zheng 4517585717fSChris Mason 4522b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 4532b9dbef2SJosef Bacik struct btrfs_root *root) 4542b9dbef2SJosef Bacik { 4550b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4562b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 4572b9dbef2SJosef Bacik 4582b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 4592b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 4602b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 4612b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 4622b9dbef2SJosef Bacik 4632b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 464fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 465fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 4662b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 4672b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 468fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 4692b9dbef2SJosef Bacik } 4702b9dbef2SJosef Bacik 4717585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 4727585717fSChris Mason struct btrfs_root *root) 4737585717fSChris Mason { 4740b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4751409e6ccSJosef Bacik int ret; 4760b246afaSJeff Mahoney 47792a7cc42SQu Wenruo if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) 4787585717fSChris Mason return 0; 4797585717fSChris Mason 4807585717fSChris Mason /* 48127cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 4827585717fSChris Mason * and barriers 4837585717fSChris Mason */ 4847585717fSChris Mason smp_rmb(); 4857585717fSChris Mason if (root->last_trans == trans->transid && 48627cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 4877585717fSChris Mason return 0; 4887585717fSChris Mason 4890b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 4901409e6ccSJosef Bacik ret = record_root_in_trans(trans, root, 0); 4910b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 4927585717fSChris Mason 4931409e6ccSJosef Bacik return ret; 4947585717fSChris Mason } 4957585717fSChris Mason 4964a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 4974a9d8bdeSMiao Xie { 4983296bf56SQu Wenruo return (trans->state >= TRANS_STATE_COMMIT_START && 499501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 500bf31f87fSDavid Sterba !TRANS_ABORTED(trans)); 5014a9d8bdeSMiao Xie } 5024a9d8bdeSMiao Xie 503d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 504d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 505d352ac68SChris Mason * transaction might not be fully on disk. 506d352ac68SChris Mason */ 5072ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info) 50879154b1bSChris Mason { 509f9295749SChris Mason struct btrfs_transaction *cur_trans; 51079154b1bSChris Mason 5110b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 5120b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 5134a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 5149b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 5150b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 51672d63ed6SLi Zefan 5173e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 5180b246afaSJeff Mahoney wait_event(fs_info->transaction_wait, 519501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 520bf31f87fSDavid Sterba TRANS_ABORTED(cur_trans)); 521724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 522a4abeea4SJosef Bacik } else { 5230b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 524f9295749SChris Mason } 52537d1aeeeSChris Mason } 52637d1aeeeSChris Mason 5272ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type) 52837d1aeeeSChris Mason { 5290b246afaSJeff Mahoney if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) 530a4abeea4SJosef Bacik return 0; 531a4abeea4SJosef Bacik 53292e2f7e3SNikolay Borisov if (type == TRANS_START) 533a4abeea4SJosef Bacik return 1; 534a4abeea4SJosef Bacik 535a22285a6SYan, Zheng return 0; 536a22285a6SYan, Zheng } 537a22285a6SYan, Zheng 53820dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 53920dd2cbfSMiao Xie { 5400b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5410b246afaSJeff Mahoney 5420b246afaSJeff Mahoney if (!fs_info->reloc_ctl || 54392a7cc42SQu Wenruo !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) || 54420dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 54520dd2cbfSMiao Xie root->reloc_root) 54620dd2cbfSMiao Xie return false; 54720dd2cbfSMiao Xie 54820dd2cbfSMiao Xie return true; 54920dd2cbfSMiao Xie } 55020dd2cbfSMiao Xie 55108e007d2SMiao Xie static struct btrfs_trans_handle * 5525aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 553003d7c59SJeff Mahoney unsigned int type, enum btrfs_reserve_flush_enum flush, 554003d7c59SJeff Mahoney bool enforce_qgroups) 555a22285a6SYan, Zheng { 5560b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 557ba2c4d4eSJosef Bacik struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; 558a22285a6SYan, Zheng struct btrfs_trans_handle *h; 559a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 560b5009945SJosef Bacik u64 num_bytes = 0; 561c5567237SArne Jansen u64 qgroup_reserved = 0; 56220dd2cbfSMiao Xie bool reloc_reserved = false; 5639c343784SJosef Bacik bool do_chunk_alloc = false; 56420dd2cbfSMiao Xie int ret; 565acce952bSliubo 56684961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) 567acce952bSliubo return ERR_PTR(-EROFS); 5682a1eb461SJosef Bacik 56946c4e71eSFilipe Manana if (current->journal_info) { 5700860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 5712a1eb461SJosef Bacik h = current->journal_info; 572b50fff81SDavid Sterba refcount_inc(&h->use_count); 573b50fff81SDavid Sterba WARN_ON(refcount_read(&h->use_count) > 2); 5742a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 5752a1eb461SJosef Bacik h->block_rsv = NULL; 5762a1eb461SJosef Bacik goto got_it; 5772a1eb461SJosef Bacik } 578b5009945SJosef Bacik 579b5009945SJosef Bacik /* 580b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 581b5009945SJosef Bacik * the appropriate flushing if need be. 582b5009945SJosef Bacik */ 583003d7c59SJeff Mahoney if (num_items && root != fs_info->chunk_root) { 584ba2c4d4eSJosef Bacik struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv; 585ba2c4d4eSJosef Bacik u64 delayed_refs_bytes = 0; 586ba2c4d4eSJosef Bacik 5870b246afaSJeff Mahoney qgroup_reserved = num_items * fs_info->nodesize; 588733e03a0SQu Wenruo ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, 589003d7c59SJeff Mahoney enforce_qgroups); 590c5567237SArne Jansen if (ret) 591c5567237SArne Jansen return ERR_PTR(ret); 592c5567237SArne Jansen 593ba2c4d4eSJosef Bacik /* 594ba2c4d4eSJosef Bacik * We want to reserve all the bytes we may need all at once, so 595ba2c4d4eSJosef Bacik * we only do 1 enospc flushing cycle per transaction start. We 596ba2c4d4eSJosef Bacik * accomplish this by simply assuming we'll do 2 x num_items 597ba2c4d4eSJosef Bacik * worth of delayed refs updates in this trans handle, and 598ba2c4d4eSJosef Bacik * refill that amount for whatever is missing in the reserve. 599ba2c4d4eSJosef Bacik */ 6002bd36e7bSJosef Bacik num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items); 6017f9fe614SJosef Bacik if (flush == BTRFS_RESERVE_FLUSH_ALL && 602748f553cSDavid Sterba btrfs_block_rsv_full(delayed_refs_rsv) == 0) { 603ba2c4d4eSJosef Bacik delayed_refs_bytes = num_bytes; 604ba2c4d4eSJosef Bacik num_bytes <<= 1; 605ba2c4d4eSJosef Bacik } 606ba2c4d4eSJosef Bacik 60720dd2cbfSMiao Xie /* 60820dd2cbfSMiao Xie * Do the reservation for the relocation root creation 60920dd2cbfSMiao Xie */ 610ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 6110b246afaSJeff Mahoney num_bytes += fs_info->nodesize; 61220dd2cbfSMiao Xie reloc_reserved = true; 61320dd2cbfSMiao Xie } 61420dd2cbfSMiao Xie 6159270501cSJosef Bacik ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush); 616ba2c4d4eSJosef Bacik if (ret) 617ba2c4d4eSJosef Bacik goto reserve_fail; 618ba2c4d4eSJosef Bacik if (delayed_refs_bytes) { 619ba2c4d4eSJosef Bacik btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv, 620ba2c4d4eSJosef Bacik delayed_refs_bytes); 621ba2c4d4eSJosef Bacik num_bytes -= delayed_refs_bytes; 622ba2c4d4eSJosef Bacik } 6239c343784SJosef Bacik 6249c343784SJosef Bacik if (rsv->space_info->force_alloc) 6259c343784SJosef Bacik do_chunk_alloc = true; 626ba2c4d4eSJosef Bacik } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL && 627748f553cSDavid Sterba !btrfs_block_rsv_full(delayed_refs_rsv)) { 628ba2c4d4eSJosef Bacik /* 629ba2c4d4eSJosef Bacik * Some people call with btrfs_start_transaction(root, 0) 630ba2c4d4eSJosef Bacik * because they can be throttled, but have some other mechanism 631ba2c4d4eSJosef Bacik * for reserving space. We still want these guys to refill the 632ba2c4d4eSJosef Bacik * delayed block_rsv so just add 1 items worth of reservation 633ba2c4d4eSJosef Bacik * here. 634ba2c4d4eSJosef Bacik */ 635ba2c4d4eSJosef Bacik ret = btrfs_delayed_refs_rsv_refill(fs_info, flush); 636b5009945SJosef Bacik if (ret) 637843fcf35SMiao Xie goto reserve_fail; 638b5009945SJosef Bacik } 639a22285a6SYan, Zheng again: 640f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 641843fcf35SMiao Xie if (!h) { 642843fcf35SMiao Xie ret = -ENOMEM; 643843fcf35SMiao Xie goto alloc_fail; 644843fcf35SMiao Xie } 645a22285a6SYan, Zheng 64698114659SJosef Bacik /* 64798114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 64898114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 64998114659SJosef Bacik * because we're already holding a ref. We need this because we could 65098114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 65198114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 652354aa0fbSMiao Xie * 653354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 654354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 65598114659SJosef Bacik */ 6560860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 6570b246afaSJeff Mahoney sb_start_intwrite(fs_info->sb); 658b2b5ef5cSJan Kara 6592ff7e61eSJeff Mahoney if (may_wait_transaction(fs_info, type)) 6602ff7e61eSJeff Mahoney wait_current_trans(fs_info); 661a22285a6SYan, Zheng 662a4abeea4SJosef Bacik do { 6632ff7e61eSJeff Mahoney ret = join_transaction(fs_info, type); 664178260b2SMiao Xie if (ret == -EBUSY) { 6652ff7e61eSJeff Mahoney wait_current_trans(fs_info); 666a6d155d2SFilipe Manana if (unlikely(type == TRANS_ATTACH || 667a6d155d2SFilipe Manana type == TRANS_JOIN_NOSTART)) 668178260b2SMiao Xie ret = -ENOENT; 669178260b2SMiao Xie } 670a4abeea4SJosef Bacik } while (ret == -EBUSY); 671a4abeea4SJosef Bacik 672a43f7f82SLiu Bo if (ret < 0) 673843fcf35SMiao Xie goto join_fail; 6740f7d52f4SChris Mason 6750b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 676a22285a6SYan, Zheng 677a22285a6SYan, Zheng h->transid = cur_trans->transid; 678a22285a6SYan, Zheng h->transaction = cur_trans; 679b50fff81SDavid Sterba refcount_set(&h->use_count, 1); 68064b63580SJeff Mahoney h->fs_info = root->fs_info; 6817174109cSQu Wenruo 682a698d075SMiao Xie h->type = type; 683ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 684b7ec40d7SChris Mason 685a22285a6SYan, Zheng smp_mb(); 6863296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START && 6872ff7e61eSJeff Mahoney may_wait_transaction(fs_info, type)) { 688abdd2e80SFilipe Manana current->journal_info = h; 6893a45bb20SJeff Mahoney btrfs_commit_transaction(h); 690a22285a6SYan, Zheng goto again; 691a22285a6SYan, Zheng } 6929ed74f2dSJosef Bacik 693b5009945SJosef Bacik if (num_bytes) { 6940b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 6952bcc0328SLiu Bo h->transid, num_bytes, 1); 6960b246afaSJeff Mahoney h->block_rsv = &fs_info->trans_block_rsv; 697b5009945SJosef Bacik h->bytes_reserved = num_bytes; 69820dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 699a22285a6SYan, Zheng } 700a22285a6SYan, Zheng 7012a1eb461SJosef Bacik got_it: 702bcf3a3e7SNikolay Borisov if (!current->journal_info) 703a22285a6SYan, Zheng current->journal_info = h; 704fcc99734SQu Wenruo 705fcc99734SQu Wenruo /* 7069c343784SJosef Bacik * If the space_info is marked ALLOC_FORCE then we'll get upgraded to 7079c343784SJosef Bacik * ALLOC_FORCE the first run through, and then we won't allocate for 7089c343784SJosef Bacik * anybody else who races in later. We don't care about the return 7099c343784SJosef Bacik * value here. 7109c343784SJosef Bacik */ 7119c343784SJosef Bacik if (do_chunk_alloc && num_bytes) { 7129c343784SJosef Bacik u64 flags = h->block_rsv->space_info->flags; 7139c343784SJosef Bacik 7149c343784SJosef Bacik btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags), 7159c343784SJosef Bacik CHUNK_ALLOC_NO_FORCE); 7169c343784SJosef Bacik } 7179c343784SJosef Bacik 7189c343784SJosef Bacik /* 719fcc99734SQu Wenruo * btrfs_record_root_in_trans() needs to alloc new extents, and may 720fcc99734SQu Wenruo * call btrfs_join_transaction() while we're also starting a 721fcc99734SQu Wenruo * transaction. 722fcc99734SQu Wenruo * 723fcc99734SQu Wenruo * Thus it need to be called after current->journal_info initialized, 724fcc99734SQu Wenruo * or we can deadlock. 725fcc99734SQu Wenruo */ 72668075ea8SJosef Bacik ret = btrfs_record_root_in_trans(h, root); 72768075ea8SJosef Bacik if (ret) { 72868075ea8SJosef Bacik /* 72968075ea8SJosef Bacik * The transaction handle is fully initialized and linked with 73068075ea8SJosef Bacik * other structures so it needs to be ended in case of errors, 73168075ea8SJosef Bacik * not just freed. 73268075ea8SJosef Bacik */ 73368075ea8SJosef Bacik btrfs_end_transaction(h); 73468075ea8SJosef Bacik return ERR_PTR(ret); 73568075ea8SJosef Bacik } 736fcc99734SQu Wenruo 73779154b1bSChris Mason return h; 738843fcf35SMiao Xie 739843fcf35SMiao Xie join_fail: 7400860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 7410b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 742843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 743843fcf35SMiao Xie alloc_fail: 744843fcf35SMiao Xie if (num_bytes) 7452ff7e61eSJeff Mahoney btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, 74663f018beSNikolay Borisov num_bytes, NULL); 747843fcf35SMiao Xie reserve_fail: 748733e03a0SQu Wenruo btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); 749843fcf35SMiao Xie return ERR_PTR(ret); 75079154b1bSChris Mason } 75179154b1bSChris Mason 752f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 7535aed1dd8SAlexandru Moise unsigned int num_items) 754f9295749SChris Mason { 75508e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 756003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, true); 757f9295749SChris Mason } 758003d7c59SJeff Mahoney 7598eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 7608eab77ffSFilipe Manana struct btrfs_root *root, 7617f9fe614SJosef Bacik unsigned int num_items) 7628eab77ffSFilipe Manana { 7637f9fe614SJosef Bacik return start_transaction(root, num_items, TRANS_START, 7647f9fe614SJosef Bacik BTRFS_RESERVE_FLUSH_ALL_STEAL, false); 7658eab77ffSFilipe Manana } 7668407aa46SMiao Xie 7677a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 768f9295749SChris Mason { 769003d7c59SJeff Mahoney return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH, 770003d7c59SJeff Mahoney true); 771f9295749SChris Mason } 772f9295749SChris Mason 7738d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root) 7740af3d00bSJosef Bacik { 775575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 776003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 7770af3d00bSJosef Bacik } 7780af3d00bSJosef Bacik 779d4edf39bSMiao Xie /* 780a6d155d2SFilipe Manana * Similar to regular join but it never starts a transaction when none is 781a6d155d2SFilipe Manana * running or after waiting for the current one to finish. 782a6d155d2SFilipe Manana */ 783a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root) 784a6d155d2SFilipe Manana { 785a6d155d2SFilipe Manana return start_transaction(root, 0, TRANS_JOIN_NOSTART, 786a6d155d2SFilipe Manana BTRFS_RESERVE_NO_FLUSH, true); 787a6d155d2SFilipe Manana } 788a6d155d2SFilipe Manana 789a6d155d2SFilipe Manana /* 790d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 791d4edf39bSMiao Xie * 792d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 793d4edf39bSMiao Xie * don't want to start a new one. 794d4edf39bSMiao Xie * 795d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 796d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 797d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 798d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 799d4edf39bSMiao Xie * invoke 800d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 801d4edf39bSMiao Xie */ 802354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 80360376ce4SJosef Bacik { 804575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_ATTACH, 805003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 80660376ce4SJosef Bacik } 80760376ce4SJosef Bacik 808d4edf39bSMiao Xie /* 80990b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 810d4edf39bSMiao Xie * 81152042d8eSAndrea Gelmini * It is similar to the above function, the difference is this one 812d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 813d4edf39bSMiao Xie * complete. 814d4edf39bSMiao Xie */ 815d4edf39bSMiao Xie struct btrfs_trans_handle * 816d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 817d4edf39bSMiao Xie { 818d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 819d4edf39bSMiao Xie 820575a75d6SAlexandru Moise trans = start_transaction(root, 0, TRANS_ATTACH, 821003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 8228d9e220cSAl Viro if (trans == ERR_PTR(-ENOENT)) 8232ff7e61eSJeff Mahoney btrfs_wait_for_commit(root->fs_info, 0); 824d4edf39bSMiao Xie 825d4edf39bSMiao Xie return trans; 826d4edf39bSMiao Xie } 827d4edf39bSMiao Xie 828d0c2f4faSFilipe Manana /* Wait for a transaction commit to reach at least the given state. */ 829d0c2f4faSFilipe Manana static noinline void wait_for_commit(struct btrfs_transaction *commit, 830d0c2f4faSFilipe Manana const enum btrfs_trans_state min_state) 83189ce8a63SChris Mason { 8325fd76bf3SOmar Sandoval struct btrfs_fs_info *fs_info = commit->fs_info; 8335fd76bf3SOmar Sandoval u64 transid = commit->transid; 8345fd76bf3SOmar Sandoval bool put = false; 8355fd76bf3SOmar Sandoval 8363e738c53SIoannis Angelakopoulos /* 8373e738c53SIoannis Angelakopoulos * At the moment this function is called with min_state either being 8383e738c53SIoannis Angelakopoulos * TRANS_STATE_COMPLETED or TRANS_STATE_SUPER_COMMITTED. 8393e738c53SIoannis Angelakopoulos */ 8403e738c53SIoannis Angelakopoulos if (min_state == TRANS_STATE_COMPLETED) 8413e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 8423e738c53SIoannis Angelakopoulos else 8433e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 8443e738c53SIoannis Angelakopoulos 8455fd76bf3SOmar Sandoval while (1) { 846d0c2f4faSFilipe Manana wait_event(commit->commit_wait, commit->state >= min_state); 8475fd76bf3SOmar Sandoval if (put) 8485fd76bf3SOmar Sandoval btrfs_put_transaction(commit); 8495fd76bf3SOmar Sandoval 8505fd76bf3SOmar Sandoval if (min_state < TRANS_STATE_COMPLETED) 8515fd76bf3SOmar Sandoval break; 8525fd76bf3SOmar Sandoval 8535fd76bf3SOmar Sandoval /* 8545fd76bf3SOmar Sandoval * A transaction isn't really completed until all of the 8555fd76bf3SOmar Sandoval * previous transactions are completed, but with fsync we can 8565fd76bf3SOmar Sandoval * end up with SUPER_COMMITTED transactions before a COMPLETED 8575fd76bf3SOmar Sandoval * transaction. Wait for those. 8585fd76bf3SOmar Sandoval */ 8595fd76bf3SOmar Sandoval 8605fd76bf3SOmar Sandoval spin_lock(&fs_info->trans_lock); 8615fd76bf3SOmar Sandoval commit = list_first_entry_or_null(&fs_info->trans_list, 8625fd76bf3SOmar Sandoval struct btrfs_transaction, 8635fd76bf3SOmar Sandoval list); 8645fd76bf3SOmar Sandoval if (!commit || commit->transid > transid) { 8655fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 8665fd76bf3SOmar Sandoval break; 8675fd76bf3SOmar Sandoval } 8685fd76bf3SOmar Sandoval refcount_inc(&commit->use_count); 8695fd76bf3SOmar Sandoval put = true; 8705fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 8715fd76bf3SOmar Sandoval } 87289ce8a63SChris Mason } 87389ce8a63SChris Mason 8742ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid) 87546204592SSage Weil { 87646204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 8778cd2807fSMiao Xie int ret = 0; 87846204592SSage Weil 87946204592SSage Weil if (transid) { 8800b246afaSJeff Mahoney if (transid <= fs_info->last_trans_committed) 881a4abeea4SJosef Bacik goto out; 88246204592SSage Weil 88346204592SSage Weil /* find specified transaction */ 8840b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 8850b246afaSJeff Mahoney list_for_each_entry(t, &fs_info->trans_list, list) { 88646204592SSage Weil if (t->transid == transid) { 88746204592SSage Weil cur_trans = t; 8889b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 8898cd2807fSMiao Xie ret = 0; 89046204592SSage Weil break; 89146204592SSage Weil } 8928cd2807fSMiao Xie if (t->transid > transid) { 8938cd2807fSMiao Xie ret = 0; 89446204592SSage Weil break; 89546204592SSage Weil } 8968cd2807fSMiao Xie } 8970b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 89842383020SSage Weil 89942383020SSage Weil /* 90042383020SSage Weil * The specified transaction doesn't exist, or we 90142383020SSage Weil * raced with btrfs_commit_transaction 90242383020SSage Weil */ 90342383020SSage Weil if (!cur_trans) { 9040b246afaSJeff Mahoney if (transid > fs_info->last_trans_committed) 90542383020SSage Weil ret = -EINVAL; 9068cd2807fSMiao Xie goto out; 90742383020SSage Weil } 90846204592SSage Weil } else { 90946204592SSage Weil /* find newest transaction that is committing | committed */ 9100b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 9110b246afaSJeff Mahoney list_for_each_entry_reverse(t, &fs_info->trans_list, 91246204592SSage Weil list) { 9134a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 9144a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 9153473f3c0SJosef Bacik break; 91646204592SSage Weil cur_trans = t; 9179b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 91846204592SSage Weil break; 91946204592SSage Weil } 92046204592SSage Weil } 9210b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 92246204592SSage Weil if (!cur_trans) 923a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 92446204592SSage Weil } 92546204592SSage Weil 926d0c2f4faSFilipe Manana wait_for_commit(cur_trans, TRANS_STATE_COMPLETED); 927724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 928a4abeea4SJosef Bacik out: 92946204592SSage Weil return ret; 93046204592SSage Weil } 93146204592SSage Weil 9322ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info) 93337d1aeeeSChris Mason { 9342ff7e61eSJeff Mahoney wait_current_trans(fs_info); 93537d1aeeeSChris Mason } 93637d1aeeeSChris Mason 9378a8f4deaSNikolay Borisov static bool should_end_transaction(struct btrfs_trans_handle *trans) 9388929ecfaSYan, Zheng { 9392ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 9400b246afaSJeff Mahoney 94164403612SJosef Bacik if (btrfs_check_space_for_delayed_refs(fs_info)) 9428a8f4deaSNikolay Borisov return true; 94336ba022aSJosef Bacik 9442ff7e61eSJeff Mahoney return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5); 9458929ecfaSYan, Zheng } 9468929ecfaSYan, Zheng 947a2633b6aSNikolay Borisov bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans) 9488929ecfaSYan, Zheng { 9498929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 9508929ecfaSYan, Zheng 9513296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START || 952e19eb11fSJosef Bacik test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags)) 953a2633b6aSNikolay Borisov return true; 9548929ecfaSYan, Zheng 9552ff7e61eSJeff Mahoney return should_end_transaction(trans); 9568929ecfaSYan, Zheng } 9578929ecfaSYan, Zheng 958dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans) 959dc60c525SNikolay Borisov 9600e34693fSNikolay Borisov { 961dc60c525SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 962dc60c525SNikolay Borisov 9630e34693fSNikolay Borisov if (!trans->block_rsv) { 9640e34693fSNikolay Borisov ASSERT(!trans->bytes_reserved); 9650e34693fSNikolay Borisov return; 9660e34693fSNikolay Borisov } 9670e34693fSNikolay Borisov 9680e34693fSNikolay Borisov if (!trans->bytes_reserved) 9690e34693fSNikolay Borisov return; 9700e34693fSNikolay Borisov 9710e34693fSNikolay Borisov ASSERT(trans->block_rsv == &fs_info->trans_block_rsv); 9720e34693fSNikolay Borisov trace_btrfs_space_reservation(fs_info, "transaction", 9730e34693fSNikolay Borisov trans->transid, trans->bytes_reserved, 0); 9740e34693fSNikolay Borisov btrfs_block_rsv_release(fs_info, trans->block_rsv, 97563f018beSNikolay Borisov trans->bytes_reserved, NULL); 9760e34693fSNikolay Borisov trans->bytes_reserved = 0; 9770e34693fSNikolay Borisov } 9780e34693fSNikolay Borisov 97989ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 9803a45bb20SJeff Mahoney int throttle) 98179154b1bSChris Mason { 9823a45bb20SJeff Mahoney struct btrfs_fs_info *info = trans->fs_info; 9838929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 9844edc2ca3SDave Jones int err = 0; 985d6e4a428SChris Mason 986b50fff81SDavid Sterba if (refcount_read(&trans->use_count) > 1) { 987b50fff81SDavid Sterba refcount_dec(&trans->use_count); 9882a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 9892a1eb461SJosef Bacik return 0; 9902a1eb461SJosef Bacik } 9912a1eb461SJosef Bacik 992dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 9934c13d758SJosef Bacik trans->block_rsv = NULL; 994c5567237SArne Jansen 9956c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 996ea658badSJosef Bacik 9974fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 9984fbcdf66SFilipe Manana 9990860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 10000b246afaSJeff Mahoney sb_end_intwrite(info->sb); 10016df7881aSJosef Bacik 10028929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 100313c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 100413c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 10050860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 100689ce8a63SChris Mason 1007093258e6SDavid Sterba cond_wake_up(&cur_trans->writer_wait); 1008e1489b4fSIoannis Angelakopoulos 10095a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(info, btrfs_trans_num_extwriters); 1010e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(info, btrfs_trans_num_writers); 1011e1489b4fSIoannis Angelakopoulos 1012724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 10139ed74f2dSJosef Bacik 10149ed74f2dSJosef Bacik if (current->journal_info == trans) 10159ed74f2dSJosef Bacik current->journal_info = NULL; 1016ab78c84dSChris Mason 101724bbcf04SYan, Zheng if (throttle) 10182ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(info); 101924bbcf04SYan, Zheng 102084961539SJosef Bacik if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) { 10214e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 1022fbabd4a3SJosef Bacik if (TRANS_ABORTED(trans)) 1023fbabd4a3SJosef Bacik err = trans->aborted; 1024fbabd4a3SJosef Bacik else 1025fbabd4a3SJosef Bacik err = -EROFS; 10264e121c06SJosef Bacik } 102749b25e05SJeff Mahoney 10284edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 10294edc2ca3SDave Jones return err; 103079154b1bSChris Mason } 103179154b1bSChris Mason 10323a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans) 103389ce8a63SChris Mason { 10343a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 0); 103589ce8a63SChris Mason } 103689ce8a63SChris Mason 10373a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans) 103889ce8a63SChris Mason { 10393a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 1); 104016cdcec7SMiao Xie } 104116cdcec7SMiao Xie 1042d352ac68SChris Mason /* 1043d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1044d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1045690587d1SChris Mason * those extents are sent to disk but does not wait on them 1046d352ac68SChris Mason */ 10472ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info, 10488cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 104979154b1bSChris Mason { 1050777e6bd7SChris Mason int err = 0; 10517c4452b9SChris Mason int werr = 0; 10520b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1053e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1054777e6bd7SChris Mason u64 start = 0; 10555f39d397SChris Mason u64 end; 10567c4452b9SChris Mason 10576300463bSLiu Bo atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers); 10581728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1059e6138876SJosef Bacik mark, &cached_state)) { 1060663dfbb0SFilipe Manana bool wait_writeback = false; 1061663dfbb0SFilipe Manana 1062663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 1063663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 1064210aa277SDavid Sterba mark, &cached_state); 1065663dfbb0SFilipe Manana /* 1066663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 1067663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 1068663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 1069663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 1070bf89d38fSJeff Mahoney * to __btrfs_wait_marked_extents() would not know that 1071bf89d38fSJeff Mahoney * writeback for this range started and therefore wouldn't 1072bf89d38fSJeff Mahoney * wait for it to finish - we don't want to commit a 1073bf89d38fSJeff Mahoney * superblock that points to btree nodes/leafs for which 1074bf89d38fSJeff Mahoney * writeback hasn't finished yet (and without errors). 1075663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 107641e7acd3SNikolay Borisov * the transaction (through extent_io_tree_release()). 1077663dfbb0SFilipe Manana */ 1078663dfbb0SFilipe Manana if (err == -ENOMEM) { 1079663dfbb0SFilipe Manana err = 0; 1080663dfbb0SFilipe Manana wait_writeback = true; 1081663dfbb0SFilipe Manana } 1082663dfbb0SFilipe Manana if (!err) 10831728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 10847c4452b9SChris Mason if (err) 10857c4452b9SChris Mason werr = err; 1086663dfbb0SFilipe Manana else if (wait_writeback) 1087663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 1088e38e2ed7SFilipe Manana free_extent_state(cached_state); 1089663dfbb0SFilipe Manana cached_state = NULL; 10901728366eSJosef Bacik cond_resched(); 10911728366eSJosef Bacik start = end + 1; 10927c4452b9SChris Mason } 10936300463bSLiu Bo atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers); 1094690587d1SChris Mason return werr; 1095690587d1SChris Mason } 1096690587d1SChris Mason 1097690587d1SChris Mason /* 1098690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1099690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1100690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 1101690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 1102690587d1SChris Mason */ 1103bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info, 1104bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1105690587d1SChris Mason { 1106690587d1SChris Mason int err = 0; 1107690587d1SChris Mason int werr = 0; 11080b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1109e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1110690587d1SChris Mason u64 start = 0; 1111690587d1SChris Mason u64 end; 1112690587d1SChris Mason 11131728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1114e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 1115663dfbb0SFilipe Manana /* 1116663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 1117663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 1118663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 1119663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 1120663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 112141e7acd3SNikolay Borisov * it's safe to do it (through extent_io_tree_release()). 1122663dfbb0SFilipe Manana */ 1123663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 1124bd015294SJosef Bacik EXTENT_NEED_WAIT, &cached_state); 1125663dfbb0SFilipe Manana if (err == -ENOMEM) 1126663dfbb0SFilipe Manana err = 0; 1127663dfbb0SFilipe Manana if (!err) 11281728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 1129777e6bd7SChris Mason if (err) 1130777e6bd7SChris Mason werr = err; 1131e38e2ed7SFilipe Manana free_extent_state(cached_state); 1132e38e2ed7SFilipe Manana cached_state = NULL; 1133777e6bd7SChris Mason cond_resched(); 11341728366eSJosef Bacik start = end + 1; 1135777e6bd7SChris Mason } 11367c4452b9SChris Mason if (err) 11377c4452b9SChris Mason werr = err; 1138bf89d38fSJeff Mahoney return werr; 1139bf89d38fSJeff Mahoney } 1140656f30dbSFilipe Manana 1141b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info, 1142bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1143bf89d38fSJeff Mahoney { 1144bf89d38fSJeff Mahoney bool errors = false; 1145bf89d38fSJeff Mahoney int err; 1146bf89d38fSJeff Mahoney 1147bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1148bf89d38fSJeff Mahoney if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags)) 1149bf89d38fSJeff Mahoney errors = true; 1150bf89d38fSJeff Mahoney 1151bf89d38fSJeff Mahoney if (errors && !err) 1152bf89d38fSJeff Mahoney err = -EIO; 1153bf89d38fSJeff Mahoney return err; 1154bf89d38fSJeff Mahoney } 1155bf89d38fSJeff Mahoney 1156bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark) 1157bf89d38fSJeff Mahoney { 1158bf89d38fSJeff Mahoney struct btrfs_fs_info *fs_info = log_root->fs_info; 1159bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages; 1160bf89d38fSJeff Mahoney bool errors = false; 1161bf89d38fSJeff Mahoney int err; 1162bf89d38fSJeff Mahoney 1163bf89d38fSJeff Mahoney ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); 1164bf89d38fSJeff Mahoney 1165bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1166656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 11670b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags)) 1168656f30dbSFilipe Manana errors = true; 1169656f30dbSFilipe Manana 1170656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 11710b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags)) 1172656f30dbSFilipe Manana errors = true; 1173656f30dbSFilipe Manana 1174bf89d38fSJeff Mahoney if (errors && !err) 1175bf89d38fSJeff Mahoney err = -EIO; 1176bf89d38fSJeff Mahoney return err; 117779154b1bSChris Mason } 117879154b1bSChris Mason 1179690587d1SChris Mason /* 1180c9b577c0SNikolay Borisov * When btree blocks are allocated the corresponding extents are marked dirty. 1181c9b577c0SNikolay Borisov * This function ensures such extents are persisted on disk for transaction or 1182c9b577c0SNikolay Borisov * log commit. 1183c9b577c0SNikolay Borisov * 1184c9b577c0SNikolay Borisov * @trans: transaction whose dirty pages we'd like to write 1185690587d1SChris Mason */ 118670458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans) 1187d0c803c4SChris Mason { 1188663dfbb0SFilipe Manana int ret; 1189c9b577c0SNikolay Borisov int ret2; 1190c9b577c0SNikolay Borisov struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages; 119170458a58SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1192c9b577c0SNikolay Borisov struct blk_plug plug; 1193663dfbb0SFilipe Manana 1194c9b577c0SNikolay Borisov blk_start_plug(&plug); 1195c9b577c0SNikolay Borisov ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY); 1196c9b577c0SNikolay Borisov blk_finish_plug(&plug); 1197c9b577c0SNikolay Borisov ret2 = btrfs_wait_extents(fs_info, dirty_pages); 1198c9b577c0SNikolay Borisov 119941e7acd3SNikolay Borisov extent_io_tree_release(&trans->transaction->dirty_pages); 1200663dfbb0SFilipe Manana 1201c9b577c0SNikolay Borisov if (ret) 1202663dfbb0SFilipe Manana return ret; 1203c9b577c0SNikolay Borisov else if (ret2) 1204c9b577c0SNikolay Borisov return ret2; 1205c9b577c0SNikolay Borisov else 1206c9b577c0SNikolay Borisov return 0; 1207d0c803c4SChris Mason } 1208d0c803c4SChris Mason 1209d352ac68SChris Mason /* 1210d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1211d352ac68SChris Mason * 1212d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1213d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1214d352ac68SChris Mason * allocation tree. 1215d352ac68SChris Mason * 1216d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1217d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1218d352ac68SChris Mason */ 12190b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 122079154b1bSChris Mason struct btrfs_root *root) 122179154b1bSChris Mason { 122279154b1bSChris Mason int ret; 12230b86a832SChris Mason u64 old_root_bytenr; 122486b9f2ecSYan, Zheng u64 old_root_used; 12250b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12260b246afaSJeff Mahoney struct btrfs_root *tree_root = fs_info->tree_root; 122779154b1bSChris Mason 122886b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 122956bec294SChris Mason 123079154b1bSChris Mason while (1) { 12310b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 123286b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1233ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 123479154b1bSChris Mason break; 123587ef2bb4SChris Mason 12365d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 123779154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 12380b86a832SChris Mason &root->root_key, 12390b86a832SChris Mason &root->root_item); 124049b25e05SJeff Mahoney if (ret) 124149b25e05SJeff Mahoney return ret; 124256bec294SChris Mason 124386b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1244e7070be1SJosef Bacik } 1245276e680dSYan Zheng 12460b86a832SChris Mason return 0; 12470b86a832SChris Mason } 12480b86a832SChris Mason 1249d352ac68SChris Mason /* 1250d352ac68SChris Mason * update all the cowonly tree roots on disk 125149b25e05SJeff Mahoney * 125249b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 125349b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 125449b25e05SJeff Mahoney * to clean up the delayed refs. 1255d352ac68SChris Mason */ 12569386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans) 12570b86a832SChris Mason { 12589386d8bcSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1259ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 12601bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 12610b86a832SChris Mason struct list_head *next; 126284234f3aSYan Zheng struct extent_buffer *eb; 126356bec294SChris Mason int ret; 126484234f3aSYan Zheng 1265dfba78dcSFilipe Manana /* 1266dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1267dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1268dfba78dcSFilipe Manana */ 1269dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1270dfba78dcSFilipe Manana 127184234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 127249b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 12739631e4ccSJosef Bacik 0, &eb, BTRFS_NESTING_COW); 127484234f3aSYan Zheng btrfs_tree_unlock(eb); 127584234f3aSYan Zheng free_extent_buffer(eb); 12760b86a832SChris Mason 127749b25e05SJeff Mahoney if (ret) 127849b25e05SJeff Mahoney return ret; 127949b25e05SJeff Mahoney 1280196c9d8dSDavid Sterba ret = btrfs_run_dev_stats(trans); 1281c16ce190SJosef Bacik if (ret) 1282c16ce190SJosef Bacik return ret; 12832b584c68SDavid Sterba ret = btrfs_run_dev_replace(trans); 1284c16ce190SJosef Bacik if (ret) 1285c16ce190SJosef Bacik return ret; 1286280f8bd2SLu Fengqi ret = btrfs_run_qgroups(trans); 1287c16ce190SJosef Bacik if (ret) 1288c16ce190SJosef Bacik return ret; 1289546adb0dSJan Schmidt 1290bbebb3e0SDavid Sterba ret = btrfs_setup_space_cache(trans); 1291dcdf7f6dSJosef Bacik if (ret) 1292dcdf7f6dSJosef Bacik return ret; 1293dcdf7f6dSJosef Bacik 1294ea526d18SJosef Bacik again: 12950b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 12962ff7e61eSJeff Mahoney struct btrfs_root *root; 12970b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 12980b86a832SChris Mason list_del_init(next); 12990b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1300e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 130187ef2bb4SChris Mason 13029e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 13039e351cc8SJosef Bacik &trans->transaction->switch_commits); 130449b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 130549b25e05SJeff Mahoney if (ret) 130649b25e05SJeff Mahoney return ret; 1307488bc2a2SJosef Bacik } 1308488bc2a2SJosef Bacik 1309488bc2a2SJosef Bacik /* Now flush any delayed refs generated by updating all of the roots */ 1310c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1311ea526d18SJosef Bacik if (ret) 1312ea526d18SJosef Bacik return ret; 1313276e680dSYan Zheng 13141bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 13155742d15fSDavid Sterba ret = btrfs_write_dirty_block_groups(trans); 1316ea526d18SJosef Bacik if (ret) 1317ea526d18SJosef Bacik return ret; 1318488bc2a2SJosef Bacik 1319488bc2a2SJosef Bacik /* 1320488bc2a2SJosef Bacik * We're writing the dirty block groups, which could generate 1321488bc2a2SJosef Bacik * delayed refs, which could generate more dirty block groups, 1322488bc2a2SJosef Bacik * so we want to keep this flushing in this loop to make sure 1323488bc2a2SJosef Bacik * everything gets run. 1324488bc2a2SJosef Bacik */ 1325c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1326ea526d18SJosef Bacik if (ret) 1327ea526d18SJosef Bacik return ret; 1328ea526d18SJosef Bacik } 1329ea526d18SJosef Bacik 1330ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1331ea526d18SJosef Bacik goto again; 1332ea526d18SJosef Bacik 13339f6cbcbbSDavid Sterba /* Update dev-replace pointer once everything is committed */ 13349f6cbcbbSDavid Sterba fs_info->dev_replace.committed_cursor_left = 13359f6cbcbbSDavid Sterba fs_info->dev_replace.cursor_left_last_write_of_item; 13368dabb742SStefan Behrens 133779154b1bSChris Mason return 0; 133879154b1bSChris Mason } 133979154b1bSChris Mason 1340d352ac68SChris Mason /* 1341b4be6aefSJosef Bacik * If we had a pending drop we need to see if there are any others left in our 1342b4be6aefSJosef Bacik * dead roots list, and if not clear our bit and wake any waiters. 1343b4be6aefSJosef Bacik */ 1344b4be6aefSJosef Bacik void btrfs_maybe_wake_unfinished_drop(struct btrfs_fs_info *fs_info) 1345b4be6aefSJosef Bacik { 1346b4be6aefSJosef Bacik /* 1347b4be6aefSJosef Bacik * We put the drop in progress roots at the front of the list, so if the 1348b4be6aefSJosef Bacik * first entry doesn't have UNFINISHED_DROP set we can wake everybody 1349b4be6aefSJosef Bacik * up. 1350b4be6aefSJosef Bacik */ 1351b4be6aefSJosef Bacik spin_lock(&fs_info->trans_lock); 1352b4be6aefSJosef Bacik if (!list_empty(&fs_info->dead_roots)) { 1353b4be6aefSJosef Bacik struct btrfs_root *root = list_first_entry(&fs_info->dead_roots, 1354b4be6aefSJosef Bacik struct btrfs_root, 1355b4be6aefSJosef Bacik root_list); 1356b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) { 1357b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1358b4be6aefSJosef Bacik return; 1359b4be6aefSJosef Bacik } 1360b4be6aefSJosef Bacik } 1361b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1362b4be6aefSJosef Bacik 1363b4be6aefSJosef Bacik btrfs_wake_unfinished_drop(fs_info); 1364b4be6aefSJosef Bacik } 1365b4be6aefSJosef Bacik 1366b4be6aefSJosef Bacik /* 1367d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1368d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1369d352ac68SChris Mason * be deleted 1370d352ac68SChris Mason */ 1371cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 13725eda7b5eSChris Mason { 13730b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 13740b246afaSJeff Mahoney 13750b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1376dc9492c1SJosef Bacik if (list_empty(&root->root_list)) { 1377dc9492c1SJosef Bacik btrfs_grab_root(root); 1378b4be6aefSJosef Bacik 1379b4be6aefSJosef Bacik /* We want to process the partially complete drops first. */ 1380b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) 1381b4be6aefSJosef Bacik list_add(&root->root_list, &fs_info->dead_roots); 1382b4be6aefSJosef Bacik else 13830b246afaSJeff Mahoney list_add_tail(&root->root_list, &fs_info->dead_roots); 1384dc9492c1SJosef Bacik } 13850b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 13865eda7b5eSChris Mason } 13875eda7b5eSChris Mason 1388d352ac68SChris Mason /* 1389dfba78dcSFilipe Manana * Update each subvolume root and its relocation root, if it exists, in the tree 1390dfba78dcSFilipe Manana * of tree roots. Also free log roots if they exist. 1391d352ac68SChris Mason */ 13927e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans) 13930f7d52f4SChris Mason { 13947e4443d9SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1395fc7cbcd4SDavid Sterba struct btrfs_root *gang[8]; 1396fc7cbcd4SDavid Sterba int i; 1397fc7cbcd4SDavid Sterba int ret; 139854aa1f4dSChris Mason 1399dfba78dcSFilipe Manana /* 1400dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1401dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1402dfba78dcSFilipe Manana */ 1403dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1404dfba78dcSFilipe Manana 1405fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1406fc7cbcd4SDavid Sterba while (1) { 1407fc7cbcd4SDavid Sterba ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 1408fc7cbcd4SDavid Sterba (void **)gang, 0, 1409fc7cbcd4SDavid Sterba ARRAY_SIZE(gang), 1410fc7cbcd4SDavid Sterba BTRFS_ROOT_TRANS_TAG); 1411fc7cbcd4SDavid Sterba if (ret == 0) 1412fc7cbcd4SDavid Sterba break; 1413fc7cbcd4SDavid Sterba for (i = 0; i < ret; i++) { 1414fc7cbcd4SDavid Sterba struct btrfs_root *root = gang[i]; 1415fc7cbcd4SDavid Sterba int ret2; 14164f4317c1SJosef Bacik 1417dfba78dcSFilipe Manana /* 1418dfba78dcSFilipe Manana * At this point we can neither have tasks logging inodes 1419dfba78dcSFilipe Manana * from a root nor trying to commit a log tree. 1420dfba78dcSFilipe Manana */ 1421dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_writers) == 0); 1422dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[0]) == 0); 1423dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[1]) == 0); 1424dfba78dcSFilipe Manana 1425fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 14262619ba1fSChris Mason (unsigned long)root->root_key.objectid, 14270f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1428fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 142931153d81SYan Zheng 1430e02119d5SChris Mason btrfs_free_log(trans, root); 1431fc7cbcd4SDavid Sterba ret2 = btrfs_update_reloc_root(trans, root); 1432fc7cbcd4SDavid Sterba if (ret2) 1433fc7cbcd4SDavid Sterba return ret2; 1434e02119d5SChris Mason 1435fc7cbcd4SDavid Sterba /* see comments in should_cow_block() */ 143627cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1437c7548af6SChris Mason smp_mb__after_atomic(); 1438f1ebcc74SLiu Bo 1439978d910dSYan Zheng if (root->commit_root != root->node) { 14409e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 14419e351cc8SJosef Bacik &trans->transaction->switch_commits); 1442fc7cbcd4SDavid Sterba btrfs_set_root_node(&root->root_item, 1443fc7cbcd4SDavid Sterba root->node); 1444978d910dSYan Zheng } 144531153d81SYan Zheng 1446fc7cbcd4SDavid Sterba ret2 = btrfs_update_root(trans, fs_info->tree_root, 1447fc7cbcd4SDavid Sterba &root->root_key, 1448fc7cbcd4SDavid Sterba &root->root_item); 1449fc7cbcd4SDavid Sterba if (ret2) 1450fc7cbcd4SDavid Sterba return ret2; 1451fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1452733e03a0SQu Wenruo btrfs_qgroup_free_meta_all_pertrans(root); 14530f7d52f4SChris Mason } 1454fc7cbcd4SDavid Sterba } 1455fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 14564f4317c1SJosef Bacik return 0; 14570f7d52f4SChris Mason } 14580f7d52f4SChris Mason 1459d352ac68SChris Mason /* 1460de78b51aSEric Sandeen * defrag a given btree. 1461de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1462d352ac68SChris Mason */ 1463de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1464e9d0b13bSChris Mason { 1465e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1466e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 14678929ecfaSYan, Zheng int ret; 1468e9d0b13bSChris Mason 146927cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1470e9d0b13bSChris Mason return 0; 14718929ecfaSYan, Zheng 14726b80053dSChris Mason while (1) { 14738929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 14746819703fSDavid Sterba if (IS_ERR(trans)) { 14756819703fSDavid Sterba ret = PTR_ERR(trans); 14766819703fSDavid Sterba break; 14776819703fSDavid Sterba } 14788929ecfaSYan, Zheng 1479de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 14808929ecfaSYan, Zheng 14813a45bb20SJeff Mahoney btrfs_end_transaction(trans); 14822ff7e61eSJeff Mahoney btrfs_btree_balance_dirty(info); 1483e9d0b13bSChris Mason cond_resched(); 1484e9d0b13bSChris Mason 1485ab8d0fc4SJeff Mahoney if (btrfs_fs_closing(info) || ret != -EAGAIN) 1486e9d0b13bSChris Mason break; 1487210549ebSDavid Sterba 1488ab8d0fc4SJeff Mahoney if (btrfs_defrag_cancelled(info)) { 1489ab8d0fc4SJeff Mahoney btrfs_debug(info, "defrag_root cancelled"); 1490210549ebSDavid Sterba ret = -EAGAIN; 1491210549ebSDavid Sterba break; 1492210549ebSDavid Sterba } 1493e9d0b13bSChris Mason } 149427cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 14958929ecfaSYan, Zheng return ret; 1496e9d0b13bSChris Mason } 1497e9d0b13bSChris Mason 1498d352ac68SChris Mason /* 14996426c7adSQu Wenruo * Do all special snapshot related qgroup dirty hack. 15006426c7adSQu Wenruo * 15016426c7adSQu Wenruo * Will do all needed qgroup inherit and dirty hack like switch commit 15026426c7adSQu Wenruo * roots inside one transaction and write all btree into disk, to make 15036426c7adSQu Wenruo * qgroup works. 15046426c7adSQu Wenruo */ 15056426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, 15066426c7adSQu Wenruo struct btrfs_root *src, 15076426c7adSQu Wenruo struct btrfs_root *parent, 15086426c7adSQu Wenruo struct btrfs_qgroup_inherit *inherit, 15096426c7adSQu Wenruo u64 dst_objectid) 15106426c7adSQu Wenruo { 15116426c7adSQu Wenruo struct btrfs_fs_info *fs_info = src->fs_info; 15126426c7adSQu Wenruo int ret; 15136426c7adSQu Wenruo 15146426c7adSQu Wenruo /* 15156426c7adSQu Wenruo * Save some performance in the case that qgroups are not 15166426c7adSQu Wenruo * enabled. If this check races with the ioctl, rescan will 15176426c7adSQu Wenruo * kick in anyway. 15186426c7adSQu Wenruo */ 15199ea6e2b5SDavid Sterba if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) 15206426c7adSQu Wenruo return 0; 15216426c7adSQu Wenruo 15226426c7adSQu Wenruo /* 152352042d8eSAndrea Gelmini * Ensure dirty @src will be committed. Or, after coming 15244d31778aSQu Wenruo * commit_fs_roots() and switch_commit_roots(), any dirty but not 15254d31778aSQu Wenruo * recorded root will never be updated again, causing an outdated root 15264d31778aSQu Wenruo * item. 15274d31778aSQu Wenruo */ 15281c442d22SJosef Bacik ret = record_root_in_trans(trans, src, 1); 15291c442d22SJosef Bacik if (ret) 15301c442d22SJosef Bacik return ret; 15314d31778aSQu Wenruo 15324d31778aSQu Wenruo /* 15332a4d84c1SJosef Bacik * btrfs_qgroup_inherit relies on a consistent view of the usage for the 15342a4d84c1SJosef Bacik * src root, so we must run the delayed refs here. 15352a4d84c1SJosef Bacik * 15362a4d84c1SJosef Bacik * However this isn't particularly fool proof, because there's no 15372a4d84c1SJosef Bacik * synchronization keeping us from changing the tree after this point 15382a4d84c1SJosef Bacik * before we do the qgroup_inherit, or even from making changes while 15392a4d84c1SJosef Bacik * we're doing the qgroup_inherit. But that's a problem for the future, 15402a4d84c1SJosef Bacik * for now flush the delayed refs to narrow the race window where the 15412a4d84c1SJosef Bacik * qgroup counters could end up wrong. 15422a4d84c1SJosef Bacik */ 15432a4d84c1SJosef Bacik ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 15442a4d84c1SJosef Bacik if (ret) { 15452a4d84c1SJosef Bacik btrfs_abort_transaction(trans, ret); 154644365827SNaohiro Aota return ret; 15472a4d84c1SJosef Bacik } 15482a4d84c1SJosef Bacik 15497e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 15506426c7adSQu Wenruo if (ret) 15516426c7adSQu Wenruo goto out; 1552460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 15536426c7adSQu Wenruo if (ret < 0) 15546426c7adSQu Wenruo goto out; 15556426c7adSQu Wenruo 15566426c7adSQu Wenruo /* Now qgroup are all updated, we can inherit it to new qgroups */ 1557a9377422SLu Fengqi ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid, 15586426c7adSQu Wenruo inherit); 15596426c7adSQu Wenruo if (ret < 0) 15606426c7adSQu Wenruo goto out; 15616426c7adSQu Wenruo 15626426c7adSQu Wenruo /* 15636426c7adSQu Wenruo * Now we do a simplified commit transaction, which will: 15646426c7adSQu Wenruo * 1) commit all subvolume and extent tree 15656426c7adSQu Wenruo * To ensure all subvolume and extent tree have a valid 15666426c7adSQu Wenruo * commit_root to accounting later insert_dir_item() 15676426c7adSQu Wenruo * 2) write all btree blocks onto disk 15686426c7adSQu Wenruo * This is to make sure later btree modification will be cowed 15696426c7adSQu Wenruo * Or commit_root can be populated and cause wrong qgroup numbers 15706426c7adSQu Wenruo * In this simplified commit, we don't really care about other trees 15716426c7adSQu Wenruo * like chunk and root tree, as they won't affect qgroup. 15726426c7adSQu Wenruo * And we don't write super to avoid half committed status. 15736426c7adSQu Wenruo */ 15749386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 15756426c7adSQu Wenruo if (ret) 15766426c7adSQu Wenruo goto out; 1577889bfa39SJosef Bacik switch_commit_roots(trans); 157870458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 15796426c7adSQu Wenruo if (ret) 1580f7af3934SDavid Sterba btrfs_handle_fs_error(fs_info, ret, 15816426c7adSQu Wenruo "Error while writing out transaction for qgroup"); 15826426c7adSQu Wenruo 15836426c7adSQu Wenruo out: 15846426c7adSQu Wenruo /* 15856426c7adSQu Wenruo * Force parent root to be updated, as we recorded it before so its 15866426c7adSQu Wenruo * last_trans == cur_transid. 15876426c7adSQu Wenruo * Or it won't be committed again onto disk after later 15886426c7adSQu Wenruo * insert_dir_item() 15896426c7adSQu Wenruo */ 15906426c7adSQu Wenruo if (!ret) 15911c442d22SJosef Bacik ret = record_root_in_trans(trans, parent, 1); 15926426c7adSQu Wenruo return ret; 15936426c7adSQu Wenruo } 15946426c7adSQu Wenruo 15956426c7adSQu Wenruo /* 1596d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1597aec8030aSMiao Xie * transaction commit. This does the actual creation. 1598aec8030aSMiao Xie * 1599aec8030aSMiao Xie * Note: 1600aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1601aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1602aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1603d352ac68SChris Mason */ 160480b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 16053063d29fSChris Mason struct btrfs_pending_snapshot *pending) 16063063d29fSChris Mason { 160708d50ca3SNikolay Borisov 160808d50ca3SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 16093063d29fSChris Mason struct btrfs_key key; 161080b6794dSChris Mason struct btrfs_root_item *new_root_item; 16113063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 16123063d29fSChris Mason struct btrfs_root *root = pending->root; 16136bdb72deSSage Weil struct btrfs_root *parent_root; 161498c9942aSLiu Bo struct btrfs_block_rsv *rsv; 1615ab3c5c18SSweet Tea Dorminy struct inode *parent_inode = pending->dir; 161642874b3dSMiao Xie struct btrfs_path *path; 161742874b3dSMiao Xie struct btrfs_dir_item *dir_item; 16183063d29fSChris Mason struct extent_buffer *tmp; 1619925baeddSChris Mason struct extent_buffer *old; 162095582b00SDeepa Dinamani struct timespec64 cur_time; 1621aec8030aSMiao Xie int ret = 0; 1622d68fc57bSYan, Zheng u64 to_reserve = 0; 16236bdb72deSSage Weil u64 index = 0; 1624a22285a6SYan, Zheng u64 objectid; 1625b83cc969SLi Zefan u64 root_flags; 1626ab3c5c18SSweet Tea Dorminy unsigned int nofs_flags; 1627ab3c5c18SSweet Tea Dorminy struct fscrypt_name fname; 16283063d29fSChris Mason 16298546b570SDavid Sterba ASSERT(pending->path); 16308546b570SDavid Sterba path = pending->path; 163142874b3dSMiao Xie 1632b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1633b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1634a22285a6SYan, Zheng 1635ab3c5c18SSweet Tea Dorminy /* 1636ab3c5c18SSweet Tea Dorminy * We're inside a transaction and must make sure that any potential 1637ab3c5c18SSweet Tea Dorminy * allocations with GFP_KERNEL in fscrypt won't recurse back to 1638ab3c5c18SSweet Tea Dorminy * filesystem. 1639ab3c5c18SSweet Tea Dorminy */ 1640ab3c5c18SSweet Tea Dorminy nofs_flags = memalloc_nofs_save(); 1641ab3c5c18SSweet Tea Dorminy pending->error = fscrypt_setup_filename(parent_inode, 1642ab3c5c18SSweet Tea Dorminy &pending->dentry->d_name, 0, 1643ab3c5c18SSweet Tea Dorminy &fname); 1644ab3c5c18SSweet Tea Dorminy memalloc_nofs_restore(nofs_flags); 1645ab3c5c18SSweet Tea Dorminy if (pending->error) 1646ab3c5c18SSweet Tea Dorminy goto free_pending; 1647ab3c5c18SSweet Tea Dorminy 1648543068a2SNikolay Borisov pending->error = btrfs_get_free_objectid(tree_root, &objectid); 1649aec8030aSMiao Xie if (pending->error) 1650ab3c5c18SSweet Tea Dorminy goto free_fname; 16513063d29fSChris Mason 1652d6726335SQu Wenruo /* 1653d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1654d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1655d6726335SQu Wenruo */ 1656d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1657d6726335SQu Wenruo 1658147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1659d68fc57bSYan, Zheng 1660d68fc57bSYan, Zheng if (to_reserve > 0) { 16619270501cSJosef Bacik pending->error = btrfs_block_rsv_add(fs_info, 1662aec8030aSMiao Xie &pending->block_rsv, 166308e007d2SMiao Xie to_reserve, 166408e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1665aec8030aSMiao Xie if (pending->error) 1666d6726335SQu Wenruo goto clear_skip_qgroup; 1667d68fc57bSYan, Zheng } 1668d68fc57bSYan, Zheng 16693063d29fSChris Mason key.objectid = objectid; 1670a22285a6SYan, Zheng key.offset = (u64)-1; 1671a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 16723063d29fSChris Mason 16736fa9700eSMiao Xie rsv = trans->block_rsv; 1674a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 16752382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 16760b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 167788d3a5aaSJosef Bacik trans->transid, 167888d3a5aaSJosef Bacik trans->bytes_reserved, 1); 1679a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 1680f0118cb6SJosef Bacik ret = record_root_in_trans(trans, parent_root, 0); 1681f0118cb6SJosef Bacik if (ret) 1682f0118cb6SJosef Bacik goto fail; 1683c2050a45SDeepa Dinamani cur_time = current_time(parent_inode); 168404b285f3SDeepa Dinamani 16856bdb72deSSage Weil /* 16866bdb72deSSage Weil * insert the directory item 16876bdb72deSSage Weil */ 1688877574e2SNikolay Borisov ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index); 168949b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 169042874b3dSMiao Xie 169142874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 169242874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 16934a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), 1694*6db75318SSweet Tea Dorminy &fname.disk_name, 0); 169542874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1696fe66a05aSChris Mason pending->error = -EEXIST; 1697aec8030aSMiao Xie goto dir_item_existed; 169842874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 169942874b3dSMiao Xie ret = PTR_ERR(dir_item); 170066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17018732d44fSMiao Xie goto fail; 170279787eaaSJeff Mahoney } 170342874b3dSMiao Xie btrfs_release_path(path); 17046bdb72deSSage Weil 1705e999376fSChris Mason /* 1706e999376fSChris Mason * pull in the delayed directory update 1707e999376fSChris Mason * and the delayed inode item 1708e999376fSChris Mason * otherwise we corrupt the FS during 1709e999376fSChris Mason * snapshot 1710e999376fSChris Mason */ 1711e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 17128732d44fSMiao Xie if (ret) { /* Transaction aborted */ 171366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17148732d44fSMiao Xie goto fail; 17158732d44fSMiao Xie } 1716e999376fSChris Mason 1717f0118cb6SJosef Bacik ret = record_root_in_trans(trans, root, 0); 1718f0118cb6SJosef Bacik if (ret) { 1719f0118cb6SJosef Bacik btrfs_abort_transaction(trans, ret); 1720f0118cb6SJosef Bacik goto fail; 1721f0118cb6SJosef Bacik } 17226bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 17236bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 172408fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 17256bdb72deSSage Weil 1726b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1727b83cc969SLi Zefan if (pending->readonly) 1728b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1729b83cc969SLi Zefan else 1730b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1731b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1732b83cc969SLi Zefan 17338ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 17348ea05e3aSAlexander Block trans->transid); 1735807fc790SAndy Shevchenko generate_random_guid(new_root_item->uuid); 17368ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 17378ea05e3aSAlexander Block BTRFS_UUID_SIZE); 173870023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 173970023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 174070023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 17418ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 17428ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 17438ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 17448ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 174570023da2SStefan Behrens } 17463cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 17473cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 174870023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 17498ea05e3aSAlexander Block 1750925baeddSChris Mason old = btrfs_lock_root_node(root); 17519631e4ccSJosef Bacik ret = btrfs_cow_block(trans, root, old, NULL, 0, &old, 17529631e4ccSJosef Bacik BTRFS_NESTING_COW); 175379787eaaSJeff Mahoney if (ret) { 175479787eaaSJeff Mahoney btrfs_tree_unlock(old); 175579787eaaSJeff Mahoney free_extent_buffer(old); 175666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17578732d44fSMiao Xie goto fail; 175879787eaaSJeff Mahoney } 175949b25e05SJeff Mahoney 176049b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 176179787eaaSJeff Mahoney /* clean up in any case */ 1762925baeddSChris Mason btrfs_tree_unlock(old); 1763925baeddSChris Mason free_extent_buffer(old); 17648732d44fSMiao Xie if (ret) { 176566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17668732d44fSMiao Xie goto fail; 17678732d44fSMiao Xie } 1768f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 176927cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1770f1ebcc74SLiu Bo smp_wmb(); 1771f1ebcc74SLiu Bo 17725d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1773a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1774a22285a6SYan, Zheng key.offset = trans->transid; 1775a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1776925baeddSChris Mason btrfs_tree_unlock(tmp); 17773063d29fSChris Mason free_extent_buffer(tmp); 17788732d44fSMiao Xie if (ret) { 177966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17808732d44fSMiao Xie goto fail; 17818732d44fSMiao Xie } 17820660b5afSChris Mason 1783a22285a6SYan, Zheng /* 1784a22285a6SYan, Zheng * insert root back/forward references 1785a22285a6SYan, Zheng */ 17866025c19fSLu Fengqi ret = btrfs_add_root_ref(trans, objectid, 1787a22285a6SYan, Zheng parent_root->root_key.objectid, 17884a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), index, 1789*6db75318SSweet Tea Dorminy &fname.disk_name); 17908732d44fSMiao Xie if (ret) { 179166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17928732d44fSMiao Xie goto fail; 17938732d44fSMiao Xie } 1794a22285a6SYan, Zheng 1795a22285a6SYan, Zheng key.offset = (u64)-1; 17962dfb1e43SQu Wenruo pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev); 179779787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 179879787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 17992d892ccdSFilipe Manana pending->snap = NULL; 180066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18018732d44fSMiao Xie goto fail; 180279787eaaSJeff Mahoney } 1803d68fc57bSYan, Zheng 180449b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 18058732d44fSMiao Xie if (ret) { 180666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18078732d44fSMiao Xie goto fail; 18088732d44fSMiao Xie } 1809361048f5SMiao Xie 18106426c7adSQu Wenruo /* 18116426c7adSQu Wenruo * Do special qgroup accounting for snapshot, as we do some qgroup 18126426c7adSQu Wenruo * snapshot hack to do fast snapshot. 18136426c7adSQu Wenruo * To co-operate with that hack, we do hack again. 18146426c7adSQu Wenruo * Or snapshot will be greatly slowed down by a subtree qgroup rescan 18156426c7adSQu Wenruo */ 18166426c7adSQu Wenruo ret = qgroup_account_snapshot(trans, root, parent_root, 18176426c7adSQu Wenruo pending->inherit, objectid); 18186426c7adSQu Wenruo if (ret < 0) 18196426c7adSQu Wenruo goto fail; 18206426c7adSQu Wenruo 1821*6db75318SSweet Tea Dorminy ret = btrfs_insert_dir_item(trans, &fname.disk_name, 1822*6db75318SSweet Tea Dorminy BTRFS_I(parent_inode), &key, BTRFS_FT_DIR, 1823*6db75318SSweet Tea Dorminy index); 182442874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 18259c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 18268732d44fSMiao Xie if (ret) { 182766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18288732d44fSMiao Xie goto fail; 18298732d44fSMiao Xie } 183042874b3dSMiao Xie 18316ef06d27SNikolay Borisov btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size + 1832*6db75318SSweet Tea Dorminy fname.disk_name.len * 2); 1833c1867eb3SDavid Sterba parent_inode->i_mtime = current_time(parent_inode); 1834c1867eb3SDavid Sterba parent_inode->i_ctime = parent_inode->i_mtime; 1835729f7961SNikolay Borisov ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode)); 1836dd5f9615SStefan Behrens if (ret) { 183766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1838dd5f9615SStefan Behrens goto fail; 1839dd5f9615SStefan Behrens } 1840807fc790SAndy Shevchenko ret = btrfs_uuid_tree_add(trans, new_root_item->uuid, 1841807fc790SAndy Shevchenko BTRFS_UUID_KEY_SUBVOL, 1842cdb345a8SLu Fengqi objectid); 1843dd5f9615SStefan Behrens if (ret) { 184466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1845dd5f9615SStefan Behrens goto fail; 1846dd5f9615SStefan Behrens } 1847dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1848cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid, 1849dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1850dd5f9615SStefan Behrens objectid); 1851dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 185266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1853dd5f9615SStefan Behrens goto fail; 1854dd5f9615SStefan Behrens } 1855dd5f9615SStefan Behrens } 1856d6726335SQu Wenruo 18573063d29fSChris Mason fail: 1858aec8030aSMiao Xie pending->error = ret; 1859aec8030aSMiao Xie dir_item_existed: 186098c9942aSLiu Bo trans->block_rsv = rsv; 18612382c5ccSLiu Bo trans->bytes_reserved = 0; 1862d6726335SQu Wenruo clear_skip_qgroup: 1863d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 1864ab3c5c18SSweet Tea Dorminy free_fname: 1865ab3c5c18SSweet Tea Dorminy fscrypt_free_filename(&fname); 1866ab3c5c18SSweet Tea Dorminy free_pending: 18676fa9700eSMiao Xie kfree(new_root_item); 1868b0c0ea63SDavid Sterba pending->root_item = NULL; 186942874b3dSMiao Xie btrfs_free_path(path); 18708546b570SDavid Sterba pending->path = NULL; 18718546b570SDavid Sterba 187249b25e05SJeff Mahoney return ret; 18733063d29fSChris Mason } 18743063d29fSChris Mason 1875d352ac68SChris Mason /* 1876d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1877d352ac68SChris Mason */ 187808d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans) 18793063d29fSChris Mason { 1880aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 18813063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1882aec8030aSMiao Xie int ret = 0; 18833de4586cSChris Mason 1884aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1885aec8030aSMiao Xie list_del(&pending->list); 188608d50ca3SNikolay Borisov ret = create_pending_snapshot(trans, pending); 1887aec8030aSMiao Xie if (ret) 1888aec8030aSMiao Xie break; 1889aec8030aSMiao Xie } 1890aec8030aSMiao Xie return ret; 18913de4586cSChris Mason } 18923de4586cSChris Mason 18932ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info) 18945d4f98a2SYan Zheng { 18955d4f98a2SYan Zheng struct btrfs_root_item *root_item; 18965d4f98a2SYan Zheng struct btrfs_super_block *super; 18975d4f98a2SYan Zheng 18980b246afaSJeff Mahoney super = fs_info->super_copy; 18995d4f98a2SYan Zheng 19000b246afaSJeff Mahoney root_item = &fs_info->chunk_root->root_item; 1901093e037cSDavid Sterba super->chunk_root = root_item->bytenr; 1902093e037cSDavid Sterba super->chunk_root_generation = root_item->generation; 1903093e037cSDavid Sterba super->chunk_root_level = root_item->level; 19045d4f98a2SYan Zheng 19050b246afaSJeff Mahoney root_item = &fs_info->tree_root->root_item; 1906093e037cSDavid Sterba super->root = root_item->bytenr; 1907093e037cSDavid Sterba super->generation = root_item->generation; 1908093e037cSDavid Sterba super->root_level = root_item->level; 19090b246afaSJeff Mahoney if (btrfs_test_opt(fs_info, SPACE_CACHE)) 1910093e037cSDavid Sterba super->cache_generation = root_item->generation; 191194846229SBoris Burkov else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags)) 191294846229SBoris Burkov super->cache_generation = 0; 19130b246afaSJeff Mahoney if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)) 1914093e037cSDavid Sterba super->uuid_tree_generation = root_item->generation; 19155d4f98a2SYan Zheng } 19165d4f98a2SYan Zheng 1917f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1918f36f3042SChris Mason { 19194a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1920f36f3042SChris Mason int ret = 0; 19214a9d8bdeSMiao Xie 1922a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19234a9d8bdeSMiao Xie trans = info->running_transaction; 19244a9d8bdeSMiao Xie if (trans) 19254a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1926a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1927f36f3042SChris Mason return ret; 1928f36f3042SChris Mason } 1929f36f3042SChris Mason 19308929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 19318929ecfaSYan, Zheng { 19324a9d8bdeSMiao Xie struct btrfs_transaction *trans; 19338929ecfaSYan, Zheng int ret = 0; 19344a9d8bdeSMiao Xie 1935a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19364a9d8bdeSMiao Xie trans = info->running_transaction; 19374a9d8bdeSMiao Xie if (trans) 19384a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1939a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 19408929ecfaSYan, Zheng return ret; 19418929ecfaSYan, Zheng } 19428929ecfaSYan, Zheng 1943fdfbf020SJosef Bacik void btrfs_commit_transaction_async(struct btrfs_trans_handle *trans) 1944bb9c12c9SSage Weil { 19453a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 1946bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1947bb9c12c9SSage Weil 1948fdfbf020SJosef Bacik /* Kick the transaction kthread. */ 1949fdfbf020SJosef Bacik set_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 1950fdfbf020SJosef Bacik wake_up_process(fs_info->transaction_kthread); 1951bb9c12c9SSage Weil 1952bb9c12c9SSage Weil /* take transaction reference */ 1953bb9c12c9SSage Weil cur_trans = trans->transaction; 19549b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 1955bb9c12c9SSage Weil 19563a45bb20SJeff Mahoney btrfs_end_transaction(trans); 19576fc4e354SSage Weil 19586fc4e354SSage Weil /* 1959ae5d29d4SDavid Sterba * Wait for the current transaction commit to start and block 1960ae5d29d4SDavid Sterba * subsequent transaction joins 1961ae5d29d4SDavid Sterba */ 19623e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 1963ae5d29d4SDavid Sterba wait_event(fs_info->transaction_blocked_wait, 1964ae5d29d4SDavid Sterba cur_trans->state >= TRANS_STATE_COMMIT_START || 1965ae5d29d4SDavid Sterba TRANS_ABORTED(cur_trans)); 1966724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1967bb9c12c9SSage Weil } 1968bb9c12c9SSage Weil 196997cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err) 197049b25e05SJeff Mahoney { 197197cb39bbSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 197249b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 197349b25e05SJeff Mahoney 1974b50fff81SDavid Sterba WARN_ON(refcount_read(&trans->use_count) > 1); 197549b25e05SJeff Mahoney 197666642832SJeff Mahoney btrfs_abort_transaction(trans, err); 19777b8b92afSJosef Bacik 19780b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 197966b6135bSLiu Bo 198025d8c284SMiao Xie /* 198125d8c284SMiao Xie * If the transaction is removed from the list, it means this 198225d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 198325d8c284SMiao Xie * to call the cleanup function. 198425d8c284SMiao Xie */ 198525d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 198666b6135bSLiu Bo 19870b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) { 19884a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 19890b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 1990e1489b4fSIoannis Angelakopoulos 1991e1489b4fSIoannis Angelakopoulos /* 1992e1489b4fSIoannis Angelakopoulos * The thread has already released the lockdep map as reader 1993e1489b4fSIoannis Angelakopoulos * already in btrfs_commit_transaction(). 1994e1489b4fSIoannis Angelakopoulos */ 1995e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 1996f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 1997f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 1998f094ac32SLiu Bo 19990b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 2000d7096fc3SJosef Bacik } 2001061dde82SFilipe Manana 2002061dde82SFilipe Manana /* 2003061dde82SFilipe Manana * Now that we know no one else is still using the transaction we can 2004061dde82SFilipe Manana * remove the transaction from the list of transactions. This avoids 2005061dde82SFilipe Manana * the transaction kthread from cleaning up the transaction while some 2006061dde82SFilipe Manana * other task is still using it, which could result in a use-after-free 2007061dde82SFilipe Manana * on things like log trees, as it forces the transaction kthread to 2008061dde82SFilipe Manana * wait for this transaction to be cleaned up by us. 2009061dde82SFilipe Manana */ 2010061dde82SFilipe Manana list_del_init(&cur_trans->list); 2011061dde82SFilipe Manana 20120b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 201349b25e05SJeff Mahoney 20142ff7e61eSJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, fs_info); 201549b25e05SJeff Mahoney 20160b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 20170b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) 20180b246afaSJeff Mahoney fs_info->running_transaction = NULL; 20190b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 20204a9d8bdeSMiao Xie 2021e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 20220b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2023724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2024724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 202549b25e05SJeff Mahoney 20262e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 202749b25e05SJeff Mahoney 202849b25e05SJeff Mahoney if (current->journal_info == trans) 202949b25e05SJeff Mahoney current->journal_info = NULL; 20300b246afaSJeff Mahoney btrfs_scrub_cancel(fs_info); 203149b25e05SJeff Mahoney 203249b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 203349b25e05SJeff Mahoney } 203449b25e05SJeff Mahoney 2035c7cc64a9SDavid Sterba /* 2036c7cc64a9SDavid Sterba * Release reserved delayed ref space of all pending block groups of the 2037c7cc64a9SDavid Sterba * transaction and remove them from the list 2038c7cc64a9SDavid Sterba */ 2039c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans) 2040c7cc64a9SDavid Sterba { 2041c7cc64a9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 204232da5386SDavid Sterba struct btrfs_block_group *block_group, *tmp; 2043c7cc64a9SDavid Sterba 2044c7cc64a9SDavid Sterba list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { 2045c7cc64a9SDavid Sterba btrfs_delayed_refs_rsv_release(fs_info, 1); 2046c7cc64a9SDavid Sterba list_del_init(&block_group->bg_list); 2047c7cc64a9SDavid Sterba } 2048c7cc64a9SDavid Sterba } 2049c7cc64a9SDavid Sterba 205088090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 205182436617SMiao Xie { 2052ce8ea7ccSJosef Bacik /* 2053a0f0cf83SFilipe Manana * We use try_to_writeback_inodes_sb() here because if we used 2054ce8ea7ccSJosef Bacik * btrfs_start_delalloc_roots we would deadlock with fs freeze. 2055ce8ea7ccSJosef Bacik * Currently are holding the fs freeze lock, if we do an async flush 2056ce8ea7ccSJosef Bacik * we'll do btrfs_join_transaction() and deadlock because we need to 2057ce8ea7ccSJosef Bacik * wait for the fs freeze lock. Using the direct flushing we benefit 2058ce8ea7ccSJosef Bacik * from already being in a transaction and our join_transaction doesn't 2059ce8ea7ccSJosef Bacik * have to re-take the fs freeze lock. 2060a0f0cf83SFilipe Manana * 2061a0f0cf83SFilipe Manana * Note that try_to_writeback_inodes_sb() will only trigger writeback 2062a0f0cf83SFilipe Manana * if it can read lock sb->s_umount. It will always be able to lock it, 2063a0f0cf83SFilipe Manana * except when the filesystem is being unmounted or being frozen, but in 2064a0f0cf83SFilipe Manana * those cases sync_filesystem() is called, which results in calling 2065a0f0cf83SFilipe Manana * writeback_inodes_sb() while holding a write lock on sb->s_umount. 2066a0f0cf83SFilipe Manana * Note that we don't call writeback_inodes_sb() directly, because it 2067a0f0cf83SFilipe Manana * will emit a warning if sb->s_umount is not locked. 2068ce8ea7ccSJosef Bacik */ 206988090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 2070a0f0cf83SFilipe Manana try_to_writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC); 207182436617SMiao Xie return 0; 207282436617SMiao Xie } 207382436617SMiao Xie 207488090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 207582436617SMiao Xie { 207688090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 20776374e57aSChris Mason btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); 207882436617SMiao Xie } 207982436617SMiao Xie 208028b21c55SFilipe Manana /* 208128b21c55SFilipe Manana * Add a pending snapshot associated with the given transaction handle to the 208228b21c55SFilipe Manana * respective handle. This must be called after the transaction commit started 208328b21c55SFilipe Manana * and while holding fs_info->trans_lock. 208428b21c55SFilipe Manana * This serves to guarantee a caller of btrfs_commit_transaction() that it can 208528b21c55SFilipe Manana * safely free the pending snapshot pointer in case btrfs_commit_transaction() 208628b21c55SFilipe Manana * returns an error. 208728b21c55SFilipe Manana */ 208828b21c55SFilipe Manana static void add_pending_snapshot(struct btrfs_trans_handle *trans) 208928b21c55SFilipe Manana { 209028b21c55SFilipe Manana struct btrfs_transaction *cur_trans = trans->transaction; 209128b21c55SFilipe Manana 209228b21c55SFilipe Manana if (!trans->pending_snapshot) 209328b21c55SFilipe Manana return; 209428b21c55SFilipe Manana 209528b21c55SFilipe Manana lockdep_assert_held(&trans->fs_info->trans_lock); 209628b21c55SFilipe Manana ASSERT(cur_trans->state >= TRANS_STATE_COMMIT_START); 209728b21c55SFilipe Manana 209828b21c55SFilipe Manana list_add(&trans->pending_snapshot->list, &cur_trans->pending_snapshots); 209928b21c55SFilipe Manana } 210028b21c55SFilipe Manana 2101e55958c8SIoannis Angelakopoulos static void update_commit_stats(struct btrfs_fs_info *fs_info, ktime_t interval) 2102e55958c8SIoannis Angelakopoulos { 2103e55958c8SIoannis Angelakopoulos fs_info->commit_stats.commit_count++; 2104e55958c8SIoannis Angelakopoulos fs_info->commit_stats.last_commit_dur = interval; 2105e55958c8SIoannis Angelakopoulos fs_info->commit_stats.max_commit_dur = 2106e55958c8SIoannis Angelakopoulos max_t(u64, fs_info->commit_stats.max_commit_dur, interval); 2107e55958c8SIoannis Angelakopoulos fs_info->commit_stats.total_commit_dur += interval; 2108e55958c8SIoannis Angelakopoulos } 2109e55958c8SIoannis Angelakopoulos 21103a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans) 211179154b1bSChris Mason { 21123a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 211349b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 21148fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 211525287e0aSMiao Xie int ret; 2116e55958c8SIoannis Angelakopoulos ktime_t start_time; 2117e55958c8SIoannis Angelakopoulos ktime_t interval; 211879154b1bSChris Mason 211935b814f3SNikolay Borisov ASSERT(refcount_read(&trans->use_count) == 1); 21203e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 212135b814f3SNikolay Borisov 2122c52cc7b7SJosef Bacik clear_bit(BTRFS_FS_NEED_TRANS_COMMIT, &fs_info->flags); 2123c52cc7b7SJosef Bacik 21248d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 2125bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 212625287e0aSMiao Xie ret = cur_trans->aborted; 21273e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 212825287e0aSMiao Xie } 212949b25e05SJeff Mahoney 2130f45c752bSJosef Bacik btrfs_trans_release_metadata(trans); 2131f45c752bSJosef Bacik trans->block_rsv = NULL; 2132f45c752bSJosef Bacik 2133e19eb11fSJosef Bacik /* 2134e19eb11fSJosef Bacik * We only want one transaction commit doing the flushing so we do not 2135e19eb11fSJosef Bacik * waste a bunch of time on lock contention on the extent root node. 2136e19eb11fSJosef Bacik */ 2137e19eb11fSJosef Bacik if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING, 2138e19eb11fSJosef Bacik &cur_trans->delayed_refs.flags)) { 2139e19eb11fSJosef Bacik /* 2140e19eb11fSJosef Bacik * Make a pass through all the delayed refs we have so far. 2141e19eb11fSJosef Bacik * Any running threads may add more while we are here. 214256bec294SChris Mason */ 2143c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 21443e738c53SIoannis Angelakopoulos if (ret) 21453e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 2146e19eb11fSJosef Bacik } 214756bec294SChris Mason 21486c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 2149ea658badSJosef Bacik 21503204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 21511bbc621eSChris Mason int run_it = 0; 21521bbc621eSChris Mason 21531bbc621eSChris Mason /* this mutex is also taken before trying to set 21541bbc621eSChris Mason * block groups readonly. We need to make sure 21551bbc621eSChris Mason * that nobody has set a block group readonly 21561bbc621eSChris Mason * after a extents from that block group have been 21571bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 21581bbc621eSChris Mason * will wait for the transaction to commit if it 21593204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 21601bbc621eSChris Mason * 21613204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 21623204d33cSJosef Bacik * only one process starts all the block group IO. It wouldn't 21631bbc621eSChris Mason * hurt to have more than one go through, but there's no 21641bbc621eSChris Mason * real advantage to it either. 21651bbc621eSChris Mason */ 21660b246afaSJeff Mahoney mutex_lock(&fs_info->ro_block_group_mutex); 21673204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 21683204d33cSJosef Bacik &cur_trans->flags)) 21691bbc621eSChris Mason run_it = 1; 21700b246afaSJeff Mahoney mutex_unlock(&fs_info->ro_block_group_mutex); 21711bbc621eSChris Mason 2172f9cacae3SNikolay Borisov if (run_it) { 217321217054SNikolay Borisov ret = btrfs_start_dirty_block_groups(trans); 21743e738c53SIoannis Angelakopoulos if (ret) 21753e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 2176f9cacae3SNikolay Borisov } 2177f9cacae3SNikolay Borisov } 21781bbc621eSChris Mason 21790b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 21804a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 2181d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2182d0c2f4faSFilipe Manana 218328b21c55SFilipe Manana add_pending_snapshot(trans); 218428b21c55SFilipe Manana 21850b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 21869b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 2187ccd467d6SChris Mason 2188d0c2f4faSFilipe Manana if (trans->in_fsync) 2189d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 21903e738c53SIoannis Angelakopoulos 21913e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, 21923e738c53SIoannis Angelakopoulos BTRFS_LOCKDEP_TRANS_COMMIT_START); 2193d0c2f4faSFilipe Manana ret = btrfs_end_transaction(trans); 2194d0c2f4faSFilipe Manana wait_for_commit(cur_trans, want_state); 219515ee9bc7SJosef Bacik 2196bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) 2197b4924a0fSLiu Bo ret = cur_trans->aborted; 2198b4924a0fSLiu Bo 2199724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 220015ee9bc7SJosef Bacik 220149b25e05SJeff Mahoney return ret; 220279154b1bSChris Mason } 22034313b399SChris Mason 22044a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 22050b246afaSJeff Mahoney wake_up(&fs_info->transaction_blocked_wait); 22063e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 2207bb9c12c9SSage Weil 22080b246afaSJeff Mahoney if (cur_trans->list.prev != &fs_info->trans_list) { 2209d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2210d0c2f4faSFilipe Manana 2211d0c2f4faSFilipe Manana if (trans->in_fsync) 2212d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 2213d0c2f4faSFilipe Manana 2214ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 2215ccd467d6SChris Mason struct btrfs_transaction, list); 2216d0c2f4faSFilipe Manana if (prev_trans->state < want_state) { 22179b64f57dSElena Reshetova refcount_inc(&prev_trans->use_count); 22180b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2219ccd467d6SChris Mason 2220d0c2f4faSFilipe Manana wait_for_commit(prev_trans, want_state); 2221d0c2f4faSFilipe Manana 2222bf31f87fSDavid Sterba ret = READ_ONCE(prev_trans->aborted); 2223ccd467d6SChris Mason 2224724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 22251f9b8c8fSFilipe Manana if (ret) 2226e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2227a4abeea4SJosef Bacik } else { 22280b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2229ccd467d6SChris Mason } 2230a4abeea4SJosef Bacik } else { 22310b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2232cb2d3dadSFilipe Manana /* 2233cb2d3dadSFilipe Manana * The previous transaction was aborted and was already removed 2234cb2d3dadSFilipe Manana * from the list of transactions at fs_info->trans_list. So we 2235cb2d3dadSFilipe Manana * abort to prevent writing a new superblock that reflects a 2236cb2d3dadSFilipe Manana * corrupt state (pointing to trees with unwritten nodes/leafs). 2237cb2d3dadSFilipe Manana */ 223884961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) { 2239cb2d3dadSFilipe Manana ret = -EROFS; 2240e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2241cb2d3dadSFilipe Manana } 2242ccd467d6SChris Mason } 224315ee9bc7SJosef Bacik 2244e55958c8SIoannis Angelakopoulos /* 2245e55958c8SIoannis Angelakopoulos * Get the time spent on the work done by the commit thread and not 2246e55958c8SIoannis Angelakopoulos * the time spent waiting on a previous commit 2247e55958c8SIoannis Angelakopoulos */ 2248e55958c8SIoannis Angelakopoulos start_time = ktime_get_ns(); 2249e55958c8SIoannis Angelakopoulos 22500860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 22510860adfdSMiao Xie 225288090ad3SFilipe Manana ret = btrfs_start_delalloc_flush(fs_info); 225382436617SMiao Xie if (ret) 2254e1489b4fSIoannis Angelakopoulos goto lockdep_release; 225582436617SMiao Xie 2256e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 225749b25e05SJeff Mahoney if (ret) 2258e1489b4fSIoannis Angelakopoulos goto lockdep_release; 225916cdcec7SMiao Xie 22605a9ba670SIoannis Angelakopoulos /* 22615a9ba670SIoannis Angelakopoulos * The thread has started/joined the transaction thus it holds the 22625a9ba670SIoannis Angelakopoulos * lockdep map as a reader. It has to release it before acquiring the 22635a9ba670SIoannis Angelakopoulos * lockdep map as a writer. 22645a9ba670SIoannis Angelakopoulos */ 22655a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 22665a9ba670SIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_extwriters); 2267581227d0SMiao Xie wait_event(cur_trans->writer_wait, 2268581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 2269ed3b3d31SChris Mason 2270581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 2271e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 2272e1489b4fSIoannis Angelakopoulos if (ret) { 2273e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2274ca469637SMiao Xie goto cleanup_transaction; 2275e1489b4fSIoannis Angelakopoulos } 2276ca469637SMiao Xie 227788090ad3SFilipe Manana btrfs_wait_delalloc_flush(fs_info); 2278cb7ab021SWang Shilong 227948778179SFilipe Manana /* 228048778179SFilipe Manana * Wait for all ordered extents started by a fast fsync that joined this 228148778179SFilipe Manana * transaction. Otherwise if this transaction commits before the ordered 228248778179SFilipe Manana * extents complete we lose logged data after a power failure. 228348778179SFilipe Manana */ 22848b53779eSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_pending_ordered); 228548778179SFilipe Manana wait_event(cur_trans->pending_wait, 228648778179SFilipe Manana atomic_read(&cur_trans->pending_ordered) == 0); 228748778179SFilipe Manana 22882ff7e61eSJeff Mahoney btrfs_scrub_pause(fs_info); 2289ed0ca140SJosef Bacik /* 2290ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 2291ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 22924a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 2293ed0ca140SJosef Bacik */ 22940b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 229528b21c55SFilipe Manana add_pending_snapshot(trans); 22964a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 22970b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2298e1489b4fSIoannis Angelakopoulos 2299e1489b4fSIoannis Angelakopoulos /* 2300e1489b4fSIoannis Angelakopoulos * The thread has started/joined the transaction thus it holds the 2301e1489b4fSIoannis Angelakopoulos * lockdep map as a reader. It has to release it before acquiring the 2302e1489b4fSIoannis Angelakopoulos * lockdep map as a writer. 2303e1489b4fSIoannis Angelakopoulos */ 2304e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2305e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 2306ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 2307ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 230815ee9bc7SJosef Bacik 2309fdfbf020SJosef Bacik /* 23103e738c53SIoannis Angelakopoulos * Make lockdep happy by acquiring the state locks after 23113e738c53SIoannis Angelakopoulos * btrfs_trans_num_writers is released. If we acquired the state locks 23123e738c53SIoannis Angelakopoulos * before releasing the btrfs_trans_num_writers lock then lockdep would 23133e738c53SIoannis Angelakopoulos * complain because we did not follow the reverse order unlocking rule. 23143e738c53SIoannis Angelakopoulos */ 23153e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 23163e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 23173e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 23183e738c53SIoannis Angelakopoulos 23193e738c53SIoannis Angelakopoulos /* 2320fdfbf020SJosef Bacik * We've started the commit, clear the flag in case we were triggered to 2321fdfbf020SJosef Bacik * do an async commit but somebody else started before the transaction 2322fdfbf020SJosef Bacik * kthread could do the work. 2323fdfbf020SJosef Bacik */ 2324fdfbf020SJosef Bacik clear_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 2325fdfbf020SJosef Bacik 2326bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 23272cba30f1SMiao Xie ret = cur_trans->aborted; 23283e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 23296cf7f77eSWang Shilong goto scrub_continue; 23302cba30f1SMiao Xie } 23317585717fSChris Mason /* 23327585717fSChris Mason * the reloc mutex makes sure that we stop 23337585717fSChris Mason * the balancing code from coming in and moving 23347585717fSChris Mason * extents around in the middle of the commit 23357585717fSChris Mason */ 23360b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 23377585717fSChris Mason 233842874b3dSMiao Xie /* 233942874b3dSMiao Xie * We needn't worry about the delayed items because we will 234042874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 234142874b3dSMiao Xie * core function of the snapshot creation. 234242874b3dSMiao Xie */ 234308d50ca3SNikolay Borisov ret = create_pending_snapshots(trans); 234456e9f6eaSDavid Sterba if (ret) 234556e9f6eaSDavid Sterba goto unlock_reloc; 23463063d29fSChris Mason 234742874b3dSMiao Xie /* 234842874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 234942874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 235042874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 235142874b3dSMiao Xie * them. 235242874b3dSMiao Xie * 235342874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 235442874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 235542874b3dSMiao Xie * the nodes and leaves. 235642874b3dSMiao Xie */ 2357e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 235856e9f6eaSDavid Sterba if (ret) 235956e9f6eaSDavid Sterba goto unlock_reloc; 236016cdcec7SMiao Xie 2361c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 236256e9f6eaSDavid Sterba if (ret) 236356e9f6eaSDavid Sterba goto unlock_reloc; 236456bec294SChris Mason 2365e999376fSChris Mason /* 2366e999376fSChris Mason * make sure none of the code above managed to slip in a 2367e999376fSChris Mason * delayed item 2368e999376fSChris Mason */ 2369ccdf9b30SJeff Mahoney btrfs_assert_delayed_root_empty(fs_info); 2370e999376fSChris Mason 23712c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2372dc17ff8fSChris Mason 23737e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 237456e9f6eaSDavid Sterba if (ret) 2375dfba78dcSFilipe Manana goto unlock_reloc; 237654aa1f4dSChris Mason 23775d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2378e02119d5SChris Mason * safe to free the root of tree log roots 2379e02119d5SChris Mason */ 23800b246afaSJeff Mahoney btrfs_free_log_root_tree(trans, fs_info); 2381e02119d5SChris Mason 23820ed4792aSQu Wenruo /* 23830ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 23840ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 23850ed4792aSQu Wenruo */ 2386460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 238756e9f6eaSDavid Sterba if (ret < 0) 2388dfba78dcSFilipe Manana goto unlock_reloc; 23890ed4792aSQu Wenruo 23909386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 239156e9f6eaSDavid Sterba if (ret) 2392dfba78dcSFilipe Manana goto unlock_reloc; 239354aa1f4dSChris Mason 23942cba30f1SMiao Xie /* 23952cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 23962cba30f1SMiao Xie * update ->aborted, check it. 23972cba30f1SMiao Xie */ 2398bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 23992cba30f1SMiao Xie ret = cur_trans->aborted; 2400dfba78dcSFilipe Manana goto unlock_reloc; 24012cba30f1SMiao Xie } 24022cba30f1SMiao Xie 24030b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 24045f39d397SChris Mason 24050b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->tree_root->root_item, 24060b246afaSJeff Mahoney fs_info->tree_root->node); 24070b246afaSJeff Mahoney list_add_tail(&fs_info->tree_root->dirty_list, 24089e351cc8SJosef Bacik &cur_trans->switch_commits); 24095d4f98a2SYan Zheng 24100b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->chunk_root->root_item, 24110b246afaSJeff Mahoney fs_info->chunk_root->node); 24120b246afaSJeff Mahoney list_add_tail(&fs_info->chunk_root->dirty_list, 24139e351cc8SJosef Bacik &cur_trans->switch_commits); 24149e351cc8SJosef Bacik 2415f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 2416f7238e50SJosef Bacik btrfs_set_root_node(&fs_info->block_group_root->root_item, 2417f7238e50SJosef Bacik fs_info->block_group_root->node); 2418f7238e50SJosef Bacik list_add_tail(&fs_info->block_group_root->dirty_list, 2419f7238e50SJosef Bacik &cur_trans->switch_commits); 2420f7238e50SJosef Bacik } 2421f7238e50SJosef Bacik 2422889bfa39SJosef Bacik switch_commit_roots(trans); 24235d4f98a2SYan Zheng 2424ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 24251bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 24262ff7e61eSJeff Mahoney update_super_roots(fs_info); 2427e02119d5SChris Mason 24280b246afaSJeff Mahoney btrfs_set_super_log_root(fs_info->super_copy, 0); 24290b246afaSJeff Mahoney btrfs_set_super_log_root_level(fs_info->super_copy, 0); 24300b246afaSJeff Mahoney memcpy(fs_info->super_for_commit, fs_info->super_copy, 24310b246afaSJeff Mahoney sizeof(*fs_info->super_copy)); 2432ccd467d6SChris Mason 2433bbbf7243SNikolay Borisov btrfs_commit_device_sizes(cur_trans); 2434935e5cc9SMiao Xie 24350b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags); 24360b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags); 2437656f30dbSFilipe Manana 24384fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 24394fbcdf66SFilipe Manana 2440dfba78dcSFilipe Manana /* 2441dfba78dcSFilipe Manana * Before changing the transaction state to TRANS_STATE_UNBLOCKED and 2442dfba78dcSFilipe Manana * setting fs_info->running_transaction to NULL, lock tree_log_mutex to 2443dfba78dcSFilipe Manana * make sure that before we commit our superblock, no other task can 2444dfba78dcSFilipe Manana * start a new transaction and commit a log tree before we commit our 2445dfba78dcSFilipe Manana * superblock. Anyone trying to commit a log tree locks this mutex before 2446dfba78dcSFilipe Manana * writing its superblock. 2447dfba78dcSFilipe Manana */ 2448dfba78dcSFilipe Manana mutex_lock(&fs_info->tree_log_mutex); 2449dfba78dcSFilipe Manana 24500b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 24514a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 24520b246afaSJeff Mahoney fs_info->running_transaction = NULL; 24530b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 24540b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 2455b7ec40d7SChris Mason 24560b246afaSJeff Mahoney wake_up(&fs_info->transaction_wait); 24573e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 2458e6dcd2dcSChris Mason 245970458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 246049b25e05SJeff Mahoney if (ret) { 24610b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, 246208748810SDavid Sterba "Error while writing out transaction"); 24630b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 24646cf7f77eSWang Shilong goto scrub_continue; 246549b25e05SJeff Mahoney } 246649b25e05SJeff Mahoney 2467d3575156SNaohiro Aota /* 2468d3575156SNaohiro Aota * At this point, we should have written all the tree blocks allocated 2469d3575156SNaohiro Aota * in this transaction. So it's now safe to free the redirtyied extent 2470d3575156SNaohiro Aota * buffers. 2471d3575156SNaohiro Aota */ 2472d3575156SNaohiro Aota btrfs_free_redirty_list(cur_trans); 2473d3575156SNaohiro Aota 2474eece6a9cSDavid Sterba ret = write_all_supers(fs_info, 0); 2475e02119d5SChris Mason /* 2476e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2477e02119d5SChris Mason * to go about their business 2478e02119d5SChris Mason */ 24790b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 2480c1f32b7cSAnand Jain if (ret) 2481c1f32b7cSAnand Jain goto scrub_continue; 2482e02119d5SChris Mason 2483d0c2f4faSFilipe Manana /* 2484d0c2f4faSFilipe Manana * We needn't acquire the lock here because there is no other task 2485d0c2f4faSFilipe Manana * which can change it. 2486d0c2f4faSFilipe Manana */ 2487d0c2f4faSFilipe Manana cur_trans->state = TRANS_STATE_SUPER_COMMITTED; 2488d0c2f4faSFilipe Manana wake_up(&cur_trans->commit_wait); 24893e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 2490d0c2f4faSFilipe Manana 24915ead2dd0SNikolay Borisov btrfs_finish_extent_commit(trans); 24924313b399SChris Mason 24933204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 24940b246afaSJeff Mahoney btrfs_clear_space_info_full(fs_info); 249513212b54SZhao Lei 24960b246afaSJeff Mahoney fs_info->last_trans_committed = cur_trans->transid; 24974a9d8bdeSMiao Xie /* 24984a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 24994a9d8bdeSMiao Xie * which can change it. 25004a9d8bdeSMiao Xie */ 25014a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 25022c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 25033e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 25043de4586cSChris Mason 25050b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 250613c5a93eSJosef Bacik list_del_init(&cur_trans->list); 25070b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2508a4abeea4SJosef Bacik 2509724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2510724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 251158176a96SJosef Bacik 25120860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 25130b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2514b2b5ef5cSJan Kara 25152e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 25161abe9b8aSliubo 2517e55958c8SIoannis Angelakopoulos interval = ktime_get_ns() - start_time; 2518e55958c8SIoannis Angelakopoulos 25192ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 2520a2de733cSArne Jansen 25219ed74f2dSJosef Bacik if (current->journal_info == trans) 25229ed74f2dSJosef Bacik current->journal_info = NULL; 25239ed74f2dSJosef Bacik 25242c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 252524bbcf04SYan, Zheng 2526e55958c8SIoannis Angelakopoulos update_commit_stats(fs_info, interval); 2527e55958c8SIoannis Angelakopoulos 252879154b1bSChris Mason return ret; 252949b25e05SJeff Mahoney 253056e9f6eaSDavid Sterba unlock_reloc: 253156e9f6eaSDavid Sterba mutex_unlock(&fs_info->reloc_mutex); 25323e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 25336cf7f77eSWang Shilong scrub_continue: 25343e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 25353e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 25362ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 253749b25e05SJeff Mahoney cleanup_transaction: 2538dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 2539c7cc64a9SDavid Sterba btrfs_cleanup_pending_block_groups(trans); 25404fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 25410e721106SJosef Bacik trans->block_rsv = NULL; 25420b246afaSJeff Mahoney btrfs_warn(fs_info, "Skipping commit of aborted transaction."); 254349b25e05SJeff Mahoney if (current->journal_info == trans) 254449b25e05SJeff Mahoney current->journal_info = NULL; 254597cb39bbSNikolay Borisov cleanup_transaction(trans, ret); 254649b25e05SJeff Mahoney 254749b25e05SJeff Mahoney return ret; 2548e1489b4fSIoannis Angelakopoulos 2549e1489b4fSIoannis Angelakopoulos lockdep_release: 25505a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 2551e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2552e1489b4fSIoannis Angelakopoulos goto cleanup_transaction; 25533e738c53SIoannis Angelakopoulos 25543e738c53SIoannis Angelakopoulos lockdep_trans_commit_start_release: 25553e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 25563e738c53SIoannis Angelakopoulos btrfs_end_transaction(trans); 25573e738c53SIoannis Angelakopoulos return ret; 255879154b1bSChris Mason } 255979154b1bSChris Mason 2560d352ac68SChris Mason /* 25619d1a2a3aSDavid Sterba * return < 0 if error 25629d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 25639d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 25649d1a2a3aSDavid Sterba * 25659d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 25669d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 25679d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 25689d1a2a3aSDavid Sterba * few seconds later. 2569d352ac68SChris Mason */ 257033c44184SJosef Bacik int btrfs_clean_one_deleted_snapshot(struct btrfs_fs_info *fs_info) 2571e9d0b13bSChris Mason { 257233c44184SJosef Bacik struct btrfs_root *root; 25739d1a2a3aSDavid Sterba int ret; 2574e9d0b13bSChris Mason 2575a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 25769d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 25779d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 25789d1a2a3aSDavid Sterba return 0; 25799d1a2a3aSDavid Sterba } 25809d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 25819d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2582cfad392bSJosef Bacik list_del_init(&root->root_list); 2583a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 25845d4f98a2SYan Zheng 25854fd786e6SMisono Tomohiro btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid); 258676dda93cSYan, Zheng 258716cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 258816cdcec7SMiao Xie 258976dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 259076dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 25910078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 0, 0); 259276dda93cSYan, Zheng else 25930078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 1, 0); 259432471dc2SDavid Sterba 2595dc9492c1SJosef Bacik btrfs_put_root(root); 25966596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2597e9d0b13bSChris Mason } 2598572d9ab7SDavid Sterba 2599956504a3SJosef Bacik int __init btrfs_transaction_init(void) 2600956504a3SJosef Bacik { 2601956504a3SJosef Bacik btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle", 2602956504a3SJosef Bacik sizeof(struct btrfs_trans_handle), 0, 2603956504a3SJosef Bacik SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL); 2604956504a3SJosef Bacik if (!btrfs_trans_handle_cachep) 2605956504a3SJosef Bacik return -ENOMEM; 2606956504a3SJosef Bacik return 0; 2607956504a3SJosef Bacik } 2608956504a3SJosef Bacik 2609956504a3SJosef Bacik void __cold btrfs_transaction_exit(void) 2610956504a3SJosef Bacik { 2611956504a3SJosef Bacik kmem_cache_destroy(btrfs_trans_handle_cachep); 2612956504a3SJosef Bacik } 2613