1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0 26cbd5570SChris Mason /* 36cbd5570SChris Mason * Copyright (C) 2007 Oracle. All rights reserved. 46cbd5570SChris Mason */ 56cbd5570SChris Mason 679154b1bSChris Mason #include <linux/fs.h> 75a0e3ad6STejun Heo #include <linux/slab.h> 834088780SChris Mason #include <linux/sched.h> 9d3c2fdcfSChris Mason #include <linux/writeback.h> 105f39d397SChris Mason #include <linux/pagemap.h> 115f2cc086SChris Mason #include <linux/blkdev.h> 128ea05e3aSAlexander Block #include <linux/uuid.h> 13e55958c8SIoannis Angelakopoulos #include <linux/timekeeping.h> 14602cbe91SDavid Sterba #include "misc.h" 1579154b1bSChris Mason #include "ctree.h" 1679154b1bSChris Mason #include "disk-io.h" 1779154b1bSChris Mason #include "transaction.h" 18925baeddSChris Mason #include "locking.h" 19e02119d5SChris Mason #include "tree-log.h" 20733f4fbbSStefan Behrens #include "volumes.h" 218dabb742SStefan Behrens #include "dev-replace.h" 22fcebe456SJosef Bacik #include "qgroup.h" 23aac0023cSJosef Bacik #include "block-group.h" 249c343784SJosef Bacik #include "space-info.h" 25d3575156SNaohiro Aota #include "zoned.h" 2679154b1bSChris Mason 27fc7cbcd4SDavid Sterba #define BTRFS_ROOT_TRANS_TAG 0 280f7d52f4SChris Mason 2961c047b5SQu Wenruo /* 3061c047b5SQu Wenruo * Transaction states and transitions 3161c047b5SQu Wenruo * 3261c047b5SQu Wenruo * No running transaction (fs tree blocks are not modified) 3361c047b5SQu Wenruo * | 3461c047b5SQu Wenruo * | To next stage: 3561c047b5SQu Wenruo * | Call start_transaction() variants. Except btrfs_join_transaction_nostart(). 3661c047b5SQu Wenruo * V 3761c047b5SQu Wenruo * Transaction N [[TRANS_STATE_RUNNING]] 3861c047b5SQu Wenruo * | 3961c047b5SQu Wenruo * | New trans handles can be attached to transaction N by calling all 4061c047b5SQu Wenruo * | start_transaction() variants. 4161c047b5SQu Wenruo * | 4261c047b5SQu Wenruo * | To next stage: 4361c047b5SQu Wenruo * | Call btrfs_commit_transaction() on any trans handle attached to 4461c047b5SQu Wenruo * | transaction N 4561c047b5SQu Wenruo * V 4661c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_START]] 4761c047b5SQu Wenruo * | 4861c047b5SQu Wenruo * | Will wait for previous running transaction to completely finish if there 4961c047b5SQu Wenruo * | is one 5061c047b5SQu Wenruo * | 5161c047b5SQu Wenruo * | Then one of the following happes: 5261c047b5SQu Wenruo * | - Wait for all other trans handle holders to release. 5361c047b5SQu Wenruo * | The btrfs_commit_transaction() caller will do the commit work. 5461c047b5SQu Wenruo * | - Wait for current transaction to be committed by others. 5561c047b5SQu Wenruo * | Other btrfs_commit_transaction() caller will do the commit work. 5661c047b5SQu Wenruo * | 5761c047b5SQu Wenruo * | At this stage, only btrfs_join_transaction*() variants can attach 5861c047b5SQu Wenruo * | to this running transaction. 5961c047b5SQu Wenruo * | All other variants will wait for current one to finish and attach to 6061c047b5SQu Wenruo * | transaction N+1. 6161c047b5SQu Wenruo * | 6261c047b5SQu Wenruo * | To next stage: 6361c047b5SQu Wenruo * | Caller is chosen to commit transaction N, and all other trans handle 6461c047b5SQu Wenruo * | haven been released. 6561c047b5SQu Wenruo * V 6661c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMMIT_DOING]] 6761c047b5SQu Wenruo * | 6861c047b5SQu Wenruo * | The heavy lifting transaction work is started. 6961c047b5SQu Wenruo * | From running delayed refs (modifying extent tree) to creating pending 7061c047b5SQu Wenruo * | snapshots, running qgroups. 7161c047b5SQu Wenruo * | In short, modify supporting trees to reflect modifications of subvolume 7261c047b5SQu Wenruo * | trees. 7361c047b5SQu Wenruo * | 7461c047b5SQu Wenruo * | At this stage, all start_transaction() calls will wait for this 7561c047b5SQu Wenruo * | transaction to finish and attach to transaction N+1. 7661c047b5SQu Wenruo * | 7761c047b5SQu Wenruo * | To next stage: 7861c047b5SQu Wenruo * | Until all supporting trees are updated. 7961c047b5SQu Wenruo * V 8061c047b5SQu Wenruo * Transaction N [[TRANS_STATE_UNBLOCKED]] 8161c047b5SQu Wenruo * | Transaction N+1 8261c047b5SQu Wenruo * | All needed trees are modified, thus we only [[TRANS_STATE_RUNNING]] 8361c047b5SQu Wenruo * | need to write them back to disk and update | 8461c047b5SQu Wenruo * | super blocks. | 8561c047b5SQu Wenruo * | | 8661c047b5SQu Wenruo * | At this stage, new transaction is allowed to | 8761c047b5SQu Wenruo * | start. | 8861c047b5SQu Wenruo * | All new start_transaction() calls will be | 8961c047b5SQu Wenruo * | attached to transid N+1. | 9061c047b5SQu Wenruo * | | 9161c047b5SQu Wenruo * | To next stage: | 9261c047b5SQu Wenruo * | Until all tree blocks are super blocks are | 9361c047b5SQu Wenruo * | written to block devices | 9461c047b5SQu Wenruo * V | 9561c047b5SQu Wenruo * Transaction N [[TRANS_STATE_COMPLETED]] V 9661c047b5SQu Wenruo * All tree blocks and super blocks are written. Transaction N+1 9761c047b5SQu Wenruo * This transaction is finished and all its [[TRANS_STATE_COMMIT_START]] 9861c047b5SQu Wenruo * data structures will be cleaned up. | Life goes on 9961c047b5SQu Wenruo */ 100e8c9f186SDavid Sterba static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { 1014a9d8bdeSMiao Xie [TRANS_STATE_RUNNING] = 0U, 102bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH), 103bcf3a3e7SNikolay Borisov [TRANS_STATE_COMMIT_DOING] = (__TRANS_START | 1044a9d8bdeSMiao Xie __TRANS_ATTACH | 105a6d155d2SFilipe Manana __TRANS_JOIN | 106a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 107bcf3a3e7SNikolay Borisov [TRANS_STATE_UNBLOCKED] = (__TRANS_START | 1084a9d8bdeSMiao Xie __TRANS_ATTACH | 1094a9d8bdeSMiao Xie __TRANS_JOIN | 110a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 111a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 112d0c2f4faSFilipe Manana [TRANS_STATE_SUPER_COMMITTED] = (__TRANS_START | 113d0c2f4faSFilipe Manana __TRANS_ATTACH | 114d0c2f4faSFilipe Manana __TRANS_JOIN | 115d0c2f4faSFilipe Manana __TRANS_JOIN_NOLOCK | 116d0c2f4faSFilipe Manana __TRANS_JOIN_NOSTART), 117bcf3a3e7SNikolay Borisov [TRANS_STATE_COMPLETED] = (__TRANS_START | 1184a9d8bdeSMiao Xie __TRANS_ATTACH | 1194a9d8bdeSMiao Xie __TRANS_JOIN | 120a6d155d2SFilipe Manana __TRANS_JOIN_NOLOCK | 121a6d155d2SFilipe Manana __TRANS_JOIN_NOSTART), 1224a9d8bdeSMiao Xie }; 1234a9d8bdeSMiao Xie 124724e2315SJosef Bacik void btrfs_put_transaction(struct btrfs_transaction *transaction) 12579154b1bSChris Mason { 1269b64f57dSElena Reshetova WARN_ON(refcount_read(&transaction->use_count) == 0); 1279b64f57dSElena Reshetova if (refcount_dec_and_test(&transaction->use_count)) { 128a4abeea4SJosef Bacik BUG_ON(!list_empty(&transaction->list)); 1295c9d028bSLiu Bo WARN_ON(!RB_EMPTY_ROOT( 1305c9d028bSLiu Bo &transaction->delayed_refs.href_root.rb_root)); 13181f7eb00SJeff Mahoney WARN_ON(!RB_EMPTY_ROOT( 13281f7eb00SJeff Mahoney &transaction->delayed_refs.dirty_extent_root)); 1331262133bSJosef Bacik if (transaction->delayed_refs.pending_csums) 134ab8d0fc4SJeff Mahoney btrfs_err(transaction->fs_info, 135ab8d0fc4SJeff Mahoney "pending csums is %llu", 1361262133bSJosef Bacik transaction->delayed_refs.pending_csums); 1377785a663SFilipe Manana /* 1387785a663SFilipe Manana * If any block groups are found in ->deleted_bgs then it's 1397785a663SFilipe Manana * because the transaction was aborted and a commit did not 1407785a663SFilipe Manana * happen (things failed before writing the new superblock 1417785a663SFilipe Manana * and calling btrfs_finish_extent_commit()), so we can not 1427785a663SFilipe Manana * discard the physical locations of the block groups. 1437785a663SFilipe Manana */ 1447785a663SFilipe Manana while (!list_empty(&transaction->deleted_bgs)) { 14532da5386SDavid Sterba struct btrfs_block_group *cache; 1467785a663SFilipe Manana 1477785a663SFilipe Manana cache = list_first_entry(&transaction->deleted_bgs, 14832da5386SDavid Sterba struct btrfs_block_group, 1497785a663SFilipe Manana bg_list); 1507785a663SFilipe Manana list_del_init(&cache->bg_list); 1516b7304afSFilipe Manana btrfs_unfreeze_block_group(cache); 1527785a663SFilipe Manana btrfs_put_block_group(cache); 1537785a663SFilipe Manana } 154bbbf7243SNikolay Borisov WARN_ON(!list_empty(&transaction->dev_update_list)); 1554b5faeacSDavid Sterba kfree(transaction); 15679154b1bSChris Mason } 15778fae27eSChris Mason } 15879154b1bSChris Mason 159889bfa39SJosef Bacik static noinline void switch_commit_roots(struct btrfs_trans_handle *trans) 160817d52f8SJosef Bacik { 161889bfa39SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 16216916a88SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1639e351cc8SJosef Bacik struct btrfs_root *root, *tmp; 16427d56e62SJosef Bacik struct btrfs_caching_control *caching_ctl, *next; 1659e351cc8SJosef Bacik 166dfba78dcSFilipe Manana /* 167dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 168dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 169dfba78dcSFilipe Manana */ 170dfba78dcSFilipe Manana ASSERT(cur_trans->state == TRANS_STATE_COMMIT_DOING); 171dfba78dcSFilipe Manana 1729e351cc8SJosef Bacik down_write(&fs_info->commit_root_sem); 173d96b3424SFilipe Manana 174d96b3424SFilipe Manana if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags)) 175d96b3424SFilipe Manana fs_info->last_reloc_trans = trans->transid; 176d96b3424SFilipe Manana 177889bfa39SJosef Bacik list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits, 1789e351cc8SJosef Bacik dirty_list) { 1799e351cc8SJosef Bacik list_del_init(&root->dirty_list); 180817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 181817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 18241e7acd3SNikolay Borisov extent_io_tree_release(&root->dirty_log_pages); 183370a11b8SQu Wenruo btrfs_qgroup_clean_swapped_blocks(root); 1849e351cc8SJosef Bacik } 1852b9dbef2SJosef Bacik 1862b9dbef2SJosef Bacik /* We can free old roots now. */ 187889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 188889bfa39SJosef Bacik while (!list_empty(&cur_trans->dropped_roots)) { 189889bfa39SJosef Bacik root = list_first_entry(&cur_trans->dropped_roots, 1902b9dbef2SJosef Bacik struct btrfs_root, root_list); 1912b9dbef2SJosef Bacik list_del_init(&root->root_list); 192889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 193889bfa39SJosef Bacik btrfs_free_log(trans, root); 1942b9dbef2SJosef Bacik btrfs_drop_and_free_fs_root(fs_info, root); 195889bfa39SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 1962b9dbef2SJosef Bacik } 197889bfa39SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 19827d56e62SJosef Bacik 19927d56e62SJosef Bacik /* 20027d56e62SJosef Bacik * We have to update the last_byte_to_unpin under the commit_root_sem, 20127d56e62SJosef Bacik * at the same time we swap out the commit roots. 20227d56e62SJosef Bacik * 20327d56e62SJosef Bacik * This is because we must have a real view of the last spot the caching 20427d56e62SJosef Bacik * kthreads were while caching. Consider the following views of the 20527d56e62SJosef Bacik * extent tree for a block group 20627d56e62SJosef Bacik * 20727d56e62SJosef Bacik * commit root 20827d56e62SJosef Bacik * +----+----+----+----+----+----+----+ 20927d56e62SJosef Bacik * |\\\\| |\\\\|\\\\| |\\\\|\\\\| 21027d56e62SJosef Bacik * +----+----+----+----+----+----+----+ 21127d56e62SJosef Bacik * 0 1 2 3 4 5 6 7 21227d56e62SJosef Bacik * 21327d56e62SJosef Bacik * new commit root 21427d56e62SJosef Bacik * +----+----+----+----+----+----+----+ 21527d56e62SJosef Bacik * | | | |\\\\| | |\\\\| 21627d56e62SJosef Bacik * +----+----+----+----+----+----+----+ 21727d56e62SJosef Bacik * 0 1 2 3 4 5 6 7 21827d56e62SJosef Bacik * 21927d56e62SJosef Bacik * If the cache_ctl->progress was at 3, then we are only allowed to 22027d56e62SJosef Bacik * unpin [0,1) and [2,3], because the caching thread has already 22127d56e62SJosef Bacik * processed those extents. We are not allowed to unpin [5,6), because 22227d56e62SJosef Bacik * the caching thread will re-start it's search from 3, and thus find 22327d56e62SJosef Bacik * the hole from [4,6) to add to the free space cache. 22427d56e62SJosef Bacik */ 22516b0c258SFilipe Manana write_lock(&fs_info->block_group_cache_lock); 22627d56e62SJosef Bacik list_for_each_entry_safe(caching_ctl, next, 22727d56e62SJosef Bacik &fs_info->caching_block_groups, list) { 22827d56e62SJosef Bacik struct btrfs_block_group *cache = caching_ctl->block_group; 22927d56e62SJosef Bacik 23027d56e62SJosef Bacik if (btrfs_block_group_done(cache)) { 23127d56e62SJosef Bacik cache->last_byte_to_unpin = (u64)-1; 23227d56e62SJosef Bacik list_del_init(&caching_ctl->list); 23327d56e62SJosef Bacik btrfs_put_caching_control(caching_ctl); 23427d56e62SJosef Bacik } else { 23527d56e62SJosef Bacik cache->last_byte_to_unpin = caching_ctl->progress; 23627d56e62SJosef Bacik } 23727d56e62SJosef Bacik } 23816b0c258SFilipe Manana write_unlock(&fs_info->block_group_cache_lock); 2399e351cc8SJosef Bacik up_write(&fs_info->commit_root_sem); 240817d52f8SJosef Bacik } 241817d52f8SJosef Bacik 2420860adfdSMiao Xie static inline void extwriter_counter_inc(struct btrfs_transaction *trans, 2430860adfdSMiao Xie unsigned int type) 2440860adfdSMiao Xie { 2450860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 2460860adfdSMiao Xie atomic_inc(&trans->num_extwriters); 2470860adfdSMiao Xie } 2480860adfdSMiao Xie 2490860adfdSMiao Xie static inline void extwriter_counter_dec(struct btrfs_transaction *trans, 2500860adfdSMiao Xie unsigned int type) 2510860adfdSMiao Xie { 2520860adfdSMiao Xie if (type & TRANS_EXTWRITERS) 2530860adfdSMiao Xie atomic_dec(&trans->num_extwriters); 2540860adfdSMiao Xie } 2550860adfdSMiao Xie 2560860adfdSMiao Xie static inline void extwriter_counter_init(struct btrfs_transaction *trans, 2570860adfdSMiao Xie unsigned int type) 2580860adfdSMiao Xie { 2590860adfdSMiao Xie atomic_set(&trans->num_extwriters, ((type & TRANS_EXTWRITERS) ? 1 : 0)); 2600860adfdSMiao Xie } 2610860adfdSMiao Xie 2620860adfdSMiao Xie static inline int extwriter_counter_read(struct btrfs_transaction *trans) 2630860adfdSMiao Xie { 2640860adfdSMiao Xie return atomic_read(&trans->num_extwriters); 265178260b2SMiao Xie } 266178260b2SMiao Xie 267d352ac68SChris Mason /* 26879bd3712SFilipe Manana * To be called after doing the chunk btree updates right after allocating a new 26979bd3712SFilipe Manana * chunk (after btrfs_chunk_alloc_add_chunk_item() is called), when removing a 27079bd3712SFilipe Manana * chunk after all chunk btree updates and after finishing the second phase of 27179bd3712SFilipe Manana * chunk allocation (btrfs_create_pending_block_groups()) in case some block 27279bd3712SFilipe Manana * group had its chunk item insertion delayed to the second phase. 273fb6dea26SJosef Bacik */ 274fb6dea26SJosef Bacik void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) 275fb6dea26SJosef Bacik { 276fb6dea26SJosef Bacik struct btrfs_fs_info *fs_info = trans->fs_info; 277fb6dea26SJosef Bacik 278fb6dea26SJosef Bacik if (!trans->chunk_bytes_reserved) 279fb6dea26SJosef Bacik return; 280fb6dea26SJosef Bacik 281fb6dea26SJosef Bacik btrfs_block_rsv_release(fs_info, &fs_info->chunk_block_rsv, 28263f018beSNikolay Borisov trans->chunk_bytes_reserved, NULL); 283fb6dea26SJosef Bacik trans->chunk_bytes_reserved = 0; 284fb6dea26SJosef Bacik } 285fb6dea26SJosef Bacik 286fb6dea26SJosef Bacik /* 287d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 288d352ac68SChris Mason */ 2892ff7e61eSJeff Mahoney static noinline int join_transaction(struct btrfs_fs_info *fs_info, 2902ff7e61eSJeff Mahoney unsigned int type) 29179154b1bSChris Mason { 29279154b1bSChris Mason struct btrfs_transaction *cur_trans; 293a4abeea4SJosef Bacik 29419ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 295d43317dcSChris Mason loop: 29649b25e05SJeff Mahoney /* The file system has been taken offline. No new transactions. */ 29784961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) { 29819ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 29949b25e05SJeff Mahoney return -EROFS; 30049b25e05SJeff Mahoney } 30149b25e05SJeff Mahoney 30219ae4e81SJan Schmidt cur_trans = fs_info->running_transaction; 303a4abeea4SJosef Bacik if (cur_trans) { 304bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 30519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 30649b25e05SJeff Mahoney return cur_trans->aborted; 307871383beSDavid Sterba } 3084a9d8bdeSMiao Xie if (btrfs_blocked_trans_types[cur_trans->state] & type) { 309178260b2SMiao Xie spin_unlock(&fs_info->trans_lock); 310178260b2SMiao Xie return -EBUSY; 311178260b2SMiao Xie } 3129b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 313a4abeea4SJosef Bacik atomic_inc(&cur_trans->num_writers); 3140860adfdSMiao Xie extwriter_counter_inc(cur_trans, type); 31519ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 316e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 3175a9ba670SIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters); 318a4abeea4SJosef Bacik return 0; 319a4abeea4SJosef Bacik } 32019ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 321a4abeea4SJosef Bacik 322354aa0fbSMiao Xie /* 323354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 324354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 325354aa0fbSMiao Xie */ 326354aa0fbSMiao Xie if (type == TRANS_ATTACH) 327354aa0fbSMiao Xie return -ENOENT; 328354aa0fbSMiao Xie 3294a9d8bdeSMiao Xie /* 3304a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 3314a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 3324a9d8bdeSMiao Xie */ 3334a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 3344a9d8bdeSMiao Xie 3354b5faeacSDavid Sterba cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS); 336db5b493aSTsutomu Itoh if (!cur_trans) 337db5b493aSTsutomu Itoh return -ENOMEM; 338d43317dcSChris Mason 339e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 3405a9ba670SIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_extwriters); 341e1489b4fSIoannis Angelakopoulos 34219ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 34319ae4e81SJan Schmidt if (fs_info->running_transaction) { 344d43317dcSChris Mason /* 345d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 3464a9d8bdeSMiao Xie * to redo the checks above 347d43317dcSChris Mason */ 3485a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 349e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3504b5faeacSDavid Sterba kfree(cur_trans); 351d43317dcSChris Mason goto loop; 35284961539SJosef Bacik } else if (BTRFS_FS_ERROR(fs_info)) { 353e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 3545a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 355e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3564b5faeacSDavid Sterba kfree(cur_trans); 3577b8b92afSJosef Bacik return -EROFS; 358a4abeea4SJosef Bacik } 359d43317dcSChris Mason 360ab8d0fc4SJeff Mahoney cur_trans->fs_info = fs_info; 36148778179SFilipe Manana atomic_set(&cur_trans->pending_ordered, 0); 36248778179SFilipe Manana init_waitqueue_head(&cur_trans->pending_wait); 36313c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 3640860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 36579154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 36679154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 3674a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 368a4abeea4SJosef Bacik /* 369a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 370a4abeea4SJosef Bacik * commit the transaction. 371a4abeea4SJosef Bacik */ 3729b64f57dSElena Reshetova refcount_set(&cur_trans->use_count, 2); 3733204d33cSJosef Bacik cur_trans->flags = 0; 374afd48513SArnd Bergmann cur_trans->start_time = ktime_get_seconds(); 37556bec294SChris Mason 376a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 377a099d0fdSAlexandru Moise 3785c9d028bSLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT_CACHED; 3793368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 380d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 38120b297d6SJan Schmidt 38220b297d6SJan Schmidt /* 38320b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 38420b297d6SJan Schmidt * the log must never go across transaction boundaries. 38520b297d6SJan Schmidt */ 38620b297d6SJan Schmidt smp_mb(); 38731b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 3885d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n"); 38931b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 3905d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n"); 391fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 39220b297d6SJan Schmidt 39356bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 39456bec294SChris Mason 3953063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 396bbbf7243SNikolay Borisov INIT_LIST_HEAD(&cur_trans->dev_update_list); 3979e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 398ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 3991bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 4002b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 4011bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 402ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 403e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 4042b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 405d3575156SNaohiro Aota INIT_LIST_HEAD(&cur_trans->releasing_ebs); 406d3575156SNaohiro Aota spin_lock_init(&cur_trans->releasing_ebs_lock); 40719ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 408c258d6e3SQu Wenruo extent_io_tree_init(fs_info, &cur_trans->dirty_pages, 40943eb5f29SQu Wenruo IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode); 410fe119a6eSNikolay Borisov extent_io_tree_init(fs_info, &cur_trans->pinned_extents, 411fe119a6eSNikolay Borisov IO_TREE_FS_PINNED_EXTENTS, NULL); 41219ae4e81SJan Schmidt fs_info->generation++; 41319ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 41419ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 41549b25e05SJeff Mahoney cur_trans->aborted = 0; 41619ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 41715ee9bc7SJosef Bacik 41879154b1bSChris Mason return 0; 41979154b1bSChris Mason } 42079154b1bSChris Mason 421d352ac68SChris Mason /* 42292a7cc42SQu Wenruo * This does all the record keeping required to make sure that a shareable root 42392a7cc42SQu Wenruo * is properly recorded in a given transaction. This is required to make sure 42492a7cc42SQu Wenruo * the old root from before we joined the transaction is deleted when the 42592a7cc42SQu Wenruo * transaction commits. 426d352ac68SChris Mason */ 4277585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 4286426c7adSQu Wenruo struct btrfs_root *root, 4296426c7adSQu Wenruo int force) 4306702ed49SChris Mason { 4310b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 43203a7e111SJosef Bacik int ret = 0; 4330b246afaSJeff Mahoney 43492a7cc42SQu Wenruo if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 4356426c7adSQu Wenruo root->last_trans < trans->transid) || force) { 4364d31778aSQu Wenruo WARN_ON(!force && root->commit_root != root->node); 4375d4f98a2SYan Zheng 4387585717fSChris Mason /* 43927cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 4407585717fSChris Mason * we have the reloc mutex held now, so there 4417585717fSChris Mason * is only one writer in this function 4427585717fSChris Mason */ 44327cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4447585717fSChris Mason 44527cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 4467585717fSChris Mason * they find our root->last_trans update 4477585717fSChris Mason */ 4487585717fSChris Mason smp_wmb(); 4497585717fSChris Mason 450fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 4516426c7adSQu Wenruo if (root->last_trans == trans->transid && !force) { 452fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 453a4abeea4SJosef Bacik return 0; 454a4abeea4SJosef Bacik } 455fc7cbcd4SDavid Sterba radix_tree_tag_set(&fs_info->fs_roots_radix, 4566702ed49SChris Mason (unsigned long)root->root_key.objectid, 4576702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 458fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 4597585717fSChris Mason root->last_trans = trans->transid; 4607585717fSChris Mason 4617585717fSChris Mason /* this is pretty tricky. We don't want to 4627585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 4637585717fSChris Mason * unless we're really doing the first setup for this root in 4647585717fSChris Mason * this transaction. 4657585717fSChris Mason * 4667585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 4677585717fSChris Mason * if we want to take the expensive mutex. 4687585717fSChris Mason * 4697585717fSChris Mason * But, we have to set root->last_trans before we 4707585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 4717585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 47227cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 4737585717fSChris Mason * fixing up the reloc trees and everyone must wait. 4747585717fSChris Mason * 4757585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 4767585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 4777585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 4787585717fSChris Mason * done before we pop in the zero below 4797585717fSChris Mason */ 48003a7e111SJosef Bacik ret = btrfs_init_reloc_root(trans, root); 481c7548af6SChris Mason smp_mb__before_atomic(); 48227cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4836702ed49SChris Mason } 48403a7e111SJosef Bacik return ret; 4856702ed49SChris Mason } 4865d4f98a2SYan Zheng 4877585717fSChris Mason 4882b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 4892b9dbef2SJosef Bacik struct btrfs_root *root) 4902b9dbef2SJosef Bacik { 4910b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4922b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 4932b9dbef2SJosef Bacik 4942b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 4952b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 4962b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 4972b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 4982b9dbef2SJosef Bacik 4992b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 500fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 501fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 5022b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 5032b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 504fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 5052b9dbef2SJosef Bacik } 5062b9dbef2SJosef Bacik 5077585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 5087585717fSChris Mason struct btrfs_root *root) 5097585717fSChris Mason { 5100b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5111409e6ccSJosef Bacik int ret; 5120b246afaSJeff Mahoney 51392a7cc42SQu Wenruo if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) 5147585717fSChris Mason return 0; 5157585717fSChris Mason 5167585717fSChris Mason /* 51727cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 5187585717fSChris Mason * and barriers 5197585717fSChris Mason */ 5207585717fSChris Mason smp_rmb(); 5217585717fSChris Mason if (root->last_trans == trans->transid && 52227cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 5237585717fSChris Mason return 0; 5247585717fSChris Mason 5250b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 5261409e6ccSJosef Bacik ret = record_root_in_trans(trans, root, 0); 5270b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 5287585717fSChris Mason 5291409e6ccSJosef Bacik return ret; 5307585717fSChris Mason } 5317585717fSChris Mason 5324a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 5334a9d8bdeSMiao Xie { 5343296bf56SQu Wenruo return (trans->state >= TRANS_STATE_COMMIT_START && 535501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 536bf31f87fSDavid Sterba !TRANS_ABORTED(trans)); 5374a9d8bdeSMiao Xie } 5384a9d8bdeSMiao Xie 539d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 540d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 541d352ac68SChris Mason * transaction might not be fully on disk. 542d352ac68SChris Mason */ 5432ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info) 54479154b1bSChris Mason { 545f9295749SChris Mason struct btrfs_transaction *cur_trans; 54679154b1bSChris Mason 5470b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 5480b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 5494a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 5509b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 5510b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 55272d63ed6SLi Zefan 5533e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 5540b246afaSJeff Mahoney wait_event(fs_info->transaction_wait, 555501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 556bf31f87fSDavid Sterba TRANS_ABORTED(cur_trans)); 557724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 558a4abeea4SJosef Bacik } else { 5590b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 560f9295749SChris Mason } 56137d1aeeeSChris Mason } 56237d1aeeeSChris Mason 5632ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type) 56437d1aeeeSChris Mason { 5650b246afaSJeff Mahoney if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) 566a4abeea4SJosef Bacik return 0; 567a4abeea4SJosef Bacik 56892e2f7e3SNikolay Borisov if (type == TRANS_START) 569a4abeea4SJosef Bacik return 1; 570a4abeea4SJosef Bacik 571a22285a6SYan, Zheng return 0; 572a22285a6SYan, Zheng } 573a22285a6SYan, Zheng 57420dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 57520dd2cbfSMiao Xie { 5760b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5770b246afaSJeff Mahoney 5780b246afaSJeff Mahoney if (!fs_info->reloc_ctl || 57992a7cc42SQu Wenruo !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) || 58020dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 58120dd2cbfSMiao Xie root->reloc_root) 58220dd2cbfSMiao Xie return false; 58320dd2cbfSMiao Xie 58420dd2cbfSMiao Xie return true; 58520dd2cbfSMiao Xie } 58620dd2cbfSMiao Xie 58708e007d2SMiao Xie static struct btrfs_trans_handle * 5885aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 589003d7c59SJeff Mahoney unsigned int type, enum btrfs_reserve_flush_enum flush, 590003d7c59SJeff Mahoney bool enforce_qgroups) 591a22285a6SYan, Zheng { 5920b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 593ba2c4d4eSJosef Bacik struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; 594a22285a6SYan, Zheng struct btrfs_trans_handle *h; 595a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 596b5009945SJosef Bacik u64 num_bytes = 0; 597c5567237SArne Jansen u64 qgroup_reserved = 0; 59820dd2cbfSMiao Xie bool reloc_reserved = false; 5999c343784SJosef Bacik bool do_chunk_alloc = false; 60020dd2cbfSMiao Xie int ret; 601acce952bSliubo 60284961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) 603acce952bSliubo return ERR_PTR(-EROFS); 6042a1eb461SJosef Bacik 60546c4e71eSFilipe Manana if (current->journal_info) { 6060860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 6072a1eb461SJosef Bacik h = current->journal_info; 608b50fff81SDavid Sterba refcount_inc(&h->use_count); 609b50fff81SDavid Sterba WARN_ON(refcount_read(&h->use_count) > 2); 6102a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 6112a1eb461SJosef Bacik h->block_rsv = NULL; 6122a1eb461SJosef Bacik goto got_it; 6132a1eb461SJosef Bacik } 614b5009945SJosef Bacik 615b5009945SJosef Bacik /* 616b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 617b5009945SJosef Bacik * the appropriate flushing if need be. 618b5009945SJosef Bacik */ 619003d7c59SJeff Mahoney if (num_items && root != fs_info->chunk_root) { 620ba2c4d4eSJosef Bacik struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv; 621ba2c4d4eSJosef Bacik u64 delayed_refs_bytes = 0; 622ba2c4d4eSJosef Bacik 6230b246afaSJeff Mahoney qgroup_reserved = num_items * fs_info->nodesize; 624733e03a0SQu Wenruo ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, 625003d7c59SJeff Mahoney enforce_qgroups); 626c5567237SArne Jansen if (ret) 627c5567237SArne Jansen return ERR_PTR(ret); 628c5567237SArne Jansen 629ba2c4d4eSJosef Bacik /* 630ba2c4d4eSJosef Bacik * We want to reserve all the bytes we may need all at once, so 631ba2c4d4eSJosef Bacik * we only do 1 enospc flushing cycle per transaction start. We 632ba2c4d4eSJosef Bacik * accomplish this by simply assuming we'll do 2 x num_items 633ba2c4d4eSJosef Bacik * worth of delayed refs updates in this trans handle, and 634ba2c4d4eSJosef Bacik * refill that amount for whatever is missing in the reserve. 635ba2c4d4eSJosef Bacik */ 6362bd36e7bSJosef Bacik num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items); 6377f9fe614SJosef Bacik if (flush == BTRFS_RESERVE_FLUSH_ALL && 6387f9fe614SJosef Bacik delayed_refs_rsv->full == 0) { 639ba2c4d4eSJosef Bacik delayed_refs_bytes = num_bytes; 640ba2c4d4eSJosef Bacik num_bytes <<= 1; 641ba2c4d4eSJosef Bacik } 642ba2c4d4eSJosef Bacik 64320dd2cbfSMiao Xie /* 64420dd2cbfSMiao Xie * Do the reservation for the relocation root creation 64520dd2cbfSMiao Xie */ 646ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 6470b246afaSJeff Mahoney num_bytes += fs_info->nodesize; 64820dd2cbfSMiao Xie reloc_reserved = true; 64920dd2cbfSMiao Xie } 65020dd2cbfSMiao Xie 6519270501cSJosef Bacik ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush); 652ba2c4d4eSJosef Bacik if (ret) 653ba2c4d4eSJosef Bacik goto reserve_fail; 654ba2c4d4eSJosef Bacik if (delayed_refs_bytes) { 655ba2c4d4eSJosef Bacik btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv, 656ba2c4d4eSJosef Bacik delayed_refs_bytes); 657ba2c4d4eSJosef Bacik num_bytes -= delayed_refs_bytes; 658ba2c4d4eSJosef Bacik } 6599c343784SJosef Bacik 6609c343784SJosef Bacik if (rsv->space_info->force_alloc) 6619c343784SJosef Bacik do_chunk_alloc = true; 662ba2c4d4eSJosef Bacik } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL && 663ba2c4d4eSJosef Bacik !delayed_refs_rsv->full) { 664ba2c4d4eSJosef Bacik /* 665ba2c4d4eSJosef Bacik * Some people call with btrfs_start_transaction(root, 0) 666ba2c4d4eSJosef Bacik * because they can be throttled, but have some other mechanism 667ba2c4d4eSJosef Bacik * for reserving space. We still want these guys to refill the 668ba2c4d4eSJosef Bacik * delayed block_rsv so just add 1 items worth of reservation 669ba2c4d4eSJosef Bacik * here. 670ba2c4d4eSJosef Bacik */ 671ba2c4d4eSJosef Bacik ret = btrfs_delayed_refs_rsv_refill(fs_info, flush); 672b5009945SJosef Bacik if (ret) 673843fcf35SMiao Xie goto reserve_fail; 674b5009945SJosef Bacik } 675a22285a6SYan, Zheng again: 676f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 677843fcf35SMiao Xie if (!h) { 678843fcf35SMiao Xie ret = -ENOMEM; 679843fcf35SMiao Xie goto alloc_fail; 680843fcf35SMiao Xie } 681a22285a6SYan, Zheng 68298114659SJosef Bacik /* 68398114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 68498114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 68598114659SJosef Bacik * because we're already holding a ref. We need this because we could 68698114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 68798114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 688354aa0fbSMiao Xie * 689354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 690354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 69198114659SJosef Bacik */ 6920860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 6930b246afaSJeff Mahoney sb_start_intwrite(fs_info->sb); 694b2b5ef5cSJan Kara 6952ff7e61eSJeff Mahoney if (may_wait_transaction(fs_info, type)) 6962ff7e61eSJeff Mahoney wait_current_trans(fs_info); 697a22285a6SYan, Zheng 698a4abeea4SJosef Bacik do { 6992ff7e61eSJeff Mahoney ret = join_transaction(fs_info, type); 700178260b2SMiao Xie if (ret == -EBUSY) { 7012ff7e61eSJeff Mahoney wait_current_trans(fs_info); 702a6d155d2SFilipe Manana if (unlikely(type == TRANS_ATTACH || 703a6d155d2SFilipe Manana type == TRANS_JOIN_NOSTART)) 704178260b2SMiao Xie ret = -ENOENT; 705178260b2SMiao Xie } 706a4abeea4SJosef Bacik } while (ret == -EBUSY); 707a4abeea4SJosef Bacik 708a43f7f82SLiu Bo if (ret < 0) 709843fcf35SMiao Xie goto join_fail; 7100f7d52f4SChris Mason 7110b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 712a22285a6SYan, Zheng 713a22285a6SYan, Zheng h->transid = cur_trans->transid; 714a22285a6SYan, Zheng h->transaction = cur_trans; 715b50fff81SDavid Sterba refcount_set(&h->use_count, 1); 71664b63580SJeff Mahoney h->fs_info = root->fs_info; 7177174109cSQu Wenruo 718a698d075SMiao Xie h->type = type; 719ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 720b7ec40d7SChris Mason 721a22285a6SYan, Zheng smp_mb(); 7223296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START && 7232ff7e61eSJeff Mahoney may_wait_transaction(fs_info, type)) { 724abdd2e80SFilipe Manana current->journal_info = h; 7253a45bb20SJeff Mahoney btrfs_commit_transaction(h); 726a22285a6SYan, Zheng goto again; 727a22285a6SYan, Zheng } 7289ed74f2dSJosef Bacik 729b5009945SJosef Bacik if (num_bytes) { 7300b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 7312bcc0328SLiu Bo h->transid, num_bytes, 1); 7320b246afaSJeff Mahoney h->block_rsv = &fs_info->trans_block_rsv; 733b5009945SJosef Bacik h->bytes_reserved = num_bytes; 73420dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 735a22285a6SYan, Zheng } 736a22285a6SYan, Zheng 7372a1eb461SJosef Bacik got_it: 738bcf3a3e7SNikolay Borisov if (!current->journal_info) 739a22285a6SYan, Zheng current->journal_info = h; 740fcc99734SQu Wenruo 741fcc99734SQu Wenruo /* 7429c343784SJosef Bacik * If the space_info is marked ALLOC_FORCE then we'll get upgraded to 7439c343784SJosef Bacik * ALLOC_FORCE the first run through, and then we won't allocate for 7449c343784SJosef Bacik * anybody else who races in later. We don't care about the return 7459c343784SJosef Bacik * value here. 7469c343784SJosef Bacik */ 7479c343784SJosef Bacik if (do_chunk_alloc && num_bytes) { 7489c343784SJosef Bacik u64 flags = h->block_rsv->space_info->flags; 7499c343784SJosef Bacik 7509c343784SJosef Bacik btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags), 7519c343784SJosef Bacik CHUNK_ALLOC_NO_FORCE); 7529c343784SJosef Bacik } 7539c343784SJosef Bacik 7549c343784SJosef Bacik /* 755fcc99734SQu Wenruo * btrfs_record_root_in_trans() needs to alloc new extents, and may 756fcc99734SQu Wenruo * call btrfs_join_transaction() while we're also starting a 757fcc99734SQu Wenruo * transaction. 758fcc99734SQu Wenruo * 759fcc99734SQu Wenruo * Thus it need to be called after current->journal_info initialized, 760fcc99734SQu Wenruo * or we can deadlock. 761fcc99734SQu Wenruo */ 76268075ea8SJosef Bacik ret = btrfs_record_root_in_trans(h, root); 76368075ea8SJosef Bacik if (ret) { 76468075ea8SJosef Bacik /* 76568075ea8SJosef Bacik * The transaction handle is fully initialized and linked with 76668075ea8SJosef Bacik * other structures so it needs to be ended in case of errors, 76768075ea8SJosef Bacik * not just freed. 76868075ea8SJosef Bacik */ 76968075ea8SJosef Bacik btrfs_end_transaction(h); 77068075ea8SJosef Bacik return ERR_PTR(ret); 77168075ea8SJosef Bacik } 772fcc99734SQu Wenruo 77379154b1bSChris Mason return h; 774843fcf35SMiao Xie 775843fcf35SMiao Xie join_fail: 7760860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 7770b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 778843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 779843fcf35SMiao Xie alloc_fail: 780843fcf35SMiao Xie if (num_bytes) 7812ff7e61eSJeff Mahoney btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, 78263f018beSNikolay Borisov num_bytes, NULL); 783843fcf35SMiao Xie reserve_fail: 784733e03a0SQu Wenruo btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); 785843fcf35SMiao Xie return ERR_PTR(ret); 78679154b1bSChris Mason } 78779154b1bSChris Mason 788f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 7895aed1dd8SAlexandru Moise unsigned int num_items) 790f9295749SChris Mason { 79108e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 792003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, true); 793f9295749SChris Mason } 794003d7c59SJeff Mahoney 7958eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 7968eab77ffSFilipe Manana struct btrfs_root *root, 7977f9fe614SJosef Bacik unsigned int num_items) 7988eab77ffSFilipe Manana { 7997f9fe614SJosef Bacik return start_transaction(root, num_items, TRANS_START, 8007f9fe614SJosef Bacik BTRFS_RESERVE_FLUSH_ALL_STEAL, false); 8018eab77ffSFilipe Manana } 8028407aa46SMiao Xie 8037a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 804f9295749SChris Mason { 805003d7c59SJeff Mahoney return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH, 806003d7c59SJeff Mahoney true); 807f9295749SChris Mason } 808f9295749SChris Mason 8098d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root) 8100af3d00bSJosef Bacik { 811575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 812003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 8130af3d00bSJosef Bacik } 8140af3d00bSJosef Bacik 815d4edf39bSMiao Xie /* 816a6d155d2SFilipe Manana * Similar to regular join but it never starts a transaction when none is 817a6d155d2SFilipe Manana * running or after waiting for the current one to finish. 818a6d155d2SFilipe Manana */ 819a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root) 820a6d155d2SFilipe Manana { 821a6d155d2SFilipe Manana return start_transaction(root, 0, TRANS_JOIN_NOSTART, 822a6d155d2SFilipe Manana BTRFS_RESERVE_NO_FLUSH, true); 823a6d155d2SFilipe Manana } 824a6d155d2SFilipe Manana 825a6d155d2SFilipe Manana /* 826d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 827d4edf39bSMiao Xie * 828d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 829d4edf39bSMiao Xie * don't want to start a new one. 830d4edf39bSMiao Xie * 831d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 832d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 833d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 834d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 835d4edf39bSMiao Xie * invoke 836d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 837d4edf39bSMiao Xie */ 838354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 83960376ce4SJosef Bacik { 840575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_ATTACH, 841003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 84260376ce4SJosef Bacik } 84360376ce4SJosef Bacik 844d4edf39bSMiao Xie /* 84590b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 846d4edf39bSMiao Xie * 84752042d8eSAndrea Gelmini * It is similar to the above function, the difference is this one 848d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 849d4edf39bSMiao Xie * complete. 850d4edf39bSMiao Xie */ 851d4edf39bSMiao Xie struct btrfs_trans_handle * 852d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 853d4edf39bSMiao Xie { 854d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 855d4edf39bSMiao Xie 856575a75d6SAlexandru Moise trans = start_transaction(root, 0, TRANS_ATTACH, 857003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 8588d9e220cSAl Viro if (trans == ERR_PTR(-ENOENT)) 8592ff7e61eSJeff Mahoney btrfs_wait_for_commit(root->fs_info, 0); 860d4edf39bSMiao Xie 861d4edf39bSMiao Xie return trans; 862d4edf39bSMiao Xie } 863d4edf39bSMiao Xie 864d0c2f4faSFilipe Manana /* Wait for a transaction commit to reach at least the given state. */ 865d0c2f4faSFilipe Manana static noinline void wait_for_commit(struct btrfs_transaction *commit, 866d0c2f4faSFilipe Manana const enum btrfs_trans_state min_state) 86789ce8a63SChris Mason { 8685fd76bf3SOmar Sandoval struct btrfs_fs_info *fs_info = commit->fs_info; 8695fd76bf3SOmar Sandoval u64 transid = commit->transid; 8705fd76bf3SOmar Sandoval bool put = false; 8715fd76bf3SOmar Sandoval 8723e738c53SIoannis Angelakopoulos /* 8733e738c53SIoannis Angelakopoulos * At the moment this function is called with min_state either being 8743e738c53SIoannis Angelakopoulos * TRANS_STATE_COMPLETED or TRANS_STATE_SUPER_COMMITTED. 8753e738c53SIoannis Angelakopoulos */ 8763e738c53SIoannis Angelakopoulos if (min_state == TRANS_STATE_COMPLETED) 8773e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 8783e738c53SIoannis Angelakopoulos else 8793e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 8803e738c53SIoannis Angelakopoulos 8815fd76bf3SOmar Sandoval while (1) { 882d0c2f4faSFilipe Manana wait_event(commit->commit_wait, commit->state >= min_state); 8835fd76bf3SOmar Sandoval if (put) 8845fd76bf3SOmar Sandoval btrfs_put_transaction(commit); 8855fd76bf3SOmar Sandoval 8865fd76bf3SOmar Sandoval if (min_state < TRANS_STATE_COMPLETED) 8875fd76bf3SOmar Sandoval break; 8885fd76bf3SOmar Sandoval 8895fd76bf3SOmar Sandoval /* 8905fd76bf3SOmar Sandoval * A transaction isn't really completed until all of the 8915fd76bf3SOmar Sandoval * previous transactions are completed, but with fsync we can 8925fd76bf3SOmar Sandoval * end up with SUPER_COMMITTED transactions before a COMPLETED 8935fd76bf3SOmar Sandoval * transaction. Wait for those. 8945fd76bf3SOmar Sandoval */ 8955fd76bf3SOmar Sandoval 8965fd76bf3SOmar Sandoval spin_lock(&fs_info->trans_lock); 8975fd76bf3SOmar Sandoval commit = list_first_entry_or_null(&fs_info->trans_list, 8985fd76bf3SOmar Sandoval struct btrfs_transaction, 8995fd76bf3SOmar Sandoval list); 9005fd76bf3SOmar Sandoval if (!commit || commit->transid > transid) { 9015fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 9025fd76bf3SOmar Sandoval break; 9035fd76bf3SOmar Sandoval } 9045fd76bf3SOmar Sandoval refcount_inc(&commit->use_count); 9055fd76bf3SOmar Sandoval put = true; 9065fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 9075fd76bf3SOmar Sandoval } 90889ce8a63SChris Mason } 90989ce8a63SChris Mason 9102ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid) 91146204592SSage Weil { 91246204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 9138cd2807fSMiao Xie int ret = 0; 91446204592SSage Weil 91546204592SSage Weil if (transid) { 9160b246afaSJeff Mahoney if (transid <= fs_info->last_trans_committed) 917a4abeea4SJosef Bacik goto out; 91846204592SSage Weil 91946204592SSage Weil /* find specified transaction */ 9200b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 9210b246afaSJeff Mahoney list_for_each_entry(t, &fs_info->trans_list, list) { 92246204592SSage Weil if (t->transid == transid) { 92346204592SSage Weil cur_trans = t; 9249b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 9258cd2807fSMiao Xie ret = 0; 92646204592SSage Weil break; 92746204592SSage Weil } 9288cd2807fSMiao Xie if (t->transid > transid) { 9298cd2807fSMiao Xie ret = 0; 93046204592SSage Weil break; 93146204592SSage Weil } 9328cd2807fSMiao Xie } 9330b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 93442383020SSage Weil 93542383020SSage Weil /* 93642383020SSage Weil * The specified transaction doesn't exist, or we 93742383020SSage Weil * raced with btrfs_commit_transaction 93842383020SSage Weil */ 93942383020SSage Weil if (!cur_trans) { 9400b246afaSJeff Mahoney if (transid > fs_info->last_trans_committed) 94142383020SSage Weil ret = -EINVAL; 9428cd2807fSMiao Xie goto out; 94342383020SSage Weil } 94446204592SSage Weil } else { 94546204592SSage Weil /* find newest transaction that is committing | committed */ 9460b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 9470b246afaSJeff Mahoney list_for_each_entry_reverse(t, &fs_info->trans_list, 94846204592SSage Weil list) { 9494a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 9504a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 9513473f3c0SJosef Bacik break; 95246204592SSage Weil cur_trans = t; 9539b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 95446204592SSage Weil break; 95546204592SSage Weil } 95646204592SSage Weil } 9570b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 95846204592SSage Weil if (!cur_trans) 959a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 96046204592SSage Weil } 96146204592SSage Weil 962d0c2f4faSFilipe Manana wait_for_commit(cur_trans, TRANS_STATE_COMPLETED); 963724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 964a4abeea4SJosef Bacik out: 96546204592SSage Weil return ret; 96646204592SSage Weil } 96746204592SSage Weil 9682ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info) 96937d1aeeeSChris Mason { 9702ff7e61eSJeff Mahoney wait_current_trans(fs_info); 97137d1aeeeSChris Mason } 97237d1aeeeSChris Mason 9738a8f4deaSNikolay Borisov static bool should_end_transaction(struct btrfs_trans_handle *trans) 9748929ecfaSYan, Zheng { 9752ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 9760b246afaSJeff Mahoney 97764403612SJosef Bacik if (btrfs_check_space_for_delayed_refs(fs_info)) 9788a8f4deaSNikolay Borisov return true; 97936ba022aSJosef Bacik 9802ff7e61eSJeff Mahoney return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5); 9818929ecfaSYan, Zheng } 9828929ecfaSYan, Zheng 983a2633b6aSNikolay Borisov bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans) 9848929ecfaSYan, Zheng { 9858929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 9868929ecfaSYan, Zheng 9873296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START || 988e19eb11fSJosef Bacik test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags)) 989a2633b6aSNikolay Borisov return true; 9908929ecfaSYan, Zheng 9912ff7e61eSJeff Mahoney return should_end_transaction(trans); 9928929ecfaSYan, Zheng } 9938929ecfaSYan, Zheng 994dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans) 995dc60c525SNikolay Borisov 9960e34693fSNikolay Borisov { 997dc60c525SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 998dc60c525SNikolay Borisov 9990e34693fSNikolay Borisov if (!trans->block_rsv) { 10000e34693fSNikolay Borisov ASSERT(!trans->bytes_reserved); 10010e34693fSNikolay Borisov return; 10020e34693fSNikolay Borisov } 10030e34693fSNikolay Borisov 10040e34693fSNikolay Borisov if (!trans->bytes_reserved) 10050e34693fSNikolay Borisov return; 10060e34693fSNikolay Borisov 10070e34693fSNikolay Borisov ASSERT(trans->block_rsv == &fs_info->trans_block_rsv); 10080e34693fSNikolay Borisov trace_btrfs_space_reservation(fs_info, "transaction", 10090e34693fSNikolay Borisov trans->transid, trans->bytes_reserved, 0); 10100e34693fSNikolay Borisov btrfs_block_rsv_release(fs_info, trans->block_rsv, 101163f018beSNikolay Borisov trans->bytes_reserved, NULL); 10120e34693fSNikolay Borisov trans->bytes_reserved = 0; 10130e34693fSNikolay Borisov } 10140e34693fSNikolay Borisov 101589ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 10163a45bb20SJeff Mahoney int throttle) 101779154b1bSChris Mason { 10183a45bb20SJeff Mahoney struct btrfs_fs_info *info = trans->fs_info; 10198929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 10204edc2ca3SDave Jones int err = 0; 1021d6e4a428SChris Mason 1022b50fff81SDavid Sterba if (refcount_read(&trans->use_count) > 1) { 1023b50fff81SDavid Sterba refcount_dec(&trans->use_count); 10242a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 10252a1eb461SJosef Bacik return 0; 10262a1eb461SJosef Bacik } 10272a1eb461SJosef Bacik 1028dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 10294c13d758SJosef Bacik trans->block_rsv = NULL; 1030c5567237SArne Jansen 10316c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 1032ea658badSJosef Bacik 10334fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 10344fbcdf66SFilipe Manana 10350860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 10360b246afaSJeff Mahoney sb_end_intwrite(info->sb); 10376df7881aSJosef Bacik 10388929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 103913c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 104013c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 10410860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 104289ce8a63SChris Mason 1043093258e6SDavid Sterba cond_wake_up(&cur_trans->writer_wait); 1044e1489b4fSIoannis Angelakopoulos 10455a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(info, btrfs_trans_num_extwriters); 1046e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(info, btrfs_trans_num_writers); 1047e1489b4fSIoannis Angelakopoulos 1048724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 10499ed74f2dSJosef Bacik 10509ed74f2dSJosef Bacik if (current->journal_info == trans) 10519ed74f2dSJosef Bacik current->journal_info = NULL; 1052ab78c84dSChris Mason 105324bbcf04SYan, Zheng if (throttle) 10542ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(info); 105524bbcf04SYan, Zheng 105684961539SJosef Bacik if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) { 10574e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 1058fbabd4a3SJosef Bacik if (TRANS_ABORTED(trans)) 1059fbabd4a3SJosef Bacik err = trans->aborted; 1060fbabd4a3SJosef Bacik else 1061fbabd4a3SJosef Bacik err = -EROFS; 10624e121c06SJosef Bacik } 106349b25e05SJeff Mahoney 10644edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 10654edc2ca3SDave Jones return err; 106679154b1bSChris Mason } 106779154b1bSChris Mason 10683a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans) 106989ce8a63SChris Mason { 10703a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 0); 107189ce8a63SChris Mason } 107289ce8a63SChris Mason 10733a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans) 107489ce8a63SChris Mason { 10753a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 1); 107616cdcec7SMiao Xie } 107716cdcec7SMiao Xie 1078d352ac68SChris Mason /* 1079d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1080d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1081690587d1SChris Mason * those extents are sent to disk but does not wait on them 1082d352ac68SChris Mason */ 10832ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info, 10848cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 108579154b1bSChris Mason { 1086777e6bd7SChris Mason int err = 0; 10877c4452b9SChris Mason int werr = 0; 10880b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1089e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1090777e6bd7SChris Mason u64 start = 0; 10915f39d397SChris Mason u64 end; 10927c4452b9SChris Mason 10936300463bSLiu Bo atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers); 10941728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1095e6138876SJosef Bacik mark, &cached_state)) { 1096663dfbb0SFilipe Manana bool wait_writeback = false; 1097663dfbb0SFilipe Manana 1098663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 1099663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 1100210aa277SDavid Sterba mark, &cached_state); 1101663dfbb0SFilipe Manana /* 1102663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 1103663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 1104663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 1105663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 1106bf89d38fSJeff Mahoney * to __btrfs_wait_marked_extents() would not know that 1107bf89d38fSJeff Mahoney * writeback for this range started and therefore wouldn't 1108bf89d38fSJeff Mahoney * wait for it to finish - we don't want to commit a 1109bf89d38fSJeff Mahoney * superblock that points to btree nodes/leafs for which 1110bf89d38fSJeff Mahoney * writeback hasn't finished yet (and without errors). 1111663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 111241e7acd3SNikolay Borisov * the transaction (through extent_io_tree_release()). 1113663dfbb0SFilipe Manana */ 1114663dfbb0SFilipe Manana if (err == -ENOMEM) { 1115663dfbb0SFilipe Manana err = 0; 1116663dfbb0SFilipe Manana wait_writeback = true; 1117663dfbb0SFilipe Manana } 1118663dfbb0SFilipe Manana if (!err) 11191728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 11207c4452b9SChris Mason if (err) 11217c4452b9SChris Mason werr = err; 1122663dfbb0SFilipe Manana else if (wait_writeback) 1123663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 1124e38e2ed7SFilipe Manana free_extent_state(cached_state); 1125663dfbb0SFilipe Manana cached_state = NULL; 11261728366eSJosef Bacik cond_resched(); 11271728366eSJosef Bacik start = end + 1; 11287c4452b9SChris Mason } 11296300463bSLiu Bo atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers); 1130690587d1SChris Mason return werr; 1131690587d1SChris Mason } 1132690587d1SChris Mason 1133690587d1SChris Mason /* 1134690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1135690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1136690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 1137690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 1138690587d1SChris Mason */ 1139bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info, 1140bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1141690587d1SChris Mason { 1142690587d1SChris Mason int err = 0; 1143690587d1SChris Mason int werr = 0; 11440b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1145e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1146690587d1SChris Mason u64 start = 0; 1147690587d1SChris Mason u64 end; 1148690587d1SChris Mason 11491728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1150e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 1151663dfbb0SFilipe Manana /* 1152663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 1153663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 1154663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 1155663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 1156663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 115741e7acd3SNikolay Borisov * it's safe to do it (through extent_io_tree_release()). 1158663dfbb0SFilipe Manana */ 1159663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 1160ae0f1625SDavid Sterba EXTENT_NEED_WAIT, 0, 0, &cached_state); 1161663dfbb0SFilipe Manana if (err == -ENOMEM) 1162663dfbb0SFilipe Manana err = 0; 1163663dfbb0SFilipe Manana if (!err) 11641728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 1165777e6bd7SChris Mason if (err) 1166777e6bd7SChris Mason werr = err; 1167e38e2ed7SFilipe Manana free_extent_state(cached_state); 1168e38e2ed7SFilipe Manana cached_state = NULL; 1169777e6bd7SChris Mason cond_resched(); 11701728366eSJosef Bacik start = end + 1; 1171777e6bd7SChris Mason } 11727c4452b9SChris Mason if (err) 11737c4452b9SChris Mason werr = err; 1174bf89d38fSJeff Mahoney return werr; 1175bf89d38fSJeff Mahoney } 1176656f30dbSFilipe Manana 1177b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info, 1178bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1179bf89d38fSJeff Mahoney { 1180bf89d38fSJeff Mahoney bool errors = false; 1181bf89d38fSJeff Mahoney int err; 1182bf89d38fSJeff Mahoney 1183bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1184bf89d38fSJeff Mahoney if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags)) 1185bf89d38fSJeff Mahoney errors = true; 1186bf89d38fSJeff Mahoney 1187bf89d38fSJeff Mahoney if (errors && !err) 1188bf89d38fSJeff Mahoney err = -EIO; 1189bf89d38fSJeff Mahoney return err; 1190bf89d38fSJeff Mahoney } 1191bf89d38fSJeff Mahoney 1192bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark) 1193bf89d38fSJeff Mahoney { 1194bf89d38fSJeff Mahoney struct btrfs_fs_info *fs_info = log_root->fs_info; 1195bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages; 1196bf89d38fSJeff Mahoney bool errors = false; 1197bf89d38fSJeff Mahoney int err; 1198bf89d38fSJeff Mahoney 1199bf89d38fSJeff Mahoney ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); 1200bf89d38fSJeff Mahoney 1201bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1202656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 12030b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags)) 1204656f30dbSFilipe Manana errors = true; 1205656f30dbSFilipe Manana 1206656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 12070b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags)) 1208656f30dbSFilipe Manana errors = true; 1209656f30dbSFilipe Manana 1210bf89d38fSJeff Mahoney if (errors && !err) 1211bf89d38fSJeff Mahoney err = -EIO; 1212bf89d38fSJeff Mahoney return err; 121379154b1bSChris Mason } 121479154b1bSChris Mason 1215690587d1SChris Mason /* 1216c9b577c0SNikolay Borisov * When btree blocks are allocated the corresponding extents are marked dirty. 1217c9b577c0SNikolay Borisov * This function ensures such extents are persisted on disk for transaction or 1218c9b577c0SNikolay Borisov * log commit. 1219c9b577c0SNikolay Borisov * 1220c9b577c0SNikolay Borisov * @trans: transaction whose dirty pages we'd like to write 1221690587d1SChris Mason */ 122270458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans) 1223d0c803c4SChris Mason { 1224663dfbb0SFilipe Manana int ret; 1225c9b577c0SNikolay Borisov int ret2; 1226c9b577c0SNikolay Borisov struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages; 122770458a58SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1228c9b577c0SNikolay Borisov struct blk_plug plug; 1229663dfbb0SFilipe Manana 1230c9b577c0SNikolay Borisov blk_start_plug(&plug); 1231c9b577c0SNikolay Borisov ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY); 1232c9b577c0SNikolay Borisov blk_finish_plug(&plug); 1233c9b577c0SNikolay Borisov ret2 = btrfs_wait_extents(fs_info, dirty_pages); 1234c9b577c0SNikolay Borisov 123541e7acd3SNikolay Borisov extent_io_tree_release(&trans->transaction->dirty_pages); 1236663dfbb0SFilipe Manana 1237c9b577c0SNikolay Borisov if (ret) 1238663dfbb0SFilipe Manana return ret; 1239c9b577c0SNikolay Borisov else if (ret2) 1240c9b577c0SNikolay Borisov return ret2; 1241c9b577c0SNikolay Borisov else 1242c9b577c0SNikolay Borisov return 0; 1243d0c803c4SChris Mason } 1244d0c803c4SChris Mason 1245d352ac68SChris Mason /* 1246d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1247d352ac68SChris Mason * 1248d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1249d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1250d352ac68SChris Mason * allocation tree. 1251d352ac68SChris Mason * 1252d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1253d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1254d352ac68SChris Mason */ 12550b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 125679154b1bSChris Mason struct btrfs_root *root) 125779154b1bSChris Mason { 125879154b1bSChris Mason int ret; 12590b86a832SChris Mason u64 old_root_bytenr; 126086b9f2ecSYan, Zheng u64 old_root_used; 12610b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12620b246afaSJeff Mahoney struct btrfs_root *tree_root = fs_info->tree_root; 126379154b1bSChris Mason 126486b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 126556bec294SChris Mason 126679154b1bSChris Mason while (1) { 12670b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 126886b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1269ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 127079154b1bSChris Mason break; 127187ef2bb4SChris Mason 12725d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 127379154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 12740b86a832SChris Mason &root->root_key, 12750b86a832SChris Mason &root->root_item); 127649b25e05SJeff Mahoney if (ret) 127749b25e05SJeff Mahoney return ret; 127856bec294SChris Mason 127986b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1280e7070be1SJosef Bacik } 1281276e680dSYan Zheng 12820b86a832SChris Mason return 0; 12830b86a832SChris Mason } 12840b86a832SChris Mason 1285d352ac68SChris Mason /* 1286d352ac68SChris Mason * update all the cowonly tree roots on disk 128749b25e05SJeff Mahoney * 128849b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 128949b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 129049b25e05SJeff Mahoney * to clean up the delayed refs. 1291d352ac68SChris Mason */ 12929386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans) 12930b86a832SChris Mason { 12949386d8bcSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1295ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 12961bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 12970b86a832SChris Mason struct list_head *next; 129884234f3aSYan Zheng struct extent_buffer *eb; 129956bec294SChris Mason int ret; 130084234f3aSYan Zheng 1301dfba78dcSFilipe Manana /* 1302dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1303dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1304dfba78dcSFilipe Manana */ 1305dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1306dfba78dcSFilipe Manana 130784234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 130849b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 13099631e4ccSJosef Bacik 0, &eb, BTRFS_NESTING_COW); 131084234f3aSYan Zheng btrfs_tree_unlock(eb); 131184234f3aSYan Zheng free_extent_buffer(eb); 13120b86a832SChris Mason 131349b25e05SJeff Mahoney if (ret) 131449b25e05SJeff Mahoney return ret; 131549b25e05SJeff Mahoney 1316196c9d8dSDavid Sterba ret = btrfs_run_dev_stats(trans); 1317c16ce190SJosef Bacik if (ret) 1318c16ce190SJosef Bacik return ret; 13192b584c68SDavid Sterba ret = btrfs_run_dev_replace(trans); 1320c16ce190SJosef Bacik if (ret) 1321c16ce190SJosef Bacik return ret; 1322280f8bd2SLu Fengqi ret = btrfs_run_qgroups(trans); 1323c16ce190SJosef Bacik if (ret) 1324c16ce190SJosef Bacik return ret; 1325546adb0dSJan Schmidt 1326bbebb3e0SDavid Sterba ret = btrfs_setup_space_cache(trans); 1327dcdf7f6dSJosef Bacik if (ret) 1328dcdf7f6dSJosef Bacik return ret; 1329dcdf7f6dSJosef Bacik 1330ea526d18SJosef Bacik again: 13310b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 13322ff7e61eSJeff Mahoney struct btrfs_root *root; 13330b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 13340b86a832SChris Mason list_del_init(next); 13350b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1336e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 133787ef2bb4SChris Mason 13389e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 13399e351cc8SJosef Bacik &trans->transaction->switch_commits); 134049b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 134149b25e05SJeff Mahoney if (ret) 134249b25e05SJeff Mahoney return ret; 1343488bc2a2SJosef Bacik } 1344488bc2a2SJosef Bacik 1345488bc2a2SJosef Bacik /* Now flush any delayed refs generated by updating all of the roots */ 1346c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1347ea526d18SJosef Bacik if (ret) 1348ea526d18SJosef Bacik return ret; 1349276e680dSYan Zheng 13501bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 13515742d15fSDavid Sterba ret = btrfs_write_dirty_block_groups(trans); 1352ea526d18SJosef Bacik if (ret) 1353ea526d18SJosef Bacik return ret; 1354488bc2a2SJosef Bacik 1355488bc2a2SJosef Bacik /* 1356488bc2a2SJosef Bacik * We're writing the dirty block groups, which could generate 1357488bc2a2SJosef Bacik * delayed refs, which could generate more dirty block groups, 1358488bc2a2SJosef Bacik * so we want to keep this flushing in this loop to make sure 1359488bc2a2SJosef Bacik * everything gets run. 1360488bc2a2SJosef Bacik */ 1361c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1362ea526d18SJosef Bacik if (ret) 1363ea526d18SJosef Bacik return ret; 1364ea526d18SJosef Bacik } 1365ea526d18SJosef Bacik 1366ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1367ea526d18SJosef Bacik goto again; 1368ea526d18SJosef Bacik 13699f6cbcbbSDavid Sterba /* Update dev-replace pointer once everything is committed */ 13709f6cbcbbSDavid Sterba fs_info->dev_replace.committed_cursor_left = 13719f6cbcbbSDavid Sterba fs_info->dev_replace.cursor_left_last_write_of_item; 13728dabb742SStefan Behrens 137379154b1bSChris Mason return 0; 137479154b1bSChris Mason } 137579154b1bSChris Mason 1376d352ac68SChris Mason /* 1377b4be6aefSJosef Bacik * If we had a pending drop we need to see if there are any others left in our 1378b4be6aefSJosef Bacik * dead roots list, and if not clear our bit and wake any waiters. 1379b4be6aefSJosef Bacik */ 1380b4be6aefSJosef Bacik void btrfs_maybe_wake_unfinished_drop(struct btrfs_fs_info *fs_info) 1381b4be6aefSJosef Bacik { 1382b4be6aefSJosef Bacik /* 1383b4be6aefSJosef Bacik * We put the drop in progress roots at the front of the list, so if the 1384b4be6aefSJosef Bacik * first entry doesn't have UNFINISHED_DROP set we can wake everybody 1385b4be6aefSJosef Bacik * up. 1386b4be6aefSJosef Bacik */ 1387b4be6aefSJosef Bacik spin_lock(&fs_info->trans_lock); 1388b4be6aefSJosef Bacik if (!list_empty(&fs_info->dead_roots)) { 1389b4be6aefSJosef Bacik struct btrfs_root *root = list_first_entry(&fs_info->dead_roots, 1390b4be6aefSJosef Bacik struct btrfs_root, 1391b4be6aefSJosef Bacik root_list); 1392b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) { 1393b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1394b4be6aefSJosef Bacik return; 1395b4be6aefSJosef Bacik } 1396b4be6aefSJosef Bacik } 1397b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1398b4be6aefSJosef Bacik 1399b4be6aefSJosef Bacik btrfs_wake_unfinished_drop(fs_info); 1400b4be6aefSJosef Bacik } 1401b4be6aefSJosef Bacik 1402b4be6aefSJosef Bacik /* 1403d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1404d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1405d352ac68SChris Mason * be deleted 1406d352ac68SChris Mason */ 1407cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 14085eda7b5eSChris Mason { 14090b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 14100b246afaSJeff Mahoney 14110b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1412dc9492c1SJosef Bacik if (list_empty(&root->root_list)) { 1413dc9492c1SJosef Bacik btrfs_grab_root(root); 1414b4be6aefSJosef Bacik 1415b4be6aefSJosef Bacik /* We want to process the partially complete drops first. */ 1416b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) 1417b4be6aefSJosef Bacik list_add(&root->root_list, &fs_info->dead_roots); 1418b4be6aefSJosef Bacik else 14190b246afaSJeff Mahoney list_add_tail(&root->root_list, &fs_info->dead_roots); 1420dc9492c1SJosef Bacik } 14210b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 14225eda7b5eSChris Mason } 14235eda7b5eSChris Mason 1424d352ac68SChris Mason /* 1425dfba78dcSFilipe Manana * Update each subvolume root and its relocation root, if it exists, in the tree 1426dfba78dcSFilipe Manana * of tree roots. Also free log roots if they exist. 1427d352ac68SChris Mason */ 14287e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans) 14290f7d52f4SChris Mason { 14307e4443d9SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1431fc7cbcd4SDavid Sterba struct btrfs_root *gang[8]; 1432fc7cbcd4SDavid Sterba int i; 1433fc7cbcd4SDavid Sterba int ret; 143454aa1f4dSChris Mason 1435dfba78dcSFilipe Manana /* 1436dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1437dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1438dfba78dcSFilipe Manana */ 1439dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1440dfba78dcSFilipe Manana 1441fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1442fc7cbcd4SDavid Sterba while (1) { 1443fc7cbcd4SDavid Sterba ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 1444fc7cbcd4SDavid Sterba (void **)gang, 0, 1445fc7cbcd4SDavid Sterba ARRAY_SIZE(gang), 1446fc7cbcd4SDavid Sterba BTRFS_ROOT_TRANS_TAG); 1447fc7cbcd4SDavid Sterba if (ret == 0) 1448fc7cbcd4SDavid Sterba break; 1449fc7cbcd4SDavid Sterba for (i = 0; i < ret; i++) { 1450fc7cbcd4SDavid Sterba struct btrfs_root *root = gang[i]; 1451fc7cbcd4SDavid Sterba int ret2; 14524f4317c1SJosef Bacik 1453dfba78dcSFilipe Manana /* 1454dfba78dcSFilipe Manana * At this point we can neither have tasks logging inodes 1455dfba78dcSFilipe Manana * from a root nor trying to commit a log tree. 1456dfba78dcSFilipe Manana */ 1457dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_writers) == 0); 1458dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[0]) == 0); 1459dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[1]) == 0); 1460dfba78dcSFilipe Manana 1461fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 14622619ba1fSChris Mason (unsigned long)root->root_key.objectid, 14630f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1464fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 146531153d81SYan Zheng 1466e02119d5SChris Mason btrfs_free_log(trans, root); 1467fc7cbcd4SDavid Sterba ret2 = btrfs_update_reloc_root(trans, root); 1468fc7cbcd4SDavid Sterba if (ret2) 1469fc7cbcd4SDavid Sterba return ret2; 1470e02119d5SChris Mason 1471fc7cbcd4SDavid Sterba /* see comments in should_cow_block() */ 147227cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1473c7548af6SChris Mason smp_mb__after_atomic(); 1474f1ebcc74SLiu Bo 1475978d910dSYan Zheng if (root->commit_root != root->node) { 14769e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 14779e351cc8SJosef Bacik &trans->transaction->switch_commits); 1478fc7cbcd4SDavid Sterba btrfs_set_root_node(&root->root_item, 1479fc7cbcd4SDavid Sterba root->node); 1480978d910dSYan Zheng } 148131153d81SYan Zheng 1482fc7cbcd4SDavid Sterba ret2 = btrfs_update_root(trans, fs_info->tree_root, 1483fc7cbcd4SDavid Sterba &root->root_key, 1484fc7cbcd4SDavid Sterba &root->root_item); 1485fc7cbcd4SDavid Sterba if (ret2) 1486fc7cbcd4SDavid Sterba return ret2; 1487fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1488733e03a0SQu Wenruo btrfs_qgroup_free_meta_all_pertrans(root); 14890f7d52f4SChris Mason } 1490fc7cbcd4SDavid Sterba } 1491fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 14924f4317c1SJosef Bacik return 0; 14930f7d52f4SChris Mason } 14940f7d52f4SChris Mason 1495d352ac68SChris Mason /* 1496de78b51aSEric Sandeen * defrag a given btree. 1497de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1498d352ac68SChris Mason */ 1499de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1500e9d0b13bSChris Mason { 1501e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1502e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 15038929ecfaSYan, Zheng int ret; 1504e9d0b13bSChris Mason 150527cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1506e9d0b13bSChris Mason return 0; 15078929ecfaSYan, Zheng 15086b80053dSChris Mason while (1) { 15098929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 15106819703fSDavid Sterba if (IS_ERR(trans)) { 15116819703fSDavid Sterba ret = PTR_ERR(trans); 15126819703fSDavid Sterba break; 15136819703fSDavid Sterba } 15148929ecfaSYan, Zheng 1515de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 15168929ecfaSYan, Zheng 15173a45bb20SJeff Mahoney btrfs_end_transaction(trans); 15182ff7e61eSJeff Mahoney btrfs_btree_balance_dirty(info); 1519e9d0b13bSChris Mason cond_resched(); 1520e9d0b13bSChris Mason 1521ab8d0fc4SJeff Mahoney if (btrfs_fs_closing(info) || ret != -EAGAIN) 1522e9d0b13bSChris Mason break; 1523210549ebSDavid Sterba 1524ab8d0fc4SJeff Mahoney if (btrfs_defrag_cancelled(info)) { 1525ab8d0fc4SJeff Mahoney btrfs_debug(info, "defrag_root cancelled"); 1526210549ebSDavid Sterba ret = -EAGAIN; 1527210549ebSDavid Sterba break; 1528210549ebSDavid Sterba } 1529e9d0b13bSChris Mason } 153027cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 15318929ecfaSYan, Zheng return ret; 1532e9d0b13bSChris Mason } 1533e9d0b13bSChris Mason 1534d352ac68SChris Mason /* 15356426c7adSQu Wenruo * Do all special snapshot related qgroup dirty hack. 15366426c7adSQu Wenruo * 15376426c7adSQu Wenruo * Will do all needed qgroup inherit and dirty hack like switch commit 15386426c7adSQu Wenruo * roots inside one transaction and write all btree into disk, to make 15396426c7adSQu Wenruo * qgroup works. 15406426c7adSQu Wenruo */ 15416426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, 15426426c7adSQu Wenruo struct btrfs_root *src, 15436426c7adSQu Wenruo struct btrfs_root *parent, 15446426c7adSQu Wenruo struct btrfs_qgroup_inherit *inherit, 15456426c7adSQu Wenruo u64 dst_objectid) 15466426c7adSQu Wenruo { 15476426c7adSQu Wenruo struct btrfs_fs_info *fs_info = src->fs_info; 15486426c7adSQu Wenruo int ret; 15496426c7adSQu Wenruo 15506426c7adSQu Wenruo /* 15516426c7adSQu Wenruo * Save some performance in the case that qgroups are not 15526426c7adSQu Wenruo * enabled. If this check races with the ioctl, rescan will 15536426c7adSQu Wenruo * kick in anyway. 15546426c7adSQu Wenruo */ 15559ea6e2b5SDavid Sterba if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) 15566426c7adSQu Wenruo return 0; 15576426c7adSQu Wenruo 15586426c7adSQu Wenruo /* 155952042d8eSAndrea Gelmini * Ensure dirty @src will be committed. Or, after coming 15604d31778aSQu Wenruo * commit_fs_roots() and switch_commit_roots(), any dirty but not 15614d31778aSQu Wenruo * recorded root will never be updated again, causing an outdated root 15624d31778aSQu Wenruo * item. 15634d31778aSQu Wenruo */ 15641c442d22SJosef Bacik ret = record_root_in_trans(trans, src, 1); 15651c442d22SJosef Bacik if (ret) 15661c442d22SJosef Bacik return ret; 15674d31778aSQu Wenruo 15684d31778aSQu Wenruo /* 15692a4d84c1SJosef Bacik * btrfs_qgroup_inherit relies on a consistent view of the usage for the 15702a4d84c1SJosef Bacik * src root, so we must run the delayed refs here. 15712a4d84c1SJosef Bacik * 15722a4d84c1SJosef Bacik * However this isn't particularly fool proof, because there's no 15732a4d84c1SJosef Bacik * synchronization keeping us from changing the tree after this point 15742a4d84c1SJosef Bacik * before we do the qgroup_inherit, or even from making changes while 15752a4d84c1SJosef Bacik * we're doing the qgroup_inherit. But that's a problem for the future, 15762a4d84c1SJosef Bacik * for now flush the delayed refs to narrow the race window where the 15772a4d84c1SJosef Bacik * qgroup counters could end up wrong. 15782a4d84c1SJosef Bacik */ 15792a4d84c1SJosef Bacik ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 15802a4d84c1SJosef Bacik if (ret) { 15812a4d84c1SJosef Bacik btrfs_abort_transaction(trans, ret); 158244365827SNaohiro Aota return ret; 15832a4d84c1SJosef Bacik } 15842a4d84c1SJosef Bacik 15857e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 15866426c7adSQu Wenruo if (ret) 15876426c7adSQu Wenruo goto out; 1588460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 15896426c7adSQu Wenruo if (ret < 0) 15906426c7adSQu Wenruo goto out; 15916426c7adSQu Wenruo 15926426c7adSQu Wenruo /* Now qgroup are all updated, we can inherit it to new qgroups */ 1593a9377422SLu Fengqi ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid, 15946426c7adSQu Wenruo inherit); 15956426c7adSQu Wenruo if (ret < 0) 15966426c7adSQu Wenruo goto out; 15976426c7adSQu Wenruo 15986426c7adSQu Wenruo /* 15996426c7adSQu Wenruo * Now we do a simplified commit transaction, which will: 16006426c7adSQu Wenruo * 1) commit all subvolume and extent tree 16016426c7adSQu Wenruo * To ensure all subvolume and extent tree have a valid 16026426c7adSQu Wenruo * commit_root to accounting later insert_dir_item() 16036426c7adSQu Wenruo * 2) write all btree blocks onto disk 16046426c7adSQu Wenruo * This is to make sure later btree modification will be cowed 16056426c7adSQu Wenruo * Or commit_root can be populated and cause wrong qgroup numbers 16066426c7adSQu Wenruo * In this simplified commit, we don't really care about other trees 16076426c7adSQu Wenruo * like chunk and root tree, as they won't affect qgroup. 16086426c7adSQu Wenruo * And we don't write super to avoid half committed status. 16096426c7adSQu Wenruo */ 16109386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 16116426c7adSQu Wenruo if (ret) 16126426c7adSQu Wenruo goto out; 1613889bfa39SJosef Bacik switch_commit_roots(trans); 161470458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 16156426c7adSQu Wenruo if (ret) 1616f7af3934SDavid Sterba btrfs_handle_fs_error(fs_info, ret, 16176426c7adSQu Wenruo "Error while writing out transaction for qgroup"); 16186426c7adSQu Wenruo 16196426c7adSQu Wenruo out: 16206426c7adSQu Wenruo /* 16216426c7adSQu Wenruo * Force parent root to be updated, as we recorded it before so its 16226426c7adSQu Wenruo * last_trans == cur_transid. 16236426c7adSQu Wenruo * Or it won't be committed again onto disk after later 16246426c7adSQu Wenruo * insert_dir_item() 16256426c7adSQu Wenruo */ 16266426c7adSQu Wenruo if (!ret) 16271c442d22SJosef Bacik ret = record_root_in_trans(trans, parent, 1); 16286426c7adSQu Wenruo return ret; 16296426c7adSQu Wenruo } 16306426c7adSQu Wenruo 16316426c7adSQu Wenruo /* 1632d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1633aec8030aSMiao Xie * transaction commit. This does the actual creation. 1634aec8030aSMiao Xie * 1635aec8030aSMiao Xie * Note: 1636aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1637aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1638aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1639d352ac68SChris Mason */ 164080b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 16413063d29fSChris Mason struct btrfs_pending_snapshot *pending) 16423063d29fSChris Mason { 164308d50ca3SNikolay Borisov 164408d50ca3SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 16453063d29fSChris Mason struct btrfs_key key; 164680b6794dSChris Mason struct btrfs_root_item *new_root_item; 16473063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 16483063d29fSChris Mason struct btrfs_root *root = pending->root; 16496bdb72deSSage Weil struct btrfs_root *parent_root; 165098c9942aSLiu Bo struct btrfs_block_rsv *rsv; 16516bdb72deSSage Weil struct inode *parent_inode; 165242874b3dSMiao Xie struct btrfs_path *path; 165342874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1654a22285a6SYan, Zheng struct dentry *dentry; 16553063d29fSChris Mason struct extent_buffer *tmp; 1656925baeddSChris Mason struct extent_buffer *old; 165795582b00SDeepa Dinamani struct timespec64 cur_time; 1658aec8030aSMiao Xie int ret = 0; 1659d68fc57bSYan, Zheng u64 to_reserve = 0; 16606bdb72deSSage Weil u64 index = 0; 1661a22285a6SYan, Zheng u64 objectid; 1662b83cc969SLi Zefan u64 root_flags; 16633063d29fSChris Mason 16648546b570SDavid Sterba ASSERT(pending->path); 16658546b570SDavid Sterba path = pending->path; 166642874b3dSMiao Xie 1667b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1668b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1669a22285a6SYan, Zheng 1670543068a2SNikolay Borisov pending->error = btrfs_get_free_objectid(tree_root, &objectid); 1671aec8030aSMiao Xie if (pending->error) 16726fa9700eSMiao Xie goto no_free_objectid; 16733063d29fSChris Mason 1674d6726335SQu Wenruo /* 1675d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1676d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1677d6726335SQu Wenruo */ 1678d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1679d6726335SQu Wenruo 1680147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1681d68fc57bSYan, Zheng 1682d68fc57bSYan, Zheng if (to_reserve > 0) { 16839270501cSJosef Bacik pending->error = btrfs_block_rsv_add(fs_info, 1684aec8030aSMiao Xie &pending->block_rsv, 168508e007d2SMiao Xie to_reserve, 168608e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1687aec8030aSMiao Xie if (pending->error) 1688d6726335SQu Wenruo goto clear_skip_qgroup; 1689d68fc57bSYan, Zheng } 1690d68fc57bSYan, Zheng 16913063d29fSChris Mason key.objectid = objectid; 1692a22285a6SYan, Zheng key.offset = (u64)-1; 1693a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 16943063d29fSChris Mason 16956fa9700eSMiao Xie rsv = trans->block_rsv; 1696a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 16972382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 16980b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 169988d3a5aaSJosef Bacik trans->transid, 170088d3a5aaSJosef Bacik trans->bytes_reserved, 1); 1701a22285a6SYan, Zheng dentry = pending->dentry; 1702e9662f70SMiao Xie parent_inode = pending->dir; 1703a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 1704f0118cb6SJosef Bacik ret = record_root_in_trans(trans, parent_root, 0); 1705f0118cb6SJosef Bacik if (ret) 1706f0118cb6SJosef Bacik goto fail; 1707c2050a45SDeepa Dinamani cur_time = current_time(parent_inode); 170804b285f3SDeepa Dinamani 17096bdb72deSSage Weil /* 17106bdb72deSSage Weil * insert the directory item 17116bdb72deSSage Weil */ 1712877574e2SNikolay Borisov ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index); 171349b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 171442874b3dSMiao Xie 171542874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 171642874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 17174a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), 171842874b3dSMiao Xie dentry->d_name.name, 171942874b3dSMiao Xie dentry->d_name.len, 0); 172042874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1721fe66a05aSChris Mason pending->error = -EEXIST; 1722aec8030aSMiao Xie goto dir_item_existed; 172342874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 172442874b3dSMiao Xie ret = PTR_ERR(dir_item); 172566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17268732d44fSMiao Xie goto fail; 172779787eaaSJeff Mahoney } 172842874b3dSMiao Xie btrfs_release_path(path); 17296bdb72deSSage Weil 1730e999376fSChris Mason /* 1731e999376fSChris Mason * pull in the delayed directory update 1732e999376fSChris Mason * and the delayed inode item 1733e999376fSChris Mason * otherwise we corrupt the FS during 1734e999376fSChris Mason * snapshot 1735e999376fSChris Mason */ 1736e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 17378732d44fSMiao Xie if (ret) { /* Transaction aborted */ 173866642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17398732d44fSMiao Xie goto fail; 17408732d44fSMiao Xie } 1741e999376fSChris Mason 1742f0118cb6SJosef Bacik ret = record_root_in_trans(trans, root, 0); 1743f0118cb6SJosef Bacik if (ret) { 1744f0118cb6SJosef Bacik btrfs_abort_transaction(trans, ret); 1745f0118cb6SJosef Bacik goto fail; 1746f0118cb6SJosef Bacik } 17476bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 17486bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 174908fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 17506bdb72deSSage Weil 1751b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1752b83cc969SLi Zefan if (pending->readonly) 1753b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1754b83cc969SLi Zefan else 1755b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1756b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1757b83cc969SLi Zefan 17588ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 17598ea05e3aSAlexander Block trans->transid); 1760807fc790SAndy Shevchenko generate_random_guid(new_root_item->uuid); 17618ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 17628ea05e3aSAlexander Block BTRFS_UUID_SIZE); 176370023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 176470023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 176570023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 17668ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 17678ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 17688ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 17698ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 177070023da2SStefan Behrens } 17713cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 17723cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 177370023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 17748ea05e3aSAlexander Block 1775925baeddSChris Mason old = btrfs_lock_root_node(root); 17769631e4ccSJosef Bacik ret = btrfs_cow_block(trans, root, old, NULL, 0, &old, 17779631e4ccSJosef Bacik BTRFS_NESTING_COW); 177879787eaaSJeff Mahoney if (ret) { 177979787eaaSJeff Mahoney btrfs_tree_unlock(old); 178079787eaaSJeff Mahoney free_extent_buffer(old); 178166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17828732d44fSMiao Xie goto fail; 178379787eaaSJeff Mahoney } 178449b25e05SJeff Mahoney 178549b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 178679787eaaSJeff Mahoney /* clean up in any case */ 1787925baeddSChris Mason btrfs_tree_unlock(old); 1788925baeddSChris Mason free_extent_buffer(old); 17898732d44fSMiao Xie if (ret) { 179066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17918732d44fSMiao Xie goto fail; 17928732d44fSMiao Xie } 1793f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 179427cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1795f1ebcc74SLiu Bo smp_wmb(); 1796f1ebcc74SLiu Bo 17975d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1798a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1799a22285a6SYan, Zheng key.offset = trans->transid; 1800a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1801925baeddSChris Mason btrfs_tree_unlock(tmp); 18023063d29fSChris Mason free_extent_buffer(tmp); 18038732d44fSMiao Xie if (ret) { 180466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18058732d44fSMiao Xie goto fail; 18068732d44fSMiao Xie } 18070660b5afSChris Mason 1808a22285a6SYan, Zheng /* 1809a22285a6SYan, Zheng * insert root back/forward references 1810a22285a6SYan, Zheng */ 18116025c19fSLu Fengqi ret = btrfs_add_root_ref(trans, objectid, 1812a22285a6SYan, Zheng parent_root->root_key.objectid, 18134a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), index, 1814a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 18158732d44fSMiao Xie if (ret) { 181666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18178732d44fSMiao Xie goto fail; 18188732d44fSMiao Xie } 1819a22285a6SYan, Zheng 1820a22285a6SYan, Zheng key.offset = (u64)-1; 18212dfb1e43SQu Wenruo pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev); 182279787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 182379787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 18242d892ccdSFilipe Manana pending->snap = NULL; 182566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18268732d44fSMiao Xie goto fail; 182779787eaaSJeff Mahoney } 1828d68fc57bSYan, Zheng 182949b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 18308732d44fSMiao Xie if (ret) { 183166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18328732d44fSMiao Xie goto fail; 18338732d44fSMiao Xie } 1834361048f5SMiao Xie 18356426c7adSQu Wenruo /* 18366426c7adSQu Wenruo * Do special qgroup accounting for snapshot, as we do some qgroup 18376426c7adSQu Wenruo * snapshot hack to do fast snapshot. 18386426c7adSQu Wenruo * To co-operate with that hack, we do hack again. 18396426c7adSQu Wenruo * Or snapshot will be greatly slowed down by a subtree qgroup rescan 18406426c7adSQu Wenruo */ 18416426c7adSQu Wenruo ret = qgroup_account_snapshot(trans, root, parent_root, 18426426c7adSQu Wenruo pending->inherit, objectid); 18436426c7adSQu Wenruo if (ret < 0) 18446426c7adSQu Wenruo goto fail; 18456426c7adSQu Wenruo 1846684572dfSLu Fengqi ret = btrfs_insert_dir_item(trans, dentry->d_name.name, 1847684572dfSLu Fengqi dentry->d_name.len, BTRFS_I(parent_inode), 1848684572dfSLu Fengqi &key, BTRFS_FT_DIR, index); 184942874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 18509c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 18518732d44fSMiao Xie if (ret) { 185266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18538732d44fSMiao Xie goto fail; 18548732d44fSMiao Xie } 185542874b3dSMiao Xie 18566ef06d27SNikolay Borisov btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size + 185742874b3dSMiao Xie dentry->d_name.len * 2); 1858c1867eb3SDavid Sterba parent_inode->i_mtime = current_time(parent_inode); 1859c1867eb3SDavid Sterba parent_inode->i_ctime = parent_inode->i_mtime; 1860729f7961SNikolay Borisov ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode)); 1861dd5f9615SStefan Behrens if (ret) { 186266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1863dd5f9615SStefan Behrens goto fail; 1864dd5f9615SStefan Behrens } 1865807fc790SAndy Shevchenko ret = btrfs_uuid_tree_add(trans, new_root_item->uuid, 1866807fc790SAndy Shevchenko BTRFS_UUID_KEY_SUBVOL, 1867cdb345a8SLu Fengqi objectid); 1868dd5f9615SStefan Behrens if (ret) { 186966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1870dd5f9615SStefan Behrens goto fail; 1871dd5f9615SStefan Behrens } 1872dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1873cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid, 1874dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1875dd5f9615SStefan Behrens objectid); 1876dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 187766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1878dd5f9615SStefan Behrens goto fail; 1879dd5f9615SStefan Behrens } 1880dd5f9615SStefan Behrens } 1881d6726335SQu Wenruo 18823063d29fSChris Mason fail: 1883aec8030aSMiao Xie pending->error = ret; 1884aec8030aSMiao Xie dir_item_existed: 188598c9942aSLiu Bo trans->block_rsv = rsv; 18862382c5ccSLiu Bo trans->bytes_reserved = 0; 1887d6726335SQu Wenruo clear_skip_qgroup: 1888d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 18896fa9700eSMiao Xie no_free_objectid: 18906fa9700eSMiao Xie kfree(new_root_item); 1891b0c0ea63SDavid Sterba pending->root_item = NULL; 189242874b3dSMiao Xie btrfs_free_path(path); 18938546b570SDavid Sterba pending->path = NULL; 18948546b570SDavid Sterba 189549b25e05SJeff Mahoney return ret; 18963063d29fSChris Mason } 18973063d29fSChris Mason 1898d352ac68SChris Mason /* 1899d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1900d352ac68SChris Mason */ 190108d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans) 19023063d29fSChris Mason { 1903aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 19043063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1905aec8030aSMiao Xie int ret = 0; 19063de4586cSChris Mason 1907aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1908aec8030aSMiao Xie list_del(&pending->list); 190908d50ca3SNikolay Borisov ret = create_pending_snapshot(trans, pending); 1910aec8030aSMiao Xie if (ret) 1911aec8030aSMiao Xie break; 1912aec8030aSMiao Xie } 1913aec8030aSMiao Xie return ret; 19143de4586cSChris Mason } 19153de4586cSChris Mason 19162ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info) 19175d4f98a2SYan Zheng { 19185d4f98a2SYan Zheng struct btrfs_root_item *root_item; 19195d4f98a2SYan Zheng struct btrfs_super_block *super; 19205d4f98a2SYan Zheng 19210b246afaSJeff Mahoney super = fs_info->super_copy; 19225d4f98a2SYan Zheng 19230b246afaSJeff Mahoney root_item = &fs_info->chunk_root->root_item; 1924093e037cSDavid Sterba super->chunk_root = root_item->bytenr; 1925093e037cSDavid Sterba super->chunk_root_generation = root_item->generation; 1926093e037cSDavid Sterba super->chunk_root_level = root_item->level; 19275d4f98a2SYan Zheng 19280b246afaSJeff Mahoney root_item = &fs_info->tree_root->root_item; 1929093e037cSDavid Sterba super->root = root_item->bytenr; 1930093e037cSDavid Sterba super->generation = root_item->generation; 1931093e037cSDavid Sterba super->root_level = root_item->level; 19320b246afaSJeff Mahoney if (btrfs_test_opt(fs_info, SPACE_CACHE)) 1933093e037cSDavid Sterba super->cache_generation = root_item->generation; 193494846229SBoris Burkov else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags)) 193594846229SBoris Burkov super->cache_generation = 0; 19360b246afaSJeff Mahoney if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)) 1937093e037cSDavid Sterba super->uuid_tree_generation = root_item->generation; 1938f7238e50SJosef Bacik 1939f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 1940f7238e50SJosef Bacik root_item = &fs_info->block_group_root->root_item; 1941f7238e50SJosef Bacik 1942f7238e50SJosef Bacik super->block_group_root = root_item->bytenr; 1943f7238e50SJosef Bacik super->block_group_root_generation = root_item->generation; 1944f7238e50SJosef Bacik super->block_group_root_level = root_item->level; 1945f7238e50SJosef Bacik } 19465d4f98a2SYan Zheng } 19475d4f98a2SYan Zheng 1948f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1949f36f3042SChris Mason { 19504a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1951f36f3042SChris Mason int ret = 0; 19524a9d8bdeSMiao Xie 1953a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19544a9d8bdeSMiao Xie trans = info->running_transaction; 19554a9d8bdeSMiao Xie if (trans) 19564a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1957a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1958f36f3042SChris Mason return ret; 1959f36f3042SChris Mason } 1960f36f3042SChris Mason 19618929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 19628929ecfaSYan, Zheng { 19634a9d8bdeSMiao Xie struct btrfs_transaction *trans; 19648929ecfaSYan, Zheng int ret = 0; 19654a9d8bdeSMiao Xie 1966a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19674a9d8bdeSMiao Xie trans = info->running_transaction; 19684a9d8bdeSMiao Xie if (trans) 19694a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1970a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 19718929ecfaSYan, Zheng return ret; 19728929ecfaSYan, Zheng } 19738929ecfaSYan, Zheng 1974fdfbf020SJosef Bacik void btrfs_commit_transaction_async(struct btrfs_trans_handle *trans) 1975bb9c12c9SSage Weil { 19763a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 1977bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1978bb9c12c9SSage Weil 1979fdfbf020SJosef Bacik /* Kick the transaction kthread. */ 1980fdfbf020SJosef Bacik set_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 1981fdfbf020SJosef Bacik wake_up_process(fs_info->transaction_kthread); 1982bb9c12c9SSage Weil 1983bb9c12c9SSage Weil /* take transaction reference */ 1984bb9c12c9SSage Weil cur_trans = trans->transaction; 19859b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 1986bb9c12c9SSage Weil 19873a45bb20SJeff Mahoney btrfs_end_transaction(trans); 19886fc4e354SSage Weil 19896fc4e354SSage Weil /* 1990ae5d29d4SDavid Sterba * Wait for the current transaction commit to start and block 1991ae5d29d4SDavid Sterba * subsequent transaction joins 1992ae5d29d4SDavid Sterba */ 19933e738c53SIoannis Angelakopoulos btrfs_might_wait_for_state(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 1994ae5d29d4SDavid Sterba wait_event(fs_info->transaction_blocked_wait, 1995ae5d29d4SDavid Sterba cur_trans->state >= TRANS_STATE_COMMIT_START || 1996ae5d29d4SDavid Sterba TRANS_ABORTED(cur_trans)); 1997724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1998bb9c12c9SSage Weil } 1999bb9c12c9SSage Weil 200097cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err) 200149b25e05SJeff Mahoney { 200297cb39bbSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 200349b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 200449b25e05SJeff Mahoney 2005b50fff81SDavid Sterba WARN_ON(refcount_read(&trans->use_count) > 1); 200649b25e05SJeff Mahoney 200766642832SJeff Mahoney btrfs_abort_transaction(trans, err); 20087b8b92afSJosef Bacik 20090b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 201066b6135bSLiu Bo 201125d8c284SMiao Xie /* 201225d8c284SMiao Xie * If the transaction is removed from the list, it means this 201325d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 201425d8c284SMiao Xie * to call the cleanup function. 201525d8c284SMiao Xie */ 201625d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 201766b6135bSLiu Bo 20180b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) { 20194a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 20200b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2021e1489b4fSIoannis Angelakopoulos 2022e1489b4fSIoannis Angelakopoulos /* 2023e1489b4fSIoannis Angelakopoulos * The thread has already released the lockdep map as reader 2024e1489b4fSIoannis Angelakopoulos * already in btrfs_commit_transaction(). 2025e1489b4fSIoannis Angelakopoulos */ 2026e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 2027f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 2028f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 2029f094ac32SLiu Bo 20300b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 2031d7096fc3SJosef Bacik } 2032061dde82SFilipe Manana 2033061dde82SFilipe Manana /* 2034061dde82SFilipe Manana * Now that we know no one else is still using the transaction we can 2035061dde82SFilipe Manana * remove the transaction from the list of transactions. This avoids 2036061dde82SFilipe Manana * the transaction kthread from cleaning up the transaction while some 2037061dde82SFilipe Manana * other task is still using it, which could result in a use-after-free 2038061dde82SFilipe Manana * on things like log trees, as it forces the transaction kthread to 2039061dde82SFilipe Manana * wait for this transaction to be cleaned up by us. 2040061dde82SFilipe Manana */ 2041061dde82SFilipe Manana list_del_init(&cur_trans->list); 2042061dde82SFilipe Manana 20430b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 204449b25e05SJeff Mahoney 20452ff7e61eSJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, fs_info); 204649b25e05SJeff Mahoney 20470b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 20480b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) 20490b246afaSJeff Mahoney fs_info->running_transaction = NULL; 20500b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 20514a9d8bdeSMiao Xie 2052e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 20530b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2054724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2055724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 205649b25e05SJeff Mahoney 20572e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 205849b25e05SJeff Mahoney 205949b25e05SJeff Mahoney if (current->journal_info == trans) 206049b25e05SJeff Mahoney current->journal_info = NULL; 20610b246afaSJeff Mahoney btrfs_scrub_cancel(fs_info); 206249b25e05SJeff Mahoney 206349b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 206449b25e05SJeff Mahoney } 206549b25e05SJeff Mahoney 2066c7cc64a9SDavid Sterba /* 2067c7cc64a9SDavid Sterba * Release reserved delayed ref space of all pending block groups of the 2068c7cc64a9SDavid Sterba * transaction and remove them from the list 2069c7cc64a9SDavid Sterba */ 2070c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans) 2071c7cc64a9SDavid Sterba { 2072c7cc64a9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 207332da5386SDavid Sterba struct btrfs_block_group *block_group, *tmp; 2074c7cc64a9SDavid Sterba 2075c7cc64a9SDavid Sterba list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { 2076c7cc64a9SDavid Sterba btrfs_delayed_refs_rsv_release(fs_info, 1); 2077c7cc64a9SDavid Sterba list_del_init(&block_group->bg_list); 2078c7cc64a9SDavid Sterba } 2079c7cc64a9SDavid Sterba } 2080c7cc64a9SDavid Sterba 208188090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 208282436617SMiao Xie { 2083ce8ea7ccSJosef Bacik /* 2084a0f0cf83SFilipe Manana * We use try_to_writeback_inodes_sb() here because if we used 2085ce8ea7ccSJosef Bacik * btrfs_start_delalloc_roots we would deadlock with fs freeze. 2086ce8ea7ccSJosef Bacik * Currently are holding the fs freeze lock, if we do an async flush 2087ce8ea7ccSJosef Bacik * we'll do btrfs_join_transaction() and deadlock because we need to 2088ce8ea7ccSJosef Bacik * wait for the fs freeze lock. Using the direct flushing we benefit 2089ce8ea7ccSJosef Bacik * from already being in a transaction and our join_transaction doesn't 2090ce8ea7ccSJosef Bacik * have to re-take the fs freeze lock. 2091a0f0cf83SFilipe Manana * 2092a0f0cf83SFilipe Manana * Note that try_to_writeback_inodes_sb() will only trigger writeback 2093a0f0cf83SFilipe Manana * if it can read lock sb->s_umount. It will always be able to lock it, 2094a0f0cf83SFilipe Manana * except when the filesystem is being unmounted or being frozen, but in 2095a0f0cf83SFilipe Manana * those cases sync_filesystem() is called, which results in calling 2096a0f0cf83SFilipe Manana * writeback_inodes_sb() while holding a write lock on sb->s_umount. 2097a0f0cf83SFilipe Manana * Note that we don't call writeback_inodes_sb() directly, because it 2098a0f0cf83SFilipe Manana * will emit a warning if sb->s_umount is not locked. 2099ce8ea7ccSJosef Bacik */ 210088090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 2101a0f0cf83SFilipe Manana try_to_writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC); 210282436617SMiao Xie return 0; 210382436617SMiao Xie } 210482436617SMiao Xie 210588090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 210682436617SMiao Xie { 210788090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 21086374e57aSChris Mason btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); 210982436617SMiao Xie } 211082436617SMiao Xie 211128b21c55SFilipe Manana /* 211228b21c55SFilipe Manana * Add a pending snapshot associated with the given transaction handle to the 211328b21c55SFilipe Manana * respective handle. This must be called after the transaction commit started 211428b21c55SFilipe Manana * and while holding fs_info->trans_lock. 211528b21c55SFilipe Manana * This serves to guarantee a caller of btrfs_commit_transaction() that it can 211628b21c55SFilipe Manana * safely free the pending snapshot pointer in case btrfs_commit_transaction() 211728b21c55SFilipe Manana * returns an error. 211828b21c55SFilipe Manana */ 211928b21c55SFilipe Manana static void add_pending_snapshot(struct btrfs_trans_handle *trans) 212028b21c55SFilipe Manana { 212128b21c55SFilipe Manana struct btrfs_transaction *cur_trans = trans->transaction; 212228b21c55SFilipe Manana 212328b21c55SFilipe Manana if (!trans->pending_snapshot) 212428b21c55SFilipe Manana return; 212528b21c55SFilipe Manana 212628b21c55SFilipe Manana lockdep_assert_held(&trans->fs_info->trans_lock); 212728b21c55SFilipe Manana ASSERT(cur_trans->state >= TRANS_STATE_COMMIT_START); 212828b21c55SFilipe Manana 212928b21c55SFilipe Manana list_add(&trans->pending_snapshot->list, &cur_trans->pending_snapshots); 213028b21c55SFilipe Manana } 213128b21c55SFilipe Manana 2132e55958c8SIoannis Angelakopoulos static void update_commit_stats(struct btrfs_fs_info *fs_info, ktime_t interval) 2133e55958c8SIoannis Angelakopoulos { 2134e55958c8SIoannis Angelakopoulos fs_info->commit_stats.commit_count++; 2135e55958c8SIoannis Angelakopoulos fs_info->commit_stats.last_commit_dur = interval; 2136e55958c8SIoannis Angelakopoulos fs_info->commit_stats.max_commit_dur = 2137e55958c8SIoannis Angelakopoulos max_t(u64, fs_info->commit_stats.max_commit_dur, interval); 2138e55958c8SIoannis Angelakopoulos fs_info->commit_stats.total_commit_dur += interval; 2139e55958c8SIoannis Angelakopoulos } 2140e55958c8SIoannis Angelakopoulos 21413a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans) 214279154b1bSChris Mason { 21433a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 214449b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 21458fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 214625287e0aSMiao Xie int ret; 2147e55958c8SIoannis Angelakopoulos ktime_t start_time; 2148e55958c8SIoannis Angelakopoulos ktime_t interval; 214979154b1bSChris Mason 215035b814f3SNikolay Borisov ASSERT(refcount_read(&trans->use_count) == 1); 21513e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 215235b814f3SNikolay Borisov 21538d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 2154bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 215525287e0aSMiao Xie ret = cur_trans->aborted; 21563e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 215725287e0aSMiao Xie } 215849b25e05SJeff Mahoney 2159f45c752bSJosef Bacik btrfs_trans_release_metadata(trans); 2160f45c752bSJosef Bacik trans->block_rsv = NULL; 2161f45c752bSJosef Bacik 2162e19eb11fSJosef Bacik /* 2163e19eb11fSJosef Bacik * We only want one transaction commit doing the flushing so we do not 2164e19eb11fSJosef Bacik * waste a bunch of time on lock contention on the extent root node. 2165e19eb11fSJosef Bacik */ 2166e19eb11fSJosef Bacik if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING, 2167e19eb11fSJosef Bacik &cur_trans->delayed_refs.flags)) { 2168e19eb11fSJosef Bacik /* 2169e19eb11fSJosef Bacik * Make a pass through all the delayed refs we have so far. 2170e19eb11fSJosef Bacik * Any running threads may add more while we are here. 217156bec294SChris Mason */ 2172c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 21733e738c53SIoannis Angelakopoulos if (ret) 21743e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 2175e19eb11fSJosef Bacik } 217656bec294SChris Mason 21776c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 2178ea658badSJosef Bacik 21793204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 21801bbc621eSChris Mason int run_it = 0; 21811bbc621eSChris Mason 21821bbc621eSChris Mason /* this mutex is also taken before trying to set 21831bbc621eSChris Mason * block groups readonly. We need to make sure 21841bbc621eSChris Mason * that nobody has set a block group readonly 21851bbc621eSChris Mason * after a extents from that block group have been 21861bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 21871bbc621eSChris Mason * will wait for the transaction to commit if it 21883204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 21891bbc621eSChris Mason * 21903204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 21913204d33cSJosef Bacik * only one process starts all the block group IO. It wouldn't 21921bbc621eSChris Mason * hurt to have more than one go through, but there's no 21931bbc621eSChris Mason * real advantage to it either. 21941bbc621eSChris Mason */ 21950b246afaSJeff Mahoney mutex_lock(&fs_info->ro_block_group_mutex); 21963204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 21973204d33cSJosef Bacik &cur_trans->flags)) 21981bbc621eSChris Mason run_it = 1; 21990b246afaSJeff Mahoney mutex_unlock(&fs_info->ro_block_group_mutex); 22001bbc621eSChris Mason 2201f9cacae3SNikolay Borisov if (run_it) { 220221217054SNikolay Borisov ret = btrfs_start_dirty_block_groups(trans); 22033e738c53SIoannis Angelakopoulos if (ret) 22043e738c53SIoannis Angelakopoulos goto lockdep_trans_commit_start_release; 2205f9cacae3SNikolay Borisov } 2206f9cacae3SNikolay Borisov } 22071bbc621eSChris Mason 22080b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 22094a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 2210d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2211d0c2f4faSFilipe Manana 221228b21c55SFilipe Manana add_pending_snapshot(trans); 221328b21c55SFilipe Manana 22140b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 22159b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 2216ccd467d6SChris Mason 2217d0c2f4faSFilipe Manana if (trans->in_fsync) 2218d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 22193e738c53SIoannis Angelakopoulos 22203e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, 22213e738c53SIoannis Angelakopoulos BTRFS_LOCKDEP_TRANS_COMMIT_START); 2222d0c2f4faSFilipe Manana ret = btrfs_end_transaction(trans); 2223d0c2f4faSFilipe Manana wait_for_commit(cur_trans, want_state); 222415ee9bc7SJosef Bacik 2225bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) 2226b4924a0fSLiu Bo ret = cur_trans->aborted; 2227b4924a0fSLiu Bo 2228724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 222915ee9bc7SJosef Bacik 223049b25e05SJeff Mahoney return ret; 223179154b1bSChris Mason } 22324313b399SChris Mason 22334a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 22340b246afaSJeff Mahoney wake_up(&fs_info->transaction_blocked_wait); 22353e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 2236bb9c12c9SSage Weil 22370b246afaSJeff Mahoney if (cur_trans->list.prev != &fs_info->trans_list) { 2238d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2239d0c2f4faSFilipe Manana 2240d0c2f4faSFilipe Manana if (trans->in_fsync) 2241d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 2242d0c2f4faSFilipe Manana 2243ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 2244ccd467d6SChris Mason struct btrfs_transaction, list); 2245d0c2f4faSFilipe Manana if (prev_trans->state < want_state) { 22469b64f57dSElena Reshetova refcount_inc(&prev_trans->use_count); 22470b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2248ccd467d6SChris Mason 2249d0c2f4faSFilipe Manana wait_for_commit(prev_trans, want_state); 2250d0c2f4faSFilipe Manana 2251bf31f87fSDavid Sterba ret = READ_ONCE(prev_trans->aborted); 2252ccd467d6SChris Mason 2253724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 22541f9b8c8fSFilipe Manana if (ret) 2255e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2256a4abeea4SJosef Bacik } else { 22570b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2258ccd467d6SChris Mason } 2259a4abeea4SJosef Bacik } else { 22600b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2261cb2d3dadSFilipe Manana /* 2262cb2d3dadSFilipe Manana * The previous transaction was aborted and was already removed 2263cb2d3dadSFilipe Manana * from the list of transactions at fs_info->trans_list. So we 2264cb2d3dadSFilipe Manana * abort to prevent writing a new superblock that reflects a 2265cb2d3dadSFilipe Manana * corrupt state (pointing to trees with unwritten nodes/leafs). 2266cb2d3dadSFilipe Manana */ 226784961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) { 2268cb2d3dadSFilipe Manana ret = -EROFS; 2269e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2270cb2d3dadSFilipe Manana } 2271ccd467d6SChris Mason } 227215ee9bc7SJosef Bacik 2273e55958c8SIoannis Angelakopoulos /* 2274e55958c8SIoannis Angelakopoulos * Get the time spent on the work done by the commit thread and not 2275e55958c8SIoannis Angelakopoulos * the time spent waiting on a previous commit 2276e55958c8SIoannis Angelakopoulos */ 2277e55958c8SIoannis Angelakopoulos start_time = ktime_get_ns(); 2278e55958c8SIoannis Angelakopoulos 22790860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 22800860adfdSMiao Xie 228188090ad3SFilipe Manana ret = btrfs_start_delalloc_flush(fs_info); 228282436617SMiao Xie if (ret) 2283e1489b4fSIoannis Angelakopoulos goto lockdep_release; 228482436617SMiao Xie 2285e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 228649b25e05SJeff Mahoney if (ret) 2287e1489b4fSIoannis Angelakopoulos goto lockdep_release; 228816cdcec7SMiao Xie 22895a9ba670SIoannis Angelakopoulos /* 22905a9ba670SIoannis Angelakopoulos * The thread has started/joined the transaction thus it holds the 22915a9ba670SIoannis Angelakopoulos * lockdep map as a reader. It has to release it before acquiring the 22925a9ba670SIoannis Angelakopoulos * lockdep map as a writer. 22935a9ba670SIoannis Angelakopoulos */ 22945a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 22955a9ba670SIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_extwriters); 2296581227d0SMiao Xie wait_event(cur_trans->writer_wait, 2297581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 2298ed3b3d31SChris Mason 2299581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 2300e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 2301e1489b4fSIoannis Angelakopoulos if (ret) { 2302e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2303ca469637SMiao Xie goto cleanup_transaction; 2304e1489b4fSIoannis Angelakopoulos } 2305ca469637SMiao Xie 230688090ad3SFilipe Manana btrfs_wait_delalloc_flush(fs_info); 2307cb7ab021SWang Shilong 230848778179SFilipe Manana /* 230948778179SFilipe Manana * Wait for all ordered extents started by a fast fsync that joined this 231048778179SFilipe Manana * transaction. Otherwise if this transaction commits before the ordered 231148778179SFilipe Manana * extents complete we lose logged data after a power failure. 231248778179SFilipe Manana */ 2313*8b53779eSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_pending_ordered); 231448778179SFilipe Manana wait_event(cur_trans->pending_wait, 231548778179SFilipe Manana atomic_read(&cur_trans->pending_ordered) == 0); 231648778179SFilipe Manana 23172ff7e61eSJeff Mahoney btrfs_scrub_pause(fs_info); 2318ed0ca140SJosef Bacik /* 2319ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 2320ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 23214a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 2322ed0ca140SJosef Bacik */ 23230b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 232428b21c55SFilipe Manana add_pending_snapshot(trans); 23254a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 23260b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2327e1489b4fSIoannis Angelakopoulos 2328e1489b4fSIoannis Angelakopoulos /* 2329e1489b4fSIoannis Angelakopoulos * The thread has started/joined the transaction thus it holds the 2330e1489b4fSIoannis Angelakopoulos * lockdep map as a reader. It has to release it before acquiring the 2331e1489b4fSIoannis Angelakopoulos * lockdep map as a writer. 2332e1489b4fSIoannis Angelakopoulos */ 2333e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2334e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 2335ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 2336ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 233715ee9bc7SJosef Bacik 2338fdfbf020SJosef Bacik /* 23393e738c53SIoannis Angelakopoulos * Make lockdep happy by acquiring the state locks after 23403e738c53SIoannis Angelakopoulos * btrfs_trans_num_writers is released. If we acquired the state locks 23413e738c53SIoannis Angelakopoulos * before releasing the btrfs_trans_num_writers lock then lockdep would 23423e738c53SIoannis Angelakopoulos * complain because we did not follow the reverse order unlocking rule. 23433e738c53SIoannis Angelakopoulos */ 23443e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 23453e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 23463e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_acquire(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 23473e738c53SIoannis Angelakopoulos 23483e738c53SIoannis Angelakopoulos /* 2349fdfbf020SJosef Bacik * We've started the commit, clear the flag in case we were triggered to 2350fdfbf020SJosef Bacik * do an async commit but somebody else started before the transaction 2351fdfbf020SJosef Bacik * kthread could do the work. 2352fdfbf020SJosef Bacik */ 2353fdfbf020SJosef Bacik clear_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 2354fdfbf020SJosef Bacik 2355bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 23562cba30f1SMiao Xie ret = cur_trans->aborted; 23573e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 23586cf7f77eSWang Shilong goto scrub_continue; 23592cba30f1SMiao Xie } 23607585717fSChris Mason /* 23617585717fSChris Mason * the reloc mutex makes sure that we stop 23627585717fSChris Mason * the balancing code from coming in and moving 23637585717fSChris Mason * extents around in the middle of the commit 23647585717fSChris Mason */ 23650b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 23667585717fSChris Mason 236742874b3dSMiao Xie /* 236842874b3dSMiao Xie * We needn't worry about the delayed items because we will 236942874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 237042874b3dSMiao Xie * core function of the snapshot creation. 237142874b3dSMiao Xie */ 237208d50ca3SNikolay Borisov ret = create_pending_snapshots(trans); 237356e9f6eaSDavid Sterba if (ret) 237456e9f6eaSDavid Sterba goto unlock_reloc; 23753063d29fSChris Mason 237642874b3dSMiao Xie /* 237742874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 237842874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 237942874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 238042874b3dSMiao Xie * them. 238142874b3dSMiao Xie * 238242874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 238342874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 238442874b3dSMiao Xie * the nodes and leaves. 238542874b3dSMiao Xie */ 2386e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 238756e9f6eaSDavid Sterba if (ret) 238856e9f6eaSDavid Sterba goto unlock_reloc; 238916cdcec7SMiao Xie 2390c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 239156e9f6eaSDavid Sterba if (ret) 239256e9f6eaSDavid Sterba goto unlock_reloc; 239356bec294SChris Mason 2394e999376fSChris Mason /* 2395e999376fSChris Mason * make sure none of the code above managed to slip in a 2396e999376fSChris Mason * delayed item 2397e999376fSChris Mason */ 2398ccdf9b30SJeff Mahoney btrfs_assert_delayed_root_empty(fs_info); 2399e999376fSChris Mason 24002c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2401dc17ff8fSChris Mason 24027e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 240356e9f6eaSDavid Sterba if (ret) 2404dfba78dcSFilipe Manana goto unlock_reloc; 240554aa1f4dSChris Mason 24063818aea2SQu Wenruo /* 24077e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 24087e1876acSDavid Sterba * before the next transaction. 24093818aea2SQu Wenruo */ 24100b246afaSJeff Mahoney btrfs_apply_pending_changes(fs_info); 24113818aea2SQu Wenruo 24125d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2413e02119d5SChris Mason * safe to free the root of tree log roots 2414e02119d5SChris Mason */ 24150b246afaSJeff Mahoney btrfs_free_log_root_tree(trans, fs_info); 2416e02119d5SChris Mason 24170ed4792aSQu Wenruo /* 24180ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 24190ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 24200ed4792aSQu Wenruo */ 2421460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 242256e9f6eaSDavid Sterba if (ret < 0) 2423dfba78dcSFilipe Manana goto unlock_reloc; 24240ed4792aSQu Wenruo 24259386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 242656e9f6eaSDavid Sterba if (ret) 2427dfba78dcSFilipe Manana goto unlock_reloc; 242854aa1f4dSChris Mason 24292cba30f1SMiao Xie /* 24302cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 24312cba30f1SMiao Xie * update ->aborted, check it. 24322cba30f1SMiao Xie */ 2433bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 24342cba30f1SMiao Xie ret = cur_trans->aborted; 2435dfba78dcSFilipe Manana goto unlock_reloc; 24362cba30f1SMiao Xie } 24372cba30f1SMiao Xie 24380b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 24395f39d397SChris Mason 24400b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->tree_root->root_item, 24410b246afaSJeff Mahoney fs_info->tree_root->node); 24420b246afaSJeff Mahoney list_add_tail(&fs_info->tree_root->dirty_list, 24439e351cc8SJosef Bacik &cur_trans->switch_commits); 24445d4f98a2SYan Zheng 24450b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->chunk_root->root_item, 24460b246afaSJeff Mahoney fs_info->chunk_root->node); 24470b246afaSJeff Mahoney list_add_tail(&fs_info->chunk_root->dirty_list, 24489e351cc8SJosef Bacik &cur_trans->switch_commits); 24499e351cc8SJosef Bacik 2450f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 2451f7238e50SJosef Bacik btrfs_set_root_node(&fs_info->block_group_root->root_item, 2452f7238e50SJosef Bacik fs_info->block_group_root->node); 2453f7238e50SJosef Bacik list_add_tail(&fs_info->block_group_root->dirty_list, 2454f7238e50SJosef Bacik &cur_trans->switch_commits); 2455f7238e50SJosef Bacik } 2456f7238e50SJosef Bacik 2457889bfa39SJosef Bacik switch_commit_roots(trans); 24585d4f98a2SYan Zheng 2459ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 24601bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 24612ff7e61eSJeff Mahoney update_super_roots(fs_info); 2462e02119d5SChris Mason 24630b246afaSJeff Mahoney btrfs_set_super_log_root(fs_info->super_copy, 0); 24640b246afaSJeff Mahoney btrfs_set_super_log_root_level(fs_info->super_copy, 0); 24650b246afaSJeff Mahoney memcpy(fs_info->super_for_commit, fs_info->super_copy, 24660b246afaSJeff Mahoney sizeof(*fs_info->super_copy)); 2467ccd467d6SChris Mason 2468bbbf7243SNikolay Borisov btrfs_commit_device_sizes(cur_trans); 2469935e5cc9SMiao Xie 24700b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags); 24710b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags); 2472656f30dbSFilipe Manana 24734fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 24744fbcdf66SFilipe Manana 2475dfba78dcSFilipe Manana /* 2476dfba78dcSFilipe Manana * Before changing the transaction state to TRANS_STATE_UNBLOCKED and 2477dfba78dcSFilipe Manana * setting fs_info->running_transaction to NULL, lock tree_log_mutex to 2478dfba78dcSFilipe Manana * make sure that before we commit our superblock, no other task can 2479dfba78dcSFilipe Manana * start a new transaction and commit a log tree before we commit our 2480dfba78dcSFilipe Manana * superblock. Anyone trying to commit a log tree locks this mutex before 2481dfba78dcSFilipe Manana * writing its superblock. 2482dfba78dcSFilipe Manana */ 2483dfba78dcSFilipe Manana mutex_lock(&fs_info->tree_log_mutex); 2484dfba78dcSFilipe Manana 24850b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 24864a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 24870b246afaSJeff Mahoney fs_info->running_transaction = NULL; 24880b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 24890b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 2490b7ec40d7SChris Mason 24910b246afaSJeff Mahoney wake_up(&fs_info->transaction_wait); 24923e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 2493e6dcd2dcSChris Mason 249470458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 249549b25e05SJeff Mahoney if (ret) { 24960b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, 249708748810SDavid Sterba "Error while writing out transaction"); 24980b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 24996cf7f77eSWang Shilong goto scrub_continue; 250049b25e05SJeff Mahoney } 250149b25e05SJeff Mahoney 2502d3575156SNaohiro Aota /* 2503d3575156SNaohiro Aota * At this point, we should have written all the tree blocks allocated 2504d3575156SNaohiro Aota * in this transaction. So it's now safe to free the redirtyied extent 2505d3575156SNaohiro Aota * buffers. 2506d3575156SNaohiro Aota */ 2507d3575156SNaohiro Aota btrfs_free_redirty_list(cur_trans); 2508d3575156SNaohiro Aota 2509eece6a9cSDavid Sterba ret = write_all_supers(fs_info, 0); 2510e02119d5SChris Mason /* 2511e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2512e02119d5SChris Mason * to go about their business 2513e02119d5SChris Mason */ 25140b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 2515c1f32b7cSAnand Jain if (ret) 2516c1f32b7cSAnand Jain goto scrub_continue; 2517e02119d5SChris Mason 2518d0c2f4faSFilipe Manana /* 2519d0c2f4faSFilipe Manana * We needn't acquire the lock here because there is no other task 2520d0c2f4faSFilipe Manana * which can change it. 2521d0c2f4faSFilipe Manana */ 2522d0c2f4faSFilipe Manana cur_trans->state = TRANS_STATE_SUPER_COMMITTED; 2523d0c2f4faSFilipe Manana wake_up(&cur_trans->commit_wait); 25243e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 2525d0c2f4faSFilipe Manana 25265ead2dd0SNikolay Borisov btrfs_finish_extent_commit(trans); 25274313b399SChris Mason 25283204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 25290b246afaSJeff Mahoney btrfs_clear_space_info_full(fs_info); 253013212b54SZhao Lei 25310b246afaSJeff Mahoney fs_info->last_trans_committed = cur_trans->transid; 25324a9d8bdeSMiao Xie /* 25334a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 25344a9d8bdeSMiao Xie * which can change it. 25354a9d8bdeSMiao Xie */ 25364a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 25372c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 25383e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 25393de4586cSChris Mason 25400b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 254113c5a93eSJosef Bacik list_del_init(&cur_trans->list); 25420b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2543a4abeea4SJosef Bacik 2544724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2545724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 254658176a96SJosef Bacik 25470860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 25480b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2549b2b5ef5cSJan Kara 25502e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 25511abe9b8aSliubo 2552e55958c8SIoannis Angelakopoulos interval = ktime_get_ns() - start_time; 2553e55958c8SIoannis Angelakopoulos 25542ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 2555a2de733cSArne Jansen 25569ed74f2dSJosef Bacik if (current->journal_info == trans) 25579ed74f2dSJosef Bacik current->journal_info = NULL; 25589ed74f2dSJosef Bacik 25592c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 256024bbcf04SYan, Zheng 2561e55958c8SIoannis Angelakopoulos update_commit_stats(fs_info, interval); 2562e55958c8SIoannis Angelakopoulos 256379154b1bSChris Mason return ret; 256449b25e05SJeff Mahoney 256556e9f6eaSDavid Sterba unlock_reloc: 256656e9f6eaSDavid Sterba mutex_unlock(&fs_info->reloc_mutex); 25673e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_UNBLOCKED); 25686cf7f77eSWang Shilong scrub_continue: 25693e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_SUPER_COMMITTED); 25703e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMPLETED); 25712ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 257249b25e05SJeff Mahoney cleanup_transaction: 2573dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 2574c7cc64a9SDavid Sterba btrfs_cleanup_pending_block_groups(trans); 25754fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 25760e721106SJosef Bacik trans->block_rsv = NULL; 25770b246afaSJeff Mahoney btrfs_warn(fs_info, "Skipping commit of aborted transaction."); 257849b25e05SJeff Mahoney if (current->journal_info == trans) 257949b25e05SJeff Mahoney current->journal_info = NULL; 258097cb39bbSNikolay Borisov cleanup_transaction(trans, ret); 258149b25e05SJeff Mahoney 258249b25e05SJeff Mahoney return ret; 2583e1489b4fSIoannis Angelakopoulos 2584e1489b4fSIoannis Angelakopoulos lockdep_release: 25855a9ba670SIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_extwriters); 2586e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2587e1489b4fSIoannis Angelakopoulos goto cleanup_transaction; 25883e738c53SIoannis Angelakopoulos 25893e738c53SIoannis Angelakopoulos lockdep_trans_commit_start_release: 25903e738c53SIoannis Angelakopoulos btrfs_trans_state_lockdep_release(fs_info, BTRFS_LOCKDEP_TRANS_COMMIT_START); 25913e738c53SIoannis Angelakopoulos btrfs_end_transaction(trans); 25923e738c53SIoannis Angelakopoulos return ret; 259379154b1bSChris Mason } 259479154b1bSChris Mason 2595d352ac68SChris Mason /* 25969d1a2a3aSDavid Sterba * return < 0 if error 25979d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 25989d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 25999d1a2a3aSDavid Sterba * 26009d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 26019d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 26029d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 26039d1a2a3aSDavid Sterba * few seconds later. 2604d352ac68SChris Mason */ 260533c44184SJosef Bacik int btrfs_clean_one_deleted_snapshot(struct btrfs_fs_info *fs_info) 2606e9d0b13bSChris Mason { 260733c44184SJosef Bacik struct btrfs_root *root; 26089d1a2a3aSDavid Sterba int ret; 2609e9d0b13bSChris Mason 2610a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 26119d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 26129d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 26139d1a2a3aSDavid Sterba return 0; 26149d1a2a3aSDavid Sterba } 26159d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 26169d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2617cfad392bSJosef Bacik list_del_init(&root->root_list); 2618a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 26195d4f98a2SYan Zheng 26204fd786e6SMisono Tomohiro btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid); 262176dda93cSYan, Zheng 262216cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 262316cdcec7SMiao Xie 262476dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 262576dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 26260078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 0, 0); 262776dda93cSYan, Zheng else 26280078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 1, 0); 262932471dc2SDavid Sterba 2630dc9492c1SJosef Bacik btrfs_put_root(root); 26316596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2632e9d0b13bSChris Mason } 2633572d9ab7SDavid Sterba 2634572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2635572d9ab7SDavid Sterba { 2636572d9ab7SDavid Sterba unsigned long prev; 2637572d9ab7SDavid Sterba unsigned long bit; 2638572d9ab7SDavid Sterba 26396c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2640572d9ab7SDavid Sterba if (!prev) 2641572d9ab7SDavid Sterba return; 2642572d9ab7SDavid Sterba 2643d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2644d51033d0SDavid Sterba if (prev & bit) 2645d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2646d51033d0SDavid Sterba prev &= ~bit; 2647d51033d0SDavid Sterba 2648572d9ab7SDavid Sterba if (prev) 2649572d9ab7SDavid Sterba btrfs_warn(fs_info, 2650572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2651572d9ab7SDavid Sterba } 2652