transaction.c 29.7 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

C
Chris Mason 已提交
19
#include <linux/fs.h>
C
Chris Mason 已提交
20
#include <linux/sched.h>
21
#include <linux/writeback.h>
22
#include <linux/pagemap.h>
23
#include <linux/blkdev.h>
C
Chris Mason 已提交
24 25 26
#include "ctree.h"
#include "disk-io.h"
#include "transaction.h"
27
#include "locking.h"
Y
Yan Zheng 已提交
28
#include "ref-cache.h"
29
#include "tree-log.h"
C
Chris Mason 已提交
30

31 32
#define BTRFS_ROOT_TRANS_TAG 0

33
static noinline void put_transaction(struct btrfs_transaction *transaction)
C
Chris Mason 已提交
34
{
C
Chris Mason 已提交
35
	WARN_ON(transaction->use_count == 0);
C
Chris Mason 已提交
36
	transaction->use_count--;
C
Chris Mason 已提交
37
	if (transaction->use_count == 0) {
C
Chris Mason 已提交
38
		list_del_init(&transaction->list);
C
Chris Mason 已提交
39 40
		memset(transaction, 0, sizeof(*transaction));
		kmem_cache_free(btrfs_transaction_cachep, transaction);
C
Chris Mason 已提交
41
	}
C
Chris Mason 已提交
42 43
}

C
Chris Mason 已提交
44 45 46
/*
 * either allocate a new transaction or hop into the existing one
 */
47
static noinline int join_transaction(struct btrfs_root *root)
C
Chris Mason 已提交
48 49 50 51
{
	struct btrfs_transaction *cur_trans;
	cur_trans = root->fs_info->running_transaction;
	if (!cur_trans) {
C
Chris Mason 已提交
52 53
		cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
					     GFP_NOFS);
C
Chris Mason 已提交
54
		BUG_ON(!cur_trans);
55
		root->fs_info->generation++;
56
		root->fs_info->last_alloc = 0;
57
		root->fs_info->last_data_alloc = 0;
58 59
		cur_trans->num_writers = 1;
		cur_trans->num_joined = 0;
60
		cur_trans->transid = root->fs_info->generation;
C
Chris Mason 已提交
61 62 63
		init_waitqueue_head(&cur_trans->writer_wait);
		init_waitqueue_head(&cur_trans->commit_wait);
		cur_trans->in_commit = 0;
64
		cur_trans->blocked = 0;
65
		cur_trans->use_count = 1;
C
Chris Mason 已提交
66
		cur_trans->commit_done = 0;
C
Chris Mason 已提交
67
		cur_trans->start_time = get_seconds();
68
		INIT_LIST_HEAD(&cur_trans->pending_snapshots);
C
Chris Mason 已提交
69
		list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
70
		extent_io_tree_init(&cur_trans->dirty_pages,
71 72
				     root->fs_info->btree_inode->i_mapping,
				     GFP_NOFS);
73 74 75
		spin_lock(&root->fs_info->new_trans_lock);
		root->fs_info->running_transaction = cur_trans;
		spin_unlock(&root->fs_info->new_trans_lock);
76 77 78
	} else {
		cur_trans->num_writers++;
		cur_trans->num_joined++;
C
Chris Mason 已提交
79
	}
80

C
Chris Mason 已提交
81 82 83
	return 0;
}

C
Chris Mason 已提交
84
/*
C
Chris Mason 已提交
85 86 87 88
 * this does all the record keeping required to make sure that a reference
 * counted root is properly recorded in a given transaction.  This is required
 * to make sure the old root from before we joined the transaction is deleted
 * when the transaction commits
C
Chris Mason 已提交
89
 */
90
noinline int btrfs_record_root_in_trans(struct btrfs_root *root)
91
{
92
	struct btrfs_dirty_root *dirty;
93 94 95 96 97 98 99
	u64 running_trans_id = root->fs_info->running_transaction->transid;
	if (root->ref_cows && root->last_trans < running_trans_id) {
		WARN_ON(root == root->fs_info->extent_root);
		if (root->root_item.refs != 0) {
			radix_tree_tag_set(&root->fs_info->fs_roots_radix,
				   (unsigned long)root->root_key.objectid,
				   BTRFS_ROOT_TRANS_TAG);
Y
Yan Zheng 已提交
100 101 102 103 104 105 106 107

			dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
			BUG_ON(!dirty);
			dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
			BUG_ON(!dirty->root);
			dirty->latest_root = root;
			INIT_LIST_HEAD(&dirty->list);

108
			root->commit_root = btrfs_root_node(root);
Y
Yan Zheng 已提交
109 110 111

			memcpy(dirty->root, root, sizeof(*root));
			spin_lock_init(&dirty->root->node_lock);
112
			spin_lock_init(&dirty->root->list_lock);
Y
Yan Zheng 已提交
113
			mutex_init(&dirty->root->objectid_mutex);
114
			mutex_init(&dirty->root->log_mutex);
115
			INIT_LIST_HEAD(&dirty->root->dead_list);
Y
Yan Zheng 已提交
116 117
			dirty->root->node = root->commit_root;
			dirty->root->commit_root = NULL;
118 119 120 121 122 123

			spin_lock(&root->list_lock);
			list_add(&dirty->root->dead_list, &root->dead_list);
			spin_unlock(&root->list_lock);

			root->dirty_root = dirty;
124 125 126 127 128 129 130 131
		} else {
			WARN_ON(1);
		}
		root->last_trans = running_trans_id;
	}
	return 0;
}

