16cbd5570SChris Mason /* 26cbd5570SChris Mason * Copyright (C) 2007 Oracle. All rights reserved. 36cbd5570SChris Mason * 46cbd5570SChris Mason * This program is free software; you can redistribute it and/or 56cbd5570SChris Mason * modify it under the terms of the GNU General Public 66cbd5570SChris Mason * License v2 as published by the Free Software Foundation. 76cbd5570SChris Mason * 86cbd5570SChris Mason * This program is distributed in the hope that it will be useful, 96cbd5570SChris Mason * but WITHOUT ANY WARRANTY; without even the implied warranty of 106cbd5570SChris Mason * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 116cbd5570SChris Mason * General Public License for more details. 126cbd5570SChris Mason * 136cbd5570SChris Mason * You should have received a copy of the GNU General Public 146cbd5570SChris Mason * License along with this program; if not, write to the 156cbd5570SChris Mason * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 166cbd5570SChris Mason * Boston, MA 021110-1307, USA. 176cbd5570SChris Mason */ 186cbd5570SChris Mason 1979154b1bSChris Mason #include <linux/fs.h> 2034088780SChris Mason #include <linux/sched.h> 21d3c2fdcfSChris Mason #include <linux/writeback.h> 225f39d397SChris Mason #include <linux/pagemap.h> 235f2cc086SChris Mason #include <linux/blkdev.h> 2479154b1bSChris Mason #include "ctree.h" 2579154b1bSChris Mason #include "disk-io.h" 2679154b1bSChris Mason #include "transaction.h" 27925baeddSChris Mason #include "locking.h" 28e02119d5SChris Mason #include "tree-log.h" 2979154b1bSChris Mason 300f7d52f4SChris Mason #define BTRFS_ROOT_TRANS_TAG 0 310f7d52f4SChris Mason 3280b6794dSChris Mason static noinline void put_transaction(struct btrfs_transaction *transaction) 3379154b1bSChris Mason { 342c90e5d6SChris Mason WARN_ON(transaction->use_count == 0); 3579154b1bSChris Mason transaction->use_count--; 3678fae27eSChris Mason if (transaction->use_count == 0) { 378fd17795SChris Mason list_del_init(&transaction->list); 382c90e5d6SChris Mason memset(transaction, 0, sizeof(*transaction)); 392c90e5d6SChris Mason kmem_cache_free(btrfs_transaction_cachep, transaction); 4079154b1bSChris Mason } 4178fae27eSChris Mason } 4279154b1bSChris Mason 43d352ac68SChris Mason /* 44d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 45d352ac68SChris Mason */ 4680b6794dSChris Mason static noinline int join_transaction(struct btrfs_root *root) 4779154b1bSChris Mason { 4879154b1bSChris Mason struct btrfs_transaction *cur_trans; 4979154b1bSChris Mason cur_trans = root->fs_info->running_transaction; 5079154b1bSChris Mason if (!cur_trans) { 512c90e5d6SChris Mason cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, 522c90e5d6SChris Mason GFP_NOFS); 5379154b1bSChris Mason BUG_ON(!cur_trans); 540f7d52f4SChris Mason root->fs_info->generation++; 5515ee9bc7SJosef Bacik cur_trans->num_writers = 1; 5615ee9bc7SJosef Bacik cur_trans->num_joined = 0; 570f7d52f4SChris Mason cur_trans->transid = root->fs_info->generation; 5879154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 5979154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 6079154b1bSChris Mason cur_trans->in_commit = 0; 61f9295749SChris Mason cur_trans->blocked = 0; 62d5719762SChris Mason cur_trans->use_count = 1; 6379154b1bSChris Mason cur_trans->commit_done = 0; 6408607c1bSChris Mason cur_trans->start_time = get_seconds(); 6556bec294SChris Mason 6656bec294SChris Mason cur_trans->delayed_refs.root.rb_node = NULL; 6756bec294SChris Mason cur_trans->delayed_refs.num_entries = 0; 68c3e69d58SChris Mason cur_trans->delayed_refs.num_heads_ready = 0; 69c3e69d58SChris Mason cur_trans->delayed_refs.num_heads = 0; 7056bec294SChris Mason cur_trans->delayed_refs.flushing = 0; 71c3e69d58SChris Mason cur_trans->delayed_refs.run_delayed_start = 0; 7256bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 7356bec294SChris Mason 743063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 758fd17795SChris Mason list_add_tail(&cur_trans->list, &root->fs_info->trans_list); 76d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 775f39d397SChris Mason root->fs_info->btree_inode->i_mapping, 785f39d397SChris Mason GFP_NOFS); 7948ec2cf8SChris Mason spin_lock(&root->fs_info->new_trans_lock); 8048ec2cf8SChris Mason root->fs_info->running_transaction = cur_trans; 8148ec2cf8SChris Mason spin_unlock(&root->fs_info->new_trans_lock); 8215ee9bc7SJosef Bacik } else { 8379154b1bSChris Mason cur_trans->num_writers++; 8415ee9bc7SJosef Bacik cur_trans->num_joined++; 8515ee9bc7SJosef Bacik } 8615ee9bc7SJosef Bacik 8779154b1bSChris Mason return 0; 8879154b1bSChris Mason } 8979154b1bSChris Mason 90d352ac68SChris Mason /* 91d397712bSChris Mason * this does all the record keeping required to make sure that a reference 92d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 93d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 94d397712bSChris Mason * when the transaction commits 95d352ac68SChris Mason */ 96*5d4f98a2SYan Zheng static noinline int record_root_in_trans(struct btrfs_trans_handle *trans, 97*5d4f98a2SYan Zheng struct btrfs_root *root) 986702ed49SChris Mason { 99*5d4f98a2SYan Zheng if (root->ref_cows && root->last_trans < trans->transid) { 1006702ed49SChris Mason WARN_ON(root == root->fs_info->extent_root); 101*5d4f98a2SYan Zheng WARN_ON(root->root_item.refs == 0); 102*5d4f98a2SYan Zheng WARN_ON(root->commit_root != root->node); 103*5d4f98a2SYan Zheng 1046702ed49SChris Mason radix_tree_tag_set(&root->fs_info->fs_roots_radix, 1056702ed49SChris Mason (unsigned long)root->root_key.objectid, 1066702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 107*5d4f98a2SYan Zheng root->last_trans = trans->transid; 108*5d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 1096702ed49SChris Mason } 110*5d4f98a2SYan Zheng return 0; 1116702ed49SChris Mason } 112*5d4f98a2SYan Zheng 113*5d4f98a2SYan Zheng int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 114*5d4f98a2SYan Zheng struct btrfs_root *root) 115*5d4f98a2SYan Zheng { 116*5d4f98a2SYan Zheng if (!root->ref_cows) 117*5d4f98a2SYan Zheng return 0; 118*5d4f98a2SYan Zheng 119*5d4f98a2SYan Zheng mutex_lock(&root->fs_info->trans_mutex); 120*5d4f98a2SYan Zheng if (root->last_trans == trans->transid) { 121*5d4f98a2SYan Zheng mutex_unlock(&root->fs_info->trans_mutex); 122*5d4f98a2SYan Zheng return 0; 123*5d4f98a2SYan Zheng } 124*5d4f98a2SYan Zheng 125*5d4f98a2SYan Zheng record_root_in_trans(trans, root); 126*5d4f98a2SYan Zheng mutex_unlock(&root->fs_info->trans_mutex); 1276702ed49SChris Mason return 0; 1286702ed49SChris Mason } 1296702ed49SChris Mason 130d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 131d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 132d352ac68SChris Mason * transaction might not be fully on disk. 133d352ac68SChris Mason */ 13437d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root) 13579154b1bSChris Mason { 136f9295749SChris Mason struct btrfs_transaction *cur_trans; 13779154b1bSChris Mason 138f9295749SChris Mason cur_trans = root->fs_info->running_transaction; 13937d1aeeeSChris Mason if (cur_trans && cur_trans->blocked) { 140f9295749SChris Mason DEFINE_WAIT(wait); 141f9295749SChris Mason cur_trans->use_count++; 142f9295749SChris Mason while (1) { 143f9295749SChris Mason prepare_to_wait(&root->fs_info->transaction_wait, &wait, 144f9295749SChris Mason TASK_UNINTERRUPTIBLE); 145f9295749SChris Mason if (cur_trans->blocked) { 146f9295749SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 147f9295749SChris Mason schedule(); 148f9295749SChris Mason mutex_lock(&root->fs_info->trans_mutex); 149f9295749SChris Mason finish_wait(&root->fs_info->transaction_wait, 150f9295749SChris Mason &wait); 151f9295749SChris Mason } else { 152f9295749SChris Mason finish_wait(&root->fs_info->transaction_wait, 153f9295749SChris Mason &wait); 154f9295749SChris Mason break; 155f9295749SChris Mason } 156f9295749SChris Mason } 157f9295749SChris Mason put_transaction(cur_trans); 158f9295749SChris Mason } 15937d1aeeeSChris Mason } 16037d1aeeeSChris Mason 161e02119d5SChris Mason static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root, 1629ca9ee09SSage Weil int num_blocks, int wait) 16337d1aeeeSChris Mason { 16437d1aeeeSChris Mason struct btrfs_trans_handle *h = 16537d1aeeeSChris Mason kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS); 16637d1aeeeSChris Mason int ret; 16737d1aeeeSChris Mason 16837d1aeeeSChris Mason mutex_lock(&root->fs_info->trans_mutex); 1694bef0848SChris Mason if (!root->fs_info->log_root_recovering && 1704bef0848SChris Mason ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2)) 17137d1aeeeSChris Mason wait_current_trans(root); 17279154b1bSChris Mason ret = join_transaction(root); 17379154b1bSChris Mason BUG_ON(ret); 1740f7d52f4SChris Mason 1756702ed49SChris Mason h->transid = root->fs_info->running_transaction->transid; 17679154b1bSChris Mason h->transaction = root->fs_info->running_transaction; 17779154b1bSChris Mason h->blocks_reserved = num_blocks; 17879154b1bSChris Mason h->blocks_used = 0; 179d2fb3437SYan Zheng h->block_group = 0; 18026b8003fSChris Mason h->alloc_exclude_nr = 0; 18126b8003fSChris Mason h->alloc_exclude_start = 0; 18256bec294SChris Mason h->delayed_ref_updates = 0; 183b7ec40d7SChris Mason 18479154b1bSChris Mason root->fs_info->running_transaction->use_count++; 185*5d4f98a2SYan Zheng record_root_in_trans(h, root); 18679154b1bSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 18779154b1bSChris Mason return h; 18879154b1bSChris Mason } 18979154b1bSChris Mason 190f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 191f9295749SChris Mason int num_blocks) 192f9295749SChris Mason { 1939ca9ee09SSage Weil return start_transaction(root, num_blocks, 1); 194f9295749SChris Mason } 195f9295749SChris Mason struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root, 196f9295749SChris Mason int num_blocks) 197f9295749SChris Mason { 1989ca9ee09SSage Weil return start_transaction(root, num_blocks, 0); 199f9295749SChris Mason } 200f9295749SChris Mason 2019ca9ee09SSage Weil struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r, 2029ca9ee09SSage Weil int num_blocks) 2039ca9ee09SSage Weil { 2049ca9ee09SSage Weil return start_transaction(r, num_blocks, 2); 2059ca9ee09SSage Weil } 2069ca9ee09SSage Weil 207d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 20889ce8a63SChris Mason static noinline int wait_for_commit(struct btrfs_root *root, 20989ce8a63SChris Mason struct btrfs_transaction *commit) 21089ce8a63SChris Mason { 21189ce8a63SChris Mason DEFINE_WAIT(wait); 21289ce8a63SChris Mason mutex_lock(&root->fs_info->trans_mutex); 21389ce8a63SChris Mason while (!commit->commit_done) { 21489ce8a63SChris Mason prepare_to_wait(&commit->commit_wait, &wait, 21589ce8a63SChris Mason TASK_UNINTERRUPTIBLE); 21689ce8a63SChris Mason if (commit->commit_done) 21789ce8a63SChris Mason break; 21889ce8a63SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 21989ce8a63SChris Mason schedule(); 22089ce8a63SChris Mason mutex_lock(&root->fs_info->trans_mutex); 22189ce8a63SChris Mason } 22289ce8a63SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 22389ce8a63SChris Mason finish_wait(&commit->commit_wait, &wait); 22489ce8a63SChris Mason return 0; 22589ce8a63SChris Mason } 22689ce8a63SChris Mason 227*5d4f98a2SYan Zheng #if 0 228d352ac68SChris Mason /* 229d397712bSChris Mason * rate limit against the drop_snapshot code. This helps to slow down new 230d397712bSChris Mason * operations if the drop_snapshot code isn't able to keep up. 231d352ac68SChris Mason */ 23237d1aeeeSChris Mason static void throttle_on_drops(struct btrfs_root *root) 233ab78c84dSChris Mason { 234ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 2352dd3e67bSChris Mason int harder_count = 0; 236ab78c84dSChris Mason 2372dd3e67bSChris Mason harder: 238ab78c84dSChris Mason if (atomic_read(&info->throttles)) { 239ab78c84dSChris Mason DEFINE_WAIT(wait); 240ab78c84dSChris Mason int thr; 241ab78c84dSChris Mason thr = atomic_read(&info->throttle_gen); 242ab78c84dSChris Mason 243ab78c84dSChris Mason do { 244ab78c84dSChris Mason prepare_to_wait(&info->transaction_throttle, 245ab78c84dSChris Mason &wait, TASK_UNINTERRUPTIBLE); 246ab78c84dSChris Mason if (!atomic_read(&info->throttles)) { 247ab78c84dSChris Mason finish_wait(&info->transaction_throttle, &wait); 248ab78c84dSChris Mason break; 249ab78c84dSChris Mason } 250ab78c84dSChris Mason schedule(); 251ab78c84dSChris Mason finish_wait(&info->transaction_throttle, &wait); 252ab78c84dSChris Mason } while (thr == atomic_read(&info->throttle_gen)); 2532dd3e67bSChris Mason harder_count++; 2542dd3e67bSChris Mason 2552dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 && 2562dd3e67bSChris Mason harder_count < 2) 2572dd3e67bSChris Mason goto harder; 2582dd3e67bSChris Mason 2592dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 && 2602dd3e67bSChris Mason harder_count < 10) 2612dd3e67bSChris Mason goto harder; 2622dd3e67bSChris Mason 2632dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 && 2642dd3e67bSChris Mason harder_count < 20) 2652dd3e67bSChris Mason goto harder; 266ab78c84dSChris Mason } 267ab78c84dSChris Mason } 268*5d4f98a2SYan Zheng #endif 269ab78c84dSChris Mason 27037d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root) 27137d1aeeeSChris Mason { 27237d1aeeeSChris Mason mutex_lock(&root->fs_info->trans_mutex); 2739ca9ee09SSage Weil if (!root->fs_info->open_ioctl_trans) 27437d1aeeeSChris Mason wait_current_trans(root); 27537d1aeeeSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 27637d1aeeeSChris Mason } 27737d1aeeeSChris Mason 27889ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 27989ce8a63SChris Mason struct btrfs_root *root, int throttle) 28079154b1bSChris Mason { 28179154b1bSChris Mason struct btrfs_transaction *cur_trans; 282ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 283c3e69d58SChris Mason int count = 0; 284d6e4a428SChris Mason 285c3e69d58SChris Mason while (count < 4) { 286c3e69d58SChris Mason unsigned long cur = trans->delayed_ref_updates; 287c3e69d58SChris Mason trans->delayed_ref_updates = 0; 288c3e69d58SChris Mason if (cur && 289c3e69d58SChris Mason trans->transaction->delayed_refs.num_heads_ready > 64) { 290c3e69d58SChris Mason trans->delayed_ref_updates = 0; 291b7ec40d7SChris Mason 292b7ec40d7SChris Mason /* 293b7ec40d7SChris Mason * do a full flush if the transaction is trying 294b7ec40d7SChris Mason * to close 295b7ec40d7SChris Mason */ 296b7ec40d7SChris Mason if (trans->transaction->delayed_refs.flushing) 297b7ec40d7SChris Mason cur = 0; 298c3e69d58SChris Mason btrfs_run_delayed_refs(trans, root, cur); 299c3e69d58SChris Mason } else { 300c3e69d58SChris Mason break; 301c3e69d58SChris Mason } 302c3e69d58SChris Mason count++; 30356bec294SChris Mason } 30456bec294SChris Mason 305ab78c84dSChris Mason mutex_lock(&info->trans_mutex); 306ab78c84dSChris Mason cur_trans = info->running_transaction; 307ccd467d6SChris Mason WARN_ON(cur_trans != trans->transaction); 308d5719762SChris Mason WARN_ON(cur_trans->num_writers < 1); 309ccd467d6SChris Mason cur_trans->num_writers--; 31089ce8a63SChris Mason 31179154b1bSChris Mason if (waitqueue_active(&cur_trans->writer_wait)) 31279154b1bSChris Mason wake_up(&cur_trans->writer_wait); 31379154b1bSChris Mason put_transaction(cur_trans); 314ab78c84dSChris Mason mutex_unlock(&info->trans_mutex); 315d6025579SChris Mason memset(trans, 0, sizeof(*trans)); 3162c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 317ab78c84dSChris Mason 31879154b1bSChris Mason return 0; 31979154b1bSChris Mason } 32079154b1bSChris Mason 32189ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans, 32289ce8a63SChris Mason struct btrfs_root *root) 32389ce8a63SChris Mason { 32489ce8a63SChris Mason return __btrfs_end_transaction(trans, root, 0); 32589ce8a63SChris Mason } 32689ce8a63SChris Mason 32789ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 32889ce8a63SChris Mason struct btrfs_root *root) 32989ce8a63SChris Mason { 33089ce8a63SChris Mason return __btrfs_end_transaction(trans, root, 1); 33189ce8a63SChris Mason } 33289ce8a63SChris Mason 333d352ac68SChris Mason /* 334d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 335d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 336d352ac68SChris Mason * those extents are on disk for transaction or log commit 337d352ac68SChris Mason */ 338d0c803c4SChris Mason int btrfs_write_and_wait_marked_extents(struct btrfs_root *root, 339d0c803c4SChris Mason struct extent_io_tree *dirty_pages) 34079154b1bSChris Mason { 3417c4452b9SChris Mason int ret; 342777e6bd7SChris Mason int err = 0; 3437c4452b9SChris Mason int werr = 0; 3447c4452b9SChris Mason struct page *page; 3457c4452b9SChris Mason struct inode *btree_inode = root->fs_info->btree_inode; 346777e6bd7SChris Mason u64 start = 0; 3475f39d397SChris Mason u64 end; 3485f39d397SChris Mason unsigned long index; 3497c4452b9SChris Mason 3507c4452b9SChris Mason while (1) { 351777e6bd7SChris Mason ret = find_first_extent_bit(dirty_pages, start, &start, &end, 3525f39d397SChris Mason EXTENT_DIRTY); 3535f39d397SChris Mason if (ret) 3547c4452b9SChris Mason break; 3555f39d397SChris Mason while (start <= end) { 356777e6bd7SChris Mason cond_resched(); 357777e6bd7SChris Mason 3585f39d397SChris Mason index = start >> PAGE_CACHE_SHIFT; 35935ebb934SChris Mason start = (u64)(index + 1) << PAGE_CACHE_SHIFT; 3604bef0848SChris Mason page = find_get_page(btree_inode->i_mapping, index); 3617c4452b9SChris Mason if (!page) 3627c4452b9SChris Mason continue; 3634bef0848SChris Mason 3644bef0848SChris Mason btree_lock_page_hook(page); 3654bef0848SChris Mason if (!page->mapping) { 3664bef0848SChris Mason unlock_page(page); 3674bef0848SChris Mason page_cache_release(page); 3684bef0848SChris Mason continue; 3694bef0848SChris Mason } 3704bef0848SChris Mason 3716702ed49SChris Mason if (PageWriteback(page)) { 3726702ed49SChris Mason if (PageDirty(page)) 3736702ed49SChris Mason wait_on_page_writeback(page); 3746702ed49SChris Mason else { 3756702ed49SChris Mason unlock_page(page); 3766702ed49SChris Mason page_cache_release(page); 3776702ed49SChris Mason continue; 3786702ed49SChris Mason } 3796702ed49SChris Mason } 3807c4452b9SChris Mason err = write_one_page(page, 0); 3817c4452b9SChris Mason if (err) 3827c4452b9SChris Mason werr = err; 3837c4452b9SChris Mason page_cache_release(page); 3847c4452b9SChris Mason } 3857c4452b9SChris Mason } 386777e6bd7SChris Mason while (1) { 387777e6bd7SChris Mason ret = find_first_extent_bit(dirty_pages, 0, &start, &end, 388777e6bd7SChris Mason EXTENT_DIRTY); 389777e6bd7SChris Mason if (ret) 390777e6bd7SChris Mason break; 391777e6bd7SChris Mason 392777e6bd7SChris Mason clear_extent_dirty(dirty_pages, start, end, GFP_NOFS); 393777e6bd7SChris Mason while (start <= end) { 394777e6bd7SChris Mason index = start >> PAGE_CACHE_SHIFT; 395777e6bd7SChris Mason start = (u64)(index + 1) << PAGE_CACHE_SHIFT; 396777e6bd7SChris Mason page = find_get_page(btree_inode->i_mapping, index); 397777e6bd7SChris Mason if (!page) 398777e6bd7SChris Mason continue; 399777e6bd7SChris Mason if (PageDirty(page)) { 4004bef0848SChris Mason btree_lock_page_hook(page); 4014bef0848SChris Mason wait_on_page_writeback(page); 402777e6bd7SChris Mason err = write_one_page(page, 0); 403777e6bd7SChris Mason if (err) 404777e6bd7SChris Mason werr = err; 405777e6bd7SChris Mason } 406777e6bd7SChris Mason wait_on_page_writeback(page); 407777e6bd7SChris Mason page_cache_release(page); 408777e6bd7SChris Mason cond_resched(); 409777e6bd7SChris Mason } 410777e6bd7SChris Mason } 4117c4452b9SChris Mason if (err) 4127c4452b9SChris Mason werr = err; 4137c4452b9SChris Mason return werr; 41479154b1bSChris Mason } 41579154b1bSChris Mason 416d0c803c4SChris Mason int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, 417d0c803c4SChris Mason struct btrfs_root *root) 418d0c803c4SChris Mason { 419d0c803c4SChris Mason if (!trans || !trans->transaction) { 420d0c803c4SChris Mason struct inode *btree_inode; 421d0c803c4SChris Mason btree_inode = root->fs_info->btree_inode; 422d0c803c4SChris Mason return filemap_write_and_wait(btree_inode->i_mapping); 423d0c803c4SChris Mason } 424d0c803c4SChris Mason return btrfs_write_and_wait_marked_extents(root, 425d0c803c4SChris Mason &trans->transaction->dirty_pages); 426d0c803c4SChris Mason } 427d0c803c4SChris Mason 428d352ac68SChris Mason /* 429d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 430d352ac68SChris Mason * 431d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 432d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 433d352ac68SChris Mason * allocation tree. 434d352ac68SChris Mason * 435d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 436d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 437d352ac68SChris Mason */ 4380b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 43979154b1bSChris Mason struct btrfs_root *root) 44079154b1bSChris Mason { 44179154b1bSChris Mason int ret; 4420b86a832SChris Mason u64 old_root_bytenr; 4430b86a832SChris Mason struct btrfs_root *tree_root = root->fs_info->tree_root; 44479154b1bSChris Mason 4450b86a832SChris Mason btrfs_write_dirty_block_groups(trans, root); 44656bec294SChris Mason 44756bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 44856bec294SChris Mason BUG_ON(ret); 44987ef2bb4SChris Mason 45079154b1bSChris Mason while (1) { 4510b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 4520b86a832SChris Mason if (old_root_bytenr == root->node->start) 45379154b1bSChris Mason break; 45487ef2bb4SChris Mason 455*5d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 45679154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 4570b86a832SChris Mason &root->root_key, 4580b86a832SChris Mason &root->root_item); 45979154b1bSChris Mason BUG_ON(ret); 4600b86a832SChris Mason btrfs_write_dirty_block_groups(trans, root); 46156bec294SChris Mason 46256bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 46356bec294SChris Mason BUG_ON(ret); 4640b86a832SChris Mason } 465*5d4f98a2SYan Zheng free_extent_buffer(root->commit_root); 466*5d4f98a2SYan Zheng root->commit_root = btrfs_root_node(root); 4670b86a832SChris Mason return 0; 4680b86a832SChris Mason } 4690b86a832SChris Mason 470d352ac68SChris Mason /* 471d352ac68SChris Mason * update all the cowonly tree roots on disk 472d352ac68SChris Mason */ 473*5d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, 4740b86a832SChris Mason struct btrfs_root *root) 4750b86a832SChris Mason { 4760b86a832SChris Mason struct btrfs_fs_info *fs_info = root->fs_info; 4770b86a832SChris Mason struct list_head *next; 47884234f3aSYan Zheng struct extent_buffer *eb; 47956bec294SChris Mason int ret; 48084234f3aSYan Zheng 48156bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 48256bec294SChris Mason BUG_ON(ret); 48387ef2bb4SChris Mason 48484234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 4859fa8cfe7SChris Mason btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb); 48684234f3aSYan Zheng btrfs_tree_unlock(eb); 48784234f3aSYan Zheng free_extent_buffer(eb); 4880b86a832SChris Mason 48956bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 49056bec294SChris Mason BUG_ON(ret); 49187ef2bb4SChris Mason 4920b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 4930b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 4940b86a832SChris Mason list_del_init(next); 4950b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 49687ef2bb4SChris Mason 4970b86a832SChris Mason update_cowonly_root(trans, root); 49856bec294SChris Mason 49956bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 50056bec294SChris Mason BUG_ON(ret); 50179154b1bSChris Mason } 50279154b1bSChris Mason return 0; 50379154b1bSChris Mason } 50479154b1bSChris Mason 505d352ac68SChris Mason /* 506d352ac68SChris Mason * dead roots are old snapshots that need to be deleted. This allocates 507d352ac68SChris Mason * a dirty root struct and adds it into the list of dead roots that need to 508d352ac68SChris Mason * be deleted 509d352ac68SChris Mason */ 510*5d4f98a2SYan Zheng int btrfs_add_dead_root(struct btrfs_root *root) 5115eda7b5eSChris Mason { 512b48652c1SYan Zheng mutex_lock(&root->fs_info->trans_mutex); 513*5d4f98a2SYan Zheng list_add(&root->root_list, &root->fs_info->dead_roots); 514b48652c1SYan Zheng mutex_unlock(&root->fs_info->trans_mutex); 5155eda7b5eSChris Mason return 0; 5165eda7b5eSChris Mason } 5175eda7b5eSChris Mason 518d352ac68SChris Mason /* 519*5d4f98a2SYan Zheng * update all the cowonly tree roots on disk 520d352ac68SChris Mason */ 521*5d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, 522*5d4f98a2SYan Zheng struct btrfs_root *root) 5230f7d52f4SChris Mason { 5240f7d52f4SChris Mason struct btrfs_root *gang[8]; 525*5d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 5260f7d52f4SChris Mason int i; 5270f7d52f4SChris Mason int ret; 52854aa1f4dSChris Mason int err = 0; 52954aa1f4dSChris Mason 5300f7d52f4SChris Mason while (1) { 531*5d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 532*5d4f98a2SYan Zheng (void **)gang, 0, 5330f7d52f4SChris Mason ARRAY_SIZE(gang), 5340f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 5350f7d52f4SChris Mason if (ret == 0) 5360f7d52f4SChris Mason break; 5370f7d52f4SChris Mason for (i = 0; i < ret; i++) { 5380f7d52f4SChris Mason root = gang[i]; 539*5d4f98a2SYan Zheng radix_tree_tag_clear(&fs_info->fs_roots_radix, 5402619ba1fSChris Mason (unsigned long)root->root_key.objectid, 5410f7d52f4SChris Mason BTRFS_ROOT_TRANS_TAG); 54231153d81SYan Zheng 543e02119d5SChris Mason btrfs_free_log(trans, root); 544*5d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 545e02119d5SChris Mason 546*5d4f98a2SYan Zheng if (root->commit_root == root->node) 547*5d4f98a2SYan Zheng continue; 54831153d81SYan Zheng 5495f39d397SChris Mason free_extent_buffer(root->commit_root); 550*5d4f98a2SYan Zheng root->commit_root = btrfs_root_node(root); 55131153d81SYan Zheng 552*5d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 553*5d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 5540f7d52f4SChris Mason &root->root_key, 5550f7d52f4SChris Mason &root->root_item); 55654aa1f4dSChris Mason if (err) 55754aa1f4dSChris Mason break; 5580f7d52f4SChris Mason } 5599f3a7427SChris Mason } 56054aa1f4dSChris Mason return err; 5610f7d52f4SChris Mason } 5620f7d52f4SChris Mason 563d352ac68SChris Mason /* 564d352ac68SChris Mason * defrag a given btree. If cacheonly == 1, this won't read from the disk, 565d352ac68SChris Mason * otherwise every leaf in the btree is read and defragged. 566d352ac68SChris Mason */ 567e9d0b13bSChris Mason int btrfs_defrag_root(struct btrfs_root *root, int cacheonly) 568e9d0b13bSChris Mason { 569e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 570e9d0b13bSChris Mason int ret; 571e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 572d3c2fdcfSChris Mason unsigned long nr; 573e9d0b13bSChris Mason 574a2135011SChris Mason smp_mb(); 575e9d0b13bSChris Mason if (root->defrag_running) 576e9d0b13bSChris Mason return 0; 577e9d0b13bSChris Mason trans = btrfs_start_transaction(root, 1); 5786b80053dSChris Mason while (1) { 579e9d0b13bSChris Mason root->defrag_running = 1; 580e9d0b13bSChris Mason ret = btrfs_defrag_leaves(trans, root, cacheonly); 581d3c2fdcfSChris Mason nr = trans->blocks_used; 582e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 583d3c2fdcfSChris Mason btrfs_btree_balance_dirty(info->tree_root, nr); 584e9d0b13bSChris Mason cond_resched(); 585e9d0b13bSChris Mason 586e9d0b13bSChris Mason trans = btrfs_start_transaction(root, 1); 5873f157a2fSChris Mason if (root->fs_info->closing || ret != -EAGAIN) 588e9d0b13bSChris Mason break; 589e9d0b13bSChris Mason } 590e9d0b13bSChris Mason root->defrag_running = 0; 591a2135011SChris Mason smp_mb(); 592e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 593e9d0b13bSChris Mason return 0; 594e9d0b13bSChris Mason } 595e9d0b13bSChris Mason 596d352ac68SChris Mason /* 597b7ec40d7SChris Mason * when dropping snapshots, we generate a ton of delayed refs, and it makes 598b7ec40d7SChris Mason * sense not to join the transaction while it is trying to flush the current 599b7ec40d7SChris Mason * queue of delayed refs out. 600b7ec40d7SChris Mason * 601b7ec40d7SChris Mason * This is used by the drop snapshot code only 602b7ec40d7SChris Mason */ 603b7ec40d7SChris Mason static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info) 604b7ec40d7SChris Mason { 605b7ec40d7SChris Mason DEFINE_WAIT(wait); 606b7ec40d7SChris Mason 607b7ec40d7SChris Mason mutex_lock(&info->trans_mutex); 608b7ec40d7SChris Mason while (info->running_transaction && 609b7ec40d7SChris Mason info->running_transaction->delayed_refs.flushing) { 610b7ec40d7SChris Mason prepare_to_wait(&info->transaction_wait, &wait, 611b7ec40d7SChris Mason TASK_UNINTERRUPTIBLE); 612b7ec40d7SChris Mason mutex_unlock(&info->trans_mutex); 61359bc5c75SChris Mason 614b7ec40d7SChris Mason schedule(); 61559bc5c75SChris Mason 616b7ec40d7SChris Mason mutex_lock(&info->trans_mutex); 617b7ec40d7SChris Mason finish_wait(&info->transaction_wait, &wait); 618b7ec40d7SChris Mason } 619b7ec40d7SChris Mason mutex_unlock(&info->trans_mutex); 620b7ec40d7SChris Mason return 0; 621b7ec40d7SChris Mason } 622b7ec40d7SChris Mason 623b7ec40d7SChris Mason /* 624d352ac68SChris Mason * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on 625d352ac68SChris Mason * all of them 626d352ac68SChris Mason */ 627*5d4f98a2SYan Zheng int btrfs_drop_dead_root(struct btrfs_root *root) 6280f7d52f4SChris Mason { 6290f7d52f4SChris Mason struct btrfs_trans_handle *trans; 630*5d4f98a2SYan Zheng struct btrfs_root *tree_root = root->fs_info->tree_root; 631d3c2fdcfSChris Mason unsigned long nr; 632*5d4f98a2SYan Zheng int ret; 63358176a96SJosef Bacik 6349f3a7427SChris Mason while (1) { 635b7ec40d7SChris Mason /* 636b7ec40d7SChris Mason * we don't want to jump in and create a bunch of 637b7ec40d7SChris Mason * delayed refs if the transaction is starting to close 638b7ec40d7SChris Mason */ 639b7ec40d7SChris Mason wait_transaction_pre_flush(tree_root->fs_info); 6400f7d52f4SChris Mason trans = btrfs_start_transaction(tree_root, 1); 641b7ec40d7SChris Mason 642b7ec40d7SChris Mason /* 643b7ec40d7SChris Mason * we've joined a transaction, make sure it isn't 644b7ec40d7SChris Mason * closing right now 645b7ec40d7SChris Mason */ 646b7ec40d7SChris Mason if (trans->transaction->delayed_refs.flushing) { 647b7ec40d7SChris Mason btrfs_end_transaction(trans, tree_root); 648b7ec40d7SChris Mason continue; 649b7ec40d7SChris Mason } 650b7ec40d7SChris Mason 651*5d4f98a2SYan Zheng ret = btrfs_drop_snapshot(trans, root); 652d397712bSChris Mason if (ret != -EAGAIN) 6539f3a7427SChris Mason break; 65458176a96SJosef Bacik 655*5d4f98a2SYan Zheng ret = btrfs_update_root(trans, tree_root, 656*5d4f98a2SYan Zheng &root->root_key, 657*5d4f98a2SYan Zheng &root->root_item); 658*5d4f98a2SYan Zheng if (ret) 65954aa1f4dSChris Mason break; 660bcc63abbSYan 661d3c2fdcfSChris Mason nr = trans->blocks_used; 6620f7d52f4SChris Mason ret = btrfs_end_transaction(trans, tree_root); 6630f7d52f4SChris Mason BUG_ON(ret); 6645eda7b5eSChris Mason 665d3c2fdcfSChris Mason btrfs_btree_balance_dirty(tree_root, nr); 6664dc11904SChris Mason cond_resched(); 6670f7d52f4SChris Mason } 668*5d4f98a2SYan Zheng BUG_ON(ret); 669*5d4f98a2SYan Zheng 670*5d4f98a2SYan Zheng ret = btrfs_del_root(trans, tree_root, &root->root_key); 671*5d4f98a2SYan Zheng BUG_ON(ret); 672*5d4f98a2SYan Zheng 673*5d4f98a2SYan Zheng nr = trans->blocks_used; 674*5d4f98a2SYan Zheng ret = btrfs_end_transaction(trans, tree_root); 675*5d4f98a2SYan Zheng BUG_ON(ret); 676*5d4f98a2SYan Zheng 677*5d4f98a2SYan Zheng free_extent_buffer(root->node); 678*5d4f98a2SYan Zheng free_extent_buffer(root->commit_root); 679*5d4f98a2SYan Zheng kfree(root); 680*5d4f98a2SYan Zheng 681*5d4f98a2SYan Zheng btrfs_btree_balance_dirty(tree_root, nr); 68254aa1f4dSChris Mason return ret; 6830f7d52f4SChris Mason } 6840f7d52f4SChris Mason 685d352ac68SChris Mason /* 686d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 687d352ac68SChris Mason * transaction commit. This does the actual creation 688d352ac68SChris Mason */ 68980b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 6903063d29fSChris Mason struct btrfs_fs_info *fs_info, 6913063d29fSChris Mason struct btrfs_pending_snapshot *pending) 6923063d29fSChris Mason { 6933063d29fSChris Mason struct btrfs_key key; 69480b6794dSChris Mason struct btrfs_root_item *new_root_item; 6953063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 6963063d29fSChris Mason struct btrfs_root *root = pending->root; 6973063d29fSChris Mason struct extent_buffer *tmp; 698925baeddSChris Mason struct extent_buffer *old; 6993063d29fSChris Mason int ret; 7003063d29fSChris Mason u64 objectid; 7013063d29fSChris Mason 70280b6794dSChris Mason new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS); 70380b6794dSChris Mason if (!new_root_item) { 70480b6794dSChris Mason ret = -ENOMEM; 70580b6794dSChris Mason goto fail; 70680b6794dSChris Mason } 7073063d29fSChris Mason ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid); 7083063d29fSChris Mason if (ret) 7093063d29fSChris Mason goto fail; 7103063d29fSChris Mason 711*5d4f98a2SYan Zheng record_root_in_trans(trans, root); 71280ff3856SYan Zheng btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 71380b6794dSChris Mason memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 7143063d29fSChris Mason 7153063d29fSChris Mason key.objectid = objectid; 716*5d4f98a2SYan Zheng key.offset = 0; 7173063d29fSChris Mason btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY); 7183063d29fSChris Mason 719925baeddSChris Mason old = btrfs_lock_root_node(root); 7209fa8cfe7SChris Mason btrfs_cow_block(trans, root, old, NULL, 0, &old); 721*5d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 7223063d29fSChris Mason 723925baeddSChris Mason btrfs_copy_root(trans, root, old, &tmp, objectid); 724925baeddSChris Mason btrfs_tree_unlock(old); 725925baeddSChris Mason free_extent_buffer(old); 7263063d29fSChris Mason 727*5d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 7283063d29fSChris Mason ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key, 72980b6794dSChris Mason new_root_item); 730925baeddSChris Mason btrfs_tree_unlock(tmp); 7313063d29fSChris Mason free_extent_buffer(tmp); 7323063d29fSChris Mason if (ret) 7333063d29fSChris Mason goto fail; 7343063d29fSChris Mason 7353de4586cSChris Mason key.offset = (u64)-1; 7363de4586cSChris Mason memcpy(&pending->root_key, &key, sizeof(key)); 7373de4586cSChris Mason fail: 7383de4586cSChris Mason kfree(new_root_item); 7393de4586cSChris Mason return ret; 7403de4586cSChris Mason } 7413de4586cSChris Mason 7423de4586cSChris Mason static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info, 7433de4586cSChris Mason struct btrfs_pending_snapshot *pending) 7443de4586cSChris Mason { 7453de4586cSChris Mason int ret; 7463de4586cSChris Mason int namelen; 7473de4586cSChris Mason u64 index = 0; 7483de4586cSChris Mason struct btrfs_trans_handle *trans; 7493de4586cSChris Mason struct inode *parent_inode; 7503de4586cSChris Mason struct inode *inode; 7510660b5afSChris Mason struct btrfs_root *parent_root; 7523de4586cSChris Mason 7533394e160SChris Mason parent_inode = pending->dentry->d_parent->d_inode; 7540660b5afSChris Mason parent_root = BTRFS_I(parent_inode)->root; 755180591bcSYan Zheng trans = btrfs_join_transaction(parent_root, 1); 7563de4586cSChris Mason 7573063d29fSChris Mason /* 7583063d29fSChris Mason * insert the directory item 7593063d29fSChris Mason */ 7603b96362cSSven Wegener namelen = strlen(pending->name); 7613de4586cSChris Mason ret = btrfs_set_inode_index(parent_inode, &index); 7620660b5afSChris Mason ret = btrfs_insert_dir_item(trans, parent_root, 7633b96362cSSven Wegener pending->name, namelen, 7643de4586cSChris Mason parent_inode->i_ino, 7653de4586cSChris Mason &pending->root_key, BTRFS_FT_DIR, index); 7663063d29fSChris Mason 7673063d29fSChris Mason if (ret) 7683063d29fSChris Mason goto fail; 7690660b5afSChris Mason 77052c26179SYan Zheng btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2); 77152c26179SYan Zheng ret = btrfs_update_inode(trans, parent_root, parent_inode); 77252c26179SYan Zheng BUG_ON(ret); 77352c26179SYan Zheng 7740660b5afSChris Mason /* add the backref first */ 7750660b5afSChris Mason ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root, 7760660b5afSChris Mason pending->root_key.objectid, 7770660b5afSChris Mason BTRFS_ROOT_BACKREF_KEY, 7780660b5afSChris Mason parent_root->root_key.objectid, 7790660b5afSChris Mason parent_inode->i_ino, index, pending->name, 7800660b5afSChris Mason namelen); 7810660b5afSChris Mason 7820660b5afSChris Mason BUG_ON(ret); 7830660b5afSChris Mason 7840660b5afSChris Mason /* now add the forward ref */ 7850660b5afSChris Mason ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root, 7860660b5afSChris Mason parent_root->root_key.objectid, 7870660b5afSChris Mason BTRFS_ROOT_REF_KEY, 7880660b5afSChris Mason pending->root_key.objectid, 7890660b5afSChris Mason parent_inode->i_ino, index, pending->name, 7900660b5afSChris Mason namelen); 7910660b5afSChris Mason 7923de4586cSChris Mason inode = btrfs_lookup_dentry(parent_inode, pending->dentry); 7933de4586cSChris Mason d_instantiate(pending->dentry, inode); 7943063d29fSChris Mason fail: 7953de4586cSChris Mason btrfs_end_transaction(trans, fs_info->fs_root); 7963063d29fSChris Mason return ret; 7973063d29fSChris Mason } 7983063d29fSChris Mason 799d352ac68SChris Mason /* 800d352ac68SChris Mason * create all the snapshots we've scheduled for creation 801d352ac68SChris Mason */ 80280b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, 8033063d29fSChris Mason struct btrfs_fs_info *fs_info) 8043063d29fSChris Mason { 8053063d29fSChris Mason struct btrfs_pending_snapshot *pending; 8063063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 8073de4586cSChris Mason int ret; 8083de4586cSChris Mason 809c6e30871SQinghuang Feng list_for_each_entry(pending, head, list) { 8103de4586cSChris Mason ret = create_pending_snapshot(trans, fs_info, pending); 8113de4586cSChris Mason BUG_ON(ret); 8123de4586cSChris Mason } 8133de4586cSChris Mason return 0; 8143de4586cSChris Mason } 8153de4586cSChris Mason 8163de4586cSChris Mason static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans, 8173de4586cSChris Mason struct btrfs_fs_info *fs_info) 8183de4586cSChris Mason { 8193de4586cSChris Mason struct btrfs_pending_snapshot *pending; 8203de4586cSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 8213063d29fSChris Mason int ret; 8223063d29fSChris Mason 8233063d29fSChris Mason while (!list_empty(head)) { 8243063d29fSChris Mason pending = list_entry(head->next, 8253063d29fSChris Mason struct btrfs_pending_snapshot, list); 8263de4586cSChris Mason ret = finish_pending_snapshot(fs_info, pending); 8273063d29fSChris Mason BUG_ON(ret); 8283063d29fSChris Mason list_del(&pending->list); 8293063d29fSChris Mason kfree(pending->name); 8303063d29fSChris Mason kfree(pending); 8313063d29fSChris Mason } 832dc17ff8fSChris Mason return 0; 833dc17ff8fSChris Mason } 834dc17ff8fSChris Mason 835*5d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root) 836*5d4f98a2SYan Zheng { 837*5d4f98a2SYan Zheng struct btrfs_root_item *root_item; 838*5d4f98a2SYan Zheng struct btrfs_super_block *super; 839*5d4f98a2SYan Zheng 840*5d4f98a2SYan Zheng super = &root->fs_info->super_copy; 841*5d4f98a2SYan Zheng 842*5d4f98a2SYan Zheng root_item = &root->fs_info->chunk_root->root_item; 843*5d4f98a2SYan Zheng super->chunk_root = root_item->bytenr; 844*5d4f98a2SYan Zheng super->chunk_root_generation = root_item->generation; 845*5d4f98a2SYan Zheng super->chunk_root_level = root_item->level; 846*5d4f98a2SYan Zheng 847*5d4f98a2SYan Zheng root_item = &root->fs_info->tree_root->root_item; 848*5d4f98a2SYan Zheng super->root = root_item->bytenr; 849*5d4f98a2SYan Zheng super->generation = root_item->generation; 850*5d4f98a2SYan Zheng super->root_level = root_item->level; 851*5d4f98a2SYan Zheng } 852*5d4f98a2SYan Zheng 85379154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 85479154b1bSChris Mason struct btrfs_root *root) 85579154b1bSChris Mason { 85615ee9bc7SJosef Bacik unsigned long joined = 0; 85715ee9bc7SJosef Bacik unsigned long timeout = 1; 85879154b1bSChris Mason struct btrfs_transaction *cur_trans; 8598fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 860d1310b2eSChris Mason struct extent_io_tree *pinned_copy; 86179154b1bSChris Mason DEFINE_WAIT(wait); 86215ee9bc7SJosef Bacik int ret; 86389573b9cSChris Mason int should_grow = 0; 86489573b9cSChris Mason unsigned long now = get_seconds(); 865dccae999SSage Weil int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT); 86679154b1bSChris Mason 8675a3f23d5SChris Mason btrfs_run_ordered_operations(root, 0); 8685a3f23d5SChris Mason 86956bec294SChris Mason /* make a pass through all the delayed refs we have so far 87056bec294SChris Mason * any runnings procs may add more while we are here 87156bec294SChris Mason */ 87256bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 87356bec294SChris Mason BUG_ON(ret); 87456bec294SChris Mason 875b7ec40d7SChris Mason cur_trans = trans->transaction; 87656bec294SChris Mason /* 87756bec294SChris Mason * set the flushing flag so procs in this transaction have to 87856bec294SChris Mason * start sending their work down. 87956bec294SChris Mason */ 880b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 88156bec294SChris Mason 882c3e69d58SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 88356bec294SChris Mason BUG_ON(ret); 88456bec294SChris Mason 88579154b1bSChris Mason mutex_lock(&root->fs_info->trans_mutex); 886b7ec40d7SChris Mason if (cur_trans->in_commit) { 887b7ec40d7SChris Mason cur_trans->use_count++; 888ccd467d6SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 88979154b1bSChris Mason btrfs_end_transaction(trans, root); 890ccd467d6SChris Mason 89179154b1bSChris Mason ret = wait_for_commit(root, cur_trans); 89279154b1bSChris Mason BUG_ON(ret); 89315ee9bc7SJosef Bacik 89415ee9bc7SJosef Bacik mutex_lock(&root->fs_info->trans_mutex); 89579154b1bSChris Mason put_transaction(cur_trans); 89615ee9bc7SJosef Bacik mutex_unlock(&root->fs_info->trans_mutex); 89715ee9bc7SJosef Bacik 89879154b1bSChris Mason return 0; 89979154b1bSChris Mason } 9004313b399SChris Mason 9014313b399SChris Mason pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS); 9024313b399SChris Mason if (!pinned_copy) 9034313b399SChris Mason return -ENOMEM; 9044313b399SChris Mason 905d1310b2eSChris Mason extent_io_tree_init(pinned_copy, 9064313b399SChris Mason root->fs_info->btree_inode->i_mapping, GFP_NOFS); 9074313b399SChris Mason 9082c90e5d6SChris Mason trans->transaction->in_commit = 1; 909f9295749SChris Mason trans->transaction->blocked = 1; 910ccd467d6SChris Mason if (cur_trans->list.prev != &root->fs_info->trans_list) { 911ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 912ccd467d6SChris Mason struct btrfs_transaction, list); 913ccd467d6SChris Mason if (!prev_trans->commit_done) { 914ccd467d6SChris Mason prev_trans->use_count++; 915ccd467d6SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 916ccd467d6SChris Mason 917ccd467d6SChris Mason wait_for_commit(root, prev_trans); 918ccd467d6SChris Mason 919ccd467d6SChris Mason mutex_lock(&root->fs_info->trans_mutex); 92015ee9bc7SJosef Bacik put_transaction(prev_trans); 921ccd467d6SChris Mason } 922ccd467d6SChris Mason } 92315ee9bc7SJosef Bacik 92489573b9cSChris Mason if (now < cur_trans->start_time || now - cur_trans->start_time < 1) 92589573b9cSChris Mason should_grow = 1; 92689573b9cSChris Mason 92715ee9bc7SJosef Bacik do { 9287ea394f1SYan Zheng int snap_pending = 0; 92915ee9bc7SJosef Bacik joined = cur_trans->num_joined; 9307ea394f1SYan Zheng if (!list_empty(&trans->transaction->pending_snapshots)) 9317ea394f1SYan Zheng snap_pending = 1; 9327ea394f1SYan Zheng 9332c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 93415ee9bc7SJosef Bacik prepare_to_wait(&cur_trans->writer_wait, &wait, 93579154b1bSChris Mason TASK_UNINTERRUPTIBLE); 93615ee9bc7SJosef Bacik 93715ee9bc7SJosef Bacik if (cur_trans->num_writers > 1) 93815ee9bc7SJosef Bacik timeout = MAX_SCHEDULE_TIMEOUT; 93989573b9cSChris Mason else if (should_grow) 94015ee9bc7SJosef Bacik timeout = 1; 94115ee9bc7SJosef Bacik 94279154b1bSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 94315ee9bc7SJosef Bacik 944dccae999SSage Weil if (flush_on_commit || snap_pending) { 945dccae999SSage Weil if (flush_on_commit) 946dccae999SSage Weil btrfs_start_delalloc_inodes(root); 9477ea394f1SYan Zheng ret = btrfs_wait_ordered_extents(root, 1); 9487ea394f1SYan Zheng BUG_ON(ret); 9497ea394f1SYan Zheng } 9507ea394f1SYan Zheng 9515a3f23d5SChris Mason /* 9525a3f23d5SChris Mason * rename don't use btrfs_join_transaction, so, once we 9535a3f23d5SChris Mason * set the transaction to blocked above, we aren't going 9545a3f23d5SChris Mason * to get any new ordered operations. We can safely run 9555a3f23d5SChris Mason * it here and no for sure that nothing new will be added 9565a3f23d5SChris Mason * to the list 9575a3f23d5SChris Mason */ 9585a3f23d5SChris Mason btrfs_run_ordered_operations(root, 1); 9595a3f23d5SChris Mason 96089573b9cSChris Mason smp_mb(); 96189573b9cSChris Mason if (cur_trans->num_writers > 1 || should_grow) 96215ee9bc7SJosef Bacik schedule_timeout(timeout); 96315ee9bc7SJosef Bacik 96479154b1bSChris Mason mutex_lock(&root->fs_info->trans_mutex); 96515ee9bc7SJosef Bacik finish_wait(&cur_trans->writer_wait, &wait); 96615ee9bc7SJosef Bacik } while (cur_trans->num_writers > 1 || 96789573b9cSChris Mason (should_grow && cur_trans->num_joined != joined)); 96815ee9bc7SJosef Bacik 9693063d29fSChris Mason ret = create_pending_snapshots(trans, root->fs_info); 9703063d29fSChris Mason BUG_ON(ret); 9713063d29fSChris Mason 97256bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 97356bec294SChris Mason BUG_ON(ret); 97456bec294SChris Mason 9752c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 976dc17ff8fSChris Mason 977e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 978e02119d5SChris Mason * various roots consistent with each other. Every pointer 979e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 980e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 981e02119d5SChris Mason * the tree logging code from jumping in and changing any 982e02119d5SChris Mason * of the trees. 983e02119d5SChris Mason * 984e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 985e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 986e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 987e02119d5SChris Mason * from now until after the super is written, we avoid races 988e02119d5SChris Mason * with the tree-log code. 989e02119d5SChris Mason */ 990e02119d5SChris Mason mutex_lock(&root->fs_info->tree_log_mutex); 9911a40e23bSZheng Yan 992*5d4f98a2SYan Zheng ret = commit_fs_roots(trans, root); 99354aa1f4dSChris Mason BUG_ON(ret); 99454aa1f4dSChris Mason 995*5d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 996e02119d5SChris Mason * safe to free the root of tree log roots 997e02119d5SChris Mason */ 998e02119d5SChris Mason btrfs_free_log_root_tree(trans, root->fs_info); 999e02119d5SChris Mason 1000*5d4f98a2SYan Zheng ret = commit_cowonly_roots(trans, root); 100179154b1bSChris Mason BUG_ON(ret); 100254aa1f4dSChris Mason 100378fae27eSChris Mason cur_trans = root->fs_info->running_transaction; 1004cee36a03SChris Mason spin_lock(&root->fs_info->new_trans_lock); 100578fae27eSChris Mason root->fs_info->running_transaction = NULL; 1006cee36a03SChris Mason spin_unlock(&root->fs_info->new_trans_lock); 10075f39d397SChris Mason 1008*5d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->tree_root->root_item, 1009*5d4f98a2SYan Zheng root->fs_info->tree_root->node); 1010*5d4f98a2SYan Zheng free_extent_buffer(root->fs_info->tree_root->commit_root); 1011*5d4f98a2SYan Zheng root->fs_info->tree_root->commit_root = 1012*5d4f98a2SYan Zheng btrfs_root_node(root->fs_info->tree_root); 1013*5d4f98a2SYan Zheng 1014*5d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->chunk_root->root_item, 1015*5d4f98a2SYan Zheng root->fs_info->chunk_root->node); 1016*5d4f98a2SYan Zheng free_extent_buffer(root->fs_info->chunk_root->commit_root); 1017*5d4f98a2SYan Zheng root->fs_info->chunk_root->commit_root = 1018*5d4f98a2SYan Zheng btrfs_root_node(root->fs_info->chunk_root); 1019*5d4f98a2SYan Zheng 1020*5d4f98a2SYan Zheng update_super_roots(root); 1021e02119d5SChris Mason 1022e02119d5SChris Mason if (!root->fs_info->log_root_recovering) { 1023e02119d5SChris Mason btrfs_set_super_log_root(&root->fs_info->super_copy, 0); 1024e02119d5SChris Mason btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0); 1025e02119d5SChris Mason } 1026e02119d5SChris Mason 1027a061fc8dSChris Mason memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy, 10284b52dff6SChris Mason sizeof(root->fs_info->super_copy)); 1029ccd467d6SChris Mason 10304313b399SChris Mason btrfs_copy_pinned(root, pinned_copy); 1031ccd467d6SChris Mason 1032f9295749SChris Mason trans->transaction->blocked = 0; 1033b7ec40d7SChris Mason 1034f9295749SChris Mason wake_up(&root->fs_info->transaction_wait); 1035e6dcd2dcSChris Mason 103678fae27eSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 103779154b1bSChris Mason ret = btrfs_write_and_wait_transaction(trans, root); 103879154b1bSChris Mason BUG_ON(ret); 1039a512bbf8SYan Zheng write_ctree_super(trans, root, 0); 10404313b399SChris Mason 1041e02119d5SChris Mason /* 1042e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 1043e02119d5SChris Mason * to go about their business 1044e02119d5SChris Mason */ 1045e02119d5SChris Mason mutex_unlock(&root->fs_info->tree_log_mutex); 1046e02119d5SChris Mason 10474313b399SChris Mason btrfs_finish_extent_commit(trans, root, pinned_copy); 10484313b399SChris Mason kfree(pinned_copy); 10494313b399SChris Mason 10503de4586cSChris Mason /* do the directory inserts of any pending snapshot creations */ 10513de4586cSChris Mason finish_pending_snapshots(trans, root->fs_info); 10523de4586cSChris Mason 10531a40e23bSZheng Yan mutex_lock(&root->fs_info->trans_mutex); 10541a40e23bSZheng Yan 10552c90e5d6SChris Mason cur_trans->commit_done = 1; 1056b7ec40d7SChris Mason 105715ee9bc7SJosef Bacik root->fs_info->last_trans_committed = cur_trans->transid; 10582c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 10593de4586cSChris Mason 106079154b1bSChris Mason put_transaction(cur_trans); 106178fae27eSChris Mason put_transaction(cur_trans); 106258176a96SJosef Bacik 106378fae27eSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 10643de4586cSChris Mason 10652c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 106679154b1bSChris Mason return ret; 106779154b1bSChris Mason } 106879154b1bSChris Mason 1069d352ac68SChris Mason /* 1070d352ac68SChris Mason * interface function to delete all the snapshots we have scheduled for deletion 1071d352ac68SChris Mason */ 1072e9d0b13bSChris Mason int btrfs_clean_old_snapshots(struct btrfs_root *root) 1073e9d0b13bSChris Mason { 1074*5d4f98a2SYan Zheng LIST_HEAD(list); 1075*5d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 1076e9d0b13bSChris Mason 1077*5d4f98a2SYan Zheng mutex_lock(&fs_info->trans_mutex); 1078*5d4f98a2SYan Zheng list_splice_init(&fs_info->dead_roots, &list); 1079*5d4f98a2SYan Zheng mutex_unlock(&fs_info->trans_mutex); 1080*5d4f98a2SYan Zheng 1081*5d4f98a2SYan Zheng while (!list_empty(&list)) { 1082*5d4f98a2SYan Zheng root = list_entry(list.next, struct btrfs_root, root_list); 1083*5d4f98a2SYan Zheng list_del_init(&root->root_list); 1084*5d4f98a2SYan Zheng btrfs_drop_dead_root(root); 1085e9d0b13bSChris Mason } 1086e9d0b13bSChris Mason return 0; 1087e9d0b13bSChris Mason } 1088