blob: 69ed5f85a38792d87e23a7e62385e6a3602f4a9d [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"
Chris Mason79154b12007-03-22 15:59:16 -040027
Chris Mason78fae272007-03-25 11:35:08 -040028static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040029extern struct kmem_cache *btrfs_trans_handle_cachep;
30extern struct kmem_cache *btrfs_transaction_cachep;
31
Chris Mason08607c12007-06-08 15:33:54 -040032static struct workqueue_struct *trans_wq;
33
Chris Mason0f7d52f2007-04-09 10:42:37 -040034#define BTRFS_ROOT_TRANS_TAG 0
Chris Mason6702ed42007-08-07 16:15:09 -040035#define BTRFS_ROOT_DEFRAG_TAG 1
Chris Mason0f7d52f2007-04-09 10:42:37 -040036
Chris Mason80b67942008-02-01 16:35:04 -050037static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040038{
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040040 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040041 if (transaction->use_count == 0) {
42 WARN_ON(total_trans == 0);
43 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040044 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040045 memset(transaction, 0, sizeof(*transaction));
46 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040047 }
Chris Mason79154b12007-03-22 15:59:16 -040048}
49
Chris Mason80b67942008-02-01 16:35:04 -050050static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040051{
52 struct btrfs_transaction *cur_trans;
53 cur_trans = root->fs_info->running_transaction;
54 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040055 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
56 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040057 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040058 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040059 root->fs_info->generation++;
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);
Chris Mason48ec2cf2008-06-09 09:35:50 -040077 spin_lock(&root->fs_info->new_trans_lock);
78 root->fs_info->running_transaction = cur_trans;
79 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040080 } else {
81 cur_trans->num_writers++;
82 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040083 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040084
Chris Mason79154b12007-03-22 15:59:16 -040085 return 0;
86}
87
Chris Mason80b67942008-02-01 16:35:04 -050088static noinline int record_root_in_trans(struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -040089{
90 u64 running_trans_id = root->fs_info->running_transaction->transid;
91 if (root->ref_cows && root->last_trans < running_trans_id) {
92 WARN_ON(root == root->fs_info->extent_root);
93 if (root->root_item.refs != 0) {
94 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
95 (unsigned long)root->root_key.objectid,
96 BTRFS_ROOT_TRANS_TAG);
97 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
98 (unsigned long)root->root_key.objectid,
99 BTRFS_ROOT_DEFRAG_TAG);
Chris Mason925baed2008-06-25 16:01:30 -0400100 root->commit_root = btrfs_root_node(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400101 } else {
102 WARN_ON(1);
103 }
104 root->last_trans = running_trans_id;
105 }
106 return 0;
107}
108
Chris Mason79154b12007-03-22 15:59:16 -0400109struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
110 int num_blocks)
111{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400112 struct btrfs_trans_handle *h =
113 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -0400114 int ret;
115
116 mutex_lock(&root->fs_info->trans_mutex);
117 ret = join_transaction(root);
118 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400119
Chris Mason6702ed42007-08-07 16:15:09 -0400120 record_root_in_trans(root);
121 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400122 h->transaction = root->fs_info->running_transaction;
123 h->blocks_reserved = num_blocks;
124 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400125 h->block_group = NULL;
Chris Mason26b80032007-08-08 20:17:12 -0400126 h->alloc_exclude_nr = 0;
127 h->alloc_exclude_start = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400128 root->fs_info->running_transaction->use_count++;
129 mutex_unlock(&root->fs_info->trans_mutex);
130 return h;
131}
132
Chris Mason89ce8a62008-06-25 16:01:31 -0400133static noinline int wait_for_commit(struct btrfs_root *root,
134 struct btrfs_transaction *commit)
135{
136 DEFINE_WAIT(wait);
137 mutex_lock(&root->fs_info->trans_mutex);
138 while(!commit->commit_done) {
139 prepare_to_wait(&commit->commit_wait, &wait,
140 TASK_UNINTERRUPTIBLE);
141 if (commit->commit_done)
142 break;
143 mutex_unlock(&root->fs_info->trans_mutex);
144 schedule();
145 mutex_lock(&root->fs_info->trans_mutex);
146 }
147 mutex_unlock(&root->fs_info->trans_mutex);
148 finish_wait(&commit->commit_wait, &wait);
149 return 0;
150}
151
152static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
153 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400154{
155 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400156
Chris Mason79154b12007-03-22 15:59:16 -0400157 mutex_lock(&root->fs_info->trans_mutex);
158 cur_trans = root->fs_info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400159 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400160 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400161 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400162
Chris Mason79154b12007-03-22 15:59:16 -0400163 if (waitqueue_active(&cur_trans->writer_wait))
164 wake_up(&cur_trans->writer_wait);
Chris Mason89ce8a62008-06-25 16:01:31 -0400165
166 if (cur_trans->in_commit && throttle) {
167 int ret;
168 mutex_unlock(&root->fs_info->trans_mutex);
169 ret = wait_for_commit(root, cur_trans);
170 BUG_ON(ret);
171 mutex_lock(&root->fs_info->trans_mutex);
172 }
173
Chris Mason79154b12007-03-22 15:59:16 -0400174 put_transaction(cur_trans);
175 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400176 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400177 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400178 return 0;
179}
180
Chris Mason89ce8a62008-06-25 16:01:31 -0400181int btrfs_end_transaction(struct btrfs_trans_handle *trans,
182 struct btrfs_root *root)
183{
184 return __btrfs_end_transaction(trans, root, 0);
185}
186
187int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
188 struct btrfs_root *root)
189{
190 return __btrfs_end_transaction(trans, root, 1);
191}
192
Chris Mason79154b12007-03-22 15:59:16 -0400193
194int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
195 struct btrfs_root *root)
196{
Chris Mason7c4452b2007-04-28 09:29:35 -0400197 int ret;
Chris Mason7c4452b2007-04-28 09:29:35 -0400198 int err;
199 int werr = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500200 struct extent_io_tree *dirty_pages;
Chris Mason7c4452b2007-04-28 09:29:35 -0400201 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400202 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason5f39d392007-10-15 16:14:19 -0400203 u64 start;
204 u64 end;
205 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400206
207 if (!trans || !trans->transaction) {
208 return filemap_write_and_wait(btree_inode->i_mapping);
209 }
210 dirty_pages = &trans->transaction->dirty_pages;
211 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400212 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
213 EXTENT_DIRTY);
214 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400215 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400216 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
217 while(start <= end) {
218 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400219 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason5f39d392007-10-15 16:14:19 -0400220 page = find_lock_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400221 if (!page)
222 continue;
Chris Mason6702ed42007-08-07 16:15:09 -0400223 if (PageWriteback(page)) {
224 if (PageDirty(page))
225 wait_on_page_writeback(page);
226 else {
227 unlock_page(page);
228 page_cache_release(page);
229 continue;
230 }
231 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400232 err = write_one_page(page, 0);
233 if (err)
234 werr = err;
235 page_cache_release(page);
236 }
237 }
238 err = filemap_fdatawait(btree_inode->i_mapping);
239 if (err)
240 werr = err;
241 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400242}
243
Chris Mason0b86a832008-03-24 15:01:56 -0400244static int update_cowonly_root(struct btrfs_trans_handle *trans,
245 struct btrfs_root *root)
246{
247 int ret;
248 u64 old_root_bytenr;
249 struct btrfs_root *tree_root = root->fs_info->tree_root;
250
251 btrfs_write_dirty_block_groups(trans, root);
252 while(1) {
253 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
254 if (old_root_bytenr == root->node->start)
255 break;
256 btrfs_set_root_bytenr(&root->root_item,
257 root->node->start);
258 btrfs_set_root_level(&root->root_item,
259 btrfs_header_level(root->node));
260 ret = btrfs_update_root(trans, tree_root,
261 &root->root_key,
262 &root->root_item);
263 BUG_ON(ret);
264 btrfs_write_dirty_block_groups(trans, root);
265 }
266 return 0;
267}
268
Chris Mason79154b12007-03-22 15:59:16 -0400269int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
270 struct btrfs_root *root)
271{
Chris Mason79154b12007-03-22 15:59:16 -0400272 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400273 struct list_head *next;
Chris Mason79154b12007-03-22 15:59:16 -0400274
Chris Mason0b86a832008-03-24 15:01:56 -0400275 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
276 next = fs_info->dirty_cowonly_roots.next;
277 list_del_init(next);
278 root = list_entry(next, struct btrfs_root, dirty_list);
279 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400280 }
281 return 0;
282}
283
Chris Mason0f7d52f2007-04-09 10:42:37 -0400284struct dirty_root {
285 struct list_head list;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400286 struct btrfs_root *root;
Josef Bacik58176a92007-08-29 15:47:34 -0400287 struct btrfs_root *latest_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400288};
289
Chris Mason5ce14bb2007-09-11 11:15:39 -0400290int btrfs_add_dead_root(struct btrfs_root *root,
291 struct btrfs_root *latest,
292 struct list_head *dead_list)
Chris Mason5eda7b52007-06-22 14:16:25 -0400293{
294 struct dirty_root *dirty;
295
296 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
297 if (!dirty)
298 return -ENOMEM;
Chris Mason5eda7b52007-06-22 14:16:25 -0400299 dirty->root = root;
Chris Mason5ce14bb2007-09-11 11:15:39 -0400300 dirty->latest_root = latest;
Chris Mason5eda7b52007-06-22 14:16:25 -0400301 list_add(&dirty->list, dead_list);
302 return 0;
303}
304
Chris Mason80b67942008-02-01 16:35:04 -0500305static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
306 struct radix_tree_root *radix,
307 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400308{
309 struct dirty_root *dirty;
310 struct btrfs_root *gang[8];
311 struct btrfs_root *root;
312 int i;
313 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400314 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400315 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400316
Chris Mason0f7d52f2007-04-09 10:42:37 -0400317 while(1) {
318 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
319 ARRAY_SIZE(gang),
320 BTRFS_ROOT_TRANS_TAG);
321 if (ret == 0)
322 break;
323 for (i = 0; i < ret; i++) {
324 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400325 radix_tree_tag_clear(radix,
326 (unsigned long)root->root_key.objectid,
327 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400328 if (root->commit_root == root->node) {
Chris Masondb945352007-10-15 16:15:53 -0400329 WARN_ON(root->node->start !=
330 btrfs_root_bytenr(&root->root_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400331 free_extent_buffer(root->commit_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400332 root->commit_root = NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400333
334 /* make sure to update the root on disk
335 * so we get any updates to the block used
336 * counts
337 */
338 err = btrfs_update_root(trans,
339 root->fs_info->tree_root,
340 &root->root_key,
341 &root->root_item);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400342 continue;
343 }
344 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
345 BUG_ON(!dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400346 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
347 BUG_ON(!dirty->root);
348
349 memset(&root->root_item.drop_progress, 0,
350 sizeof(struct btrfs_disk_key));
351 root->root_item.drop_level = 0;
352
353 memcpy(dirty->root, root, sizeof(*root));
354 dirty->root->node = root->commit_root;
Josef Bacik58176a92007-08-29 15:47:34 -0400355 dirty->latest_root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400356 root->commit_root = NULL;
Chris Mason5eda7b52007-06-22 14:16:25 -0400357
Chris Mason0f7d52f2007-04-09 10:42:37 -0400358 root->root_key.offset = root->fs_info->generation;
Chris Masondb945352007-10-15 16:15:53 -0400359 btrfs_set_root_bytenr(&root->root_item,
360 root->node->start);
361 btrfs_set_root_level(&root->root_item,
362 btrfs_header_level(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400363 err = btrfs_insert_root(trans, root->fs_info->tree_root,
364 &root->root_key,
365 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400366 if (err)
367 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400368
369 refs = btrfs_root_refs(&dirty->root->root_item);
370 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400371 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400372 &dirty->root->root_key,
373 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400374
375 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400376 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400377 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400378 } else {
379 WARN_ON(1);
380 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400381 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400382 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400383 }
384 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400385 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400386}
387
Chris Masone9d0b132007-08-10 14:06:19 -0400388int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
389{
390 struct btrfs_fs_info *info = root->fs_info;
391 int ret;
392 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400393 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400394
Chris Masona2135012008-06-25 16:01:30 -0400395 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400396 if (root->defrag_running)
397 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400398 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400399 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400400 root->defrag_running = 1;
401 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400402 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400403 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400404 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400405 cond_resched();
406
Chris Masone9d0b132007-08-10 14:06:19 -0400407 trans = btrfs_start_transaction(root, 1);
408 if (ret != -EAGAIN)
409 break;
410 }
411 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400412 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400413 radix_tree_tag_clear(&info->fs_roots_radix,
414 (unsigned long)root->root_key.objectid,
415 BTRFS_ROOT_DEFRAG_TAG);
416 btrfs_end_transaction(trans, root);
417 return 0;
418}
419
Chris Mason6702ed42007-08-07 16:15:09 -0400420int btrfs_defrag_dirty_roots(struct btrfs_fs_info *info)
421{
422 struct btrfs_root *gang[1];
423 struct btrfs_root *root;
Chris Mason6702ed42007-08-07 16:15:09 -0400424 int i;
425 int ret;
426 int err = 0;
427 u64 last = 0;
428
Chris Mason6702ed42007-08-07 16:15:09 -0400429 while(1) {
430 ret = radix_tree_gang_lookup_tag(&info->fs_roots_radix,
431 (void **)gang, last,
432 ARRAY_SIZE(gang),
433 BTRFS_ROOT_DEFRAG_TAG);
434 if (ret == 0)
435 break;
436 for (i = 0; i < ret; i++) {
437 root = gang[i];
438 last = root->root_key.objectid + 1;
Chris Masonf510cfe2007-10-15 16:14:48 -0400439 btrfs_defrag_root(root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400440 }
441 }
Chris Mason6b800532007-10-15 16:17:34 -0400442 btrfs_defrag_root(info->extent_root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400443 return err;
444}
445
Chris Mason80b67942008-02-01 16:35:04 -0500446static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
447 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400448{
449 struct dirty_root *dirty;
450 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400451 unsigned long nr;
Chris Masondb945352007-10-15 16:15:53 -0400452 u64 num_bytes;
453 u64 bytes_used;
Chris Mason54aa1f42007-06-22 14:16:25 -0400454 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400455 int err;
456
Chris Mason0f7d52f2007-04-09 10:42:37 -0400457 while(!list_empty(list)) {
Josef Bacik58176a92007-08-29 15:47:34 -0400458 struct btrfs_root *root;
459
Chris Mason0f7d52f2007-04-09 10:42:37 -0400460 dirty = list_entry(list->next, struct dirty_root, list);
461 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400462
Chris Masondb945352007-10-15 16:15:53 -0400463 num_bytes = btrfs_root_used(&dirty->root->root_item);
Josef Bacik58176a92007-08-29 15:47:34 -0400464 root = dirty->latest_root;
Chris Masona2135012008-06-25 16:01:30 -0400465 atomic_inc(&root->fs_info->throttles);
Josef Bacik58176a92007-08-29 15:47:34 -0400466
Chris Masona2135012008-06-25 16:01:30 -0400467 mutex_lock(&root->fs_info->drop_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400468 while(1) {
469 trans = btrfs_start_transaction(tree_root, 1);
470 ret = btrfs_drop_snapshot(trans, dirty->root);
471 if (ret != -EAGAIN) {
472 break;
473 }
Josef Bacik58176a92007-08-29 15:47:34 -0400474
Chris Mason9f3a7422007-08-07 15:52:19 -0400475 err = btrfs_update_root(trans,
476 tree_root,
477 &dirty->root->root_key,
478 &dirty->root->root_item);
479 if (err)
480 ret = err;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400481 nr = trans->blocks_used;
Chris Mason9f3a7422007-08-07 15:52:19 -0400482 ret = btrfs_end_transaction(trans, tree_root);
483 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400484
485 mutex_unlock(&root->fs_info->drop_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400486 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400487 cond_resched();
Chris Masona2135012008-06-25 16:01:30 -0400488 mutex_lock(&root->fs_info->drop_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400489 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400490 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400491 atomic_dec(&root->fs_info->throttles);
Josef Bacik58176a92007-08-29 15:47:34 -0400492
Chris Masona2135012008-06-25 16:01:30 -0400493 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masondb945352007-10-15 16:15:53 -0400494 num_bytes -= btrfs_root_used(&dirty->root->root_item);
495 bytes_used = btrfs_root_used(&root->root_item);
496 if (num_bytes) {
Josef Bacik58176a92007-08-29 15:47:34 -0400497 record_root_in_trans(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400498 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400499 bytes_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400500 }
Chris Masona2135012008-06-25 16:01:30 -0400501 mutex_unlock(&root->fs_info->alloc_mutex);
502
Chris Mason9f3a7422007-08-07 15:52:19 -0400503 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Josef Bacik58176a92007-08-29 15:47:34 -0400504 if (ret) {
505 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -0400506 break;
Josef Bacik58176a92007-08-29 15:47:34 -0400507 }
Chris Masona2135012008-06-25 16:01:30 -0400508 mutex_unlock(&root->fs_info->drop_mutex);
509
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400510 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400511 ret = btrfs_end_transaction(trans, tree_root);
512 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400513
Chris Masonf510cfe2007-10-15 16:14:48 -0400514 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400515 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400516 kfree(dirty);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400517
518 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400519 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400520 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400521 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400522}
523
Chris Masondc17ff82008-01-08 15:46:30 -0500524int btrfs_write_ordered_inodes(struct btrfs_trans_handle *trans,
525 struct btrfs_root *root)
526{
527 struct btrfs_transaction *cur_trans = trans->transaction;
528 struct inode *inode;
529 u64 root_objectid = 0;
530 u64 objectid = 0;
Chris Masondc17ff82008-01-08 15:46:30 -0500531 int ret;
532
Chris Masona2135012008-06-25 16:01:30 -0400533 atomic_inc(&root->fs_info->throttles);
Chris Masondc17ff82008-01-08 15:46:30 -0500534 while(1) {
535 ret = btrfs_find_first_ordered_inode(
536 &cur_trans->ordered_inode_tree,
Chris Mason4d5e74b2008-01-16 16:09:22 -0500537 &root_objectid, &objectid, &inode);
Chris Masondc17ff82008-01-08 15:46:30 -0500538 if (!ret)
539 break;
540
541 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500542
Chris Mason81d7ed22008-04-25 08:51:48 -0400543 if (S_ISREG(inode->i_mode)) {
544 atomic_inc(&BTRFS_I(inode)->ordered_writeback);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500545 filemap_fdatawrite(inode->i_mapping);
Chris Mason81d7ed22008-04-25 08:51:48 -0400546 atomic_dec(&BTRFS_I(inode)->ordered_writeback);
547 }
Chris Mason4d5e74b2008-01-16 16:09:22 -0500548 iput(inode);
549
Chris Masondc17ff82008-01-08 15:46:30 -0500550 mutex_lock(&root->fs_info->trans_mutex);
551 }
552 while(1) {
553 root_objectid = 0;
554 objectid = 0;
555 ret = btrfs_find_del_first_ordered_inode(
556 &cur_trans->ordered_inode_tree,
Chris Mason4d5e74b2008-01-16 16:09:22 -0500557 &root_objectid, &objectid, &inode);
Chris Masondc17ff82008-01-08 15:46:30 -0500558 if (!ret)
559 break;
560 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500561
Chris Mason81d7ed22008-04-25 08:51:48 -0400562 if (S_ISREG(inode->i_mode)) {
563 atomic_inc(&BTRFS_I(inode)->ordered_writeback);
Chris Mason4d5e74b2008-01-16 16:09:22 -0500564 filemap_write_and_wait(inode->i_mapping);
Chris Mason81d7ed22008-04-25 08:51:48 -0400565 atomic_dec(&BTRFS_I(inode)->ordered_writeback);
566 }
Chris Mason4d5e74b2008-01-16 16:09:22 -0500567 atomic_dec(&inode->i_count);
568 iput(inode);
569
Chris Masondc17ff82008-01-08 15:46:30 -0500570 mutex_lock(&root->fs_info->trans_mutex);
571 }
Chris Masona2135012008-06-25 16:01:30 -0400572 atomic_dec(&root->fs_info->throttles);
Chris Mason3063d292008-01-08 15:46:30 -0500573 return 0;
574}
575
Chris Mason80b67942008-02-01 16:35:04 -0500576static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500577 struct btrfs_fs_info *fs_info,
578 struct btrfs_pending_snapshot *pending)
579{
580 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500581 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500582 struct btrfs_root *tree_root = fs_info->tree_root;
583 struct btrfs_root *root = pending->root;
584 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400585 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500586 int ret;
Sven Wegener3b963622008-06-09 21:57:42 -0400587 int namelen;
Chris Mason3063d292008-01-08 15:46:30 -0500588 u64 objectid;
589
Chris Mason80b67942008-02-01 16:35:04 -0500590 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
591 if (!new_root_item) {
592 ret = -ENOMEM;
593 goto fail;
594 }
Chris Mason3063d292008-01-08 15:46:30 -0500595 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
596 if (ret)
597 goto fail;
598
Chris Mason80b67942008-02-01 16:35:04 -0500599 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500600
601 key.objectid = objectid;
602 key.offset = 1;
603 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
604
Chris Mason925baed2008-06-25 16:01:30 -0400605 old = btrfs_lock_root_node(root);
606 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Chris Mason3063d292008-01-08 15:46:30 -0500607
Chris Mason925baed2008-06-25 16:01:30 -0400608 btrfs_copy_root(trans, root, old, &tmp, objectid);
609 btrfs_tree_unlock(old);
610 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500611
Chris Mason80b67942008-02-01 16:35:04 -0500612 btrfs_set_root_bytenr(new_root_item, tmp->start);
613 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
Chris Mason3063d292008-01-08 15:46:30 -0500614 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500615 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400616 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500617 free_extent_buffer(tmp);
618 if (ret)
619 goto fail;
620
621 /*
622 * insert the directory item
623 */
624 key.offset = (u64)-1;
Sven Wegener3b963622008-06-09 21:57:42 -0400625 namelen = strlen(pending->name);
Chris Mason3063d292008-01-08 15:46:30 -0500626 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
Sven Wegener3b963622008-06-09 21:57:42 -0400627 pending->name, namelen,
Chris Mason3063d292008-01-08 15:46:30 -0500628 root->fs_info->sb->s_root->d_inode->i_ino,
629 &key, BTRFS_FT_DIR);
630
631 if (ret)
632 goto fail;
633
634 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
635 pending->name, strlen(pending->name), objectid,
636 root->fs_info->sb->s_root->d_inode->i_ino);
Sven Wegener3b963622008-06-09 21:57:42 -0400637
638 /* Invalidate existing dcache entry for new snapshot. */
639 btrfs_invalidate_dcache_root(root, pending->name, namelen);
640
Chris Mason3063d292008-01-08 15:46:30 -0500641fail:
Chris Mason80b67942008-02-01 16:35:04 -0500642 kfree(new_root_item);
Chris Mason3063d292008-01-08 15:46:30 -0500643 return ret;
644}
645
Chris Mason80b67942008-02-01 16:35:04 -0500646static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
647 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500648{
649 struct btrfs_pending_snapshot *pending;
650 struct list_head *head = &trans->transaction->pending_snapshots;
651 int ret;
652
653 while(!list_empty(head)) {
654 pending = list_entry(head->next,
655 struct btrfs_pending_snapshot, list);
656 ret = create_pending_snapshot(trans, fs_info, pending);
657 BUG_ON(ret);
658 list_del(&pending->list);
659 kfree(pending->name);
660 kfree(pending);
661 }
Chris Masondc17ff82008-01-08 15:46:30 -0500662 return 0;
663}
664
Chris Mason79154b12007-03-22 15:59:16 -0400665int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
666 struct btrfs_root *root)
667{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400668 unsigned long joined = 0;
669 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400670 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400671 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400672 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400673 struct list_head dirty_fs_roots;
Chris Masond1310b22008-01-24 16:13:08 -0500674 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400675 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400676 int ret;
Chris Mason79154b12007-03-22 15:59:16 -0400677
Chris Mason0f7d52f2007-04-09 10:42:37 -0400678 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400679
Chris Mason79154b12007-03-22 15:59:16 -0400680 mutex_lock(&root->fs_info->trans_mutex);
681 if (trans->transaction->in_commit) {
682 cur_trans = trans->transaction;
683 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400684 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400685 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400686
Chris Mason79154b12007-03-22 15:59:16 -0400687 ret = wait_for_commit(root, cur_trans);
688 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400689
690 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400691 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400692 mutex_unlock(&root->fs_info->trans_mutex);
693
Chris Mason79154b12007-03-22 15:59:16 -0400694 return 0;
695 }
Chris Mason4313b392008-01-03 09:08:48 -0500696
697 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
698 if (!pinned_copy)
699 return -ENOMEM;
700
Chris Masond1310b22008-01-24 16:13:08 -0500701 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500702 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
703
Chris Mason2c90e5d2007-04-02 10:50:19 -0400704 trans->transaction->in_commit = 1;
Chris Mason89ce8a62008-06-25 16:01:31 -0400705printk("trans %Lu in commit\n", trans->transid);
Chris Masonccd467d2007-06-28 15:57:36 -0400706 cur_trans = trans->transaction;
707 if (cur_trans->list.prev != &root->fs_info->trans_list) {
708 prev_trans = list_entry(cur_trans->list.prev,
709 struct btrfs_transaction, list);
710 if (!prev_trans->commit_done) {
711 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400712 mutex_unlock(&root->fs_info->trans_mutex);
713
714 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400715
Chris Masonccd467d2007-06-28 15:57:36 -0400716 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400717 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400718 }
719 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400720
721 do {
722 joined = cur_trans->num_joined;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400723 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400724 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400725 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400726
727 if (cur_trans->num_writers > 1)
728 timeout = MAX_SCHEDULE_TIMEOUT;
729 else
730 timeout = 1;
731
Chris Mason79154b12007-03-22 15:59:16 -0400732 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400733
734 schedule_timeout(timeout);
735
Chris Mason79154b12007-03-22 15:59:16 -0400736 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400737 finish_wait(&cur_trans->writer_wait, &wait);
Chris Masondc17ff82008-01-08 15:46:30 -0500738 ret = btrfs_write_ordered_inodes(trans, root);
739
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400740 } while (cur_trans->num_writers > 1 ||
741 (cur_trans->num_joined != joined));
742
Chris Mason3063d292008-01-08 15:46:30 -0500743 ret = create_pending_snapshots(trans, root->fs_info);
744 BUG_ON(ret);
745
Chris Mason2c90e5d2007-04-02 10:50:19 -0400746 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500747
Chris Mason54aa1f42007-06-22 14:16:25 -0400748 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
749 &dirty_fs_roots);
750 BUG_ON(ret);
751
Chris Mason79154b12007-03-22 15:59:16 -0400752 ret = btrfs_commit_tree_roots(trans, root);
753 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400754
Chris Mason78fae272007-03-25 11:35:08 -0400755 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -0500756 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -0400757 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -0500758 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason4b52dff2007-06-26 10:06:50 -0400759 btrfs_set_super_generation(&root->fs_info->super_copy,
760 cur_trans->transid);
761 btrfs_set_super_root(&root->fs_info->super_copy,
Chris Masondb945352007-10-15 16:15:53 -0400762 root->fs_info->tree_root->node->start);
763 btrfs_set_super_root_level(&root->fs_info->super_copy,
764 btrfs_header_level(root->fs_info->tree_root->node));
Chris Mason5f39d392007-10-15 16:14:19 -0400765
Chris Mason0b86a832008-03-24 15:01:56 -0400766 btrfs_set_super_chunk_root(&root->fs_info->super_copy,
767 chunk_root->node->start);
768 btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
769 btrfs_header_level(chunk_root->node));
Chris Masona061fc82008-05-07 11:43:44 -0400770 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
771 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -0400772
Chris Mason4313b392008-01-03 09:08:48 -0500773 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -0400774
Chris Mason78fae272007-03-25 11:35:08 -0400775 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400776 ret = btrfs_write_and_wait_transaction(trans, root);
777 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400778 write_ctree_super(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -0500779
Chris Mason4313b392008-01-03 09:08:48 -0500780 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason78fae272007-03-25 11:35:08 -0400781 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500782
783 kfree(pinned_copy);
784
Chris Mason2c90e5d2007-04-02 10:50:19 -0400785 cur_trans->commit_done = 1;
Chris Mason89ce8a62008-06-25 16:01:31 -0400786printk("trans %Lu done in commit\n", cur_trans->transid);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400787 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400788 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400789 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400790 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -0400791
Chris Masonfacda1e2007-06-08 18:11:48 -0400792 if (root->fs_info->closing)
793 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
794 else
795 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Josef Bacik58176a92007-08-29 15:47:34 -0400796
Chris Mason78fae272007-03-25 11:35:08 -0400797 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400798 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400799
Chris Masonfacda1e2007-06-08 18:11:48 -0400800 if (root->fs_info->closing) {
Chris Masonfacda1e2007-06-08 18:11:48 -0400801 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
Chris Masonfacda1e2007-06-08 18:11:48 -0400802 }
Chris Mason79154b12007-03-22 15:59:16 -0400803 return ret;
804}
805
Chris Masone9d0b132007-08-10 14:06:19 -0400806int btrfs_clean_old_snapshots(struct btrfs_root *root)
807{
808 struct list_head dirty_roots;
809 INIT_LIST_HEAD(&dirty_roots);
810
811 mutex_lock(&root->fs_info->trans_mutex);
812 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
813 mutex_unlock(&root->fs_info->trans_mutex);
814
815 if (!list_empty(&dirty_roots)) {
816 drop_dirty_roots(root, &dirty_roots);
817 }
818 return 0;
819}
Chris Mason6da6aba2007-12-18 16:15:09 -0500820#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
821void btrfs_transaction_cleaner(void *p)
822#else
Chris Mason08607c12007-06-08 15:33:54 -0400823void btrfs_transaction_cleaner(struct work_struct *work)
Chris Mason6da6aba2007-12-18 16:15:09 -0500824#endif
Chris Mason08607c12007-06-08 15:33:54 -0400825{
Chris Mason6da6aba2007-12-18 16:15:09 -0500826#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
827 struct btrfs_fs_info *fs_info = p;
828#else
Chris Mason08607c12007-06-08 15:33:54 -0400829 struct btrfs_fs_info *fs_info = container_of(work,
830 struct btrfs_fs_info,
831 trans_work.work);
832
Chris Mason6da6aba2007-12-18 16:15:09 -0500833#endif
Chris Mason08607c12007-06-08 15:33:54 -0400834 struct btrfs_root *root = fs_info->tree_root;
835 struct btrfs_transaction *cur;
836 struct btrfs_trans_handle *trans;
837 unsigned long now;
838 unsigned long delay = HZ * 30;
839 int ret;
840
Chris Masona2135012008-06-25 16:01:30 -0400841 smp_mb();
Chris Masond6bfde82008-04-30 13:59:35 -0400842 if (root->fs_info->closing)
843 goto out;
844
Chris Mason08607c12007-06-08 15:33:54 -0400845 mutex_lock(&root->fs_info->trans_mutex);
846 cur = root->fs_info->running_transaction;
847 if (!cur) {
848 mutex_unlock(&root->fs_info->trans_mutex);
849 goto out;
850 }
851 now = get_seconds();
852 if (now < cur->start_time || now - cur->start_time < 30) {
853 mutex_unlock(&root->fs_info->trans_mutex);
854 delay = HZ * 5;
855 goto out;
856 }
857 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400858 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason08607c12007-06-08 15:33:54 -0400859 trans = btrfs_start_transaction(root, 1);
860 ret = btrfs_commit_transaction(trans, root);
861out:
Chris Masone9d0b132007-08-10 14:06:19 -0400862 btrfs_clean_old_snapshots(root);
Chris Mason08607c12007-06-08 15:33:54 -0400863 btrfs_transaction_queue_work(root, delay);
864}
865
866void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
867{
Chris Masond6bfde82008-04-30 13:59:35 -0400868 if (!root->fs_info->closing)
869 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
Chris Mason08607c12007-06-08 15:33:54 -0400870}
871
872void btrfs_transaction_flush_work(struct btrfs_root *root)
873{
Chris Masond6bfde82008-04-30 13:59:35 -0400874 cancel_delayed_work(&root->fs_info->trans_work);
Chris Mason08607c12007-06-08 15:33:54 -0400875 flush_workqueue(trans_wq);
876}
877
878void __init btrfs_init_transaction_sys(void)
879{
Chris Masonce9adaa2008-04-09 16:28:12 -0400880 trans_wq = create_workqueue("btrfs-transaction");
Chris Mason08607c12007-06-08 15:33:54 -0400881}
882
Christian Hesse17636e02007-12-11 09:25:06 -0500883void btrfs_exit_transaction_sys(void)
Chris Mason08607c12007-06-08 15:33:54 -0400884{
885 destroy_workqueue(trans_wq);
886}
887