blob: 543e5ee4033a3692e714709ea954ebf913362033 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
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.
7 *
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.
12 *
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.
17 */
18
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Chris Mason34088782007-06-12 11:36:58 -040020#include <linux/sched.h>
Chris Masond3c2fdcf2007-09-17 10:58:06 -040021#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040022#include <linux/pagemap.h>
Chris Mason79154b12007-03-22 15:59:16 -040023#include "ctree.h"
24#include "disk-io.h"
25#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040026#include "locking.h"
Yan Zheng31153d82008-07-28 15:32:19 -040027#include "ref-cache.h"
Chris Mason79154b12007-03-22 15:59:16 -040028
Chris Mason78fae272007-03-25 11:35:08 -040029static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040030extern struct kmem_cache *btrfs_trans_handle_cachep;
31extern struct kmem_cache *btrfs_transaction_cachep;
32
Chris Mason0f7d52f2007-04-09 10:42:37 -040033#define BTRFS_ROOT_TRANS_TAG 0
34
Yan Zheng31153d82008-07-28 15:32:19 -040035struct dirty_root {
36 struct list_head list;
37 struct btrfs_root *root;
38 struct btrfs_root *latest_root;
39 struct btrfs_leaf_ref_tree ref_tree;
40};
41
Chris Mason80b67942008-02-01 16:35:04 -050042static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040043{
Chris Mason2c90e5d2007-04-02 10:50:19 -040044 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040045 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040046 if (transaction->use_count == 0) {
47 WARN_ON(total_trans == 0);
48 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040049 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040050 memset(transaction, 0, sizeof(*transaction));
51 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040052 }
Chris Mason79154b12007-03-22 15:59:16 -040053}
54
Chris Mason80b67942008-02-01 16:35:04 -050055static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040056{
57 struct btrfs_transaction *cur_trans;
58 cur_trans = root->fs_info->running_transaction;
59 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040060 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
61 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040062 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040063 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040064 root->fs_info->generation++;
Chris Masone18e4802008-01-18 10:54:22 -050065 root->fs_info->last_alloc = 0;
Chris Mason4529ba42008-01-31 16:45:07 -050066 root->fs_info->last_data_alloc = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040067 cur_trans->num_writers = 1;
68 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040069 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040070 init_waitqueue_head(&cur_trans->writer_wait);
71 init_waitqueue_head(&cur_trans->commit_wait);
72 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040073 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040074 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040075 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040076 cur_trans->start_time = get_seconds();
Chris Mason3063d292008-01-08 15:46:30 -050077 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040078 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050079 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040080 root->fs_info->btree_inode->i_mapping,
81 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040082 spin_lock(&root->fs_info->new_trans_lock);
83 root->fs_info->running_transaction = cur_trans;
84 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040085 } else {
86 cur_trans->num_writers++;
87 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040088 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040089
Chris Mason79154b12007-03-22 15:59:16 -040090 return 0;
91}
92
Chris Mason80b67942008-02-01 16:35:04 -050093static noinline int record_root_in_trans(struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -040094{
Yan Zheng31153d82008-07-28 15:32:19 -040095 struct dirty_root *dirty;
Chris Mason6702ed42007-08-07 16:15:09 -040096 u64 running_trans_id = root->fs_info->running_transaction->transid;
97 if (root->ref_cows && root->last_trans < running_trans_id) {
98 WARN_ON(root == root->fs_info->extent_root);
99 if (root->root_item.refs != 0) {
100 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
101 (unsigned long)root->root_key.objectid,
102 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400103
104 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
105 BUG_ON(!dirty);
106 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
107 BUG_ON(!dirty->root);
108
109 dirty->latest_root = root;
110 INIT_LIST_HEAD(&dirty->list);
111 btrfs_leaf_ref_tree_init(&dirty->ref_tree);
112 dirty->ref_tree.generation = running_trans_id;
113
Chris Mason925baed2008-06-25 16:01:30 -0400114 root->commit_root = btrfs_root_node(root);
Yan Zheng31153d82008-07-28 15:32:19 -0400115 root->ref_tree = &dirty->ref_tree;
116
117 memcpy(dirty->root, root, sizeof(*root));
118 spin_lock_init(&dirty->root->node_lock);
119 mutex_init(&dirty->root->objectid_mutex);
120 dirty->root->node = root->commit_root;
121 dirty->root->commit_root = NULL;
Chris Mason6702ed42007-08-07 16:15:09 -0400122 } else {
123 WARN_ON(1);
124 }
125 root->last_trans = running_trans_id;
126 }
127 return 0;
128}
129
Chris Masonf9295742008-07-17 12:54:14 -0400130struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
131 int num_blocks, int join)
Chris Mason79154b12007-03-22 15:59:16 -0400132{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400133 struct btrfs_trans_handle *h =
134 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Masonf9295742008-07-17 12:54:14 -0400135 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400136 int ret;
137
138 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400139 cur_trans = root->fs_info->running_transaction;
140 if (cur_trans && cur_trans->blocked && !join) {
141 DEFINE_WAIT(wait);
142 cur_trans->use_count++;
143 while(1) {
144 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
145 TASK_UNINTERRUPTIBLE);
146 if (cur_trans->blocked) {
147 mutex_unlock(&root->fs_info->trans_mutex);
148 schedule();
149 mutex_lock(&root->fs_info->trans_mutex);
150 finish_wait(&root->fs_info->transaction_wait,
151 &wait);
152 } else {
153 finish_wait(&root->fs_info->transaction_wait,
154 &wait);
155 break;
156 }
157 }
158 put_transaction(cur_trans);
159 }
Chris Mason79154b12007-03-22 15:59:16 -0400160 ret = join_transaction(root);
161 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400162
Chris Mason6702ed42007-08-07 16:15:09 -0400163 record_root_in_trans(root);
164 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400165 h->transaction = root->fs_info->running_transaction;
166 h->blocks_reserved = num_blocks;
167 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400168 h->block_group = NULL;
Chris Mason26b80032007-08-08 20:17:12 -0400169 h->alloc_exclude_nr = 0;
170 h->alloc_exclude_start = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400171 root->fs_info->running_transaction->use_count++;
172 mutex_unlock(&root->fs_info->trans_mutex);
173 return h;
174}
175
Chris Masonf9295742008-07-17 12:54:14 -0400176struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
177 int num_blocks)
178{
179 return start_transaction(root, num_blocks, 0);
180}
181struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
182 int num_blocks)
183{
184 return start_transaction(root, num_blocks, 1);
185}
186
Chris Mason89ce8a62008-06-25 16:01:31 -0400187static noinline int wait_for_commit(struct btrfs_root *root,
188 struct btrfs_transaction *commit)
189{
190 DEFINE_WAIT(wait);
191 mutex_lock(&root->fs_info->trans_mutex);
192 while(!commit->commit_done) {
193 prepare_to_wait(&commit->commit_wait, &wait,
194 TASK_UNINTERRUPTIBLE);
195 if (commit->commit_done)
196 break;
197 mutex_unlock(&root->fs_info->trans_mutex);
198 schedule();
199 mutex_lock(&root->fs_info->trans_mutex);
200 }
201 mutex_unlock(&root->fs_info->trans_mutex);
202 finish_wait(&commit->commit_wait, &wait);
203 return 0;
204}
205
206static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
207 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400208{
209 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400210
Chris Mason79154b12007-03-22 15:59:16 -0400211 mutex_lock(&root->fs_info->trans_mutex);
212 cur_trans = root->fs_info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400213 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400214 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400215 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400216
Chris Mason79154b12007-03-22 15:59:16 -0400217 if (waitqueue_active(&cur_trans->writer_wait))
218 wake_up(&cur_trans->writer_wait);
Chris Mason89ce8a62008-06-25 16:01:31 -0400219
Chris Masonf9295742008-07-17 12:54:14 -0400220 if (0 && cur_trans->in_commit && throttle) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400221 DEFINE_WAIT(wait);
Chris Mason89ce8a62008-06-25 16:01:31 -0400222 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400223 prepare_to_wait(&root->fs_info->transaction_throttle, &wait,
224 TASK_UNINTERRUPTIBLE);
225 schedule();
226 finish_wait(&root->fs_info->transaction_throttle, &wait);
Chris Mason89ce8a62008-06-25 16:01:31 -0400227 mutex_lock(&root->fs_info->trans_mutex);
228 }
229
Chris Mason79154b12007-03-22 15:59:16 -0400230 put_transaction(cur_trans);
231 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400232 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400233 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400234 return 0;
235}
236
Chris Mason89ce8a62008-06-25 16:01:31 -0400237int btrfs_end_transaction(struct btrfs_trans_handle *trans,
238 struct btrfs_root *root)
239{
240 return __btrfs_end_transaction(trans, root, 0);
241}
242
243int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
244 struct btrfs_root *root)
245{
246 return __btrfs_end_transaction(trans, root, 1);
247}
248
Chris Mason79154b12007-03-22 15:59:16 -0400249
250int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
251 struct btrfs_root *root)
252{
Chris Mason7c4452b2007-04-28 09:29:35 -0400253 int ret;
Chris Mason7c4452b2007-04-28 09:29:35 -0400254 int err;
255 int werr = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500256 struct extent_io_tree *dirty_pages;
Chris Mason7c4452b2007-04-28 09:29:35 -0400257 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400258 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason5f39d392007-10-15 16:14:19 -0400259 u64 start;
260 u64 end;
261 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400262
263 if (!trans || !trans->transaction) {
264 return filemap_write_and_wait(btree_inode->i_mapping);
265 }
266 dirty_pages = &trans->transaction->dirty_pages;
267 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400268 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
269 EXTENT_DIRTY);
270 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400271 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400272 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
273 while(start <= end) {
274 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400275 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason5f39d392007-10-15 16:14:19 -0400276 page = find_lock_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400277 if (!page)
278 continue;
Chris Mason6702ed42007-08-07 16:15:09 -0400279 if (PageWriteback(page)) {
280 if (PageDirty(page))
281 wait_on_page_writeback(page);
282 else {
283 unlock_page(page);
284 page_cache_release(page);
285 continue;
286 }
287 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400288 err = write_one_page(page, 0);
289 if (err)
290 werr = err;
291 page_cache_release(page);
292 }
293 }
294 err = filemap_fdatawait(btree_inode->i_mapping);
295 if (err)
296 werr = err;
297 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400298}
299
Chris Mason0b86a832008-03-24 15:01:56 -0400300static int update_cowonly_root(struct btrfs_trans_handle *trans,
301 struct btrfs_root *root)
302{
303 int ret;
304 u64 old_root_bytenr;
305 struct btrfs_root *tree_root = root->fs_info->tree_root;
306
307 btrfs_write_dirty_block_groups(trans, root);
308 while(1) {
309 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
310 if (old_root_bytenr == root->node->start)
311 break;
312 btrfs_set_root_bytenr(&root->root_item,
313 root->node->start);
314 btrfs_set_root_level(&root->root_item,
315 btrfs_header_level(root->node));
316 ret = btrfs_update_root(trans, tree_root,
317 &root->root_key,
318 &root->root_item);
319 BUG_ON(ret);
320 btrfs_write_dirty_block_groups(trans, root);
321 }
322 return 0;
323}
324
Chris Mason79154b12007-03-22 15:59:16 -0400325int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
326 struct btrfs_root *root)
327{
Chris Mason79154b12007-03-22 15:59:16 -0400328 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400329 struct list_head *next;
Chris Mason79154b12007-03-22 15:59:16 -0400330
Chris Mason0b86a832008-03-24 15:01:56 -0400331 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
332 next = fs_info->dirty_cowonly_roots.next;
333 list_del_init(next);
334 root = list_entry(next, struct btrfs_root, dirty_list);
335 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400336 }
337 return 0;
338}
339
Chris Mason5ce14bb2007-09-11 11:15:39 -0400340int btrfs_add_dead_root(struct btrfs_root *root,
341 struct btrfs_root *latest,
342 struct list_head *dead_list)
Chris Mason5eda7b52007-06-22 14:16:25 -0400343{
344 struct dirty_root *dirty;
345
346 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
347 if (!dirty)
348 return -ENOMEM;
Yan Zheng31153d82008-07-28 15:32:19 -0400349 btrfs_leaf_ref_tree_init(&dirty->ref_tree);
Chris Mason5eda7b52007-06-22 14:16:25 -0400350 dirty->root = root;
Chris Mason5ce14bb2007-09-11 11:15:39 -0400351 dirty->latest_root = latest;
Yan Zheng31153d82008-07-28 15:32:19 -0400352 root->ref_tree = NULL;
Chris Mason5eda7b52007-06-22 14:16:25 -0400353 list_add(&dirty->list, dead_list);
354 return 0;
355}
356
Chris Mason80b67942008-02-01 16:35:04 -0500357static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
358 struct radix_tree_root *radix,
359 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400360{
361 struct dirty_root *dirty;
362 struct btrfs_root *gang[8];
363 struct btrfs_root *root;
364 int i;
365 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400366 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400367 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400368
Chris Mason0f7d52f2007-04-09 10:42:37 -0400369 while(1) {
370 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
371 ARRAY_SIZE(gang),
372 BTRFS_ROOT_TRANS_TAG);
373 if (ret == 0)
374 break;
375 for (i = 0; i < ret; i++) {
376 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400377 radix_tree_tag_clear(radix,
378 (unsigned long)root->root_key.objectid,
379 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400380
381 BUG_ON(!root->ref_tree);
382 dirty = container_of(root->ref_tree, struct dirty_root,
383 ref_tree);
384
Chris Mason0f7d52f2007-04-09 10:42:37 -0400385 if (root->commit_root == root->node) {
Chris Masondb945352007-10-15 16:15:53 -0400386 WARN_ON(root->node->start !=
387 btrfs_root_bytenr(&root->root_item));
Yan Zheng31153d82008-07-28 15:32:19 -0400388
389 BUG_ON(!btrfs_leaf_ref_tree_empty(
390 root->ref_tree));
Chris Mason5f39d392007-10-15 16:14:19 -0400391 free_extent_buffer(root->commit_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400392 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400393 root->ref_tree = NULL;
394
395 kfree(dirty->root);
396 kfree(dirty);
Josef Bacik58176a92007-08-29 15:47:34 -0400397
398 /* make sure to update the root on disk
399 * so we get any updates to the block used
400 * counts
401 */
402 err = btrfs_update_root(trans,
403 root->fs_info->tree_root,
404 &root->root_key,
405 &root->root_item);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400406 continue;
407 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400408
409 memset(&root->root_item.drop_progress, 0,
410 sizeof(struct btrfs_disk_key));
411 root->root_item.drop_level = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400412 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400413 root->ref_tree = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400414 root->root_key.offset = root->fs_info->generation;
Chris Masondb945352007-10-15 16:15:53 -0400415 btrfs_set_root_bytenr(&root->root_item,
416 root->node->start);
417 btrfs_set_root_level(&root->root_item,
418 btrfs_header_level(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400419 err = btrfs_insert_root(trans, root->fs_info->tree_root,
420 &root->root_key,
421 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400422 if (err)
423 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400424
425 refs = btrfs_root_refs(&dirty->root->root_item);
426 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400427 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400428 &dirty->root->root_key,
429 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400430
431 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400432 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400433 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400434 } else {
435 WARN_ON(1);
Yan Zheng31153d82008-07-28 15:32:19 -0400436 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400437 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400438 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400439 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400440 }
441 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400442 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400443}
444
Chris Masone9d0b132007-08-10 14:06:19 -0400445int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
446{
447 struct btrfs_fs_info *info = root->fs_info;
448 int ret;
449 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400450 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400451
Chris Masona2135012008-06-25 16:01:30 -0400452 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400453 if (root->defrag_running)
454 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400455 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400456 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400457 root->defrag_running = 1;
458 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400459 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400460 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400461 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400462 cond_resched();
463
Chris Masone9d0b132007-08-10 14:06:19 -0400464 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400465 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400466 break;
467 }
468 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400469 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400470 btrfs_end_transaction(trans, root);
471 return 0;
472}
473
Chris Mason80b67942008-02-01 16:35:04 -0500474static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
475 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400476{
477 struct dirty_root *dirty;
478 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400479 unsigned long nr;
Chris Masondb945352007-10-15 16:15:53 -0400480 u64 num_bytes;
481 u64 bytes_used;
Chris Mason54aa1f42007-06-22 14:16:25 -0400482 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400483 int err;
484
Chris Mason0f7d52f2007-04-09 10:42:37 -0400485 while(!list_empty(list)) {
Josef Bacik58176a92007-08-29 15:47:34 -0400486 struct btrfs_root *root;
487
Chris Mason0f7d52f2007-04-09 10:42:37 -0400488 dirty = list_entry(list->next, struct dirty_root, list);
489 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400490
Chris Masondb945352007-10-15 16:15:53 -0400491 num_bytes = btrfs_root_used(&dirty->root->root_item);
Josef Bacik58176a92007-08-29 15:47:34 -0400492 root = dirty->latest_root;
Chris Masona2135012008-06-25 16:01:30 -0400493 atomic_inc(&root->fs_info->throttles);
Josef Bacik58176a92007-08-29 15:47:34 -0400494
Chris Masona2135012008-06-25 16:01:30 -0400495 mutex_lock(&root->fs_info->drop_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400496 while(1) {
497 trans = btrfs_start_transaction(tree_root, 1);
498 ret = btrfs_drop_snapshot(trans, dirty->root);
499 if (ret != -EAGAIN) {
500 break;
501 }
Josef Bacik58176a92007-08-29 15:47:34 -0400502
Chris Mason9f3a7422007-08-07 15:52:19 -0400503 err = btrfs_update_root(trans,
504 tree_root,
505 &dirty->root->root_key,
506 &dirty->root->root_item);
507 if (err)
508 ret = err;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400509 nr = trans->blocks_used;
Chris Mason1b1e2132008-06-25 16:01:31 -0400510 ret = btrfs_end_transaction_throttle(trans, tree_root);
Chris Mason9f3a7422007-08-07 15:52:19 -0400511 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400512
513 mutex_unlock(&root->fs_info->drop_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400514 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400515 cond_resched();
Chris Masona2135012008-06-25 16:01:30 -0400516 mutex_lock(&root->fs_info->drop_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400517 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400518 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400519 atomic_dec(&root->fs_info->throttles);
Josef Bacik58176a92007-08-29 15:47:34 -0400520
Chris Masona2135012008-06-25 16:01:30 -0400521 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masondb945352007-10-15 16:15:53 -0400522 num_bytes -= btrfs_root_used(&dirty->root->root_item);
523 bytes_used = btrfs_root_used(&root->root_item);
524 if (num_bytes) {
Josef Bacik58176a92007-08-29 15:47:34 -0400525 record_root_in_trans(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400526 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400527 bytes_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400528 }
Chris Masona2135012008-06-25 16:01:30 -0400529 mutex_unlock(&root->fs_info->alloc_mutex);
530
Chris Mason9f3a7422007-08-07 15:52:19 -0400531 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Josef Bacik58176a92007-08-29 15:47:34 -0400532 if (ret) {
533 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -0400534 break;
Josef Bacik58176a92007-08-29 15:47:34 -0400535 }
Chris Masona2135012008-06-25 16:01:30 -0400536 mutex_unlock(&root->fs_info->drop_mutex);
537
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400538 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400539 ret = btrfs_end_transaction(trans, tree_root);
540 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400541
Yan Zheng31153d82008-07-28 15:32:19 -0400542 btrfs_remove_leaf_refs(dirty->root);
543
Chris Masonf510cfe2007-10-15 16:14:48 -0400544 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400545 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400546 kfree(dirty);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400547
548 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400549 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400550 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400551 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400552}
553
Chris Mason80b67942008-02-01 16:35:04 -0500554static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500555 struct btrfs_fs_info *fs_info,
556 struct btrfs_pending_snapshot *pending)
557{
558 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500559 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500560 struct btrfs_root *tree_root = fs_info->tree_root;
561 struct btrfs_root *root = pending->root;
562 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400563 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500564 int ret;
Sven Wegener3b963622008-06-09 21:57:42 -0400565 int namelen;
Chris Mason3063d292008-01-08 15:46:30 -0500566 u64 objectid;
567
Chris Mason80b67942008-02-01 16:35:04 -0500568 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
569 if (!new_root_item) {
570 ret = -ENOMEM;
571 goto fail;
572 }
Chris Mason3063d292008-01-08 15:46:30 -0500573 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
574 if (ret)
575 goto fail;
576
Chris Mason80b67942008-02-01 16:35:04 -0500577 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500578
579 key.objectid = objectid;
580 key.offset = 1;
581 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
582
Chris Mason925baed2008-06-25 16:01:30 -0400583 old = btrfs_lock_root_node(root);
584 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Chris Mason3063d292008-01-08 15:46:30 -0500585
Chris Mason925baed2008-06-25 16:01:30 -0400586 btrfs_copy_root(trans, root, old, &tmp, objectid);
587 btrfs_tree_unlock(old);
588 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500589
Chris Mason80b67942008-02-01 16:35:04 -0500590 btrfs_set_root_bytenr(new_root_item, tmp->start);
591 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
Chris Mason3063d292008-01-08 15:46:30 -0500592 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500593 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400594 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500595 free_extent_buffer(tmp);
596 if (ret)
597 goto fail;
598
599 /*
600 * insert the directory item
601 */
602 key.offset = (u64)-1;
Sven Wegener3b963622008-06-09 21:57:42 -0400603 namelen = strlen(pending->name);
Chris Mason3063d292008-01-08 15:46:30 -0500604 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
Sven Wegener3b963622008-06-09 21:57:42 -0400605 pending->name, namelen,
Chris Mason3063d292008-01-08 15:46:30 -0500606 root->fs_info->sb->s_root->d_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -0400607 &key, BTRFS_FT_DIR, 0);
Chris Mason3063d292008-01-08 15:46:30 -0500608
609 if (ret)
610 goto fail;
611
612 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
613 pending->name, strlen(pending->name), objectid,
Josef Bacikaec74772008-07-24 12:12:38 -0400614 root->fs_info->sb->s_root->d_inode->i_ino, 0);
Sven Wegener3b963622008-06-09 21:57:42 -0400615
616 /* Invalidate existing dcache entry for new snapshot. */
617 btrfs_invalidate_dcache_root(root, pending->name, namelen);
618
Chris Mason3063d292008-01-08 15:46:30 -0500619fail:
Chris Mason80b67942008-02-01 16:35:04 -0500620 kfree(new_root_item);
Chris Mason3063d292008-01-08 15:46:30 -0500621 return ret;
622}
623
Chris Mason80b67942008-02-01 16:35:04 -0500624static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
625 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500626{
627 struct btrfs_pending_snapshot *pending;
628 struct list_head *head = &trans->transaction->pending_snapshots;
629 int ret;
630
631 while(!list_empty(head)) {
632 pending = list_entry(head->next,
633 struct btrfs_pending_snapshot, list);
634 ret = create_pending_snapshot(trans, fs_info, pending);
635 BUG_ON(ret);
636 list_del(&pending->list);
637 kfree(pending->name);
638 kfree(pending);
639 }
Chris Masondc17ff82008-01-08 15:46:30 -0500640 return 0;
641}
642
Chris Mason79154b12007-03-22 15:59:16 -0400643int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
644 struct btrfs_root *root)
645{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400646 unsigned long joined = 0;
647 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400648 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400649 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400650 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400651 struct list_head dirty_fs_roots;
Chris Masond1310b22008-01-24 16:13:08 -0500652 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400653 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400654 int ret;
Chris Mason79154b12007-03-22 15:59:16 -0400655
Chris Mason0f7d52f2007-04-09 10:42:37 -0400656 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400657
Chris Mason79154b12007-03-22 15:59:16 -0400658 mutex_lock(&root->fs_info->trans_mutex);
659 if (trans->transaction->in_commit) {
660 cur_trans = trans->transaction;
661 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400662 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400663 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400664
Chris Mason79154b12007-03-22 15:59:16 -0400665 ret = wait_for_commit(root, cur_trans);
666 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400667
668 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400669 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400670 mutex_unlock(&root->fs_info->trans_mutex);
671
Chris Mason79154b12007-03-22 15:59:16 -0400672 return 0;
673 }
Chris Mason4313b392008-01-03 09:08:48 -0500674
675 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
676 if (!pinned_copy)
677 return -ENOMEM;
678
Chris Masond1310b22008-01-24 16:13:08 -0500679 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500680 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
681
Chris Mason2c90e5d2007-04-02 10:50:19 -0400682 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400683 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400684 cur_trans = trans->transaction;
685 if (cur_trans->list.prev != &root->fs_info->trans_list) {
686 prev_trans = list_entry(cur_trans->list.prev,
687 struct btrfs_transaction, list);
688 if (!prev_trans->commit_done) {
689 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400690 mutex_unlock(&root->fs_info->trans_mutex);
691
692 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400693
Chris Masonccd467d2007-06-28 15:57:36 -0400694 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400695 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400696 }
697 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400698
699 do {
700 joined = cur_trans->num_joined;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400701 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400702 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400703 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400704
705 if (cur_trans->num_writers > 1)
706 timeout = MAX_SCHEDULE_TIMEOUT;
707 else
708 timeout = 1;
709
Chris Mason79154b12007-03-22 15:59:16 -0400710 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400711
712 schedule_timeout(timeout);
713
Chris Mason79154b12007-03-22 15:59:16 -0400714 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400715 finish_wait(&cur_trans->writer_wait, &wait);
716 } while (cur_trans->num_writers > 1 ||
717 (cur_trans->num_joined != joined));
718
Chris Mason3063d292008-01-08 15:46:30 -0500719 ret = create_pending_snapshots(trans, root->fs_info);
720 BUG_ON(ret);
721
Chris Mason2c90e5d2007-04-02 10:50:19 -0400722 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500723
Chris Mason54aa1f42007-06-22 14:16:25 -0400724 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
725 &dirty_fs_roots);
726 BUG_ON(ret);
727
Yan Zheng31153d82008-07-28 15:32:19 -0400728 spin_lock(&root->fs_info->ref_cache_lock);
729 root->fs_info->running_ref_cache_size = 0;
730 spin_unlock(&root->fs_info->ref_cache_lock);
731
Chris Mason79154b12007-03-22 15:59:16 -0400732 ret = btrfs_commit_tree_roots(trans, root);
733 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400734
Chris Mason78fae272007-03-25 11:35:08 -0400735 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -0500736 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -0400737 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -0500738 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason4b52dff2007-06-26 10:06:50 -0400739 btrfs_set_super_generation(&root->fs_info->super_copy,
740 cur_trans->transid);
741 btrfs_set_super_root(&root->fs_info->super_copy,
Chris Masondb945352007-10-15 16:15:53 -0400742 root->fs_info->tree_root->node->start);
743 btrfs_set_super_root_level(&root->fs_info->super_copy,
744 btrfs_header_level(root->fs_info->tree_root->node));
Chris Mason5f39d392007-10-15 16:14:19 -0400745
Chris Mason0b86a832008-03-24 15:01:56 -0400746 btrfs_set_super_chunk_root(&root->fs_info->super_copy,
747 chunk_root->node->start);
748 btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
749 btrfs_header_level(chunk_root->node));
Chris Masona061fc82008-05-07 11:43:44 -0400750 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
751 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -0400752
Chris Mason4313b392008-01-03 09:08:48 -0500753 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -0400754
Chris Masonf9295742008-07-17 12:54:14 -0400755 trans->transaction->blocked = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400756 wake_up(&root->fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -0400757 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400758
Chris Mason78fae272007-03-25 11:35:08 -0400759 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400760 ret = btrfs_write_and_wait_transaction(trans, root);
761 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400762 write_ctree_super(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -0500763
Chris Mason4313b392008-01-03 09:08:48 -0500764 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason78fae272007-03-25 11:35:08 -0400765 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500766
767 kfree(pinned_copy);
768
Chris Mason2c90e5d2007-04-02 10:50:19 -0400769 cur_trans->commit_done = 1;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400770 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400771 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400772 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400773 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -0400774
Chris Masonfacda1e2007-06-08 18:11:48 -0400775 if (root->fs_info->closing)
776 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
777 else
778 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Josef Bacik58176a92007-08-29 15:47:34 -0400779
Chris Mason78fae272007-03-25 11:35:08 -0400780 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400781 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400782
Chris Masonfacda1e2007-06-08 18:11:48 -0400783 if (root->fs_info->closing) {
Chris Masonfacda1e2007-06-08 18:11:48 -0400784 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
Chris Masonfacda1e2007-06-08 18:11:48 -0400785 }
Chris Mason79154b12007-03-22 15:59:16 -0400786 return ret;
787}
788
Chris Masone9d0b132007-08-10 14:06:19 -0400789int btrfs_clean_old_snapshots(struct btrfs_root *root)
790{
791 struct list_head dirty_roots;
792 INIT_LIST_HEAD(&dirty_roots);
Chris Masona74a4b92008-06-25 16:01:31 -0400793again:
Chris Masone9d0b132007-08-10 14:06:19 -0400794 mutex_lock(&root->fs_info->trans_mutex);
795 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
796 mutex_unlock(&root->fs_info->trans_mutex);
797
798 if (!list_empty(&dirty_roots)) {
799 drop_dirty_roots(root, &dirty_roots);
Chris Masona74a4b92008-06-25 16:01:31 -0400800 goto again;
Chris Masone9d0b132007-08-10 14:06:19 -0400801 }
802 return 0;
803}
Chris Mason08607c12007-06-08 15:33:54 -0400804