C
Chris Mason 已提交
132 133 134 135
/* wait for commit against the current transaction to become unblocked
 * when this is done, it is safe to start a new transaction, but the current
 * transaction might not be fully on disk.
 */
C
Chris Mason 已提交
136
static void wait_current_trans(struct btrfs_root *root)
C
Chris Mason 已提交
137
{
138
	struct btrfs_transaction *cur_trans;
C
Chris Mason 已提交
139

140
	cur_trans = root->fs_info->running_transaction;
C
Chris Mason 已提交
141
	if (cur_trans && cur_trans->blocked) {
142 143
		DEFINE_WAIT(wait);
		cur_trans->use_count++;
C
Chris Mason 已提交
144
		while (1) {
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
			prepare_to_wait(&root->fs_info->transaction_wait, &wait,
					TASK_UNINTERRUPTIBLE);
			if (cur_trans->blocked) {
				mutex_unlock(&root->fs_info->trans_mutex);
				schedule();
				mutex_lock(&root->fs_info->trans_mutex);
				finish_wait(&root->fs_info->transaction_wait,
					    &wait);
			} else {
				finish_wait(&root->fs_info->transaction_wait,
					    &wait);
				break;
			}
		}
		put_transaction(cur_trans);
	}
C
Chris Mason 已提交
161 162
}

163
static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
164
					     int num_blocks, int wait)
C
Chris Mason 已提交
165 166 167 168 169 170
{
	struct btrfs_trans_handle *h =
		kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
	int ret;

	mutex_lock(&root->fs_info->trans_mutex);
C
Chris Mason 已提交
171 172
	if (!root->fs_info->log_root_recovering &&
	    ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
C
Chris Mason 已提交
173
		wait_current_trans(root);
C
Chris Mason 已提交
174 175
	ret = join_transaction(root);
	BUG_ON(ret);
176

177
	btrfs_record_root_in_trans(root);
178
	h->transid = root->fs_info->running_transaction->transid;
C
Chris Mason 已提交
179 180 181
	h->transaction = root->fs_info->running_transaction;
	h->blocks_reserved = num_blocks;
	h->blocks_used = 0;
182
	h->block_group = 0;
183 184
	h->alloc_exclude_nr = 0;
	h->alloc_exclude_start = 0;
C
Chris Mason 已提交
185 186 187 188 189
	root->fs_info->running_transaction->use_count++;
	mutex_unlock(&root->fs_info->trans_mutex);
	return h;
}

190 191 192
struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
						   int num_blocks)
{
193
	return start_transaction(root, num_blocks, 1);
194 195 196 197
}
struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
						   int num_blocks)
{
198
	return start_transaction(root, num_blocks, 0);
199 200
}

201 202 203 204 205 206
struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
							 int num_blocks)
{
	return start_transaction(r, num_blocks, 2);
}

C
Chris Mason 已提交
207
/* wait for a transaction commit to be fully complete */
208 209 210 211 212
static noinline int wait_for_commit(struct btrfs_root *root,
				    struct btrfs_transaction *commit)
{
	DEFINE_WAIT(wait);
	mutex_lock(&root->fs_info->trans_mutex);
C
Chris Mason 已提交
213
	while (!commit->commit_done) {
214 215 216 217 218 219 220 221 222 223 224 225 226
		prepare_to_wait(&commit->commit_wait, &wait,
				TASK_UNINTERRUPTIBLE);
		if (commit->commit_done)
			break;
		mutex_unlock(&root->fs_info->trans_mutex);
		schedule();
		mutex_lock(&root->fs_info->trans_mutex);
	}
	mutex_unlock(&root->fs_info->trans_mutex);
	finish_wait(&commit->commit_wait, &wait);
	return 0;
}

C
Chris Mason 已提交
227
/*
C
Chris Mason 已提交
228 229
 * rate limit against the drop_snapshot code.  This helps to slow down new
 * operations if the drop_snapshot code isn't able to keep up.
C
Chris Mason 已提交
230
 */
C
Chris Mason 已提交
231
static void throttle_on_drops(struct btrfs_root *root)
232 233
{
	struct btrfs_fs_info *info = root->fs_info;
C
Chris Mason 已提交
234
	int harder_count = 0;
235

C
Chris Mason 已提交
236
harder:
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
	if (atomic_read(&info->throttles)) {
		DEFINE_WAIT(wait);
		int thr;
		thr = atomic_read(&info->throttle_gen);

		do {
			prepare_to_wait(&info->transaction_throttle,
					&wait, TASK_UNINTERRUPTIBLE);
			if (!atomic_read(&info->throttles)) {
				finish_wait(&info->transaction_throttle, &wait);
				break;
			}
			schedule();
			finish_wait(&info->transaction_throttle, &wait);
		} while (thr == atomic_read(&info->throttle_gen));
C
Chris Mason 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264
		harder_count++;

		if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
		    harder_count < 2)
			goto harder;

		if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
		    harder_count < 10)
			goto harder;

		if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
		    harder_count < 20)
			goto harder;
265 266 267
	}
}

