disk-io.c 17.6 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>
20
#include <linux/blkdev.h>
21
#include <linux/crc32c.h>
C
Chris Mason 已提交
22
#include <linux/scatterlist.h>
C
Chris Mason 已提交
23
#include <linux/swap.h>
24
#include <linux/radix-tree.h>
C
Chris Mason 已提交
25
#include <linux/writeback.h>
26
#include <linux/buffer_head.h> // for block_sync_page
27 28
#include "ctree.h"
#include "disk-io.h"
29
#include "transaction.h"
30
#include "btrfs_inode.h"
31

32 33
#if 0
static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
34
{
35 36 37 38
	if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
		printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
		       (unsigned long long)extent_buffer_blocknr(buf),
		       (unsigned long long)btrfs_header_blocknr(buf));
C
Chris Mason 已提交
39
		return 1;
40
	}
41
	return 0;
42
}
43
#endif
44

45 46
struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
					    u64 blocknr)
47
{
48
	struct inode *btree_inode = root->fs_info->btree_inode;
49 50
	struct extent_buffer *eb;
	eb = find_extent_buffer(&BTRFS_I(btree_inode)->extent_tree,
51 52
				   blocknr * root->sectorsize,
				   root->sectorsize, GFP_NOFS);
53 54 55
	if (eb)
		eb->alloc_addr = (unsigned long)__builtin_return_address(0);
	return eb;
56
}
57

58 59 60 61
struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
						 u64 blocknr)
{
	struct inode *btree_inode = root->fs_info->btree_inode;
62 63
	struct extent_buffer *eb;
	eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->extent_tree,
64 65
				   blocknr * root->sectorsize,
				   root->sectorsize, GFP_NOFS);
66 67
	eb->alloc_addr = (unsigned long)__builtin_return_address(0);
	return eb;
68 69
}

70 71 72
struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
				    size_t page_offset, u64 start, u64 end,
				    int create)
73
{
74 75 76 77 78 79 80 81
	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
	struct extent_map *em;
	int ret;

again:
	em = lookup_extent_mapping(em_tree, start, end);
	if (em) {
		goto out;
82
	}
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
	em = alloc_extent_map(GFP_NOFS);
	if (!em) {
		em = ERR_PTR(-ENOMEM);
		goto out;
	}
	em->start = 0;
	em->end = (i_size_read(inode) & ~((u64)PAGE_CACHE_SIZE -1)) - 1;
	em->block_start = 0;
	em->block_end = em->end;
	em->bdev = inode->i_sb->s_bdev;
	ret = add_extent_mapping(em_tree, em);
	if (ret == -EEXIST) {
		free_extent_map(em);
		em = NULL;
		goto again;
	} else if (ret) {
		em = ERR_PTR(ret);
	}
out:
	return em;
103 104
}

105
static int btree_writepage(struct page *page, struct writeback_control *wbc)
106
{
107 108 109 110 111 112 113 114 115 116
	struct extent_map_tree *tree;
	tree = &BTRFS_I(page->mapping->host)->extent_tree;
	return extent_write_full_page(tree, page, btree_get_extent, wbc);
}
int btree_readpage(struct file *file, struct page *page)
{
	struct extent_map_tree *tree;
	tree = &BTRFS_I(page->mapping->host)->extent_tree;
	return extent_read_full_page(tree, page, btree_get_extent);
}
C
Chris Mason 已提交
117

118 119 120 121
static int btree_releasepage(struct page *page, gfp_t unused_gfp_flags)
{
	struct extent_map_tree *tree;
	int ret;
122

123 124 125 126 127 128 129 130
	BUG_ON(page->private != 1);
	tree = &BTRFS_I(page->mapping->host)->extent_tree;
	ret = try_release_extent_mapping(tree, page);
	if (ret == 1) {
		ClearPagePrivate(page);
		set_page_private(page, 0);
		page_cache_release(page);
	}
131 132 133
	return ret;
}

134
static void btree_invalidatepage(struct page *page, unsigned long offset)
135
{
136 137 138 139
	struct extent_map_tree *tree;
	tree = &BTRFS_I(page->mapping->host)->extent_tree;
	extent_invalidatepage(tree, page, offset);
	btree_releasepage(page, GFP_NOFS);
140 141
}

