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); 316*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 317a4abeea4SJosef Bacik return 0; 318a4abeea4SJosef Bacik } 31919ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 320a4abeea4SJosef Bacik 321354aa0fbSMiao Xie /* 322354aa0fbSMiao Xie * If we are ATTACH, we just want to catch the current transaction, 323354aa0fbSMiao Xie * and commit it. If there is no transaction, just return ENOENT. 324354aa0fbSMiao Xie */ 325354aa0fbSMiao Xie if (type == TRANS_ATTACH) 326354aa0fbSMiao Xie return -ENOENT; 327354aa0fbSMiao Xie 3284a9d8bdeSMiao Xie /* 3294a9d8bdeSMiao Xie * JOIN_NOLOCK only happens during the transaction commit, so 3304a9d8bdeSMiao Xie * it is impossible that ->running_transaction is NULL 3314a9d8bdeSMiao Xie */ 3324a9d8bdeSMiao Xie BUG_ON(type == TRANS_JOIN_NOLOCK); 3334a9d8bdeSMiao Xie 3344b5faeacSDavid Sterba cur_trans = kmalloc(sizeof(*cur_trans), GFP_NOFS); 335db5b493aSTsutomu Itoh if (!cur_trans) 336db5b493aSTsutomu Itoh return -ENOMEM; 337d43317dcSChris Mason 338*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_acquire(fs_info, btrfs_trans_num_writers); 339*e1489b4fSIoannis Angelakopoulos 34019ae4e81SJan Schmidt spin_lock(&fs_info->trans_lock); 34119ae4e81SJan Schmidt if (fs_info->running_transaction) { 342d43317dcSChris Mason /* 343d43317dcSChris Mason * someone started a transaction after we unlocked. Make sure 3444a9d8bdeSMiao Xie * to redo the checks above 345d43317dcSChris Mason */ 346*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3474b5faeacSDavid Sterba kfree(cur_trans); 348d43317dcSChris Mason goto loop; 34984961539SJosef Bacik } else if (BTRFS_FS_ERROR(fs_info)) { 350e4b50e14SDan Carpenter spin_unlock(&fs_info->trans_lock); 351*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 3524b5faeacSDavid Sterba kfree(cur_trans); 3537b8b92afSJosef Bacik return -EROFS; 354a4abeea4SJosef Bacik } 355d43317dcSChris Mason 356ab8d0fc4SJeff Mahoney cur_trans->fs_info = fs_info; 35748778179SFilipe Manana atomic_set(&cur_trans->pending_ordered, 0); 35848778179SFilipe Manana init_waitqueue_head(&cur_trans->pending_wait); 35913c5a93eSJosef Bacik atomic_set(&cur_trans->num_writers, 1); 3600860adfdSMiao Xie extwriter_counter_init(cur_trans, type); 36179154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 36279154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 3634a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_RUNNING; 364a4abeea4SJosef Bacik /* 365a4abeea4SJosef Bacik * One for this trans handle, one so it will live on until we 366a4abeea4SJosef Bacik * commit the transaction. 367a4abeea4SJosef Bacik */ 3689b64f57dSElena Reshetova refcount_set(&cur_trans->use_count, 2); 3693204d33cSJosef Bacik cur_trans->flags = 0; 370afd48513SArnd Bergmann cur_trans->start_time = ktime_get_seconds(); 37156bec294SChris Mason 372a099d0fdSAlexandru Moise memset(&cur_trans->delayed_refs, 0, sizeof(cur_trans->delayed_refs)); 373a099d0fdSAlexandru Moise 3745c9d028bSLiu Bo cur_trans->delayed_refs.href_root = RB_ROOT_CACHED; 3753368d001SQu Wenruo cur_trans->delayed_refs.dirty_extent_root = RB_ROOT; 376d7df2c79SJosef Bacik atomic_set(&cur_trans->delayed_refs.num_entries, 0); 37720b297d6SJan Schmidt 37820b297d6SJan Schmidt /* 37920b297d6SJan Schmidt * although the tree mod log is per file system and not per transaction, 38020b297d6SJan Schmidt * the log must never go across transaction boundaries. 38120b297d6SJan Schmidt */ 38220b297d6SJan Schmidt smp_mb(); 38331b1a2bdSJulia Lawall if (!list_empty(&fs_info->tree_mod_seq_list)) 3845d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_seq_list not empty when creating a fresh transaction\n"); 38531b1a2bdSJulia Lawall if (!RB_EMPTY_ROOT(&fs_info->tree_mod_log)) 3865d163e0eSJeff Mahoney WARN(1, KERN_ERR "BTRFS: tree_mod_log rb tree not empty when creating a fresh transaction\n"); 387fc36ed7eSJan Schmidt atomic64_set(&fs_info->tree_mod_seq, 0); 38820b297d6SJan Schmidt 38956bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 39056bec294SChris Mason 3913063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 392bbbf7243SNikolay Borisov INIT_LIST_HEAD(&cur_trans->dev_update_list); 3939e351cc8SJosef Bacik INIT_LIST_HEAD(&cur_trans->switch_commits); 394ce93ec54SJosef Bacik INIT_LIST_HEAD(&cur_trans->dirty_bgs); 3951bbc621eSChris Mason INIT_LIST_HEAD(&cur_trans->io_bgs); 3962b9dbef2SJosef Bacik INIT_LIST_HEAD(&cur_trans->dropped_roots); 3971bbc621eSChris Mason mutex_init(&cur_trans->cache_write_mutex); 398ce93ec54SJosef Bacik spin_lock_init(&cur_trans->dirty_bgs_lock); 399e33e17eeSJeff Mahoney INIT_LIST_HEAD(&cur_trans->deleted_bgs); 4002b9dbef2SJosef Bacik spin_lock_init(&cur_trans->dropped_roots_lock); 401d3575156SNaohiro Aota INIT_LIST_HEAD(&cur_trans->releasing_ebs); 402d3575156SNaohiro Aota spin_lock_init(&cur_trans->releasing_ebs_lock); 40319ae4e81SJan Schmidt list_add_tail(&cur_trans->list, &fs_info->trans_list); 404c258d6e3SQu Wenruo extent_io_tree_init(fs_info, &cur_trans->dirty_pages, 40543eb5f29SQu Wenruo IO_TREE_TRANS_DIRTY_PAGES, fs_info->btree_inode); 406fe119a6eSNikolay Borisov extent_io_tree_init(fs_info, &cur_trans->pinned_extents, 407fe119a6eSNikolay Borisov IO_TREE_FS_PINNED_EXTENTS, NULL); 40819ae4e81SJan Schmidt fs_info->generation++; 40919ae4e81SJan Schmidt cur_trans->transid = fs_info->generation; 41019ae4e81SJan Schmidt fs_info->running_transaction = cur_trans; 41149b25e05SJeff Mahoney cur_trans->aborted = 0; 41219ae4e81SJan Schmidt spin_unlock(&fs_info->trans_lock); 41315ee9bc7SJosef Bacik 41479154b1bSChris Mason return 0; 41579154b1bSChris Mason } 41679154b1bSChris Mason 417d352ac68SChris Mason /* 41892a7cc42SQu Wenruo * This does all the record keeping required to make sure that a shareable root 41992a7cc42SQu Wenruo * is properly recorded in a given transaction. This is required to make sure 42092a7cc42SQu Wenruo * the old root from before we joined the transaction is deleted when the 42192a7cc42SQu Wenruo * transaction commits. 422d352ac68SChris Mason */ 4237585717fSChris Mason static int record_root_in_trans(struct btrfs_trans_handle *trans, 4246426c7adSQu Wenruo struct btrfs_root *root, 4256426c7adSQu Wenruo int force) 4266702ed49SChris Mason { 4270b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 42803a7e111SJosef Bacik int ret = 0; 4290b246afaSJeff Mahoney 43092a7cc42SQu Wenruo if ((test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 4316426c7adSQu Wenruo root->last_trans < trans->transid) || force) { 4324d31778aSQu Wenruo WARN_ON(!force && root->commit_root != root->node); 4335d4f98a2SYan Zheng 4347585717fSChris Mason /* 43527cdeb70SMiao Xie * see below for IN_TRANS_SETUP usage rules 4367585717fSChris Mason * we have the reloc mutex held now, so there 4377585717fSChris Mason * is only one writer in this function 4387585717fSChris Mason */ 43927cdeb70SMiao Xie set_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4407585717fSChris Mason 44127cdeb70SMiao Xie /* make sure readers find IN_TRANS_SETUP before 4427585717fSChris Mason * they find our root->last_trans update 4437585717fSChris Mason */ 4447585717fSChris Mason smp_wmb(); 4457585717fSChris Mason 446fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 4476426c7adSQu Wenruo if (root->last_trans == trans->transid && !force) { 448fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 449a4abeea4SJosef Bacik return 0; 450a4abeea4SJosef Bacik } 451fc7cbcd4SDavid Sterba radix_tree_tag_set(&fs_info->fs_roots_radix, 4526702ed49SChris Mason (unsigned long)root->root_key.objectid, 4536702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 454fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 4557585717fSChris Mason root->last_trans = trans->transid; 4567585717fSChris Mason 4577585717fSChris Mason /* this is pretty tricky. We don't want to 4587585717fSChris Mason * take the relocation lock in btrfs_record_root_in_trans 4597585717fSChris Mason * unless we're really doing the first setup for this root in 4607585717fSChris Mason * this transaction. 4617585717fSChris Mason * 4627585717fSChris Mason * Normally we'd use root->last_trans as a flag to decide 4637585717fSChris Mason * if we want to take the expensive mutex. 4647585717fSChris Mason * 4657585717fSChris Mason * But, we have to set root->last_trans before we 4667585717fSChris Mason * init the relocation root, otherwise, we trip over warnings 4677585717fSChris Mason * in ctree.c. The solution used here is to flag ourselves 46827cdeb70SMiao Xie * with root IN_TRANS_SETUP. When this is 1, we're still 4697585717fSChris Mason * fixing up the reloc trees and everyone must wait. 4707585717fSChris Mason * 4717585717fSChris Mason * When this is zero, they can trust root->last_trans and fly 4727585717fSChris Mason * through btrfs_record_root_in_trans without having to take the 4737585717fSChris Mason * lock. smp_wmb() makes sure that all the writes above are 4747585717fSChris Mason * done before we pop in the zero below 4757585717fSChris Mason */ 47603a7e111SJosef Bacik ret = btrfs_init_reloc_root(trans, root); 477c7548af6SChris Mason smp_mb__before_atomic(); 47827cdeb70SMiao Xie clear_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state); 4796702ed49SChris Mason } 48003a7e111SJosef Bacik return ret; 4816702ed49SChris Mason } 4825d4f98a2SYan Zheng 4837585717fSChris Mason 4842b9dbef2SJosef Bacik void btrfs_add_dropped_root(struct btrfs_trans_handle *trans, 4852b9dbef2SJosef Bacik struct btrfs_root *root) 4862b9dbef2SJosef Bacik { 4870b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4882b9dbef2SJosef Bacik struct btrfs_transaction *cur_trans = trans->transaction; 4892b9dbef2SJosef Bacik 4902b9dbef2SJosef Bacik /* Add ourselves to the transaction dropped list */ 4912b9dbef2SJosef Bacik spin_lock(&cur_trans->dropped_roots_lock); 4922b9dbef2SJosef Bacik list_add_tail(&root->root_list, &cur_trans->dropped_roots); 4932b9dbef2SJosef Bacik spin_unlock(&cur_trans->dropped_roots_lock); 4942b9dbef2SJosef Bacik 4952b9dbef2SJosef Bacik /* Make sure we don't try to update the root at commit time */ 496fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 497fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 4982b9dbef2SJosef Bacik (unsigned long)root->root_key.objectid, 4992b9dbef2SJosef Bacik BTRFS_ROOT_TRANS_TAG); 500fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 5012b9dbef2SJosef Bacik } 5022b9dbef2SJosef Bacik 5037585717fSChris Mason int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 5047585717fSChris Mason struct btrfs_root *root) 5057585717fSChris Mason { 5060b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5071409e6ccSJosef Bacik int ret; 5080b246afaSJeff Mahoney 50992a7cc42SQu Wenruo if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) 5107585717fSChris Mason return 0; 5117585717fSChris Mason 5127585717fSChris Mason /* 51327cdeb70SMiao Xie * see record_root_in_trans for comments about IN_TRANS_SETUP usage 5147585717fSChris Mason * and barriers 5157585717fSChris Mason */ 5167585717fSChris Mason smp_rmb(); 5177585717fSChris Mason if (root->last_trans == trans->transid && 51827cdeb70SMiao Xie !test_bit(BTRFS_ROOT_IN_TRANS_SETUP, &root->state)) 5197585717fSChris Mason return 0; 5207585717fSChris Mason 5210b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 5221409e6ccSJosef Bacik ret = record_root_in_trans(trans, root, 0); 5230b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 5247585717fSChris Mason 5251409e6ccSJosef Bacik return ret; 5267585717fSChris Mason } 5277585717fSChris Mason 5284a9d8bdeSMiao Xie static inline int is_transaction_blocked(struct btrfs_transaction *trans) 5294a9d8bdeSMiao Xie { 5303296bf56SQu Wenruo return (trans->state >= TRANS_STATE_COMMIT_START && 531501407aaSJosef Bacik trans->state < TRANS_STATE_UNBLOCKED && 532bf31f87fSDavid Sterba !TRANS_ABORTED(trans)); 5334a9d8bdeSMiao Xie } 5344a9d8bdeSMiao Xie 535d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 536d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 537d352ac68SChris Mason * transaction might not be fully on disk. 538d352ac68SChris Mason */ 5392ff7e61eSJeff Mahoney static void wait_current_trans(struct btrfs_fs_info *fs_info) 54079154b1bSChris Mason { 541f9295749SChris Mason struct btrfs_transaction *cur_trans; 54279154b1bSChris Mason 5430b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 5440b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 5454a9d8bdeSMiao Xie if (cur_trans && is_transaction_blocked(cur_trans)) { 5469b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 5470b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 54872d63ed6SLi Zefan 5490b246afaSJeff Mahoney wait_event(fs_info->transaction_wait, 550501407aaSJosef Bacik cur_trans->state >= TRANS_STATE_UNBLOCKED || 551bf31f87fSDavid Sterba TRANS_ABORTED(cur_trans)); 552724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 553a4abeea4SJosef Bacik } else { 5540b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 555f9295749SChris Mason } 55637d1aeeeSChris Mason } 55737d1aeeeSChris Mason 5582ff7e61eSJeff Mahoney static int may_wait_transaction(struct btrfs_fs_info *fs_info, int type) 55937d1aeeeSChris Mason { 5600b246afaSJeff Mahoney if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) 561a4abeea4SJosef Bacik return 0; 562a4abeea4SJosef Bacik 56392e2f7e3SNikolay Borisov if (type == TRANS_START) 564a4abeea4SJosef Bacik return 1; 565a4abeea4SJosef Bacik 566a22285a6SYan, Zheng return 0; 567a22285a6SYan, Zheng } 568a22285a6SYan, Zheng 56920dd2cbfSMiao Xie static inline bool need_reserve_reloc_root(struct btrfs_root *root) 57020dd2cbfSMiao Xie { 5710b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5720b246afaSJeff Mahoney 5730b246afaSJeff Mahoney if (!fs_info->reloc_ctl || 57492a7cc42SQu Wenruo !test_bit(BTRFS_ROOT_SHAREABLE, &root->state) || 57520dd2cbfSMiao Xie root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 57620dd2cbfSMiao Xie root->reloc_root) 57720dd2cbfSMiao Xie return false; 57820dd2cbfSMiao Xie 57920dd2cbfSMiao Xie return true; 58020dd2cbfSMiao Xie } 58120dd2cbfSMiao Xie 58208e007d2SMiao Xie static struct btrfs_trans_handle * 5835aed1dd8SAlexandru Moise start_transaction(struct btrfs_root *root, unsigned int num_items, 584003d7c59SJeff Mahoney unsigned int type, enum btrfs_reserve_flush_enum flush, 585003d7c59SJeff Mahoney bool enforce_qgroups) 586a22285a6SYan, Zheng { 5870b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 588ba2c4d4eSJosef Bacik struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv; 589a22285a6SYan, Zheng struct btrfs_trans_handle *h; 590a22285a6SYan, Zheng struct btrfs_transaction *cur_trans; 591b5009945SJosef Bacik u64 num_bytes = 0; 592c5567237SArne Jansen u64 qgroup_reserved = 0; 59320dd2cbfSMiao Xie bool reloc_reserved = false; 5949c343784SJosef Bacik bool do_chunk_alloc = false; 59520dd2cbfSMiao Xie int ret; 596acce952bSliubo 59784961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) 598acce952bSliubo return ERR_PTR(-EROFS); 5992a1eb461SJosef Bacik 60046c4e71eSFilipe Manana if (current->journal_info) { 6010860adfdSMiao Xie WARN_ON(type & TRANS_EXTWRITERS); 6022a1eb461SJosef Bacik h = current->journal_info; 603b50fff81SDavid Sterba refcount_inc(&h->use_count); 604b50fff81SDavid Sterba WARN_ON(refcount_read(&h->use_count) > 2); 6052a1eb461SJosef Bacik h->orig_rsv = h->block_rsv; 6062a1eb461SJosef Bacik h->block_rsv = NULL; 6072a1eb461SJosef Bacik goto got_it; 6082a1eb461SJosef Bacik } 609b5009945SJosef Bacik 610b5009945SJosef Bacik /* 611b5009945SJosef Bacik * Do the reservation before we join the transaction so we can do all 612b5009945SJosef Bacik * the appropriate flushing if need be. 613b5009945SJosef Bacik */ 614003d7c59SJeff Mahoney if (num_items && root != fs_info->chunk_root) { 615ba2c4d4eSJosef Bacik struct btrfs_block_rsv *rsv = &fs_info->trans_block_rsv; 616ba2c4d4eSJosef Bacik u64 delayed_refs_bytes = 0; 617ba2c4d4eSJosef Bacik 6180b246afaSJeff Mahoney qgroup_reserved = num_items * fs_info->nodesize; 619733e03a0SQu Wenruo ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, 620003d7c59SJeff Mahoney enforce_qgroups); 621c5567237SArne Jansen if (ret) 622c5567237SArne Jansen return ERR_PTR(ret); 623c5567237SArne Jansen 624ba2c4d4eSJosef Bacik /* 625ba2c4d4eSJosef Bacik * We want to reserve all the bytes we may need all at once, so 626ba2c4d4eSJosef Bacik * we only do 1 enospc flushing cycle per transaction start. We 627ba2c4d4eSJosef Bacik * accomplish this by simply assuming we'll do 2 x num_items 628ba2c4d4eSJosef Bacik * worth of delayed refs updates in this trans handle, and 629ba2c4d4eSJosef Bacik * refill that amount for whatever is missing in the reserve. 630ba2c4d4eSJosef Bacik */ 6312bd36e7bSJosef Bacik num_bytes = btrfs_calc_insert_metadata_size(fs_info, num_items); 6327f9fe614SJosef Bacik if (flush == BTRFS_RESERVE_FLUSH_ALL && 6337f9fe614SJosef Bacik delayed_refs_rsv->full == 0) { 634ba2c4d4eSJosef Bacik delayed_refs_bytes = num_bytes; 635ba2c4d4eSJosef Bacik num_bytes <<= 1; 636ba2c4d4eSJosef Bacik } 637ba2c4d4eSJosef Bacik 63820dd2cbfSMiao Xie /* 63920dd2cbfSMiao Xie * Do the reservation for the relocation root creation 64020dd2cbfSMiao Xie */ 641ee39b432SDavid Sterba if (need_reserve_reloc_root(root)) { 6420b246afaSJeff Mahoney num_bytes += fs_info->nodesize; 64320dd2cbfSMiao Xie reloc_reserved = true; 64420dd2cbfSMiao Xie } 64520dd2cbfSMiao Xie 6469270501cSJosef Bacik ret = btrfs_block_rsv_add(fs_info, rsv, num_bytes, flush); 647ba2c4d4eSJosef Bacik if (ret) 648ba2c4d4eSJosef Bacik goto reserve_fail; 649ba2c4d4eSJosef Bacik if (delayed_refs_bytes) { 650ba2c4d4eSJosef Bacik btrfs_migrate_to_delayed_refs_rsv(fs_info, rsv, 651ba2c4d4eSJosef Bacik delayed_refs_bytes); 652ba2c4d4eSJosef Bacik num_bytes -= delayed_refs_bytes; 653ba2c4d4eSJosef Bacik } 6549c343784SJosef Bacik 6559c343784SJosef Bacik if (rsv->space_info->force_alloc) 6569c343784SJosef Bacik do_chunk_alloc = true; 657ba2c4d4eSJosef Bacik } else if (num_items == 0 && flush == BTRFS_RESERVE_FLUSH_ALL && 658ba2c4d4eSJosef Bacik !delayed_refs_rsv->full) { 659ba2c4d4eSJosef Bacik /* 660ba2c4d4eSJosef Bacik * Some people call with btrfs_start_transaction(root, 0) 661ba2c4d4eSJosef Bacik * because they can be throttled, but have some other mechanism 662ba2c4d4eSJosef Bacik * for reserving space. We still want these guys to refill the 663ba2c4d4eSJosef Bacik * delayed block_rsv so just add 1 items worth of reservation 664ba2c4d4eSJosef Bacik * here. 665ba2c4d4eSJosef Bacik */ 666ba2c4d4eSJosef Bacik ret = btrfs_delayed_refs_rsv_refill(fs_info, flush); 667b5009945SJosef Bacik if (ret) 668843fcf35SMiao Xie goto reserve_fail; 669b5009945SJosef Bacik } 670a22285a6SYan, Zheng again: 671f2f767e7SAlexandru Moise h = kmem_cache_zalloc(btrfs_trans_handle_cachep, GFP_NOFS); 672843fcf35SMiao Xie if (!h) { 673843fcf35SMiao Xie ret = -ENOMEM; 674843fcf35SMiao Xie goto alloc_fail; 675843fcf35SMiao Xie } 676a22285a6SYan, Zheng 67798114659SJosef Bacik /* 67898114659SJosef Bacik * If we are JOIN_NOLOCK we're already committing a transaction and 67998114659SJosef Bacik * waiting on this guy, so we don't need to do the sb_start_intwrite 68098114659SJosef Bacik * because we're already holding a ref. We need this because we could 68198114659SJosef Bacik * have raced in and did an fsync() on a file which can kick a commit 68298114659SJosef Bacik * and then we deadlock with somebody doing a freeze. 683354aa0fbSMiao Xie * 684354aa0fbSMiao Xie * If we are ATTACH, it means we just want to catch the current 685354aa0fbSMiao Xie * transaction and commit it, so we needn't do sb_start_intwrite(). 68698114659SJosef Bacik */ 6870860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 6880b246afaSJeff Mahoney sb_start_intwrite(fs_info->sb); 689b2b5ef5cSJan Kara 6902ff7e61eSJeff Mahoney if (may_wait_transaction(fs_info, type)) 6912ff7e61eSJeff Mahoney wait_current_trans(fs_info); 692a22285a6SYan, Zheng 693a4abeea4SJosef Bacik do { 6942ff7e61eSJeff Mahoney ret = join_transaction(fs_info, type); 695178260b2SMiao Xie if (ret == -EBUSY) { 6962ff7e61eSJeff Mahoney wait_current_trans(fs_info); 697a6d155d2SFilipe Manana if (unlikely(type == TRANS_ATTACH || 698a6d155d2SFilipe Manana type == TRANS_JOIN_NOSTART)) 699178260b2SMiao Xie ret = -ENOENT; 700178260b2SMiao Xie } 701a4abeea4SJosef Bacik } while (ret == -EBUSY); 702a4abeea4SJosef Bacik 703a43f7f82SLiu Bo if (ret < 0) 704843fcf35SMiao Xie goto join_fail; 7050f7d52f4SChris Mason 7060b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 707a22285a6SYan, Zheng 708a22285a6SYan, Zheng h->transid = cur_trans->transid; 709a22285a6SYan, Zheng h->transaction = cur_trans; 710b50fff81SDavid Sterba refcount_set(&h->use_count, 1); 71164b63580SJeff Mahoney h->fs_info = root->fs_info; 7127174109cSQu Wenruo 713a698d075SMiao Xie h->type = type; 714ea658badSJosef Bacik INIT_LIST_HEAD(&h->new_bgs); 715b7ec40d7SChris Mason 716a22285a6SYan, Zheng smp_mb(); 7173296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START && 7182ff7e61eSJeff Mahoney may_wait_transaction(fs_info, type)) { 719abdd2e80SFilipe Manana current->journal_info = h; 7203a45bb20SJeff Mahoney btrfs_commit_transaction(h); 721a22285a6SYan, Zheng goto again; 722a22285a6SYan, Zheng } 7239ed74f2dSJosef Bacik 724b5009945SJosef Bacik if (num_bytes) { 7250b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 7262bcc0328SLiu Bo h->transid, num_bytes, 1); 7270b246afaSJeff Mahoney h->block_rsv = &fs_info->trans_block_rsv; 728b5009945SJosef Bacik h->bytes_reserved = num_bytes; 72920dd2cbfSMiao Xie h->reloc_reserved = reloc_reserved; 730a22285a6SYan, Zheng } 731a22285a6SYan, Zheng 7322a1eb461SJosef Bacik got_it: 733bcf3a3e7SNikolay Borisov if (!current->journal_info) 734a22285a6SYan, Zheng current->journal_info = h; 735fcc99734SQu Wenruo 736fcc99734SQu Wenruo /* 7379c343784SJosef Bacik * If the space_info is marked ALLOC_FORCE then we'll get upgraded to 7389c343784SJosef Bacik * ALLOC_FORCE the first run through, and then we won't allocate for 7399c343784SJosef Bacik * anybody else who races in later. We don't care about the return 7409c343784SJosef Bacik * value here. 7419c343784SJosef Bacik */ 7429c343784SJosef Bacik if (do_chunk_alloc && num_bytes) { 7439c343784SJosef Bacik u64 flags = h->block_rsv->space_info->flags; 7449c343784SJosef Bacik 7459c343784SJosef Bacik btrfs_chunk_alloc(h, btrfs_get_alloc_profile(fs_info, flags), 7469c343784SJosef Bacik CHUNK_ALLOC_NO_FORCE); 7479c343784SJosef Bacik } 7489c343784SJosef Bacik 7499c343784SJosef Bacik /* 750fcc99734SQu Wenruo * btrfs_record_root_in_trans() needs to alloc new extents, and may 751fcc99734SQu Wenruo * call btrfs_join_transaction() while we're also starting a 752fcc99734SQu Wenruo * transaction. 753fcc99734SQu Wenruo * 754fcc99734SQu Wenruo * Thus it need to be called after current->journal_info initialized, 755fcc99734SQu Wenruo * or we can deadlock. 756fcc99734SQu Wenruo */ 75768075ea8SJosef Bacik ret = btrfs_record_root_in_trans(h, root); 75868075ea8SJosef Bacik if (ret) { 75968075ea8SJosef Bacik /* 76068075ea8SJosef Bacik * The transaction handle is fully initialized and linked with 76168075ea8SJosef Bacik * other structures so it needs to be ended in case of errors, 76268075ea8SJosef Bacik * not just freed. 76368075ea8SJosef Bacik */ 76468075ea8SJosef Bacik btrfs_end_transaction(h); 76568075ea8SJosef Bacik return ERR_PTR(ret); 76668075ea8SJosef Bacik } 767fcc99734SQu Wenruo 76879154b1bSChris Mason return h; 769843fcf35SMiao Xie 770843fcf35SMiao Xie join_fail: 7710860adfdSMiao Xie if (type & __TRANS_FREEZABLE) 7720b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 773843fcf35SMiao Xie kmem_cache_free(btrfs_trans_handle_cachep, h); 774843fcf35SMiao Xie alloc_fail: 775843fcf35SMiao Xie if (num_bytes) 7762ff7e61eSJeff Mahoney btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, 77763f018beSNikolay Borisov num_bytes, NULL); 778843fcf35SMiao Xie reserve_fail: 779733e03a0SQu Wenruo btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); 780843fcf35SMiao Xie return ERR_PTR(ret); 78179154b1bSChris Mason } 78279154b1bSChris Mason 783f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 7845aed1dd8SAlexandru Moise unsigned int num_items) 785f9295749SChris Mason { 78608e007d2SMiao Xie return start_transaction(root, num_items, TRANS_START, 787003d7c59SJeff Mahoney BTRFS_RESERVE_FLUSH_ALL, true); 788f9295749SChris Mason } 789003d7c59SJeff Mahoney 7908eab77ffSFilipe Manana struct btrfs_trans_handle *btrfs_start_transaction_fallback_global_rsv( 7918eab77ffSFilipe Manana struct btrfs_root *root, 7927f9fe614SJosef Bacik unsigned int num_items) 7938eab77ffSFilipe Manana { 7947f9fe614SJosef Bacik return start_transaction(root, num_items, TRANS_START, 7957f9fe614SJosef Bacik BTRFS_RESERVE_FLUSH_ALL_STEAL, false); 7968eab77ffSFilipe Manana } 7978407aa46SMiao Xie 7987a7eaa40SJosef Bacik struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root) 799f9295749SChris Mason { 800003d7c59SJeff Mahoney return start_transaction(root, 0, TRANS_JOIN, BTRFS_RESERVE_NO_FLUSH, 801003d7c59SJeff Mahoney true); 802f9295749SChris Mason } 803f9295749SChris Mason 8048d510121SNikolay Borisov struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *root) 8050af3d00bSJosef Bacik { 806575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_JOIN_NOLOCK, 807003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 8080af3d00bSJosef Bacik } 8090af3d00bSJosef Bacik 810d4edf39bSMiao Xie /* 811a6d155d2SFilipe Manana * Similar to regular join but it never starts a transaction when none is 812a6d155d2SFilipe Manana * running or after waiting for the current one to finish. 813a6d155d2SFilipe Manana */ 814a6d155d2SFilipe Manana struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root) 815a6d155d2SFilipe Manana { 816a6d155d2SFilipe Manana return start_transaction(root, 0, TRANS_JOIN_NOSTART, 817a6d155d2SFilipe Manana BTRFS_RESERVE_NO_FLUSH, true); 818a6d155d2SFilipe Manana } 819a6d155d2SFilipe Manana 820a6d155d2SFilipe Manana /* 821d4edf39bSMiao Xie * btrfs_attach_transaction() - catch the running transaction 822d4edf39bSMiao Xie * 823d4edf39bSMiao Xie * It is used when we want to commit the current the transaction, but 824d4edf39bSMiao Xie * don't want to start a new one. 825d4edf39bSMiao Xie * 826d4edf39bSMiao Xie * Note: If this function return -ENOENT, it just means there is no 827d4edf39bSMiao Xie * running transaction. But it is possible that the inactive transaction 828d4edf39bSMiao Xie * is still in the memory, not fully on disk. If you hope there is no 829d4edf39bSMiao Xie * inactive transaction in the fs when -ENOENT is returned, you should 830d4edf39bSMiao Xie * invoke 831d4edf39bSMiao Xie * btrfs_attach_transaction_barrier() 832d4edf39bSMiao Xie */ 833354aa0fbSMiao Xie struct btrfs_trans_handle *btrfs_attach_transaction(struct btrfs_root *root) 83460376ce4SJosef Bacik { 835575a75d6SAlexandru Moise return start_transaction(root, 0, TRANS_ATTACH, 836003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 83760376ce4SJosef Bacik } 83860376ce4SJosef Bacik 839d4edf39bSMiao Xie /* 84090b6d283SWang Sheng-Hui * btrfs_attach_transaction_barrier() - catch the running transaction 841d4edf39bSMiao Xie * 84252042d8eSAndrea Gelmini * It is similar to the above function, the difference is this one 843d4edf39bSMiao Xie * will wait for all the inactive transactions until they fully 844d4edf39bSMiao Xie * complete. 845d4edf39bSMiao Xie */ 846d4edf39bSMiao Xie struct btrfs_trans_handle * 847d4edf39bSMiao Xie btrfs_attach_transaction_barrier(struct btrfs_root *root) 848d4edf39bSMiao Xie { 849d4edf39bSMiao Xie struct btrfs_trans_handle *trans; 850d4edf39bSMiao Xie 851575a75d6SAlexandru Moise trans = start_transaction(root, 0, TRANS_ATTACH, 852003d7c59SJeff Mahoney BTRFS_RESERVE_NO_FLUSH, true); 8538d9e220cSAl Viro if (trans == ERR_PTR(-ENOENT)) 8542ff7e61eSJeff Mahoney btrfs_wait_for_commit(root->fs_info, 0); 855d4edf39bSMiao Xie 856d4edf39bSMiao Xie return trans; 857d4edf39bSMiao Xie } 858d4edf39bSMiao Xie 859d0c2f4faSFilipe Manana /* Wait for a transaction commit to reach at least the given state. */ 860d0c2f4faSFilipe Manana static noinline void wait_for_commit(struct btrfs_transaction *commit, 861d0c2f4faSFilipe Manana const enum btrfs_trans_state min_state) 86289ce8a63SChris Mason { 8635fd76bf3SOmar Sandoval struct btrfs_fs_info *fs_info = commit->fs_info; 8645fd76bf3SOmar Sandoval u64 transid = commit->transid; 8655fd76bf3SOmar Sandoval bool put = false; 8665fd76bf3SOmar Sandoval 8675fd76bf3SOmar Sandoval while (1) { 868d0c2f4faSFilipe Manana wait_event(commit->commit_wait, commit->state >= min_state); 8695fd76bf3SOmar Sandoval if (put) 8705fd76bf3SOmar Sandoval btrfs_put_transaction(commit); 8715fd76bf3SOmar Sandoval 8725fd76bf3SOmar Sandoval if (min_state < TRANS_STATE_COMPLETED) 8735fd76bf3SOmar Sandoval break; 8745fd76bf3SOmar Sandoval 8755fd76bf3SOmar Sandoval /* 8765fd76bf3SOmar Sandoval * A transaction isn't really completed until all of the 8775fd76bf3SOmar Sandoval * previous transactions are completed, but with fsync we can 8785fd76bf3SOmar Sandoval * end up with SUPER_COMMITTED transactions before a COMPLETED 8795fd76bf3SOmar Sandoval * transaction. Wait for those. 8805fd76bf3SOmar Sandoval */ 8815fd76bf3SOmar Sandoval 8825fd76bf3SOmar Sandoval spin_lock(&fs_info->trans_lock); 8835fd76bf3SOmar Sandoval commit = list_first_entry_or_null(&fs_info->trans_list, 8845fd76bf3SOmar Sandoval struct btrfs_transaction, 8855fd76bf3SOmar Sandoval list); 8865fd76bf3SOmar Sandoval if (!commit || commit->transid > transid) { 8875fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 8885fd76bf3SOmar Sandoval break; 8895fd76bf3SOmar Sandoval } 8905fd76bf3SOmar Sandoval refcount_inc(&commit->use_count); 8915fd76bf3SOmar Sandoval put = true; 8925fd76bf3SOmar Sandoval spin_unlock(&fs_info->trans_lock); 8935fd76bf3SOmar Sandoval } 89489ce8a63SChris Mason } 89589ce8a63SChris Mason 8962ff7e61eSJeff Mahoney int btrfs_wait_for_commit(struct btrfs_fs_info *fs_info, u64 transid) 89746204592SSage Weil { 89846204592SSage Weil struct btrfs_transaction *cur_trans = NULL, *t; 8998cd2807fSMiao Xie int ret = 0; 90046204592SSage Weil 90146204592SSage Weil if (transid) { 9020b246afaSJeff Mahoney if (transid <= fs_info->last_trans_committed) 903a4abeea4SJosef Bacik goto out; 90446204592SSage Weil 90546204592SSage Weil /* find specified transaction */ 9060b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 9070b246afaSJeff Mahoney list_for_each_entry(t, &fs_info->trans_list, list) { 90846204592SSage Weil if (t->transid == transid) { 90946204592SSage Weil cur_trans = t; 9109b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 9118cd2807fSMiao Xie ret = 0; 91246204592SSage Weil break; 91346204592SSage Weil } 9148cd2807fSMiao Xie if (t->transid > transid) { 9158cd2807fSMiao Xie ret = 0; 91646204592SSage Weil break; 91746204592SSage Weil } 9188cd2807fSMiao Xie } 9190b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 92042383020SSage Weil 92142383020SSage Weil /* 92242383020SSage Weil * The specified transaction doesn't exist, or we 92342383020SSage Weil * raced with btrfs_commit_transaction 92442383020SSage Weil */ 92542383020SSage Weil if (!cur_trans) { 9260b246afaSJeff Mahoney if (transid > fs_info->last_trans_committed) 92742383020SSage Weil ret = -EINVAL; 9288cd2807fSMiao Xie goto out; 92942383020SSage Weil } 93046204592SSage Weil } else { 93146204592SSage Weil /* find newest transaction that is committing | committed */ 9320b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 9330b246afaSJeff Mahoney list_for_each_entry_reverse(t, &fs_info->trans_list, 93446204592SSage Weil list) { 9354a9d8bdeSMiao Xie if (t->state >= TRANS_STATE_COMMIT_START) { 9364a9d8bdeSMiao Xie if (t->state == TRANS_STATE_COMPLETED) 9373473f3c0SJosef Bacik break; 93846204592SSage Weil cur_trans = t; 9399b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 94046204592SSage Weil break; 94146204592SSage Weil } 94246204592SSage Weil } 9430b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 94446204592SSage Weil if (!cur_trans) 945a4abeea4SJosef Bacik goto out; /* nothing committing|committed */ 94646204592SSage Weil } 94746204592SSage Weil 948d0c2f4faSFilipe Manana wait_for_commit(cur_trans, TRANS_STATE_COMPLETED); 949724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 950a4abeea4SJosef Bacik out: 95146204592SSage Weil return ret; 95246204592SSage Weil } 95346204592SSage Weil 9542ff7e61eSJeff Mahoney void btrfs_throttle(struct btrfs_fs_info *fs_info) 95537d1aeeeSChris Mason { 9562ff7e61eSJeff Mahoney wait_current_trans(fs_info); 95737d1aeeeSChris Mason } 95837d1aeeeSChris Mason 9598a8f4deaSNikolay Borisov static bool should_end_transaction(struct btrfs_trans_handle *trans) 9608929ecfaSYan, Zheng { 9612ff7e61eSJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 9620b246afaSJeff Mahoney 96364403612SJosef Bacik if (btrfs_check_space_for_delayed_refs(fs_info)) 9648a8f4deaSNikolay Borisov return true; 96536ba022aSJosef Bacik 9662ff7e61eSJeff Mahoney return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5); 9678929ecfaSYan, Zheng } 9688929ecfaSYan, Zheng 969a2633b6aSNikolay Borisov bool btrfs_should_end_transaction(struct btrfs_trans_handle *trans) 9708929ecfaSYan, Zheng { 9718929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 9728929ecfaSYan, Zheng 9733296bf56SQu Wenruo if (cur_trans->state >= TRANS_STATE_COMMIT_START || 974e19eb11fSJosef Bacik test_bit(BTRFS_DELAYED_REFS_FLUSHING, &cur_trans->delayed_refs.flags)) 975a2633b6aSNikolay Borisov return true; 9768929ecfaSYan, Zheng 9772ff7e61eSJeff Mahoney return should_end_transaction(trans); 9788929ecfaSYan, Zheng } 9798929ecfaSYan, Zheng 980dc60c525SNikolay Borisov static void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans) 981dc60c525SNikolay Borisov 9820e34693fSNikolay Borisov { 983dc60c525SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 984dc60c525SNikolay Borisov 9850e34693fSNikolay Borisov if (!trans->block_rsv) { 9860e34693fSNikolay Borisov ASSERT(!trans->bytes_reserved); 9870e34693fSNikolay Borisov return; 9880e34693fSNikolay Borisov } 9890e34693fSNikolay Borisov 9900e34693fSNikolay Borisov if (!trans->bytes_reserved) 9910e34693fSNikolay Borisov return; 9920e34693fSNikolay Borisov 9930e34693fSNikolay Borisov ASSERT(trans->block_rsv == &fs_info->trans_block_rsv); 9940e34693fSNikolay Borisov trace_btrfs_space_reservation(fs_info, "transaction", 9950e34693fSNikolay Borisov trans->transid, trans->bytes_reserved, 0); 9960e34693fSNikolay Borisov btrfs_block_rsv_release(fs_info, trans->block_rsv, 99763f018beSNikolay Borisov trans->bytes_reserved, NULL); 9980e34693fSNikolay Borisov trans->bytes_reserved = 0; 9990e34693fSNikolay Borisov } 10000e34693fSNikolay Borisov 100189ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 10023a45bb20SJeff Mahoney int throttle) 100379154b1bSChris Mason { 10043a45bb20SJeff Mahoney struct btrfs_fs_info *info = trans->fs_info; 10058929ecfaSYan, Zheng struct btrfs_transaction *cur_trans = trans->transaction; 10064edc2ca3SDave Jones int err = 0; 1007d6e4a428SChris Mason 1008b50fff81SDavid Sterba if (refcount_read(&trans->use_count) > 1) { 1009b50fff81SDavid Sterba refcount_dec(&trans->use_count); 10102a1eb461SJosef Bacik trans->block_rsv = trans->orig_rsv; 10112a1eb461SJosef Bacik return 0; 10122a1eb461SJosef Bacik } 10132a1eb461SJosef Bacik 1014dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 10154c13d758SJosef Bacik trans->block_rsv = NULL; 1016c5567237SArne Jansen 10176c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 1018ea658badSJosef Bacik 10194fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 10204fbcdf66SFilipe Manana 10210860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 10220b246afaSJeff Mahoney sb_end_intwrite(info->sb); 10236df7881aSJosef Bacik 10248929ecfaSYan, Zheng WARN_ON(cur_trans != info->running_transaction); 102513c5a93eSJosef Bacik WARN_ON(atomic_read(&cur_trans->num_writers) < 1); 102613c5a93eSJosef Bacik atomic_dec(&cur_trans->num_writers); 10270860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 102889ce8a63SChris Mason 1029093258e6SDavid Sterba cond_wake_up(&cur_trans->writer_wait); 1030*e1489b4fSIoannis Angelakopoulos 1031*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(info, btrfs_trans_num_writers); 1032*e1489b4fSIoannis Angelakopoulos 1033724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 10349ed74f2dSJosef Bacik 10359ed74f2dSJosef Bacik if (current->journal_info == trans) 10369ed74f2dSJosef Bacik current->journal_info = NULL; 1037ab78c84dSChris Mason 103824bbcf04SYan, Zheng if (throttle) 10392ff7e61eSJeff Mahoney btrfs_run_delayed_iputs(info); 104024bbcf04SYan, Zheng 104184961539SJosef Bacik if (TRANS_ABORTED(trans) || BTRFS_FS_ERROR(info)) { 10424e121c06SJosef Bacik wake_up_process(info->transaction_kthread); 1043fbabd4a3SJosef Bacik if (TRANS_ABORTED(trans)) 1044fbabd4a3SJosef Bacik err = trans->aborted; 1045fbabd4a3SJosef Bacik else 1046fbabd4a3SJosef Bacik err = -EROFS; 10474e121c06SJosef Bacik } 104849b25e05SJeff Mahoney 10494edc2ca3SDave Jones kmem_cache_free(btrfs_trans_handle_cachep, trans); 10504edc2ca3SDave Jones return err; 105179154b1bSChris Mason } 105279154b1bSChris Mason 10533a45bb20SJeff Mahoney int btrfs_end_transaction(struct btrfs_trans_handle *trans) 105489ce8a63SChris Mason { 10553a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 0); 105689ce8a63SChris Mason } 105789ce8a63SChris Mason 10583a45bb20SJeff Mahoney int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans) 105989ce8a63SChris Mason { 10603a45bb20SJeff Mahoney return __btrfs_end_transaction(trans, 1); 106116cdcec7SMiao Xie } 106216cdcec7SMiao Xie 1063d352ac68SChris Mason /* 1064d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1065d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1066690587d1SChris Mason * those extents are sent to disk but does not wait on them 1067d352ac68SChris Mason */ 10682ff7e61eSJeff Mahoney int btrfs_write_marked_extents(struct btrfs_fs_info *fs_info, 10698cef4e16SYan, Zheng struct extent_io_tree *dirty_pages, int mark) 107079154b1bSChris Mason { 1071777e6bd7SChris Mason int err = 0; 10727c4452b9SChris Mason int werr = 0; 10730b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1074e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1075777e6bd7SChris Mason u64 start = 0; 10765f39d397SChris Mason u64 end; 10777c4452b9SChris Mason 10786300463bSLiu Bo atomic_inc(&BTRFS_I(fs_info->btree_inode)->sync_writers); 10791728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1080e6138876SJosef Bacik mark, &cached_state)) { 1081663dfbb0SFilipe Manana bool wait_writeback = false; 1082663dfbb0SFilipe Manana 1083663dfbb0SFilipe Manana err = convert_extent_bit(dirty_pages, start, end, 1084663dfbb0SFilipe Manana EXTENT_NEED_WAIT, 1085210aa277SDavid Sterba mark, &cached_state); 1086663dfbb0SFilipe Manana /* 1087663dfbb0SFilipe Manana * convert_extent_bit can return -ENOMEM, which is most of the 1088663dfbb0SFilipe Manana * time a temporary error. So when it happens, ignore the error 1089663dfbb0SFilipe Manana * and wait for writeback of this range to finish - because we 1090663dfbb0SFilipe Manana * failed to set the bit EXTENT_NEED_WAIT for the range, a call 1091bf89d38fSJeff Mahoney * to __btrfs_wait_marked_extents() would not know that 1092bf89d38fSJeff Mahoney * writeback for this range started and therefore wouldn't 1093bf89d38fSJeff Mahoney * wait for it to finish - we don't want to commit a 1094bf89d38fSJeff Mahoney * superblock that points to btree nodes/leafs for which 1095bf89d38fSJeff Mahoney * writeback hasn't finished yet (and without errors). 1096663dfbb0SFilipe Manana * We cleanup any entries left in the io tree when committing 109741e7acd3SNikolay Borisov * the transaction (through extent_io_tree_release()). 1098663dfbb0SFilipe Manana */ 1099663dfbb0SFilipe Manana if (err == -ENOMEM) { 1100663dfbb0SFilipe Manana err = 0; 1101663dfbb0SFilipe Manana wait_writeback = true; 1102663dfbb0SFilipe Manana } 1103663dfbb0SFilipe Manana if (!err) 11041728366eSJosef Bacik err = filemap_fdatawrite_range(mapping, start, end); 11057c4452b9SChris Mason if (err) 11067c4452b9SChris Mason werr = err; 1107663dfbb0SFilipe Manana else if (wait_writeback) 1108663dfbb0SFilipe Manana werr = filemap_fdatawait_range(mapping, start, end); 1109e38e2ed7SFilipe Manana free_extent_state(cached_state); 1110663dfbb0SFilipe Manana cached_state = NULL; 11111728366eSJosef Bacik cond_resched(); 11121728366eSJosef Bacik start = end + 1; 11137c4452b9SChris Mason } 11146300463bSLiu Bo atomic_dec(&BTRFS_I(fs_info->btree_inode)->sync_writers); 1115690587d1SChris Mason return werr; 1116690587d1SChris Mason } 1117690587d1SChris Mason 1118690587d1SChris Mason /* 1119690587d1SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 1120690587d1SChris Mason * them in one of two extent_io trees. This is used to make sure all of 1121690587d1SChris Mason * those extents are on disk for transaction or log commit. We wait 1122690587d1SChris Mason * on all the pages and clear them from the dirty pages state tree 1123690587d1SChris Mason */ 1124bf89d38fSJeff Mahoney static int __btrfs_wait_marked_extents(struct btrfs_fs_info *fs_info, 1125bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1126690587d1SChris Mason { 1127690587d1SChris Mason int err = 0; 1128690587d1SChris Mason int werr = 0; 11290b246afaSJeff Mahoney struct address_space *mapping = fs_info->btree_inode->i_mapping; 1130e6138876SJosef Bacik struct extent_state *cached_state = NULL; 1131690587d1SChris Mason u64 start = 0; 1132690587d1SChris Mason u64 end; 1133690587d1SChris Mason 11341728366eSJosef Bacik while (!find_first_extent_bit(dirty_pages, start, &start, &end, 1135e6138876SJosef Bacik EXTENT_NEED_WAIT, &cached_state)) { 1136663dfbb0SFilipe Manana /* 1137663dfbb0SFilipe Manana * Ignore -ENOMEM errors returned by clear_extent_bit(). 1138663dfbb0SFilipe Manana * When committing the transaction, we'll remove any entries 1139663dfbb0SFilipe Manana * left in the io tree. For a log commit, we don't remove them 1140663dfbb0SFilipe Manana * after committing the log because the tree can be accessed 1141663dfbb0SFilipe Manana * concurrently - we do it only at transaction commit time when 114241e7acd3SNikolay Borisov * it's safe to do it (through extent_io_tree_release()). 1143663dfbb0SFilipe Manana */ 1144663dfbb0SFilipe Manana err = clear_extent_bit(dirty_pages, start, end, 1145ae0f1625SDavid Sterba EXTENT_NEED_WAIT, 0, 0, &cached_state); 1146663dfbb0SFilipe Manana if (err == -ENOMEM) 1147663dfbb0SFilipe Manana err = 0; 1148663dfbb0SFilipe Manana if (!err) 11491728366eSJosef Bacik err = filemap_fdatawait_range(mapping, start, end); 1150777e6bd7SChris Mason if (err) 1151777e6bd7SChris Mason werr = err; 1152e38e2ed7SFilipe Manana free_extent_state(cached_state); 1153e38e2ed7SFilipe Manana cached_state = NULL; 1154777e6bd7SChris Mason cond_resched(); 11551728366eSJosef Bacik start = end + 1; 1156777e6bd7SChris Mason } 11577c4452b9SChris Mason if (err) 11587c4452b9SChris Mason werr = err; 1159bf89d38fSJeff Mahoney return werr; 1160bf89d38fSJeff Mahoney } 1161656f30dbSFilipe Manana 1162b9fae2ebSFilipe Manana static int btrfs_wait_extents(struct btrfs_fs_info *fs_info, 1163bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages) 1164bf89d38fSJeff Mahoney { 1165bf89d38fSJeff Mahoney bool errors = false; 1166bf89d38fSJeff Mahoney int err; 1167bf89d38fSJeff Mahoney 1168bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1169bf89d38fSJeff Mahoney if (test_and_clear_bit(BTRFS_FS_BTREE_ERR, &fs_info->flags)) 1170bf89d38fSJeff Mahoney errors = true; 1171bf89d38fSJeff Mahoney 1172bf89d38fSJeff Mahoney if (errors && !err) 1173bf89d38fSJeff Mahoney err = -EIO; 1174bf89d38fSJeff Mahoney return err; 1175bf89d38fSJeff Mahoney } 1176bf89d38fSJeff Mahoney 1177bf89d38fSJeff Mahoney int btrfs_wait_tree_log_extents(struct btrfs_root *log_root, int mark) 1178bf89d38fSJeff Mahoney { 1179bf89d38fSJeff Mahoney struct btrfs_fs_info *fs_info = log_root->fs_info; 1180bf89d38fSJeff Mahoney struct extent_io_tree *dirty_pages = &log_root->dirty_log_pages; 1181bf89d38fSJeff Mahoney bool errors = false; 1182bf89d38fSJeff Mahoney int err; 1183bf89d38fSJeff Mahoney 1184bf89d38fSJeff Mahoney ASSERT(log_root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); 1185bf89d38fSJeff Mahoney 1186bf89d38fSJeff Mahoney err = __btrfs_wait_marked_extents(fs_info, dirty_pages); 1187656f30dbSFilipe Manana if ((mark & EXTENT_DIRTY) && 11880b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags)) 1189656f30dbSFilipe Manana errors = true; 1190656f30dbSFilipe Manana 1191656f30dbSFilipe Manana if ((mark & EXTENT_NEW) && 11920b246afaSJeff Mahoney test_and_clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags)) 1193656f30dbSFilipe Manana errors = true; 1194656f30dbSFilipe Manana 1195bf89d38fSJeff Mahoney if (errors && !err) 1196bf89d38fSJeff Mahoney err = -EIO; 1197bf89d38fSJeff Mahoney return err; 119879154b1bSChris Mason } 119979154b1bSChris Mason 1200690587d1SChris Mason /* 1201c9b577c0SNikolay Borisov * When btree blocks are allocated the corresponding extents are marked dirty. 1202c9b577c0SNikolay Borisov * This function ensures such extents are persisted on disk for transaction or 1203c9b577c0SNikolay Borisov * log commit. 1204c9b577c0SNikolay Borisov * 1205c9b577c0SNikolay Borisov * @trans: transaction whose dirty pages we'd like to write 1206690587d1SChris Mason */ 120770458a58SNikolay Borisov static int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans) 1208d0c803c4SChris Mason { 1209663dfbb0SFilipe Manana int ret; 1210c9b577c0SNikolay Borisov int ret2; 1211c9b577c0SNikolay Borisov struct extent_io_tree *dirty_pages = &trans->transaction->dirty_pages; 121270458a58SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1213c9b577c0SNikolay Borisov struct blk_plug plug; 1214663dfbb0SFilipe Manana 1215c9b577c0SNikolay Borisov blk_start_plug(&plug); 1216c9b577c0SNikolay Borisov ret = btrfs_write_marked_extents(fs_info, dirty_pages, EXTENT_DIRTY); 1217c9b577c0SNikolay Borisov blk_finish_plug(&plug); 1218c9b577c0SNikolay Borisov ret2 = btrfs_wait_extents(fs_info, dirty_pages); 1219c9b577c0SNikolay Borisov 122041e7acd3SNikolay Borisov extent_io_tree_release(&trans->transaction->dirty_pages); 1221663dfbb0SFilipe Manana 1222c9b577c0SNikolay Borisov if (ret) 1223663dfbb0SFilipe Manana return ret; 1224c9b577c0SNikolay Borisov else if (ret2) 1225c9b577c0SNikolay Borisov return ret2; 1226c9b577c0SNikolay Borisov else 1227c9b577c0SNikolay Borisov return 0; 1228d0c803c4SChris Mason } 1229d0c803c4SChris Mason 1230d352ac68SChris Mason /* 1231d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 1232d352ac68SChris Mason * 1233d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 1234d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 1235d352ac68SChris Mason * allocation tree. 1236d352ac68SChris Mason * 1237d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 1238d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 1239d352ac68SChris Mason */ 12400b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 124179154b1bSChris Mason struct btrfs_root *root) 124279154b1bSChris Mason { 124379154b1bSChris Mason int ret; 12440b86a832SChris Mason u64 old_root_bytenr; 124586b9f2ecSYan, Zheng u64 old_root_used; 12460b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12470b246afaSJeff Mahoney struct btrfs_root *tree_root = fs_info->tree_root; 124879154b1bSChris Mason 124986b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 125056bec294SChris Mason 125179154b1bSChris Mason while (1) { 12520b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 125386b9f2ecSYan, Zheng if (old_root_bytenr == root->node->start && 1254ea526d18SJosef Bacik old_root_used == btrfs_root_used(&root->root_item)) 125579154b1bSChris Mason break; 125687ef2bb4SChris Mason 12575d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 125879154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 12590b86a832SChris Mason &root->root_key, 12600b86a832SChris Mason &root->root_item); 126149b25e05SJeff Mahoney if (ret) 126249b25e05SJeff Mahoney return ret; 126356bec294SChris Mason 126486b9f2ecSYan, Zheng old_root_used = btrfs_root_used(&root->root_item); 1265e7070be1SJosef Bacik } 1266276e680dSYan Zheng 12670b86a832SChris Mason return 0; 12680b86a832SChris Mason } 12690b86a832SChris Mason 1270d352ac68SChris Mason /* 1271d352ac68SChris Mason * update all the cowonly tree roots on disk 127249b25e05SJeff Mahoney * 127349b25e05SJeff Mahoney * The error handling in this function may not be obvious. Any of the 127449b25e05SJeff Mahoney * failures will cause the file system to go offline. We still need 127549b25e05SJeff Mahoney * to clean up the delayed refs. 1276d352ac68SChris Mason */ 12779386d8bcSNikolay Borisov static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans) 12780b86a832SChris Mason { 12799386d8bcSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1280ea526d18SJosef Bacik struct list_head *dirty_bgs = &trans->transaction->dirty_bgs; 12811bbc621eSChris Mason struct list_head *io_bgs = &trans->transaction->io_bgs; 12820b86a832SChris Mason struct list_head *next; 128384234f3aSYan Zheng struct extent_buffer *eb; 128456bec294SChris Mason int ret; 128584234f3aSYan Zheng 1286dfba78dcSFilipe Manana /* 1287dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1288dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1289dfba78dcSFilipe Manana */ 1290dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1291dfba78dcSFilipe Manana 129284234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 129349b25e05SJeff Mahoney ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 12949631e4ccSJosef Bacik 0, &eb, BTRFS_NESTING_COW); 129584234f3aSYan Zheng btrfs_tree_unlock(eb); 129684234f3aSYan Zheng free_extent_buffer(eb); 12970b86a832SChris Mason 129849b25e05SJeff Mahoney if (ret) 129949b25e05SJeff Mahoney return ret; 130049b25e05SJeff Mahoney 1301196c9d8dSDavid Sterba ret = btrfs_run_dev_stats(trans); 1302c16ce190SJosef Bacik if (ret) 1303c16ce190SJosef Bacik return ret; 13042b584c68SDavid Sterba ret = btrfs_run_dev_replace(trans); 1305c16ce190SJosef Bacik if (ret) 1306c16ce190SJosef Bacik return ret; 1307280f8bd2SLu Fengqi ret = btrfs_run_qgroups(trans); 1308c16ce190SJosef Bacik if (ret) 1309c16ce190SJosef Bacik return ret; 1310546adb0dSJan Schmidt 1311bbebb3e0SDavid Sterba ret = btrfs_setup_space_cache(trans); 1312dcdf7f6dSJosef Bacik if (ret) 1313dcdf7f6dSJosef Bacik return ret; 1314dcdf7f6dSJosef Bacik 1315ea526d18SJosef Bacik again: 13160b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 13172ff7e61eSJeff Mahoney struct btrfs_root *root; 13180b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 13190b86a832SChris Mason list_del_init(next); 13200b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 1321e7070be1SJosef Bacik clear_bit(BTRFS_ROOT_DIRTY, &root->state); 132287ef2bb4SChris Mason 13239e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 13249e351cc8SJosef Bacik &trans->transaction->switch_commits); 132549b25e05SJeff Mahoney ret = update_cowonly_root(trans, root); 132649b25e05SJeff Mahoney if (ret) 132749b25e05SJeff Mahoney return ret; 1328488bc2a2SJosef Bacik } 1329488bc2a2SJosef Bacik 1330488bc2a2SJosef Bacik /* Now flush any delayed refs generated by updating all of the roots */ 1331c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1332ea526d18SJosef Bacik if (ret) 1333ea526d18SJosef Bacik return ret; 1334276e680dSYan Zheng 13351bbc621eSChris Mason while (!list_empty(dirty_bgs) || !list_empty(io_bgs)) { 13365742d15fSDavid Sterba ret = btrfs_write_dirty_block_groups(trans); 1337ea526d18SJosef Bacik if (ret) 1338ea526d18SJosef Bacik return ret; 1339488bc2a2SJosef Bacik 1340488bc2a2SJosef Bacik /* 1341488bc2a2SJosef Bacik * We're writing the dirty block groups, which could generate 1342488bc2a2SJosef Bacik * delayed refs, which could generate more dirty block groups, 1343488bc2a2SJosef Bacik * so we want to keep this flushing in this loop to make sure 1344488bc2a2SJosef Bacik * everything gets run. 1345488bc2a2SJosef Bacik */ 1346c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 1347ea526d18SJosef Bacik if (ret) 1348ea526d18SJosef Bacik return ret; 1349ea526d18SJosef Bacik } 1350ea526d18SJosef Bacik 1351ea526d18SJosef Bacik if (!list_empty(&fs_info->dirty_cowonly_roots)) 1352ea526d18SJosef Bacik goto again; 1353ea526d18SJosef Bacik 13549f6cbcbbSDavid Sterba /* Update dev-replace pointer once everything is committed */ 13559f6cbcbbSDavid Sterba fs_info->dev_replace.committed_cursor_left = 13569f6cbcbbSDavid Sterba fs_info->dev_replace.cursor_left_last_write_of_item; 13578dabb742SStefan Behrens 135879154b1bSChris Mason return 0; 135979154b1bSChris Mason } 136079154b1bSChris Mason 1361d352ac68SChris Mason /* 1362b4be6aefSJosef Bacik * If we had a pending drop we need to see if there are any others left in our 1363b4be6aefSJosef Bacik * dead roots list, and if not clear our bit and wake any waiters. 1364b4be6aefSJosef Bacik */ 1365b4be6aefSJosef Bacik void btrfs_maybe_wake_unfinished_drop(struct btrfs_fs_info *fs_info) 1366b4be6aefSJosef Bacik { 1367b4be6aefSJosef Bacik /* 1368b4be6aefSJosef Bacik * We put the drop in progress roots at the front of the list, so if the 1369b4be6aefSJosef Bacik * first entry doesn't have UNFINISHED_DROP set we can wake everybody 1370b4be6aefSJosef Bacik * up. 1371b4be6aefSJosef Bacik */ 1372b4be6aefSJosef Bacik spin_lock(&fs_info->trans_lock); 1373b4be6aefSJosef Bacik if (!list_empty(&fs_info->dead_roots)) { 1374b4be6aefSJosef Bacik struct btrfs_root *root = list_first_entry(&fs_info->dead_roots, 1375b4be6aefSJosef Bacik struct btrfs_root, 1376b4be6aefSJosef Bacik root_list); 1377b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) { 1378b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1379b4be6aefSJosef Bacik return; 1380b4be6aefSJosef Bacik } 1381b4be6aefSJosef Bacik } 1382b4be6aefSJosef Bacik spin_unlock(&fs_info->trans_lock); 1383b4be6aefSJosef Bacik 1384b4be6aefSJosef Bacik btrfs_wake_unfinished_drop(fs_info); 1385b4be6aefSJosef Bacik } 1386b4be6aefSJosef Bacik 1387b4be6aefSJosef Bacik /* 1388d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 1389d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 1390d352ac68SChris Mason * be deleted 1391d352ac68SChris Mason */ 1392cfad392bSJosef Bacik void btrfs_add_dead_root(struct btrfs_root *root) 13935eda7b5eSChris Mason { 13940b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 13950b246afaSJeff Mahoney 13960b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 1397dc9492c1SJosef Bacik if (list_empty(&root->root_list)) { 1398dc9492c1SJosef Bacik btrfs_grab_root(root); 1399b4be6aefSJosef Bacik 1400b4be6aefSJosef Bacik /* We want to process the partially complete drops first. */ 1401b4be6aefSJosef Bacik if (test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state)) 1402b4be6aefSJosef Bacik list_add(&root->root_list, &fs_info->dead_roots); 1403b4be6aefSJosef Bacik else 14040b246afaSJeff Mahoney list_add_tail(&root->root_list, &fs_info->dead_roots); 1405dc9492c1SJosef Bacik } 14060b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 14075eda7b5eSChris Mason } 14085eda7b5eSChris Mason 1409d352ac68SChris Mason /* 1410dfba78dcSFilipe Manana * Update each subvolume root and its relocation root, if it exists, in the tree 1411dfba78dcSFilipe Manana * of tree roots. Also free log roots if they exist. 1412d352ac68SChris Mason */ 14137e4443d9SNikolay Borisov static noinline int commit_fs_roots(struct btrfs_trans_handle *trans) 14140f7d52f4SChris Mason { 14157e4443d9SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 1416fc7cbcd4SDavid Sterba struct btrfs_root *gang[8]; 1417fc7cbcd4SDavid Sterba int i; 1418fc7cbcd4SDavid Sterba int ret; 141954aa1f4dSChris Mason 1420dfba78dcSFilipe Manana /* 1421dfba78dcSFilipe Manana * At this point no one can be using this transaction to modify any tree 1422dfba78dcSFilipe Manana * and no one can start another transaction to modify any tree either. 1423dfba78dcSFilipe Manana */ 1424dfba78dcSFilipe Manana ASSERT(trans->transaction->state == TRANS_STATE_COMMIT_DOING); 1425dfba78dcSFilipe Manana 1426fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1427fc7cbcd4SDavid Sterba while (1) { 1428fc7cbcd4SDavid Sterba ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 1429fc7cbcd4SDavid Sterba (void **)gang, 0, 1430fc7cbcd4SDavid Sterba ARRAY_SIZE(gang), 1431fc7cbcd4SDavid Sterba BTRFS_ROOT_TRANS_TAG); 1432fc7cbcd4SDavid Sterba if (ret == 0) 1433fc7cbcd4SDavid Sterba break; 1434fc7cbcd4SDavid Sterba for (i = 0; i < ret; i++) { 1435fc7cbcd4SDavid Sterba struct btrfs_root *root = gang[i]; 1436fc7cbcd4SDavid Sterba int ret2; 14374f4317c1SJosef Bacik 1438dfba78dcSFilipe Manana /* 1439dfba78dcSFilipe Manana * At this point we can neither have tasks logging inodes 1440dfba78dcSFilipe Manana * from a root nor trying to commit a log tree. 1441dfba78dcSFilipe Manana */ 1442dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_writers) == 0); 1443dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[0]) == 0); 1444dfba78dcSFilipe Manana ASSERT(atomic_read(&root->log_commit[1]) == 0); 1445dfba78dcSFilipe Manana 1446fc7cbcd4SDavid Sterba radix_tree_tag_clear(&fs_info->fs_roots_radix, 14472619ba1fSChris Mason (unsigned long)root->root_key.objectid, 14480f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 1449fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 145031153d81SYan Zheng 1451e02119d5SChris Mason btrfs_free_log(trans, root); 1452fc7cbcd4SDavid Sterba ret2 = btrfs_update_reloc_root(trans, root); 1453fc7cbcd4SDavid Sterba if (ret2) 1454fc7cbcd4SDavid Sterba return ret2; 1455e02119d5SChris Mason 1456fc7cbcd4SDavid Sterba /* see comments in should_cow_block() */ 145727cdeb70SMiao Xie clear_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1458c7548af6SChris Mason smp_mb__after_atomic(); 1459f1ebcc74SLiu Bo 1460978d910dSYan Zheng if (root->commit_root != root->node) { 14619e351cc8SJosef Bacik list_add_tail(&root->dirty_list, 14629e351cc8SJosef Bacik &trans->transaction->switch_commits); 1463fc7cbcd4SDavid Sterba btrfs_set_root_node(&root->root_item, 1464fc7cbcd4SDavid Sterba root->node); 1465978d910dSYan Zheng } 146631153d81SYan Zheng 1467fc7cbcd4SDavid Sterba ret2 = btrfs_update_root(trans, fs_info->tree_root, 1468fc7cbcd4SDavid Sterba &root->root_key, 1469fc7cbcd4SDavid Sterba &root->root_item); 1470fc7cbcd4SDavid Sterba if (ret2) 1471fc7cbcd4SDavid Sterba return ret2; 1472fc7cbcd4SDavid Sterba spin_lock(&fs_info->fs_roots_radix_lock); 1473733e03a0SQu Wenruo btrfs_qgroup_free_meta_all_pertrans(root); 14740f7d52f4SChris Mason } 1475fc7cbcd4SDavid Sterba } 1476fc7cbcd4SDavid Sterba spin_unlock(&fs_info->fs_roots_radix_lock); 14774f4317c1SJosef Bacik return 0; 14780f7d52f4SChris Mason } 14790f7d52f4SChris Mason 1480d352ac68SChris Mason /* 1481de78b51aSEric Sandeen * defrag a given btree. 1482de78b51aSEric Sandeen * Every leaf in the btree is read and defragged. 1483d352ac68SChris Mason */ 1484de78b51aSEric Sandeen int btrfs_defrag_root(struct btrfs_root *root) 1485e9d0b13bSChris Mason { 1486e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 1487e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 14888929ecfaSYan, Zheng int ret; 1489e9d0b13bSChris Mason 149027cdeb70SMiao Xie if (test_and_set_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state)) 1491e9d0b13bSChris Mason return 0; 14928929ecfaSYan, Zheng 14936b80053dSChris Mason while (1) { 14948929ecfaSYan, Zheng trans = btrfs_start_transaction(root, 0); 14956819703fSDavid Sterba if (IS_ERR(trans)) { 14966819703fSDavid Sterba ret = PTR_ERR(trans); 14976819703fSDavid Sterba break; 14986819703fSDavid Sterba } 14998929ecfaSYan, Zheng 1500de78b51aSEric Sandeen ret = btrfs_defrag_leaves(trans, root); 15018929ecfaSYan, Zheng 15023a45bb20SJeff Mahoney btrfs_end_transaction(trans); 15032ff7e61eSJeff Mahoney btrfs_btree_balance_dirty(info); 1504e9d0b13bSChris Mason cond_resched(); 1505e9d0b13bSChris Mason 1506ab8d0fc4SJeff Mahoney if (btrfs_fs_closing(info) || ret != -EAGAIN) 1507e9d0b13bSChris Mason break; 1508210549ebSDavid Sterba 1509ab8d0fc4SJeff Mahoney if (btrfs_defrag_cancelled(info)) { 1510ab8d0fc4SJeff Mahoney btrfs_debug(info, "defrag_root cancelled"); 1511210549ebSDavid Sterba ret = -EAGAIN; 1512210549ebSDavid Sterba break; 1513210549ebSDavid Sterba } 1514e9d0b13bSChris Mason } 151527cdeb70SMiao Xie clear_bit(BTRFS_ROOT_DEFRAG_RUNNING, &root->state); 15168929ecfaSYan, Zheng return ret; 1517e9d0b13bSChris Mason } 1518e9d0b13bSChris Mason 1519d352ac68SChris Mason /* 15206426c7adSQu Wenruo * Do all special snapshot related qgroup dirty hack. 15216426c7adSQu Wenruo * 15226426c7adSQu Wenruo * Will do all needed qgroup inherit and dirty hack like switch commit 15236426c7adSQu Wenruo * roots inside one transaction and write all btree into disk, to make 15246426c7adSQu Wenruo * qgroup works. 15256426c7adSQu Wenruo */ 15266426c7adSQu Wenruo static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, 15276426c7adSQu Wenruo struct btrfs_root *src, 15286426c7adSQu Wenruo struct btrfs_root *parent, 15296426c7adSQu Wenruo struct btrfs_qgroup_inherit *inherit, 15306426c7adSQu Wenruo u64 dst_objectid) 15316426c7adSQu Wenruo { 15326426c7adSQu Wenruo struct btrfs_fs_info *fs_info = src->fs_info; 15336426c7adSQu Wenruo int ret; 15346426c7adSQu Wenruo 15356426c7adSQu Wenruo /* 15366426c7adSQu Wenruo * Save some performance in the case that qgroups are not 15376426c7adSQu Wenruo * enabled. If this check races with the ioctl, rescan will 15386426c7adSQu Wenruo * kick in anyway. 15396426c7adSQu Wenruo */ 15409ea6e2b5SDavid Sterba if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) 15416426c7adSQu Wenruo return 0; 15426426c7adSQu Wenruo 15436426c7adSQu Wenruo /* 154452042d8eSAndrea Gelmini * Ensure dirty @src will be committed. Or, after coming 15454d31778aSQu Wenruo * commit_fs_roots() and switch_commit_roots(), any dirty but not 15464d31778aSQu Wenruo * recorded root will never be updated again, causing an outdated root 15474d31778aSQu Wenruo * item. 15484d31778aSQu Wenruo */ 15491c442d22SJosef Bacik ret = record_root_in_trans(trans, src, 1); 15501c442d22SJosef Bacik if (ret) 15511c442d22SJosef Bacik return ret; 15524d31778aSQu Wenruo 15534d31778aSQu Wenruo /* 15542a4d84c1SJosef Bacik * btrfs_qgroup_inherit relies on a consistent view of the usage for the 15552a4d84c1SJosef Bacik * src root, so we must run the delayed refs here. 15562a4d84c1SJosef Bacik * 15572a4d84c1SJosef Bacik * However this isn't particularly fool proof, because there's no 15582a4d84c1SJosef Bacik * synchronization keeping us from changing the tree after this point 15592a4d84c1SJosef Bacik * before we do the qgroup_inherit, or even from making changes while 15602a4d84c1SJosef Bacik * we're doing the qgroup_inherit. But that's a problem for the future, 15612a4d84c1SJosef Bacik * for now flush the delayed refs to narrow the race window where the 15622a4d84c1SJosef Bacik * qgroup counters could end up wrong. 15632a4d84c1SJosef Bacik */ 15642a4d84c1SJosef Bacik ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 15652a4d84c1SJosef Bacik if (ret) { 15662a4d84c1SJosef Bacik btrfs_abort_transaction(trans, ret); 156744365827SNaohiro Aota return ret; 15682a4d84c1SJosef Bacik } 15692a4d84c1SJosef Bacik 15707e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 15716426c7adSQu Wenruo if (ret) 15726426c7adSQu Wenruo goto out; 1573460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 15746426c7adSQu Wenruo if (ret < 0) 15756426c7adSQu Wenruo goto out; 15766426c7adSQu Wenruo 15776426c7adSQu Wenruo /* Now qgroup are all updated, we can inherit it to new qgroups */ 1578a9377422SLu Fengqi ret = btrfs_qgroup_inherit(trans, src->root_key.objectid, dst_objectid, 15796426c7adSQu Wenruo inherit); 15806426c7adSQu Wenruo if (ret < 0) 15816426c7adSQu Wenruo goto out; 15826426c7adSQu Wenruo 15836426c7adSQu Wenruo /* 15846426c7adSQu Wenruo * Now we do a simplified commit transaction, which will: 15856426c7adSQu Wenruo * 1) commit all subvolume and extent tree 15866426c7adSQu Wenruo * To ensure all subvolume and extent tree have a valid 15876426c7adSQu Wenruo * commit_root to accounting later insert_dir_item() 15886426c7adSQu Wenruo * 2) write all btree blocks onto disk 15896426c7adSQu Wenruo * This is to make sure later btree modification will be cowed 15906426c7adSQu Wenruo * Or commit_root can be populated and cause wrong qgroup numbers 15916426c7adSQu Wenruo * In this simplified commit, we don't really care about other trees 15926426c7adSQu Wenruo * like chunk and root tree, as they won't affect qgroup. 15936426c7adSQu Wenruo * And we don't write super to avoid half committed status. 15946426c7adSQu Wenruo */ 15959386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 15966426c7adSQu Wenruo if (ret) 15976426c7adSQu Wenruo goto out; 1598889bfa39SJosef Bacik switch_commit_roots(trans); 159970458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 16006426c7adSQu Wenruo if (ret) 1601f7af3934SDavid Sterba btrfs_handle_fs_error(fs_info, ret, 16026426c7adSQu Wenruo "Error while writing out transaction for qgroup"); 16036426c7adSQu Wenruo 16046426c7adSQu Wenruo out: 16056426c7adSQu Wenruo /* 16066426c7adSQu Wenruo * Force parent root to be updated, as we recorded it before so its 16076426c7adSQu Wenruo * last_trans == cur_transid. 16086426c7adSQu Wenruo * Or it won't be committed again onto disk after later 16096426c7adSQu Wenruo * insert_dir_item() 16106426c7adSQu Wenruo */ 16116426c7adSQu Wenruo if (!ret) 16121c442d22SJosef Bacik ret = record_root_in_trans(trans, parent, 1); 16136426c7adSQu Wenruo return ret; 16146426c7adSQu Wenruo } 16156426c7adSQu Wenruo 16166426c7adSQu Wenruo /* 1617d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 1618aec8030aSMiao Xie * transaction commit. This does the actual creation. 1619aec8030aSMiao Xie * 1620aec8030aSMiao Xie * Note: 1621aec8030aSMiao Xie * If the error which may affect the commitment of the current transaction 1622aec8030aSMiao Xie * happens, we should return the error number. If the error which just affect 1623aec8030aSMiao Xie * the creation of the pending snapshots, just return 0. 1624d352ac68SChris Mason */ 162580b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 16263063d29fSChris Mason struct btrfs_pending_snapshot *pending) 16273063d29fSChris Mason { 162808d50ca3SNikolay Borisov 162908d50ca3SNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 16303063d29fSChris Mason struct btrfs_key key; 163180b6794dSChris Mason struct btrfs_root_item *new_root_item; 16323063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 16333063d29fSChris Mason struct btrfs_root *root = pending->root; 16346bdb72deSSage Weil struct btrfs_root *parent_root; 163598c9942aSLiu Bo struct btrfs_block_rsv *rsv; 16366bdb72deSSage Weil struct inode *parent_inode; 163742874b3dSMiao Xie struct btrfs_path *path; 163842874b3dSMiao Xie struct btrfs_dir_item *dir_item; 1639a22285a6SYan, Zheng struct dentry *dentry; 16403063d29fSChris Mason struct extent_buffer *tmp; 1641925baeddSChris Mason struct extent_buffer *old; 164295582b00SDeepa Dinamani struct timespec64 cur_time; 1643aec8030aSMiao Xie int ret = 0; 1644d68fc57bSYan, Zheng u64 to_reserve = 0; 16456bdb72deSSage Weil u64 index = 0; 1646a22285a6SYan, Zheng u64 objectid; 1647b83cc969SLi Zefan u64 root_flags; 16483063d29fSChris Mason 16498546b570SDavid Sterba ASSERT(pending->path); 16508546b570SDavid Sterba path = pending->path; 165142874b3dSMiao Xie 1652b0c0ea63SDavid Sterba ASSERT(pending->root_item); 1653b0c0ea63SDavid Sterba new_root_item = pending->root_item; 1654a22285a6SYan, Zheng 1655543068a2SNikolay Borisov pending->error = btrfs_get_free_objectid(tree_root, &objectid); 1656aec8030aSMiao Xie if (pending->error) 16576fa9700eSMiao Xie goto no_free_objectid; 16583063d29fSChris Mason 1659d6726335SQu Wenruo /* 1660d6726335SQu Wenruo * Make qgroup to skip current new snapshot's qgroupid, as it is 1661d6726335SQu Wenruo * accounted by later btrfs_qgroup_inherit(). 1662d6726335SQu Wenruo */ 1663d6726335SQu Wenruo btrfs_set_skip_qgroup(trans, objectid); 1664d6726335SQu Wenruo 1665147d256eSZhaolei btrfs_reloc_pre_snapshot(pending, &to_reserve); 1666d68fc57bSYan, Zheng 1667d68fc57bSYan, Zheng if (to_reserve > 0) { 16689270501cSJosef Bacik pending->error = btrfs_block_rsv_add(fs_info, 1669aec8030aSMiao Xie &pending->block_rsv, 167008e007d2SMiao Xie to_reserve, 167108e007d2SMiao Xie BTRFS_RESERVE_NO_FLUSH); 1672aec8030aSMiao Xie if (pending->error) 1673d6726335SQu Wenruo goto clear_skip_qgroup; 1674d68fc57bSYan, Zheng } 1675d68fc57bSYan, Zheng 16763063d29fSChris Mason key.objectid = objectid; 1677a22285a6SYan, Zheng key.offset = (u64)-1; 1678a22285a6SYan, Zheng key.type = BTRFS_ROOT_ITEM_KEY; 16793063d29fSChris Mason 16806fa9700eSMiao Xie rsv = trans->block_rsv; 1681a22285a6SYan, Zheng trans->block_rsv = &pending->block_rsv; 16822382c5ccSLiu Bo trans->bytes_reserved = trans->block_rsv->reserved; 16830b246afaSJeff Mahoney trace_btrfs_space_reservation(fs_info, "transaction", 168488d3a5aaSJosef Bacik trans->transid, 168588d3a5aaSJosef Bacik trans->bytes_reserved, 1); 1686a22285a6SYan, Zheng dentry = pending->dentry; 1687e9662f70SMiao Xie parent_inode = pending->dir; 1688a22285a6SYan, Zheng parent_root = BTRFS_I(parent_inode)->root; 1689f0118cb6SJosef Bacik ret = record_root_in_trans(trans, parent_root, 0); 1690f0118cb6SJosef Bacik if (ret) 1691f0118cb6SJosef Bacik goto fail; 1692c2050a45SDeepa Dinamani cur_time = current_time(parent_inode); 169304b285f3SDeepa Dinamani 16946bdb72deSSage Weil /* 16956bdb72deSSage Weil * insert the directory item 16966bdb72deSSage Weil */ 1697877574e2SNikolay Borisov ret = btrfs_set_inode_index(BTRFS_I(parent_inode), &index); 169849b25e05SJeff Mahoney BUG_ON(ret); /* -ENOMEM */ 169942874b3dSMiao Xie 170042874b3dSMiao Xie /* check if there is a file/dir which has the same name. */ 170142874b3dSMiao Xie dir_item = btrfs_lookup_dir_item(NULL, parent_root, path, 17024a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), 170342874b3dSMiao Xie dentry->d_name.name, 170442874b3dSMiao Xie dentry->d_name.len, 0); 170542874b3dSMiao Xie if (dir_item != NULL && !IS_ERR(dir_item)) { 1706fe66a05aSChris Mason pending->error = -EEXIST; 1707aec8030aSMiao Xie goto dir_item_existed; 170842874b3dSMiao Xie } else if (IS_ERR(dir_item)) { 170942874b3dSMiao Xie ret = PTR_ERR(dir_item); 171066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17118732d44fSMiao Xie goto fail; 171279787eaaSJeff Mahoney } 171342874b3dSMiao Xie btrfs_release_path(path); 17146bdb72deSSage Weil 1715e999376fSChris Mason /* 1716e999376fSChris Mason * pull in the delayed directory update 1717e999376fSChris Mason * and the delayed inode item 1718e999376fSChris Mason * otherwise we corrupt the FS during 1719e999376fSChris Mason * snapshot 1720e999376fSChris Mason */ 1721e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 17228732d44fSMiao Xie if (ret) { /* Transaction aborted */ 172366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17248732d44fSMiao Xie goto fail; 17258732d44fSMiao Xie } 1726e999376fSChris Mason 1727f0118cb6SJosef Bacik ret = record_root_in_trans(trans, root, 0); 1728f0118cb6SJosef Bacik if (ret) { 1729f0118cb6SJosef Bacik btrfs_abort_transaction(trans, ret); 1730f0118cb6SJosef Bacik goto fail; 1731f0118cb6SJosef Bacik } 17326bdb72deSSage Weil btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 17336bdb72deSSage Weil memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 173408fe4db1SLi Zefan btrfs_check_and_init_root_item(new_root_item); 17356bdb72deSSage Weil 1736b83cc969SLi Zefan root_flags = btrfs_root_flags(new_root_item); 1737b83cc969SLi Zefan if (pending->readonly) 1738b83cc969SLi Zefan root_flags |= BTRFS_ROOT_SUBVOL_RDONLY; 1739b83cc969SLi Zefan else 1740b83cc969SLi Zefan root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY; 1741b83cc969SLi Zefan btrfs_set_root_flags(new_root_item, root_flags); 1742b83cc969SLi Zefan 17438ea05e3aSAlexander Block btrfs_set_root_generation_v2(new_root_item, 17448ea05e3aSAlexander Block trans->transid); 1745807fc790SAndy Shevchenko generate_random_guid(new_root_item->uuid); 17468ea05e3aSAlexander Block memcpy(new_root_item->parent_uuid, root->root_item.uuid, 17478ea05e3aSAlexander Block BTRFS_UUID_SIZE); 174870023da2SStefan Behrens if (!(root_flags & BTRFS_ROOT_SUBVOL_RDONLY)) { 174970023da2SStefan Behrens memset(new_root_item->received_uuid, 0, 175070023da2SStefan Behrens sizeof(new_root_item->received_uuid)); 17518ea05e3aSAlexander Block memset(&new_root_item->stime, 0, sizeof(new_root_item->stime)); 17528ea05e3aSAlexander Block memset(&new_root_item->rtime, 0, sizeof(new_root_item->rtime)); 17538ea05e3aSAlexander Block btrfs_set_root_stransid(new_root_item, 0); 17548ea05e3aSAlexander Block btrfs_set_root_rtransid(new_root_item, 0); 175570023da2SStefan Behrens } 17563cae210fSQu Wenruo btrfs_set_stack_timespec_sec(&new_root_item->otime, cur_time.tv_sec); 17573cae210fSQu Wenruo btrfs_set_stack_timespec_nsec(&new_root_item->otime, cur_time.tv_nsec); 175870023da2SStefan Behrens btrfs_set_root_otransid(new_root_item, trans->transid); 17598ea05e3aSAlexander Block 1760925baeddSChris Mason old = btrfs_lock_root_node(root); 17619631e4ccSJosef Bacik ret = btrfs_cow_block(trans, root, old, NULL, 0, &old, 17629631e4ccSJosef Bacik BTRFS_NESTING_COW); 176379787eaaSJeff Mahoney if (ret) { 176479787eaaSJeff Mahoney btrfs_tree_unlock(old); 176579787eaaSJeff Mahoney free_extent_buffer(old); 176666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17678732d44fSMiao Xie goto fail; 176879787eaaSJeff Mahoney } 176949b25e05SJeff Mahoney 177049b25e05SJeff Mahoney ret = btrfs_copy_root(trans, root, old, &tmp, objectid); 177179787eaaSJeff Mahoney /* clean up in any case */ 1772925baeddSChris Mason btrfs_tree_unlock(old); 1773925baeddSChris Mason free_extent_buffer(old); 17748732d44fSMiao Xie if (ret) { 177566642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17768732d44fSMiao Xie goto fail; 17778732d44fSMiao Xie } 1778f1ebcc74SLiu Bo /* see comments in should_cow_block() */ 177927cdeb70SMiao Xie set_bit(BTRFS_ROOT_FORCE_COW, &root->state); 1780f1ebcc74SLiu Bo smp_wmb(); 1781f1ebcc74SLiu Bo 17825d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 1783a22285a6SYan, Zheng /* record when the snapshot was created in key.offset */ 1784a22285a6SYan, Zheng key.offset = trans->transid; 1785a22285a6SYan, Zheng ret = btrfs_insert_root(trans, tree_root, &key, new_root_item); 1786925baeddSChris Mason btrfs_tree_unlock(tmp); 17873063d29fSChris Mason free_extent_buffer(tmp); 17888732d44fSMiao Xie if (ret) { 178966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 17908732d44fSMiao Xie goto fail; 17918732d44fSMiao Xie } 17920660b5afSChris Mason 1793a22285a6SYan, Zheng /* 1794a22285a6SYan, Zheng * insert root back/forward references 1795a22285a6SYan, Zheng */ 17966025c19fSLu Fengqi ret = btrfs_add_root_ref(trans, objectid, 1797a22285a6SYan, Zheng parent_root->root_key.objectid, 17984a0cc7caSNikolay Borisov btrfs_ino(BTRFS_I(parent_inode)), index, 1799a22285a6SYan, Zheng dentry->d_name.name, dentry->d_name.len); 18008732d44fSMiao Xie if (ret) { 180166642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18028732d44fSMiao Xie goto fail; 18038732d44fSMiao Xie } 1804a22285a6SYan, Zheng 1805a22285a6SYan, Zheng key.offset = (u64)-1; 18062dfb1e43SQu Wenruo pending->snap = btrfs_get_new_fs_root(fs_info, objectid, pending->anon_dev); 180779787eaaSJeff Mahoney if (IS_ERR(pending->snap)) { 180879787eaaSJeff Mahoney ret = PTR_ERR(pending->snap); 18092d892ccdSFilipe Manana pending->snap = NULL; 181066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18118732d44fSMiao Xie goto fail; 181279787eaaSJeff Mahoney } 1813d68fc57bSYan, Zheng 181449b25e05SJeff Mahoney ret = btrfs_reloc_post_snapshot(trans, pending); 18158732d44fSMiao Xie if (ret) { 181666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18178732d44fSMiao Xie goto fail; 18188732d44fSMiao Xie } 1819361048f5SMiao Xie 18206426c7adSQu Wenruo /* 18216426c7adSQu Wenruo * Do special qgroup accounting for snapshot, as we do some qgroup 18226426c7adSQu Wenruo * snapshot hack to do fast snapshot. 18236426c7adSQu Wenruo * To co-operate with that hack, we do hack again. 18246426c7adSQu Wenruo * Or snapshot will be greatly slowed down by a subtree qgroup rescan 18256426c7adSQu Wenruo */ 18266426c7adSQu Wenruo ret = qgroup_account_snapshot(trans, root, parent_root, 18276426c7adSQu Wenruo pending->inherit, objectid); 18286426c7adSQu Wenruo if (ret < 0) 18296426c7adSQu Wenruo goto fail; 18306426c7adSQu Wenruo 1831684572dfSLu Fengqi ret = btrfs_insert_dir_item(trans, dentry->d_name.name, 1832684572dfSLu Fengqi dentry->d_name.len, BTRFS_I(parent_inode), 1833684572dfSLu Fengqi &key, BTRFS_FT_DIR, index); 183442874b3dSMiao Xie /* We have check then name at the beginning, so it is impossible. */ 18359c52057cSChris Mason BUG_ON(ret == -EEXIST || ret == -EOVERFLOW); 18368732d44fSMiao Xie if (ret) { 183766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 18388732d44fSMiao Xie goto fail; 18398732d44fSMiao Xie } 184042874b3dSMiao Xie 18416ef06d27SNikolay Borisov btrfs_i_size_write(BTRFS_I(parent_inode), parent_inode->i_size + 184242874b3dSMiao Xie dentry->d_name.len * 2); 1843c1867eb3SDavid Sterba parent_inode->i_mtime = current_time(parent_inode); 1844c1867eb3SDavid Sterba parent_inode->i_ctime = parent_inode->i_mtime; 1845729f7961SNikolay Borisov ret = btrfs_update_inode_fallback(trans, parent_root, BTRFS_I(parent_inode)); 1846dd5f9615SStefan Behrens if (ret) { 184766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1848dd5f9615SStefan Behrens goto fail; 1849dd5f9615SStefan Behrens } 1850807fc790SAndy Shevchenko ret = btrfs_uuid_tree_add(trans, new_root_item->uuid, 1851807fc790SAndy Shevchenko BTRFS_UUID_KEY_SUBVOL, 1852cdb345a8SLu Fengqi objectid); 1853dd5f9615SStefan Behrens if (ret) { 185466642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1855dd5f9615SStefan Behrens goto fail; 1856dd5f9615SStefan Behrens } 1857dd5f9615SStefan Behrens if (!btrfs_is_empty_uuid(new_root_item->received_uuid)) { 1858cdb345a8SLu Fengqi ret = btrfs_uuid_tree_add(trans, new_root_item->received_uuid, 1859dd5f9615SStefan Behrens BTRFS_UUID_KEY_RECEIVED_SUBVOL, 1860dd5f9615SStefan Behrens objectid); 1861dd5f9615SStefan Behrens if (ret && ret != -EEXIST) { 186266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 1863dd5f9615SStefan Behrens goto fail; 1864dd5f9615SStefan Behrens } 1865dd5f9615SStefan Behrens } 1866d6726335SQu Wenruo 18673063d29fSChris Mason fail: 1868aec8030aSMiao Xie pending->error = ret; 1869aec8030aSMiao Xie dir_item_existed: 187098c9942aSLiu Bo trans->block_rsv = rsv; 18712382c5ccSLiu Bo trans->bytes_reserved = 0; 1872d6726335SQu Wenruo clear_skip_qgroup: 1873d6726335SQu Wenruo btrfs_clear_skip_qgroup(trans); 18746fa9700eSMiao Xie no_free_objectid: 18756fa9700eSMiao Xie kfree(new_root_item); 1876b0c0ea63SDavid Sterba pending->root_item = NULL; 187742874b3dSMiao Xie btrfs_free_path(path); 18788546b570SDavid Sterba pending->path = NULL; 18798546b570SDavid Sterba 188049b25e05SJeff Mahoney return ret; 18813063d29fSChris Mason } 18823063d29fSChris Mason 1883d352ac68SChris Mason /* 1884d352ac68SChris Mason * create all the snapshots we've scheduled for creation 1885d352ac68SChris Mason */ 188608d50ca3SNikolay Borisov static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans) 18873063d29fSChris Mason { 1888aec8030aSMiao Xie struct btrfs_pending_snapshot *pending, *next; 18893063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 1890aec8030aSMiao Xie int ret = 0; 18913de4586cSChris Mason 1892aec8030aSMiao Xie list_for_each_entry_safe(pending, next, head, list) { 1893aec8030aSMiao Xie list_del(&pending->list); 189408d50ca3SNikolay Borisov ret = create_pending_snapshot(trans, pending); 1895aec8030aSMiao Xie if (ret) 1896aec8030aSMiao Xie break; 1897aec8030aSMiao Xie } 1898aec8030aSMiao Xie return ret; 18993de4586cSChris Mason } 19003de4586cSChris Mason 19012ff7e61eSJeff Mahoney static void update_super_roots(struct btrfs_fs_info *fs_info) 19025d4f98a2SYan Zheng { 19035d4f98a2SYan Zheng struct btrfs_root_item *root_item; 19045d4f98a2SYan Zheng struct btrfs_super_block *super; 19055d4f98a2SYan Zheng 19060b246afaSJeff Mahoney super = fs_info->super_copy; 19075d4f98a2SYan Zheng 19080b246afaSJeff Mahoney root_item = &fs_info->chunk_root->root_item; 1909093e037cSDavid Sterba super->chunk_root = root_item->bytenr; 1910093e037cSDavid Sterba super->chunk_root_generation = root_item->generation; 1911093e037cSDavid Sterba super->chunk_root_level = root_item->level; 19125d4f98a2SYan Zheng 19130b246afaSJeff Mahoney root_item = &fs_info->tree_root->root_item; 1914093e037cSDavid Sterba super->root = root_item->bytenr; 1915093e037cSDavid Sterba super->generation = root_item->generation; 1916093e037cSDavid Sterba super->root_level = root_item->level; 19170b246afaSJeff Mahoney if (btrfs_test_opt(fs_info, SPACE_CACHE)) 1918093e037cSDavid Sterba super->cache_generation = root_item->generation; 191994846229SBoris Burkov else if (test_bit(BTRFS_FS_CLEANUP_SPACE_CACHE_V1, &fs_info->flags)) 192094846229SBoris Burkov super->cache_generation = 0; 19210b246afaSJeff Mahoney if (test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)) 1922093e037cSDavid Sterba super->uuid_tree_generation = root_item->generation; 1923f7238e50SJosef Bacik 1924f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 1925f7238e50SJosef Bacik root_item = &fs_info->block_group_root->root_item; 1926f7238e50SJosef Bacik 1927f7238e50SJosef Bacik super->block_group_root = root_item->bytenr; 1928f7238e50SJosef Bacik super->block_group_root_generation = root_item->generation; 1929f7238e50SJosef Bacik super->block_group_root_level = root_item->level; 1930f7238e50SJosef Bacik } 19315d4f98a2SYan Zheng } 19325d4f98a2SYan Zheng 1933f36f3042SChris Mason int btrfs_transaction_in_commit(struct btrfs_fs_info *info) 1934f36f3042SChris Mason { 19354a9d8bdeSMiao Xie struct btrfs_transaction *trans; 1936f36f3042SChris Mason int ret = 0; 19374a9d8bdeSMiao Xie 1938a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19394a9d8bdeSMiao Xie trans = info->running_transaction; 19404a9d8bdeSMiao Xie if (trans) 19414a9d8bdeSMiao Xie ret = (trans->state >= TRANS_STATE_COMMIT_START); 1942a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 1943f36f3042SChris Mason return ret; 1944f36f3042SChris Mason } 1945f36f3042SChris Mason 19468929ecfaSYan, Zheng int btrfs_transaction_blocked(struct btrfs_fs_info *info) 19478929ecfaSYan, Zheng { 19484a9d8bdeSMiao Xie struct btrfs_transaction *trans; 19498929ecfaSYan, Zheng int ret = 0; 19504a9d8bdeSMiao Xie 1951a4abeea4SJosef Bacik spin_lock(&info->trans_lock); 19524a9d8bdeSMiao Xie trans = info->running_transaction; 19534a9d8bdeSMiao Xie if (trans) 19544a9d8bdeSMiao Xie ret = is_transaction_blocked(trans); 1955a4abeea4SJosef Bacik spin_unlock(&info->trans_lock); 19568929ecfaSYan, Zheng return ret; 19578929ecfaSYan, Zheng } 19588929ecfaSYan, Zheng 1959fdfbf020SJosef Bacik void btrfs_commit_transaction_async(struct btrfs_trans_handle *trans) 1960bb9c12c9SSage Weil { 19613a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 1962bb9c12c9SSage Weil struct btrfs_transaction *cur_trans; 1963bb9c12c9SSage Weil 1964fdfbf020SJosef Bacik /* Kick the transaction kthread. */ 1965fdfbf020SJosef Bacik set_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 1966fdfbf020SJosef Bacik wake_up_process(fs_info->transaction_kthread); 1967bb9c12c9SSage Weil 1968bb9c12c9SSage Weil /* take transaction reference */ 1969bb9c12c9SSage Weil cur_trans = trans->transaction; 19709b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 1971bb9c12c9SSage Weil 19723a45bb20SJeff Mahoney btrfs_end_transaction(trans); 19736fc4e354SSage Weil 19746fc4e354SSage Weil /* 1975ae5d29d4SDavid Sterba * Wait for the current transaction commit to start and block 1976ae5d29d4SDavid Sterba * subsequent transaction joins 1977ae5d29d4SDavid Sterba */ 1978ae5d29d4SDavid Sterba wait_event(fs_info->transaction_blocked_wait, 1979ae5d29d4SDavid Sterba cur_trans->state >= TRANS_STATE_COMMIT_START || 1980ae5d29d4SDavid Sterba TRANS_ABORTED(cur_trans)); 1981724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 1982bb9c12c9SSage Weil } 1983bb9c12c9SSage Weil 198497cb39bbSNikolay Borisov static void cleanup_transaction(struct btrfs_trans_handle *trans, int err) 198549b25e05SJeff Mahoney { 198697cb39bbSNikolay Borisov struct btrfs_fs_info *fs_info = trans->fs_info; 198749b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 198849b25e05SJeff Mahoney 1989b50fff81SDavid Sterba WARN_ON(refcount_read(&trans->use_count) > 1); 199049b25e05SJeff Mahoney 199166642832SJeff Mahoney btrfs_abort_transaction(trans, err); 19927b8b92afSJosef Bacik 19930b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 199466b6135bSLiu Bo 199525d8c284SMiao Xie /* 199625d8c284SMiao Xie * If the transaction is removed from the list, it means this 199725d8c284SMiao Xie * transaction has been committed successfully, so it is impossible 199825d8c284SMiao Xie * to call the cleanup function. 199925d8c284SMiao Xie */ 200025d8c284SMiao Xie BUG_ON(list_empty(&cur_trans->list)); 200166b6135bSLiu Bo 20020b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) { 20034a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 20040b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2005*e1489b4fSIoannis Angelakopoulos 2006*e1489b4fSIoannis Angelakopoulos /* 2007*e1489b4fSIoannis Angelakopoulos * The thread has already released the lockdep map as reader 2008*e1489b4fSIoannis Angelakopoulos * already in btrfs_commit_transaction(). 2009*e1489b4fSIoannis Angelakopoulos */ 2010*e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 2011f094ac32SLiu Bo wait_event(cur_trans->writer_wait, 2012f094ac32SLiu Bo atomic_read(&cur_trans->num_writers) == 1); 2013f094ac32SLiu Bo 20140b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 2015d7096fc3SJosef Bacik } 2016061dde82SFilipe Manana 2017061dde82SFilipe Manana /* 2018061dde82SFilipe Manana * Now that we know no one else is still using the transaction we can 2019061dde82SFilipe Manana * remove the transaction from the list of transactions. This avoids 2020061dde82SFilipe Manana * the transaction kthread from cleaning up the transaction while some 2021061dde82SFilipe Manana * other task is still using it, which could result in a use-after-free 2022061dde82SFilipe Manana * on things like log trees, as it forces the transaction kthread to 2023061dde82SFilipe Manana * wait for this transaction to be cleaned up by us. 2024061dde82SFilipe Manana */ 2025061dde82SFilipe Manana list_del_init(&cur_trans->list); 2026061dde82SFilipe Manana 20270b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 202849b25e05SJeff Mahoney 20292ff7e61eSJeff Mahoney btrfs_cleanup_one_transaction(trans->transaction, fs_info); 203049b25e05SJeff Mahoney 20310b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 20320b246afaSJeff Mahoney if (cur_trans == fs_info->running_transaction) 20330b246afaSJeff Mahoney fs_info->running_transaction = NULL; 20340b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 20354a9d8bdeSMiao Xie 2036e0228285SJosef Bacik if (trans->type & __TRANS_FREEZABLE) 20370b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2038724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2039724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 204049b25e05SJeff Mahoney 20412e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 204249b25e05SJeff Mahoney 204349b25e05SJeff Mahoney if (current->journal_info == trans) 204449b25e05SJeff Mahoney current->journal_info = NULL; 20450b246afaSJeff Mahoney btrfs_scrub_cancel(fs_info); 204649b25e05SJeff Mahoney 204749b25e05SJeff Mahoney kmem_cache_free(btrfs_trans_handle_cachep, trans); 204849b25e05SJeff Mahoney } 204949b25e05SJeff Mahoney 2050c7cc64a9SDavid Sterba /* 2051c7cc64a9SDavid Sterba * Release reserved delayed ref space of all pending block groups of the 2052c7cc64a9SDavid Sterba * transaction and remove them from the list 2053c7cc64a9SDavid Sterba */ 2054c7cc64a9SDavid Sterba static void btrfs_cleanup_pending_block_groups(struct btrfs_trans_handle *trans) 2055c7cc64a9SDavid Sterba { 2056c7cc64a9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 205732da5386SDavid Sterba struct btrfs_block_group *block_group, *tmp; 2058c7cc64a9SDavid Sterba 2059c7cc64a9SDavid Sterba list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) { 2060c7cc64a9SDavid Sterba btrfs_delayed_refs_rsv_release(fs_info, 1); 2061c7cc64a9SDavid Sterba list_del_init(&block_group->bg_list); 2062c7cc64a9SDavid Sterba } 2063c7cc64a9SDavid Sterba } 2064c7cc64a9SDavid Sterba 206588090ad3SFilipe Manana static inline int btrfs_start_delalloc_flush(struct btrfs_fs_info *fs_info) 206682436617SMiao Xie { 2067ce8ea7ccSJosef Bacik /* 2068a0f0cf83SFilipe Manana * We use try_to_writeback_inodes_sb() here because if we used 2069ce8ea7ccSJosef Bacik * btrfs_start_delalloc_roots we would deadlock with fs freeze. 2070ce8ea7ccSJosef Bacik * Currently are holding the fs freeze lock, if we do an async flush 2071ce8ea7ccSJosef Bacik * we'll do btrfs_join_transaction() and deadlock because we need to 2072ce8ea7ccSJosef Bacik * wait for the fs freeze lock. Using the direct flushing we benefit 2073ce8ea7ccSJosef Bacik * from already being in a transaction and our join_transaction doesn't 2074ce8ea7ccSJosef Bacik * have to re-take the fs freeze lock. 2075a0f0cf83SFilipe Manana * 2076a0f0cf83SFilipe Manana * Note that try_to_writeback_inodes_sb() will only trigger writeback 2077a0f0cf83SFilipe Manana * if it can read lock sb->s_umount. It will always be able to lock it, 2078a0f0cf83SFilipe Manana * except when the filesystem is being unmounted or being frozen, but in 2079a0f0cf83SFilipe Manana * those cases sync_filesystem() is called, which results in calling 2080a0f0cf83SFilipe Manana * writeback_inodes_sb() while holding a write lock on sb->s_umount. 2081a0f0cf83SFilipe Manana * Note that we don't call writeback_inodes_sb() directly, because it 2082a0f0cf83SFilipe Manana * will emit a warning if sb->s_umount is not locked. 2083ce8ea7ccSJosef Bacik */ 208488090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 2085a0f0cf83SFilipe Manana try_to_writeback_inodes_sb(fs_info->sb, WB_REASON_SYNC); 208682436617SMiao Xie return 0; 208782436617SMiao Xie } 208882436617SMiao Xie 208988090ad3SFilipe Manana static inline void btrfs_wait_delalloc_flush(struct btrfs_fs_info *fs_info) 209082436617SMiao Xie { 209188090ad3SFilipe Manana if (btrfs_test_opt(fs_info, FLUSHONCOMMIT)) 20926374e57aSChris Mason btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); 209382436617SMiao Xie } 209482436617SMiao Xie 209528b21c55SFilipe Manana /* 209628b21c55SFilipe Manana * Add a pending snapshot associated with the given transaction handle to the 209728b21c55SFilipe Manana * respective handle. This must be called after the transaction commit started 209828b21c55SFilipe Manana * and while holding fs_info->trans_lock. 209928b21c55SFilipe Manana * This serves to guarantee a caller of btrfs_commit_transaction() that it can 210028b21c55SFilipe Manana * safely free the pending snapshot pointer in case btrfs_commit_transaction() 210128b21c55SFilipe Manana * returns an error. 210228b21c55SFilipe Manana */ 210328b21c55SFilipe Manana static void add_pending_snapshot(struct btrfs_trans_handle *trans) 210428b21c55SFilipe Manana { 210528b21c55SFilipe Manana struct btrfs_transaction *cur_trans = trans->transaction; 210628b21c55SFilipe Manana 210728b21c55SFilipe Manana if (!trans->pending_snapshot) 210828b21c55SFilipe Manana return; 210928b21c55SFilipe Manana 211028b21c55SFilipe Manana lockdep_assert_held(&trans->fs_info->trans_lock); 211128b21c55SFilipe Manana ASSERT(cur_trans->state >= TRANS_STATE_COMMIT_START); 211228b21c55SFilipe Manana 211328b21c55SFilipe Manana list_add(&trans->pending_snapshot->list, &cur_trans->pending_snapshots); 211428b21c55SFilipe Manana } 211528b21c55SFilipe Manana 2116e55958c8SIoannis Angelakopoulos static void update_commit_stats(struct btrfs_fs_info *fs_info, ktime_t interval) 2117e55958c8SIoannis Angelakopoulos { 2118e55958c8SIoannis Angelakopoulos fs_info->commit_stats.commit_count++; 2119e55958c8SIoannis Angelakopoulos fs_info->commit_stats.last_commit_dur = interval; 2120e55958c8SIoannis Angelakopoulos fs_info->commit_stats.max_commit_dur = 2121e55958c8SIoannis Angelakopoulos max_t(u64, fs_info->commit_stats.max_commit_dur, interval); 2122e55958c8SIoannis Angelakopoulos fs_info->commit_stats.total_commit_dur += interval; 2123e55958c8SIoannis Angelakopoulos } 2124e55958c8SIoannis Angelakopoulos 21253a45bb20SJeff Mahoney int btrfs_commit_transaction(struct btrfs_trans_handle *trans) 212679154b1bSChris Mason { 21273a45bb20SJeff Mahoney struct btrfs_fs_info *fs_info = trans->fs_info; 212849b25e05SJeff Mahoney struct btrfs_transaction *cur_trans = trans->transaction; 21298fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 213025287e0aSMiao Xie int ret; 2131e55958c8SIoannis Angelakopoulos ktime_t start_time; 2132e55958c8SIoannis Angelakopoulos ktime_t interval; 213379154b1bSChris Mason 213435b814f3SNikolay Borisov ASSERT(refcount_read(&trans->use_count) == 1); 213535b814f3SNikolay Borisov 21368d25a086SMiao Xie /* Stop the commit early if ->aborted is set */ 2137bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 213825287e0aSMiao Xie ret = cur_trans->aborted; 21393a45bb20SJeff Mahoney btrfs_end_transaction(trans); 2140e4a2bcacSJosef Bacik return ret; 214125287e0aSMiao Xie } 214249b25e05SJeff Mahoney 2143f45c752bSJosef Bacik btrfs_trans_release_metadata(trans); 2144f45c752bSJosef Bacik trans->block_rsv = NULL; 2145f45c752bSJosef Bacik 2146e19eb11fSJosef Bacik /* 2147e19eb11fSJosef Bacik * We only want one transaction commit doing the flushing so we do not 2148e19eb11fSJosef Bacik * waste a bunch of time on lock contention on the extent root node. 2149e19eb11fSJosef Bacik */ 2150e19eb11fSJosef Bacik if (!test_and_set_bit(BTRFS_DELAYED_REFS_FLUSHING, 2151e19eb11fSJosef Bacik &cur_trans->delayed_refs.flags)) { 2152e19eb11fSJosef Bacik /* 2153e19eb11fSJosef Bacik * Make a pass through all the delayed refs we have so far. 2154e19eb11fSJosef Bacik * Any running threads may add more while we are here. 215556bec294SChris Mason */ 2156c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, 0); 2157e4a2bcacSJosef Bacik if (ret) { 21583a45bb20SJeff Mahoney btrfs_end_transaction(trans); 2159e4a2bcacSJosef Bacik return ret; 2160e4a2bcacSJosef Bacik } 2161e19eb11fSJosef Bacik } 216256bec294SChris Mason 21636c686b35SNikolay Borisov btrfs_create_pending_block_groups(trans); 2164ea658badSJosef Bacik 21653204d33cSJosef Bacik if (!test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &cur_trans->flags)) { 21661bbc621eSChris Mason int run_it = 0; 21671bbc621eSChris Mason 21681bbc621eSChris Mason /* this mutex is also taken before trying to set 21691bbc621eSChris Mason * block groups readonly. We need to make sure 21701bbc621eSChris Mason * that nobody has set a block group readonly 21711bbc621eSChris Mason * after a extents from that block group have been 21721bbc621eSChris Mason * allocated for cache files. btrfs_set_block_group_ro 21731bbc621eSChris Mason * will wait for the transaction to commit if it 21743204d33cSJosef Bacik * finds BTRFS_TRANS_DIRTY_BG_RUN set. 21751bbc621eSChris Mason * 21763204d33cSJosef Bacik * The BTRFS_TRANS_DIRTY_BG_RUN flag is also used to make sure 21773204d33cSJosef Bacik * only one process starts all the block group IO. It wouldn't 21781bbc621eSChris Mason * hurt to have more than one go through, but there's no 21791bbc621eSChris Mason * real advantage to it either. 21801bbc621eSChris Mason */ 21810b246afaSJeff Mahoney mutex_lock(&fs_info->ro_block_group_mutex); 21823204d33cSJosef Bacik if (!test_and_set_bit(BTRFS_TRANS_DIRTY_BG_RUN, 21833204d33cSJosef Bacik &cur_trans->flags)) 21841bbc621eSChris Mason run_it = 1; 21850b246afaSJeff Mahoney mutex_unlock(&fs_info->ro_block_group_mutex); 21861bbc621eSChris Mason 2187f9cacae3SNikolay Borisov if (run_it) { 218821217054SNikolay Borisov ret = btrfs_start_dirty_block_groups(trans); 21891bbc621eSChris Mason if (ret) { 21903a45bb20SJeff Mahoney btrfs_end_transaction(trans); 21911bbc621eSChris Mason return ret; 21921bbc621eSChris Mason } 2193f9cacae3SNikolay Borisov } 2194f9cacae3SNikolay Borisov } 21951bbc621eSChris Mason 21960b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 21974a9d8bdeSMiao Xie if (cur_trans->state >= TRANS_STATE_COMMIT_START) { 2198d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2199d0c2f4faSFilipe Manana 220028b21c55SFilipe Manana add_pending_snapshot(trans); 220128b21c55SFilipe Manana 22020b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 22039b64f57dSElena Reshetova refcount_inc(&cur_trans->use_count); 2204ccd467d6SChris Mason 2205d0c2f4faSFilipe Manana if (trans->in_fsync) 2206d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 2207d0c2f4faSFilipe Manana ret = btrfs_end_transaction(trans); 2208d0c2f4faSFilipe Manana wait_for_commit(cur_trans, want_state); 220915ee9bc7SJosef Bacik 2210bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) 2211b4924a0fSLiu Bo ret = cur_trans->aborted; 2212b4924a0fSLiu Bo 2213724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 221415ee9bc7SJosef Bacik 221549b25e05SJeff Mahoney return ret; 221679154b1bSChris Mason } 22174313b399SChris Mason 22184a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_START; 22190b246afaSJeff Mahoney wake_up(&fs_info->transaction_blocked_wait); 2220bb9c12c9SSage Weil 22210b246afaSJeff Mahoney if (cur_trans->list.prev != &fs_info->trans_list) { 2222d0c2f4faSFilipe Manana enum btrfs_trans_state want_state = TRANS_STATE_COMPLETED; 2223d0c2f4faSFilipe Manana 2224d0c2f4faSFilipe Manana if (trans->in_fsync) 2225d0c2f4faSFilipe Manana want_state = TRANS_STATE_SUPER_COMMITTED; 2226d0c2f4faSFilipe Manana 2227ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 2228ccd467d6SChris Mason struct btrfs_transaction, list); 2229d0c2f4faSFilipe Manana if (prev_trans->state < want_state) { 22309b64f57dSElena Reshetova refcount_inc(&prev_trans->use_count); 22310b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2232ccd467d6SChris Mason 2233d0c2f4faSFilipe Manana wait_for_commit(prev_trans, want_state); 2234d0c2f4faSFilipe Manana 2235bf31f87fSDavid Sterba ret = READ_ONCE(prev_trans->aborted); 2236ccd467d6SChris Mason 2237724e2315SJosef Bacik btrfs_put_transaction(prev_trans); 22381f9b8c8fSFilipe Manana if (ret) 2239*e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2240a4abeea4SJosef Bacik } else { 22410b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2242ccd467d6SChris Mason } 2243a4abeea4SJosef Bacik } else { 22440b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2245cb2d3dadSFilipe Manana /* 2246cb2d3dadSFilipe Manana * The previous transaction was aborted and was already removed 2247cb2d3dadSFilipe Manana * from the list of transactions at fs_info->trans_list. So we 2248cb2d3dadSFilipe Manana * abort to prevent writing a new superblock that reflects a 2249cb2d3dadSFilipe Manana * corrupt state (pointing to trees with unwritten nodes/leafs). 2250cb2d3dadSFilipe Manana */ 225184961539SJosef Bacik if (BTRFS_FS_ERROR(fs_info)) { 2252cb2d3dadSFilipe Manana ret = -EROFS; 2253*e1489b4fSIoannis Angelakopoulos goto lockdep_release; 2254cb2d3dadSFilipe Manana } 2255ccd467d6SChris Mason } 225615ee9bc7SJosef Bacik 2257e55958c8SIoannis Angelakopoulos /* 2258e55958c8SIoannis Angelakopoulos * Get the time spent on the work done by the commit thread and not 2259e55958c8SIoannis Angelakopoulos * the time spent waiting on a previous commit 2260e55958c8SIoannis Angelakopoulos */ 2261e55958c8SIoannis Angelakopoulos start_time = ktime_get_ns(); 2262e55958c8SIoannis Angelakopoulos 22630860adfdSMiao Xie extwriter_counter_dec(cur_trans, trans->type); 22640860adfdSMiao Xie 226588090ad3SFilipe Manana ret = btrfs_start_delalloc_flush(fs_info); 226682436617SMiao Xie if (ret) 2267*e1489b4fSIoannis Angelakopoulos goto lockdep_release; 226882436617SMiao Xie 2269e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 227049b25e05SJeff Mahoney if (ret) 2271*e1489b4fSIoannis Angelakopoulos goto lockdep_release; 227216cdcec7SMiao Xie 2273581227d0SMiao Xie wait_event(cur_trans->writer_wait, 2274581227d0SMiao Xie extwriter_counter_read(cur_trans) == 0); 2275ed3b3d31SChris Mason 2276581227d0SMiao Xie /* some pending stuffs might be added after the previous flush. */ 2277e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 2278*e1489b4fSIoannis Angelakopoulos if (ret) { 2279*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2280ca469637SMiao Xie goto cleanup_transaction; 2281*e1489b4fSIoannis Angelakopoulos } 2282ca469637SMiao Xie 228388090ad3SFilipe Manana btrfs_wait_delalloc_flush(fs_info); 2284cb7ab021SWang Shilong 228548778179SFilipe Manana /* 228648778179SFilipe Manana * Wait for all ordered extents started by a fast fsync that joined this 228748778179SFilipe Manana * transaction. Otherwise if this transaction commits before the ordered 228848778179SFilipe Manana * extents complete we lose logged data after a power failure. 228948778179SFilipe Manana */ 229048778179SFilipe Manana wait_event(cur_trans->pending_wait, 229148778179SFilipe Manana atomic_read(&cur_trans->pending_ordered) == 0); 229248778179SFilipe Manana 22932ff7e61eSJeff Mahoney btrfs_scrub_pause(fs_info); 2294ed0ca140SJosef Bacik /* 2295ed0ca140SJosef Bacik * Ok now we need to make sure to block out any other joins while we 2296ed0ca140SJosef Bacik * commit the transaction. We could have started a join before setting 22974a9d8bdeSMiao Xie * COMMIT_DOING so make sure to wait for num_writers to == 1 again. 2298ed0ca140SJosef Bacik */ 22990b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 230028b21c55SFilipe Manana add_pending_snapshot(trans); 23014a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMMIT_DOING; 23020b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2303*e1489b4fSIoannis Angelakopoulos 2304*e1489b4fSIoannis Angelakopoulos /* 2305*e1489b4fSIoannis Angelakopoulos * The thread has started/joined the transaction thus it holds the 2306*e1489b4fSIoannis Angelakopoulos * lockdep map as a reader. It has to release it before acquiring the 2307*e1489b4fSIoannis Angelakopoulos * lockdep map as a writer. 2308*e1489b4fSIoannis Angelakopoulos */ 2309*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2310*e1489b4fSIoannis Angelakopoulos btrfs_might_wait_for_event(fs_info, btrfs_trans_num_writers); 2311ed0ca140SJosef Bacik wait_event(cur_trans->writer_wait, 2312ed0ca140SJosef Bacik atomic_read(&cur_trans->num_writers) == 1); 231315ee9bc7SJosef Bacik 2314fdfbf020SJosef Bacik /* 2315fdfbf020SJosef Bacik * We've started the commit, clear the flag in case we were triggered to 2316fdfbf020SJosef Bacik * do an async commit but somebody else started before the transaction 2317fdfbf020SJosef Bacik * kthread could do the work. 2318fdfbf020SJosef Bacik */ 2319fdfbf020SJosef Bacik clear_bit(BTRFS_FS_COMMIT_TRANS, &fs_info->flags); 2320fdfbf020SJosef Bacik 2321bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 23222cba30f1SMiao Xie ret = cur_trans->aborted; 23236cf7f77eSWang Shilong goto scrub_continue; 23242cba30f1SMiao Xie } 23257585717fSChris Mason /* 23267585717fSChris Mason * the reloc mutex makes sure that we stop 23277585717fSChris Mason * the balancing code from coming in and moving 23287585717fSChris Mason * extents around in the middle of the commit 23297585717fSChris Mason */ 23300b246afaSJeff Mahoney mutex_lock(&fs_info->reloc_mutex); 23317585717fSChris Mason 233242874b3dSMiao Xie /* 233342874b3dSMiao Xie * We needn't worry about the delayed items because we will 233442874b3dSMiao Xie * deal with them in create_pending_snapshot(), which is the 233542874b3dSMiao Xie * core function of the snapshot creation. 233642874b3dSMiao Xie */ 233708d50ca3SNikolay Borisov ret = create_pending_snapshots(trans); 233856e9f6eaSDavid Sterba if (ret) 233956e9f6eaSDavid Sterba goto unlock_reloc; 23403063d29fSChris Mason 234142874b3dSMiao Xie /* 234242874b3dSMiao Xie * We insert the dir indexes of the snapshots and update the inode 234342874b3dSMiao Xie * of the snapshots' parents after the snapshot creation, so there 234442874b3dSMiao Xie * are some delayed items which are not dealt with. Now deal with 234542874b3dSMiao Xie * them. 234642874b3dSMiao Xie * 234742874b3dSMiao Xie * We needn't worry that this operation will corrupt the snapshots, 234842874b3dSMiao Xie * because all the tree which are snapshoted will be forced to COW 234942874b3dSMiao Xie * the nodes and leaves. 235042874b3dSMiao Xie */ 2351e5c304e6SNikolay Borisov ret = btrfs_run_delayed_items(trans); 235256e9f6eaSDavid Sterba if (ret) 235356e9f6eaSDavid Sterba goto unlock_reloc; 235416cdcec7SMiao Xie 2355c79a70b1SNikolay Borisov ret = btrfs_run_delayed_refs(trans, (unsigned long)-1); 235656e9f6eaSDavid Sterba if (ret) 235756e9f6eaSDavid Sterba goto unlock_reloc; 235856bec294SChris Mason 2359e999376fSChris Mason /* 2360e999376fSChris Mason * make sure none of the code above managed to slip in a 2361e999376fSChris Mason * delayed item 2362e999376fSChris Mason */ 2363ccdf9b30SJeff Mahoney btrfs_assert_delayed_root_empty(fs_info); 2364e999376fSChris Mason 23652c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 2366dc17ff8fSChris Mason 23677e4443d9SNikolay Borisov ret = commit_fs_roots(trans); 236856e9f6eaSDavid Sterba if (ret) 2369dfba78dcSFilipe Manana goto unlock_reloc; 237054aa1f4dSChris Mason 23713818aea2SQu Wenruo /* 23727e1876acSDavid Sterba * Since the transaction is done, we can apply the pending changes 23737e1876acSDavid Sterba * before the next transaction. 23743818aea2SQu Wenruo */ 23750b246afaSJeff Mahoney btrfs_apply_pending_changes(fs_info); 23763818aea2SQu Wenruo 23775d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 2378e02119d5SChris Mason * safe to free the root of tree log roots 2379e02119d5SChris Mason */ 23800b246afaSJeff Mahoney btrfs_free_log_root_tree(trans, fs_info); 2381e02119d5SChris Mason 23820ed4792aSQu Wenruo /* 23830ed4792aSQu Wenruo * Since fs roots are all committed, we can get a quite accurate 23840ed4792aSQu Wenruo * new_roots. So let's do quota accounting. 23850ed4792aSQu Wenruo */ 2386460fb20aSNikolay Borisov ret = btrfs_qgroup_account_extents(trans); 238756e9f6eaSDavid Sterba if (ret < 0) 2388dfba78dcSFilipe Manana goto unlock_reloc; 23890ed4792aSQu Wenruo 23909386d8bcSNikolay Borisov ret = commit_cowonly_roots(trans); 239156e9f6eaSDavid Sterba if (ret) 2392dfba78dcSFilipe Manana goto unlock_reloc; 239354aa1f4dSChris Mason 23942cba30f1SMiao Xie /* 23952cba30f1SMiao Xie * The tasks which save the space cache and inode cache may also 23962cba30f1SMiao Xie * update ->aborted, check it. 23972cba30f1SMiao Xie */ 2398bf31f87fSDavid Sterba if (TRANS_ABORTED(cur_trans)) { 23992cba30f1SMiao Xie ret = cur_trans->aborted; 2400dfba78dcSFilipe Manana goto unlock_reloc; 24012cba30f1SMiao Xie } 24022cba30f1SMiao Xie 24030b246afaSJeff Mahoney cur_trans = fs_info->running_transaction; 24045f39d397SChris Mason 24050b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->tree_root->root_item, 24060b246afaSJeff Mahoney fs_info->tree_root->node); 24070b246afaSJeff Mahoney list_add_tail(&fs_info->tree_root->dirty_list, 24089e351cc8SJosef Bacik &cur_trans->switch_commits); 24095d4f98a2SYan Zheng 24100b246afaSJeff Mahoney btrfs_set_root_node(&fs_info->chunk_root->root_item, 24110b246afaSJeff Mahoney fs_info->chunk_root->node); 24120b246afaSJeff Mahoney list_add_tail(&fs_info->chunk_root->dirty_list, 24139e351cc8SJosef Bacik &cur_trans->switch_commits); 24149e351cc8SJosef Bacik 2415f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 2416f7238e50SJosef Bacik btrfs_set_root_node(&fs_info->block_group_root->root_item, 2417f7238e50SJosef Bacik fs_info->block_group_root->node); 2418f7238e50SJosef Bacik list_add_tail(&fs_info->block_group_root->dirty_list, 2419f7238e50SJosef Bacik &cur_trans->switch_commits); 2420f7238e50SJosef Bacik } 2421f7238e50SJosef Bacik 2422889bfa39SJosef Bacik switch_commit_roots(trans); 24235d4f98a2SYan Zheng 2424ce93ec54SJosef Bacik ASSERT(list_empty(&cur_trans->dirty_bgs)); 24251bbc621eSChris Mason ASSERT(list_empty(&cur_trans->io_bgs)); 24262ff7e61eSJeff Mahoney update_super_roots(fs_info); 2427e02119d5SChris Mason 24280b246afaSJeff Mahoney btrfs_set_super_log_root(fs_info->super_copy, 0); 24290b246afaSJeff Mahoney btrfs_set_super_log_root_level(fs_info->super_copy, 0); 24300b246afaSJeff Mahoney memcpy(fs_info->super_for_commit, fs_info->super_copy, 24310b246afaSJeff Mahoney sizeof(*fs_info->super_copy)); 2432ccd467d6SChris Mason 2433bbbf7243SNikolay Borisov btrfs_commit_device_sizes(cur_trans); 2434935e5cc9SMiao Xie 24350b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG1_ERR, &fs_info->flags); 24360b246afaSJeff Mahoney clear_bit(BTRFS_FS_LOG2_ERR, &fs_info->flags); 2437656f30dbSFilipe Manana 24384fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 24394fbcdf66SFilipe Manana 2440dfba78dcSFilipe Manana /* 2441dfba78dcSFilipe Manana * Before changing the transaction state to TRANS_STATE_UNBLOCKED and 2442dfba78dcSFilipe Manana * setting fs_info->running_transaction to NULL, lock tree_log_mutex to 2443dfba78dcSFilipe Manana * make sure that before we commit our superblock, no other task can 2444dfba78dcSFilipe Manana * start a new transaction and commit a log tree before we commit our 2445dfba78dcSFilipe Manana * superblock. Anyone trying to commit a log tree locks this mutex before 2446dfba78dcSFilipe Manana * writing its superblock. 2447dfba78dcSFilipe Manana */ 2448dfba78dcSFilipe Manana mutex_lock(&fs_info->tree_log_mutex); 2449dfba78dcSFilipe Manana 24500b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 24514a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_UNBLOCKED; 24520b246afaSJeff Mahoney fs_info->running_transaction = NULL; 24530b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 24540b246afaSJeff Mahoney mutex_unlock(&fs_info->reloc_mutex); 2455b7ec40d7SChris Mason 24560b246afaSJeff Mahoney wake_up(&fs_info->transaction_wait); 2457e6dcd2dcSChris Mason 245870458a58SNikolay Borisov ret = btrfs_write_and_wait_transaction(trans); 245949b25e05SJeff Mahoney if (ret) { 24600b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, 246108748810SDavid Sterba "Error while writing out transaction"); 24620b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 24636cf7f77eSWang Shilong goto scrub_continue; 246449b25e05SJeff Mahoney } 246549b25e05SJeff Mahoney 2466d3575156SNaohiro Aota /* 2467d3575156SNaohiro Aota * At this point, we should have written all the tree blocks allocated 2468d3575156SNaohiro Aota * in this transaction. So it's now safe to free the redirtyied extent 2469d3575156SNaohiro Aota * buffers. 2470d3575156SNaohiro Aota */ 2471d3575156SNaohiro Aota btrfs_free_redirty_list(cur_trans); 2472d3575156SNaohiro Aota 2473eece6a9cSDavid Sterba ret = write_all_supers(fs_info, 0); 2474e02119d5SChris Mason /* 2475e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 2476e02119d5SChris Mason * to go about their business 2477e02119d5SChris Mason */ 24780b246afaSJeff Mahoney mutex_unlock(&fs_info->tree_log_mutex); 2479c1f32b7cSAnand Jain if (ret) 2480c1f32b7cSAnand Jain goto scrub_continue; 2481e02119d5SChris Mason 2482d0c2f4faSFilipe Manana /* 2483d0c2f4faSFilipe Manana * We needn't acquire the lock here because there is no other task 2484d0c2f4faSFilipe Manana * which can change it. 2485d0c2f4faSFilipe Manana */ 2486d0c2f4faSFilipe Manana cur_trans->state = TRANS_STATE_SUPER_COMMITTED; 2487d0c2f4faSFilipe Manana wake_up(&cur_trans->commit_wait); 2488d0c2f4faSFilipe Manana 24895ead2dd0SNikolay Borisov btrfs_finish_extent_commit(trans); 24904313b399SChris Mason 24913204d33cSJosef Bacik if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &cur_trans->flags)) 24920b246afaSJeff Mahoney btrfs_clear_space_info_full(fs_info); 249313212b54SZhao Lei 24940b246afaSJeff Mahoney fs_info->last_trans_committed = cur_trans->transid; 24954a9d8bdeSMiao Xie /* 24964a9d8bdeSMiao Xie * We needn't acquire the lock here because there is no other task 24974a9d8bdeSMiao Xie * which can change it. 24984a9d8bdeSMiao Xie */ 24994a9d8bdeSMiao Xie cur_trans->state = TRANS_STATE_COMPLETED; 25002c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 25013de4586cSChris Mason 25020b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 250313c5a93eSJosef Bacik list_del_init(&cur_trans->list); 25040b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 2505a4abeea4SJosef Bacik 2506724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 2507724e2315SJosef Bacik btrfs_put_transaction(cur_trans); 250858176a96SJosef Bacik 25090860adfdSMiao Xie if (trans->type & __TRANS_FREEZABLE) 25100b246afaSJeff Mahoney sb_end_intwrite(fs_info->sb); 2511b2b5ef5cSJan Kara 25122e4e97abSJosef Bacik trace_btrfs_transaction_commit(fs_info); 25131abe9b8aSliubo 2514e55958c8SIoannis Angelakopoulos interval = ktime_get_ns() - start_time; 2515e55958c8SIoannis Angelakopoulos 25162ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 2517a2de733cSArne Jansen 25189ed74f2dSJosef Bacik if (current->journal_info == trans) 25199ed74f2dSJosef Bacik current->journal_info = NULL; 25209ed74f2dSJosef Bacik 25212c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 252224bbcf04SYan, Zheng 2523e55958c8SIoannis Angelakopoulos update_commit_stats(fs_info, interval); 2524e55958c8SIoannis Angelakopoulos 252579154b1bSChris Mason return ret; 252649b25e05SJeff Mahoney 252756e9f6eaSDavid Sterba unlock_reloc: 252856e9f6eaSDavid Sterba mutex_unlock(&fs_info->reloc_mutex); 25296cf7f77eSWang Shilong scrub_continue: 25302ff7e61eSJeff Mahoney btrfs_scrub_continue(fs_info); 253149b25e05SJeff Mahoney cleanup_transaction: 2532dc60c525SNikolay Borisov btrfs_trans_release_metadata(trans); 2533c7cc64a9SDavid Sterba btrfs_cleanup_pending_block_groups(trans); 25344fbcdf66SFilipe Manana btrfs_trans_release_chunk_metadata(trans); 25350e721106SJosef Bacik trans->block_rsv = NULL; 25360b246afaSJeff Mahoney btrfs_warn(fs_info, "Skipping commit of aborted transaction."); 253749b25e05SJeff Mahoney if (current->journal_info == trans) 253849b25e05SJeff Mahoney current->journal_info = NULL; 253997cb39bbSNikolay Borisov cleanup_transaction(trans, ret); 254049b25e05SJeff Mahoney 254149b25e05SJeff Mahoney return ret; 2542*e1489b4fSIoannis Angelakopoulos 2543*e1489b4fSIoannis Angelakopoulos lockdep_release: 2544*e1489b4fSIoannis Angelakopoulos btrfs_lockdep_release(fs_info, btrfs_trans_num_writers); 2545*e1489b4fSIoannis Angelakopoulos goto cleanup_transaction; 254679154b1bSChris Mason } 254779154b1bSChris Mason 2548d352ac68SChris Mason /* 25499d1a2a3aSDavid Sterba * return < 0 if error 25509d1a2a3aSDavid Sterba * 0 if there are no more dead_roots at the time of call 25519d1a2a3aSDavid Sterba * 1 there are more to be processed, call me again 25529d1a2a3aSDavid Sterba * 25539d1a2a3aSDavid Sterba * The return value indicates there are certainly more snapshots to delete, but 25549d1a2a3aSDavid Sterba * if there comes a new one during processing, it may return 0. We don't mind, 25559d1a2a3aSDavid Sterba * because btrfs_commit_super will poke cleaner thread and it will process it a 25569d1a2a3aSDavid Sterba * few seconds later. 2557d352ac68SChris Mason */ 255833c44184SJosef Bacik int btrfs_clean_one_deleted_snapshot(struct btrfs_fs_info *fs_info) 2559e9d0b13bSChris Mason { 256033c44184SJosef Bacik struct btrfs_root *root; 25619d1a2a3aSDavid Sterba int ret; 2562e9d0b13bSChris Mason 2563a4abeea4SJosef Bacik spin_lock(&fs_info->trans_lock); 25649d1a2a3aSDavid Sterba if (list_empty(&fs_info->dead_roots)) { 25659d1a2a3aSDavid Sterba spin_unlock(&fs_info->trans_lock); 25669d1a2a3aSDavid Sterba return 0; 25679d1a2a3aSDavid Sterba } 25689d1a2a3aSDavid Sterba root = list_first_entry(&fs_info->dead_roots, 25699d1a2a3aSDavid Sterba struct btrfs_root, root_list); 2570cfad392bSJosef Bacik list_del_init(&root->root_list); 2571a4abeea4SJosef Bacik spin_unlock(&fs_info->trans_lock); 25725d4f98a2SYan Zheng 25734fd786e6SMisono Tomohiro btrfs_debug(fs_info, "cleaner removing %llu", root->root_key.objectid); 257476dda93cSYan, Zheng 257516cdcec7SMiao Xie btrfs_kill_all_delayed_nodes(root); 257616cdcec7SMiao Xie 257776dda93cSYan, Zheng if (btrfs_header_backref_rev(root->node) < 257876dda93cSYan, Zheng BTRFS_MIXED_BACKREF_REV) 25790078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 0, 0); 258076dda93cSYan, Zheng else 25810078a9f9SNikolay Borisov ret = btrfs_drop_snapshot(root, 1, 0); 258232471dc2SDavid Sterba 2583dc9492c1SJosef Bacik btrfs_put_root(root); 25846596a928SJosef Bacik return (ret < 0) ? 0 : 1; 2585e9d0b13bSChris Mason } 2586572d9ab7SDavid Sterba 2587572d9ab7SDavid Sterba void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info) 2588572d9ab7SDavid Sterba { 2589572d9ab7SDavid Sterba unsigned long prev; 2590572d9ab7SDavid Sterba unsigned long bit; 2591572d9ab7SDavid Sterba 25926c9fe14fSQu Wenruo prev = xchg(&fs_info->pending_changes, 0); 2593572d9ab7SDavid Sterba if (!prev) 2594572d9ab7SDavid Sterba return; 2595572d9ab7SDavid Sterba 2596d51033d0SDavid Sterba bit = 1 << BTRFS_PENDING_COMMIT; 2597d51033d0SDavid Sterba if (prev & bit) 2598d51033d0SDavid Sterba btrfs_debug(fs_info, "pending commit done"); 2599d51033d0SDavid Sterba prev &= ~bit; 2600d51033d0SDavid Sterba 2601572d9ab7SDavid Sterba if (prev) 2602572d9ab7SDavid Sterba btrfs_warn(fs_info, 2603572d9ab7SDavid Sterba "unknown pending changes left 0x%lx, ignoring", prev); 2604572d9ab7SDavid Sterba } 2605