C
Chris Mason 已提交
268 269 270
void btrfs_throttle(struct btrfs_root *root)
{
	mutex_lock(&root->fs_info->trans_mutex);
271 272
	if (!root->fs_info->open_ioctl_trans)
		wait_current_trans(root);
C
Chris Mason 已提交
273 274 275 276 277
	mutex_unlock(&root->fs_info->trans_mutex);

	throttle_on_drops(root);
}

278 279
static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root, int throttle)
C
Chris Mason 已提交
280 281
{
	struct btrfs_transaction *cur_trans;
282
	struct btrfs_fs_info *info = root->fs_info;
283

284 285
	mutex_lock(&info->trans_mutex);
	cur_trans = info->running_transaction;
C
Chris Mason 已提交
286
	WARN_ON(cur_trans != trans->transaction);
287
	WARN_ON(cur_trans->num_writers < 1);
C
Chris Mason 已提交
288
	cur_trans->num_writers--;
289

C
Chris Mason 已提交
290 291 292
	if (waitqueue_active(&cur_trans->writer_wait))
		wake_up(&cur_trans->writer_wait);
	put_transaction(cur_trans);
293
	mutex_unlock(&info->trans_mutex);
C
Chris Mason 已提交
294
	memset(trans, 0, sizeof(*trans));
C
Chris Mason 已提交
295
	kmem_cache_free(btrfs_trans_handle_cachep, trans);
296 297

	if (throttle)
C
Chris Mason 已提交
298
		throttle_on_drops(root);
299

C
Chris Mason 已提交
300 301 302
	return 0;
}

303 304 305 306 307 308 309 310 311 312 313 314
int btrfs_end_transaction(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root)
{
	return __btrfs_end_transaction(trans, root, 0);
}

int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
				   struct btrfs_root *root)
{
	return __btrfs_end_transaction(trans, root, 1);
}

C
Chris Mason 已提交
315 316 317 318 319
/*
 * when btree blocks are allocated, they have some corresponding bits set for
 * them in one of two extent_io trees.  This is used to make sure all of
 * those extents are on disk for transaction or log commit
 */
320 321
int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
					struct extent_io_tree *dirty_pages)
C
Chris Mason 已提交
322
{
323
	int ret;
324
	int err = 0;
325 326 327
	int werr = 0;
	struct page *page;
	struct inode *btree_inode = root->fs_info->btree_inode;
328
	u64 start = 0;
329 330
	u64 end;
	unsigned long index;
331

C
Chris Mason 已提交
332
	while (1) {
333
		ret = find_first_extent_bit(dirty_pages, start, &start, &end,
334 335
					    EXTENT_DIRTY);
		if (ret)
336
			break;
C
Chris Mason 已提交
337
		while (start <= end) {
338 339
			cond_resched();

340
			index = start >> PAGE_CACHE_SHIFT;
341
			start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
C
Chris Mason 已提交
342
			page = find_get_page(btree_inode->i_mapping, index);
343 344
			if (!page)
				continue;
C
Chris Mason 已提交
345 346 347 348 349 350 351 352

			btree_lock_page_hook(page);
			if (!page->mapping) {
				unlock_page(page);
				page_cache_release(page);
				continue;
			}

353 354 355 356 357 358 359 360 361
			if (PageWriteback(page)) {
				if (PageDirty(page))
					wait_on_page_writeback(page);
				else {
					unlock_page(page);
					page_cache_release(page);
					continue;
				}
			}
362 363 364 365 366 367
			err = write_one_page(page, 0);
			if (err)
				werr = err;
			page_cache_release(page);
		}
	}
C
Chris Mason 已提交
368
	while (1) {
369 370 371 372 373 374
		ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
					    EXTENT_DIRTY);
		if (ret)
			break;

		clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
C
Chris Mason 已提交
375
		while (start <= end) {
376 377 378 379 380 381
			index = start >> PAGE_CACHE_SHIFT;
			start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
			page = find_get_page(btree_inode->i_mapping, index);
			if (!page)
				continue;
			if (PageDirty(page)) {
C
Chris Mason 已提交
382 383
				btree_lock_page_hook(page);
				wait_on_page_writeback(page);
384 385 386 387
				err = write_one_page(page, 0);
				if (err)
					werr = err;
			}
388
			wait_on_page_writeback(page);
389 390 391 392
			page_cache_release(page);
			cond_resched();
		}
	}
393 394 395
	if (err)
		werr = err;
	return werr;
C
Chris Mason 已提交
396 397
}

398 399 400 401 402 403 404 405 406 407 408 409
int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
				     struct btrfs_root *root)
{
	if (!trans || !trans->transaction) {
		struct inode *btree_inode;
		btree_inode = root->fs_info->btree_inode;
		return filemap_write_and_wait(btree_inode->i_mapping);
	}
	return btrfs_write_and_wait_marked_extents(root,
					   &trans->transaction->dirty_pages);
}

C
Chris Mason 已提交
410 411 412 413 414 415 416 417 418 419
/*
 * this is used to update the root pointer in the tree of tree roots.
 *
 * But, in the case of the extent allocation tree, updating the root
 * pointer may allocate blocks which may change the root of the extent
 * allocation tree.
 *
 * So, this loops and repeats and makes sure the cowonly root didn't
 * change while the root pointer was being updated in the metadata.
 */
