blob: e9a0983897f369a79915c1491156d47d5576c903 [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"
26
Chris Mason78fae272007-03-25 11:35:08 -040027static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040028extern struct kmem_cache *btrfs_trans_handle_cachep;
29extern struct kmem_cache *btrfs_transaction_cachep;
30
Chris Mason08607c12007-06-08 15:33:54 -040031static struct workqueue_struct *trans_wq;
32
Chris Mason0f7d52f2007-04-09 10:42:37 -040033#define BTRFS_ROOT_TRANS_TAG 0
Chris Mason6702ed42007-08-07 16:15:09 -040034#define BTRFS_ROOT_DEFRAG_TAG 1
Chris Mason0f7d52f2007-04-09 10:42:37 -040035
Chris Mason80b67942008-02-01 16:35:04 -050036static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040037{
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040039 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040040 if (transaction->use_count == 0) {
41 WARN_ON(total_trans == 0);
42 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040043 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040044 memset(transaction, 0, sizeof(*transaction));
45 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040046 }
Chris Mason79154b12007-03-22 15:59:16 -040047}
48
Chris Mason80b67942008-02-01 16:35:04 -050049static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040050{
51 struct btrfs_transaction *cur_trans;
52 cur_trans = root->fs_info->running_transaction;
53 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040054 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
55 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040056 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040057 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040058 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040059 root->fs_info->running_transaction = cur_trans;
Chris Masone18e4802008-01-18 10:54:22 -050060 root->fs_info->last_alloc = 0;
Chris Mason4529ba42008-01-31 16:45:07 -050061 root->fs_info->last_data_alloc = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040062 cur_trans->num_writers = 1;
63 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040064 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040065 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
Chris Masond5719762007-03-23 10:01:08 -040068 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040069 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040070 cur_trans->start_time = get_seconds();
Chris Mason3063d292008-01-08 15:46:30 -050071 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040072 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masondc17ff82008-01-08 15:46:30 -050073 btrfs_ordered_inode_tree_init(&cur_trans->ordered_inode_tree);
Chris Masond1310b22008-01-24 16:13:08 -050074 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040075 root->fs_info->btree_inode->i_mapping,
76 GFP_NOFS);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040077 } else {
78 cur_trans->num_writers++;
79 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040080 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040081
Chris Mason79154b12007-03-22 15:59:16 -040082 return 0;
83}
84
Chris Mason80b67942008-02-01 16:35:04 -050085static noinline int record_root_in_trans(struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -040086{
87 u64 running_trans_id = root->fs_info->running_transaction->transid;
88 if (root->ref_cows && root->last_trans < running_trans_id) {
89 WARN_ON(root == root->fs_info->extent_root);
90 if (root->root_item.refs != 0) {
91 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
92 (unsigned long)root->root_key.objectid,
93 BTRFS_ROOT_TRANS_TAG);
94 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
95 (unsigned long)root->root_key.objectid,
96 BTRFS_ROOT_DEFRAG_TAG);
97 root->commit_root = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -040098 extent_buffer_get(root->node);
Chris Mason6702ed42007-08-07 16:15:09 -040099 } else {
100 WARN_ON(1);
101 }
102 root->last_trans = running_trans_id;
103 }
104 return 0;
105}
106
Chris Mason79154b12007-03-22 15:59:16 -0400107struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
108 int num_blocks)
109{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400110 struct btrfs_trans_handle *h =
111 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -0400112 int ret;
113
114 mutex_lock(&root->fs_info->trans_mutex);
115 ret = join_transaction(root);
116 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400117
Chris Mason6702ed42007-08-07 16:15:09 -0400118 record_root_in_trans(root);
119 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400120 h->transaction = root->fs_info->running_transaction;
121 h->blocks_reserved = num_blocks;
122 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400123 h->block_group = NULL;
Chris Mason26b80032007-08-08 20:17:12 -0400124 h->alloc_exclude_nr = 0;
125 h->alloc_exclude_start = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400126 root->fs_info->running_transaction->use_count++;
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return h;
129}
130
131int btrfs_end_transaction(struct btrfs_trans_handle *trans,
132 struct btrfs_root *root)
133{
134 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400135
Chris Mason79154b12007-03-22 15:59:16 -0400136 mutex_lock(&root->fs_info->trans_mutex);
137 cur_trans = root->fs_info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400138 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400139 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400140 cur_trans->num_writers--;
Chris Mason79154b12007-03-22 15:59:16 -0400141 if (waitqueue_active(&cur_trans->writer_wait))
142 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400143 put_transaction(cur_trans);
144 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400145 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400146 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400147 return 0;
148}
149
150
151int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
152 struct btrfs_root *root)
153{
Chris Mason7c4452b2007-04-28 09:29:35 -0400154 int ret;
Chris Mason7c4452b2007-04-28 09:29:35 -0400155 int err;
156 int werr = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500157 struct extent_io_tree *dirty_pages;
Chris Mason7c4452b2007-04-28 09:29:35 -0400158 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400159 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason5f39d392007-10-15 16:14:19 -0400160 u64 start;
161 u64 end;
162 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400163
164 if (!trans || !trans->transaction) {
165 return filemap_write_and_wait(btree_inode->i_mapping);
166 }
167 dirty_pages = &trans->transaction->dirty_pages;
168 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400169 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
170 EXTENT_DIRTY);
171 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400172 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400173 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
174 while(start <= end) {
175 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400176 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason5f39d392007-10-15 16:14:19 -0400177 page = find_lock_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400178 if (!page)
179 continue;
Chris Mason6702ed42007-08-07 16:15:09 -0400180 if (PageWriteback(page)) {
181 if (PageDirty(page))
182 wait_on_page_writeback(page);
183 else {
184 unlock_page(page);
185 page_cache_release(page);
186 continue;
187 }
188 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400189 err = write_one_page(page, 0);
190 if (err)
191 werr = err;
192 page_cache_release(page);
193 }
194 }
195 err = filemap_fdatawait(btree_inode->i_mapping);
196 if (err)
197 werr = err;
198 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400199}
200
201int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
202 struct btrfs_root *root)
203{
204 int ret;
205 u64 old_extent_block;
206 struct btrfs_fs_info *fs_info = root->fs_info;
207 struct btrfs_root *tree_root = fs_info->tree_root;
208 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason79154b12007-03-22 15:59:16 -0400209
Chris Mason9078a3e2007-04-26 16:46:15 -0400210 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400211 while(1) {
Chris Masondb945352007-10-15 16:15:53 -0400212 old_extent_block = btrfs_root_bytenr(&extent_root->root_item);
213 if (old_extent_block == extent_root->node->start)
Chris Mason79154b12007-03-22 15:59:16 -0400214 break;
Chris Masondb945352007-10-15 16:15:53 -0400215 btrfs_set_root_bytenr(&extent_root->root_item,
216 extent_root->node->start);
217 btrfs_set_root_level(&extent_root->root_item,
218 btrfs_header_level(extent_root->node));
Chris Mason79154b12007-03-22 15:59:16 -0400219 ret = btrfs_update_root(trans, tree_root,
220 &extent_root->root_key,
221 &extent_root->root_item);
222 BUG_ON(ret);
Chris Mason9078a3e2007-04-26 16:46:15 -0400223 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400224 }
225 return 0;
226}
227
Chris Mason80b67942008-02-01 16:35:04 -0500228static noinline int wait_for_commit(struct btrfs_root *root,
229 struct btrfs_transaction *commit)
Chris Mason79154b12007-03-22 15:59:16 -0400230{
231 DEFINE_WAIT(wait);
Chris Masonccd467d2007-06-28 15:57:36 -0400232 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400233 while(!commit->commit_done) {
234 prepare_to_wait(&commit->commit_wait, &wait,
235 TASK_UNINTERRUPTIBLE);
236 if (commit->commit_done)
237 break;
238 mutex_unlock(&root->fs_info->trans_mutex);
239 schedule();
240 mutex_lock(&root->fs_info->trans_mutex);
241 }
Chris Masonccd467d2007-06-28 15:57:36 -0400242 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400243 finish_wait(&commit->commit_wait, &wait);
244 return 0;
245}
246
Chris Mason0f7d52f2007-04-09 10:42:37 -0400247struct dirty_root {
248 struct list_head list;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400249 struct btrfs_root *root;
Josef Bacik58176a92007-08-29 15:47:34 -0400250 struct btrfs_root *latest_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400251};
252
Chris Mason5ce14bb2007-09-11 11:15:39 -0400253int btrfs_add_dead_root(struct btrfs_root *root,
254 struct btrfs_root *latest,
255 struct list_head *dead_list)
Chris Mason5eda7b52007-06-22 14:16:25 -0400256{
257 struct dirty_root *dirty;
258
259 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
260 if (!dirty)
261 return -ENOMEM;
Chris Mason5eda7b52007-06-22 14:16:25 -0400262 dirty->root = root;
Chris Mason5ce14bb2007-09-11 11:15:39 -0400263 dirty->latest_root = latest;
Chris Mason5eda7b52007-06-22 14:16:25 -0400264 list_add(&dirty->list, dead_list);
265 return 0;
266}
267
Chris Mason80b67942008-02-01 16:35:04 -0500268static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
269 struct radix_tree_root *radix,
270 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400271{
272 struct dirty_root *dirty;
273 struct btrfs_root *gang[8];
274 struct btrfs_root *root;
275 int i;
276 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400277 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400278 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400279
Chris Mason0f7d52f2007-04-09 10:42:37 -0400280 while(1) {
281 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
282 ARRAY_SIZE(gang),
283 BTRFS_ROOT_TRANS_TAG);
284 if (ret == 0)
285 break;
286 for (i = 0; i < ret; i++) {
287 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400288 radix_tree_tag_clear(radix,
289 (unsigned long)root->root_key.objectid,
290 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400291 if (root->commit_root == root->node) {
Chris Masondb945352007-10-15 16:15:53 -0400292 WARN_ON(root->node->start !=
293 btrfs_root_bytenr(&root->root_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400294 free_extent_buffer(root->commit_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400295 root->commit_root = NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400296
297 /* make sure to update the root on disk
298 * so we get any updates to the block used
299 * counts
300 */
301 err = btrfs_update_root(trans,
302 root->fs_info->tree_root,
303 &root->root_key,
304 &root->root_item);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400305 continue;
306 }
307 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
308 BUG_ON(!dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400309 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
310 BUG_ON(!dirty->root);
311
312 memset(&root->root_item.drop_progress, 0,
313 sizeof(struct btrfs_disk_key));
314 root->root_item.drop_level = 0;
315
316 memcpy(dirty->root, root, sizeof(*root));
317 dirty->root->node = root->commit_root;
Josef Bacik58176a92007-08-29 15:47:34 -0400318 dirty->latest_root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400319 root->commit_root = NULL;
Chris Mason5eda7b52007-06-22 14:16:25 -0400320
Chris Mason0f7d52f2007-04-09 10:42:37 -0400321 root->root_key.offset = root->fs_info->generation;
Chris Masondb945352007-10-15 16:15:53 -0400322 btrfs_set_root_bytenr(&root->root_item,
323 root->node->start);
324 btrfs_set_root_level(&root->root_item,
325 btrfs_header_level(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400326 err = btrfs_insert_root(trans, root->fs_info->tree_root,
327 &root->root_key,
328 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400329 if (err)
330 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400331
332 refs = btrfs_root_refs(&dirty->root->root_item);
333 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400334 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400335 &dirty->root->root_key,
336 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400337
338 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400339 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400340 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400341 } else {
342 WARN_ON(1);
343 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400344 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400345 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400346 }
347 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400348 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400349}
350
Chris Masone9d0b132007-08-10 14:06:19 -0400351int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
352{
353 struct btrfs_fs_info *info = root->fs_info;
354 int ret;
355 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400356 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400357
358 if (root->defrag_running)
359 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400360 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400361 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400362 root->defrag_running = 1;
363 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400364 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400365 btrfs_end_transaction(trans, root);
366 mutex_unlock(&info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400367 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400368 cond_resched();
369
370 mutex_lock(&info->fs_mutex);
371 trans = btrfs_start_transaction(root, 1);
372 if (ret != -EAGAIN)
373 break;
374 }
375 root->defrag_running = 0;
376 radix_tree_tag_clear(&info->fs_roots_radix,
377 (unsigned long)root->root_key.objectid,
378 BTRFS_ROOT_DEFRAG_TAG);
379 btrfs_end_transaction(trans, root);
380 return 0;
381}
382
Chris Mason6702ed42007-08-07 16:15:09 -0400383int btrfs_defrag_dirty_roots(struct btrfs_fs_info *info)
384{
385 struct btrfs_root *gang[1];
386 struct btrfs_root *root;
Chris Mason6702ed42007-08-07 16:15:09 -0400387 int i;
388 int ret;
389 int err = 0;
390 u64 last = 0;
391
Chris Mason6702ed42007-08-07 16:15:09 -0400392 while(1) {
393 ret = radix_tree_gang_lookup_tag(&info->fs_roots_radix,
394 (void **)gang, last,
395 ARRAY_SIZE(gang),
396 BTRFS_ROOT_DEFRAG_TAG);
397 if (ret == 0)
398 break;
399 for (i = 0; i < ret; i++) {
400 root = gang[i];
401 last = root->root_key.objectid + 1;
Chris Masonf510cfe2007-10-15 16:14:48 -0400402 btrfs_defrag_root(root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400403 }
404 }
Chris Mason6b800532007-10-15 16:17:34 -0400405 btrfs_defrag_root(info->extent_root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400406 return err;
407}
408
Chris Mason80b67942008-02-01 16:35:04 -0500409static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
410 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400411{
412 struct dirty_root *dirty;
413 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400414 unsigned long nr;
Chris Masondb945352007-10-15 16:15:53 -0400415 u64 num_bytes;
416 u64 bytes_used;
Chris Mason54aa1f42007-06-22 14:16:25 -0400417 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400418 int err;
419
Chris Mason0f7d52f2007-04-09 10:42:37 -0400420 while(!list_empty(list)) {
Josef Bacik58176a92007-08-29 15:47:34 -0400421 struct btrfs_root *root;
422
Chris Masonfacda1e2007-06-08 18:11:48 -0400423 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400424 dirty = list_entry(list->next, struct dirty_root, list);
425 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400426
Chris Masondb945352007-10-15 16:15:53 -0400427 num_bytes = btrfs_root_used(&dirty->root->root_item);
Josef Bacik58176a92007-08-29 15:47:34 -0400428 root = dirty->latest_root;
Chris Masone2008b62008-01-08 15:46:30 -0500429 root->fs_info->throttles++;
Josef Bacik58176a92007-08-29 15:47:34 -0400430
Chris Mason9f3a7422007-08-07 15:52:19 -0400431 while(1) {
432 trans = btrfs_start_transaction(tree_root, 1);
433 ret = btrfs_drop_snapshot(trans, dirty->root);
434 if (ret != -EAGAIN) {
435 break;
436 }
Josef Bacik58176a92007-08-29 15:47:34 -0400437
Chris Mason9f3a7422007-08-07 15:52:19 -0400438 err = btrfs_update_root(trans,
439 tree_root,
440 &dirty->root->root_key,
441 &dirty->root->root_item);
442 if (err)
443 ret = err;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400444 nr = trans->blocks_used;
Chris Mason9f3a7422007-08-07 15:52:19 -0400445 ret = btrfs_end_transaction(trans, tree_root);
446 BUG_ON(ret);
Chris Masonf4468e92007-08-08 10:08:58 -0400447 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400448 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400449 cond_resched();
Chris Masonf4468e92007-08-08 10:08:58 -0400450 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400451 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400452 BUG_ON(ret);
Chris Masone2008b62008-01-08 15:46:30 -0500453 root->fs_info->throttles--;
Josef Bacik58176a92007-08-29 15:47:34 -0400454
Chris Masondb945352007-10-15 16:15:53 -0400455 num_bytes -= btrfs_root_used(&dirty->root->root_item);
456 bytes_used = btrfs_root_used(&root->root_item);
457 if (num_bytes) {
Josef Bacik58176a92007-08-29 15:47:34 -0400458 record_root_in_trans(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400459 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400460 bytes_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400461 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400462 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Josef Bacik58176a92007-08-29 15:47:34 -0400463 if (ret) {
464 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -0400465 break;
Josef Bacik58176a92007-08-29 15:47:34 -0400466 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400467 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400468 ret = btrfs_end_transaction(trans, tree_root);
469 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400470
Chris Masonf510cfe2007-10-15 16:14:48 -0400471 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400472 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400473 kfree(dirty);
Chris Masonfacda1e2007-06-08 18:11:48 -0400474 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400475
476 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400477 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400478 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400479 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400480}
481
Chris Masondc17ff82008-01-08 15:46:30 -0500482int btrfs_write_ordered_inodes(struct btrfs_trans_handle *trans,
483 struct btrfs_root *root)
484{
485 struct btrfs_transaction *cur_trans = trans->transaction;
486 struct inode *inode;
487 u64 root_objectid = 0;
488 u64 objectid = 0;
Chris Masondc17ff82008-01-08 15:46:30 -0500489 int ret;
490
Chris Masone2008b62008-01-08 15:46:30 -0500491 root->fs_info->throttles++;
Chris Masondc17ff82008-01-08 15:46:30 -0500492 while(1) {
493 ret = btrfs_find_first_ordered_inode(
494 &cur_trans->ordered_inode_tree,
Chris Mason4d5e74b2008-01-16 16:09:22 -0500495 &root_objectid, &objectid, &inode);
Chris Masondc17ff82008-01-08 15:46:30 -0500496 if (!ret)
497 break;
498
499 mutex_unlock(&root->fs_info->trans_mutex);
500 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500501
502 if (S_ISREG(inode->i_mode))
503 filemap_fdatawrite(inode->i_mapping);
504 iput(inode);
505
Chris Masondc17ff82008-01-08 15:46:30 -0500506 mutex_lock(&root->fs_info->fs_mutex);
507 mutex_lock(&root->fs_info->trans_mutex);
508 }
509 while(1) {
510 root_objectid = 0;
511 objectid = 0;
512 ret = btrfs_find_del_first_ordered_inode(
513 &cur_trans->ordered_inode_tree,
Chris Mason4d5e74b2008-01-16 16:09:22 -0500514 &root_objectid, &objectid, &inode);
Chris Masondc17ff82008-01-08 15:46:30 -0500515 if (!ret)
516 break;
517 mutex_unlock(&root->fs_info->trans_mutex);
518 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500519
520 if (S_ISREG(inode->i_mode))
521 filemap_write_and_wait(inode->i_mapping);
522 atomic_dec(&inode->i_count);
523 iput(inode);
524
Chris Masondc17ff82008-01-08 15:46:30 -0500525 mutex_lock(&root->fs_info->fs_mutex);
526 mutex_lock(&root->fs_info->trans_mutex);
527 }
Chris Masone2008b62008-01-08 15:46:30 -0500528 root->fs_info->throttles--;
Chris Mason3063d292008-01-08 15:46:30 -0500529 return 0;
530}
531
Chris Mason80b67942008-02-01 16:35:04 -0500532static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500533 struct btrfs_fs_info *fs_info,
534 struct btrfs_pending_snapshot *pending)
535{
536 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500537 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500538 struct btrfs_root *tree_root = fs_info->tree_root;
539 struct btrfs_root *root = pending->root;
540 struct extent_buffer *tmp;
541 int ret;
542 u64 objectid;
543
Chris Mason80b67942008-02-01 16:35:04 -0500544 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
545 if (!new_root_item) {
546 ret = -ENOMEM;
547 goto fail;
548 }
Chris Mason3063d292008-01-08 15:46:30 -0500549 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
550 if (ret)
551 goto fail;
552
Chris Mason80b67942008-02-01 16:35:04 -0500553 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500554
555 key.objectid = objectid;
556 key.offset = 1;
557 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
558
559 extent_buffer_get(root->node);
560 btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
561 free_extent_buffer(tmp);
562
563 btrfs_copy_root(trans, root, root->node, &tmp, objectid);
564
Chris Mason80b67942008-02-01 16:35:04 -0500565 btrfs_set_root_bytenr(new_root_item, tmp->start);
566 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
Chris Mason3063d292008-01-08 15:46:30 -0500567 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500568 new_root_item);
Chris Mason3063d292008-01-08 15:46:30 -0500569 free_extent_buffer(tmp);
570 if (ret)
571 goto fail;
572
573 /*
574 * insert the directory item
575 */
576 key.offset = (u64)-1;
577 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
578 pending->name, strlen(pending->name),
579 root->fs_info->sb->s_root->d_inode->i_ino,
580 &key, BTRFS_FT_DIR);
581
582 if (ret)
583 goto fail;
584
585 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
586 pending->name, strlen(pending->name), objectid,
587 root->fs_info->sb->s_root->d_inode->i_ino);
588fail:
Chris Mason80b67942008-02-01 16:35:04 -0500589 kfree(new_root_item);
Chris Mason3063d292008-01-08 15:46:30 -0500590 return ret;
591}
592
Chris Mason80b67942008-02-01 16:35:04 -0500593static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
594 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500595{
596 struct btrfs_pending_snapshot *pending;
597 struct list_head *head = &trans->transaction->pending_snapshots;
598 int ret;
599
600 while(!list_empty(head)) {
601 pending = list_entry(head->next,
602 struct btrfs_pending_snapshot, list);
603 ret = create_pending_snapshot(trans, fs_info, pending);
604 BUG_ON(ret);
605 list_del(&pending->list);
606 kfree(pending->name);
607 kfree(pending);
608 }
Chris Masondc17ff82008-01-08 15:46:30 -0500609 return 0;
610}
611
Chris Mason79154b12007-03-22 15:59:16 -0400612int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
613 struct btrfs_root *root)
614{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400615 unsigned long joined = 0;
616 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400617 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400618 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400619 struct list_head dirty_fs_roots;
Chris Masond1310b22008-01-24 16:13:08 -0500620 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400621 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400622 int ret;
Chris Mason79154b12007-03-22 15:59:16 -0400623
Chris Mason0f7d52f2007-04-09 10:42:37 -0400624 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400625
Chris Mason79154b12007-03-22 15:59:16 -0400626 mutex_lock(&root->fs_info->trans_mutex);
627 if (trans->transaction->in_commit) {
628 cur_trans = trans->transaction;
629 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400630 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400631 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400632
633 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400634 ret = wait_for_commit(root, cur_trans);
635 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400636
637 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400638 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400639 mutex_unlock(&root->fs_info->trans_mutex);
640
Chris Masonccd467d2007-06-28 15:57:36 -0400641 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400642 return 0;
643 }
Chris Mason4313b392008-01-03 09:08:48 -0500644
645 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
646 if (!pinned_copy)
647 return -ENOMEM;
648
Chris Masond1310b22008-01-24 16:13:08 -0500649 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500650 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
651
Chris Mason2c90e5d2007-04-02 10:50:19 -0400652 trans->transaction->in_commit = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400653 cur_trans = trans->transaction;
654 if (cur_trans->list.prev != &root->fs_info->trans_list) {
655 prev_trans = list_entry(cur_trans->list.prev,
656 struct btrfs_transaction, list);
657 if (!prev_trans->commit_done) {
658 prev_trans->use_count++;
659 mutex_unlock(&root->fs_info->fs_mutex);
660 mutex_unlock(&root->fs_info->trans_mutex);
661
662 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400663
664 mutex_lock(&root->fs_info->fs_mutex);
665 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400666 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400667 }
668 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400669
670 do {
671 joined = cur_trans->num_joined;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400672 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400673 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400674 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400675
676 if (cur_trans->num_writers > 1)
677 timeout = MAX_SCHEDULE_TIMEOUT;
678 else
679 timeout = 1;
680
Chris Masonccd467d2007-06-28 15:57:36 -0400681 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400682 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400683
684 schedule_timeout(timeout);
685
Chris Masonccd467d2007-06-28 15:57:36 -0400686 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400687 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400688 finish_wait(&cur_trans->writer_wait, &wait);
Chris Masondc17ff82008-01-08 15:46:30 -0500689 ret = btrfs_write_ordered_inodes(trans, root);
690
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400691 } while (cur_trans->num_writers > 1 ||
692 (cur_trans->num_joined != joined));
693
Chris Mason3063d292008-01-08 15:46:30 -0500694 ret = create_pending_snapshots(trans, root->fs_info);
695 BUG_ON(ret);
696
Chris Mason2c90e5d2007-04-02 10:50:19 -0400697 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500698
Chris Mason54aa1f42007-06-22 14:16:25 -0400699 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
700 &dirty_fs_roots);
701 BUG_ON(ret);
702
Chris Mason79154b12007-03-22 15:59:16 -0400703 ret = btrfs_commit_tree_roots(trans, root);
704 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400705
Chris Mason78fae272007-03-25 11:35:08 -0400706 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -0500707 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -0400708 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -0500709 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason4b52dff2007-06-26 10:06:50 -0400710 btrfs_set_super_generation(&root->fs_info->super_copy,
711 cur_trans->transid);
712 btrfs_set_super_root(&root->fs_info->super_copy,
Chris Masondb945352007-10-15 16:15:53 -0400713 root->fs_info->tree_root->node->start);
714 btrfs_set_super_root_level(&root->fs_info->super_copy,
715 btrfs_header_level(root->fs_info->tree_root->node));
Chris Mason5f39d392007-10-15 16:14:19 -0400716
717 write_extent_buffer(root->fs_info->sb_buffer,
718 &root->fs_info->super_copy, 0,
719 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -0400720
Chris Mason4313b392008-01-03 09:08:48 -0500721 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -0400722
Chris Mason78fae272007-03-25 11:35:08 -0400723 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason8fd17792007-04-19 21:01:03 -0400724 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400725 ret = btrfs_write_and_wait_transaction(trans, root);
726 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400727 write_ctree_super(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -0500728
Chris Mason8fd17792007-04-19 21:01:03 -0400729 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500730 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason78fae272007-03-25 11:35:08 -0400731 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500732
733 kfree(pinned_copy);
734
Chris Mason2c90e5d2007-04-02 10:50:19 -0400735 cur_trans->commit_done = 1;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400736 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400737 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400738 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400739 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -0400740
Chris Masonfacda1e2007-06-08 18:11:48 -0400741 if (root->fs_info->closing)
742 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
743 else
744 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Josef Bacik58176a92007-08-29 15:47:34 -0400745
Chris Mason78fae272007-03-25 11:35:08 -0400746 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400747 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400748
Chris Masonfacda1e2007-06-08 18:11:48 -0400749 if (root->fs_info->closing) {
750 mutex_unlock(&root->fs_info->fs_mutex);
751 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
752 mutex_lock(&root->fs_info->fs_mutex);
753 }
Chris Mason79154b12007-03-22 15:59:16 -0400754 return ret;
755}
756
Chris Masone9d0b132007-08-10 14:06:19 -0400757int btrfs_clean_old_snapshots(struct btrfs_root *root)
758{
759 struct list_head dirty_roots;
760 INIT_LIST_HEAD(&dirty_roots);
761
762 mutex_lock(&root->fs_info->trans_mutex);
763 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
764 mutex_unlock(&root->fs_info->trans_mutex);
765
766 if (!list_empty(&dirty_roots)) {
767 drop_dirty_roots(root, &dirty_roots);
768 }
769 return 0;
770}
Chris Mason6da6aba2007-12-18 16:15:09 -0500771#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
772void btrfs_transaction_cleaner(void *p)
773#else
Chris Mason08607c12007-06-08 15:33:54 -0400774void btrfs_transaction_cleaner(struct work_struct *work)
Chris Mason6da6aba2007-12-18 16:15:09 -0500775#endif
Chris Mason08607c12007-06-08 15:33:54 -0400776{
Chris Mason6da6aba2007-12-18 16:15:09 -0500777#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
778 struct btrfs_fs_info *fs_info = p;
779#else
Chris Mason08607c12007-06-08 15:33:54 -0400780 struct btrfs_fs_info *fs_info = container_of(work,
781 struct btrfs_fs_info,
782 trans_work.work);
783
Chris Mason6da6aba2007-12-18 16:15:09 -0500784#endif
Chris Mason08607c12007-06-08 15:33:54 -0400785 struct btrfs_root *root = fs_info->tree_root;
786 struct btrfs_transaction *cur;
787 struct btrfs_trans_handle *trans;
788 unsigned long now;
789 unsigned long delay = HZ * 30;
790 int ret;
791
Chris Mason08607c12007-06-08 15:33:54 -0400792 mutex_lock(&root->fs_info->fs_mutex);
793 mutex_lock(&root->fs_info->trans_mutex);
794 cur = root->fs_info->running_transaction;
795 if (!cur) {
796 mutex_unlock(&root->fs_info->trans_mutex);
797 goto out;
798 }
799 now = get_seconds();
800 if (now < cur->start_time || now - cur->start_time < 30) {
801 mutex_unlock(&root->fs_info->trans_mutex);
802 delay = HZ * 5;
803 goto out;
804 }
805 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400806 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason08607c12007-06-08 15:33:54 -0400807 trans = btrfs_start_transaction(root, 1);
808 ret = btrfs_commit_transaction(trans, root);
809out:
810 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400811 btrfs_clean_old_snapshots(root);
Chris Mason08607c12007-06-08 15:33:54 -0400812 btrfs_transaction_queue_work(root, delay);
813}
814
815void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
816{
817 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
818}
819
820void btrfs_transaction_flush_work(struct btrfs_root *root)
821{
822 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
823 flush_workqueue(trans_wq);
824}
825
826void __init btrfs_init_transaction_sys(void)
827{
828 trans_wq = create_workqueue("btrfs");
829}
830
Christian Hesse17636e02007-12-11 09:25:06 -0500831void btrfs_exit_transaction_sys(void)
Chris Mason08607c12007-06-08 15:33:54 -0400832{
833 destroy_workqueue(trans_wq);
834}
835