C
Chris Mason 已提交
142 143
int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
		    char *result)
C
Chris Mason 已提交
144
{
145 146
	return 0;
#if 0
147 148 149 150
	u32 crc;
	crc = crc32c(0, data, len);
	memcpy(result, &crc, BTRFS_CRC32_SIZE);
	return 0;
151
#endif
C
Chris Mason 已提交
152
}
153

154 155
#if 0
static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
C
Chris Mason 已提交
156 157
			   int verify)
{
158
	return 0;
159
	char result[BTRFS_CRC32_SIZE];
C
Chris Mason 已提交
160 161 162 163 164 165 166
	int ret;
	struct btrfs_node *node;

	ret = btrfs_csum_data(root, bh->b_data + BTRFS_CSUM_SIZE,
			      bh->b_size - BTRFS_CSUM_SIZE, result);
	if (ret)
		return ret;
C
Chris Mason 已提交
167
	if (verify) {
168
		if (memcmp(bh->b_data, result, BTRFS_CRC32_SIZE)) {
C
Chris Mason 已提交
169 170 171
			printk("btrfs: %s checksum verify failed on %llu\n",
			       root->fs_info->sb->s_id,
			       (unsigned long long)bh_blocknr(bh));
C
Chris Mason 已提交
172 173 174 175
			return 1;
		}
	} else {
		node = btrfs_buffer_node(bh);
176
		memcpy(node->header.csum, result, BTRFS_CRC32_SIZE);
C
Chris Mason 已提交
177
	}
C
Chris Mason 已提交
178 179
	return 0;
}
180
#endif
C
Chris Mason 已提交
181

182
#if 0
183
static int btree_writepage(struct page *page, struct writeback_control *wbc)
184
{
C
Chris Mason 已提交
185
	struct buffer_head *bh;
186
	struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
C
Chris Mason 已提交
187 188 189 190 191 192 193 194 195 196 197 198
	struct buffer_head *head;
	if (!page_has_buffers(page)) {
		create_empty_buffers(page, root->fs_info->sb->s_blocksize,
					(1 << BH_Dirty)|(1 << BH_Uptodate));
	}
	head = page_buffers(page);
	bh = head;
	do {
		if (buffer_dirty(bh))
			csum_tree_block(root, bh, 0);
		bh = bh->b_this_page;
	} while (bh != head);
199
	return block_write_full_page(page, btree_get_block, wbc);
200
}
201
#endif
202

203 204 205
static struct address_space_operations btree_aops = {
	.readpage	= btree_readpage,
	.writepage	= btree_writepage,
206 207
	.releasepage	= btree_releasepage,
	.invalidatepage = btree_invalidatepage,
208 209 210
	.sync_page	= block_sync_page,
};

C
Chris Mason 已提交
211 212
int readahead_tree_block(struct btrfs_root *root, u64 blocknr)
{
213 214
	struct extent_buffer *buf = NULL;
	struct inode *btree_inode = root->fs_info->btree_inode;
215
	int ret = 0;
C
Chris Mason 已提交
216

217 218
	buf = btrfs_find_create_tree_block(root, blocknr);
	if (!buf)
C
Chris Mason 已提交
219
		return 0;
220 221 222
	read_extent_buffer_pages(&BTRFS_I(btree_inode)->extent_tree,
				 buf, 0);
	free_extent_buffer(buf);
223
	return ret;
C
Chris Mason 已提交
224 225
}

226
struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 blocknr)
227
{
228 229 230 231 232 233 234 235
	struct extent_buffer *buf = NULL;
	struct inode *btree_inode = root->fs_info->btree_inode;

	buf = btrfs_find_create_tree_block(root, blocknr);
	if (!buf)
		return NULL;
	read_extent_buffer_pages(&BTRFS_I(btree_inode)->extent_tree,
				 buf, 1);
236
	buf->alloc_addr = (unsigned long)__builtin_return_address(0);
237
	return buf;
238 239
}