420 421
static int update_cowonly_root(struct btrfs_trans_handle *trans,
			       struct btrfs_root *root)
C
Chris Mason 已提交
422 423
{
	int ret;
424 425
	u64 old_root_bytenr;
	struct btrfs_root *tree_root = root->fs_info->tree_root;
C
Chris Mason 已提交
426

427
	btrfs_extent_post_op(trans, root);
428
	btrfs_write_dirty_block_groups(trans, root);
429 430
	btrfs_extent_post_op(trans, root);

C
Chris Mason 已提交
431
	while (1) {
432 433
		old_root_bytenr = btrfs_root_bytenr(&root->root_item);
		if (old_root_bytenr == root->node->start)
C
Chris Mason 已提交
434
			break;
435 436 437 438
		btrfs_set_root_bytenr(&root->root_item,
				       root->node->start);
		btrfs_set_root_level(&root->root_item,
				     btrfs_header_level(root->node));
439
		btrfs_set_root_generation(&root->root_item, trans->transid);
440 441 442

		btrfs_extent_post_op(trans, root);

C
Chris Mason 已提交
443
		ret = btrfs_update_root(trans, tree_root,
444 445
					&root->root_key,
					&root->root_item);
C
Chris Mason 已提交
446
		BUG_ON(ret);
447
		btrfs_write_dirty_block_groups(trans, root);
448
		btrfs_extent_post_op(trans, root);
449 450 451 452
	}
	return 0;
}

C
Chris Mason 已提交
453 454 455
/*
 * update all the cowonly tree roots on disk
 */
456 457 458 459 460
int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
			    struct btrfs_root *root)
{
	struct btrfs_fs_info *fs_info = root->fs_info;
	struct list_head *next;
461 462
	struct extent_buffer *eb;

463 464
	btrfs_extent_post_op(trans, fs_info->tree_root);

465 466 467 468
	eb = btrfs_lock_root_node(fs_info->tree_root);
	btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb, 0);
	btrfs_tree_unlock(eb);
	free_extent_buffer(eb);
469

470 471
	btrfs_extent_post_op(trans, fs_info->tree_root);

C
Chris Mason 已提交
472
	while (!list_empty(&fs_info->dirty_cowonly_roots)) {
473 474 475
		next = fs_info->dirty_cowonly_roots.next;
		list_del_init(next);
		root = list_entry(next, struct btrfs_root, dirty_list);
476

477
		update_cowonly_root(trans, root);
C
Chris Mason 已提交
478 479 480 481
	}
	return 0;
}

C
Chris Mason 已提交
482 483 484 485 486
/*
 * dead roots are old snapshots that need to be deleted.  This allocates
 * a dirty root struct and adds it into the list of dead roots that need to
 * be deleted
 */
Y
Yan Zheng 已提交
487
int btrfs_add_dead_root(struct btrfs_root *root, struct btrfs_root *latest)
488
{
489
	struct btrfs_dirty_root *dirty;
490 491 492 493 494

	dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
	if (!dirty)
		return -ENOMEM;
	dirty->root = root;
495
	dirty->latest_root = latest;
Y
Yan Zheng 已提交
496 497 498 499

	mutex_lock(&root->fs_info->trans_mutex);
	list_add(&dirty->list, &latest->fs_info->dead_roots);
	mutex_unlock(&root->fs_info->trans_mutex);
500 501 502
	return 0;
}

C
Chris Mason 已提交
503 504 505 506 507 508
/*
 * at transaction commit time we need to schedule the old roots for
 * deletion via btrfs_drop_snapshot.  This runs through all the
 * reference counted roots that were modified in the current
 * transaction and puts them into the drop list
 */
509 510 511
static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
				    struct radix_tree_root *radix,
				    struct list_head *list)
