Match the extent tree code to btrfs-progs for multi-device merging
[linux-2.6-block.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
80b6794d 36static noinline void put_transaction(struct btrfs_transaction *transaction)
79154b1b 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
80b6794d 49static noinline int join_transaction(struct btrfs_root *root)
79154b1b
CM
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;
e18e4809 60 root->fs_info->last_alloc = 0;
4529ba49 61 root->fs_info->last_data_alloc = 0;
15ee9bc7
JB
62 cur_trans->num_writers = 1;
63 cur_trans->num_joined = 0;
0f7d52f4 64 cur_trans->transid = root->fs_info->generation;
79154b1b
CM
65 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
d5719762 68 cur_trans->use_count = 1;
79154b1b 69 cur_trans->commit_done = 0;
08607c1b 70 cur_trans->start_time = get_seconds();
3063d29f 71 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
8fd17795 72 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
dc17ff8f 73 btrfs_ordered_inode_tree_init(&cur_trans->ordered_inode_tree);
d1310b2e 74 extent_io_tree_init(&cur_trans->dirty_pages,
5f39d397
CM
75 root->fs_info->btree_inode->i_mapping,
76 GFP_NOFS);
15ee9bc7
JB
77 } else {
78 cur_trans->num_writers++;
79 cur_trans->num_joined++;
79154b1b 80 }
15ee9bc7 81
79154b1b
CM
82 return 0;
83}
84
80b6794d 85static noinline int record_root_in_trans(struct btrfs_root *root)
6702ed49
CM
86{
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;
5f39d397 98 extent_buffer_get(root->node);
6702ed49
CM
99 } else {
100 WARN_ON(1);
101 }
102 root->last_trans = running_trans_id;
103 }
104 return 0;
105}
106
79154b1b
CM
107struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
108 int num_blocks)
109{
2c90e5d6
CM
110 struct btrfs_trans_handle *h =
111 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
79154b1b
CM
112 int ret;
113
114 mutex_lock(&root->fs_info->trans_mutex);
115 ret = join_transaction(root);
116 BUG_ON(ret);
0f7d52f4 117
6702ed49
CM
118 record_root_in_trans(root);
119 h->transid = root->fs_info->running_transaction->transid;
79154b1b
CM
120 h->transaction = root->fs_info->running_transaction;
121 h->blocks_reserved = num_blocks;
122 h->blocks_used = 0;
31f3c99b 123 h->block_group = NULL;
26b8003f
CM
124 h->alloc_exclude_nr = 0;
125 h->alloc_exclude_start = 0;
79154b1b
CM
126 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;
d6e4a428 135
79154b1b
CM
136 mutex_lock(&root->fs_info->trans_mutex);
137 cur_trans = root->fs_info->running_transaction;
ccd467d6 138 WARN_ON(cur_trans != trans->transaction);
d5719762 139 WARN_ON(cur_trans->num_writers < 1);
ccd467d6 140 cur_trans->num_writers--;
79154b1b
CM
141 if (waitqueue_active(&cur_trans->writer_wait))
142 wake_up(&cur_trans->writer_wait);
79154b1b
CM
143 put_transaction(cur_trans);
144 mutex_unlock(&root->fs_info->trans_mutex);
d6025579 145 memset(trans, 0, sizeof(*trans));
2c90e5d6 146 kmem_cache_free(btrfs_trans_handle_cachep, trans);
79154b1b
CM
147 return 0;
148}
149
150
151int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
152 struct btrfs_root *root)
153{
7c4452b9 154 int ret;
7c4452b9
CM
155 int err;
156 int werr = 0;
d1310b2e 157 struct extent_io_tree *dirty_pages;
7c4452b9 158 struct page *page;
7c4452b9 159 struct inode *btree_inode = root->fs_info->btree_inode;
5f39d397
CM
160 u64 start;
161 u64 end;
162 unsigned long index;
7c4452b9
CM
163
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) {
5f39d397
CM
169 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
170 EXTENT_DIRTY);
171 if (ret)
7c4452b9 172 break;
5f39d397
CM
173 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
174 while(start <= end) {
175 index = start >> PAGE_CACHE_SHIFT;
35ebb934 176 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
5f39d397 177 page = find_lock_page(btree_inode->i_mapping, index);
7c4452b9
CM
178 if (!page)
179 continue;
6702ed49
CM
180 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 }
7c4452b9
CM
189 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;
79154b1b
CM
199}
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;
79154b1b 209
9078a3e1 210 btrfs_write_dirty_block_groups(trans, extent_root);
79154b1b 211 while(1) {
db94535d
CM
212 old_extent_block = btrfs_root_bytenr(&extent_root->root_item);
213 if (old_extent_block == extent_root->node->start)
79154b1b 214 break;
db94535d
CM
215 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));
79154b1b
CM
219 ret = btrfs_update_root(trans, tree_root,
220 &extent_root->root_key,
221 &extent_root->root_item);
222 BUG_ON(ret);
9078a3e1 223 btrfs_write_dirty_block_groups(trans, extent_root);
79154b1b
CM
224 }
225 return 0;
226}
227
80b6794d
CM
228static noinline int wait_for_commit(struct btrfs_root *root,
229 struct btrfs_transaction *commit)
79154b1b
CM
230{
231 DEFINE_WAIT(wait);
ccd467d6 232 mutex_lock(&root->fs_info->trans_mutex);
79154b1b
CM
233 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 }
ccd467d6 242 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b
CM
243 finish_wait(&commit->commit_wait, &wait);
244 return 0;
245}
246
0f7d52f4
CM
247struct dirty_root {
248 struct list_head list;
0f7d52f4 249 struct btrfs_root *root;
58176a96 250 struct btrfs_root *latest_root;
0f7d52f4
CM
251};
252
5ce14bbc
CM
253int btrfs_add_dead_root(struct btrfs_root *root,
254 struct btrfs_root *latest,
255 struct list_head *dead_list)
5eda7b5e
CM
256{
257 struct dirty_root *dirty;
258
259 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
260 if (!dirty)
261 return -ENOMEM;
5eda7b5e 262 dirty->root = root;
5ce14bbc 263 dirty->latest_root = latest;
5eda7b5e
CM
264 list_add(&dirty->list, dead_list);
265 return 0;
266}
267
80b6794d
CM
268static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
269 struct radix_tree_root *radix,
270 struct list_head *list)
0f7d52f4
CM
271{
272 struct dirty_root *dirty;
273 struct btrfs_root *gang[8];
274 struct btrfs_root *root;
275 int i;
276 int ret;
54aa1f4d 277 int err = 0;
5eda7b5e 278 u32 refs;
54aa1f4d 279
0f7d52f4
CM
280 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];
2619ba1f
CM
288 radix_tree_tag_clear(radix,
289 (unsigned long)root->root_key.objectid,
290 BTRFS_ROOT_TRANS_TAG);
0f7d52f4 291 if (root->commit_root == root->node) {
db94535d
CM
292 WARN_ON(root->node->start !=
293 btrfs_root_bytenr(&root->root_item));
5f39d397 294 free_extent_buffer(root->commit_root);
0f7d52f4 295 root->commit_root = NULL;
58176a96
JB
296
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);
0f7d52f4
CM
305 continue;
306 }
307 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
308 BUG_ON(!dirty);
9f3a7427
CM
309 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;
58176a96 318 dirty->latest_root = root;
0f7d52f4 319 root->commit_root = NULL;
5eda7b5e 320
0f7d52f4 321 root->root_key.offset = root->fs_info->generation;
db94535d
CM
322 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));
0f7d52f4
CM
326 err = btrfs_insert_root(trans, root->fs_info->tree_root,
327 &root->root_key,
328 &root->root_item);
54aa1f4d
CM
329 if (err)
330 break;
9f3a7427
CM
331
332 refs = btrfs_root_refs(&dirty->root->root_item);
333 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
5eda7b5e 334 err = btrfs_update_root(trans, root->fs_info->tree_root,
9f3a7427
CM
335 &dirty->root->root_key,
336 &dirty->root->root_item);
5eda7b5e
CM
337
338 BUG_ON(err);
9f3a7427 339 if (refs == 1) {
5eda7b5e 340 list_add(&dirty->list, list);
9f3a7427
CM
341 } else {
342 WARN_ON(1);
343 kfree(dirty->root);
5eda7b5e 344 kfree(dirty);
9f3a7427 345 }
0f7d52f4
CM
346 }
347 }
54aa1f4d 348 return err;
0f7d52f4
CM
349}
350
e9d0b13b
CM
351int 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;
d3c2fdcf 356 unsigned long nr;
e9d0b13b
CM
357
358 if (root->defrag_running)
359 return 0;
e9d0b13b 360 trans = btrfs_start_transaction(root, 1);
6b80053d 361 while (1) {
e9d0b13b
CM
362 root->defrag_running = 1;
363 ret = btrfs_defrag_leaves(trans, root, cacheonly);
d3c2fdcf 364 nr = trans->blocks_used;
e9d0b13b
CM
365 btrfs_end_transaction(trans, root);
366 mutex_unlock(&info->fs_mutex);
d3c2fdcf 367 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
368 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
6702ed49
CM
383int btrfs_defrag_dirty_roots(struct btrfs_fs_info *info)
384{
385 struct btrfs_root *gang[1];
386 struct btrfs_root *root;
6702ed49
CM
387 int i;
388 int ret;
389 int err = 0;
390 u64 last = 0;
391
6702ed49
CM
392 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;
f510cfec 402 btrfs_defrag_root(root, 1);
6702ed49
CM
403 }
404 }
6b80053d 405 btrfs_defrag_root(info->extent_root, 1);
6702ed49
CM
406 return err;
407}
408
80b6794d
CM
409static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
410 struct list_head *list)
0f7d52f4
CM
411{
412 struct dirty_root *dirty;
413 struct btrfs_trans_handle *trans;
d3c2fdcf 414 unsigned long nr;
db94535d
CM
415 u64 num_bytes;
416 u64 bytes_used;
54aa1f4d 417 int ret = 0;
9f3a7427
CM
418 int err;
419
0f7d52f4 420 while(!list_empty(list)) {
58176a96
JB
421 struct btrfs_root *root;
422
facda1e7 423 mutex_lock(&tree_root->fs_info->fs_mutex);
0f7d52f4
CM
424 dirty = list_entry(list->next, struct dirty_root, list);
425 list_del_init(&dirty->list);
5eda7b5e 426
db94535d 427 num_bytes = btrfs_root_used(&dirty->root->root_item);
58176a96 428 root = dirty->latest_root;
e2008b61 429 root->fs_info->throttles++;
58176a96 430
9f3a7427
CM
431 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 }
58176a96 437
9f3a7427
CM
438 err = btrfs_update_root(trans,
439 tree_root,
440 &dirty->root->root_key,
441 &dirty->root->root_item);
442 if (err)
443 ret = err;
d3c2fdcf 444 nr = trans->blocks_used;
9f3a7427
CM
445 ret = btrfs_end_transaction(trans, tree_root);
446 BUG_ON(ret);
f4468e94 447 mutex_unlock(&tree_root->fs_info->fs_mutex);
d3c2fdcf 448 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 449 cond_resched();
f4468e94 450 mutex_lock(&tree_root->fs_info->fs_mutex);
9f3a7427 451 }
0f7d52f4 452 BUG_ON(ret);
e2008b61 453 root->fs_info->throttles--;
58176a96 454
db94535d
CM
455 num_bytes -= btrfs_root_used(&dirty->root->root_item);
456 bytes_used = btrfs_root_used(&root->root_item);
457 if (num_bytes) {
58176a96 458 record_root_in_trans(root);
5f39d397 459 btrfs_set_root_used(&root->root_item,
db94535d 460 bytes_used - num_bytes);
58176a96 461 }
9f3a7427 462 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
58176a96
JB
463 if (ret) {
464 BUG();
54aa1f4d 465 break;
58176a96 466 }
d3c2fdcf 467 nr = trans->blocks_used;
0f7d52f4
CM
468 ret = btrfs_end_transaction(trans, tree_root);
469 BUG_ON(ret);
5eda7b5e 470
f510cfec 471 free_extent_buffer(dirty->root->node);
9f3a7427 472 kfree(dirty->root);
0f7d52f4 473 kfree(dirty);
facda1e7 474 mutex_unlock(&tree_root->fs_info->fs_mutex);
d3c2fdcf
CM
475
476 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 477 cond_resched();
0f7d52f4 478 }
54aa1f4d 479 return ret;
0f7d52f4
CM
480}
481
dc17ff8f
CM
482int 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;
dc17ff8f
CM
489 int ret;
490
e2008b61 491 root->fs_info->throttles++;
dc17ff8f
CM
492 while(1) {
493 ret = btrfs_find_first_ordered_inode(
494 &cur_trans->ordered_inode_tree,
4d5e74bc 495 &root_objectid, &objectid, &inode);
dc17ff8f
CM
496 if (!ret)
497 break;
498
499 mutex_unlock(&root->fs_info->trans_mutex);
500 mutex_unlock(&root->fs_info->fs_mutex);
4d5e74bc
CM
501
502 if (S_ISREG(inode->i_mode))
503 filemap_fdatawrite(inode->i_mapping);
504 iput(inode);
505
dc17ff8f
CM
506 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,
4d5e74bc 514 &root_objectid, &objectid, &inode);
dc17ff8f
CM
515 if (!ret)
516 break;
517 mutex_unlock(&root->fs_info->trans_mutex);
518 mutex_unlock(&root->fs_info->fs_mutex);
4d5e74bc
CM
519
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
dc17ff8f
CM
525 mutex_lock(&root->fs_info->fs_mutex);
526 mutex_lock(&root->fs_info->trans_mutex);
527 }
e2008b61 528 root->fs_info->throttles--;
3063d29f
CM
529 return 0;
530}
531
80b6794d 532static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
533 struct btrfs_fs_info *fs_info,
534 struct btrfs_pending_snapshot *pending)
535{
536 struct btrfs_key key;
80b6794d 537 struct btrfs_root_item *new_root_item;
3063d29f
CM
538 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
80b6794d
CM
544 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
545 if (!new_root_item) {
546 ret = -ENOMEM;
547 goto fail;
548 }
3063d29f
CM
549 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
550 if (ret)
551 goto fail;
552
80b6794d 553 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
3063d29f
CM
554
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
80b6794d
CM
565 btrfs_set_root_bytenr(new_root_item, tmp->start);
566 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
3063d29f 567 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
80b6794d 568 new_root_item);
3063d29f
CM
569 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:
80b6794d 589 kfree(new_root_item);
3063d29f
CM
590 return ret;
591}
592
80b6794d
CM
593static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
594 struct btrfs_fs_info *fs_info)
3063d29f
CM
595{
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 }
dc17ff8f
CM
609 return 0;
610}
611
79154b1b
CM
612int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
613 struct btrfs_root *root)
614{
15ee9bc7
JB
615 unsigned long joined = 0;
616 unsigned long timeout = 1;
79154b1b 617 struct btrfs_transaction *cur_trans;
8fd17795 618 struct btrfs_transaction *prev_trans = NULL;
0f7d52f4 619 struct list_head dirty_fs_roots;
d1310b2e 620 struct extent_io_tree *pinned_copy;
79154b1b 621 DEFINE_WAIT(wait);
15ee9bc7 622 int ret;
79154b1b 623
0f7d52f4 624 INIT_LIST_HEAD(&dirty_fs_roots);
d6e4a428 625
79154b1b
CM
626 mutex_lock(&root->fs_info->trans_mutex);
627 if (trans->transaction->in_commit) {
628 cur_trans = trans->transaction;
629 trans->transaction->use_count++;
ccd467d6 630 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b 631 btrfs_end_transaction(trans, root);
ccd467d6
CM
632
633 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b
CM
634 ret = wait_for_commit(root, cur_trans);
635 BUG_ON(ret);
15ee9bc7
JB
636
637 mutex_lock(&root->fs_info->trans_mutex);
79154b1b 638 put_transaction(cur_trans);
15ee9bc7
JB
639 mutex_unlock(&root->fs_info->trans_mutex);
640
ccd467d6 641 mutex_lock(&root->fs_info->fs_mutex);
79154b1b
CM
642 return 0;
643 }
4313b399
CM
644
645 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
646 if (!pinned_copy)
647 return -ENOMEM;
648
d1310b2e 649 extent_io_tree_init(pinned_copy,
4313b399
CM
650 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
651
2c90e5d6 652 trans->transaction->in_commit = 1;
ccd467d6
CM
653 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);
ccd467d6
CM
663
664 mutex_lock(&root->fs_info->fs_mutex);
665 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 666 put_transaction(prev_trans);
ccd467d6
CM
667 }
668 }
15ee9bc7
JB
669
670 do {
671 joined = cur_trans->num_joined;
2c90e5d6 672 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 673 prepare_to_wait(&cur_trans->writer_wait, &wait,
79154b1b 674 TASK_UNINTERRUPTIBLE);
15ee9bc7
JB
675
676 if (cur_trans->num_writers > 1)
677 timeout = MAX_SCHEDULE_TIMEOUT;
678 else
679 timeout = 1;
680
ccd467d6 681 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b 682 mutex_unlock(&root->fs_info->trans_mutex);
15ee9bc7
JB
683
684 schedule_timeout(timeout);
685
ccd467d6 686 mutex_lock(&root->fs_info->fs_mutex);
79154b1b 687 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 688 finish_wait(&cur_trans->writer_wait, &wait);
dc17ff8f
CM
689 ret = btrfs_write_ordered_inodes(trans, root);
690
15ee9bc7
JB
691 } while (cur_trans->num_writers > 1 ||
692 (cur_trans->num_joined != joined));
693
3063d29f
CM
694 ret = create_pending_snapshots(trans, root->fs_info);
695 BUG_ON(ret);
696
2c90e5d6 697 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 698
54aa1f4d
CM
699 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
700 &dirty_fs_roots);
701 BUG_ON(ret);
702
79154b1b
CM
703 ret = btrfs_commit_tree_roots(trans, root);
704 BUG_ON(ret);
54aa1f4d 705
78fae27e 706 cur_trans = root->fs_info->running_transaction;
cee36a03 707 spin_lock(&root->fs_info->new_trans_lock);
78fae27e 708 root->fs_info->running_transaction = NULL;
cee36a03 709 spin_unlock(&root->fs_info->new_trans_lock);
4b52dff6
CM
710 btrfs_set_super_generation(&root->fs_info->super_copy,
711 cur_trans->transid);
712 btrfs_set_super_root(&root->fs_info->super_copy,
db94535d
CM
713 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));
5f39d397
CM
716
717 write_extent_buffer(root->fs_info->sb_buffer,
718 &root->fs_info->super_copy, 0,
719 sizeof(root->fs_info->super_copy));
ccd467d6 720
4313b399 721 btrfs_copy_pinned(root, pinned_copy);
ccd467d6 722
78fae27e 723 mutex_unlock(&root->fs_info->trans_mutex);
8fd17795 724 mutex_unlock(&root->fs_info->fs_mutex);
79154b1b
CM
725 ret = btrfs_write_and_wait_transaction(trans, root);
726 BUG_ON(ret);
79154b1b 727 write_ctree_super(trans, root);
4313b399 728
8fd17795 729 mutex_lock(&root->fs_info->fs_mutex);
4313b399 730 btrfs_finish_extent_commit(trans, root, pinned_copy);
78fae27e 731 mutex_lock(&root->fs_info->trans_mutex);
4313b399
CM
732
733 kfree(pinned_copy);
734
2c90e5d6 735 cur_trans->commit_done = 1;
15ee9bc7 736 root->fs_info->last_trans_committed = cur_trans->transid;
2c90e5d6 737 wake_up(&cur_trans->commit_wait);
78fae27e 738 put_transaction(cur_trans);
79154b1b 739 put_transaction(cur_trans);
58176a96 740
facda1e7
CM
741 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);
58176a96 745
78fae27e 746 mutex_unlock(&root->fs_info->trans_mutex);
2c90e5d6 747 kmem_cache_free(btrfs_trans_handle_cachep, trans);
79154b1b 748
facda1e7
CM
749 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 }
79154b1b
CM
754 return ret;
755}
756
e9d0b13b
CM
757int 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}
6da6abae
CM
771#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
772void btrfs_transaction_cleaner(void *p)
773#else
08607c1b 774void btrfs_transaction_cleaner(struct work_struct *work)
6da6abae 775#endif
08607c1b 776{
6da6abae
CM
777#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
778 struct btrfs_fs_info *fs_info = p;
779#else
08607c1b
CM
780 struct btrfs_fs_info *fs_info = container_of(work,
781 struct btrfs_fs_info,
782 trans_work.work);
783
6da6abae 784#endif
08607c1b
CM
785 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
08607c1b
CM
792 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);
6702ed49 806 btrfs_defrag_dirty_roots(root->fs_info);
08607c1b
CM
807 trans = btrfs_start_transaction(root, 1);
808 ret = btrfs_commit_transaction(trans, root);
809out:
810 mutex_unlock(&root->fs_info->fs_mutex);
e9d0b13b 811 btrfs_clean_old_snapshots(root);
08607c1b
CM
812 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
17636e03 831void btrfs_exit_transaction_sys(void)
08607c1b
CM
832{
833 destroy_workqueue(trans_wq);
834}
835