240
int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
241
		     struct extent_buffer *buf)
242
{
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
	struct inode *btree_inode = root->fs_info->btree_inode;
	clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->extent_tree, buf);
	return 0;
}

int wait_on_tree_block_writeback(struct btrfs_root *root,
				 struct extent_buffer *buf)
{
	struct inode *btree_inode = root->fs_info->btree_inode;
	wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->extent_tree,
					buf);
	return 0;
}

int set_tree_block_dirty(struct btrfs_root *root, struct extent_buffer *buf)
{
	struct inode *btree_inode = root->fs_info->btree_inode;
	set_extent_buffer_dirty(&BTRFS_I(btree_inode)->extent_tree, buf);
261 262 263
	return 0;
}

C
Chris Mason 已提交
264
static int __setup_root(int blocksize,
265 266
			struct btrfs_root *root,
			struct btrfs_fs_info *fs_info,
C
Chris Mason 已提交
267
			u64 objectid)
268
{
C
Chris Mason 已提交
269
	root->node = NULL;
270
	root->inode = NULL;
271
	root->commit_root = NULL;
272 273 274
	root->sectorsize = blocksize;
	root->nodesize = blocksize;
	root->leafsize = blocksize;
C
Chris Mason 已提交
275
	root->ref_cows = 0;
276
	root->fs_info = fs_info;
277 278
	root->objectid = objectid;
	root->last_trans = 0;
C
Chris Mason 已提交
279 280
	root->highest_inode = 0;
	root->last_inode_alloc = 0;
281
	root->name = NULL;
282 283
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
284
	memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
285 286
	memset(&root->root_kobj, 0, sizeof(root->root_kobj));
	init_completion(&root->kobj_unregister);
287
	init_rwsem(&root->snap_sem);
288 289
	root->defrag_running = 0;
	root->defrag_level = 0;
290
	root->root_key.objectid = objectid;
291 292 293
	return 0;
}

C
Chris Mason 已提交
294
static int find_and_setup_root(int blocksize,
295 296 297
			       struct btrfs_root *tree_root,
			       struct btrfs_fs_info *fs_info,
			       u64 objectid,
C
Chris Mason 已提交
298
			       struct btrfs_root *root)
299 300 301
{
	int ret;

C
Chris Mason 已提交
302
	__setup_root(blocksize, root, fs_info, objectid);
303 304 305 306 307 308 309
	ret = btrfs_find_last_root(tree_root, objectid,
				   &root->root_item, &root->root_key);
	BUG_ON(ret);

	root->node = read_tree_block(root,
				     btrfs_root_blocknr(&root->root_item));
	BUG_ON(!root->node);
310 311 312
	return 0;
}

313 314
struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
					       struct btrfs_key *location)
315 316 317 318
{
	struct btrfs_root *root;
	struct btrfs_root *tree_root = fs_info->tree_root;
	struct btrfs_path *path;
319
	struct extent_buffer *l;
C
Chris Mason 已提交
320
	u64 highest_inode;
321 322
	int ret = 0;

323
	root = kzalloc(sizeof(*root), GFP_NOFS);
C
Chris Mason 已提交
324
	if (!root)
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
		return ERR_PTR(-ENOMEM);
	if (location->offset == (u64)-1) {
		ret = find_and_setup_root(fs_info->sb->s_blocksize,
					  fs_info->tree_root, fs_info,
					  location->objectid, root);
		if (ret) {
			kfree(root);
			return ERR_PTR(ret);
		}
		goto insert;
	}

	__setup_root(fs_info->sb->s_blocksize, root, fs_info,
		     location->objectid);

	path = btrfs_alloc_path();
	BUG_ON(!path);
	ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
	if (ret != 0) {
		if (ret > 0)
			ret = -ENOENT;
		goto out;
	}
348 349 350
	l = path->nodes[0];
	read_extent_buffer(l, &root->root_item,
	       btrfs_item_ptr_offset(l, path->slots[0]),
351 352 353 354 355 356 357 358 359 360 361 362 363 364
	       sizeof(root->root_item));
	ret = 0;
out:
	btrfs_release_path(root, path);
	btrfs_free_path(path);
	if (ret) {
		kfree(root);
		return ERR_PTR(ret);
	}
	root->node = read_tree_block(root,
				     btrfs_root_blocknr(&root->root_item));
	BUG_ON(!root->node);
insert:
	root->ref_cows = 1;
365 366 367 368 369 370 371 372 373
	ret = btrfs_find_highest_inode(root, &highest_inode);
	if (ret == 0) {
		root->highest_inode = highest_inode;
		root->last_inode_alloc = highest_inode;
	}
	return root;
}

struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
374 375
				      struct btrfs_key *location,
				      const char *name, int namelen)
376 377 378 379 380 381 382 383 384 385 386 387
{
	struct btrfs_root *root;
	int ret;

	root = radix_tree_lookup(&fs_info->fs_roots_radix,
				 (unsigned long)location->objectid);
	if (root)
		return root;

	root = btrfs_read_fs_root_no_radix(fs_info, location);
	if (IS_ERR(root))
		return root;
C
Chris Mason 已提交
388 389
	ret = radix_tree_insert(&fs_info->fs_roots_radix,
				(unsigned long)root->root_key.objectid,
390 391
				root);
	if (ret) {
392
		free_extent_buffer(root->node);
393 394 395
		kfree(root);
		return ERR_PTR(ret);
	}
396 397 398

	ret = btrfs_set_root_name(root, name, namelen);
	if (ret) {
399
		free_extent_buffer(root->node);
400 401 402 403 404 405
		kfree(root);
		return ERR_PTR(ret);
	}

	ret = btrfs_sysfs_add_root(root);
	if (ret) {
406
		free_extent_buffer(root->node);
407 408 409 410 411
		kfree(root->name);
		kfree(root);
		return ERR_PTR(ret);
	}

412 413 414 415
	ret = btrfs_find_dead_roots(fs_info->tree_root,
				    root->root_key.objectid, root);
	BUG_ON(ret);

416 417 418
	return root;
}

C
Chris Mason 已提交
419
struct btrfs_root *open_ctree(struct super_block *sb)
420
{
C
Chris Mason 已提交
421 422 423 424 425 426
	struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
						 GFP_NOFS);
	struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
					       GFP_NOFS);
	struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
						GFP_NOFS);
427
	int ret;
C
Chris Mason 已提交
428
	int err = -EIO;
C
Chris Mason 已提交
429
	struct btrfs_super_block *disk_super;
430

C
Chris Mason 已提交
431 432 433 434
	if (!extent_root || !tree_root || !fs_info) {
		err = -ENOMEM;
		goto fail;
	}
435
	INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
C
Chris Mason 已提交
436
	INIT_LIST_HEAD(&fs_info->trans_list);
437
	INIT_LIST_HEAD(&fs_info->dead_roots);
438 439
	memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
	init_completion(&fs_info->kobj_unregister);
C
Chris Mason 已提交
440
	sb_set_blocksize(sb, 4096);
441
	fs_info->running_transaction = NULL;
442
	fs_info->last_trans_committed = 0;
443 444
	fs_info->tree_root = tree_root;
	fs_info->extent_root = extent_root;
C
Chris Mason 已提交
445
	fs_info->sb = sb;
446 447
	fs_info->btree_inode = new_inode(sb);
	fs_info->btree_inode->i_ino = 1;
C
Chris Mason 已提交
448
	fs_info->btree_inode->i_nlink = 1;
449 450
	fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
	fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
451 452 453
	extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
			     fs_info->btree_inode->i_mapping,
			     GFP_NOFS);
454 455
	extent_map_tree_init(&fs_info->free_space_cache,
			     fs_info->btree_inode->i_mapping, GFP_NOFS);
456 457
	extent_map_tree_init(&fs_info->block_group_cache,
			     fs_info->btree_inode->i_mapping, GFP_NOFS);
