]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/btrfs/transaction.c
Btrfs: Explicitly send a root objectid to count_snapshots_in_path
[thirdparty/linux.git] / fs / btrfs / transaction.c
CommitLineData
6cbd5570
CM
1/*
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
79154b1b 19#include <linux/fs.h>
34088780 20#include <linux/sched.h>
d3c2fdcf 21#include <linux/writeback.h>
5f39d397 22#include <linux/pagemap.h>
79154b1b
CM
23#include "ctree.h"
24#include "disk-io.h"
25#include "transaction.h"
26
78fae27e 27static int total_trans = 0;
2c90e5d6
CM
28extern struct kmem_cache *btrfs_trans_handle_cachep;
29extern struct kmem_cache *btrfs_transaction_cachep;
30
08607c1b
CM
31static struct workqueue_struct *trans_wq;
32
0f7d52f4 33#define BTRFS_ROOT_TRANS_TAG 0
6702ed49 34#define BTRFS_ROOT_DEFRAG_TAG 1
0f7d52f4 35
79154b1b
CM
36static void put_transaction(struct btrfs_transaction *transaction)
37{
2c90e5d6 38 WARN_ON(transaction->use_count == 0);
79154b1b 39 transaction->use_count--;
78fae27e
CM
40 if (transaction->use_count == 0) {
41 WARN_ON(total_trans == 0);
42 total_trans--;
8fd17795 43 list_del_init(&transaction->list);
2c90e5d6
CM
44 memset(transaction, 0, sizeof(*transaction));
45 kmem_cache_free(btrfs_transaction_cachep, transaction);
78fae27e 46 }
79154b1b
CM
47}
48
49static int join_transaction(struct btrfs_root *root)
50{
51 struct btrfs_transaction *cur_trans;
52 cur_trans = root->fs_info->running_transaction;
53 if (!cur_trans) {
2c90e5d6
CM
54 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
55 GFP_NOFS);
78fae27e 56 total_trans++;
79154b1b 57 BUG_ON(!cur_trans);
0f7d52f4 58 root->fs_info->generation++;
79154b1b 59 root->fs_info->running_transaction = cur_trans;
15ee9bc7
JB
60 cur_trans->num_writers = 1;
61 cur_trans->num_joined = 0;
0f7d52f4 62 cur_trans->transid = root->fs_info->generation;
79154b1b
CM
63 init_waitqueue_head(&cur_trans->writer_wait);
64 init_waitqueue_head(&cur_trans->commit_wait);
65 cur_trans->in_commit = 0;
d5719762 66 cur_trans->use_count = 1;
79154b1b 67 cur_trans->commit_done = 0;
08607c1b 68 cur_trans->start_time = get_seconds();
8fd17795 69 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
5f39d397
CM
70 extent_map_tree_init(&cur_trans->dirty_pages,
71 root->fs_info->btree_inode->i_mapping,
72 GFP_NOFS);
15ee9bc7
JB
73 } else {
74 cur_trans->num_writers++;
75 cur_trans->num_joined++;
79154b1b 76 }
15ee9bc7 77
79154b1b
CM
78 return 0;
79}
80
6702ed49
CM
81static int record_root_in_trans(struct btrfs_root *root)
82{
83 u64 running_trans_id = root->fs_info->running_transaction->transid;
84 if (root->ref_cows && root->last_trans < running_trans_id) {
85 WARN_ON(root == root->fs_info->extent_root);
86 if (root->root_item.refs != 0) {
87 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
88 (unsigned long)root->root_key.objectid,
89 BTRFS_ROOT_TRANS_TAG);
90 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
91 (unsigned long)root->root_key.objectid,
92 BTRFS_ROOT_DEFRAG_TAG);
93 root->commit_root = root->node;
5f39d397 94 extent_buffer_get(root->node);
6702ed49
CM
95 } else {
96 WARN_ON(1);
97 }
98 root->last_trans = running_trans_id;
99 }
100 return 0;
101}
102
79154b1b
CM
103struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
104 int num_blocks)
105{
2c90e5d6
CM
106 struct btrfs_trans_handle *h =
107 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
79154b1b
CM
108 int ret;
109
110 mutex_lock(&root->fs_info->trans_mutex);
111 ret = join_transaction(root);
112 BUG_ON(ret);
0f7d52f4 113
6702ed49
CM
114 record_root_in_trans(root);
115 h->transid = root->fs_info->running_transaction->transid;
79154b1b
CM
116 h->transaction = root->fs_info->running_transaction;
117 h->blocks_reserved = num_blocks;
118 h->blocks_used = 0;
31f3c99b 119 h->block_group = NULL;
26b8003f
CM
120 h->alloc_exclude_nr = 0;
121 h->alloc_exclude_start = 0;
79154b1b
CM
122 root->fs_info->running_transaction->use_count++;
123 mutex_unlock(&root->fs_info->trans_mutex);
124 return h;
125}
126
127int btrfs_end_transaction(struct btrfs_trans_handle *trans,
128 struct btrfs_root *root)
129{
130 struct btrfs_transaction *cur_trans;
d6e4a428 131
79154b1b
CM
132 mutex_lock(&root->fs_info->trans_mutex);
133 cur_trans = root->fs_info->running_transaction;
ccd467d6 134 WARN_ON(cur_trans != trans->transaction);
d5719762 135 WARN_ON(cur_trans->num_writers < 1);
ccd467d6 136 cur_trans->num_writers--;
79154b1b
CM
137 if (waitqueue_active(&cur_trans->writer_wait))
138 wake_up(&cur_trans->writer_wait);
79154b1b
CM
139 put_transaction(cur_trans);
140 mutex_unlock(&root->fs_info->trans_mutex);
d6025579 141 memset(trans, 0, sizeof(*trans));
2c90e5d6 142 kmem_cache_free(btrfs_trans_handle_cachep, trans);
79154b1b
CM
143 return 0;
144}
145
146
147int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
148 struct btrfs_root *root)
149{
7c4452b9 150 int ret;
7c4452b9
CM
151 int err;
152 int werr = 0;
5f39d397 153 struct extent_map_tree *dirty_pages;
7c4452b9 154 struct page *page;
7c4452b9 155 struct inode *btree_inode = root->fs_info->btree_inode;
5f39d397
CM
156 u64 start;
157 u64 end;
158 unsigned long index;
7c4452b9
CM
159
160 if (!trans || !trans->transaction) {
161 return filemap_write_and_wait(btree_inode->i_mapping);
162 }
163 dirty_pages = &trans->transaction->dirty_pages;
164 while(1) {
5f39d397
CM
165 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
166 EXTENT_DIRTY);
167 if (ret)
7c4452b9 168 break;
5f39d397
CM
169 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
170 while(start <= end) {
171 index = start >> PAGE_CACHE_SHIFT;
35ebb934 172 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
5f39d397 173 page = find_lock_page(btree_inode->i_mapping, index);
7c4452b9
CM
174 if (!page)
175 continue;
6702ed49
CM
176 if (PageWriteback(page)) {
177 if (PageDirty(page))
178 wait_on_page_writeback(page);
179 else {
180 unlock_page(page);
181 page_cache_release(page);
182 continue;
183 }
184 }
7c4452b9
CM
185 err = write_one_page(page, 0);
186 if (err)
187 werr = err;
188 page_cache_release(page);
189 }
190 }
191 err = filemap_fdatawait(btree_inode->i_mapping);
192 if (err)
193 werr = err;
194 return werr;
79154b1b
CM
195}
196
197int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
198 struct btrfs_root *root)
199{
200 int ret;
201 u64 old_extent_block;
202 struct btrfs_fs_info *fs_info = root->fs_info;
203 struct btrfs_root *tree_root = fs_info->tree_root;
204 struct btrfs_root *extent_root = fs_info->extent_root;
79154b1b 205
9078a3e1 206 btrfs_write_dirty_block_groups(trans, extent_root);
79154b1b 207 while(1) {
db94535d
CM
208 old_extent_block = btrfs_root_bytenr(&extent_root->root_item);
209 if (old_extent_block == extent_root->node->start)
79154b1b 210 break;
db94535d
CM
211 btrfs_set_root_bytenr(&extent_root->root_item,
212 extent_root->node->start);
213 btrfs_set_root_level(&extent_root->root_item,
214 btrfs_header_level(extent_root->node));
79154b1b
CM
215 ret = btrfs_update_root(trans, tree_root,
216 &extent_root->root_key,
217 &extent_root->root_item);
218 BUG_ON(ret);
9078a3e1 219 btrfs_write_dirty_block_groups(trans, extent_root);
79154b1b
CM
220 }
221 return 0;
222}
223
224static int wait_for_commit(struct btrfs_root *root,
225 struct btrfs_transaction *commit)
226{
227 DEFINE_WAIT(wait);
ccd467d6 228 mutex_lock(&root->fs_info->trans_mutex);
79154b1b
CM
229 while(!commit->commit_done) {
230 prepare_to_wait(&commit->commit_wait, &wait,
231 TASK_UNINTERRUPTIBLE);
232 if (commit->commit_done)
233 break;
234 mutex_unlock(&root->fs_info->trans_mutex);
235 schedule();
236 mutex_lock(&root->fs_info->trans_mutex);
237 }
ccd467d6 238 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b
CM
239 finish_wait(&commit->commit_wait, &wait);
240 return 0;
241}
242
0f7d52f4
CM
243struct dirty_root {
244 struct list_head list;
0f7d52f4 245 struct btrfs_root *root;
58176a96 246 struct btrfs_root *latest_root;
0f7d52f4
CM
247};
248
5ce14bbc
CM
249int btrfs_add_dead_root(struct btrfs_root *root,
250 struct btrfs_root *latest,
251 struct list_head *dead_list)
5eda7b5e
CM
252{
253 struct dirty_root *dirty;
254
255 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
256 if (!dirty)
257 return -ENOMEM;
5eda7b5e 258 dirty->root = root;
5ce14bbc 259 dirty->latest_root = latest;
5eda7b5e
CM
260 list_add(&dirty->list, dead_list);
261 return 0;
262}
263
35b7e476
CM
264static int add_dirty_roots(struct btrfs_trans_handle *trans,
265 struct radix_tree_root *radix,
266 struct list_head *list)
0f7d52f4
CM
267{
268 struct dirty_root *dirty;
269 struct btrfs_root *gang[8];
270 struct btrfs_root *root;
271 int i;
272 int ret;
54aa1f4d 273 int err = 0;
5eda7b5e 274 u32 refs;
54aa1f4d 275
0f7d52f4
CM
276 while(1) {
277 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
278 ARRAY_SIZE(gang),
279 BTRFS_ROOT_TRANS_TAG);
280 if (ret == 0)
281 break;
282 for (i = 0; i < ret; i++) {
283 root = gang[i];
2619ba1f
CM
284 radix_tree_tag_clear(radix,
285 (unsigned long)root->root_key.objectid,
286 BTRFS_ROOT_TRANS_TAG);
0f7d52f4 287 if (root->commit_root == root->node) {
db94535d
CM
288 WARN_ON(root->node->start !=
289 btrfs_root_bytenr(&root->root_item));
5f39d397 290 free_extent_buffer(root->commit_root);
0f7d52f4 291 root->commit_root = NULL;
58176a96
JB
292
293 /* make sure to update the root on disk
294 * so we get any updates to the block used
295 * counts
296 */
297 err = btrfs_update_root(trans,
298 root->fs_info->tree_root,
299 &root->root_key,
300 &root->root_item);
0f7d52f4
CM
301 continue;
302 }
303 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
304 BUG_ON(!dirty);
9f3a7427
CM
305 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
306 BUG_ON(!dirty->root);
307
308 memset(&root->root_item.drop_progress, 0,
309 sizeof(struct btrfs_disk_key));
310 root->root_item.drop_level = 0;
311
312 memcpy(dirty->root, root, sizeof(*root));
313 dirty->root->node = root->commit_root;
58176a96 314 dirty->latest_root = root;
0f7d52f4 315 root->commit_root = NULL;
5eda7b5e 316
0f7d52f4 317 root->root_key.offset = root->fs_info->generation;
db94535d
CM
318 btrfs_set_root_bytenr(&root->root_item,
319 root->node->start);
320 btrfs_set_root_level(&root->root_item,
321 btrfs_header_level(root->node));
0f7d52f4
CM
322 err = btrfs_insert_root(trans, root->fs_info->tree_root,
323 &root->root_key,
324 &root->root_item);
54aa1f4d
CM
325 if (err)
326 break;
9f3a7427
CM
327
328 refs = btrfs_root_refs(&dirty->root->root_item);
329 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
5eda7b5e 330 err = btrfs_update_root(trans, root->fs_info->tree_root,
9f3a7427
CM
331 &dirty->root->root_key,
332 &dirty->root->root_item);
5eda7b5e
CM
333
334 BUG_ON(err);
9f3a7427 335 if (refs == 1) {
5eda7b5e 336 list_add(&dirty->list, list);
9f3a7427
CM
337 } else {
338 WARN_ON(1);
339 kfree(dirty->root);
5eda7b5e 340 kfree(dirty);
9f3a7427 341 }
0f7d52f4
CM
342 }
343 }
54aa1f4d 344 return err;
0f7d52f4
CM
345}
346
e9d0b13b
CM
347int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
348{
349 struct btrfs_fs_info *info = root->fs_info;
350 int ret;
351 struct btrfs_trans_handle *trans;
d3c2fdcf 352 unsigned long nr;
e9d0b13b
CM
353
354 if (root->defrag_running)
355 return 0;
e9d0b13b 356 trans = btrfs_start_transaction(root, 1);
6b80053d 357 while (1) {
e9d0b13b
CM
358 root->defrag_running = 1;
359 ret = btrfs_defrag_leaves(trans, root, cacheonly);
d3c2fdcf 360 nr = trans->blocks_used;
e9d0b13b
CM
361 btrfs_end_transaction(trans, root);
362 mutex_unlock(&info->fs_mutex);
d3c2fdcf 363 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
364 cond_resched();
365
366 mutex_lock(&info->fs_mutex);
367 trans = btrfs_start_transaction(root, 1);
368 if (ret != -EAGAIN)
369 break;
370 }
371 root->defrag_running = 0;
372 radix_tree_tag_clear(&info->fs_roots_radix,
373 (unsigned long)root->root_key.objectid,
374 BTRFS_ROOT_DEFRAG_TAG);
375 btrfs_end_transaction(trans, root);
376 return 0;
377}
378
6702ed49
CM
379int btrfs_defrag_dirty_roots(struct btrfs_fs_info *info)
380{
381 struct btrfs_root *gang[1];
382 struct btrfs_root *root;
6702ed49
CM
383 int i;
384 int ret;
385 int err = 0;
386 u64 last = 0;
387
6702ed49
CM
388 while(1) {
389 ret = radix_tree_gang_lookup_tag(&info->fs_roots_radix,
390 (void **)gang, last,
391 ARRAY_SIZE(gang),
392 BTRFS_ROOT_DEFRAG_TAG);
393 if (ret == 0)
394 break;
395 for (i = 0; i < ret; i++) {
396 root = gang[i];
397 last = root->root_key.objectid + 1;
f510cfec 398 btrfs_defrag_root(root, 1);
6702ed49
CM
399 }
400 }
6b80053d 401 btrfs_defrag_root(info->extent_root, 1);
6702ed49
CM
402 return err;
403}
404
35b7e476
CM
405static int drop_dirty_roots(struct btrfs_root *tree_root,
406 struct list_head *list)
0f7d52f4
CM
407{
408 struct dirty_root *dirty;
409 struct btrfs_trans_handle *trans;
d3c2fdcf 410 unsigned long nr;
db94535d
CM
411 u64 num_bytes;
412 u64 bytes_used;
54aa1f4d 413 int ret = 0;
9f3a7427
CM
414 int err;
415
0f7d52f4 416 while(!list_empty(list)) {
58176a96
JB
417 struct btrfs_root *root;
418
facda1e7 419 mutex_lock(&tree_root->fs_info->fs_mutex);
0f7d52f4
CM
420 dirty = list_entry(list->next, struct dirty_root, list);
421 list_del_init(&dirty->list);
5eda7b5e 422
db94535d 423 num_bytes = btrfs_root_used(&dirty->root->root_item);
58176a96
JB
424 root = dirty->latest_root;
425
9f3a7427
CM
426 while(1) {
427 trans = btrfs_start_transaction(tree_root, 1);
428 ret = btrfs_drop_snapshot(trans, dirty->root);
429 if (ret != -EAGAIN) {
430 break;
431 }
58176a96 432
9f3a7427
CM
433 err = btrfs_update_root(trans,
434 tree_root,
435 &dirty->root->root_key,
436 &dirty->root->root_item);
437 if (err)
438 ret = err;
d3c2fdcf 439 nr = trans->blocks_used;
9f3a7427
CM
440 ret = btrfs_end_transaction(trans, tree_root);
441 BUG_ON(ret);
f4468e94 442 mutex_unlock(&tree_root->fs_info->fs_mutex);
d3c2fdcf 443 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 444 cond_resched();
f4468e94 445 mutex_lock(&tree_root->fs_info->fs_mutex);
9f3a7427 446 }
0f7d52f4 447 BUG_ON(ret);
58176a96 448
db94535d
CM
449 num_bytes -= btrfs_root_used(&dirty->root->root_item);
450 bytes_used = btrfs_root_used(&root->root_item);
451 if (num_bytes) {
58176a96 452 record_root_in_trans(root);
5f39d397 453 btrfs_set_root_used(&root->root_item,
db94535d 454 bytes_used - num_bytes);
58176a96 455 }
9f3a7427 456 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
58176a96
JB
457 if (ret) {
458 BUG();
54aa1f4d 459 break;
58176a96 460 }
d3c2fdcf 461 nr = trans->blocks_used;
0f7d52f4
CM
462 ret = btrfs_end_transaction(trans, tree_root);
463 BUG_ON(ret);
5eda7b5e 464
f510cfec 465 free_extent_buffer(dirty->root->node);
9f3a7427 466 kfree(dirty->root);
0f7d52f4 467 kfree(dirty);
facda1e7 468 mutex_unlock(&tree_root->fs_info->fs_mutex);
d3c2fdcf
CM
469
470 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 471 cond_resched();
0f7d52f4 472 }
54aa1f4d 473 return ret;
0f7d52f4
CM
474}
475
79154b1b
CM
476int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
477 struct btrfs_root *root)
478{
15ee9bc7
JB
479 unsigned long joined = 0;
480 unsigned long timeout = 1;
79154b1b 481 struct btrfs_transaction *cur_trans;
8fd17795 482 struct btrfs_transaction *prev_trans = NULL;
0f7d52f4 483 struct list_head dirty_fs_roots;
1a5bc167 484 struct extent_map_tree pinned_copy;
79154b1b 485 DEFINE_WAIT(wait);
15ee9bc7 486 int ret;
79154b1b 487
1a5bc167
CM
488 extent_map_tree_init(&pinned_copy,
489 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
0f7d52f4 490 INIT_LIST_HEAD(&dirty_fs_roots);
d6e4a428 491
79154b1b
CM
492 mutex_lock(&root->fs_info->trans_mutex);
493 if (trans->transaction->in_commit) {
494 cur_trans = trans->transaction;
495 trans->transaction->use_count++;
ccd467d6 496 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b 497 btrfs_end_transaction(trans, root);
ccd467d6
CM
498
499 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b
CM
500 ret = wait_for_commit(root, cur_trans);
501 BUG_ON(ret);
15ee9bc7
JB
502
503 mutex_lock(&root->fs_info->trans_mutex);
79154b1b 504 put_transaction(cur_trans);
15ee9bc7
JB
505 mutex_unlock(&root->fs_info->trans_mutex);
506
ccd467d6 507 mutex_lock(&root->fs_info->fs_mutex);
79154b1b
CM
508 return 0;
509 }
2c90e5d6 510 trans->transaction->in_commit = 1;
ccd467d6
CM
511 cur_trans = trans->transaction;
512 if (cur_trans->list.prev != &root->fs_info->trans_list) {
513 prev_trans = list_entry(cur_trans->list.prev,
514 struct btrfs_transaction, list);
515 if (!prev_trans->commit_done) {
516 prev_trans->use_count++;
517 mutex_unlock(&root->fs_info->fs_mutex);
518 mutex_unlock(&root->fs_info->trans_mutex);
519
520 wait_for_commit(root, prev_trans);
ccd467d6
CM
521
522 mutex_lock(&root->fs_info->fs_mutex);
523 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 524 put_transaction(prev_trans);
ccd467d6
CM
525 }
526 }
15ee9bc7
JB
527
528 do {
529 joined = cur_trans->num_joined;
2c90e5d6 530 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 531 prepare_to_wait(&cur_trans->writer_wait, &wait,
79154b1b 532 TASK_UNINTERRUPTIBLE);
15ee9bc7
JB
533
534 if (cur_trans->num_writers > 1)
535 timeout = MAX_SCHEDULE_TIMEOUT;
536 else
537 timeout = 1;
538
ccd467d6 539 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b 540 mutex_unlock(&root->fs_info->trans_mutex);
15ee9bc7
JB
541
542 schedule_timeout(timeout);
543
ccd467d6 544 mutex_lock(&root->fs_info->fs_mutex);
79154b1b 545 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7
JB
546 finish_wait(&cur_trans->writer_wait, &wait);
547 } while (cur_trans->num_writers > 1 ||
548 (cur_trans->num_joined != joined));
549
2c90e5d6 550 WARN_ON(cur_trans != trans->transaction);
54aa1f4d
CM
551 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
552 &dirty_fs_roots);
553 BUG_ON(ret);
554
79154b1b
CM
555 ret = btrfs_commit_tree_roots(trans, root);
556 BUG_ON(ret);
54aa1f4d 557
78fae27e
CM
558 cur_trans = root->fs_info->running_transaction;
559 root->fs_info->running_transaction = NULL;
4b52dff6
CM
560 btrfs_set_super_generation(&root->fs_info->super_copy,
561 cur_trans->transid);
562 btrfs_set_super_root(&root->fs_info->super_copy,
db94535d
CM
563 root->fs_info->tree_root->node->start);
564 btrfs_set_super_root_level(&root->fs_info->super_copy,
565 btrfs_header_level(root->fs_info->tree_root->node));
5f39d397
CM
566
567 write_extent_buffer(root->fs_info->sb_buffer,
568 &root->fs_info->super_copy, 0,
569 sizeof(root->fs_info->super_copy));
ccd467d6
CM
570
571 btrfs_copy_pinned(root, &pinned_copy);
572
78fae27e 573 mutex_unlock(&root->fs_info->trans_mutex);
8fd17795 574 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b
CM
575 ret = btrfs_write_and_wait_transaction(trans, root);
576 BUG_ON(ret);
79154b1b 577 write_ctree_super(trans, root);
8fd17795 578 mutex_lock(&root->fs_info->fs_mutex);
ccd467d6 579 btrfs_finish_extent_commit(trans, root, &pinned_copy);
78fae27e 580 mutex_lock(&root->fs_info->trans_mutex);
2c90e5d6 581 cur_trans->commit_done = 1;
15ee9bc7 582 root->fs_info->last_trans_committed = cur_trans->transid;
2c90e5d6 583 wake_up(&cur_trans->commit_wait);
78fae27e 584 put_transaction(cur_trans);
79154b1b 585 put_transaction(cur_trans);
58176a96 586
facda1e7
CM
587 if (root->fs_info->closing)
588 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
589 else
590 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
58176a96 591
78fae27e 592 mutex_unlock(&root->fs_info->trans_mutex);
2c90e5d6 593 kmem_cache_free(btrfs_trans_handle_cachep, trans);
79154b1b 594
facda1e7
CM
595 if (root->fs_info->closing) {
596 mutex_unlock(&root->fs_info->fs_mutex);
597 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
598 mutex_lock(&root->fs_info->fs_mutex);
599 }
79154b1b
CM
600 return ret;
601}
602
e9d0b13b
CM
603int btrfs_clean_old_snapshots(struct btrfs_root *root)
604{
605 struct list_head dirty_roots;
606 INIT_LIST_HEAD(&dirty_roots);
607
608 mutex_lock(&root->fs_info->trans_mutex);
609 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
610 mutex_unlock(&root->fs_info->trans_mutex);
611
612 if (!list_empty(&dirty_roots)) {
613 drop_dirty_roots(root, &dirty_roots);
614 }
615 return 0;
616}
6da6abae
CM
617#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
618void btrfs_transaction_cleaner(void *p)
619#else
08607c1b 620void btrfs_transaction_cleaner(struct work_struct *work)
6da6abae 621#endif
08607c1b 622{
6da6abae
CM
623#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
624 struct btrfs_fs_info *fs_info = p;
625#else
08607c1b
CM
626 struct btrfs_fs_info *fs_info = container_of(work,
627 struct btrfs_fs_info,
628 trans_work.work);
629
6da6abae 630#endif
08607c1b
CM
631 struct btrfs_root *root = fs_info->tree_root;
632 struct btrfs_transaction *cur;
633 struct btrfs_trans_handle *trans;
634 unsigned long now;
635 unsigned long delay = HZ * 30;
636 int ret;
637
08607c1b
CM
638 mutex_lock(&root->fs_info->fs_mutex);
639 mutex_lock(&root->fs_info->trans_mutex);
640 cur = root->fs_info->running_transaction;
641 if (!cur) {
642 mutex_unlock(&root->fs_info->trans_mutex);
643 goto out;
644 }
645 now = get_seconds();
646 if (now < cur->start_time || now - cur->start_time < 30) {
647 mutex_unlock(&root->fs_info->trans_mutex);
648 delay = HZ * 5;
649 goto out;
650 }
651 mutex_unlock(&root->fs_info->trans_mutex);
6702ed49 652 btrfs_defrag_dirty_roots(root->fs_info);
08607c1b
CM
653 trans = btrfs_start_transaction(root, 1);
654 ret = btrfs_commit_transaction(trans, root);
655out:
656 mutex_unlock(&root->fs_info->fs_mutex);
e9d0b13b 657 btrfs_clean_old_snapshots(root);
08607c1b
CM
658 btrfs_transaction_queue_work(root, delay);
659}
660
661void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
662{
663 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
664}
665
666void btrfs_transaction_flush_work(struct btrfs_root *root)
667{
668 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
669 flush_workqueue(trans_wq);
670}
671
672void __init btrfs_init_transaction_sys(void)
673{
674 trans_wq = create_workqueue("btrfs");
675}
676
17636e03 677void btrfs_exit_transaction_sys(void)
08607c1b
CM
678{
679 destroy_workqueue(trans_wq);
680}
681