512
{
513
	struct btrfs_dirty_root *dirty;
514 515 516 517
	struct btrfs_root *gang[8];
	struct btrfs_root *root;
	int i;
	int ret;
518
	int err = 0;
519
	u32 refs;
520

C
Chris Mason 已提交
521
	while (1) {
522 523 524 525 526 527 528
		ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
						 ARRAY_SIZE(gang),
						 BTRFS_ROOT_TRANS_TAG);
		if (ret == 0)
			break;
		for (i = 0; i < ret; i++) {
			root = gang[i];
C
Chris Mason 已提交
529 530 531
			radix_tree_tag_clear(radix,
				     (unsigned long)root->root_key.objectid,
				     BTRFS_ROOT_TRANS_TAG);
Y
Yan Zheng 已提交
532 533

			BUG_ON(!root->ref_tree);
C
Chris Mason 已提交
534
			dirty = root->dirty_root;
Y
Yan Zheng 已提交
535

536
			btrfs_free_log(trans, root);
Y
Yan Zheng 已提交
537
			btrfs_free_reloc_root(trans, root);
538

539
			if (root->commit_root == root->node) {
540 541
				WARN_ON(root->node->start !=
					btrfs_root_bytenr(&root->root_item));
Y
Yan Zheng 已提交
542

543
				free_extent_buffer(root->commit_root);
544
				root->commit_root = NULL;
545
				root->dirty_root = NULL;
546 547 548 549 550

				spin_lock(&root->list_lock);
				list_del_init(&dirty->root->dead_list);
				spin_unlock(&root->list_lock);

Y
Yan Zheng 已提交
551 552
				kfree(dirty->root);
				kfree(dirty);
553 554 555 556 557 558 559 560 561

				/* make sure to update the root on disk
				 * so we get any updates to the block used
				 * counts
				 */
				err = btrfs_update_root(trans,
						root->fs_info->tree_root,
						&root->root_key,
						&root->root_item);
562 563
				continue;
			}
564 565 566 567

			memset(&root->root_item.drop_progress, 0,
			       sizeof(struct btrfs_disk_key));
			root->root_item.drop_level = 0;
568
			root->commit_root = NULL;
569
			root->dirty_root = NULL;
570
			root->root_key.offset = root->fs_info->generation;
571 572 573 574
			btrfs_set_root_bytenr(&root->root_item,
					      root->node->start);
			btrfs_set_root_level(&root->root_item,
					     btrfs_header_level(root->node));
575 576 577
			btrfs_set_root_generation(&root->root_item,
						  root->root_key.offset);

578 579 580
			err = btrfs_insert_root(trans, root->fs_info->tree_root,
						&root->root_key,
						&root->root_item);
581 582
			if (err)
				break;
583 584 585

			refs = btrfs_root_refs(&dirty->root->root_item);
			btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
586
			err = btrfs_update_root(trans, root->fs_info->tree_root,
587 588
						&dirty->root->root_key,
						&dirty->root->root_item);
589 590

			BUG_ON(err);
591
			if (refs == 1) {
592
				list_add(&dirty->list, list);
593 594
			} else {
				WARN_ON(1);
Y
Yan Zheng 已提交
595
				free_extent_buffer(dirty->root->node);
596
				kfree(dirty->root);
597
				kfree(dirty);
598
			}
599 600
		}
	}
601
	return err;
602 603
}

C
Chris Mason 已提交
604 605 606 607
/*
 * defrag a given btree.  If cacheonly == 1, this won't read from the disk,
 * otherwise every leaf in the btree is read and defragged.
 */
608 609 610 611 612
int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
{
	struct btrfs_fs_info *info = root->fs_info;
	int ret;
	struct btrfs_trans_handle *trans;
613
	unsigned long nr;
614

615
	smp_mb();
616 617 618
	if (root->defrag_running)
		return 0;
	trans = btrfs_start_transaction(root, 1);
619
	while (1) {
620 621
		root->defrag_running = 1;
		ret = btrfs_defrag_leaves(trans, root, cacheonly);
622
		nr = trans->blocks_used;
623
		btrfs_end_transaction(trans, root);
624
		btrfs_btree_balance_dirty(info->tree_root, nr);
625 626 627
		cond_resched();

		trans = btrfs_start_transaction(root, 1);
628
		if (root->fs_info->closing || ret != -EAGAIN)
629 630 631
			break;
	}
	root->defrag_running = 0;
632
	smp_mb();
633 634 635 636
	btrfs_end_transaction(trans, root);
	return 0;
}

C
Chris Mason 已提交
637 638 639 640
/*
 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
 * all of them
 */
641 642
static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
				     struct list_head *list)
643
{
644
	struct btrfs_dirty_root *dirty;
645
	struct btrfs_trans_handle *trans;
646
	unsigned long nr;
647 648
	u64 num_bytes;
	u64 bytes_used;
649
	u64 max_useless;
650
	int ret = 0;
651 652
	int err;

C
Chris Mason 已提交
653
	while (!list_empty(list)) {
654 655
		struct btrfs_root *root;

656
		dirty = list_entry(list->prev, struct btrfs_dirty_root, list);
657
		list_del_init(&dirty->list);
658

659
		num_bytes = btrfs_root_used(&dirty->root->root_item);
660
		root = dirty->latest_root;
661
		atomic_inc(&root->fs_info->throttles);
662

C
Chris Mason 已提交
663
		while (1) {
664
			trans = btrfs_start_transaction(tree_root, 1);
665
			mutex_lock(&root->fs_info->drop_mutex);
666
			ret = btrfs_drop_snapshot(trans, dirty->root);
C
Chris Mason 已提交
667
			if (ret != -EAGAIN)
668
				break;
669
			mutex_unlock(&root->fs_info->drop_mutex);
670

671 672 673 674 675 676
			err = btrfs_update_root(trans,
					tree_root,
					&dirty->root->root_key,
					&dirty->root->root_item);
			if (err)
				ret = err;
677
			nr = trans->blocks_used;
C
Chris Mason 已提交
678
			ret = btrfs_end_transaction(trans, tree_root);
679
			BUG_ON(ret);
680

681
			btrfs_btree_balance_dirty(tree_root, nr);
682
			cond_resched();
683
		}
684
		BUG_ON(ret);
685
		atomic_dec(&root->fs_info->throttles);
C
Chris Mason 已提交
686
		wake_up(&root->fs_info->transaction_throttle);
687

688 689 690
		num_bytes -= btrfs_root_used(&dirty->root->root_item);
		bytes_used = btrfs_root_used(&root->root_item);
		if (num_bytes) {
691
			btrfs_record_root_in_trans(root);
692
			btrfs_set_root_used(&root->root_item,
693
					    bytes_used - num_bytes);
694
		}
695

696
		ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
697 698
		if (ret) {
			BUG();
699
			break;
700
		}
701 702
		mutex_unlock(&root->fs_info->drop_mutex);

703 704 705 706 707 708 709 710 711 712 713 714
		spin_lock(&root->list_lock);
		list_del_init(&dirty->root->dead_list);
		if (!list_empty(&root->dead_list)) {
			struct btrfs_root *oldest;
			oldest = list_entry(root->dead_list.prev,
					    struct btrfs_root, dead_list);
			max_useless = oldest->root_key.offset - 1;
		} else {
			max_useless = root->root_key.offset - 1;
		}
		spin_unlock(&root->list_lock);

715
		nr = trans->blocks_used;
716 717
		ret = btrfs_end_transaction(trans, tree_root);
		BUG_ON(ret);
718

Z
Zheng Yan 已提交
719
		ret = btrfs_remove_leaf_refs(root, max_useless, 0);
720 721
		BUG_ON(ret);

722
		free_extent_buffer(dirty->root->node);
723
		kfree(dirty->root);
724
		kfree(dirty);
725 726

		btrfs_btree_balance_dirty(tree_root, nr);
727
		cond_resched();
728
	}
729
	return ret;
730 731
}

