2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
20 #include <linux/sched.h>
21 #include <linux/writeback.h>
22 #include <linux/pagemap.h>
25 #include "transaction.h"
27 #include "ref-cache.h"
29 static int total_trans = 0;
30 extern struct kmem_cache *btrfs_trans_handle_cachep;
31 extern struct kmem_cache *btrfs_transaction_cachep;
33 #define BTRFS_ROOT_TRANS_TAG 0
35 static noinline void put_transaction(struct btrfs_transaction *transaction)
37 WARN_ON(transaction->use_count == 0);
38 transaction->use_count--;
39 if (transaction->use_count == 0) {
40 WARN_ON(total_trans == 0);
42 list_del_init(&transaction->list);
43 memset(transaction, 0, sizeof(*transaction));
44 kmem_cache_free(btrfs_transaction_cachep, transaction);
48 static noinline int join_transaction(struct btrfs_root *root)
50 struct btrfs_transaction *cur_trans;
51 cur_trans = root->fs_info->running_transaction;
53 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
57 root->fs_info->generation++;
58 root->fs_info->last_alloc = 0;
59 root->fs_info->last_data_alloc = 0;
60 cur_trans->num_writers = 1;
61 cur_trans->num_joined = 0;
62 cur_trans->transid = root->fs_info->generation;
63 init_waitqueue_head(&cur_trans->writer_wait);
64 init_waitqueue_head(&cur_trans->commit_wait);
65 cur_trans->in_commit = 0;
66 cur_trans->blocked = 0;
67 cur_trans->use_count = 1;
68 cur_trans->commit_done = 0;
69 cur_trans->start_time = get_seconds();
70 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
71 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
72 extent_io_tree_init(&cur_trans->dirty_pages,
73 root->fs_info->btree_inode->i_mapping,
75 spin_lock(&root->fs_info->new_trans_lock);
76 root->fs_info->running_transaction = cur_trans;
77 spin_unlock(&root->fs_info->new_trans_lock);
79 cur_trans->num_writers++;
80 cur_trans->num_joined++;
86 static noinline int record_root_in_trans(struct btrfs_root *root)
88 struct btrfs_dirty_root *dirty;
89 u64 running_trans_id = root->fs_info->running_transaction->transid;
90 if (root->ref_cows && root->last_trans < running_trans_id) {
91 WARN_ON(root == root->fs_info->extent_root);
92 if (root->root_item.refs != 0) {
93 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
94 (unsigned long)root->root_key.objectid,
95 BTRFS_ROOT_TRANS_TAG);
97 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
99 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
100 BUG_ON(!dirty->root);
101 dirty->latest_root = root;
102 INIT_LIST_HEAD(&dirty->list);
104 root->commit_root = btrfs_root_node(root);
106 memcpy(dirty->root, root, sizeof(*root));
107 spin_lock_init(&dirty->root->node_lock);
108 spin_lock_init(&dirty->root->list_lock);
109 mutex_init(&dirty->root->objectid_mutex);
110 INIT_LIST_HEAD(&dirty->root->dead_list);
111 dirty->root->node = root->commit_root;
112 dirty->root->commit_root = NULL;
114 spin_lock(&root->list_lock);
115 list_add(&dirty->root->dead_list, &root->dead_list);
116 spin_unlock(&root->list_lock);
118 root->dirty_root = dirty;
122 root->last_trans = running_trans_id;
127 static void wait_current_trans(struct btrfs_root *root)
129 struct btrfs_transaction *cur_trans;
131 cur_trans = root->fs_info->running_transaction;
132 if (cur_trans && cur_trans->blocked) {
134 cur_trans->use_count++;
136 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
137 TASK_UNINTERRUPTIBLE);
138 if (cur_trans->blocked) {
139 mutex_unlock(&root->fs_info->trans_mutex);
141 mutex_lock(&root->fs_info->trans_mutex);
142 finish_wait(&root->fs_info->transaction_wait,
145 finish_wait(&root->fs_info->transaction_wait,
150 put_transaction(cur_trans);
154 struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
155 int num_blocks, int wait)
157 struct btrfs_trans_handle *h =
158 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
161 mutex_lock(&root->fs_info->trans_mutex);
162 if ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2)
163 wait_current_trans(root);
164 ret = join_transaction(root);
167 record_root_in_trans(root);
168 h->transid = root->fs_info->running_transaction->transid;
169 h->transaction = root->fs_info->running_transaction;
170 h->blocks_reserved = num_blocks;
172 h->block_group = NULL;
173 h->alloc_exclude_nr = 0;
174 h->alloc_exclude_start = 0;
175 root->fs_info->running_transaction->use_count++;
176 mutex_unlock(&root->fs_info->trans_mutex);
180 struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
183 return start_transaction(root, num_blocks, 1);
185 struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
188 return start_transaction(root, num_blocks, 0);
191 struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
194 return start_transaction(r, num_blocks, 2);
198 static noinline int wait_for_commit(struct btrfs_root *root,
199 struct btrfs_transaction *commit)
202 mutex_lock(&root->fs_info->trans_mutex);
203 while(!commit->commit_done) {
204 prepare_to_wait(&commit->commit_wait, &wait,
205 TASK_UNINTERRUPTIBLE);
206 if (commit->commit_done)
208 mutex_unlock(&root->fs_info->trans_mutex);
210 mutex_lock(&root->fs_info->trans_mutex);
212 mutex_unlock(&root->fs_info->trans_mutex);
213 finish_wait(&commit->commit_wait, &wait);
217 static void throttle_on_drops(struct btrfs_root *root)
219 struct btrfs_fs_info *info = root->fs_info;
220 int harder_count = 0;
223 if (atomic_read(&info->throttles)) {
226 thr = atomic_read(&info->throttle_gen);
229 prepare_to_wait(&info->transaction_throttle,
230 &wait, TASK_UNINTERRUPTIBLE);
231 if (!atomic_read(&info->throttles)) {
232 finish_wait(&info->transaction_throttle, &wait);
236 finish_wait(&info->transaction_throttle, &wait);
237 } while (thr == atomic_read(&info->throttle_gen));
240 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
244 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
248 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
254 void btrfs_throttle(struct btrfs_root *root)
256 mutex_lock(&root->fs_info->trans_mutex);
257 if (!root->fs_info->open_ioctl_trans)
258 wait_current_trans(root);
259 mutex_unlock(&root->fs_info->trans_mutex);
261 throttle_on_drops(root);
264 static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
265 struct btrfs_root *root, int throttle)
267 struct btrfs_transaction *cur_trans;
268 struct btrfs_fs_info *info = root->fs_info;
270 mutex_lock(&info->trans_mutex);
271 cur_trans = info->running_transaction;
272 WARN_ON(cur_trans != trans->transaction);
273 WARN_ON(cur_trans->num_writers < 1);
274 cur_trans->num_writers--;
276 if (waitqueue_active(&cur_trans->writer_wait))
277 wake_up(&cur_trans->writer_wait);
278 put_transaction(cur_trans);
279 mutex_unlock(&info->trans_mutex);
280 memset(trans, 0, sizeof(*trans));
281 kmem_cache_free(btrfs_trans_handle_cachep, trans);
284 throttle_on_drops(root);
289 int btrfs_end_transaction(struct btrfs_trans_handle *trans,
290 struct btrfs_root *root)
292 return __btrfs_end_transaction(trans, root, 0);
295 int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
296 struct btrfs_root *root)
298 return __btrfs_end_transaction(trans, root, 1);
302 int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
303 struct btrfs_root *root)
308 struct extent_io_tree *dirty_pages;
310 struct inode *btree_inode = root->fs_info->btree_inode;
315 if (!trans || !trans->transaction) {
316 return filemap_write_and_wait(btree_inode->i_mapping);
318 dirty_pages = &trans->transaction->dirty_pages;
320 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
324 while(start <= end) {
327 index = start >> PAGE_CACHE_SHIFT;
328 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
329 page = find_lock_page(btree_inode->i_mapping, index);
332 if (PageWriteback(page)) {
334 wait_on_page_writeback(page);
337 page_cache_release(page);
341 err = write_one_page(page, 0);
344 page_cache_release(page);
348 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
353 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
354 while(start <= end) {
355 index = start >> PAGE_CACHE_SHIFT;
356 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
357 page = find_get_page(btree_inode->i_mapping, index);
360 if (PageDirty(page)) {
362 err = write_one_page(page, 0);
366 wait_on_page_writeback(page);
367 page_cache_release(page);
376 static int update_cowonly_root(struct btrfs_trans_handle *trans,
377 struct btrfs_root *root)
381 struct btrfs_root *tree_root = root->fs_info->tree_root;
383 btrfs_write_dirty_block_groups(trans, root);
385 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
386 if (old_root_bytenr == root->node->start)
388 btrfs_set_root_bytenr(&root->root_item,
390 btrfs_set_root_level(&root->root_item,
391 btrfs_header_level(root->node));
392 ret = btrfs_update_root(trans, tree_root,
396 btrfs_write_dirty_block_groups(trans, root);
401 int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
402 struct btrfs_root *root)
404 struct btrfs_fs_info *fs_info = root->fs_info;
405 struct list_head *next;
407 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
408 next = fs_info->dirty_cowonly_roots.next;
410 root = list_entry(next, struct btrfs_root, dirty_list);
411 update_cowonly_root(trans, root);
416 int btrfs_add_dead_root(struct btrfs_root *root, struct btrfs_root *latest)
418 struct btrfs_dirty_root *dirty;
420 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
424 dirty->latest_root = latest;
426 mutex_lock(&root->fs_info->trans_mutex);
427 list_add(&dirty->list, &latest->fs_info->dead_roots);
428 mutex_unlock(&root->fs_info->trans_mutex);
432 static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
433 struct radix_tree_root *radix,
434 struct list_head *list)
436 struct btrfs_dirty_root *dirty;
437 struct btrfs_root *gang[8];
438 struct btrfs_root *root;
445 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
447 BTRFS_ROOT_TRANS_TAG);
450 for (i = 0; i < ret; i++) {
452 radix_tree_tag_clear(radix,
453 (unsigned long)root->root_key.objectid,
454 BTRFS_ROOT_TRANS_TAG);
456 BUG_ON(!root->ref_tree);
457 dirty = root->dirty_root;
459 if (root->commit_root == root->node) {
460 WARN_ON(root->node->start !=
461 btrfs_root_bytenr(&root->root_item));
463 free_extent_buffer(root->commit_root);
464 root->commit_root = NULL;
465 root->dirty_root = NULL;
467 spin_lock(&root->list_lock);
468 list_del_init(&dirty->root->dead_list);
469 spin_unlock(&root->list_lock);
474 /* make sure to update the root on disk
475 * so we get any updates to the block used
478 err = btrfs_update_root(trans,
479 root->fs_info->tree_root,
485 memset(&root->root_item.drop_progress, 0,
486 sizeof(struct btrfs_disk_key));
487 root->root_item.drop_level = 0;
488 root->commit_root = NULL;
489 root->dirty_root = NULL;
490 root->root_key.offset = root->fs_info->generation;
491 btrfs_set_root_bytenr(&root->root_item,
493 btrfs_set_root_level(&root->root_item,
494 btrfs_header_level(root->node));
495 err = btrfs_insert_root(trans, root->fs_info->tree_root,
501 refs = btrfs_root_refs(&dirty->root->root_item);
502 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
503 err = btrfs_update_root(trans, root->fs_info->tree_root,
504 &dirty->root->root_key,
505 &dirty->root->root_item);
509 list_add(&dirty->list, list);
512 free_extent_buffer(dirty->root->node);
521 int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
523 struct btrfs_fs_info *info = root->fs_info;
525 struct btrfs_trans_handle *trans;
529 if (root->defrag_running)
531 trans = btrfs_start_transaction(root, 1);
533 root->defrag_running = 1;
534 ret = btrfs_defrag_leaves(trans, root, cacheonly);
535 nr = trans->blocks_used;
536 btrfs_end_transaction(trans, root);
537 btrfs_btree_balance_dirty(info->tree_root, nr);
540 trans = btrfs_start_transaction(root, 1);
541 if (root->fs_info->closing || ret != -EAGAIN)
544 root->defrag_running = 0;
546 btrfs_end_transaction(trans, root);
550 static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
551 struct list_head *list)
553 struct btrfs_dirty_root *dirty;
554 struct btrfs_trans_handle *trans;
562 while(!list_empty(list)) {
563 struct btrfs_root *root;
565 dirty = list_entry(list->prev, struct btrfs_dirty_root, list);
566 list_del_init(&dirty->list);
568 num_bytes = btrfs_root_used(&dirty->root->root_item);
569 root = dirty->latest_root;
570 atomic_inc(&root->fs_info->throttles);
572 mutex_lock(&root->fs_info->drop_mutex);
574 trans = btrfs_start_transaction(tree_root, 1);
575 ret = btrfs_drop_snapshot(trans, dirty->root);
576 if (ret != -EAGAIN) {
580 err = btrfs_update_root(trans,
582 &dirty->root->root_key,
583 &dirty->root->root_item);
586 nr = trans->blocks_used;
587 ret = btrfs_end_transaction(trans, tree_root);
590 mutex_unlock(&root->fs_info->drop_mutex);
591 btrfs_btree_balance_dirty(tree_root, nr);
593 mutex_lock(&root->fs_info->drop_mutex);
596 atomic_dec(&root->fs_info->throttles);
597 wake_up(&root->fs_info->transaction_throttle);
599 mutex_lock(&root->fs_info->alloc_mutex);
600 num_bytes -= btrfs_root_used(&dirty->root->root_item);
601 bytes_used = btrfs_root_used(&root->root_item);
603 record_root_in_trans(root);
604 btrfs_set_root_used(&root->root_item,
605 bytes_used - num_bytes);
607 mutex_unlock(&root->fs_info->alloc_mutex);
609 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
614 mutex_unlock(&root->fs_info->drop_mutex);
616 spin_lock(&root->list_lock);
617 list_del_init(&dirty->root->dead_list);
618 if (!list_empty(&root->dead_list)) {
619 struct btrfs_root *oldest;
620 oldest = list_entry(root->dead_list.prev,
621 struct btrfs_root, dead_list);
622 max_useless = oldest->root_key.offset - 1;
624 max_useless = root->root_key.offset - 1;
626 spin_unlock(&root->list_lock);
628 nr = trans->blocks_used;
629 ret = btrfs_end_transaction(trans, tree_root);
632 ret = btrfs_remove_leaf_refs(root, max_useless);
635 free_extent_buffer(dirty->root->node);
639 btrfs_btree_balance_dirty(tree_root, nr);
645 static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
646 struct btrfs_fs_info *fs_info,
647 struct btrfs_pending_snapshot *pending)
649 struct btrfs_key key;
650 struct btrfs_root_item *new_root_item;
651 struct btrfs_root *tree_root = fs_info->tree_root;
652 struct btrfs_root *root = pending->root;
653 struct extent_buffer *tmp;
654 struct extent_buffer *old;
659 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
660 if (!new_root_item) {
664 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
668 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
670 key.objectid = objectid;
672 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
674 old = btrfs_lock_root_node(root);
675 btrfs_cow_block(trans, root, old, NULL, 0, &old, 0);
677 btrfs_copy_root(trans, root, old, &tmp, objectid);
678 btrfs_tree_unlock(old);
679 free_extent_buffer(old);
681 btrfs_set_root_bytenr(new_root_item, tmp->start);
682 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
683 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
685 btrfs_tree_unlock(tmp);
686 free_extent_buffer(tmp);
691 * insert the directory item
693 key.offset = (u64)-1;
694 namelen = strlen(pending->name);
695 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
696 pending->name, namelen,
697 root->fs_info->sb->s_root->d_inode->i_ino,
698 &key, BTRFS_FT_DIR, 0);
703 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
704 pending->name, strlen(pending->name), objectid,
705 root->fs_info->sb->s_root->d_inode->i_ino, 0);
707 /* Invalidate existing dcache entry for new snapshot. */
708 btrfs_invalidate_dcache_root(root, pending->name, namelen);
711 kfree(new_root_item);
715 static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
716 struct btrfs_fs_info *fs_info)
718 struct btrfs_pending_snapshot *pending;
719 struct list_head *head = &trans->transaction->pending_snapshots;
722 while(!list_empty(head)) {
723 pending = list_entry(head->next,
724 struct btrfs_pending_snapshot, list);
725 ret = create_pending_snapshot(trans, fs_info, pending);
727 list_del(&pending->list);
728 kfree(pending->name);
734 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
735 struct btrfs_root *root)
737 unsigned long joined = 0;
738 unsigned long timeout = 1;
739 struct btrfs_transaction *cur_trans;
740 struct btrfs_transaction *prev_trans = NULL;
741 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
742 struct list_head dirty_fs_roots;
743 struct extent_io_tree *pinned_copy;
747 INIT_LIST_HEAD(&dirty_fs_roots);
749 mutex_lock(&root->fs_info->trans_mutex);
750 if (trans->transaction->in_commit) {
751 cur_trans = trans->transaction;
752 trans->transaction->use_count++;
753 mutex_unlock(&root->fs_info->trans_mutex);
754 btrfs_end_transaction(trans, root);
756 ret = wait_for_commit(root, cur_trans);
759 mutex_lock(&root->fs_info->trans_mutex);
760 put_transaction(cur_trans);
761 mutex_unlock(&root->fs_info->trans_mutex);
766 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
770 extent_io_tree_init(pinned_copy,
771 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
773 trans->transaction->in_commit = 1;
774 trans->transaction->blocked = 1;
775 cur_trans = trans->transaction;
776 if (cur_trans->list.prev != &root->fs_info->trans_list) {
777 prev_trans = list_entry(cur_trans->list.prev,
778 struct btrfs_transaction, list);
779 if (!prev_trans->commit_done) {
780 prev_trans->use_count++;
781 mutex_unlock(&root->fs_info->trans_mutex);
783 wait_for_commit(root, prev_trans);
785 mutex_lock(&root->fs_info->trans_mutex);
786 put_transaction(prev_trans);
791 int snap_pending = 0;
792 joined = cur_trans->num_joined;
793 if (!list_empty(&trans->transaction->pending_snapshots))
796 WARN_ON(cur_trans != trans->transaction);
797 prepare_to_wait(&cur_trans->writer_wait, &wait,
798 TASK_UNINTERRUPTIBLE);
800 if (cur_trans->num_writers > 1)
801 timeout = MAX_SCHEDULE_TIMEOUT;
805 mutex_unlock(&root->fs_info->trans_mutex);
808 ret = btrfs_wait_ordered_extents(root, 1);
812 schedule_timeout(timeout);
814 mutex_lock(&root->fs_info->trans_mutex);
815 finish_wait(&cur_trans->writer_wait, &wait);
816 } while (cur_trans->num_writers > 1 ||
817 (cur_trans->num_joined != joined));
819 ret = create_pending_snapshots(trans, root->fs_info);
822 WARN_ON(cur_trans != trans->transaction);
824 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
828 ret = btrfs_commit_tree_roots(trans, root);
831 cur_trans = root->fs_info->running_transaction;
832 spin_lock(&root->fs_info->new_trans_lock);
833 root->fs_info->running_transaction = NULL;
834 spin_unlock(&root->fs_info->new_trans_lock);
835 btrfs_set_super_generation(&root->fs_info->super_copy,
837 btrfs_set_super_root(&root->fs_info->super_copy,
838 root->fs_info->tree_root->node->start);
839 btrfs_set_super_root_level(&root->fs_info->super_copy,
840 btrfs_header_level(root->fs_info->tree_root->node));
842 btrfs_set_super_chunk_root(&root->fs_info->super_copy,
843 chunk_root->node->start);
844 btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
845 btrfs_header_level(chunk_root->node));
846 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
847 sizeof(root->fs_info->super_copy));
849 btrfs_copy_pinned(root, pinned_copy);
851 trans->transaction->blocked = 0;
852 wake_up(&root->fs_info->transaction_throttle);
853 wake_up(&root->fs_info->transaction_wait);
855 mutex_unlock(&root->fs_info->trans_mutex);
856 ret = btrfs_write_and_wait_transaction(trans, root);
858 write_ctree_super(trans, root);
860 btrfs_finish_extent_commit(trans, root, pinned_copy);
861 mutex_lock(&root->fs_info->trans_mutex);
865 cur_trans->commit_done = 1;
866 root->fs_info->last_trans_committed = cur_trans->transid;
867 wake_up(&cur_trans->commit_wait);
868 put_transaction(cur_trans);
869 put_transaction(cur_trans);
871 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
872 if (root->fs_info->closing)
873 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
875 mutex_unlock(&root->fs_info->trans_mutex);
876 kmem_cache_free(btrfs_trans_handle_cachep, trans);
878 if (root->fs_info->closing) {
879 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
884 int btrfs_clean_old_snapshots(struct btrfs_root *root)
886 struct list_head dirty_roots;
887 INIT_LIST_HEAD(&dirty_roots);
889 mutex_lock(&root->fs_info->trans_mutex);
890 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
891 mutex_unlock(&root->fs_info->trans_mutex);
893 if (!list_empty(&dirty_roots)) {
894 drop_dirty_roots(root, &dirty_roots);