458 459 460 461 462 463
	extent_map_tree_init(&fs_info->pinned_extents,
			     fs_info->btree_inode->i_mapping, GFP_NOFS);
	extent_map_tree_init(&fs_info->pending_del,
			     fs_info->btree_inode->i_mapping, GFP_NOFS);
	extent_map_tree_init(&fs_info->extent_ins,
			     fs_info->btree_inode->i_mapping, GFP_NOFS);
464
	fs_info->do_barriers = 1;
465 466
	fs_info->closing = 0;

C
Chris Mason 已提交
467
	INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
468 469 470
	BTRFS_I(fs_info->btree_inode)->root = tree_root;
	memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
	       sizeof(struct btrfs_key));
C
Chris Mason 已提交
471
	insert_inode_hash(fs_info->btree_inode);
472
	mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
C
Chris Mason 已提交
473

C
Chris Mason 已提交
474
	mutex_init(&fs_info->trans_mutex);
C
Chris Mason 已提交
475
	mutex_init(&fs_info->fs_mutex);
476

C
Chris Mason 已提交
477 478
	__setup_root(sb->s_blocksize, tree_root,
		     fs_info, BTRFS_ROOT_TREE_OBJECTID);
479

C
Chris Mason 已提交
480 481 482
	fs_info->sb_buffer = read_tree_block(tree_root,
					     BTRFS_SUPER_INFO_OFFSET /
					     sb->s_blocksize);
483

484
	if (!fs_info->sb_buffer)
C
Chris Mason 已提交
485 486
		goto fail_iput;

487 488 489 490 491 492 493
	read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
			   sizeof(fs_info->super_copy));

	read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
			   (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
			   BTRFS_FSID_SIZE);
	disk_super = &fs_info->super_copy;
494
	if (!btrfs_super_root(disk_super))
C
Chris Mason 已提交
495
		goto fail_sb_buffer;
496

497 498 499 500
	i_size_write(fs_info->btree_inode,
		     btrfs_super_total_blocks(disk_super) <<
		     fs_info->btree_inode->i_blkbits);

C
Chris Mason 已提交
501 502 503 504 505 506

	if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
		    sizeof(disk_super->magic))) {
		printk("btrfs: valid FS not found on %s\n", sb->s_id);
		goto fail_sb_buffer;
	}
C
Chris Mason 已提交
507 508
	tree_root->node = read_tree_block(tree_root,
					  btrfs_super_root(disk_super));
C
Chris Mason 已提交
509 510
	if (!tree_root->node)
		goto fail_sb_buffer;
511

C
Chris Mason 已提交
512 513
	mutex_lock(&fs_info->fs_mutex);
	ret = find_and_setup_root(sb->s_blocksize, tree_root, fs_info,
C
Chris Mason 已提交
514
				  BTRFS_EXTENT_TREE_OBJECTID, extent_root);
C
Chris Mason 已提交
515 516 517 518
	if (ret) {
		mutex_unlock(&fs_info->fs_mutex);
		goto fail_tree_root;
	}
519

C
Chris Mason 已提交
520 521
	btrfs_read_block_groups(extent_root);

522
	fs_info->generation = btrfs_super_generation(disk_super) + 1;
C
Chris Mason 已提交
523
	mutex_unlock(&fs_info->fs_mutex);
524
	return tree_root;
C
Chris Mason 已提交
525 526

fail_tree_root:
527
	free_extent_buffer(tree_root->node);
C
Chris Mason 已提交
528
fail_sb_buffer:
529
	free_extent_buffer(fs_info->sb_buffer);
C
Chris Mason 已提交
530 531 532 533 534 535 536
fail_iput:
	iput(fs_info->btree_inode);
fail:
	kfree(extent_root);
	kfree(tree_root);
	kfree(fs_info);
	return ERR_PTR(err);
537 538
}

539
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
540
		      *root)
541
{
542
	int ret;
543 544 545 546 547 548 549
	struct extent_buffer *super = root->fs_info->sb_buffer;
	struct inode *btree_inode = root->fs_info->btree_inode;

	set_extent_buffer_dirty(&BTRFS_I(btree_inode)->extent_tree, super);
	ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
				     super->start, super->len);
	return ret;
C
Chris Mason 已提交
550 551
}