C
Chris Mason 已提交
732 733 734 735
/*
 * new snapshots need to be created at a very specific time in the
 * transaction commit.  This does the actual creation
 */
736
static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
737 738 739 740
				   struct btrfs_fs_info *fs_info,
				   struct btrfs_pending_snapshot *pending)
{
	struct btrfs_key key;
741
	struct btrfs_root_item *new_root_item;
742 743 744
	struct btrfs_root *tree_root = fs_info->tree_root;
	struct btrfs_root *root = pending->root;
	struct extent_buffer *tmp;
745
	struct extent_buffer *old;
746 747 748
	int ret;
	u64 objectid;

749 750 751 752 753
	new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
	if (!new_root_item) {
		ret = -ENOMEM;
		goto fail;
	}
754 755 756 757
	ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
	if (ret)
		goto fail;

Y
Yan Zheng 已提交
758 759
	btrfs_record_root_in_trans(root);
	btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
760
	memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
761 762

	key.objectid = objectid;
763
	key.offset = trans->transid;
764 765
	btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);

766
	old = btrfs_lock_root_node(root);
767
	btrfs_cow_block(trans, root, old, NULL, 0, &old, 0);
768

769 770 771
	btrfs_copy_root(trans, root, old, &tmp, objectid);
	btrfs_tree_unlock(old);
	free_extent_buffer(old);
772

773 774
	btrfs_set_root_bytenr(new_root_item, tmp->start);
	btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
775
	btrfs_set_root_generation(new_root_item, trans->transid);
776
	ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
777
				new_root_item);
778
	btrfs_tree_unlock(tmp);
779 780 781 782
	free_extent_buffer(tmp);
	if (ret)
		goto fail;

783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
	key.offset = (u64)-1;
	memcpy(&pending->root_key, &key, sizeof(key));
fail:
	kfree(new_root_item);
	return ret;
}

static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
				   struct btrfs_pending_snapshot *pending)
{
	int ret;
	int namelen;
	u64 index = 0;
	struct btrfs_trans_handle *trans;
	struct inode *parent_inode;
	struct inode *inode;
799
	struct btrfs_root *parent_root;
800

801
	parent_inode = pending->dentry->d_parent->d_inode;
802
	parent_root = BTRFS_I(parent_inode)->root;
803
	trans = btrfs_join_transaction(parent_root, 1);
804

805 806 807
	/*
	 * insert the directory item
	 */
808
	namelen = strlen(pending->name);
809
	ret = btrfs_set_inode_index(parent_inode, &index);
810
	ret = btrfs_insert_dir_item(trans, parent_root,
811 812 813
			    pending->name, namelen,
			    parent_inode->i_ino,
			    &pending->root_key, BTRFS_FT_DIR, index);
814 815 816

	if (ret)
		goto fail;
817

818 819 820 821
	btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
	ret = btrfs_update_inode(trans, parent_root, parent_inode);
	BUG_ON(ret);

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	/* add the backref first */
	ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
				 pending->root_key.objectid,
				 BTRFS_ROOT_BACKREF_KEY,
				 parent_root->root_key.objectid,
				 parent_inode->i_ino, index, pending->name,
				 namelen);

	BUG_ON(ret);

	/* now add the forward ref */
	ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
				 parent_root->root_key.objectid,
				 BTRFS_ROOT_REF_KEY,
				 pending->root_key.objectid,
				 parent_inode->i_ino, index, pending->name,
				 namelen);

840 841
	inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
	d_instantiate(pending->dentry, inode);
842
fail:
843
	btrfs_end_transaction(trans, fs_info->fs_root);
844 845 846
	return ret;
}

C
Chris Mason 已提交
847 848 849
/*
 * create all the snapshots we've scheduled for creation
 */
850 851
static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
					     struct btrfs_fs_info *fs_info)
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
{
	struct btrfs_pending_snapshot *pending;
	struct list_head *head = &trans->transaction->pending_snapshots;
	struct list_head *cur;
	int ret;

	list_for_each(cur, head) {
		pending = list_entry(cur, struct btrfs_pending_snapshot, list);
		ret = create_pending_snapshot(trans, fs_info, pending);
		BUG_ON(ret);
	}
	return 0;
}

