include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
5a0e3ad6 20#include <linux/slab.h>
34088780 21#include <linux/sched.h>
d3c2fdcf 22#include <linux/writeback.h>
5f39d397 23#include <linux/pagemap.h>
5f2cc086 24#include <linux/blkdev.h>
79154b1b
CM
25#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
925baedd 28#include "locking.h"
e02119d5 29#include "tree-log.h"
79154b1b 30
0f7d52f4
CM
31#define BTRFS_ROOT_TRANS_TAG 0
32
80b6794d 33static noinline void put_transaction(struct btrfs_transaction *transaction)
79154b1b 34{
2c90e5d6 35 WARN_ON(transaction->use_count == 0);
79154b1b 36 transaction->use_count--;
78fae27e 37 if (transaction->use_count == 0) {
8fd17795 38 list_del_init(&transaction->list);
2c90e5d6
CM
39 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
78fae27e 41 }
79154b1b
CM
42}
43
817d52f8
JB
44static noinline void switch_commit_root(struct btrfs_root *root)
45{
817d52f8
JB
46 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
817d52f8
JB
48}
49
d352ac68
CM
50/*
51 * either allocate a new transaction or hop into the existing one
52 */
80b6794d 53static noinline int join_transaction(struct btrfs_root *root)
79154b1b
CM
54{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
2c90e5d6
CM
58 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
79154b1b 60 BUG_ON(!cur_trans);
0f7d52f4 61 root->fs_info->generation++;
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;
f9295749 68 cur_trans->blocked = 0;
d5719762 69 cur_trans->use_count = 1;
79154b1b 70 cur_trans->commit_done = 0;
08607c1b 71 cur_trans->start_time = get_seconds();
56bec294 72
6bef4d31 73 cur_trans->delayed_refs.root = RB_ROOT;
56bec294 74 cur_trans->delayed_refs.num_entries = 0;
c3e69d58
CM
75 cur_trans->delayed_refs.num_heads_ready = 0;
76 cur_trans->delayed_refs.num_heads = 0;
56bec294 77 cur_trans->delayed_refs.flushing = 0;
c3e69d58 78 cur_trans->delayed_refs.run_delayed_start = 0;
56bec294
CM
79 spin_lock_init(&cur_trans->delayed_refs.lock);
80
3063d29f 81 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
8fd17795 82 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
d1310b2e 83 extent_io_tree_init(&cur_trans->dirty_pages,
5f39d397
CM
84 root->fs_info->btree_inode->i_mapping,
85 GFP_NOFS);
48ec2cf8
CM
86 spin_lock(&root->fs_info->new_trans_lock);
87 root->fs_info->running_transaction = cur_trans;
88 spin_unlock(&root->fs_info->new_trans_lock);
15ee9bc7
JB
89 } else {
90 cur_trans->num_writers++;
91 cur_trans->num_joined++;
79154b1b 92 }
15ee9bc7 93
79154b1b
CM
94 return 0;
95}
96
d352ac68 97/*
d397712b
CM
98 * this does all the record keeping required to make sure that a reference
99 * counted root is properly recorded in a given transaction. This is required
100 * to make sure the old root from before we joined the transaction is deleted
101 * when the transaction commits
d352ac68 102 */
5d4f98a2
YZ
103static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
6702ed49 105{
5d4f98a2 106 if (root->ref_cows && root->last_trans < trans->transid) {
6702ed49 107 WARN_ON(root == root->fs_info->extent_root);
5d4f98a2
YZ
108 WARN_ON(root->commit_root != root->node);
109
110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
115 }
116 return 0;
117}
bcc63abb 118
5d4f98a2
YZ
119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
bcc63abb 124
5d4f98a2
YZ
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
6702ed49 129 }
5d4f98a2
YZ
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
6702ed49
CM
133 return 0;
134}
135
d352ac68
CM
136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
37d1aeee 140static void wait_current_trans(struct btrfs_root *root)
79154b1b 141{
f9295749 142 struct btrfs_transaction *cur_trans;
79154b1b 143
f9295749 144 cur_trans = root->fs_info->running_transaction;
37d1aeee 145 if (cur_trans && cur_trans->blocked) {
f9295749
CM
146 DEFINE_WAIT(wait);
147 cur_trans->use_count++;
d397712b 148 while (1) {
f9295749
CM
149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
151 if (cur_trans->blocked) {
152 mutex_unlock(&root->fs_info->trans_mutex);
153 schedule();
154 mutex_lock(&root->fs_info->trans_mutex);
155 finish_wait(&root->fs_info->transaction_wait,
156 &wait);
157 } else {
158 finish_wait(&root->fs_info->transaction_wait,
159 &wait);
160 break;
161 }
162 }
163 put_transaction(cur_trans);
164 }
37d1aeee
CM
165}
166
249ac1e5
JB
167enum btrfs_trans_type {
168 TRANS_START,
169 TRANS_JOIN,
170 TRANS_USERSPACE,
171};
172
e02119d5 173static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
249ac1e5 174 int num_blocks, int type)
37d1aeee
CM
175{
176 struct btrfs_trans_handle *h =
177 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
178 int ret;
179
180 mutex_lock(&root->fs_info->trans_mutex);
4bef0848 181 if (!root->fs_info->log_root_recovering &&
249ac1e5
JB
182 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
183 type == TRANS_USERSPACE))
37d1aeee 184 wait_current_trans(root);
79154b1b
CM
185 ret = join_transaction(root);
186 BUG_ON(ret);
0f7d52f4 187
6702ed49 188 h->transid = root->fs_info->running_transaction->transid;
79154b1b
CM
189 h->transaction = root->fs_info->running_transaction;
190 h->blocks_reserved = num_blocks;
191 h->blocks_used = 0;
d2fb3437 192 h->block_group = 0;
26b8003f
CM
193 h->alloc_exclude_nr = 0;
194 h->alloc_exclude_start = 0;
56bec294 195 h->delayed_ref_updates = 0;
b7ec40d7 196
249ac1e5 197 if (!current->journal_info && type != TRANS_USERSPACE)
9ed74f2d
JB
198 current->journal_info = h;
199
79154b1b 200 root->fs_info->running_transaction->use_count++;
5d4f98a2 201 record_root_in_trans(h, root);
79154b1b
CM
202 mutex_unlock(&root->fs_info->trans_mutex);
203 return h;
204}
205
f9295749
CM
206struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
207 int num_blocks)
208{
249ac1e5 209 return start_transaction(root, num_blocks, TRANS_START);
f9295749
CM
210}
211struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
212 int num_blocks)
213{
249ac1e5 214 return start_transaction(root, num_blocks, TRANS_JOIN);
f9295749
CM
215}
216
9ca9ee09
SW
217struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
218 int num_blocks)
219{
249ac1e5 220 return start_transaction(r, num_blocks, TRANS_USERSPACE);
9ca9ee09
SW
221}
222
d352ac68 223/* wait for a transaction commit to be fully complete */
89ce8a63
CM
224static noinline int wait_for_commit(struct btrfs_root *root,
225 struct btrfs_transaction *commit)
226{
227 DEFINE_WAIT(wait);
228 mutex_lock(&root->fs_info->trans_mutex);
d397712b 229 while (!commit->commit_done) {
89ce8a63
CM
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 }
238 mutex_unlock(&root->fs_info->trans_mutex);
239 finish_wait(&commit->commit_wait, &wait);
240 return 0;
241}
242
5d4f98a2 243#if 0
d352ac68 244/*
d397712b
CM
245 * rate limit against the drop_snapshot code. This helps to slow down new
246 * operations if the drop_snapshot code isn't able to keep up.
d352ac68 247 */
37d1aeee 248static void throttle_on_drops(struct btrfs_root *root)
ab78c84d
CM
249{
250 struct btrfs_fs_info *info = root->fs_info;
2dd3e67b 251 int harder_count = 0;
ab78c84d 252
2dd3e67b 253harder:
ab78c84d
CM
254 if (atomic_read(&info->throttles)) {
255 DEFINE_WAIT(wait);
256 int thr;
ab78c84d
CM
257 thr = atomic_read(&info->throttle_gen);
258
259 do {
260 prepare_to_wait(&info->transaction_throttle,
261 &wait, TASK_UNINTERRUPTIBLE);
262 if (!atomic_read(&info->throttles)) {
263 finish_wait(&info->transaction_throttle, &wait);
264 break;
265 }
266 schedule();
267 finish_wait(&info->transaction_throttle, &wait);
268 } while (thr == atomic_read(&info->throttle_gen));
2dd3e67b
CM
269 harder_count++;
270
271 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
272 harder_count < 2)
273 goto harder;
274
275 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
276 harder_count < 10)
277 goto harder;
278
279 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
280 harder_count < 20)
281 goto harder;
ab78c84d
CM
282 }
283}
5d4f98a2 284#endif
ab78c84d 285
37d1aeee
CM
286void btrfs_throttle(struct btrfs_root *root)
287{
288 mutex_lock(&root->fs_info->trans_mutex);
9ca9ee09
SW
289 if (!root->fs_info->open_ioctl_trans)
290 wait_current_trans(root);
37d1aeee 291 mutex_unlock(&root->fs_info->trans_mutex);
37d1aeee
CM
292}
293
89ce8a63
CM
294static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
295 struct btrfs_root *root, int throttle)
79154b1b
CM
296{
297 struct btrfs_transaction *cur_trans;
ab78c84d 298 struct btrfs_fs_info *info = root->fs_info;
c3e69d58
CM
299 int count = 0;
300
301 while (count < 4) {
302 unsigned long cur = trans->delayed_ref_updates;
303 trans->delayed_ref_updates = 0;
304 if (cur &&
305 trans->transaction->delayed_refs.num_heads_ready > 64) {
306 trans->delayed_ref_updates = 0;
b7ec40d7
CM
307
308 /*
309 * do a full flush if the transaction is trying
310 * to close
311 */
312 if (trans->transaction->delayed_refs.flushing)
313 cur = 0;
c3e69d58
CM
314 btrfs_run_delayed_refs(trans, root, cur);
315 } else {
316 break;
317 }
318 count++;
56bec294
CM
319 }
320
ab78c84d
CM
321 mutex_lock(&info->trans_mutex);
322 cur_trans = info->running_transaction;
ccd467d6 323 WARN_ON(cur_trans != trans->transaction);
d5719762 324 WARN_ON(cur_trans->num_writers < 1);
ccd467d6 325 cur_trans->num_writers--;
89ce8a63 326
79154b1b
CM
327 if (waitqueue_active(&cur_trans->writer_wait))
328 wake_up(&cur_trans->writer_wait);
79154b1b 329 put_transaction(cur_trans);
ab78c84d 330 mutex_unlock(&info->trans_mutex);
9ed74f2d
JB
331
332 if (current->journal_info == trans)
333 current->journal_info = NULL;
d6025579 334 memset(trans, 0, sizeof(*trans));
2c90e5d6 335 kmem_cache_free(btrfs_trans_handle_cachep, trans);
ab78c84d 336
24bbcf04
YZ
337 if (throttle)
338 btrfs_run_delayed_iputs(root);
339
79154b1b
CM
340 return 0;
341}
342
89ce8a63
CM
343int btrfs_end_transaction(struct btrfs_trans_handle *trans,
344 struct btrfs_root *root)
345{
346 return __btrfs_end_transaction(trans, root, 0);
347}
348
349int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
350 struct btrfs_root *root)
351{
352 return __btrfs_end_transaction(trans, root, 1);
353}
354
d352ac68
CM
355/*
356 * when btree blocks are allocated, they have some corresponding bits set for
357 * them in one of two extent_io trees. This is used to make sure all of
690587d1 358 * those extents are sent to disk but does not wait on them
d352ac68 359 */
690587d1 360int btrfs_write_marked_extents(struct btrfs_root *root,
8cef4e16 361 struct extent_io_tree *dirty_pages, int mark)
79154b1b 362{
7c4452b9 363 int ret;
777e6bd7 364 int err = 0;
7c4452b9
CM
365 int werr = 0;
366 struct page *page;
7c4452b9 367 struct inode *btree_inode = root->fs_info->btree_inode;
777e6bd7 368 u64 start = 0;
5f39d397
CM
369 u64 end;
370 unsigned long index;
7c4452b9 371
d397712b 372 while (1) {
777e6bd7 373 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
8cef4e16 374 mark);
5f39d397 375 if (ret)
7c4452b9 376 break;
d397712b 377 while (start <= end) {
777e6bd7
CM
378 cond_resched();
379
5f39d397 380 index = start >> PAGE_CACHE_SHIFT;
35ebb934 381 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
4bef0848 382 page = find_get_page(btree_inode->i_mapping, index);
7c4452b9
CM
383 if (!page)
384 continue;
4bef0848
CM
385
386 btree_lock_page_hook(page);
387 if (!page->mapping) {
388 unlock_page(page);
389 page_cache_release(page);
390 continue;
391 }
392
6702ed49
CM
393 if (PageWriteback(page)) {
394 if (PageDirty(page))
395 wait_on_page_writeback(page);
396 else {
397 unlock_page(page);
398 page_cache_release(page);
399 continue;
400 }
401 }
7c4452b9
CM
402 err = write_one_page(page, 0);
403 if (err)
404 werr = err;
405 page_cache_release(page);
406 }
407 }
690587d1
CM
408 if (err)
409 werr = err;
410 return werr;
411}
412
413/*
414 * when btree blocks are allocated, they have some corresponding bits set for
415 * them in one of two extent_io trees. This is used to make sure all of
416 * those extents are on disk for transaction or log commit. We wait
417 * on all the pages and clear them from the dirty pages state tree
418 */
419int btrfs_wait_marked_extents(struct btrfs_root *root,
8cef4e16 420 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
421{
422 int ret;
423 int err = 0;
424 int werr = 0;
425 struct page *page;
426 struct inode *btree_inode = root->fs_info->btree_inode;
427 u64 start = 0;
428 u64 end;
429 unsigned long index;
430
d397712b 431 while (1) {
8cef4e16
YZ
432 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
433 mark);
777e6bd7
CM
434 if (ret)
435 break;
436
8cef4e16 437 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
d397712b 438 while (start <= end) {
777e6bd7
CM
439 index = start >> PAGE_CACHE_SHIFT;
440 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
441 page = find_get_page(btree_inode->i_mapping, index);
442 if (!page)
443 continue;
444 if (PageDirty(page)) {
4bef0848
CM
445 btree_lock_page_hook(page);
446 wait_on_page_writeback(page);
777e6bd7
CM
447 err = write_one_page(page, 0);
448 if (err)
449 werr = err;
450 }
105d931d 451 wait_on_page_writeback(page);
777e6bd7
CM
452 page_cache_release(page);
453 cond_resched();
454 }
455 }
7c4452b9
CM
456 if (err)
457 werr = err;
458 return werr;
79154b1b
CM
459}
460
690587d1
CM
461/*
462 * when btree blocks are allocated, they have some corresponding bits set for
463 * them in one of two extent_io trees. This is used to make sure all of
464 * those extents are on disk for transaction or log commit
465 */
466int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
8cef4e16 467 struct extent_io_tree *dirty_pages, int mark)
690587d1
CM
468{
469 int ret;
470 int ret2;
471
8cef4e16
YZ
472 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
473 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
690587d1
CM
474 return ret || ret2;
475}
476
d0c803c4
CM
477int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
478 struct btrfs_root *root)
479{
480 if (!trans || !trans->transaction) {
481 struct inode *btree_inode;
482 btree_inode = root->fs_info->btree_inode;
483 return filemap_write_and_wait(btree_inode->i_mapping);
484 }
485 return btrfs_write_and_wait_marked_extents(root,
8cef4e16
YZ
486 &trans->transaction->dirty_pages,
487 EXTENT_DIRTY);
d0c803c4
CM
488}
489
d352ac68
CM
490/*
491 * this is used to update the root pointer in the tree of tree roots.
492 *
493 * But, in the case of the extent allocation tree, updating the root
494 * pointer may allocate blocks which may change the root of the extent
495 * allocation tree.
496 *
497 * So, this loops and repeats and makes sure the cowonly root didn't
498 * change while the root pointer was being updated in the metadata.
499 */
0b86a832
CM
500static int update_cowonly_root(struct btrfs_trans_handle *trans,
501 struct btrfs_root *root)
79154b1b
CM
502{
503 int ret;
0b86a832 504 u64 old_root_bytenr;
86b9f2ec 505 u64 old_root_used;
0b86a832 506 struct btrfs_root *tree_root = root->fs_info->tree_root;
79154b1b 507
86b9f2ec 508 old_root_used = btrfs_root_used(&root->root_item);
0b86a832 509 btrfs_write_dirty_block_groups(trans, root);
56bec294 510
d397712b 511 while (1) {
0b86a832 512 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
86b9f2ec
YZ
513 if (old_root_bytenr == root->node->start &&
514 old_root_used == btrfs_root_used(&root->root_item))
79154b1b 515 break;
87ef2bb4 516
5d4f98a2 517 btrfs_set_root_node(&root->root_item, root->node);
79154b1b 518 ret = btrfs_update_root(trans, tree_root,
0b86a832
CM
519 &root->root_key,
520 &root->root_item);
79154b1b 521 BUG_ON(ret);
56bec294 522
86b9f2ec 523 old_root_used = btrfs_root_used(&root->root_item);
4a8c9a62 524 ret = btrfs_write_dirty_block_groups(trans, root);
56bec294 525 BUG_ON(ret);
0b86a832 526 }
276e680d
YZ
527
528 if (root != root->fs_info->extent_root)
529 switch_commit_root(root);
530
0b86a832
CM
531 return 0;
532}
533
d352ac68
CM
534/*
535 * update all the cowonly tree roots on disk
536 */
5d4f98a2
YZ
537static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
538 struct btrfs_root *root)
0b86a832
CM
539{
540 struct btrfs_fs_info *fs_info = root->fs_info;
541 struct list_head *next;
84234f3a 542 struct extent_buffer *eb;
56bec294 543 int ret;
84234f3a 544
56bec294
CM
545 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
546 BUG_ON(ret);
87ef2bb4 547
84234f3a 548 eb = btrfs_lock_root_node(fs_info->tree_root);
9fa8cfe7 549 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
84234f3a
YZ
550 btrfs_tree_unlock(eb);
551 free_extent_buffer(eb);
0b86a832 552
56bec294
CM
553 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
554 BUG_ON(ret);
87ef2bb4 555
d397712b 556 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
0b86a832
CM
557 next = fs_info->dirty_cowonly_roots.next;
558 list_del_init(next);
559 root = list_entry(next, struct btrfs_root, dirty_list);
87ef2bb4 560
0b86a832 561 update_cowonly_root(trans, root);
79154b1b 562 }
276e680d
YZ
563
564 down_write(&fs_info->extent_commit_sem);
565 switch_commit_root(fs_info->extent_root);
566 up_write(&fs_info->extent_commit_sem);
567
79154b1b
CM
568 return 0;
569}
570
d352ac68
CM
571/*
572 * dead roots are old snapshots that need to be deleted. This allocates
573 * a dirty root struct and adds it into the list of dead roots that need to
574 * be deleted
575 */
5d4f98a2 576int btrfs_add_dead_root(struct btrfs_root *root)
5eda7b5e 577{
b48652c1 578 mutex_lock(&root->fs_info->trans_mutex);
5d4f98a2 579 list_add(&root->root_list, &root->fs_info->dead_roots);
b48652c1 580 mutex_unlock(&root->fs_info->trans_mutex);
5eda7b5e
CM
581 return 0;
582}
583
d352ac68 584/*
5d4f98a2 585 * update all the cowonly tree roots on disk
d352ac68 586 */
5d4f98a2
YZ
587static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
588 struct btrfs_root *root)
0f7d52f4 589{
0f7d52f4 590 struct btrfs_root *gang[8];
5d4f98a2 591 struct btrfs_fs_info *fs_info = root->fs_info;
0f7d52f4
CM
592 int i;
593 int ret;
54aa1f4d
CM
594 int err = 0;
595
d397712b 596 while (1) {
5d4f98a2
YZ
597 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
598 (void **)gang, 0,
0f7d52f4
CM
599 ARRAY_SIZE(gang),
600 BTRFS_ROOT_TRANS_TAG);
601 if (ret == 0)
602 break;
603 for (i = 0; i < ret; i++) {
604 root = gang[i];
5d4f98a2
YZ
605 radix_tree_tag_clear(&fs_info->fs_roots_radix,
606 (unsigned long)root->root_key.objectid,
607 BTRFS_ROOT_TRANS_TAG);
31153d81 608
e02119d5 609 btrfs_free_log(trans, root);
5d4f98a2 610 btrfs_update_reloc_root(trans, root);
bcc63abb 611
978d910d 612 if (root->commit_root != root->node) {
817d52f8 613 switch_commit_root(root);
978d910d
YZ
614 btrfs_set_root_node(&root->root_item,
615 root->node);
616 }
5d4f98a2 617
5d4f98a2 618 err = btrfs_update_root(trans, fs_info->tree_root,
0f7d52f4
CM
619 &root->root_key,
620 &root->root_item);
54aa1f4d
CM
621 if (err)
622 break;
0f7d52f4
CM
623 }
624 }
54aa1f4d 625 return err;
0f7d52f4
CM
626}
627
d352ac68
CM
628/*
629 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
630 * otherwise every leaf in the btree is read and defragged.
631 */
e9d0b13b
CM
632int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
633{
634 struct btrfs_fs_info *info = root->fs_info;
635 int ret;
636 struct btrfs_trans_handle *trans;
d3c2fdcf 637 unsigned long nr;
e9d0b13b 638
a2135011 639 smp_mb();
e9d0b13b
CM
640 if (root->defrag_running)
641 return 0;
e9d0b13b 642 trans = btrfs_start_transaction(root, 1);
6b80053d 643 while (1) {
e9d0b13b
CM
644 root->defrag_running = 1;
645 ret = btrfs_defrag_leaves(trans, root, cacheonly);
d3c2fdcf 646 nr = trans->blocks_used;
e9d0b13b 647 btrfs_end_transaction(trans, root);
d3c2fdcf 648 btrfs_btree_balance_dirty(info->tree_root, nr);
e9d0b13b
CM
649 cond_resched();
650
e9d0b13b 651 trans = btrfs_start_transaction(root, 1);
3f157a2f 652 if (root->fs_info->closing || ret != -EAGAIN)
e9d0b13b
CM
653 break;
654 }
655 root->defrag_running = 0;
a2135011 656 smp_mb();
e9d0b13b
CM
657 btrfs_end_transaction(trans, root);
658 return 0;
659}
660
2c47e605 661#if 0
b7ec40d7
CM
662/*
663 * when dropping snapshots, we generate a ton of delayed refs, and it makes
664 * sense not to join the transaction while it is trying to flush the current
665 * queue of delayed refs out.
666 *
667 * This is used by the drop snapshot code only
668 */
669static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
670{
671 DEFINE_WAIT(wait);
672
673 mutex_lock(&info->trans_mutex);
674 while (info->running_transaction &&
675 info->running_transaction->delayed_refs.flushing) {
676 prepare_to_wait(&info->transaction_wait, &wait,
677 TASK_UNINTERRUPTIBLE);
678 mutex_unlock(&info->trans_mutex);
59bc5c75 679
b7ec40d7 680 schedule();
59bc5c75 681
b7ec40d7
CM
682 mutex_lock(&info->trans_mutex);
683 finish_wait(&info->transaction_wait, &wait);
684 }
685 mutex_unlock(&info->trans_mutex);
686 return 0;
687}
688
d352ac68
CM
689/*
690 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
691 * all of them
692 */
5d4f98a2 693int btrfs_drop_dead_root(struct btrfs_root *root)
0f7d52f4 694{
0f7d52f4 695 struct btrfs_trans_handle *trans;
5d4f98a2 696 struct btrfs_root *tree_root = root->fs_info->tree_root;
d3c2fdcf 697 unsigned long nr;
5d4f98a2 698 int ret;
58176a96 699
5d4f98a2
YZ
700 while (1) {
701 /*
702 * we don't want to jump in and create a bunch of
703 * delayed refs if the transaction is starting to close
704 */
705 wait_transaction_pre_flush(tree_root->fs_info);
706 trans = btrfs_start_transaction(tree_root, 1);
a2135011 707
5d4f98a2
YZ
708 /*
709 * we've joined a transaction, make sure it isn't
710 * closing right now
711 */
712 if (trans->transaction->delayed_refs.flushing) {
713 btrfs_end_transaction(trans, tree_root);
714 continue;
9f3a7427 715 }
58176a96 716
5d4f98a2
YZ
717 ret = btrfs_drop_snapshot(trans, root);
718 if (ret != -EAGAIN)
719 break;
a2135011 720
5d4f98a2
YZ
721 ret = btrfs_update_root(trans, tree_root,
722 &root->root_key,
723 &root->root_item);
724 if (ret)
54aa1f4d 725 break;
bcc63abb 726
d3c2fdcf 727 nr = trans->blocks_used;
0f7d52f4
CM
728 ret = btrfs_end_transaction(trans, tree_root);
729 BUG_ON(ret);
5eda7b5e 730
d3c2fdcf 731 btrfs_btree_balance_dirty(tree_root, nr);
4dc11904 732 cond_resched();
0f7d52f4 733 }
5d4f98a2
YZ
734 BUG_ON(ret);
735
736 ret = btrfs_del_root(trans, tree_root, &root->root_key);
737 BUG_ON(ret);
738
739 nr = trans->blocks_used;
740 ret = btrfs_end_transaction(trans, tree_root);
741 BUG_ON(ret);
742
743 free_extent_buffer(root->node);
744 free_extent_buffer(root->commit_root);
745 kfree(root);
746
747 btrfs_btree_balance_dirty(tree_root, nr);
54aa1f4d 748 return ret;
0f7d52f4 749}
2c47e605 750#endif
0f7d52f4 751
d352ac68
CM
752/*
753 * new snapshots need to be created at a very specific time in the
754 * transaction commit. This does the actual creation
755 */
80b6794d 756static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
3063d29f
CM
757 struct btrfs_fs_info *fs_info,
758 struct btrfs_pending_snapshot *pending)
759{
760 struct btrfs_key key;
80b6794d 761 struct btrfs_root_item *new_root_item;
3063d29f
CM
762 struct btrfs_root *tree_root = fs_info->tree_root;
763 struct btrfs_root *root = pending->root;
764 struct extent_buffer *tmp;
925baedd 765 struct extent_buffer *old;
3063d29f
CM
766 int ret;
767 u64 objectid;
768
80b6794d
CM
769 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
770 if (!new_root_item) {
771 ret = -ENOMEM;
772 goto fail;
773 }
3063d29f
CM
774 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
775 if (ret)
776 goto fail;
777
5d4f98a2 778 record_root_in_trans(trans, root);
80ff3856 779 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
80b6794d 780 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
3063d29f
CM
781
782 key.objectid = objectid;
1c4850e2
YZ
783 /* record when the snapshot was created in key.offset */
784 key.offset = trans->transid;
3063d29f
CM
785 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
786
925baedd 787 old = btrfs_lock_root_node(root);
9fa8cfe7 788 btrfs_cow_block(trans, root, old, NULL, 0, &old);
5d4f98a2 789 btrfs_set_lock_blocking(old);
3063d29f 790
925baedd
CM
791 btrfs_copy_root(trans, root, old, &tmp, objectid);
792 btrfs_tree_unlock(old);
793 free_extent_buffer(old);
3063d29f 794
5d4f98a2 795 btrfs_set_root_node(new_root_item, tmp);
3063d29f 796 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
80b6794d 797 new_root_item);
925baedd 798 btrfs_tree_unlock(tmp);
3063d29f
CM
799 free_extent_buffer(tmp);
800 if (ret)
801 goto fail;
802
3de4586c
CM
803 key.offset = (u64)-1;
804 memcpy(&pending->root_key, &key, sizeof(key));
805fail:
806 kfree(new_root_item);
807 return ret;
808}
809
810static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
811 struct btrfs_pending_snapshot *pending)
812{
813 int ret;
814 int namelen;
815 u64 index = 0;
816 struct btrfs_trans_handle *trans;
817 struct inode *parent_inode;
0660b5af 818 struct btrfs_root *parent_root;
3de4586c 819
3394e160 820 parent_inode = pending->dentry->d_parent->d_inode;
0660b5af 821 parent_root = BTRFS_I(parent_inode)->root;
180591bc 822 trans = btrfs_join_transaction(parent_root, 1);
3de4586c 823
3063d29f
CM
824 /*
825 * insert the directory item
826 */
3b96362c 827 namelen = strlen(pending->name);
3de4586c 828 ret = btrfs_set_inode_index(parent_inode, &index);
0660b5af 829 ret = btrfs_insert_dir_item(trans, parent_root,
3de4586c
CM
830 pending->name, namelen,
831 parent_inode->i_ino,
832 &pending->root_key, BTRFS_FT_DIR, index);
3063d29f
CM
833
834 if (ret)
835 goto fail;
0660b5af 836
52c26179
YZ
837 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
838 ret = btrfs_update_inode(trans, parent_root, parent_inode);
839 BUG_ON(ret);
840
0660b5af
CM
841 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
842 pending->root_key.objectid,
0660b5af
CM
843 parent_root->root_key.objectid,
844 parent_inode->i_ino, index, pending->name,
845 namelen);
846
847 BUG_ON(ret);
848
3063d29f 849fail:
3de4586c 850 btrfs_end_transaction(trans, fs_info->fs_root);
3063d29f
CM
851 return ret;
852}
853
d352ac68
CM
854/*
855 * create all the snapshots we've scheduled for creation
856 */
80b6794d
CM
857static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
858 struct btrfs_fs_info *fs_info)
3de4586c
CM
859{
860 struct btrfs_pending_snapshot *pending;
861 struct list_head *head = &trans->transaction->pending_snapshots;
3de4586c
CM
862 int ret;
863
c6e30871 864 list_for_each_entry(pending, head, list) {
3de4586c
CM
865 ret = create_pending_snapshot(trans, fs_info, pending);
866 BUG_ON(ret);
867 }
868 return 0;
869}
870
871static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
872 struct btrfs_fs_info *fs_info)
3063d29f
CM
873{
874 struct btrfs_pending_snapshot *pending;
875 struct list_head *head = &trans->transaction->pending_snapshots;
876 int ret;
877
d397712b 878 while (!list_empty(head)) {
3063d29f
CM
879 pending = list_entry(head->next,
880 struct btrfs_pending_snapshot, list);
3de4586c 881 ret = finish_pending_snapshot(fs_info, pending);
3063d29f
CM
882 BUG_ON(ret);
883 list_del(&pending->list);
884 kfree(pending->name);
885 kfree(pending);
886 }
dc17ff8f
CM
887 return 0;
888}
889
5d4f98a2
YZ
890static void update_super_roots(struct btrfs_root *root)
891{
892 struct btrfs_root_item *root_item;
893 struct btrfs_super_block *super;
894
895 super = &root->fs_info->super_copy;
896
897 root_item = &root->fs_info->chunk_root->root_item;
898 super->chunk_root = root_item->bytenr;
899 super->chunk_root_generation = root_item->generation;
900 super->chunk_root_level = root_item->level;
901
902 root_item = &root->fs_info->tree_root->root_item;
903 super->root = root_item->bytenr;
904 super->generation = root_item->generation;
905 super->root_level = root_item->level;
906}
907
f36f3042
CM
908int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
909{
910 int ret = 0;
911 spin_lock(&info->new_trans_lock);
912 if (info->running_transaction)
913 ret = info->running_transaction->in_commit;
914 spin_unlock(&info->new_trans_lock);
915 return ret;
916}
917
79154b1b
CM
918int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
919 struct btrfs_root *root)
920{
15ee9bc7
JB
921 unsigned long joined = 0;
922 unsigned long timeout = 1;
79154b1b 923 struct btrfs_transaction *cur_trans;
8fd17795 924 struct btrfs_transaction *prev_trans = NULL;
79154b1b 925 DEFINE_WAIT(wait);
15ee9bc7 926 int ret;
89573b9c
CM
927 int should_grow = 0;
928 unsigned long now = get_seconds();
dccae999 929 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
79154b1b 930
5a3f23d5
CM
931 btrfs_run_ordered_operations(root, 0);
932
56bec294
CM
933 /* make a pass through all the delayed refs we have so far
934 * any runnings procs may add more while we are here
935 */
936 ret = btrfs_run_delayed_refs(trans, root, 0);
937 BUG_ON(ret);
938
b7ec40d7 939 cur_trans = trans->transaction;
56bec294
CM
940 /*
941 * set the flushing flag so procs in this transaction have to
942 * start sending their work down.
943 */
b7ec40d7 944 cur_trans->delayed_refs.flushing = 1;
56bec294 945
c3e69d58 946 ret = btrfs_run_delayed_refs(trans, root, 0);
56bec294
CM
947 BUG_ON(ret);
948
79154b1b 949 mutex_lock(&root->fs_info->trans_mutex);
b7ec40d7
CM
950 if (cur_trans->in_commit) {
951 cur_trans->use_count++;
ccd467d6 952 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b 953 btrfs_end_transaction(trans, root);
ccd467d6 954
79154b1b
CM
955 ret = wait_for_commit(root, cur_trans);
956 BUG_ON(ret);
15ee9bc7
JB
957
958 mutex_lock(&root->fs_info->trans_mutex);
79154b1b 959 put_transaction(cur_trans);
15ee9bc7
JB
960 mutex_unlock(&root->fs_info->trans_mutex);
961
79154b1b
CM
962 return 0;
963 }
4313b399 964
2c90e5d6 965 trans->transaction->in_commit = 1;
f9295749 966 trans->transaction->blocked = 1;
ccd467d6
CM
967 if (cur_trans->list.prev != &root->fs_info->trans_list) {
968 prev_trans = list_entry(cur_trans->list.prev,
969 struct btrfs_transaction, list);
970 if (!prev_trans->commit_done) {
971 prev_trans->use_count++;
ccd467d6
CM
972 mutex_unlock(&root->fs_info->trans_mutex);
973
974 wait_for_commit(root, prev_trans);
ccd467d6 975
ccd467d6 976 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7 977 put_transaction(prev_trans);
ccd467d6
CM
978 }
979 }
15ee9bc7 980
89573b9c
CM
981 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
982 should_grow = 1;
983
15ee9bc7 984 do {
7ea394f1 985 int snap_pending = 0;
15ee9bc7 986 joined = cur_trans->num_joined;
7ea394f1
YZ
987 if (!list_empty(&trans->transaction->pending_snapshots))
988 snap_pending = 1;
989
2c90e5d6 990 WARN_ON(cur_trans != trans->transaction);
15ee9bc7 991 prepare_to_wait(&cur_trans->writer_wait, &wait,
79154b1b 992 TASK_UNINTERRUPTIBLE);
15ee9bc7
JB
993
994 if (cur_trans->num_writers > 1)
995 timeout = MAX_SCHEDULE_TIMEOUT;
89573b9c 996 else if (should_grow)
15ee9bc7
JB
997 timeout = 1;
998
79154b1b 999 mutex_unlock(&root->fs_info->trans_mutex);
15ee9bc7 1000
0bdb1db2 1001 if (flush_on_commit || snap_pending) {
24bbcf04
YZ
1002 btrfs_start_delalloc_inodes(root, 1);
1003 ret = btrfs_wait_ordered_extents(root, 0, 1);
ebecd3d9 1004 BUG_ON(ret);
7ea394f1
YZ
1005 }
1006
5a3f23d5
CM
1007 /*
1008 * rename don't use btrfs_join_transaction, so, once we
1009 * set the transaction to blocked above, we aren't going
1010 * to get any new ordered operations. We can safely run
1011 * it here and no for sure that nothing new will be added
1012 * to the list
1013 */
1014 btrfs_run_ordered_operations(root, 1);
1015
89573b9c
CM
1016 smp_mb();
1017 if (cur_trans->num_writers > 1 || should_grow)
1018 schedule_timeout(timeout);
15ee9bc7 1019
79154b1b 1020 mutex_lock(&root->fs_info->trans_mutex);
15ee9bc7
JB
1021 finish_wait(&cur_trans->writer_wait, &wait);
1022 } while (cur_trans->num_writers > 1 ||
89573b9c 1023 (should_grow && cur_trans->num_joined != joined));
15ee9bc7 1024
3063d29f
CM
1025 ret = create_pending_snapshots(trans, root->fs_info);
1026 BUG_ON(ret);
1027
56bec294
CM
1028 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1029 BUG_ON(ret);
1030
2c90e5d6 1031 WARN_ON(cur_trans != trans->transaction);
dc17ff8f 1032
e02119d5
CM
1033 /* btrfs_commit_tree_roots is responsible for getting the
1034 * various roots consistent with each other. Every pointer
1035 * in the tree of tree roots has to point to the most up to date
1036 * root for every subvolume and other tree. So, we have to keep
1037 * the tree logging code from jumping in and changing any
1038 * of the trees.
1039 *
1040 * At this point in the commit, there can't be any tree-log
1041 * writers, but a little lower down we drop the trans mutex
1042 * and let new people in. By holding the tree_log_mutex
1043 * from now until after the super is written, we avoid races
1044 * with the tree-log code.
1045 */
1046 mutex_lock(&root->fs_info->tree_log_mutex);
1047
5d4f98a2 1048 ret = commit_fs_roots(trans, root);
54aa1f4d
CM
1049 BUG_ON(ret);
1050
5d4f98a2 1051 /* commit_fs_roots gets rid of all the tree log roots, it is now
e02119d5
CM
1052 * safe to free the root of tree log roots
1053 */
1054 btrfs_free_log_root_tree(trans, root->fs_info);
1055
5d4f98a2 1056 ret = commit_cowonly_roots(trans, root);
79154b1b 1057 BUG_ON(ret);
54aa1f4d 1058
11833d66
YZ
1059 btrfs_prepare_extent_commit(trans, root);
1060
78fae27e 1061 cur_trans = root->fs_info->running_transaction;
cee36a03 1062 spin_lock(&root->fs_info->new_trans_lock);
78fae27e 1063 root->fs_info->running_transaction = NULL;
cee36a03 1064 spin_unlock(&root->fs_info->new_trans_lock);
5d4f98a2
YZ
1065
1066 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1067 root->fs_info->tree_root->node);
817d52f8 1068 switch_commit_root(root->fs_info->tree_root);
5d4f98a2
YZ
1069
1070 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1071 root->fs_info->chunk_root->node);
817d52f8 1072 switch_commit_root(root->fs_info->chunk_root);
5d4f98a2
YZ
1073
1074 update_super_roots(root);
e02119d5
CM
1075
1076 if (!root->fs_info->log_root_recovering) {
1077 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1078 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1079 }
1080
a061fc8d
CM
1081 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1082 sizeof(root->fs_info->super_copy));
ccd467d6 1083
f9295749 1084 trans->transaction->blocked = 0;
b7ec40d7 1085
f9295749 1086 wake_up(&root->fs_info->transaction_wait);
e6dcd2dc 1087
78fae27e 1088 mutex_unlock(&root->fs_info->trans_mutex);
79154b1b
CM
1089 ret = btrfs_write_and_wait_transaction(trans, root);
1090 BUG_ON(ret);
a512bbf8 1091 write_ctree_super(trans, root, 0);
4313b399 1092
e02119d5
CM
1093 /*
1094 * the super is written, we can safely allow the tree-loggers
1095 * to go about their business
1096 */
1097 mutex_unlock(&root->fs_info->tree_log_mutex);
1098
11833d66 1099 btrfs_finish_extent_commit(trans, root);
4313b399 1100
3de4586c
CM
1101 /* do the directory inserts of any pending snapshot creations */
1102 finish_pending_snapshots(trans, root->fs_info);
1103
1a40e23b
ZY
1104 mutex_lock(&root->fs_info->trans_mutex);
1105
2c90e5d6 1106 cur_trans->commit_done = 1;
b7ec40d7 1107
15ee9bc7 1108 root->fs_info->last_trans_committed = cur_trans->transid;
817d52f8 1109
2c90e5d6 1110 wake_up(&cur_trans->commit_wait);
3de4586c 1111
78fae27e 1112 put_transaction(cur_trans);
79154b1b 1113 put_transaction(cur_trans);
58176a96 1114
78fae27e 1115 mutex_unlock(&root->fs_info->trans_mutex);
3de4586c 1116
9ed74f2d
JB
1117 if (current->journal_info == trans)
1118 current->journal_info = NULL;
1119
2c90e5d6 1120 kmem_cache_free(btrfs_trans_handle_cachep, trans);
24bbcf04
YZ
1121
1122 if (current != root->fs_info->transaction_kthread)
1123 btrfs_run_delayed_iputs(root);
1124
79154b1b
CM
1125 return ret;
1126}
1127
d352ac68
CM
1128/*
1129 * interface function to delete all the snapshots we have scheduled for deletion
1130 */
e9d0b13b
CM
1131int btrfs_clean_old_snapshots(struct btrfs_root *root)
1132{
5d4f98a2
YZ
1133 LIST_HEAD(list);
1134 struct btrfs_fs_info *fs_info = root->fs_info;
1135
1136 mutex_lock(&fs_info->trans_mutex);
1137 list_splice_init(&fs_info->dead_roots, &list);
1138 mutex_unlock(&fs_info->trans_mutex);
e9d0b13b 1139
5d4f98a2
YZ
1140 while (!list_empty(&list)) {
1141 root = list_entry(list.next, struct btrfs_root, root_list);
76dda93c
YZ
1142 list_del(&root->root_list);
1143
1144 if (btrfs_header_backref_rev(root->node) <
1145 BTRFS_MIXED_BACKREF_REV)
1146 btrfs_drop_snapshot(root, 0);
1147 else
1148 btrfs_drop_snapshot(root, 1);
e9d0b13b
CM
1149 }
1150 return 0;
1151}