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 43*817d52f8SJosef Bacik static noinline void switch_commit_root(struct btrfs_root *root) 44*817d52f8SJosef Bacik { 45*817d52f8SJosef Bacik down_write(&root->commit_root_sem); 46*817d52f8SJosef Bacik free_extent_buffer(root->commit_root); 47*817d52f8SJosef Bacik root->commit_root = btrfs_root_node(root); 48*817d52f8SJosef Bacik up_write(&root->commit_root_sem); 49*817d52f8SJosef Bacik } 50*817d52f8SJosef Bacik 51d352ac68SChris Mason /* 52d352ac68SChris Mason * either allocate a new transaction or hop into the existing one 53d352ac68SChris Mason */ 5480b6794dSChris Mason static noinline int join_transaction(struct btrfs_root *root) 5579154b1bSChris Mason { 5679154b1bSChris Mason struct btrfs_transaction *cur_trans; 5779154b1bSChris Mason cur_trans = root->fs_info->running_transaction; 5879154b1bSChris Mason if (!cur_trans) { 592c90e5d6SChris Mason cur_trans = kmem_cache_alloc(btrfs_transaction_cachep, 602c90e5d6SChris Mason GFP_NOFS); 6179154b1bSChris Mason BUG_ON(!cur_trans); 620f7d52f4SChris Mason root->fs_info->generation++; 6315ee9bc7SJosef Bacik cur_trans->num_writers = 1; 6415ee9bc7SJosef Bacik cur_trans->num_joined = 0; 650f7d52f4SChris Mason cur_trans->transid = root->fs_info->generation; 6679154b1bSChris Mason init_waitqueue_head(&cur_trans->writer_wait); 6779154b1bSChris Mason init_waitqueue_head(&cur_trans->commit_wait); 6879154b1bSChris Mason cur_trans->in_commit = 0; 69f9295749SChris Mason cur_trans->blocked = 0; 70d5719762SChris Mason cur_trans->use_count = 1; 7179154b1bSChris Mason cur_trans->commit_done = 0; 7208607c1bSChris Mason cur_trans->start_time = get_seconds(); 7356bec294SChris Mason 7456bec294SChris Mason cur_trans->delayed_refs.root.rb_node = NULL; 7556bec294SChris Mason cur_trans->delayed_refs.num_entries = 0; 76c3e69d58SChris Mason cur_trans->delayed_refs.num_heads_ready = 0; 77c3e69d58SChris Mason cur_trans->delayed_refs.num_heads = 0; 7856bec294SChris Mason cur_trans->delayed_refs.flushing = 0; 79c3e69d58SChris Mason cur_trans->delayed_refs.run_delayed_start = 0; 8056bec294SChris Mason spin_lock_init(&cur_trans->delayed_refs.lock); 8156bec294SChris Mason 823063d29fSChris Mason INIT_LIST_HEAD(&cur_trans->pending_snapshots); 838fd17795SChris Mason list_add_tail(&cur_trans->list, &root->fs_info->trans_list); 84d1310b2eSChris Mason extent_io_tree_init(&cur_trans->dirty_pages, 855f39d397SChris Mason root->fs_info->btree_inode->i_mapping, 865f39d397SChris Mason GFP_NOFS); 8748ec2cf8SChris Mason spin_lock(&root->fs_info->new_trans_lock); 8848ec2cf8SChris Mason root->fs_info->running_transaction = cur_trans; 8948ec2cf8SChris Mason spin_unlock(&root->fs_info->new_trans_lock); 9015ee9bc7SJosef Bacik } else { 9179154b1bSChris Mason cur_trans->num_writers++; 9215ee9bc7SJosef Bacik cur_trans->num_joined++; 9315ee9bc7SJosef Bacik } 9415ee9bc7SJosef Bacik 9579154b1bSChris Mason return 0; 9679154b1bSChris Mason } 9779154b1bSChris Mason 98d352ac68SChris Mason /* 99d397712bSChris Mason * this does all the record keeping required to make sure that a reference 100d397712bSChris Mason * counted root is properly recorded in a given transaction. This is required 101d397712bSChris Mason * to make sure the old root from before we joined the transaction is deleted 102d397712bSChris Mason * when the transaction commits 103d352ac68SChris Mason */ 1045d4f98a2SYan Zheng static noinline int record_root_in_trans(struct btrfs_trans_handle *trans, 1055d4f98a2SYan Zheng struct btrfs_root *root) 1066702ed49SChris Mason { 1075d4f98a2SYan Zheng if (root->ref_cows && root->last_trans < trans->transid) { 1086702ed49SChris Mason WARN_ON(root == root->fs_info->extent_root); 1095d4f98a2SYan Zheng WARN_ON(root->root_item.refs == 0); 1105d4f98a2SYan Zheng WARN_ON(root->commit_root != root->node); 1115d4f98a2SYan Zheng 1126702ed49SChris Mason radix_tree_tag_set(&root->fs_info->fs_roots_radix, 1136702ed49SChris Mason (unsigned long)root->root_key.objectid, 1146702ed49SChris Mason BTRFS_ROOT_TRANS_TAG); 1155d4f98a2SYan Zheng root->last_trans = trans->transid; 1165d4f98a2SYan Zheng btrfs_init_reloc_root(trans, root); 1176702ed49SChris Mason } 1185d4f98a2SYan Zheng return 0; 1196702ed49SChris Mason } 1205d4f98a2SYan Zheng 1215d4f98a2SYan Zheng int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans, 1225d4f98a2SYan Zheng struct btrfs_root *root) 1235d4f98a2SYan Zheng { 1245d4f98a2SYan Zheng if (!root->ref_cows) 1255d4f98a2SYan Zheng return 0; 1265d4f98a2SYan Zheng 1275d4f98a2SYan Zheng mutex_lock(&root->fs_info->trans_mutex); 1285d4f98a2SYan Zheng if (root->last_trans == trans->transid) { 1295d4f98a2SYan Zheng mutex_unlock(&root->fs_info->trans_mutex); 1305d4f98a2SYan Zheng return 0; 1315d4f98a2SYan Zheng } 1325d4f98a2SYan Zheng 1335d4f98a2SYan Zheng record_root_in_trans(trans, root); 1345d4f98a2SYan Zheng mutex_unlock(&root->fs_info->trans_mutex); 1356702ed49SChris Mason return 0; 1366702ed49SChris Mason } 1376702ed49SChris Mason 138d352ac68SChris Mason /* wait for commit against the current transaction to become unblocked 139d352ac68SChris Mason * when this is done, it is safe to start a new transaction, but the current 140d352ac68SChris Mason * transaction might not be fully on disk. 141d352ac68SChris Mason */ 14237d1aeeeSChris Mason static void wait_current_trans(struct btrfs_root *root) 14379154b1bSChris Mason { 144f9295749SChris Mason struct btrfs_transaction *cur_trans; 14579154b1bSChris Mason 146f9295749SChris Mason cur_trans = root->fs_info->running_transaction; 14737d1aeeeSChris Mason if (cur_trans && cur_trans->blocked) { 148f9295749SChris Mason DEFINE_WAIT(wait); 149f9295749SChris Mason cur_trans->use_count++; 150f9295749SChris Mason while (1) { 151f9295749SChris Mason prepare_to_wait(&root->fs_info->transaction_wait, &wait, 152f9295749SChris Mason TASK_UNINTERRUPTIBLE); 153f9295749SChris Mason if (cur_trans->blocked) { 154f9295749SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 155f9295749SChris Mason schedule(); 156f9295749SChris Mason mutex_lock(&root->fs_info->trans_mutex); 157f9295749SChris Mason finish_wait(&root->fs_info->transaction_wait, 158f9295749SChris Mason &wait); 159f9295749SChris Mason } else { 160f9295749SChris Mason finish_wait(&root->fs_info->transaction_wait, 161f9295749SChris Mason &wait); 162f9295749SChris Mason break; 163f9295749SChris Mason } 164f9295749SChris Mason } 165f9295749SChris Mason put_transaction(cur_trans); 166f9295749SChris Mason } 16737d1aeeeSChris Mason } 16837d1aeeeSChris Mason 169e02119d5SChris Mason static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root, 1709ca9ee09SSage Weil int num_blocks, int wait) 17137d1aeeeSChris Mason { 17237d1aeeeSChris Mason struct btrfs_trans_handle *h = 17337d1aeeeSChris Mason kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS); 17437d1aeeeSChris Mason int ret; 17537d1aeeeSChris Mason 17637d1aeeeSChris Mason mutex_lock(&root->fs_info->trans_mutex); 1774bef0848SChris Mason if (!root->fs_info->log_root_recovering && 1784bef0848SChris Mason ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2)) 17937d1aeeeSChris Mason wait_current_trans(root); 18079154b1bSChris Mason ret = join_transaction(root); 18179154b1bSChris Mason BUG_ON(ret); 1820f7d52f4SChris Mason 1836702ed49SChris Mason h->transid = root->fs_info->running_transaction->transid; 18479154b1bSChris Mason h->transaction = root->fs_info->running_transaction; 18579154b1bSChris Mason h->blocks_reserved = num_blocks; 18679154b1bSChris Mason h->blocks_used = 0; 187d2fb3437SYan Zheng h->block_group = 0; 18826b8003fSChris Mason h->alloc_exclude_nr = 0; 18926b8003fSChris Mason h->alloc_exclude_start = 0; 19056bec294SChris Mason h->delayed_ref_updates = 0; 191b7ec40d7SChris Mason 19279154b1bSChris Mason root->fs_info->running_transaction->use_count++; 1935d4f98a2SYan Zheng record_root_in_trans(h, root); 19479154b1bSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 19579154b1bSChris Mason return h; 19679154b1bSChris Mason } 19779154b1bSChris Mason 198f9295749SChris Mason struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root, 199f9295749SChris Mason int num_blocks) 200f9295749SChris Mason { 2019ca9ee09SSage Weil return start_transaction(root, num_blocks, 1); 202f9295749SChris Mason } 203f9295749SChris Mason struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root, 204f9295749SChris Mason int num_blocks) 205f9295749SChris Mason { 2069ca9ee09SSage Weil return start_transaction(root, num_blocks, 0); 207f9295749SChris Mason } 208f9295749SChris Mason 2099ca9ee09SSage Weil struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r, 2109ca9ee09SSage Weil int num_blocks) 2119ca9ee09SSage Weil { 2129ca9ee09SSage Weil return start_transaction(r, num_blocks, 2); 2139ca9ee09SSage Weil } 2149ca9ee09SSage Weil 215d352ac68SChris Mason /* wait for a transaction commit to be fully complete */ 21689ce8a63SChris Mason static noinline int wait_for_commit(struct btrfs_root *root, 21789ce8a63SChris Mason struct btrfs_transaction *commit) 21889ce8a63SChris Mason { 21989ce8a63SChris Mason DEFINE_WAIT(wait); 22089ce8a63SChris Mason mutex_lock(&root->fs_info->trans_mutex); 22189ce8a63SChris Mason while (!commit->commit_done) { 22289ce8a63SChris Mason prepare_to_wait(&commit->commit_wait, &wait, 22389ce8a63SChris Mason TASK_UNINTERRUPTIBLE); 22489ce8a63SChris Mason if (commit->commit_done) 22589ce8a63SChris Mason break; 22689ce8a63SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 22789ce8a63SChris Mason schedule(); 22889ce8a63SChris Mason mutex_lock(&root->fs_info->trans_mutex); 22989ce8a63SChris Mason } 23089ce8a63SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 23189ce8a63SChris Mason finish_wait(&commit->commit_wait, &wait); 23289ce8a63SChris Mason return 0; 23389ce8a63SChris Mason } 23489ce8a63SChris Mason 2355d4f98a2SYan Zheng #if 0 236d352ac68SChris Mason /* 237d397712bSChris Mason * rate limit against the drop_snapshot code. This helps to slow down new 238d397712bSChris Mason * operations if the drop_snapshot code isn't able to keep up. 239d352ac68SChris Mason */ 24037d1aeeeSChris Mason static void throttle_on_drops(struct btrfs_root *root) 241ab78c84dSChris Mason { 242ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 2432dd3e67bSChris Mason int harder_count = 0; 244ab78c84dSChris Mason 2452dd3e67bSChris Mason harder: 246ab78c84dSChris Mason if (atomic_read(&info->throttles)) { 247ab78c84dSChris Mason DEFINE_WAIT(wait); 248ab78c84dSChris Mason int thr; 249ab78c84dSChris Mason thr = atomic_read(&info->throttle_gen); 250ab78c84dSChris Mason 251ab78c84dSChris Mason do { 252ab78c84dSChris Mason prepare_to_wait(&info->transaction_throttle, 253ab78c84dSChris Mason &wait, TASK_UNINTERRUPTIBLE); 254ab78c84dSChris Mason if (!atomic_read(&info->throttles)) { 255ab78c84dSChris Mason finish_wait(&info->transaction_throttle, &wait); 256ab78c84dSChris Mason break; 257ab78c84dSChris Mason } 258ab78c84dSChris Mason schedule(); 259ab78c84dSChris Mason finish_wait(&info->transaction_throttle, &wait); 260ab78c84dSChris Mason } while (thr == atomic_read(&info->throttle_gen)); 2612dd3e67bSChris Mason harder_count++; 2622dd3e67bSChris Mason 2632dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 && 2642dd3e67bSChris Mason harder_count < 2) 2652dd3e67bSChris Mason goto harder; 2662dd3e67bSChris Mason 2672dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 && 2682dd3e67bSChris Mason harder_count < 10) 2692dd3e67bSChris Mason goto harder; 2702dd3e67bSChris Mason 2712dd3e67bSChris Mason if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 && 2722dd3e67bSChris Mason harder_count < 20) 2732dd3e67bSChris Mason goto harder; 274ab78c84dSChris Mason } 275ab78c84dSChris Mason } 2765d4f98a2SYan Zheng #endif 277ab78c84dSChris Mason 27837d1aeeeSChris Mason void btrfs_throttle(struct btrfs_root *root) 27937d1aeeeSChris Mason { 28037d1aeeeSChris Mason mutex_lock(&root->fs_info->trans_mutex); 2819ca9ee09SSage Weil if (!root->fs_info->open_ioctl_trans) 28237d1aeeeSChris Mason wait_current_trans(root); 28337d1aeeeSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 28437d1aeeeSChris Mason } 28537d1aeeeSChris Mason 28689ce8a63SChris Mason static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, 28789ce8a63SChris Mason struct btrfs_root *root, int throttle) 28879154b1bSChris Mason { 28979154b1bSChris Mason struct btrfs_transaction *cur_trans; 290ab78c84dSChris Mason struct btrfs_fs_info *info = root->fs_info; 291c3e69d58SChris Mason int count = 0; 292d6e4a428SChris Mason 293c3e69d58SChris Mason while (count < 4) { 294c3e69d58SChris Mason unsigned long cur = trans->delayed_ref_updates; 295c3e69d58SChris Mason trans->delayed_ref_updates = 0; 296c3e69d58SChris Mason if (cur && 297c3e69d58SChris Mason trans->transaction->delayed_refs.num_heads_ready > 64) { 298c3e69d58SChris Mason trans->delayed_ref_updates = 0; 299b7ec40d7SChris Mason 300b7ec40d7SChris Mason /* 301b7ec40d7SChris Mason * do a full flush if the transaction is trying 302b7ec40d7SChris Mason * to close 303b7ec40d7SChris Mason */ 304b7ec40d7SChris Mason if (trans->transaction->delayed_refs.flushing) 305b7ec40d7SChris Mason cur = 0; 306c3e69d58SChris Mason btrfs_run_delayed_refs(trans, root, cur); 307c3e69d58SChris Mason } else { 308c3e69d58SChris Mason break; 309c3e69d58SChris Mason } 310c3e69d58SChris Mason count++; 31156bec294SChris Mason } 31256bec294SChris Mason 313ab78c84dSChris Mason mutex_lock(&info->trans_mutex); 314ab78c84dSChris Mason cur_trans = info->running_transaction; 315ccd467d6SChris Mason WARN_ON(cur_trans != trans->transaction); 316d5719762SChris Mason WARN_ON(cur_trans->num_writers < 1); 317ccd467d6SChris Mason cur_trans->num_writers--; 31889ce8a63SChris Mason 31979154b1bSChris Mason if (waitqueue_active(&cur_trans->writer_wait)) 32079154b1bSChris Mason wake_up(&cur_trans->writer_wait); 32179154b1bSChris Mason put_transaction(cur_trans); 322ab78c84dSChris Mason mutex_unlock(&info->trans_mutex); 323d6025579SChris Mason memset(trans, 0, sizeof(*trans)); 3242c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 325ab78c84dSChris Mason 32679154b1bSChris Mason return 0; 32779154b1bSChris Mason } 32879154b1bSChris Mason 32989ce8a63SChris Mason int btrfs_end_transaction(struct btrfs_trans_handle *trans, 33089ce8a63SChris Mason struct btrfs_root *root) 33189ce8a63SChris Mason { 33289ce8a63SChris Mason return __btrfs_end_transaction(trans, root, 0); 33389ce8a63SChris Mason } 33489ce8a63SChris Mason 33589ce8a63SChris Mason int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 33689ce8a63SChris Mason struct btrfs_root *root) 33789ce8a63SChris Mason { 33889ce8a63SChris Mason return __btrfs_end_transaction(trans, root, 1); 33989ce8a63SChris Mason } 34089ce8a63SChris Mason 341d352ac68SChris Mason /* 342d352ac68SChris Mason * when btree blocks are allocated, they have some corresponding bits set for 343d352ac68SChris Mason * them in one of two extent_io trees. This is used to make sure all of 344d352ac68SChris Mason * those extents are on disk for transaction or log commit 345d352ac68SChris Mason */ 346d0c803c4SChris Mason int btrfs_write_and_wait_marked_extents(struct btrfs_root *root, 347d0c803c4SChris Mason struct extent_io_tree *dirty_pages) 34879154b1bSChris Mason { 3497c4452b9SChris Mason int ret; 350777e6bd7SChris Mason int err = 0; 3517c4452b9SChris Mason int werr = 0; 3527c4452b9SChris Mason struct page *page; 3537c4452b9SChris Mason struct inode *btree_inode = root->fs_info->btree_inode; 354777e6bd7SChris Mason u64 start = 0; 3555f39d397SChris Mason u64 end; 3565f39d397SChris Mason unsigned long index; 3577c4452b9SChris Mason 3587c4452b9SChris Mason while (1) { 359777e6bd7SChris Mason ret = find_first_extent_bit(dirty_pages, start, &start, &end, 3605f39d397SChris Mason EXTENT_DIRTY); 3615f39d397SChris Mason if (ret) 3627c4452b9SChris Mason break; 3635f39d397SChris Mason while (start <= end) { 364777e6bd7SChris Mason cond_resched(); 365777e6bd7SChris Mason 3665f39d397SChris Mason index = start >> PAGE_CACHE_SHIFT; 36735ebb934SChris Mason start = (u64)(index + 1) << PAGE_CACHE_SHIFT; 3684bef0848SChris Mason page = find_get_page(btree_inode->i_mapping, index); 3697c4452b9SChris Mason if (!page) 3707c4452b9SChris Mason continue; 3714bef0848SChris Mason 3724bef0848SChris Mason btree_lock_page_hook(page); 3734bef0848SChris Mason if (!page->mapping) { 3744bef0848SChris Mason unlock_page(page); 3754bef0848SChris Mason page_cache_release(page); 3764bef0848SChris Mason continue; 3774bef0848SChris Mason } 3784bef0848SChris Mason 3796702ed49SChris Mason if (PageWriteback(page)) { 3806702ed49SChris Mason if (PageDirty(page)) 3816702ed49SChris Mason wait_on_page_writeback(page); 3826702ed49SChris Mason else { 3836702ed49SChris Mason unlock_page(page); 3846702ed49SChris Mason page_cache_release(page); 3856702ed49SChris Mason continue; 3866702ed49SChris Mason } 3876702ed49SChris Mason } 3887c4452b9SChris Mason err = write_one_page(page, 0); 3897c4452b9SChris Mason if (err) 3907c4452b9SChris Mason werr = err; 3917c4452b9SChris Mason page_cache_release(page); 3927c4452b9SChris Mason } 3937c4452b9SChris Mason } 394777e6bd7SChris Mason while (1) { 395777e6bd7SChris Mason ret = find_first_extent_bit(dirty_pages, 0, &start, &end, 396777e6bd7SChris Mason EXTENT_DIRTY); 397777e6bd7SChris Mason if (ret) 398777e6bd7SChris Mason break; 399777e6bd7SChris Mason 400777e6bd7SChris Mason clear_extent_dirty(dirty_pages, start, end, GFP_NOFS); 401777e6bd7SChris Mason while (start <= end) { 402777e6bd7SChris Mason index = start >> PAGE_CACHE_SHIFT; 403777e6bd7SChris Mason start = (u64)(index + 1) << PAGE_CACHE_SHIFT; 404777e6bd7SChris Mason page = find_get_page(btree_inode->i_mapping, index); 405777e6bd7SChris Mason if (!page) 406777e6bd7SChris Mason continue; 407777e6bd7SChris Mason if (PageDirty(page)) { 4084bef0848SChris Mason btree_lock_page_hook(page); 4094bef0848SChris Mason wait_on_page_writeback(page); 410777e6bd7SChris Mason err = write_one_page(page, 0); 411777e6bd7SChris Mason if (err) 412777e6bd7SChris Mason werr = err; 413777e6bd7SChris Mason } 414777e6bd7SChris Mason wait_on_page_writeback(page); 415777e6bd7SChris Mason page_cache_release(page); 416777e6bd7SChris Mason cond_resched(); 417777e6bd7SChris Mason } 418777e6bd7SChris Mason } 4197c4452b9SChris Mason if (err) 4207c4452b9SChris Mason werr = err; 4217c4452b9SChris Mason return werr; 42279154b1bSChris Mason } 42379154b1bSChris Mason 424d0c803c4SChris Mason int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, 425d0c803c4SChris Mason struct btrfs_root *root) 426d0c803c4SChris Mason { 427d0c803c4SChris Mason if (!trans || !trans->transaction) { 428d0c803c4SChris Mason struct inode *btree_inode; 429d0c803c4SChris Mason btree_inode = root->fs_info->btree_inode; 430d0c803c4SChris Mason return filemap_write_and_wait(btree_inode->i_mapping); 431d0c803c4SChris Mason } 432d0c803c4SChris Mason return btrfs_write_and_wait_marked_extents(root, 433d0c803c4SChris Mason &trans->transaction->dirty_pages); 434d0c803c4SChris Mason } 435d0c803c4SChris Mason 436d352ac68SChris Mason /* 437d352ac68SChris Mason * this is used to update the root pointer in the tree of tree roots. 438d352ac68SChris Mason * 439d352ac68SChris Mason * But, in the case of the extent allocation tree, updating the root 440d352ac68SChris Mason * pointer may allocate blocks which may change the root of the extent 441d352ac68SChris Mason * allocation tree. 442d352ac68SChris Mason * 443d352ac68SChris Mason * So, this loops and repeats and makes sure the cowonly root didn't 444d352ac68SChris Mason * change while the root pointer was being updated in the metadata. 445d352ac68SChris Mason */ 4460b86a832SChris Mason static int update_cowonly_root(struct btrfs_trans_handle *trans, 44779154b1bSChris Mason struct btrfs_root *root) 44879154b1bSChris Mason { 44979154b1bSChris Mason int ret; 4500b86a832SChris Mason u64 old_root_bytenr; 4510b86a832SChris Mason struct btrfs_root *tree_root = root->fs_info->tree_root; 45279154b1bSChris Mason 4530b86a832SChris Mason btrfs_write_dirty_block_groups(trans, root); 45456bec294SChris Mason 45579154b1bSChris Mason while (1) { 4560b86a832SChris Mason old_root_bytenr = btrfs_root_bytenr(&root->root_item); 4570b86a832SChris Mason if (old_root_bytenr == root->node->start) 45879154b1bSChris Mason break; 45987ef2bb4SChris Mason 4605d4f98a2SYan Zheng btrfs_set_root_node(&root->root_item, root->node); 46179154b1bSChris Mason ret = btrfs_update_root(trans, tree_root, 4620b86a832SChris Mason &root->root_key, 4630b86a832SChris Mason &root->root_item); 46479154b1bSChris Mason BUG_ON(ret); 46556bec294SChris Mason 4664a8c9a62SYan Zheng ret = btrfs_write_dirty_block_groups(trans, root); 46756bec294SChris Mason BUG_ON(ret); 4680b86a832SChris Mason } 469*817d52f8SJosef Bacik switch_commit_root(root); 4700b86a832SChris Mason return 0; 4710b86a832SChris Mason } 4720b86a832SChris Mason 473d352ac68SChris Mason /* 474d352ac68SChris Mason * update all the cowonly tree roots on disk 475d352ac68SChris Mason */ 4765d4f98a2SYan Zheng static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans, 4770b86a832SChris Mason struct btrfs_root *root) 4780b86a832SChris Mason { 4790b86a832SChris Mason struct btrfs_fs_info *fs_info = root->fs_info; 4800b86a832SChris Mason struct list_head *next; 48184234f3aSYan Zheng struct extent_buffer *eb; 48256bec294SChris Mason int ret; 48384234f3aSYan Zheng 48456bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 48556bec294SChris Mason BUG_ON(ret); 48687ef2bb4SChris Mason 48784234f3aSYan Zheng eb = btrfs_lock_root_node(fs_info->tree_root); 4889fa8cfe7SChris Mason btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb); 48984234f3aSYan Zheng btrfs_tree_unlock(eb); 49084234f3aSYan Zheng free_extent_buffer(eb); 4910b86a832SChris Mason 49256bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 49356bec294SChris Mason BUG_ON(ret); 49487ef2bb4SChris Mason 4950b86a832SChris Mason while (!list_empty(&fs_info->dirty_cowonly_roots)) { 4960b86a832SChris Mason next = fs_info->dirty_cowonly_roots.next; 4970b86a832SChris Mason list_del_init(next); 4980b86a832SChris Mason root = list_entry(next, struct btrfs_root, dirty_list); 49987ef2bb4SChris Mason 5000b86a832SChris Mason update_cowonly_root(trans, root); 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 */ 5105d4f98a2SYan Zheng int btrfs_add_dead_root(struct btrfs_root *root) 5115eda7b5eSChris Mason { 512b48652c1SYan Zheng mutex_lock(&root->fs_info->trans_mutex); 5135d4f98a2SYan 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 /* 5195d4f98a2SYan Zheng * update all the cowonly tree roots on disk 520d352ac68SChris Mason */ 5215d4f98a2SYan Zheng static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, 5225d4f98a2SYan Zheng struct btrfs_root *root) 5230f7d52f4SChris Mason { 5240f7d52f4SChris Mason struct btrfs_root *gang[8]; 5255d4f98a2SYan 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) { 5315d4f98a2SYan Zheng ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix, 5325d4f98a2SYan 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]; 5395d4f98a2SYan 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); 5445d4f98a2SYan Zheng btrfs_update_reloc_root(trans, root); 545e02119d5SChris Mason 546978d910dSYan Zheng if (root->commit_root != root->node) { 547*817d52f8SJosef Bacik switch_commit_root(root); 548978d910dSYan Zheng btrfs_set_root_node(&root->root_item, 549978d910dSYan Zheng root->node); 550978d910dSYan Zheng } 55131153d81SYan Zheng 5525d4f98a2SYan Zheng err = btrfs_update_root(trans, fs_info->tree_root, 5530f7d52f4SChris Mason &root->root_key, 5540f7d52f4SChris Mason &root->root_item); 55554aa1f4dSChris Mason if (err) 55654aa1f4dSChris Mason break; 5570f7d52f4SChris Mason } 5589f3a7427SChris Mason } 55954aa1f4dSChris Mason return err; 5600f7d52f4SChris Mason } 5610f7d52f4SChris Mason 562d352ac68SChris Mason /* 563d352ac68SChris Mason * defrag a given btree. If cacheonly == 1, this won't read from the disk, 564d352ac68SChris Mason * otherwise every leaf in the btree is read and defragged. 565d352ac68SChris Mason */ 566e9d0b13bSChris Mason int btrfs_defrag_root(struct btrfs_root *root, int cacheonly) 567e9d0b13bSChris Mason { 568e9d0b13bSChris Mason struct btrfs_fs_info *info = root->fs_info; 569e9d0b13bSChris Mason int ret; 570e9d0b13bSChris Mason struct btrfs_trans_handle *trans; 571d3c2fdcfSChris Mason unsigned long nr; 572e9d0b13bSChris Mason 573a2135011SChris Mason smp_mb(); 574e9d0b13bSChris Mason if (root->defrag_running) 575e9d0b13bSChris Mason return 0; 576e9d0b13bSChris Mason trans = btrfs_start_transaction(root, 1); 5776b80053dSChris Mason while (1) { 578e9d0b13bSChris Mason root->defrag_running = 1; 579e9d0b13bSChris Mason ret = btrfs_defrag_leaves(trans, root, cacheonly); 580d3c2fdcfSChris Mason nr = trans->blocks_used; 581e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 582d3c2fdcfSChris Mason btrfs_btree_balance_dirty(info->tree_root, nr); 583e9d0b13bSChris Mason cond_resched(); 584e9d0b13bSChris Mason 585e9d0b13bSChris Mason trans = btrfs_start_transaction(root, 1); 5863f157a2fSChris Mason if (root->fs_info->closing || ret != -EAGAIN) 587e9d0b13bSChris Mason break; 588e9d0b13bSChris Mason } 589e9d0b13bSChris Mason root->defrag_running = 0; 590a2135011SChris Mason smp_mb(); 591e9d0b13bSChris Mason btrfs_end_transaction(trans, root); 592e9d0b13bSChris Mason return 0; 593e9d0b13bSChris Mason } 594e9d0b13bSChris Mason 5952c47e605SYan Zheng #if 0 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 */ 6275d4f98a2SYan Zheng int btrfs_drop_dead_root(struct btrfs_root *root) 6280f7d52f4SChris Mason { 6290f7d52f4SChris Mason struct btrfs_trans_handle *trans; 6305d4f98a2SYan Zheng struct btrfs_root *tree_root = root->fs_info->tree_root; 631d3c2fdcfSChris Mason unsigned long nr; 6325d4f98a2SYan 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 6515d4f98a2SYan Zheng ret = btrfs_drop_snapshot(trans, root); 652d397712bSChris Mason if (ret != -EAGAIN) 6539f3a7427SChris Mason break; 65458176a96SJosef Bacik 6555d4f98a2SYan Zheng ret = btrfs_update_root(trans, tree_root, 6565d4f98a2SYan Zheng &root->root_key, 6575d4f98a2SYan Zheng &root->root_item); 6585d4f98a2SYan 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 } 6685d4f98a2SYan Zheng BUG_ON(ret); 6695d4f98a2SYan Zheng 6705d4f98a2SYan Zheng ret = btrfs_del_root(trans, tree_root, &root->root_key); 6715d4f98a2SYan Zheng BUG_ON(ret); 6725d4f98a2SYan Zheng 6735d4f98a2SYan Zheng nr = trans->blocks_used; 6745d4f98a2SYan Zheng ret = btrfs_end_transaction(trans, tree_root); 6755d4f98a2SYan Zheng BUG_ON(ret); 6765d4f98a2SYan Zheng 6775d4f98a2SYan Zheng free_extent_buffer(root->node); 6785d4f98a2SYan Zheng free_extent_buffer(root->commit_root); 6795d4f98a2SYan Zheng kfree(root); 6805d4f98a2SYan Zheng 6815d4f98a2SYan Zheng btrfs_btree_balance_dirty(tree_root, nr); 68254aa1f4dSChris Mason return ret; 6830f7d52f4SChris Mason } 6842c47e605SYan Zheng #endif 6850f7d52f4SChris Mason 686d352ac68SChris Mason /* 687d352ac68SChris Mason * new snapshots need to be created at a very specific time in the 688d352ac68SChris Mason * transaction commit. This does the actual creation 689d352ac68SChris Mason */ 69080b6794dSChris Mason static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, 6913063d29fSChris Mason struct btrfs_fs_info *fs_info, 6923063d29fSChris Mason struct btrfs_pending_snapshot *pending) 6933063d29fSChris Mason { 6943063d29fSChris Mason struct btrfs_key key; 69580b6794dSChris Mason struct btrfs_root_item *new_root_item; 6963063d29fSChris Mason struct btrfs_root *tree_root = fs_info->tree_root; 6973063d29fSChris Mason struct btrfs_root *root = pending->root; 6983063d29fSChris Mason struct extent_buffer *tmp; 699925baeddSChris Mason struct extent_buffer *old; 7003063d29fSChris Mason int ret; 7013063d29fSChris Mason u64 objectid; 7023063d29fSChris Mason 70380b6794dSChris Mason new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS); 70480b6794dSChris Mason if (!new_root_item) { 70580b6794dSChris Mason ret = -ENOMEM; 70680b6794dSChris Mason goto fail; 70780b6794dSChris Mason } 7083063d29fSChris Mason ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid); 7093063d29fSChris Mason if (ret) 7103063d29fSChris Mason goto fail; 7113063d29fSChris Mason 7125d4f98a2SYan Zheng record_root_in_trans(trans, root); 71380ff3856SYan Zheng btrfs_set_root_last_snapshot(&root->root_item, trans->transid); 71480b6794dSChris Mason memcpy(new_root_item, &root->root_item, sizeof(*new_root_item)); 7153063d29fSChris Mason 7163063d29fSChris Mason key.objectid = objectid; 7175d4f98a2SYan Zheng key.offset = 0; 7183063d29fSChris Mason btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY); 7193063d29fSChris Mason 720925baeddSChris Mason old = btrfs_lock_root_node(root); 7219fa8cfe7SChris Mason btrfs_cow_block(trans, root, old, NULL, 0, &old); 7225d4f98a2SYan Zheng btrfs_set_lock_blocking(old); 7233063d29fSChris Mason 724925baeddSChris Mason btrfs_copy_root(trans, root, old, &tmp, objectid); 725925baeddSChris Mason btrfs_tree_unlock(old); 726925baeddSChris Mason free_extent_buffer(old); 7273063d29fSChris Mason 7285d4f98a2SYan Zheng btrfs_set_root_node(new_root_item, tmp); 7293063d29fSChris Mason ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key, 73080b6794dSChris Mason new_root_item); 731925baeddSChris Mason btrfs_tree_unlock(tmp); 7323063d29fSChris Mason free_extent_buffer(tmp); 7333063d29fSChris Mason if (ret) 7343063d29fSChris Mason goto fail; 7353063d29fSChris Mason 7363de4586cSChris Mason key.offset = (u64)-1; 7373de4586cSChris Mason memcpy(&pending->root_key, &key, sizeof(key)); 7383de4586cSChris Mason fail: 7393de4586cSChris Mason kfree(new_root_item); 7403de4586cSChris Mason return ret; 7413de4586cSChris Mason } 7423de4586cSChris Mason 7433de4586cSChris Mason static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info, 7443de4586cSChris Mason struct btrfs_pending_snapshot *pending) 7453de4586cSChris Mason { 7463de4586cSChris Mason int ret; 7473de4586cSChris Mason int namelen; 7483de4586cSChris Mason u64 index = 0; 7493de4586cSChris Mason struct btrfs_trans_handle *trans; 7503de4586cSChris Mason struct inode *parent_inode; 7513de4586cSChris Mason struct inode *inode; 7520660b5afSChris Mason struct btrfs_root *parent_root; 7533de4586cSChris Mason 7543394e160SChris Mason parent_inode = pending->dentry->d_parent->d_inode; 7550660b5afSChris Mason parent_root = BTRFS_I(parent_inode)->root; 756180591bcSYan Zheng trans = btrfs_join_transaction(parent_root, 1); 7573de4586cSChris Mason 7583063d29fSChris Mason /* 7593063d29fSChris Mason * insert the directory item 7603063d29fSChris Mason */ 7613b96362cSSven Wegener namelen = strlen(pending->name); 7623de4586cSChris Mason ret = btrfs_set_inode_index(parent_inode, &index); 7630660b5afSChris Mason ret = btrfs_insert_dir_item(trans, parent_root, 7643b96362cSSven Wegener pending->name, namelen, 7653de4586cSChris Mason parent_inode->i_ino, 7663de4586cSChris Mason &pending->root_key, BTRFS_FT_DIR, index); 7673063d29fSChris Mason 7683063d29fSChris Mason if (ret) 7693063d29fSChris Mason goto fail; 7700660b5afSChris Mason 77152c26179SYan Zheng btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2); 77252c26179SYan Zheng ret = btrfs_update_inode(trans, parent_root, parent_inode); 77352c26179SYan Zheng BUG_ON(ret); 77452c26179SYan Zheng 7750660b5afSChris Mason /* add the backref first */ 7760660b5afSChris Mason ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root, 7770660b5afSChris Mason pending->root_key.objectid, 7780660b5afSChris Mason BTRFS_ROOT_BACKREF_KEY, 7790660b5afSChris Mason parent_root->root_key.objectid, 7800660b5afSChris Mason parent_inode->i_ino, index, pending->name, 7810660b5afSChris Mason namelen); 7820660b5afSChris Mason 7830660b5afSChris Mason BUG_ON(ret); 7840660b5afSChris Mason 7850660b5afSChris Mason /* now add the forward ref */ 7860660b5afSChris Mason ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root, 7870660b5afSChris Mason parent_root->root_key.objectid, 7880660b5afSChris Mason BTRFS_ROOT_REF_KEY, 7890660b5afSChris Mason pending->root_key.objectid, 7900660b5afSChris Mason parent_inode->i_ino, index, pending->name, 7910660b5afSChris Mason namelen); 7920660b5afSChris Mason 7933de4586cSChris Mason inode = btrfs_lookup_dentry(parent_inode, pending->dentry); 7943de4586cSChris Mason d_instantiate(pending->dentry, inode); 7953063d29fSChris Mason fail: 7963de4586cSChris Mason btrfs_end_transaction(trans, fs_info->fs_root); 7973063d29fSChris Mason return ret; 7983063d29fSChris Mason } 7993063d29fSChris Mason 800d352ac68SChris Mason /* 801d352ac68SChris Mason * create all the snapshots we've scheduled for creation 802d352ac68SChris Mason */ 80380b6794dSChris Mason static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans, 8043063d29fSChris Mason struct btrfs_fs_info *fs_info) 8053063d29fSChris Mason { 8063063d29fSChris Mason struct btrfs_pending_snapshot *pending; 8073063d29fSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 8083de4586cSChris Mason int ret; 8093de4586cSChris Mason 810c6e30871SQinghuang Feng list_for_each_entry(pending, head, list) { 8113de4586cSChris Mason ret = create_pending_snapshot(trans, fs_info, pending); 8123de4586cSChris Mason BUG_ON(ret); 8133de4586cSChris Mason } 8143de4586cSChris Mason return 0; 8153de4586cSChris Mason } 8163de4586cSChris Mason 8173de4586cSChris Mason static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans, 8183de4586cSChris Mason struct btrfs_fs_info *fs_info) 8193de4586cSChris Mason { 8203de4586cSChris Mason struct btrfs_pending_snapshot *pending; 8213de4586cSChris Mason struct list_head *head = &trans->transaction->pending_snapshots; 8223063d29fSChris Mason int ret; 8233063d29fSChris Mason 8243063d29fSChris Mason while (!list_empty(head)) { 8253063d29fSChris Mason pending = list_entry(head->next, 8263063d29fSChris Mason struct btrfs_pending_snapshot, list); 8273de4586cSChris Mason ret = finish_pending_snapshot(fs_info, pending); 8283063d29fSChris Mason BUG_ON(ret); 8293063d29fSChris Mason list_del(&pending->list); 8303063d29fSChris Mason kfree(pending->name); 8313063d29fSChris Mason kfree(pending); 8323063d29fSChris Mason } 833dc17ff8fSChris Mason return 0; 834dc17ff8fSChris Mason } 835dc17ff8fSChris Mason 8365d4f98a2SYan Zheng static void update_super_roots(struct btrfs_root *root) 8375d4f98a2SYan Zheng { 8385d4f98a2SYan Zheng struct btrfs_root_item *root_item; 8395d4f98a2SYan Zheng struct btrfs_super_block *super; 8405d4f98a2SYan Zheng 8415d4f98a2SYan Zheng super = &root->fs_info->super_copy; 8425d4f98a2SYan Zheng 8435d4f98a2SYan Zheng root_item = &root->fs_info->chunk_root->root_item; 8445d4f98a2SYan Zheng super->chunk_root = root_item->bytenr; 8455d4f98a2SYan Zheng super->chunk_root_generation = root_item->generation; 8465d4f98a2SYan Zheng super->chunk_root_level = root_item->level; 8475d4f98a2SYan Zheng 8485d4f98a2SYan Zheng root_item = &root->fs_info->tree_root->root_item; 8495d4f98a2SYan Zheng super->root = root_item->bytenr; 8505d4f98a2SYan Zheng super->generation = root_item->generation; 8515d4f98a2SYan Zheng super->root_level = root_item->level; 8525d4f98a2SYan Zheng } 8535d4f98a2SYan Zheng 85479154b1bSChris Mason int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 85579154b1bSChris Mason struct btrfs_root *root) 85679154b1bSChris Mason { 85715ee9bc7SJosef Bacik unsigned long joined = 0; 85815ee9bc7SJosef Bacik unsigned long timeout = 1; 85979154b1bSChris Mason struct btrfs_transaction *cur_trans; 8608fd17795SChris Mason struct btrfs_transaction *prev_trans = NULL; 861d1310b2eSChris Mason struct extent_io_tree *pinned_copy; 86279154b1bSChris Mason DEFINE_WAIT(wait); 86315ee9bc7SJosef Bacik int ret; 86489573b9cSChris Mason int should_grow = 0; 86589573b9cSChris Mason unsigned long now = get_seconds(); 866dccae999SSage Weil int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT); 86779154b1bSChris Mason 8685a3f23d5SChris Mason btrfs_run_ordered_operations(root, 0); 8695a3f23d5SChris Mason 87056bec294SChris Mason /* make a pass through all the delayed refs we have so far 87156bec294SChris Mason * any runnings procs may add more while we are here 87256bec294SChris Mason */ 87356bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 87456bec294SChris Mason BUG_ON(ret); 87556bec294SChris Mason 876b7ec40d7SChris Mason cur_trans = trans->transaction; 87756bec294SChris Mason /* 87856bec294SChris Mason * set the flushing flag so procs in this transaction have to 87956bec294SChris Mason * start sending their work down. 88056bec294SChris Mason */ 881b7ec40d7SChris Mason cur_trans->delayed_refs.flushing = 1; 88256bec294SChris Mason 883c3e69d58SChris Mason ret = btrfs_run_delayed_refs(trans, root, 0); 88456bec294SChris Mason BUG_ON(ret); 88556bec294SChris Mason 88679154b1bSChris Mason mutex_lock(&root->fs_info->trans_mutex); 887b7ec40d7SChris Mason if (cur_trans->in_commit) { 888b7ec40d7SChris Mason cur_trans->use_count++; 889ccd467d6SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 89079154b1bSChris Mason btrfs_end_transaction(trans, root); 891ccd467d6SChris Mason 89279154b1bSChris Mason ret = wait_for_commit(root, cur_trans); 89379154b1bSChris Mason BUG_ON(ret); 89415ee9bc7SJosef Bacik 89515ee9bc7SJosef Bacik mutex_lock(&root->fs_info->trans_mutex); 89679154b1bSChris Mason put_transaction(cur_trans); 89715ee9bc7SJosef Bacik mutex_unlock(&root->fs_info->trans_mutex); 89815ee9bc7SJosef Bacik 89979154b1bSChris Mason return 0; 90079154b1bSChris Mason } 9014313b399SChris Mason 9024313b399SChris Mason pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS); 9034313b399SChris Mason if (!pinned_copy) 9044313b399SChris Mason return -ENOMEM; 9054313b399SChris Mason 906d1310b2eSChris Mason extent_io_tree_init(pinned_copy, 9074313b399SChris Mason root->fs_info->btree_inode->i_mapping, GFP_NOFS); 9084313b399SChris Mason 9092c90e5d6SChris Mason trans->transaction->in_commit = 1; 910f9295749SChris Mason trans->transaction->blocked = 1; 911ccd467d6SChris Mason if (cur_trans->list.prev != &root->fs_info->trans_list) { 912ccd467d6SChris Mason prev_trans = list_entry(cur_trans->list.prev, 913ccd467d6SChris Mason struct btrfs_transaction, list); 914ccd467d6SChris Mason if (!prev_trans->commit_done) { 915ccd467d6SChris Mason prev_trans->use_count++; 916ccd467d6SChris Mason mutex_unlock(&root->fs_info->trans_mutex); 917ccd467d6SChris Mason 918ccd467d6SChris Mason wait_for_commit(root, prev_trans); 919ccd467d6SChris Mason 920ccd467d6SChris Mason mutex_lock(&root->fs_info->trans_mutex); 92115ee9bc7SJosef Bacik put_transaction(prev_trans); 922ccd467d6SChris Mason } 923ccd467d6SChris Mason } 92415ee9bc7SJosef Bacik 92589573b9cSChris Mason if (now < cur_trans->start_time || now - cur_trans->start_time < 1) 92689573b9cSChris Mason should_grow = 1; 92789573b9cSChris Mason 92815ee9bc7SJosef Bacik do { 9297ea394f1SYan Zheng int snap_pending = 0; 93015ee9bc7SJosef Bacik joined = cur_trans->num_joined; 9317ea394f1SYan Zheng if (!list_empty(&trans->transaction->pending_snapshots)) 9327ea394f1SYan Zheng snap_pending = 1; 9337ea394f1SYan Zheng 9342c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 93515ee9bc7SJosef Bacik prepare_to_wait(&cur_trans->writer_wait, &wait, 93679154b1bSChris Mason TASK_UNINTERRUPTIBLE); 93715ee9bc7SJosef Bacik 93815ee9bc7SJosef Bacik if (cur_trans->num_writers > 1) 93915ee9bc7SJosef Bacik timeout = MAX_SCHEDULE_TIMEOUT; 94089573b9cSChris Mason else if (should_grow) 94115ee9bc7SJosef Bacik timeout = 1; 94215ee9bc7SJosef Bacik 94379154b1bSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 94415ee9bc7SJosef Bacik 945dccae999SSage Weil if (flush_on_commit || snap_pending) { 946dccae999SSage Weil if (flush_on_commit) 947dccae999SSage Weil btrfs_start_delalloc_inodes(root); 9487ea394f1SYan Zheng ret = btrfs_wait_ordered_extents(root, 1); 9497ea394f1SYan Zheng BUG_ON(ret); 9507ea394f1SYan Zheng } 9517ea394f1SYan Zheng 9525a3f23d5SChris Mason /* 9535a3f23d5SChris Mason * rename don't use btrfs_join_transaction, so, once we 9545a3f23d5SChris Mason * set the transaction to blocked above, we aren't going 9555a3f23d5SChris Mason * to get any new ordered operations. We can safely run 9565a3f23d5SChris Mason * it here and no for sure that nothing new will be added 9575a3f23d5SChris Mason * to the list 9585a3f23d5SChris Mason */ 9595a3f23d5SChris Mason btrfs_run_ordered_operations(root, 1); 9605a3f23d5SChris Mason 96189573b9cSChris Mason smp_mb(); 96289573b9cSChris Mason if (cur_trans->num_writers > 1 || should_grow) 96315ee9bc7SJosef Bacik schedule_timeout(timeout); 96415ee9bc7SJosef Bacik 96579154b1bSChris Mason mutex_lock(&root->fs_info->trans_mutex); 96615ee9bc7SJosef Bacik finish_wait(&cur_trans->writer_wait, &wait); 96715ee9bc7SJosef Bacik } while (cur_trans->num_writers > 1 || 96889573b9cSChris Mason (should_grow && cur_trans->num_joined != joined)); 96915ee9bc7SJosef Bacik 9703063d29fSChris Mason ret = create_pending_snapshots(trans, root->fs_info); 9713063d29fSChris Mason BUG_ON(ret); 9723063d29fSChris Mason 97356bec294SChris Mason ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1); 97456bec294SChris Mason BUG_ON(ret); 97556bec294SChris Mason 9762c90e5d6SChris Mason WARN_ON(cur_trans != trans->transaction); 977dc17ff8fSChris Mason 978e02119d5SChris Mason /* btrfs_commit_tree_roots is responsible for getting the 979e02119d5SChris Mason * various roots consistent with each other. Every pointer 980e02119d5SChris Mason * in the tree of tree roots has to point to the most up to date 981e02119d5SChris Mason * root for every subvolume and other tree. So, we have to keep 982e02119d5SChris Mason * the tree logging code from jumping in and changing any 983e02119d5SChris Mason * of the trees. 984e02119d5SChris Mason * 985e02119d5SChris Mason * At this point in the commit, there can't be any tree-log 986e02119d5SChris Mason * writers, but a little lower down we drop the trans mutex 987e02119d5SChris Mason * and let new people in. By holding the tree_log_mutex 988e02119d5SChris Mason * from now until after the super is written, we avoid races 989e02119d5SChris Mason * with the tree-log code. 990e02119d5SChris Mason */ 991e02119d5SChris Mason mutex_lock(&root->fs_info->tree_log_mutex); 9921a40e23bSZheng Yan 9935d4f98a2SYan Zheng ret = commit_fs_roots(trans, root); 99454aa1f4dSChris Mason BUG_ON(ret); 99554aa1f4dSChris Mason 9965d4f98a2SYan Zheng /* commit_fs_roots gets rid of all the tree log roots, it is now 997e02119d5SChris Mason * safe to free the root of tree log roots 998e02119d5SChris Mason */ 999e02119d5SChris Mason btrfs_free_log_root_tree(trans, root->fs_info); 1000e02119d5SChris Mason 10015d4f98a2SYan Zheng ret = commit_cowonly_roots(trans, root); 100279154b1bSChris Mason BUG_ON(ret); 100354aa1f4dSChris Mason 100478fae27eSChris Mason cur_trans = root->fs_info->running_transaction; 1005cee36a03SChris Mason spin_lock(&root->fs_info->new_trans_lock); 100678fae27eSChris Mason root->fs_info->running_transaction = NULL; 1007cee36a03SChris Mason spin_unlock(&root->fs_info->new_trans_lock); 10085f39d397SChris Mason 10095d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->tree_root->root_item, 10105d4f98a2SYan Zheng root->fs_info->tree_root->node); 1011*817d52f8SJosef Bacik switch_commit_root(root->fs_info->tree_root); 10125d4f98a2SYan Zheng 10135d4f98a2SYan Zheng btrfs_set_root_node(&root->fs_info->chunk_root->root_item, 10145d4f98a2SYan Zheng root->fs_info->chunk_root->node); 1015*817d52f8SJosef Bacik switch_commit_root(root->fs_info->chunk_root); 10165d4f98a2SYan Zheng 10175d4f98a2SYan Zheng update_super_roots(root); 1018e02119d5SChris Mason 1019e02119d5SChris Mason if (!root->fs_info->log_root_recovering) { 1020e02119d5SChris Mason btrfs_set_super_log_root(&root->fs_info->super_copy, 0); 1021e02119d5SChris Mason btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0); 1022e02119d5SChris Mason } 1023e02119d5SChris Mason 1024a061fc8dSChris Mason memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy, 10254b52dff6SChris Mason sizeof(root->fs_info->super_copy)); 1026ccd467d6SChris Mason 10274313b399SChris Mason btrfs_copy_pinned(root, pinned_copy); 1028ccd467d6SChris Mason 1029f9295749SChris Mason trans->transaction->blocked = 0; 1030b7ec40d7SChris Mason 1031f9295749SChris Mason wake_up(&root->fs_info->transaction_wait); 1032e6dcd2dcSChris Mason 103378fae27eSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 103479154b1bSChris Mason ret = btrfs_write_and_wait_transaction(trans, root); 103579154b1bSChris Mason BUG_ON(ret); 1036a512bbf8SYan Zheng write_ctree_super(trans, root, 0); 10374313b399SChris Mason 1038e02119d5SChris Mason /* 1039e02119d5SChris Mason * the super is written, we can safely allow the tree-loggers 1040e02119d5SChris Mason * to go about their business 1041e02119d5SChris Mason */ 1042e02119d5SChris Mason mutex_unlock(&root->fs_info->tree_log_mutex); 1043e02119d5SChris Mason 10444313b399SChris Mason btrfs_finish_extent_commit(trans, root, pinned_copy); 10454313b399SChris Mason kfree(pinned_copy); 10464313b399SChris Mason 10473de4586cSChris Mason /* do the directory inserts of any pending snapshot creations */ 10483de4586cSChris Mason finish_pending_snapshots(trans, root->fs_info); 10493de4586cSChris Mason 10501a40e23bSZheng Yan mutex_lock(&root->fs_info->trans_mutex); 10511a40e23bSZheng Yan 10522c90e5d6SChris Mason cur_trans->commit_done = 1; 1053b7ec40d7SChris Mason 105415ee9bc7SJosef Bacik root->fs_info->last_trans_committed = cur_trans->transid; 1055*817d52f8SJosef Bacik 10562c90e5d6SChris Mason wake_up(&cur_trans->commit_wait); 10573de4586cSChris Mason 105879154b1bSChris Mason put_transaction(cur_trans); 105978fae27eSChris Mason put_transaction(cur_trans); 106058176a96SJosef Bacik 106178fae27eSChris Mason mutex_unlock(&root->fs_info->trans_mutex); 10623de4586cSChris Mason 10632c90e5d6SChris Mason kmem_cache_free(btrfs_trans_handle_cachep, trans); 106479154b1bSChris Mason return ret; 106579154b1bSChris Mason } 106679154b1bSChris Mason 1067d352ac68SChris Mason /* 1068d352ac68SChris Mason * interface function to delete all the snapshots we have scheduled for deletion 1069d352ac68SChris Mason */ 1070e9d0b13bSChris Mason int btrfs_clean_old_snapshots(struct btrfs_root *root) 1071e9d0b13bSChris Mason { 10725d4f98a2SYan Zheng LIST_HEAD(list); 10735d4f98a2SYan Zheng struct btrfs_fs_info *fs_info = root->fs_info; 1074e9d0b13bSChris Mason 10755d4f98a2SYan Zheng mutex_lock(&fs_info->trans_mutex); 10765d4f98a2SYan Zheng list_splice_init(&fs_info->dead_roots, &list); 10775d4f98a2SYan Zheng mutex_unlock(&fs_info->trans_mutex); 10785d4f98a2SYan Zheng 10795d4f98a2SYan Zheng while (!list_empty(&list)) { 10805d4f98a2SYan Zheng root = list_entry(list.next, struct btrfs_root, root_list); 10815d4f98a2SYan Zheng list_del_init(&root->root_list); 10822c47e605SYan Zheng btrfs_drop_snapshot(root, 0); 1083e9d0b13bSChris Mason } 1084e9d0b13bSChris Mason return 0; 1085e9d0b13bSChris Mason } 1086