static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
					     struct btrfs_fs_info *fs_info)
868 869 870 871 872
{
	struct btrfs_pending_snapshot *pending;
	struct list_head *head = &trans->transaction->pending_snapshots;
	int ret;

C
Chris Mason 已提交
873
	while (!list_empty(head)) {
874 875
		pending = list_entry(head->next,
				     struct btrfs_pending_snapshot, list);
876
		ret = finish_pending_snapshot(fs_info, pending);
877 878 879 880 881
		BUG_ON(ret);
		list_del(&pending->list);
		kfree(pending->name);
		kfree(pending);
	}
C
Chris Mason 已提交
882 883 884
	return 0;
}

C
Chris Mason 已提交
885 886 887
int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root)
{
888 889
	unsigned long joined = 0;
	unsigned long timeout = 1;
C
Chris Mason 已提交
890
	struct btrfs_transaction *cur_trans;
C
Chris Mason 已提交
891
	struct btrfs_transaction *prev_trans = NULL;
892
	struct btrfs_root *chunk_root = root->fs_info->chunk_root;
893
	struct list_head dirty_fs_roots;
894
	struct extent_io_tree *pinned_copy;
C
Chris Mason 已提交
895
	DEFINE_WAIT(wait);
896
	int ret;
C
Chris Mason 已提交
897

898
	INIT_LIST_HEAD(&dirty_fs_roots);
C
Chris Mason 已提交
899 900 901 902
	mutex_lock(&root->fs_info->trans_mutex);
	if (trans->transaction->in_commit) {
		cur_trans = trans->transaction;
		trans->transaction->use_count++;
C
Chris Mason 已提交
903
		mutex_unlock(&root->fs_info->trans_mutex);
C
Chris Mason 已提交
904
		btrfs_end_transaction(trans, root);
C
Chris Mason 已提交
905

C
Chris Mason 已提交
906 907
		ret = wait_for_commit(root, cur_trans);
		BUG_ON(ret);
908 909

		mutex_lock(&root->fs_info->trans_mutex);
C
Chris Mason 已提交
910
		put_transaction(cur_trans);
911 912
		mutex_unlock(&root->fs_info->trans_mutex);

C
Chris Mason 已提交
913 914
		return 0;
	}
915 916 917 918 919

	pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
	if (!pinned_copy)
		return -ENOMEM;

920
	extent_io_tree_init(pinned_copy,
921 922
			     root->fs_info->btree_inode->i_mapping, GFP_NOFS);

C
Chris Mason 已提交
923
	trans->transaction->in_commit = 1;
924
	trans->transaction->blocked = 1;
C
Chris Mason 已提交
925 926 927 928 929 930 931 932 933 934 935
	cur_trans = trans->transaction;
	if (cur_trans->list.prev != &root->fs_info->trans_list) {
		prev_trans = list_entry(cur_trans->list.prev,
					struct btrfs_transaction, list);
		if (!prev_trans->commit_done) {
			prev_trans->use_count++;
			mutex_unlock(&root->fs_info->trans_mutex);

			wait_for_commit(root, prev_trans);

			mutex_lock(&root->fs_info->trans_mutex);
936
			put_transaction(prev_trans);
C
Chris Mason 已提交
937 938
		}
	}
939 940

	do {
941
		int snap_pending = 0;
942
		joined = cur_trans->num_joined;
943 944 945
		if (!list_empty(&trans->transaction->pending_snapshots))
			snap_pending = 1;

C
Chris Mason 已提交
946
		WARN_ON(cur_trans != trans->transaction);
947
		prepare_to_wait(&cur_trans->writer_wait, &wait,
C
Chris Mason 已提交
948
				TASK_UNINTERRUPTIBLE);
949 950 951 952 953 954

		if (cur_trans->num_writers > 1)
			timeout = MAX_SCHEDULE_TIMEOUT;
		else
			timeout = 1;

C
Chris Mason 已提交
955
		mutex_unlock(&root->fs_info->trans_mutex);
956

957 958 959 960 961
		if (snap_pending) {
			ret = btrfs_wait_ordered_extents(root, 1);
			BUG_ON(ret);
		}

962 963
		schedule_timeout(timeout);

C
Chris Mason 已提交
964
		mutex_lock(&root->fs_info->trans_mutex);
965 966 967 968
		finish_wait(&cur_trans->writer_wait, &wait);
	} while (cur_trans->num_writers > 1 ||
		 (cur_trans->num_joined != joined));

969 970 971
	ret = create_pending_snapshots(trans, root->fs_info);
	BUG_ON(ret);

C
Chris Mason 已提交
972
	WARN_ON(cur_trans != trans->transaction);
C
Chris Mason 已提交
973

974 975 976 977 978 979 980 981 982 983 984 985 986 987
	/* btrfs_commit_tree_roots is responsible for getting the
	 * various roots consistent with each other.  Every pointer
	 * in the tree of tree roots has to point to the most up to date
	 * root for every subvolume and other tree.  So, we have to keep
	 * the tree logging code from jumping in and changing any
	 * of the trees.
	 *
	 * At this point in the commit, there can't be any tree-log
	 * writers, but a little lower down we drop the trans mutex
	 * and let new people in.  By holding the tree_log_mutex
	 * from now until after the super is written, we avoid races
	 * with the tree-log code.
	 */
	mutex_lock(&root->fs_info->tree_log_mutex);
Z
Zheng Yan 已提交
988 989 990 991 992
	/*
	 * keep tree reloc code from adding new reloc trees
	 */
	mutex_lock(&root->fs_info->tree_reloc_mutex);

993

994 995 996 997
	ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
			      &dirty_fs_roots);
	BUG_ON(ret);