552
int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
C
Chris Mason 已提交
553 554 555
{
	radix_tree_delete(&fs_info->fs_roots_radix,
			  (unsigned long)root->root_key.objectid);
556
	btrfs_sysfs_del_root(root);
C
Chris Mason 已提交
557 558 559
	if (root->inode)
		iput(root->inode);
	if (root->node)
560
		free_extent_buffer(root->node);
C
Chris Mason 已提交
561
	if (root->commit_root)
562
		free_extent_buffer(root->commit_root);
563 564
	if (root->name)
		kfree(root->name);
C
Chris Mason 已提交
565 566 567 568
	kfree(root);
	return 0;
}

C
Chris Mason 已提交
569
static int del_fs_roots(struct btrfs_fs_info *fs_info)
570 571 572 573 574 575 576 577 578 579 580
{
	int ret;
	struct btrfs_root *gang[8];
	int i;

	while(1) {
		ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
					     (void **)gang, 0,
					     ARRAY_SIZE(gang));
		if (!ret)
			break;
C
Chris Mason 已提交
581
		for (i = 0; i < ret; i++)
582
			btrfs_free_fs_root(fs_info, gang[i]);
583 584 585
	}
	return 0;
}
586

C
Chris Mason 已提交
587
int close_ctree(struct btrfs_root *root)
C
Chris Mason 已提交
588
{
589
	int ret;
590
	struct btrfs_trans_handle *trans;
591
	struct btrfs_fs_info *fs_info = root->fs_info;
592

593
	fs_info->closing = 1;
C
Chris Mason 已提交
594
	btrfs_transaction_flush_work(root);
595
	mutex_lock(&fs_info->fs_mutex);
596
	btrfs_defrag_dirty_roots(root->fs_info);
C
Chris Mason 已提交
597
	trans = btrfs_start_transaction(root, 1);
598
	ret = btrfs_commit_transaction(trans, root);
C
Chris Mason 已提交
599 600 601 602
	/* run commit again to  drop the original snapshot */
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	ret = btrfs_write_and_wait_transaction(NULL, root);
603
	BUG_ON(ret);
C
Chris Mason 已提交
604
	write_ctree_super(NULL, root);
605 606 607
	mutex_unlock(&fs_info->fs_mutex);

	if (fs_info->extent_root->node)
608
		free_extent_buffer(fs_info->extent_root->node);
609

610
	if (fs_info->tree_root->node)
611
		free_extent_buffer(fs_info->tree_root->node);
612

613
	free_extent_buffer(fs_info->sb_buffer);
614 615
	truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
	iput(fs_info->btree_inode);
616

C
Chris Mason 已提交
617
	btrfs_free_block_groups(root->fs_info);
618 619 620
	del_fs_roots(fs_info);
	kfree(fs_info->extent_root);
	kfree(fs_info->tree_root);
621 622 623
	return 0;
}

624 625
int btrfs_buffer_uptodate(struct extent_buffer *buf)
{
626
	struct inode *btree_inode = buf->first_page->mapping->host;
627 628 629 630
	return extent_buffer_uptodate(&BTRFS_I(btree_inode)->extent_tree, buf);
}

int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
C
Chris Mason 已提交
631
{
632
	struct inode *btree_inode = buf->first_page->mapping->host;
633 634 635
	return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->extent_tree,
					  buf);
}
636

637 638
void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
{
639
	struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
640 641
	u64 transid = btrfs_header_generation(buf);
	struct inode *btree_inode = root->fs_info->btree_inode;
642

C
Chris Mason 已提交
643 644
	if (transid != root->fs_info->generation) {
		printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
645
			(unsigned long long)extent_buffer_blocknr(buf),
C
Chris Mason 已提交
646 647 648
			transid, root->fs_info->generation);
		WARN_ON(1);
	}
649
	set_extent_buffer_dirty(&BTRFS_I(btree_inode)->extent_tree, buf);
650 651
}

652
void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
C
Chris Mason 已提交
653
{
654 655
	balance_dirty_pages_ratelimited_nr(
			root->fs_info->btree_inode->i_mapping, nr);
C
Chris Mason 已提交
656
}