998 999 1000 1001 1002
	/* add_dirty_roots gets rid of all the tree log roots, it is now
	 * safe to free the root of tree log roots
	 */
	btrfs_free_log_root_tree(trans, root->fs_info);

C
Chris Mason 已提交
1003 1004
	ret = btrfs_commit_tree_roots(trans, root);
	BUG_ON(ret);
1005

C
Chris Mason 已提交
1006
	cur_trans = root->fs_info->running_transaction;
1007
	spin_lock(&root->fs_info->new_trans_lock);
C
Chris Mason 已提交
1008
	root->fs_info->running_transaction = NULL;
1009
	spin_unlock(&root->fs_info->new_trans_lock);
1010 1011 1012
	btrfs_set_super_generation(&root->fs_info->super_copy,
				   cur_trans->transid);
	btrfs_set_super_root(&root->fs_info->super_copy,
1013 1014 1015
			     root->fs_info->tree_root->node->start);
	btrfs_set_super_root_level(&root->fs_info->super_copy,
			   btrfs_header_level(root->fs_info->tree_root->node));
1016

1017 1018 1019 1020
	btrfs_set_super_chunk_root(&root->fs_info->super_copy,
				   chunk_root->node->start);
	btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
					 btrfs_header_level(chunk_root->node));
1021 1022
	btrfs_set_super_chunk_root_generation(&root->fs_info->super_copy,
				btrfs_header_generation(chunk_root->node));
1023 1024 1025 1026 1027 1028

	if (!root->fs_info->log_root_recovering) {
		btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
		btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
	}

1029 1030
	memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
	       sizeof(root->fs_info->super_copy));
C
Chris Mason 已提交
1031

1032
	btrfs_copy_pinned(root, pinned_copy);
C
Chris Mason 已提交
1033

1034
	trans->transaction->blocked = 0;
1035
	wake_up(&root->fs_info->transaction_throttle);
1036
	wake_up(&root->fs_info->transaction_wait);
1037

C
Chris Mason 已提交
1038
	mutex_unlock(&root->fs_info->trans_mutex);
C
Chris Mason 已提交
1039 1040
	ret = btrfs_write_and_wait_transaction(trans, root);
	BUG_ON(ret);
Y
Yan Zheng 已提交
1041
	write_ctree_super(trans, root, 0);
1042

1043 1044 1045 1046 1047 1048
	/*
	 * the super is written, we can safely allow the tree-loggers
	 * to go about their business
	 */
	mutex_unlock(&root->fs_info->tree_log_mutex);

1049 1050 1051
	btrfs_finish_extent_commit(trans, root, pinned_copy);
	kfree(pinned_copy);

Z
Zheng Yan 已提交
1052 1053 1054
	btrfs_drop_dead_reloc_roots(root);
	mutex_unlock(&root->fs_info->tree_reloc_mutex);

1055 1056 1057
	/* do the directory inserts of any pending snapshot creations */
	finish_pending_snapshots(trans, root->fs_info);

Z
Zheng Yan 已提交
1058 1059
	mutex_lock(&root->fs_info->trans_mutex);

C
Chris Mason 已提交
1060
	cur_trans->commit_done = 1;
1061
	root->fs_info->last_trans_committed = cur_trans->transid;
C
Chris Mason 已提交
1062
	wake_up(&cur_trans->commit_wait);
1063

C
Chris Mason 已提交
1064
	put_transaction(cur_trans);
C
Chris Mason 已提交
1065
	put_transaction(cur_trans);
1066

1067
	list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
1068 1069
	if (root->fs_info->closing)
		list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
1070

C
Chris Mason 已提交
1071
	mutex_unlock(&root->fs_info->trans_mutex);
1072

C
Chris Mason 已提交
1073
	kmem_cache_free(btrfs_trans_handle_cachep, trans);
C
Chris Mason 已提交
1074

C
Chris Mason 已提交
1075
	if (root->fs_info->closing)
1076
		drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
C
Chris Mason 已提交
1077 1078 1079
	return ret;
}

C
Chris Mason 已提交
1080 1081 1082
/*
 * interface function to delete all the snapshots we have scheduled for deletion
 */
1083 1084 1085 1086
int btrfs_clean_old_snapshots(struct btrfs_root *root)
{
	struct list_head dirty_roots;
	INIT_LIST_HEAD(&dirty_roots);
1087
again:
1088 1089 1090 1091 1092 1093
	mutex_lock(&root->fs_info->trans_mutex);
	list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
	mutex_unlock(&root->fs_info->trans_mutex);

	if (!list_empty(&dirty_roots)) {
		drop_dirty_roots(root, &dirty_roots);
1094
		goto again;
1095 1096 1097
	}
	return 0;
}