xref: /openbmc/linux/fs/btrfs/disk-io.c (revision 573bfb72)
16cbd5570SChris Mason /*
26cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
36cbd5570SChris Mason  *
46cbd5570SChris Mason  * This program is free software; you can redistribute it and/or
56cbd5570SChris Mason  * modify it under the terms of the GNU General Public
66cbd5570SChris Mason  * License v2 as published by the Free Software Foundation.
76cbd5570SChris Mason  *
86cbd5570SChris Mason  * This program is distributed in the hope that it will be useful,
96cbd5570SChris Mason  * but WITHOUT ANY WARRANTY; without even the implied warranty of
106cbd5570SChris Mason  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
116cbd5570SChris Mason  * General Public License for more details.
126cbd5570SChris Mason  *
136cbd5570SChris Mason  * You should have received a copy of the GNU General Public
146cbd5570SChris Mason  * License along with this program; if not, write to the
156cbd5570SChris Mason  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
166cbd5570SChris Mason  * Boston, MA 021110-1307, USA.
176cbd5570SChris Mason  */
186cbd5570SChris Mason 
19e20d96d6SChris Mason #include <linux/fs.h>
20d98237b3SChris Mason #include <linux/blkdev.h>
2187cbda5cSChris Mason #include <linux/scatterlist.h>
2222b0ebdaSChris Mason #include <linux/swap.h>
230f7d52f4SChris Mason #include <linux/radix-tree.h>
2435b7e476SChris Mason #include <linux/writeback.h>
25d397712bSChris Mason #include <linux/buffer_head.h>
26ce9adaa5SChris Mason #include <linux/workqueue.h>
27a74a4b97SChris Mason #include <linux/kthread.h>
28a74a4b97SChris Mason #include <linux/freezer.h>
295a0e3ad6STejun Heo #include <linux/slab.h>
30784b4e29SChris Mason #include <linux/migrate.h>
317a36ddecSDavid Sterba #include <linux/ratelimit.h>
326463fe58SStefan Behrens #include <linux/uuid.h>
33803b2f54SStefan Behrens #include <linux/semaphore.h>
347e75bf3fSDavid Sterba #include <asm/unaligned.h>
35eb60ceacSChris Mason #include "ctree.h"
36eb60ceacSChris Mason #include "disk-io.h"
370b947affSFilipe David Borba Manana #include "hash.h"
38e089f05cSChris Mason #include "transaction.h"
390f7d52f4SChris Mason #include "btrfs_inode.h"
400b86a832SChris Mason #include "volumes.h"
41db94535dSChris Mason #include "print-tree.h"
428b712842SChris Mason #include "async-thread.h"
43925baeddSChris Mason #include "locking.h"
44e02119d5SChris Mason #include "tree-log.h"
45fa9c0d79SChris Mason #include "free-space-cache.h"
46581bb050SLi Zefan #include "inode-map.h"
4721adbd5cSStefan Behrens #include "check-integrity.h"
48606686eeSJosef Bacik #include "rcu-string.h"
498dabb742SStefan Behrens #include "dev-replace.h"
5053b381b3SDavid Woodhouse #include "raid56.h"
515ac1d209SJeff Mahoney #include "sysfs.h"
52eb60ceacSChris Mason 
53de0022b9SJosef Bacik #ifdef CONFIG_X86
54de0022b9SJosef Bacik #include <asm/cpufeature.h>
55de0022b9SJosef Bacik #endif
56de0022b9SJosef Bacik 
57d1310b2eSChris Mason static struct extent_io_ops btree_extent_io_ops;
58d458b054SQu Wenruo static void end_workqueue_fn(struct btrfs_work *work);
594df27c4dSYan, Zheng static void free_fs_root(struct btrfs_root *root);
60fcd1f065SDavid Sterba static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
61acce952bSliubo 				    int read_only);
62569e0f35SJosef Bacik static void btrfs_destroy_ordered_operations(struct btrfs_transaction *t,
63569e0f35SJosef Bacik 					     struct btrfs_root *root);
64143bede5SJeff Mahoney static void btrfs_destroy_ordered_extents(struct btrfs_root *root);
65acce952bSliubo static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
66acce952bSliubo 				      struct btrfs_root *root);
67143bede5SJeff Mahoney static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root);
68acce952bSliubo static int btrfs_destroy_marked_extents(struct btrfs_root *root,
69acce952bSliubo 					struct extent_io_tree *dirty_pages,
70acce952bSliubo 					int mark);
71acce952bSliubo static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
72acce952bSliubo 				       struct extent_io_tree *pinned_extents);
7348a3b636SEric Sandeen static int btrfs_cleanup_transaction(struct btrfs_root *root);
7448a3b636SEric Sandeen static void btrfs_error_commit_super(struct btrfs_root *root);
75ce9adaa5SChris Mason 
76d352ac68SChris Mason /*
77d352ac68SChris Mason  * end_io_wq structs are used to do processing in task context when an IO is
78d352ac68SChris Mason  * complete.  This is used during reads to verify checksums, and it is used
79d352ac68SChris Mason  * by writes to insert metadata for new file extents after IO is complete.
80d352ac68SChris Mason  */
81ce9adaa5SChris Mason struct end_io_wq {
82ce9adaa5SChris Mason 	struct bio *bio;
83ce9adaa5SChris Mason 	bio_end_io_t *end_io;
84ce9adaa5SChris Mason 	void *private;
85ce9adaa5SChris Mason 	struct btrfs_fs_info *info;
86ce9adaa5SChris Mason 	int error;
8722c59948SChris Mason 	int metadata;
88ce9adaa5SChris Mason 	struct list_head list;
89d458b054SQu Wenruo 	struct btrfs_work work;
90ce9adaa5SChris Mason };
910da5468fSChris Mason 
92d352ac68SChris Mason /*
93d352ac68SChris Mason  * async submit bios are used to offload expensive checksumming
94d352ac68SChris Mason  * onto the worker threads.  They checksum file and metadata bios
95d352ac68SChris Mason  * just before they are sent down the IO stack.
96d352ac68SChris Mason  */
9744b8bd7eSChris Mason struct async_submit_bio {
9844b8bd7eSChris Mason 	struct inode *inode;
9944b8bd7eSChris Mason 	struct bio *bio;
10044b8bd7eSChris Mason 	struct list_head list;
1014a69a410SChris Mason 	extent_submit_bio_hook_t *submit_bio_start;
1024a69a410SChris Mason 	extent_submit_bio_hook_t *submit_bio_done;
10344b8bd7eSChris Mason 	int rw;
10444b8bd7eSChris Mason 	int mirror_num;
105c8b97818SChris Mason 	unsigned long bio_flags;
106eaf25d93SChris Mason 	/*
107eaf25d93SChris Mason 	 * bio_offset is optional, can be used if the pages in the bio
108eaf25d93SChris Mason 	 * can't tell us where in the file the bio should go
109eaf25d93SChris Mason 	 */
110eaf25d93SChris Mason 	u64 bio_offset;
111d458b054SQu Wenruo 	struct btrfs_work work;
11279787eaaSJeff Mahoney 	int error;
11344b8bd7eSChris Mason };
11444b8bd7eSChris Mason 
11585d4e461SChris Mason /*
11685d4e461SChris Mason  * Lockdep class keys for extent_buffer->lock's in this root.  For a given
11785d4e461SChris Mason  * eb, the lockdep key is determined by the btrfs_root it belongs to and
11885d4e461SChris Mason  * the level the eb occupies in the tree.
1194008c04aSChris Mason  *
12085d4e461SChris Mason  * Different roots are used for different purposes and may nest inside each
12185d4e461SChris Mason  * other and they require separate keysets.  As lockdep keys should be
12285d4e461SChris Mason  * static, assign keysets according to the purpose of the root as indicated
12385d4e461SChris Mason  * by btrfs_root->objectid.  This ensures that all special purpose roots
12485d4e461SChris Mason  * have separate keysets.
1254008c04aSChris Mason  *
12685d4e461SChris Mason  * Lock-nesting across peer nodes is always done with the immediate parent
12785d4e461SChris Mason  * node locked thus preventing deadlock.  As lockdep doesn't know this, use
12885d4e461SChris Mason  * subclass to avoid triggering lockdep warning in such cases.
1294008c04aSChris Mason  *
13085d4e461SChris Mason  * The key is set by the readpage_end_io_hook after the buffer has passed
13185d4e461SChris Mason  * csum validation but before the pages are unlocked.  It is also set by
13285d4e461SChris Mason  * btrfs_init_new_buffer on freshly allocated blocks.
13385d4e461SChris Mason  *
13485d4e461SChris Mason  * We also add a check to make sure the highest level of the tree is the
13585d4e461SChris Mason  * same as our lockdep setup here.  If BTRFS_MAX_LEVEL changes, this code
13685d4e461SChris Mason  * needs update as well.
1374008c04aSChris Mason  */
1384008c04aSChris Mason #ifdef CONFIG_DEBUG_LOCK_ALLOC
1394008c04aSChris Mason # if BTRFS_MAX_LEVEL != 8
1404008c04aSChris Mason #  error
1414008c04aSChris Mason # endif
14285d4e461SChris Mason 
14385d4e461SChris Mason static struct btrfs_lockdep_keyset {
14485d4e461SChris Mason 	u64			id;		/* root objectid */
14585d4e461SChris Mason 	const char		*name_stem;	/* lock name stem */
14685d4e461SChris Mason 	char			names[BTRFS_MAX_LEVEL + 1][20];
14785d4e461SChris Mason 	struct lock_class_key	keys[BTRFS_MAX_LEVEL + 1];
14885d4e461SChris Mason } btrfs_lockdep_keysets[] = {
14985d4e461SChris Mason 	{ .id = BTRFS_ROOT_TREE_OBJECTID,	.name_stem = "root"	},
15085d4e461SChris Mason 	{ .id = BTRFS_EXTENT_TREE_OBJECTID,	.name_stem = "extent"	},
15185d4e461SChris Mason 	{ .id = BTRFS_CHUNK_TREE_OBJECTID,	.name_stem = "chunk"	},
15285d4e461SChris Mason 	{ .id = BTRFS_DEV_TREE_OBJECTID,	.name_stem = "dev"	},
15385d4e461SChris Mason 	{ .id = BTRFS_FS_TREE_OBJECTID,		.name_stem = "fs"	},
15485d4e461SChris Mason 	{ .id = BTRFS_CSUM_TREE_OBJECTID,	.name_stem = "csum"	},
15560b62978SDavid Sterba 	{ .id = BTRFS_QUOTA_TREE_OBJECTID,	.name_stem = "quota"	},
15685d4e461SChris Mason 	{ .id = BTRFS_TREE_LOG_OBJECTID,	.name_stem = "log"	},
15785d4e461SChris Mason 	{ .id = BTRFS_TREE_RELOC_OBJECTID,	.name_stem = "treloc"	},
15885d4e461SChris Mason 	{ .id = BTRFS_DATA_RELOC_TREE_OBJECTID,	.name_stem = "dreloc"	},
15913fd8da9SDavid Sterba 	{ .id = BTRFS_UUID_TREE_OBJECTID,	.name_stem = "uuid"	},
16085d4e461SChris Mason 	{ .id = 0,				.name_stem = "tree"	},
1614008c04aSChris Mason };
16285d4e461SChris Mason 
16385d4e461SChris Mason void __init btrfs_init_lockdep(void)
16485d4e461SChris Mason {
16585d4e461SChris Mason 	int i, j;
16685d4e461SChris Mason 
16785d4e461SChris Mason 	/* initialize lockdep class names */
16885d4e461SChris Mason 	for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) {
16985d4e461SChris Mason 		struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i];
17085d4e461SChris Mason 
17185d4e461SChris Mason 		for (j = 0; j < ARRAY_SIZE(ks->names); j++)
17285d4e461SChris Mason 			snprintf(ks->names[j], sizeof(ks->names[j]),
17385d4e461SChris Mason 				 "btrfs-%s-%02d", ks->name_stem, j);
17485d4e461SChris Mason 	}
17585d4e461SChris Mason }
17685d4e461SChris Mason 
17785d4e461SChris Mason void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb,
17885d4e461SChris Mason 				    int level)
17985d4e461SChris Mason {
18085d4e461SChris Mason 	struct btrfs_lockdep_keyset *ks;
18185d4e461SChris Mason 
18285d4e461SChris Mason 	BUG_ON(level >= ARRAY_SIZE(ks->keys));
18385d4e461SChris Mason 
18485d4e461SChris Mason 	/* find the matching keyset, id 0 is the default entry */
18585d4e461SChris Mason 	for (ks = btrfs_lockdep_keysets; ks->id; ks++)
18685d4e461SChris Mason 		if (ks->id == objectid)
18785d4e461SChris Mason 			break;
18885d4e461SChris Mason 
18985d4e461SChris Mason 	lockdep_set_class_and_name(&eb->lock,
19085d4e461SChris Mason 				   &ks->keys[level], ks->names[level]);
19185d4e461SChris Mason }
19285d4e461SChris Mason 
1934008c04aSChris Mason #endif
1944008c04aSChris Mason 
195d352ac68SChris Mason /*
196d352ac68SChris Mason  * extents on the btree inode are pretty simple, there's one extent
197d352ac68SChris Mason  * that covers the entire device
198d352ac68SChris Mason  */
199b2950863SChristoph Hellwig static struct extent_map *btree_get_extent(struct inode *inode,
200306e16ceSDavid Sterba 		struct page *page, size_t pg_offset, u64 start, u64 len,
2015f39d397SChris Mason 		int create)
2025f39d397SChris Mason {
2035f39d397SChris Mason 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2045f39d397SChris Mason 	struct extent_map *em;
2055f39d397SChris Mason 	int ret;
2065f39d397SChris Mason 
207890871beSChris Mason 	read_lock(&em_tree->lock);
208d1310b2eSChris Mason 	em = lookup_extent_mapping(em_tree, start, len);
209a061fc8dSChris Mason 	if (em) {
210a061fc8dSChris Mason 		em->bdev =
211a061fc8dSChris Mason 			BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
212890871beSChris Mason 		read_unlock(&em_tree->lock);
2135f39d397SChris Mason 		goto out;
214a061fc8dSChris Mason 	}
215890871beSChris Mason 	read_unlock(&em_tree->lock);
2167b13b7b1SChris Mason 
217172ddd60SDavid Sterba 	em = alloc_extent_map();
2185f39d397SChris Mason 	if (!em) {
2195f39d397SChris Mason 		em = ERR_PTR(-ENOMEM);
2205f39d397SChris Mason 		goto out;
2215f39d397SChris Mason 	}
2225f39d397SChris Mason 	em->start = 0;
2230afbaf8cSChris Mason 	em->len = (u64)-1;
224c8b97818SChris Mason 	em->block_len = (u64)-1;
2255f39d397SChris Mason 	em->block_start = 0;
226a061fc8dSChris Mason 	em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
227d1310b2eSChris Mason 
228890871beSChris Mason 	write_lock(&em_tree->lock);
22909a2a8f9SJosef Bacik 	ret = add_extent_mapping(em_tree, em, 0);
2305f39d397SChris Mason 	if (ret == -EEXIST) {
2315f39d397SChris Mason 		free_extent_map(em);
2327b13b7b1SChris Mason 		em = lookup_extent_mapping(em_tree, start, len);
233b4f359abSTsutomu Itoh 		if (!em)
2340433f20dSTsutomu Itoh 			em = ERR_PTR(-EIO);
2355f39d397SChris Mason 	} else if (ret) {
2367b13b7b1SChris Mason 		free_extent_map(em);
2370433f20dSTsutomu Itoh 		em = ERR_PTR(ret);
2385f39d397SChris Mason 	}
239890871beSChris Mason 	write_unlock(&em_tree->lock);
2407b13b7b1SChris Mason 
2415f39d397SChris Mason out:
2425f39d397SChris Mason 	return em;
2435f39d397SChris Mason }
2445f39d397SChris Mason 
245b0496686SLiu Bo u32 btrfs_csum_data(char *data, u32 seed, size_t len)
24619c00ddcSChris Mason {
2470b947affSFilipe David Borba Manana 	return btrfs_crc32c(seed, data, len);
24819c00ddcSChris Mason }
24919c00ddcSChris Mason 
25019c00ddcSChris Mason void btrfs_csum_final(u32 crc, char *result)
25119c00ddcSChris Mason {
2527e75bf3fSDavid Sterba 	put_unaligned_le32(~crc, result);
25319c00ddcSChris Mason }
25419c00ddcSChris Mason 
255d352ac68SChris Mason /*
256d352ac68SChris Mason  * compute the csum for a btree block, and either verify it or write it
257d352ac68SChris Mason  * into the csum field of the block.
258d352ac68SChris Mason  */
25919c00ddcSChris Mason static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
26019c00ddcSChris Mason 			   int verify)
26119c00ddcSChris Mason {
2626c41761fSDavid Sterba 	u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
263607d432dSJosef Bacik 	char *result = NULL;
26419c00ddcSChris Mason 	unsigned long len;
26519c00ddcSChris Mason 	unsigned long cur_len;
26619c00ddcSChris Mason 	unsigned long offset = BTRFS_CSUM_SIZE;
26719c00ddcSChris Mason 	char *kaddr;
26819c00ddcSChris Mason 	unsigned long map_start;
26919c00ddcSChris Mason 	unsigned long map_len;
27019c00ddcSChris Mason 	int err;
27119c00ddcSChris Mason 	u32 crc = ~(u32)0;
272607d432dSJosef Bacik 	unsigned long inline_result;
27319c00ddcSChris Mason 
27419c00ddcSChris Mason 	len = buf->len - offset;
27519c00ddcSChris Mason 	while (len > 0) {
27619c00ddcSChris Mason 		err = map_private_extent_buffer(buf, offset, 32,
277a6591715SChris Mason 					&kaddr, &map_start, &map_len);
278d397712bSChris Mason 		if (err)
27919c00ddcSChris Mason 			return 1;
28019c00ddcSChris Mason 		cur_len = min(len, map_len - (offset - map_start));
281b0496686SLiu Bo 		crc = btrfs_csum_data(kaddr + offset - map_start,
28219c00ddcSChris Mason 				      crc, cur_len);
28319c00ddcSChris Mason 		len -= cur_len;
28419c00ddcSChris Mason 		offset += cur_len;
28519c00ddcSChris Mason 	}
286607d432dSJosef Bacik 	if (csum_size > sizeof(inline_result)) {
287607d432dSJosef Bacik 		result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
288607d432dSJosef Bacik 		if (!result)
289607d432dSJosef Bacik 			return 1;
290607d432dSJosef Bacik 	} else {
291607d432dSJosef Bacik 		result = (char *)&inline_result;
292607d432dSJosef Bacik 	}
293607d432dSJosef Bacik 
29419c00ddcSChris Mason 	btrfs_csum_final(crc, result);
29519c00ddcSChris Mason 
29619c00ddcSChris Mason 	if (verify) {
297607d432dSJosef Bacik 		if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
298e4204dedSChris Mason 			u32 val;
299e4204dedSChris Mason 			u32 found = 0;
300607d432dSJosef Bacik 			memcpy(&found, result, csum_size);
301e4204dedSChris Mason 
302607d432dSJosef Bacik 			read_extent_buffer(buf, &val, 0, csum_size);
303efe120a0SFrank Holton 			printk_ratelimited(KERN_INFO
304efe120a0SFrank Holton 				"BTRFS: %s checksum verify failed on %llu wanted %X found %X "
305193f284dSChris Mason 				"level %d\n",
306c1c9ff7cSGeert Uytterhoeven 				root->fs_info->sb->s_id, buf->start,
307c1c9ff7cSGeert Uytterhoeven 				val, found, btrfs_header_level(buf));
308607d432dSJosef Bacik 			if (result != (char *)&inline_result)
309607d432dSJosef Bacik 				kfree(result);
31019c00ddcSChris Mason 			return 1;
31119c00ddcSChris Mason 		}
31219c00ddcSChris Mason 	} else {
313607d432dSJosef Bacik 		write_extent_buffer(buf, result, 0, csum_size);
31419c00ddcSChris Mason 	}
315607d432dSJosef Bacik 	if (result != (char *)&inline_result)
316607d432dSJosef Bacik 		kfree(result);
31719c00ddcSChris Mason 	return 0;
31819c00ddcSChris Mason }
31919c00ddcSChris Mason 
320d352ac68SChris Mason /*
321d352ac68SChris Mason  * we can't consider a given block up to date unless the transid of the
322d352ac68SChris Mason  * block matches the transid in the parent node's pointer.  This is how we
323d352ac68SChris Mason  * detect blocks that either didn't get written at all or got written
324d352ac68SChris Mason  * in the wrong place.
325d352ac68SChris Mason  */
3261259ab75SChris Mason static int verify_parent_transid(struct extent_io_tree *io_tree,
327b9fab919SChris Mason 				 struct extent_buffer *eb, u64 parent_transid,
328b9fab919SChris Mason 				 int atomic)
3291259ab75SChris Mason {
3302ac55d41SJosef Bacik 	struct extent_state *cached_state = NULL;
3311259ab75SChris Mason 	int ret;
3321259ab75SChris Mason 
3331259ab75SChris Mason 	if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
3341259ab75SChris Mason 		return 0;
3351259ab75SChris Mason 
336b9fab919SChris Mason 	if (atomic)
337b9fab919SChris Mason 		return -EAGAIN;
338b9fab919SChris Mason 
3392ac55d41SJosef Bacik 	lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1,
340d0082371SJeff Mahoney 			 0, &cached_state);
3410b32f4bbSJosef Bacik 	if (extent_buffer_uptodate(eb) &&
3421259ab75SChris Mason 	    btrfs_header_generation(eb) == parent_transid) {
3431259ab75SChris Mason 		ret = 0;
3441259ab75SChris Mason 		goto out;
3451259ab75SChris Mason 	}
3467a36ddecSDavid Sterba 	printk_ratelimited("parent transid verify failed on %llu wanted %llu "
347193f284dSChris Mason 		       "found %llu\n",
348c1c9ff7cSGeert Uytterhoeven 		       eb->start, parent_transid, btrfs_header_generation(eb));
3491259ab75SChris Mason 	ret = 1;
3500b32f4bbSJosef Bacik 	clear_extent_buffer_uptodate(eb);
35133958dc6SChris Mason out:
3522ac55d41SJosef Bacik 	unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1,
3532ac55d41SJosef Bacik 			     &cached_state, GFP_NOFS);
3541259ab75SChris Mason 	return ret;
3551259ab75SChris Mason }
3561259ab75SChris Mason 
357d352ac68SChris Mason /*
3581104a885SDavid Sterba  * Return 0 if the superblock checksum type matches the checksum value of that
3591104a885SDavid Sterba  * algorithm. Pass the raw disk superblock data.
3601104a885SDavid Sterba  */
3611104a885SDavid Sterba static int btrfs_check_super_csum(char *raw_disk_sb)
3621104a885SDavid Sterba {
3631104a885SDavid Sterba 	struct btrfs_super_block *disk_sb =
3641104a885SDavid Sterba 		(struct btrfs_super_block *)raw_disk_sb;
3651104a885SDavid Sterba 	u16 csum_type = btrfs_super_csum_type(disk_sb);
3661104a885SDavid Sterba 	int ret = 0;
3671104a885SDavid Sterba 
3681104a885SDavid Sterba 	if (csum_type == BTRFS_CSUM_TYPE_CRC32) {
3691104a885SDavid Sterba 		u32 crc = ~(u32)0;
3701104a885SDavid Sterba 		const int csum_size = sizeof(crc);
3711104a885SDavid Sterba 		char result[csum_size];
3721104a885SDavid Sterba 
3731104a885SDavid Sterba 		/*
3741104a885SDavid Sterba 		 * The super_block structure does not span the whole
3751104a885SDavid Sterba 		 * BTRFS_SUPER_INFO_SIZE range, we expect that the unused space
3761104a885SDavid Sterba 		 * is filled with zeros and is included in the checkum.
3771104a885SDavid Sterba 		 */
3781104a885SDavid Sterba 		crc = btrfs_csum_data(raw_disk_sb + BTRFS_CSUM_SIZE,
3791104a885SDavid Sterba 				crc, BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
3801104a885SDavid Sterba 		btrfs_csum_final(crc, result);
3811104a885SDavid Sterba 
3821104a885SDavid Sterba 		if (memcmp(raw_disk_sb, result, csum_size))
3831104a885SDavid Sterba 			ret = 1;
384667e7d94SChris Mason 
385667e7d94SChris Mason 		if (ret && btrfs_super_generation(disk_sb) < 10) {
386efe120a0SFrank Holton 			printk(KERN_WARNING
387efe120a0SFrank Holton 				"BTRFS: super block crcs don't match, older mkfs detected\n");
388667e7d94SChris Mason 			ret = 0;
389667e7d94SChris Mason 		}
3901104a885SDavid Sterba 	}
3911104a885SDavid Sterba 
3921104a885SDavid Sterba 	if (csum_type >= ARRAY_SIZE(btrfs_csum_sizes)) {
393efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: unsupported checksum algorithm %u\n",
3941104a885SDavid Sterba 				csum_type);
3951104a885SDavid Sterba 		ret = 1;
3961104a885SDavid Sterba 	}
3971104a885SDavid Sterba 
3981104a885SDavid Sterba 	return ret;
3991104a885SDavid Sterba }
4001104a885SDavid Sterba 
4011104a885SDavid Sterba /*
402d352ac68SChris Mason  * helper to read a given tree block, doing retries as required when
403d352ac68SChris Mason  * the checksums don't match and we have alternate mirrors to try.
404d352ac68SChris Mason  */
405f188591eSChris Mason static int btree_read_extent_buffer_pages(struct btrfs_root *root,
406f188591eSChris Mason 					  struct extent_buffer *eb,
407ca7a79adSChris Mason 					  u64 start, u64 parent_transid)
408f188591eSChris Mason {
409f188591eSChris Mason 	struct extent_io_tree *io_tree;
410ea466794SJosef Bacik 	int failed = 0;
411f188591eSChris Mason 	int ret;
412f188591eSChris Mason 	int num_copies = 0;
413f188591eSChris Mason 	int mirror_num = 0;
414ea466794SJosef Bacik 	int failed_mirror = 0;
415f188591eSChris Mason 
416a826d6dcSJosef Bacik 	clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
417f188591eSChris Mason 	io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
418f188591eSChris Mason 	while (1) {
419bb82ab88SArne Jansen 		ret = read_extent_buffer_pages(io_tree, eb, start,
420bb82ab88SArne Jansen 					       WAIT_COMPLETE,
421f188591eSChris Mason 					       btree_get_extent, mirror_num);
422256dd1bbSStefan Behrens 		if (!ret) {
423256dd1bbSStefan Behrens 			if (!verify_parent_transid(io_tree, eb,
424b9fab919SChris Mason 						   parent_transid, 0))
425ea466794SJosef Bacik 				break;
426256dd1bbSStefan Behrens 			else
427256dd1bbSStefan Behrens 				ret = -EIO;
428256dd1bbSStefan Behrens 		}
429d397712bSChris Mason 
430a826d6dcSJosef Bacik 		/*
431a826d6dcSJosef Bacik 		 * This buffer's crc is fine, but its contents are corrupted, so
432a826d6dcSJosef Bacik 		 * there is no reason to read the other copies, they won't be
433a826d6dcSJosef Bacik 		 * any less wrong.
434a826d6dcSJosef Bacik 		 */
435a826d6dcSJosef Bacik 		if (test_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags))
436ea466794SJosef Bacik 			break;
437ea466794SJosef Bacik 
4385d964051SStefan Behrens 		num_copies = btrfs_num_copies(root->fs_info,
439f188591eSChris Mason 					      eb->start, eb->len);
4404235298eSChris Mason 		if (num_copies == 1)
441ea466794SJosef Bacik 			break;
4424235298eSChris Mason 
4435cf1ab56SJosef Bacik 		if (!failed_mirror) {
4445cf1ab56SJosef Bacik 			failed = 1;
4455cf1ab56SJosef Bacik 			failed_mirror = eb->read_mirror;
4465cf1ab56SJosef Bacik 		}
4475cf1ab56SJosef Bacik 
448f188591eSChris Mason 		mirror_num++;
449ea466794SJosef Bacik 		if (mirror_num == failed_mirror)
450ea466794SJosef Bacik 			mirror_num++;
451ea466794SJosef Bacik 
4524235298eSChris Mason 		if (mirror_num > num_copies)
453ea466794SJosef Bacik 			break;
454f188591eSChris Mason 	}
455ea466794SJosef Bacik 
456c0901581SStefan Behrens 	if (failed && !ret && failed_mirror)
457ea466794SJosef Bacik 		repair_eb_io_failure(root, eb, failed_mirror);
458ea466794SJosef Bacik 
459ea466794SJosef Bacik 	return ret;
460f188591eSChris Mason }
46119c00ddcSChris Mason 
462d352ac68SChris Mason /*
463d397712bSChris Mason  * checksum a dirty tree block before IO.  This has extra checks to make sure
464d397712bSChris Mason  * we only fill in the checksum field in the first page of a multi-page block
465d352ac68SChris Mason  */
466d397712bSChris Mason 
467b2950863SChristoph Hellwig static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
46819c00ddcSChris Mason {
4694eee4fa4SMiao Xie 	u64 start = page_offset(page);
47019c00ddcSChris Mason 	u64 found_start;
47119c00ddcSChris Mason 	struct extent_buffer *eb;
472f188591eSChris Mason 
4734f2de97aSJosef Bacik 	eb = (struct extent_buffer *)page->private;
4744f2de97aSJosef Bacik 	if (page != eb->pages[0])
4754f2de97aSJosef Bacik 		return 0;
47619c00ddcSChris Mason 	found_start = btrfs_header_bytenr(eb);
477fae7f21cSDulshani Gunawardhana 	if (WARN_ON(found_start != start || !PageUptodate(page)))
4784f2de97aSJosef Bacik 		return 0;
47919c00ddcSChris Mason 	csum_tree_block(root, eb, 0);
48019c00ddcSChris Mason 	return 0;
48119c00ddcSChris Mason }
48219c00ddcSChris Mason 
4832b82032cSYan Zheng static int check_tree_block_fsid(struct btrfs_root *root,
4842b82032cSYan Zheng 				 struct extent_buffer *eb)
4852b82032cSYan Zheng {
4862b82032cSYan Zheng 	struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
4872b82032cSYan Zheng 	u8 fsid[BTRFS_UUID_SIZE];
4882b82032cSYan Zheng 	int ret = 1;
4892b82032cSYan Zheng 
4900a4e5586SRoss Kirk 	read_extent_buffer(eb, fsid, btrfs_header_fsid(), BTRFS_FSID_SIZE);
4912b82032cSYan Zheng 	while (fs_devices) {
4922b82032cSYan Zheng 		if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
4932b82032cSYan Zheng 			ret = 0;
4942b82032cSYan Zheng 			break;
4952b82032cSYan Zheng 		}
4962b82032cSYan Zheng 		fs_devices = fs_devices->seed;
4972b82032cSYan Zheng 	}
4982b82032cSYan Zheng 	return ret;
4992b82032cSYan Zheng }
5002b82032cSYan Zheng 
501a826d6dcSJosef Bacik #define CORRUPT(reason, eb, root, slot)				\
502efe120a0SFrank Holton 	btrfs_crit(root->fs_info, "corrupt leaf, %s: block=%llu,"	\
503efe120a0SFrank Holton 		   "root=%llu, slot=%d", reason,			\
504c1c9ff7cSGeert Uytterhoeven 	       btrfs_header_bytenr(eb),	root->objectid, slot)
505a826d6dcSJosef Bacik 
506a826d6dcSJosef Bacik static noinline int check_leaf(struct btrfs_root *root,
507a826d6dcSJosef Bacik 			       struct extent_buffer *leaf)
508a826d6dcSJosef Bacik {
509a826d6dcSJosef Bacik 	struct btrfs_key key;
510a826d6dcSJosef Bacik 	struct btrfs_key leaf_key;
511a826d6dcSJosef Bacik 	u32 nritems = btrfs_header_nritems(leaf);
512a826d6dcSJosef Bacik 	int slot;
513a826d6dcSJosef Bacik 
514a826d6dcSJosef Bacik 	if (nritems == 0)
515a826d6dcSJosef Bacik 		return 0;
516a826d6dcSJosef Bacik 
517a826d6dcSJosef Bacik 	/* Check the 0 item */
518a826d6dcSJosef Bacik 	if (btrfs_item_offset_nr(leaf, 0) + btrfs_item_size_nr(leaf, 0) !=
519a826d6dcSJosef Bacik 	    BTRFS_LEAF_DATA_SIZE(root)) {
520a826d6dcSJosef Bacik 		CORRUPT("invalid item offset size pair", leaf, root, 0);
521a826d6dcSJosef Bacik 		return -EIO;
522a826d6dcSJosef Bacik 	}
523a826d6dcSJosef Bacik 
524a826d6dcSJosef Bacik 	/*
525a826d6dcSJosef Bacik 	 * Check to make sure each items keys are in the correct order and their
526a826d6dcSJosef Bacik 	 * offsets make sense.  We only have to loop through nritems-1 because
527a826d6dcSJosef Bacik 	 * we check the current slot against the next slot, which verifies the
528a826d6dcSJosef Bacik 	 * next slot's offset+size makes sense and that the current's slot
529a826d6dcSJosef Bacik 	 * offset is correct.
530a826d6dcSJosef Bacik 	 */
531a826d6dcSJosef Bacik 	for (slot = 0; slot < nritems - 1; slot++) {
532a826d6dcSJosef Bacik 		btrfs_item_key_to_cpu(leaf, &leaf_key, slot);
533a826d6dcSJosef Bacik 		btrfs_item_key_to_cpu(leaf, &key, slot + 1);
534a826d6dcSJosef Bacik 
535a826d6dcSJosef Bacik 		/* Make sure the keys are in the right order */
536a826d6dcSJosef Bacik 		if (btrfs_comp_cpu_keys(&leaf_key, &key) >= 0) {
537a826d6dcSJosef Bacik 			CORRUPT("bad key order", leaf, root, slot);
538a826d6dcSJosef Bacik 			return -EIO;
539a826d6dcSJosef Bacik 		}
540a826d6dcSJosef Bacik 
541a826d6dcSJosef Bacik 		/*
542a826d6dcSJosef Bacik 		 * Make sure the offset and ends are right, remember that the
543a826d6dcSJosef Bacik 		 * item data starts at the end of the leaf and grows towards the
544a826d6dcSJosef Bacik 		 * front.
545a826d6dcSJosef Bacik 		 */
546a826d6dcSJosef Bacik 		if (btrfs_item_offset_nr(leaf, slot) !=
547a826d6dcSJosef Bacik 			btrfs_item_end_nr(leaf, slot + 1)) {
548a826d6dcSJosef Bacik 			CORRUPT("slot offset bad", leaf, root, slot);
549a826d6dcSJosef Bacik 			return -EIO;
550a826d6dcSJosef Bacik 		}
551a826d6dcSJosef Bacik 
552a826d6dcSJosef Bacik 		/*
553a826d6dcSJosef Bacik 		 * Check to make sure that we don't point outside of the leaf,
554a826d6dcSJosef Bacik 		 * just incase all the items are consistent to eachother, but
555a826d6dcSJosef Bacik 		 * all point outside of the leaf.
556a826d6dcSJosef Bacik 		 */
557a826d6dcSJosef Bacik 		if (btrfs_item_end_nr(leaf, slot) >
558a826d6dcSJosef Bacik 		    BTRFS_LEAF_DATA_SIZE(root)) {
559a826d6dcSJosef Bacik 			CORRUPT("slot end outside of leaf", leaf, root, slot);
560a826d6dcSJosef Bacik 			return -EIO;
561a826d6dcSJosef Bacik 		}
562a826d6dcSJosef Bacik 	}
563a826d6dcSJosef Bacik 
564a826d6dcSJosef Bacik 	return 0;
565a826d6dcSJosef Bacik }
566a826d6dcSJosef Bacik 
567facc8a22SMiao Xie static int btree_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
568facc8a22SMiao Xie 				      u64 phy_offset, struct page *page,
569facc8a22SMiao Xie 				      u64 start, u64 end, int mirror)
570ce9adaa5SChris Mason {
571ce9adaa5SChris Mason 	u64 found_start;
572ce9adaa5SChris Mason 	int found_level;
573ce9adaa5SChris Mason 	struct extent_buffer *eb;
574ce9adaa5SChris Mason 	struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
575f188591eSChris Mason 	int ret = 0;
576727011e0SChris Mason 	int reads_done;
577ce9adaa5SChris Mason 
578ce9adaa5SChris Mason 	if (!page->private)
579ce9adaa5SChris Mason 		goto out;
580d397712bSChris Mason 
5814f2de97aSJosef Bacik 	eb = (struct extent_buffer *)page->private;
582d397712bSChris Mason 
5830b32f4bbSJosef Bacik 	/* the pending IO might have been the only thing that kept this buffer
5840b32f4bbSJosef Bacik 	 * in memory.  Make sure we have a ref for all this other checks
5850b32f4bbSJosef Bacik 	 */
5860b32f4bbSJosef Bacik 	extent_buffer_get(eb);
5870b32f4bbSJosef Bacik 
5880b32f4bbSJosef Bacik 	reads_done = atomic_dec_and_test(&eb->io_pages);
589727011e0SChris Mason 	if (!reads_done)
590727011e0SChris Mason 		goto err;
591f188591eSChris Mason 
5925cf1ab56SJosef Bacik 	eb->read_mirror = mirror;
593ea466794SJosef Bacik 	if (test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
594ea466794SJosef Bacik 		ret = -EIO;
595ea466794SJosef Bacik 		goto err;
596ea466794SJosef Bacik 	}
597ea466794SJosef Bacik 
598ce9adaa5SChris Mason 	found_start = btrfs_header_bytenr(eb);
599727011e0SChris Mason 	if (found_start != eb->start) {
600efe120a0SFrank Holton 		printk_ratelimited(KERN_INFO "BTRFS: bad tree block start "
601193f284dSChris Mason 			       "%llu %llu\n",
602c1c9ff7cSGeert Uytterhoeven 			       found_start, eb->start);
603f188591eSChris Mason 		ret = -EIO;
604ce9adaa5SChris Mason 		goto err;
605ce9adaa5SChris Mason 	}
6062b82032cSYan Zheng 	if (check_tree_block_fsid(root, eb)) {
607efe120a0SFrank Holton 		printk_ratelimited(KERN_INFO "BTRFS: bad fsid on block %llu\n",
608c1c9ff7cSGeert Uytterhoeven 			       eb->start);
6091259ab75SChris Mason 		ret = -EIO;
6101259ab75SChris Mason 		goto err;
6111259ab75SChris Mason 	}
612ce9adaa5SChris Mason 	found_level = btrfs_header_level(eb);
6131c24c3ceSJosef Bacik 	if (found_level >= BTRFS_MAX_LEVEL) {
614efe120a0SFrank Holton 		btrfs_info(root->fs_info, "bad tree block level %d",
6151c24c3ceSJosef Bacik 			   (int)btrfs_header_level(eb));
6161c24c3ceSJosef Bacik 		ret = -EIO;
6171c24c3ceSJosef Bacik 		goto err;
6181c24c3ceSJosef Bacik 	}
619ce9adaa5SChris Mason 
62085d4e461SChris Mason 	btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb),
62185d4e461SChris Mason 				       eb, found_level);
6224008c04aSChris Mason 
623ce9adaa5SChris Mason 	ret = csum_tree_block(root, eb, 1);
624a826d6dcSJosef Bacik 	if (ret) {
625f188591eSChris Mason 		ret = -EIO;
626a826d6dcSJosef Bacik 		goto err;
627a826d6dcSJosef Bacik 	}
628a826d6dcSJosef Bacik 
629a826d6dcSJosef Bacik 	/*
630a826d6dcSJosef Bacik 	 * If this is a leaf block and it is corrupt, set the corrupt bit so
631a826d6dcSJosef Bacik 	 * that we don't try and read the other copies of this block, just
632a826d6dcSJosef Bacik 	 * return -EIO.
633a826d6dcSJosef Bacik 	 */
634a826d6dcSJosef Bacik 	if (found_level == 0 && check_leaf(root, eb)) {
635a826d6dcSJosef Bacik 		set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
636a826d6dcSJosef Bacik 		ret = -EIO;
637a826d6dcSJosef Bacik 	}
638ce9adaa5SChris Mason 
6390b32f4bbSJosef Bacik 	if (!ret)
6400b32f4bbSJosef Bacik 		set_extent_buffer_uptodate(eb);
641ce9adaa5SChris Mason err:
64279fb65a1SJosef Bacik 	if (reads_done &&
64379fb65a1SJosef Bacik 	    test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
6444bb31e92SArne Jansen 		btree_readahead_hook(root, eb, eb->start, ret);
6454bb31e92SArne Jansen 
64653b381b3SDavid Woodhouse 	if (ret) {
64753b381b3SDavid Woodhouse 		/*
64853b381b3SDavid Woodhouse 		 * our io error hook is going to dec the io pages
64953b381b3SDavid Woodhouse 		 * again, we have to make sure it has something
65053b381b3SDavid Woodhouse 		 * to decrement
65153b381b3SDavid Woodhouse 		 */
65253b381b3SDavid Woodhouse 		atomic_inc(&eb->io_pages);
6530b32f4bbSJosef Bacik 		clear_extent_buffer_uptodate(eb);
65453b381b3SDavid Woodhouse 	}
6550b32f4bbSJosef Bacik 	free_extent_buffer(eb);
656ce9adaa5SChris Mason out:
657f188591eSChris Mason 	return ret;
658ce9adaa5SChris Mason }
659ce9adaa5SChris Mason 
660ea466794SJosef Bacik static int btree_io_failed_hook(struct page *page, int failed_mirror)
6614bb31e92SArne Jansen {
6624bb31e92SArne Jansen 	struct extent_buffer *eb;
6634bb31e92SArne Jansen 	struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
6644bb31e92SArne Jansen 
6654f2de97aSJosef Bacik 	eb = (struct extent_buffer *)page->private;
666ea466794SJosef Bacik 	set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
6675cf1ab56SJosef Bacik 	eb->read_mirror = failed_mirror;
66853b381b3SDavid Woodhouse 	atomic_dec(&eb->io_pages);
669ea466794SJosef Bacik 	if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
6704bb31e92SArne Jansen 		btree_readahead_hook(root, eb, eb->start, -EIO);
6714bb31e92SArne Jansen 	return -EIO;	/* we fixed nothing */
6724bb31e92SArne Jansen }
6734bb31e92SArne Jansen 
674ce9adaa5SChris Mason static void end_workqueue_bio(struct bio *bio, int err)
675ce9adaa5SChris Mason {
676ce9adaa5SChris Mason 	struct end_io_wq *end_io_wq = bio->bi_private;
677ce9adaa5SChris Mason 	struct btrfs_fs_info *fs_info;
678ce9adaa5SChris Mason 
679ce9adaa5SChris Mason 	fs_info = end_io_wq->info;
680ce9adaa5SChris Mason 	end_io_wq->error = err;
681fccb5d86SQu Wenruo 	btrfs_init_work(&end_io_wq->work, end_workqueue_fn, NULL, NULL);
682d20f7043SChris Mason 
6837b6d91daSChristoph Hellwig 	if (bio->bi_rw & REQ_WRITE) {
68453b381b3SDavid Woodhouse 		if (end_io_wq->metadata == BTRFS_WQ_ENDIO_METADATA)
685fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_meta_write_workers,
686cad321adSChris Mason 					 &end_io_wq->work);
68753b381b3SDavid Woodhouse 		else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_FREE_SPACE)
688fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_freespace_worker,
6890cb59c99SJosef Bacik 					 &end_io_wq->work);
69053b381b3SDavid Woodhouse 		else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56)
691fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_raid56_workers,
69253b381b3SDavid Woodhouse 					 &end_io_wq->work);
693cad321adSChris Mason 		else
694fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_write_workers,
695e6dcd2dcSChris Mason 					 &end_io_wq->work);
696d20f7043SChris Mason 	} else {
69753b381b3SDavid Woodhouse 		if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56)
698fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_raid56_workers,
69953b381b3SDavid Woodhouse 					 &end_io_wq->work);
70053b381b3SDavid Woodhouse 		else if (end_io_wq->metadata)
701fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_meta_workers,
702d20f7043SChris Mason 					 &end_io_wq->work);
703e6dcd2dcSChris Mason 		else
704fccb5d86SQu Wenruo 			btrfs_queue_work(fs_info->endio_workers,
705d20f7043SChris Mason 					 &end_io_wq->work);
706d20f7043SChris Mason 	}
707ce9adaa5SChris Mason }
708ce9adaa5SChris Mason 
7090cb59c99SJosef Bacik /*
7100cb59c99SJosef Bacik  * For the metadata arg you want
7110cb59c99SJosef Bacik  *
7120cb59c99SJosef Bacik  * 0 - if data
7130cb59c99SJosef Bacik  * 1 - if normal metadta
7140cb59c99SJosef Bacik  * 2 - if writing to the free space cache area
71553b381b3SDavid Woodhouse  * 3 - raid parity work
7160cb59c99SJosef Bacik  */
71722c59948SChris Mason int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
71822c59948SChris Mason 			int metadata)
7190b86a832SChris Mason {
720ce9adaa5SChris Mason 	struct end_io_wq *end_io_wq;
721ce9adaa5SChris Mason 	end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
722ce9adaa5SChris Mason 	if (!end_io_wq)
723ce9adaa5SChris Mason 		return -ENOMEM;
724ce9adaa5SChris Mason 
725ce9adaa5SChris Mason 	end_io_wq->private = bio->bi_private;
726ce9adaa5SChris Mason 	end_io_wq->end_io = bio->bi_end_io;
72722c59948SChris Mason 	end_io_wq->info = info;
728ce9adaa5SChris Mason 	end_io_wq->error = 0;
729ce9adaa5SChris Mason 	end_io_wq->bio = bio;
73022c59948SChris Mason 	end_io_wq->metadata = metadata;
731ce9adaa5SChris Mason 
732ce9adaa5SChris Mason 	bio->bi_private = end_io_wq;
733ce9adaa5SChris Mason 	bio->bi_end_io = end_workqueue_bio;
73422c59948SChris Mason 	return 0;
73522c59948SChris Mason }
73622c59948SChris Mason 
737b64a2851SChris Mason unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
7384854ddd0SChris Mason {
7394854ddd0SChris Mason 	unsigned long limit = min_t(unsigned long,
7405cdc7ad3SQu Wenruo 				    info->thread_pool_size,
7414854ddd0SChris Mason 				    info->fs_devices->open_devices);
7424854ddd0SChris Mason 	return 256 * limit;
7434854ddd0SChris Mason }
7444854ddd0SChris Mason 
745d458b054SQu Wenruo static void run_one_async_start(struct btrfs_work *work)
7464a69a410SChris Mason {
7474a69a410SChris Mason 	struct async_submit_bio *async;
74879787eaaSJeff Mahoney 	int ret;
7494a69a410SChris Mason 
7504a69a410SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
75179787eaaSJeff Mahoney 	ret = async->submit_bio_start(async->inode, async->rw, async->bio,
752eaf25d93SChris Mason 				      async->mirror_num, async->bio_flags,
753eaf25d93SChris Mason 				      async->bio_offset);
75479787eaaSJeff Mahoney 	if (ret)
75579787eaaSJeff Mahoney 		async->error = ret;
7564a69a410SChris Mason }
7574a69a410SChris Mason 
758d458b054SQu Wenruo static void run_one_async_done(struct btrfs_work *work)
7598b712842SChris Mason {
7608b712842SChris Mason 	struct btrfs_fs_info *fs_info;
7618b712842SChris Mason 	struct async_submit_bio *async;
7624854ddd0SChris Mason 	int limit;
7638b712842SChris Mason 
7648b712842SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
7658b712842SChris Mason 	fs_info = BTRFS_I(async->inode)->root->fs_info;
7664854ddd0SChris Mason 
767b64a2851SChris Mason 	limit = btrfs_async_submit_limit(fs_info);
7684854ddd0SChris Mason 	limit = limit * 2 / 3;
7694854ddd0SChris Mason 
77066657b31SJosef Bacik 	if (atomic_dec_return(&fs_info->nr_async_submits) < limit &&
771b64a2851SChris Mason 	    waitqueue_active(&fs_info->async_submit_wait))
7724854ddd0SChris Mason 		wake_up(&fs_info->async_submit_wait);
7734854ddd0SChris Mason 
77479787eaaSJeff Mahoney 	/* If an error occured we just want to clean up the bio and move on */
77579787eaaSJeff Mahoney 	if (async->error) {
77679787eaaSJeff Mahoney 		bio_endio(async->bio, async->error);
77779787eaaSJeff Mahoney 		return;
77879787eaaSJeff Mahoney 	}
77979787eaaSJeff Mahoney 
7804a69a410SChris Mason 	async->submit_bio_done(async->inode, async->rw, async->bio,
781eaf25d93SChris Mason 			       async->mirror_num, async->bio_flags,
782eaf25d93SChris Mason 			       async->bio_offset);
7834a69a410SChris Mason }
7844a69a410SChris Mason 
785d458b054SQu Wenruo static void run_one_async_free(struct btrfs_work *work)
7864a69a410SChris Mason {
7874a69a410SChris Mason 	struct async_submit_bio *async;
7884a69a410SChris Mason 
7894a69a410SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
7908b712842SChris Mason 	kfree(async);
7918b712842SChris Mason }
7928b712842SChris Mason 
79344b8bd7eSChris Mason int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
79444b8bd7eSChris Mason 			int rw, struct bio *bio, int mirror_num,
795c8b97818SChris Mason 			unsigned long bio_flags,
796eaf25d93SChris Mason 			u64 bio_offset,
7974a69a410SChris Mason 			extent_submit_bio_hook_t *submit_bio_start,
7984a69a410SChris Mason 			extent_submit_bio_hook_t *submit_bio_done)
79944b8bd7eSChris Mason {
80044b8bd7eSChris Mason 	struct async_submit_bio *async;
80144b8bd7eSChris Mason 
80244b8bd7eSChris Mason 	async = kmalloc(sizeof(*async), GFP_NOFS);
80344b8bd7eSChris Mason 	if (!async)
80444b8bd7eSChris Mason 		return -ENOMEM;
80544b8bd7eSChris Mason 
80644b8bd7eSChris Mason 	async->inode = inode;
80744b8bd7eSChris Mason 	async->rw = rw;
80844b8bd7eSChris Mason 	async->bio = bio;
80944b8bd7eSChris Mason 	async->mirror_num = mirror_num;
8104a69a410SChris Mason 	async->submit_bio_start = submit_bio_start;
8114a69a410SChris Mason 	async->submit_bio_done = submit_bio_done;
8124a69a410SChris Mason 
8135cdc7ad3SQu Wenruo 	btrfs_init_work(&async->work, run_one_async_start,
8145cdc7ad3SQu Wenruo 			run_one_async_done, run_one_async_free);
8154a69a410SChris Mason 
816c8b97818SChris Mason 	async->bio_flags = bio_flags;
817eaf25d93SChris Mason 	async->bio_offset = bio_offset;
8188c8bee1dSChris Mason 
81979787eaaSJeff Mahoney 	async->error = 0;
82079787eaaSJeff Mahoney 
821cb03c743SChris Mason 	atomic_inc(&fs_info->nr_async_submits);
822d313d7a3SChris Mason 
8237b6d91daSChristoph Hellwig 	if (rw & REQ_SYNC)
8245cdc7ad3SQu Wenruo 		btrfs_set_work_high_priority(&async->work);
825d313d7a3SChris Mason 
8265cdc7ad3SQu Wenruo 	btrfs_queue_work(fs_info->workers, &async->work);
8279473f16cSChris Mason 
828771ed689SChris Mason 	while (atomic_read(&fs_info->async_submit_draining) &&
829771ed689SChris Mason 	      atomic_read(&fs_info->nr_async_submits)) {
830771ed689SChris Mason 		wait_event(fs_info->async_submit_wait,
831771ed689SChris Mason 			   (atomic_read(&fs_info->nr_async_submits) == 0));
832771ed689SChris Mason 	}
833771ed689SChris Mason 
83444b8bd7eSChris Mason 	return 0;
83544b8bd7eSChris Mason }
83644b8bd7eSChris Mason 
837ce3ed71aSChris Mason static int btree_csum_one_bio(struct bio *bio)
838ce3ed71aSChris Mason {
839ce3ed71aSChris Mason 	struct bio_vec *bvec = bio->bi_io_vec;
840ce3ed71aSChris Mason 	int bio_index = 0;
841ce3ed71aSChris Mason 	struct btrfs_root *root;
84279787eaaSJeff Mahoney 	int ret = 0;
843ce3ed71aSChris Mason 
844ce3ed71aSChris Mason 	WARN_ON(bio->bi_vcnt <= 0);
845ce3ed71aSChris Mason 	while (bio_index < bio->bi_vcnt) {
846ce3ed71aSChris Mason 		root = BTRFS_I(bvec->bv_page->mapping->host)->root;
84779787eaaSJeff Mahoney 		ret = csum_dirty_buffer(root, bvec->bv_page);
84879787eaaSJeff Mahoney 		if (ret)
84979787eaaSJeff Mahoney 			break;
850ce3ed71aSChris Mason 		bio_index++;
851ce3ed71aSChris Mason 		bvec++;
852ce3ed71aSChris Mason 	}
85379787eaaSJeff Mahoney 	return ret;
854ce3ed71aSChris Mason }
855ce3ed71aSChris Mason 
8564a69a410SChris Mason static int __btree_submit_bio_start(struct inode *inode, int rw,
8574a69a410SChris Mason 				    struct bio *bio, int mirror_num,
858eaf25d93SChris Mason 				    unsigned long bio_flags,
859eaf25d93SChris Mason 				    u64 bio_offset)
86022c59948SChris Mason {
8618b712842SChris Mason 	/*
8628b712842SChris Mason 	 * when we're called for a write, we're already in the async
8635443be45SChris Mason 	 * submission context.  Just jump into btrfs_map_bio
8648b712842SChris Mason 	 */
86579787eaaSJeff Mahoney 	return btree_csum_one_bio(bio);
86622c59948SChris Mason }
86722c59948SChris Mason 
8684a69a410SChris Mason static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
869eaf25d93SChris Mason 				 int mirror_num, unsigned long bio_flags,
870eaf25d93SChris Mason 				 u64 bio_offset)
8714a69a410SChris Mason {
87261891923SStefan Behrens 	int ret;
87361891923SStefan Behrens 
8748b712842SChris Mason 	/*
8754a69a410SChris Mason 	 * when we're called for a write, we're already in the async
8764a69a410SChris Mason 	 * submission context.  Just jump into btrfs_map_bio
8778b712842SChris Mason 	 */
87861891923SStefan Behrens 	ret = btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
87961891923SStefan Behrens 	if (ret)
88061891923SStefan Behrens 		bio_endio(bio, ret);
88161891923SStefan Behrens 	return ret;
8820b86a832SChris Mason }
8830b86a832SChris Mason 
884de0022b9SJosef Bacik static int check_async_write(struct inode *inode, unsigned long bio_flags)
885de0022b9SJosef Bacik {
886de0022b9SJosef Bacik 	if (bio_flags & EXTENT_BIO_TREE_LOG)
887de0022b9SJosef Bacik 		return 0;
888de0022b9SJosef Bacik #ifdef CONFIG_X86
889de0022b9SJosef Bacik 	if (cpu_has_xmm4_2)
890de0022b9SJosef Bacik 		return 0;
891de0022b9SJosef Bacik #endif
892de0022b9SJosef Bacik 	return 1;
893de0022b9SJosef Bacik }
894de0022b9SJosef Bacik 
89544b8bd7eSChris Mason static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
896eaf25d93SChris Mason 				 int mirror_num, unsigned long bio_flags,
897eaf25d93SChris Mason 				 u64 bio_offset)
89844b8bd7eSChris Mason {
899de0022b9SJosef Bacik 	int async = check_async_write(inode, bio_flags);
9004a69a410SChris Mason 	int ret;
901cad321adSChris Mason 
9027b6d91daSChristoph Hellwig 	if (!(rw & REQ_WRITE)) {
903cad321adSChris Mason 		/*
904cad321adSChris Mason 		 * called for a read, do the setup so that checksum validation
905cad321adSChris Mason 		 * can happen in the async kernel threads
906cad321adSChris Mason 		 */
907f3f266abSChris Mason 		ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info,
908f3f266abSChris Mason 					  bio, 1);
9091d4284bdSChris Mason 		if (ret)
91061891923SStefan Behrens 			goto out_w_error;
91161891923SStefan Behrens 		ret = btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
9126f3577bdSChris Mason 				    mirror_num, 0);
913de0022b9SJosef Bacik 	} else if (!async) {
914de0022b9SJosef Bacik 		ret = btree_csum_one_bio(bio);
915de0022b9SJosef Bacik 		if (ret)
91661891923SStefan Behrens 			goto out_w_error;
91761891923SStefan Behrens 		ret = btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
918de0022b9SJosef Bacik 				    mirror_num, 0);
91961891923SStefan Behrens 	} else {
920cad321adSChris Mason 		/*
92161891923SStefan Behrens 		 * kthread helpers are used to submit writes so that
92261891923SStefan Behrens 		 * checksumming can happen in parallel across all CPUs
923cad321adSChris Mason 		 */
92461891923SStefan Behrens 		ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
925c8b97818SChris Mason 					  inode, rw, bio, mirror_num, 0,
926eaf25d93SChris Mason 					  bio_offset,
9274a69a410SChris Mason 					  __btree_submit_bio_start,
9284a69a410SChris Mason 					  __btree_submit_bio_done);
92944b8bd7eSChris Mason 	}
93044b8bd7eSChris Mason 
93161891923SStefan Behrens 	if (ret) {
93261891923SStefan Behrens out_w_error:
93361891923SStefan Behrens 		bio_endio(bio, ret);
93461891923SStefan Behrens 	}
93561891923SStefan Behrens 	return ret;
93661891923SStefan Behrens }
93761891923SStefan Behrens 
9383dd1462eSJan Beulich #ifdef CONFIG_MIGRATION
939784b4e29SChris Mason static int btree_migratepage(struct address_space *mapping,
940a6bc32b8SMel Gorman 			struct page *newpage, struct page *page,
941a6bc32b8SMel Gorman 			enum migrate_mode mode)
942784b4e29SChris Mason {
943784b4e29SChris Mason 	/*
944784b4e29SChris Mason 	 * we can't safely write a btree page from here,
945784b4e29SChris Mason 	 * we haven't done the locking hook
946784b4e29SChris Mason 	 */
947784b4e29SChris Mason 	if (PageDirty(page))
948784b4e29SChris Mason 		return -EAGAIN;
949784b4e29SChris Mason 	/*
950784b4e29SChris Mason 	 * Buffers may be managed in a filesystem specific way.
951784b4e29SChris Mason 	 * We must have no buffers or drop them.
952784b4e29SChris Mason 	 */
953784b4e29SChris Mason 	if (page_has_private(page) &&
954784b4e29SChris Mason 	    !try_to_release_page(page, GFP_KERNEL))
955784b4e29SChris Mason 		return -EAGAIN;
956a6bc32b8SMel Gorman 	return migrate_page(mapping, newpage, page, mode);
957784b4e29SChris Mason }
9583dd1462eSJan Beulich #endif
959784b4e29SChris Mason 
9600da5468fSChris Mason 
9610da5468fSChris Mason static int btree_writepages(struct address_space *mapping,
9620da5468fSChris Mason 			    struct writeback_control *wbc)
9630da5468fSChris Mason {
964e2d84521SMiao Xie 	struct btrfs_fs_info *fs_info;
965e2d84521SMiao Xie 	int ret;
966e2d84521SMiao Xie 
967d8d5f3e1SChris Mason 	if (wbc->sync_mode == WB_SYNC_NONE) {
968448d640bSChris Mason 
969448d640bSChris Mason 		if (wbc->for_kupdate)
970448d640bSChris Mason 			return 0;
971448d640bSChris Mason 
972e2d84521SMiao Xie 		fs_info = BTRFS_I(mapping->host)->root->fs_info;
973b9473439SChris Mason 		/* this is a bit racy, but that's ok */
974e2d84521SMiao Xie 		ret = percpu_counter_compare(&fs_info->dirty_metadata_bytes,
975e2d84521SMiao Xie 					     BTRFS_DIRTY_METADATA_THRESH);
976e2d84521SMiao Xie 		if (ret < 0)
977793955bcSChris Mason 			return 0;
978793955bcSChris Mason 	}
9790b32f4bbSJosef Bacik 	return btree_write_cache_pages(mapping, wbc);
9800da5468fSChris Mason }
9810da5468fSChris Mason 
982b2950863SChristoph Hellwig static int btree_readpage(struct file *file, struct page *page)
9835f39d397SChris Mason {
984d1310b2eSChris Mason 	struct extent_io_tree *tree;
985d1310b2eSChris Mason 	tree = &BTRFS_I(page->mapping->host)->io_tree;
9868ddc7d9cSJan Schmidt 	return extent_read_full_page(tree, page, btree_get_extent, 0);
9875f39d397SChris Mason }
9885f39d397SChris Mason 
98970dec807SChris Mason static int btree_releasepage(struct page *page, gfp_t gfp_flags)
9905f39d397SChris Mason {
99198509cfcSChris Mason 	if (PageWriteback(page) || PageDirty(page))
99298509cfcSChris Mason 		return 0;
9930c4e538bSDavid Sterba 
994f7a52a40SDavid Sterba 	return try_release_extent_buffer(page);
995d98237b3SChris Mason }
996d98237b3SChris Mason 
997d47992f8SLukas Czerner static void btree_invalidatepage(struct page *page, unsigned int offset,
998d47992f8SLukas Czerner 				 unsigned int length)
999d98237b3SChris Mason {
1000d1310b2eSChris Mason 	struct extent_io_tree *tree;
1001d1310b2eSChris Mason 	tree = &BTRFS_I(page->mapping->host)->io_tree;
10025f39d397SChris Mason 	extent_invalidatepage(tree, page, offset);
10035f39d397SChris Mason 	btree_releasepage(page, GFP_NOFS);
10049ad6b7bcSChris Mason 	if (PagePrivate(page)) {
1005efe120a0SFrank Holton 		btrfs_warn(BTRFS_I(page->mapping->host)->root->fs_info,
1006efe120a0SFrank Holton 			   "page private not zero on page %llu",
1007efe120a0SFrank Holton 			   (unsigned long long)page_offset(page));
10089ad6b7bcSChris Mason 		ClearPagePrivate(page);
10099ad6b7bcSChris Mason 		set_page_private(page, 0);
10109ad6b7bcSChris Mason 		page_cache_release(page);
10119ad6b7bcSChris Mason 	}
1012d98237b3SChris Mason }
1013d98237b3SChris Mason 
10140b32f4bbSJosef Bacik static int btree_set_page_dirty(struct page *page)
10150b32f4bbSJosef Bacik {
1016bb146eb2SJosef Bacik #ifdef DEBUG
10170b32f4bbSJosef Bacik 	struct extent_buffer *eb;
10180b32f4bbSJosef Bacik 
10190b32f4bbSJosef Bacik 	BUG_ON(!PagePrivate(page));
10200b32f4bbSJosef Bacik 	eb = (struct extent_buffer *)page->private;
10210b32f4bbSJosef Bacik 	BUG_ON(!eb);
10220b32f4bbSJosef Bacik 	BUG_ON(!test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
10230b32f4bbSJosef Bacik 	BUG_ON(!atomic_read(&eb->refs));
10240b32f4bbSJosef Bacik 	btrfs_assert_tree_locked(eb);
1025bb146eb2SJosef Bacik #endif
10260b32f4bbSJosef Bacik 	return __set_page_dirty_nobuffers(page);
10270b32f4bbSJosef Bacik }
10280b32f4bbSJosef Bacik 
10297f09410bSAlexey Dobriyan static const struct address_space_operations btree_aops = {
1030d98237b3SChris Mason 	.readpage	= btree_readpage,
10310da5468fSChris Mason 	.writepages	= btree_writepages,
10325f39d397SChris Mason 	.releasepage	= btree_releasepage,
10335f39d397SChris Mason 	.invalidatepage = btree_invalidatepage,
10345a92bc88SChris Mason #ifdef CONFIG_MIGRATION
1035784b4e29SChris Mason 	.migratepage	= btree_migratepage,
10365a92bc88SChris Mason #endif
10370b32f4bbSJosef Bacik 	.set_page_dirty = btree_set_page_dirty,
1038d98237b3SChris Mason };
1039123abc88SChris Mason 
1040ca7a79adSChris Mason int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1041ca7a79adSChris Mason 			 u64 parent_transid)
1042090d1875SChris Mason {
10435f39d397SChris Mason 	struct extent_buffer *buf = NULL;
10445f39d397SChris Mason 	struct inode *btree_inode = root->fs_info->btree_inode;
1045de428b63SChris Mason 	int ret = 0;
1046090d1875SChris Mason 
1047db94535dSChris Mason 	buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
10485f39d397SChris Mason 	if (!buf)
1049090d1875SChris Mason 		return 0;
1050d1310b2eSChris Mason 	read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
1051bb82ab88SArne Jansen 				 buf, 0, WAIT_NONE, btree_get_extent, 0);
10525f39d397SChris Mason 	free_extent_buffer(buf);
1053de428b63SChris Mason 	return ret;
1054090d1875SChris Mason }
1055090d1875SChris Mason 
1056ab0fff03SArne Jansen int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1057ab0fff03SArne Jansen 			 int mirror_num, struct extent_buffer **eb)
1058ab0fff03SArne Jansen {
1059ab0fff03SArne Jansen 	struct extent_buffer *buf = NULL;
1060ab0fff03SArne Jansen 	struct inode *btree_inode = root->fs_info->btree_inode;
1061ab0fff03SArne Jansen 	struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree;
1062ab0fff03SArne Jansen 	int ret;
1063ab0fff03SArne Jansen 
1064ab0fff03SArne Jansen 	buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
1065ab0fff03SArne Jansen 	if (!buf)
1066ab0fff03SArne Jansen 		return 0;
1067ab0fff03SArne Jansen 
1068ab0fff03SArne Jansen 	set_bit(EXTENT_BUFFER_READAHEAD, &buf->bflags);
1069ab0fff03SArne Jansen 
1070ab0fff03SArne Jansen 	ret = read_extent_buffer_pages(io_tree, buf, 0, WAIT_PAGE_LOCK,
1071ab0fff03SArne Jansen 				       btree_get_extent, mirror_num);
1072ab0fff03SArne Jansen 	if (ret) {
1073ab0fff03SArne Jansen 		free_extent_buffer(buf);
1074ab0fff03SArne Jansen 		return ret;
1075ab0fff03SArne Jansen 	}
1076ab0fff03SArne Jansen 
1077ab0fff03SArne Jansen 	if (test_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags)) {
1078ab0fff03SArne Jansen 		free_extent_buffer(buf);
1079ab0fff03SArne Jansen 		return -EIO;
10800b32f4bbSJosef Bacik 	} else if (extent_buffer_uptodate(buf)) {
1081ab0fff03SArne Jansen 		*eb = buf;
1082ab0fff03SArne Jansen 	} else {
1083ab0fff03SArne Jansen 		free_extent_buffer(buf);
1084ab0fff03SArne Jansen 	}
1085ab0fff03SArne Jansen 	return 0;
1086ab0fff03SArne Jansen }
1087ab0fff03SArne Jansen 
10880999df54SChris Mason struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
10890999df54SChris Mason 					    u64 bytenr, u32 blocksize)
10900999df54SChris Mason {
1091f28491e0SJosef Bacik 	return find_extent_buffer(root->fs_info, bytenr);
10920999df54SChris Mason }
10930999df54SChris Mason 
10940999df54SChris Mason struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
10950999df54SChris Mason 						 u64 bytenr, u32 blocksize)
10960999df54SChris Mason {
1097f28491e0SJosef Bacik 	return alloc_extent_buffer(root->fs_info, bytenr, blocksize);
10980999df54SChris Mason }
10990999df54SChris Mason 
11000999df54SChris Mason 
1101e02119d5SChris Mason int btrfs_write_tree_block(struct extent_buffer *buf)
1102e02119d5SChris Mason {
1103727011e0SChris Mason 	return filemap_fdatawrite_range(buf->pages[0]->mapping, buf->start,
11048aa38c31SChristoph Hellwig 					buf->start + buf->len - 1);
1105e02119d5SChris Mason }
1106e02119d5SChris Mason 
1107e02119d5SChris Mason int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
1108e02119d5SChris Mason {
1109727011e0SChris Mason 	return filemap_fdatawait_range(buf->pages[0]->mapping,
11108aa38c31SChristoph Hellwig 				       buf->start, buf->start + buf->len - 1);
1111e02119d5SChris Mason }
1112e02119d5SChris Mason 
1113db94535dSChris Mason struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
1114ca7a79adSChris Mason 				      u32 blocksize, u64 parent_transid)
1115e20d96d6SChris Mason {
11165f39d397SChris Mason 	struct extent_buffer *buf = NULL;
111719c00ddcSChris Mason 	int ret;
111819c00ddcSChris Mason 
1119db94535dSChris Mason 	buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
11205f39d397SChris Mason 	if (!buf)
1121d98237b3SChris Mason 		return NULL;
1122e4204dedSChris Mason 
1123ca7a79adSChris Mason 	ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
11240f0fe8f7SFilipe David Borba Manana 	if (ret) {
11250f0fe8f7SFilipe David Borba Manana 		free_extent_buffer(buf);
11260f0fe8f7SFilipe David Borba Manana 		return NULL;
11270f0fe8f7SFilipe David Borba Manana 	}
11285f39d397SChris Mason 	return buf;
1129ce9adaa5SChris Mason 
1130eb60ceacSChris Mason }
1131eb60ceacSChris Mason 
1132d5c13f92SJeff Mahoney void clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
11335f39d397SChris Mason 		      struct extent_buffer *buf)
1134ed2ff2cbSChris Mason {
1135e2d84521SMiao Xie 	struct btrfs_fs_info *fs_info = root->fs_info;
1136e2d84521SMiao Xie 
113755c69072SChris Mason 	if (btrfs_header_generation(buf) ==
1138e2d84521SMiao Xie 	    fs_info->running_transaction->transid) {
1139b9447ef8SChris Mason 		btrfs_assert_tree_locked(buf);
1140b4ce94deSChris Mason 
1141b9473439SChris Mason 		if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
1142e2d84521SMiao Xie 			__percpu_counter_add(&fs_info->dirty_metadata_bytes,
1143e2d84521SMiao Xie 					     -buf->len,
1144e2d84521SMiao Xie 					     fs_info->dirty_metadata_batch);
1145b9473439SChris Mason 			/* ugh, clear_extent_buffer_dirty needs to lock the page */
1146b9473439SChris Mason 			btrfs_set_lock_blocking(buf);
11470b32f4bbSJosef Bacik 			clear_extent_buffer_dirty(buf);
1148925baeddSChris Mason 		}
11495f39d397SChris Mason 	}
1150ed7b63ebSJosef Bacik }
11515f39d397SChris Mason 
11528257b2dcSMiao Xie static struct btrfs_subvolume_writers *btrfs_alloc_subvolume_writers(void)
11538257b2dcSMiao Xie {
11548257b2dcSMiao Xie 	struct btrfs_subvolume_writers *writers;
11558257b2dcSMiao Xie 	int ret;
11568257b2dcSMiao Xie 
11578257b2dcSMiao Xie 	writers = kmalloc(sizeof(*writers), GFP_NOFS);
11588257b2dcSMiao Xie 	if (!writers)
11598257b2dcSMiao Xie 		return ERR_PTR(-ENOMEM);
11608257b2dcSMiao Xie 
11618257b2dcSMiao Xie 	ret = percpu_counter_init(&writers->counter, 0);
11628257b2dcSMiao Xie 	if (ret < 0) {
11638257b2dcSMiao Xie 		kfree(writers);
11648257b2dcSMiao Xie 		return ERR_PTR(ret);
11658257b2dcSMiao Xie 	}
11668257b2dcSMiao Xie 
11678257b2dcSMiao Xie 	init_waitqueue_head(&writers->wait);
11688257b2dcSMiao Xie 	return writers;
11698257b2dcSMiao Xie }
11708257b2dcSMiao Xie 
11718257b2dcSMiao Xie static void
11728257b2dcSMiao Xie btrfs_free_subvolume_writers(struct btrfs_subvolume_writers *writers)
11738257b2dcSMiao Xie {
11748257b2dcSMiao Xie 	percpu_counter_destroy(&writers->counter);
11758257b2dcSMiao Xie 	kfree(writers);
11768257b2dcSMiao Xie }
11778257b2dcSMiao Xie 
1178143bede5SJeff Mahoney static void __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
117987ee04ebSChris Mason 			 u32 stripesize, struct btrfs_root *root,
11809f5fae2fSChris Mason 			 struct btrfs_fs_info *fs_info,
1181e20d96d6SChris Mason 			 u64 objectid)
1182d97e63b6SChris Mason {
1183cfaa7295SChris Mason 	root->node = NULL;
1184a28ec197SChris Mason 	root->commit_root = NULL;
1185db94535dSChris Mason 	root->sectorsize = sectorsize;
1186db94535dSChris Mason 	root->nodesize = nodesize;
1187db94535dSChris Mason 	root->leafsize = leafsize;
118887ee04ebSChris Mason 	root->stripesize = stripesize;
1189123abc88SChris Mason 	root->ref_cows = 0;
11900b86a832SChris Mason 	root->track_dirty = 0;
1191c71bf099SYan, Zheng 	root->in_radix = 0;
1192d68fc57bSYan, Zheng 	root->orphan_item_inserted = 0;
1193d68fc57bSYan, Zheng 	root->orphan_cleanup_state = 0;
11940b86a832SChris Mason 
11950f7d52f4SChris Mason 	root->objectid = objectid;
11960f7d52f4SChris Mason 	root->last_trans = 0;
119713a8a7c8SYan, Zheng 	root->highest_objectid = 0;
1198eb73c1b7SMiao Xie 	root->nr_delalloc_inodes = 0;
1199199c2a9cSMiao Xie 	root->nr_ordered_extents = 0;
120058176a96SJosef Bacik 	root->name = NULL;
12016bef4d31SEric Paris 	root->inode_tree = RB_ROOT;
120216cdcec7SMiao Xie 	INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC);
1203f0486c68SYan, Zheng 	root->block_rsv = NULL;
1204d68fc57bSYan, Zheng 	root->orphan_block_rsv = NULL;
12050b86a832SChris Mason 
12060b86a832SChris Mason 	INIT_LIST_HEAD(&root->dirty_list);
12075d4f98a2SYan Zheng 	INIT_LIST_HEAD(&root->root_list);
1208eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&root->delalloc_inodes);
1209eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&root->delalloc_root);
1210199c2a9cSMiao Xie 	INIT_LIST_HEAD(&root->ordered_extents);
1211199c2a9cSMiao Xie 	INIT_LIST_HEAD(&root->ordered_root);
12122ab28f32SJosef Bacik 	INIT_LIST_HEAD(&root->logged_list[0]);
12132ab28f32SJosef Bacik 	INIT_LIST_HEAD(&root->logged_list[1]);
1214d68fc57bSYan, Zheng 	spin_lock_init(&root->orphan_lock);
12155d4f98a2SYan Zheng 	spin_lock_init(&root->inode_lock);
1216eb73c1b7SMiao Xie 	spin_lock_init(&root->delalloc_lock);
1217199c2a9cSMiao Xie 	spin_lock_init(&root->ordered_extent_lock);
1218f0486c68SYan, Zheng 	spin_lock_init(&root->accounting_lock);
12192ab28f32SJosef Bacik 	spin_lock_init(&root->log_extents_lock[0]);
12202ab28f32SJosef Bacik 	spin_lock_init(&root->log_extents_lock[1]);
1221a2135011SChris Mason 	mutex_init(&root->objectid_mutex);
1222e02119d5SChris Mason 	mutex_init(&root->log_mutex);
122331f3d255SMiao Xie 	mutex_init(&root->ordered_extent_mutex);
1224573bfb72SMiao Xie 	mutex_init(&root->delalloc_mutex);
12257237f183SYan Zheng 	init_waitqueue_head(&root->log_writer_wait);
12267237f183SYan Zheng 	init_waitqueue_head(&root->log_commit_wait[0]);
12277237f183SYan Zheng 	init_waitqueue_head(&root->log_commit_wait[1]);
12288b050d35SMiao Xie 	INIT_LIST_HEAD(&root->log_ctxs[0]);
12298b050d35SMiao Xie 	INIT_LIST_HEAD(&root->log_ctxs[1]);
12307237f183SYan Zheng 	atomic_set(&root->log_commit[0], 0);
12317237f183SYan Zheng 	atomic_set(&root->log_commit[1], 0);
12327237f183SYan Zheng 	atomic_set(&root->log_writers, 0);
12332ecb7923SMiao Xie 	atomic_set(&root->log_batch, 0);
12348a35d95fSJosef Bacik 	atomic_set(&root->orphan_inodes, 0);
1235b0feb9d9SMiao Xie 	atomic_set(&root->refs, 1);
12368257b2dcSMiao Xie 	atomic_set(&root->will_be_snapshoted, 0);
12377237f183SYan Zheng 	root->log_transid = 0;
1238d1433debSMiao Xie 	root->log_transid_committed = -1;
1239257c62e1SChris Mason 	root->last_log_commit = 0;
124006ea65a3SJosef Bacik 	if (fs_info)
1241d0c803c4SChris Mason 		extent_io_tree_init(&root->dirty_log_pages,
1242f993c883SDavid Sterba 				     fs_info->btree_inode->i_mapping);
1243017e5369SChris Mason 
12443768f368SChris Mason 	memset(&root->root_key, 0, sizeof(root->root_key));
12453768f368SChris Mason 	memset(&root->root_item, 0, sizeof(root->root_item));
12466702ed49SChris Mason 	memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
124758176a96SJosef Bacik 	memset(&root->root_kobj, 0, sizeof(root->root_kobj));
124806ea65a3SJosef Bacik 	if (fs_info)
12493f157a2fSChris Mason 		root->defrag_trans_start = fs_info->generation;
125006ea65a3SJosef Bacik 	else
125106ea65a3SJosef Bacik 		root->defrag_trans_start = 0;
125258176a96SJosef Bacik 	init_completion(&root->kobj_unregister);
12536702ed49SChris Mason 	root->defrag_running = 0;
12544d775673SChris Mason 	root->root_key.objectid = objectid;
12550ee5dc67SAl Viro 	root->anon_dev = 0;
12568ea05e3aSAlexander Block 
12575f3ab90aSAnand Jain 	spin_lock_init(&root->root_item_lock);
12583768f368SChris Mason }
12593768f368SChris Mason 
1260f84a8bd6SAl Viro static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info)
12616f07e42eSAl Viro {
12626f07e42eSAl Viro 	struct btrfs_root *root = kzalloc(sizeof(*root), GFP_NOFS);
12636f07e42eSAl Viro 	if (root)
12646f07e42eSAl Viro 		root->fs_info = fs_info;
12656f07e42eSAl Viro 	return root;
12666f07e42eSAl Viro }
12676f07e42eSAl Viro 
126806ea65a3SJosef Bacik #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
126906ea65a3SJosef Bacik /* Should only be used by the testing infrastructure */
127006ea65a3SJosef Bacik struct btrfs_root *btrfs_alloc_dummy_root(void)
127106ea65a3SJosef Bacik {
127206ea65a3SJosef Bacik 	struct btrfs_root *root;
127306ea65a3SJosef Bacik 
127406ea65a3SJosef Bacik 	root = btrfs_alloc_root(NULL);
127506ea65a3SJosef Bacik 	if (!root)
127606ea65a3SJosef Bacik 		return ERR_PTR(-ENOMEM);
127706ea65a3SJosef Bacik 	__setup_root(4096, 4096, 4096, 4096, root, NULL, 1);
127806ea65a3SJosef Bacik 	root->dummy_root = 1;
127906ea65a3SJosef Bacik 
128006ea65a3SJosef Bacik 	return root;
128106ea65a3SJosef Bacik }
128206ea65a3SJosef Bacik #endif
128306ea65a3SJosef Bacik 
128420897f5cSArne Jansen struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
128520897f5cSArne Jansen 				     struct btrfs_fs_info *fs_info,
128620897f5cSArne Jansen 				     u64 objectid)
128720897f5cSArne Jansen {
128820897f5cSArne Jansen 	struct extent_buffer *leaf;
128920897f5cSArne Jansen 	struct btrfs_root *tree_root = fs_info->tree_root;
129020897f5cSArne Jansen 	struct btrfs_root *root;
129120897f5cSArne Jansen 	struct btrfs_key key;
129220897f5cSArne Jansen 	int ret = 0;
12936463fe58SStefan Behrens 	uuid_le uuid;
129420897f5cSArne Jansen 
129520897f5cSArne Jansen 	root = btrfs_alloc_root(fs_info);
129620897f5cSArne Jansen 	if (!root)
129720897f5cSArne Jansen 		return ERR_PTR(-ENOMEM);
129820897f5cSArne Jansen 
129920897f5cSArne Jansen 	__setup_root(tree_root->nodesize, tree_root->leafsize,
130020897f5cSArne Jansen 		     tree_root->sectorsize, tree_root->stripesize,
130120897f5cSArne Jansen 		     root, fs_info, objectid);
130220897f5cSArne Jansen 	root->root_key.objectid = objectid;
130320897f5cSArne Jansen 	root->root_key.type = BTRFS_ROOT_ITEM_KEY;
130420897f5cSArne Jansen 	root->root_key.offset = 0;
130520897f5cSArne Jansen 
130620897f5cSArne Jansen 	leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
130720897f5cSArne Jansen 				      0, objectid, NULL, 0, 0, 0);
130820897f5cSArne Jansen 	if (IS_ERR(leaf)) {
130920897f5cSArne Jansen 		ret = PTR_ERR(leaf);
13101dd05682STsutomu Itoh 		leaf = NULL;
131120897f5cSArne Jansen 		goto fail;
131220897f5cSArne Jansen 	}
131320897f5cSArne Jansen 
131420897f5cSArne Jansen 	memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
131520897f5cSArne Jansen 	btrfs_set_header_bytenr(leaf, leaf->start);
131620897f5cSArne Jansen 	btrfs_set_header_generation(leaf, trans->transid);
131720897f5cSArne Jansen 	btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
131820897f5cSArne Jansen 	btrfs_set_header_owner(leaf, objectid);
131920897f5cSArne Jansen 	root->node = leaf;
132020897f5cSArne Jansen 
13210a4e5586SRoss Kirk 	write_extent_buffer(leaf, fs_info->fsid, btrfs_header_fsid(),
132220897f5cSArne Jansen 			    BTRFS_FSID_SIZE);
132320897f5cSArne Jansen 	write_extent_buffer(leaf, fs_info->chunk_tree_uuid,
1324b308bc2fSGeert Uytterhoeven 			    btrfs_header_chunk_tree_uuid(leaf),
132520897f5cSArne Jansen 			    BTRFS_UUID_SIZE);
132620897f5cSArne Jansen 	btrfs_mark_buffer_dirty(leaf);
132720897f5cSArne Jansen 
132820897f5cSArne Jansen 	root->commit_root = btrfs_root_node(root);
132920897f5cSArne Jansen 	root->track_dirty = 1;
133020897f5cSArne Jansen 
133120897f5cSArne Jansen 
133220897f5cSArne Jansen 	root->root_item.flags = 0;
133320897f5cSArne Jansen 	root->root_item.byte_limit = 0;
133420897f5cSArne Jansen 	btrfs_set_root_bytenr(&root->root_item, leaf->start);
133520897f5cSArne Jansen 	btrfs_set_root_generation(&root->root_item, trans->transid);
133620897f5cSArne Jansen 	btrfs_set_root_level(&root->root_item, 0);
133720897f5cSArne Jansen 	btrfs_set_root_refs(&root->root_item, 1);
133820897f5cSArne Jansen 	btrfs_set_root_used(&root->root_item, leaf->len);
133920897f5cSArne Jansen 	btrfs_set_root_last_snapshot(&root->root_item, 0);
134020897f5cSArne Jansen 	btrfs_set_root_dirid(&root->root_item, 0);
13416463fe58SStefan Behrens 	uuid_le_gen(&uuid);
13426463fe58SStefan Behrens 	memcpy(root->root_item.uuid, uuid.b, BTRFS_UUID_SIZE);
134320897f5cSArne Jansen 	root->root_item.drop_level = 0;
134420897f5cSArne Jansen 
134520897f5cSArne Jansen 	key.objectid = objectid;
134620897f5cSArne Jansen 	key.type = BTRFS_ROOT_ITEM_KEY;
134720897f5cSArne Jansen 	key.offset = 0;
134820897f5cSArne Jansen 	ret = btrfs_insert_root(trans, tree_root, &key, &root->root_item);
134920897f5cSArne Jansen 	if (ret)
135020897f5cSArne Jansen 		goto fail;
135120897f5cSArne Jansen 
135220897f5cSArne Jansen 	btrfs_tree_unlock(leaf);
135320897f5cSArne Jansen 
135420897f5cSArne Jansen 	return root;
13551dd05682STsutomu Itoh 
13561dd05682STsutomu Itoh fail:
13571dd05682STsutomu Itoh 	if (leaf) {
13581dd05682STsutomu Itoh 		btrfs_tree_unlock(leaf);
13591dd05682STsutomu Itoh 		free_extent_buffer(leaf);
13601dd05682STsutomu Itoh 	}
13611dd05682STsutomu Itoh 	kfree(root);
13621dd05682STsutomu Itoh 
13631dd05682STsutomu Itoh 	return ERR_PTR(ret);
136420897f5cSArne Jansen }
136520897f5cSArne Jansen 
13667237f183SYan Zheng static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1367e02119d5SChris Mason 					 struct btrfs_fs_info *fs_info)
13680f7d52f4SChris Mason {
13690f7d52f4SChris Mason 	struct btrfs_root *root;
13700f7d52f4SChris Mason 	struct btrfs_root *tree_root = fs_info->tree_root;
13717237f183SYan Zheng 	struct extent_buffer *leaf;
1372e02119d5SChris Mason 
13736f07e42eSAl Viro 	root = btrfs_alloc_root(fs_info);
1374e02119d5SChris Mason 	if (!root)
13757237f183SYan Zheng 		return ERR_PTR(-ENOMEM);
1376e02119d5SChris Mason 
1377e02119d5SChris Mason 	__setup_root(tree_root->nodesize, tree_root->leafsize,
1378e02119d5SChris Mason 		     tree_root->sectorsize, tree_root->stripesize,
1379e02119d5SChris Mason 		     root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1380e02119d5SChris Mason 
1381e02119d5SChris Mason 	root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1382e02119d5SChris Mason 	root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1383e02119d5SChris Mason 	root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
13847237f183SYan Zheng 	/*
13857237f183SYan Zheng 	 * log trees do not get reference counted because they go away
13867237f183SYan Zheng 	 * before a real commit is actually done.  They do store pointers
13877237f183SYan Zheng 	 * to file data extents, and those reference counts still get
13887237f183SYan Zheng 	 * updated (along with back refs to the log tree).
13897237f183SYan Zheng 	 */
1390e02119d5SChris Mason 	root->ref_cows = 0;
1391e02119d5SChris Mason 
13925d4f98a2SYan Zheng 	leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
139366d7e7f0SArne Jansen 				      BTRFS_TREE_LOG_OBJECTID, NULL,
13945581a51aSJan Schmidt 				      0, 0, 0);
13957237f183SYan Zheng 	if (IS_ERR(leaf)) {
13967237f183SYan Zheng 		kfree(root);
13977237f183SYan Zheng 		return ERR_CAST(leaf);
13987237f183SYan Zheng 	}
1399e02119d5SChris Mason 
14005d4f98a2SYan Zheng 	memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
14015d4f98a2SYan Zheng 	btrfs_set_header_bytenr(leaf, leaf->start);
14025d4f98a2SYan Zheng 	btrfs_set_header_generation(leaf, trans->transid);
14035d4f98a2SYan Zheng 	btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
14045d4f98a2SYan Zheng 	btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
14057237f183SYan Zheng 	root->node = leaf;
1406e02119d5SChris Mason 
1407e02119d5SChris Mason 	write_extent_buffer(root->node, root->fs_info->fsid,
14080a4e5586SRoss Kirk 			    btrfs_header_fsid(), BTRFS_FSID_SIZE);
1409e02119d5SChris Mason 	btrfs_mark_buffer_dirty(root->node);
1410e02119d5SChris Mason 	btrfs_tree_unlock(root->node);
14117237f183SYan Zheng 	return root;
14127237f183SYan Zheng }
14137237f183SYan Zheng 
14147237f183SYan Zheng int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
14157237f183SYan Zheng 			     struct btrfs_fs_info *fs_info)
14167237f183SYan Zheng {
14177237f183SYan Zheng 	struct btrfs_root *log_root;
14187237f183SYan Zheng 
14197237f183SYan Zheng 	log_root = alloc_log_tree(trans, fs_info);
14207237f183SYan Zheng 	if (IS_ERR(log_root))
14217237f183SYan Zheng 		return PTR_ERR(log_root);
14227237f183SYan Zheng 	WARN_ON(fs_info->log_root_tree);
14237237f183SYan Zheng 	fs_info->log_root_tree = log_root;
14247237f183SYan Zheng 	return 0;
14257237f183SYan Zheng }
14267237f183SYan Zheng 
14277237f183SYan Zheng int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
14287237f183SYan Zheng 		       struct btrfs_root *root)
14297237f183SYan Zheng {
14307237f183SYan Zheng 	struct btrfs_root *log_root;
14317237f183SYan Zheng 	struct btrfs_inode_item *inode_item;
14327237f183SYan Zheng 
14337237f183SYan Zheng 	log_root = alloc_log_tree(trans, root->fs_info);
14347237f183SYan Zheng 	if (IS_ERR(log_root))
14357237f183SYan Zheng 		return PTR_ERR(log_root);
14367237f183SYan Zheng 
14377237f183SYan Zheng 	log_root->last_trans = trans->transid;
14387237f183SYan Zheng 	log_root->root_key.offset = root->root_key.objectid;
14397237f183SYan Zheng 
14407237f183SYan Zheng 	inode_item = &log_root->root_item.inode;
14413cae210fSQu Wenruo 	btrfs_set_stack_inode_generation(inode_item, 1);
14423cae210fSQu Wenruo 	btrfs_set_stack_inode_size(inode_item, 3);
14433cae210fSQu Wenruo 	btrfs_set_stack_inode_nlink(inode_item, 1);
14443cae210fSQu Wenruo 	btrfs_set_stack_inode_nbytes(inode_item, root->leafsize);
14453cae210fSQu Wenruo 	btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
14467237f183SYan Zheng 
14475d4f98a2SYan Zheng 	btrfs_set_root_node(&log_root->root_item, log_root->node);
14487237f183SYan Zheng 
14497237f183SYan Zheng 	WARN_ON(root->log_root);
14507237f183SYan Zheng 	root->log_root = log_root;
14517237f183SYan Zheng 	root->log_transid = 0;
1452d1433debSMiao Xie 	root->log_transid_committed = -1;
1453257c62e1SChris Mason 	root->last_log_commit = 0;
1454e02119d5SChris Mason 	return 0;
1455e02119d5SChris Mason }
1456e02119d5SChris Mason 
145735a3621bSStefan Behrens static struct btrfs_root *btrfs_read_tree_root(struct btrfs_root *tree_root,
1458cb517eabSMiao Xie 					       struct btrfs_key *key)
1459e02119d5SChris Mason {
1460e02119d5SChris Mason 	struct btrfs_root *root;
1461e02119d5SChris Mason 	struct btrfs_fs_info *fs_info = tree_root->fs_info;
14620f7d52f4SChris Mason 	struct btrfs_path *path;
146384234f3aSYan Zheng 	u64 generation;
1464db94535dSChris Mason 	u32 blocksize;
1465cb517eabSMiao Xie 	int ret;
1466cb517eabSMiao Xie 
1467cb517eabSMiao Xie 	path = btrfs_alloc_path();
1468cb517eabSMiao Xie 	if (!path)
1469cb517eabSMiao Xie 		return ERR_PTR(-ENOMEM);
14700f7d52f4SChris Mason 
14716f07e42eSAl Viro 	root = btrfs_alloc_root(fs_info);
1472cb517eabSMiao Xie 	if (!root) {
1473cb517eabSMiao Xie 		ret = -ENOMEM;
1474cb517eabSMiao Xie 		goto alloc_fail;
14750f7d52f4SChris Mason 	}
14760f7d52f4SChris Mason 
1477db94535dSChris Mason 	__setup_root(tree_root->nodesize, tree_root->leafsize,
147887ee04ebSChris Mason 		     tree_root->sectorsize, tree_root->stripesize,
1479cb517eabSMiao Xie 		     root, fs_info, key->objectid);
14800f7d52f4SChris Mason 
1481cb517eabSMiao Xie 	ret = btrfs_find_root(tree_root, key, path,
1482cb517eabSMiao Xie 			      &root->root_item, &root->root_key);
14830f7d52f4SChris Mason 	if (ret) {
148413a8a7c8SYan, Zheng 		if (ret > 0)
148513a8a7c8SYan, Zheng 			ret = -ENOENT;
1486cb517eabSMiao Xie 		goto find_fail;
14870f7d52f4SChris Mason 	}
148813a8a7c8SYan, Zheng 
148984234f3aSYan Zheng 	generation = btrfs_root_generation(&root->root_item);
1490db94535dSChris Mason 	blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
1491db94535dSChris Mason 	root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
149284234f3aSYan Zheng 				     blocksize, generation);
1493cb517eabSMiao Xie 	if (!root->node) {
1494cb517eabSMiao Xie 		ret = -ENOMEM;
1495cb517eabSMiao Xie 		goto find_fail;
1496cb517eabSMiao Xie 	} else if (!btrfs_buffer_uptodate(root->node, generation, 0)) {
1497cb517eabSMiao Xie 		ret = -EIO;
1498cb517eabSMiao Xie 		goto read_fail;
1499416bc658SJosef Bacik 	}
15005d4f98a2SYan Zheng 	root->commit_root = btrfs_root_node(root);
150113a8a7c8SYan, Zheng out:
1502cb517eabSMiao Xie 	btrfs_free_path(path);
1503cb517eabSMiao Xie 	return root;
1504cb517eabSMiao Xie 
1505cb517eabSMiao Xie read_fail:
1506cb517eabSMiao Xie 	free_extent_buffer(root->node);
1507cb517eabSMiao Xie find_fail:
1508cb517eabSMiao Xie 	kfree(root);
1509cb517eabSMiao Xie alloc_fail:
1510cb517eabSMiao Xie 	root = ERR_PTR(ret);
1511cb517eabSMiao Xie 	goto out;
1512cb517eabSMiao Xie }
1513cb517eabSMiao Xie 
1514cb517eabSMiao Xie struct btrfs_root *btrfs_read_fs_root(struct btrfs_root *tree_root,
1515cb517eabSMiao Xie 				      struct btrfs_key *location)
1516cb517eabSMiao Xie {
1517cb517eabSMiao Xie 	struct btrfs_root *root;
1518cb517eabSMiao Xie 
1519cb517eabSMiao Xie 	root = btrfs_read_tree_root(tree_root, location);
1520cb517eabSMiao Xie 	if (IS_ERR(root))
1521cb517eabSMiao Xie 		return root;
1522cb517eabSMiao Xie 
1523cb517eabSMiao Xie 	if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
15240f7d52f4SChris Mason 		root->ref_cows = 1;
152508fe4db1SLi Zefan 		btrfs_check_and_init_root_item(&root->root_item);
152608fe4db1SLi Zefan 	}
152713a8a7c8SYan, Zheng 
15285eda7b5eSChris Mason 	return root;
15295eda7b5eSChris Mason }
15305eda7b5eSChris Mason 
1531cb517eabSMiao Xie int btrfs_init_fs_root(struct btrfs_root *root)
1532cb517eabSMiao Xie {
1533cb517eabSMiao Xie 	int ret;
15348257b2dcSMiao Xie 	struct btrfs_subvolume_writers *writers;
1535cb517eabSMiao Xie 
1536cb517eabSMiao Xie 	root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS);
1537cb517eabSMiao Xie 	root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned),
1538cb517eabSMiao Xie 					GFP_NOFS);
1539cb517eabSMiao Xie 	if (!root->free_ino_pinned || !root->free_ino_ctl) {
1540cb517eabSMiao Xie 		ret = -ENOMEM;
1541cb517eabSMiao Xie 		goto fail;
1542cb517eabSMiao Xie 	}
1543cb517eabSMiao Xie 
15448257b2dcSMiao Xie 	writers = btrfs_alloc_subvolume_writers();
15458257b2dcSMiao Xie 	if (IS_ERR(writers)) {
15468257b2dcSMiao Xie 		ret = PTR_ERR(writers);
15478257b2dcSMiao Xie 		goto fail;
15488257b2dcSMiao Xie 	}
15498257b2dcSMiao Xie 	root->subv_writers = writers;
15508257b2dcSMiao Xie 
1551cb517eabSMiao Xie 	btrfs_init_free_ino_ctl(root);
1552cb517eabSMiao Xie 	mutex_init(&root->fs_commit_mutex);
1553cb517eabSMiao Xie 	spin_lock_init(&root->cache_lock);
1554cb517eabSMiao Xie 	init_waitqueue_head(&root->cache_wait);
1555cb517eabSMiao Xie 
1556cb517eabSMiao Xie 	ret = get_anon_bdev(&root->anon_dev);
1557cb517eabSMiao Xie 	if (ret)
15588257b2dcSMiao Xie 		goto free_writers;
1559cb517eabSMiao Xie 	return 0;
15608257b2dcSMiao Xie 
15618257b2dcSMiao Xie free_writers:
15628257b2dcSMiao Xie 	btrfs_free_subvolume_writers(root->subv_writers);
1563cb517eabSMiao Xie fail:
1564cb517eabSMiao Xie 	kfree(root->free_ino_ctl);
1565cb517eabSMiao Xie 	kfree(root->free_ino_pinned);
1566cb517eabSMiao Xie 	return ret;
1567cb517eabSMiao Xie }
1568cb517eabSMiao Xie 
1569171170c1SSergei Trofimovich static struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
1570cb517eabSMiao Xie 					       u64 root_id)
1571cb517eabSMiao Xie {
1572cb517eabSMiao Xie 	struct btrfs_root *root;
1573cb517eabSMiao Xie 
1574cb517eabSMiao Xie 	spin_lock(&fs_info->fs_roots_radix_lock);
1575cb517eabSMiao Xie 	root = radix_tree_lookup(&fs_info->fs_roots_radix,
1576cb517eabSMiao Xie 				 (unsigned long)root_id);
1577cb517eabSMiao Xie 	spin_unlock(&fs_info->fs_roots_radix_lock);
1578cb517eabSMiao Xie 	return root;
1579cb517eabSMiao Xie }
1580cb517eabSMiao Xie 
1581cb517eabSMiao Xie int btrfs_insert_fs_root(struct btrfs_fs_info *fs_info,
1582cb517eabSMiao Xie 			 struct btrfs_root *root)
1583cb517eabSMiao Xie {
1584cb517eabSMiao Xie 	int ret;
1585cb517eabSMiao Xie 
1586cb517eabSMiao Xie 	ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
1587cb517eabSMiao Xie 	if (ret)
1588cb517eabSMiao Xie 		return ret;
1589cb517eabSMiao Xie 
1590cb517eabSMiao Xie 	spin_lock(&fs_info->fs_roots_radix_lock);
1591cb517eabSMiao Xie 	ret = radix_tree_insert(&fs_info->fs_roots_radix,
1592cb517eabSMiao Xie 				(unsigned long)root->root_key.objectid,
1593cb517eabSMiao Xie 				root);
1594cb517eabSMiao Xie 	if (ret == 0)
1595cb517eabSMiao Xie 		root->in_radix = 1;
1596cb517eabSMiao Xie 	spin_unlock(&fs_info->fs_roots_radix_lock);
1597cb517eabSMiao Xie 	radix_tree_preload_end();
1598cb517eabSMiao Xie 
1599cb517eabSMiao Xie 	return ret;
1600cb517eabSMiao Xie }
1601cb517eabSMiao Xie 
1602c00869f1SMiao Xie struct btrfs_root *btrfs_get_fs_root(struct btrfs_fs_info *fs_info,
1603c00869f1SMiao Xie 				     struct btrfs_key *location,
1604c00869f1SMiao Xie 				     bool check_ref)
16055eda7b5eSChris Mason {
16065eda7b5eSChris Mason 	struct btrfs_root *root;
16075eda7b5eSChris Mason 	int ret;
16085eda7b5eSChris Mason 
1609edbd8d4eSChris Mason 	if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1610edbd8d4eSChris Mason 		return fs_info->tree_root;
1611edbd8d4eSChris Mason 	if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1612edbd8d4eSChris Mason 		return fs_info->extent_root;
16138f18cf13SChris Mason 	if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
16148f18cf13SChris Mason 		return fs_info->chunk_root;
16158f18cf13SChris Mason 	if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
16168f18cf13SChris Mason 		return fs_info->dev_root;
16170403e47eSYan Zheng 	if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
16180403e47eSYan Zheng 		return fs_info->csum_root;
1619bcef60f2SArne Jansen 	if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
1620bcef60f2SArne Jansen 		return fs_info->quota_root ? fs_info->quota_root :
1621bcef60f2SArne Jansen 					     ERR_PTR(-ENOENT);
1622f7a81ea4SStefan Behrens 	if (location->objectid == BTRFS_UUID_TREE_OBJECTID)
1623f7a81ea4SStefan Behrens 		return fs_info->uuid_root ? fs_info->uuid_root :
1624f7a81ea4SStefan Behrens 					    ERR_PTR(-ENOENT);
16254df27c4dSYan, Zheng again:
1626cb517eabSMiao Xie 	root = btrfs_lookup_fs_root(fs_info, location->objectid);
162748475471SStefan Behrens 	if (root) {
1628c00869f1SMiao Xie 		if (check_ref && btrfs_root_refs(&root->root_item) == 0)
162948475471SStefan Behrens 			return ERR_PTR(-ENOENT);
16305eda7b5eSChris Mason 		return root;
163148475471SStefan Behrens 	}
16325eda7b5eSChris Mason 
1633cb517eabSMiao Xie 	root = btrfs_read_fs_root(fs_info->tree_root, location);
16345eda7b5eSChris Mason 	if (IS_ERR(root))
16355eda7b5eSChris Mason 		return root;
16363394e160SChris Mason 
1637c00869f1SMiao Xie 	if (check_ref && btrfs_root_refs(&root->root_item) == 0) {
1638d68fc57bSYan, Zheng 		ret = -ENOENT;
1639d68fc57bSYan, Zheng 		goto fail;
1640d68fc57bSYan, Zheng 	}
1641d68fc57bSYan, Zheng 
1642cb517eabSMiao Xie 	ret = btrfs_init_fs_root(root);
1643cb517eabSMiao Xie 	if (ret)
1644cb517eabSMiao Xie 		goto fail;
1645cb517eabSMiao Xie 
16463f870c28SKelley Nielsen 	ret = btrfs_find_item(fs_info->tree_root, NULL, BTRFS_ORPHAN_OBJECTID,
16473f870c28SKelley Nielsen 			location->objectid, BTRFS_ORPHAN_ITEM_KEY, NULL);
1648d68fc57bSYan, Zheng 	if (ret < 0)
1649d68fc57bSYan, Zheng 		goto fail;
1650d68fc57bSYan, Zheng 	if (ret == 0)
1651d68fc57bSYan, Zheng 		root->orphan_item_inserted = 1;
1652d68fc57bSYan, Zheng 
1653cb517eabSMiao Xie 	ret = btrfs_insert_fs_root(fs_info, root);
16540f7d52f4SChris Mason 	if (ret) {
16554df27c4dSYan, Zheng 		if (ret == -EEXIST) {
16564df27c4dSYan, Zheng 			free_fs_root(root);
16574df27c4dSYan, Zheng 			goto again;
16580f7d52f4SChris Mason 		}
16594df27c4dSYan, Zheng 		goto fail;
16604df27c4dSYan, Zheng 	}
1661edbd8d4eSChris Mason 	return root;
16624df27c4dSYan, Zheng fail:
16634df27c4dSYan, Zheng 	free_fs_root(root);
16644df27c4dSYan, Zheng 	return ERR_PTR(ret);
1665edbd8d4eSChris Mason }
1666edbd8d4eSChris Mason 
166704160088SChris Mason static int btrfs_congested_fn(void *congested_data, int bdi_bits)
166804160088SChris Mason {
166904160088SChris Mason 	struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
167004160088SChris Mason 	int ret = 0;
167104160088SChris Mason 	struct btrfs_device *device;
167204160088SChris Mason 	struct backing_dev_info *bdi;
1673b7967db7SChris Mason 
16741f78160cSXiao Guangrong 	rcu_read_lock();
16751f78160cSXiao Guangrong 	list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) {
1676dfe25020SChris Mason 		if (!device->bdev)
1677dfe25020SChris Mason 			continue;
167804160088SChris Mason 		bdi = blk_get_backing_dev_info(device->bdev);
167904160088SChris Mason 		if (bdi && bdi_congested(bdi, bdi_bits)) {
168004160088SChris Mason 			ret = 1;
168104160088SChris Mason 			break;
168204160088SChris Mason 		}
168304160088SChris Mason 	}
16841f78160cSXiao Guangrong 	rcu_read_unlock();
168504160088SChris Mason 	return ret;
168604160088SChris Mason }
168704160088SChris Mason 
168838b66988SChris Mason /*
1689ad081f14SJens Axboe  * If this fails, caller must call bdi_destroy() to get rid of the
1690ad081f14SJens Axboe  * bdi again.
1691ad081f14SJens Axboe  */
169204160088SChris Mason static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
169304160088SChris Mason {
1694ad081f14SJens Axboe 	int err;
1695ad081f14SJens Axboe 
1696ad081f14SJens Axboe 	bdi->capabilities = BDI_CAP_MAP_COPY;
1697e6d086d8SJens Axboe 	err = bdi_setup_and_register(bdi, "btrfs", BDI_CAP_MAP_COPY);
1698ad081f14SJens Axboe 	if (err)
1699ad081f14SJens Axboe 		return err;
1700ad081f14SJens Axboe 
17014575c9ccSChris Mason 	bdi->ra_pages	= default_backing_dev_info.ra_pages;
170204160088SChris Mason 	bdi->congested_fn	= btrfs_congested_fn;
170304160088SChris Mason 	bdi->congested_data	= info;
170404160088SChris Mason 	return 0;
170504160088SChris Mason }
170604160088SChris Mason 
17078b712842SChris Mason /*
17088b712842SChris Mason  * called by the kthread helper functions to finally call the bio end_io
17098b712842SChris Mason  * functions.  This is where read checksum verification actually happens
17108b712842SChris Mason  */
1711d458b054SQu Wenruo static void end_workqueue_fn(struct btrfs_work *work)
1712ce9adaa5SChris Mason {
1713ce9adaa5SChris Mason 	struct bio *bio;
17148b712842SChris Mason 	struct end_io_wq *end_io_wq;
1715ce9adaa5SChris Mason 	int error;
1716ce9adaa5SChris Mason 
17178b712842SChris Mason 	end_io_wq = container_of(work, struct end_io_wq, work);
1718ce9adaa5SChris Mason 	bio = end_io_wq->bio;
17198b712842SChris Mason 
1720ce9adaa5SChris Mason 	error = end_io_wq->error;
1721ce9adaa5SChris Mason 	bio->bi_private = end_io_wq->private;
1722ce9adaa5SChris Mason 	bio->bi_end_io = end_io_wq->end_io;
1723ce9adaa5SChris Mason 	kfree(end_io_wq);
1724ce9adaa5SChris Mason 	bio_endio(bio, error);
1725ce9adaa5SChris Mason }
172644b8bd7eSChris Mason 
1727a74a4b97SChris Mason static int cleaner_kthread(void *arg)
1728a74a4b97SChris Mason {
1729a74a4b97SChris Mason 	struct btrfs_root *root = arg;
1730d0278245SMiao Xie 	int again;
1731a74a4b97SChris Mason 
1732a74a4b97SChris Mason 	do {
1733d0278245SMiao Xie 		again = 0;
17349d1a2a3aSDavid Sterba 
1735d0278245SMiao Xie 		/* Make the cleaner go to sleep early. */
1736babbf170SMiao Xie 		if (btrfs_need_cleaner_sleep(root))
1737d0278245SMiao Xie 			goto sleep;
1738d0278245SMiao Xie 
1739d0278245SMiao Xie 		if (!mutex_trylock(&root->fs_info->cleaner_mutex))
1740d0278245SMiao Xie 			goto sleep;
1741d0278245SMiao Xie 
1742dc7f370cSMiao Xie 		/*
1743dc7f370cSMiao Xie 		 * Avoid the problem that we change the status of the fs
1744dc7f370cSMiao Xie 		 * during the above check and trylock.
1745dc7f370cSMiao Xie 		 */
1746babbf170SMiao Xie 		if (btrfs_need_cleaner_sleep(root)) {
1747dc7f370cSMiao Xie 			mutex_unlock(&root->fs_info->cleaner_mutex);
1748dc7f370cSMiao Xie 			goto sleep;
1749dc7f370cSMiao Xie 		}
1750dc7f370cSMiao Xie 
175124bbcf04SYan, Zheng 		btrfs_run_delayed_iputs(root);
17529d1a2a3aSDavid Sterba 		again = btrfs_clean_one_deleted_snapshot(root);
1753a74a4b97SChris Mason 		mutex_unlock(&root->fs_info->cleaner_mutex);
1754a74a4b97SChris Mason 
1755d0278245SMiao Xie 		/*
175605323cd1SMiao Xie 		 * The defragger has dealt with the R/O remount and umount,
175705323cd1SMiao Xie 		 * needn't do anything special here.
1758d0278245SMiao Xie 		 */
1759d0278245SMiao Xie 		btrfs_run_defrag_inodes(root->fs_info);
1760d0278245SMiao Xie sleep:
17619d1a2a3aSDavid Sterba 		if (!try_to_freeze() && !again) {
1762a74a4b97SChris Mason 			set_current_state(TASK_INTERRUPTIBLE);
17638929ecfaSYan, Zheng 			if (!kthread_should_stop())
1764a74a4b97SChris Mason 				schedule();
1765a74a4b97SChris Mason 			__set_current_state(TASK_RUNNING);
1766a74a4b97SChris Mason 		}
1767a74a4b97SChris Mason 	} while (!kthread_should_stop());
1768a74a4b97SChris Mason 	return 0;
1769a74a4b97SChris Mason }
1770a74a4b97SChris Mason 
1771a74a4b97SChris Mason static int transaction_kthread(void *arg)
1772a74a4b97SChris Mason {
1773a74a4b97SChris Mason 	struct btrfs_root *root = arg;
1774a74a4b97SChris Mason 	struct btrfs_trans_handle *trans;
1775a74a4b97SChris Mason 	struct btrfs_transaction *cur;
17768929ecfaSYan, Zheng 	u64 transid;
1777a74a4b97SChris Mason 	unsigned long now;
1778a74a4b97SChris Mason 	unsigned long delay;
1779914b2007SJan Kara 	bool cannot_commit;
1780a74a4b97SChris Mason 
1781a74a4b97SChris Mason 	do {
1782914b2007SJan Kara 		cannot_commit = false;
17838b87dc17SDavid Sterba 		delay = HZ * root->fs_info->commit_interval;
1784a74a4b97SChris Mason 		mutex_lock(&root->fs_info->transaction_kthread_mutex);
1785a74a4b97SChris Mason 
1786a4abeea4SJosef Bacik 		spin_lock(&root->fs_info->trans_lock);
1787a74a4b97SChris Mason 		cur = root->fs_info->running_transaction;
1788a74a4b97SChris Mason 		if (!cur) {
1789a4abeea4SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
1790a74a4b97SChris Mason 			goto sleep;
1791a74a4b97SChris Mason 		}
179231153d81SYan Zheng 
1793a74a4b97SChris Mason 		now = get_seconds();
17944a9d8bdeSMiao Xie 		if (cur->state < TRANS_STATE_BLOCKED &&
17958b87dc17SDavid Sterba 		    (now < cur->start_time ||
17968b87dc17SDavid Sterba 		     now - cur->start_time < root->fs_info->commit_interval)) {
1797a4abeea4SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
1798a74a4b97SChris Mason 			delay = HZ * 5;
1799a74a4b97SChris Mason 			goto sleep;
1800a74a4b97SChris Mason 		}
18018929ecfaSYan, Zheng 		transid = cur->transid;
1802a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
180356bec294SChris Mason 
180479787eaaSJeff Mahoney 		/* If the file system is aborted, this will always fail. */
1805354aa0fbSMiao Xie 		trans = btrfs_attach_transaction(root);
1806914b2007SJan Kara 		if (IS_ERR(trans)) {
1807354aa0fbSMiao Xie 			if (PTR_ERR(trans) != -ENOENT)
1808914b2007SJan Kara 				cannot_commit = true;
180979787eaaSJeff Mahoney 			goto sleep;
1810914b2007SJan Kara 		}
18118929ecfaSYan, Zheng 		if (transid == trans->transid) {
181279787eaaSJeff Mahoney 			btrfs_commit_transaction(trans, root);
18138929ecfaSYan, Zheng 		} else {
18148929ecfaSYan, Zheng 			btrfs_end_transaction(trans, root);
18158929ecfaSYan, Zheng 		}
1816a74a4b97SChris Mason sleep:
1817a74a4b97SChris Mason 		wake_up_process(root->fs_info->cleaner_kthread);
1818a74a4b97SChris Mason 		mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1819a74a4b97SChris Mason 
18204e121c06SJosef Bacik 		if (unlikely(test_bit(BTRFS_FS_STATE_ERROR,
18214e121c06SJosef Bacik 				      &root->fs_info->fs_state)))
18224e121c06SJosef Bacik 			btrfs_cleanup_transaction(root);
1823a0acae0eSTejun Heo 		if (!try_to_freeze()) {
1824a74a4b97SChris Mason 			set_current_state(TASK_INTERRUPTIBLE);
18258929ecfaSYan, Zheng 			if (!kthread_should_stop() &&
1826914b2007SJan Kara 			    (!btrfs_transaction_blocked(root->fs_info) ||
1827914b2007SJan Kara 			     cannot_commit))
1828a74a4b97SChris Mason 				schedule_timeout(delay);
1829a74a4b97SChris Mason 			__set_current_state(TASK_RUNNING);
1830a74a4b97SChris Mason 		}
1831a74a4b97SChris Mason 	} while (!kthread_should_stop());
1832a74a4b97SChris Mason 	return 0;
1833a74a4b97SChris Mason }
1834a74a4b97SChris Mason 
1835af31f5e5SChris Mason /*
1836af31f5e5SChris Mason  * this will find the highest generation in the array of
1837af31f5e5SChris Mason  * root backups.  The index of the highest array is returned,
1838af31f5e5SChris Mason  * or -1 if we can't find anything.
1839af31f5e5SChris Mason  *
1840af31f5e5SChris Mason  * We check to make sure the array is valid by comparing the
1841af31f5e5SChris Mason  * generation of the latest  root in the array with the generation
1842af31f5e5SChris Mason  * in the super block.  If they don't match we pitch it.
1843af31f5e5SChris Mason  */
1844af31f5e5SChris Mason static int find_newest_super_backup(struct btrfs_fs_info *info, u64 newest_gen)
1845af31f5e5SChris Mason {
1846af31f5e5SChris Mason 	u64 cur;
1847af31f5e5SChris Mason 	int newest_index = -1;
1848af31f5e5SChris Mason 	struct btrfs_root_backup *root_backup;
1849af31f5e5SChris Mason 	int i;
1850af31f5e5SChris Mason 
1851af31f5e5SChris Mason 	for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
1852af31f5e5SChris Mason 		root_backup = info->super_copy->super_roots + i;
1853af31f5e5SChris Mason 		cur = btrfs_backup_tree_root_gen(root_backup);
1854af31f5e5SChris Mason 		if (cur == newest_gen)
1855af31f5e5SChris Mason 			newest_index = i;
1856af31f5e5SChris Mason 	}
1857af31f5e5SChris Mason 
1858af31f5e5SChris Mason 	/* check to see if we actually wrapped around */
1859af31f5e5SChris Mason 	if (newest_index == BTRFS_NUM_BACKUP_ROOTS - 1) {
1860af31f5e5SChris Mason 		root_backup = info->super_copy->super_roots;
1861af31f5e5SChris Mason 		cur = btrfs_backup_tree_root_gen(root_backup);
1862af31f5e5SChris Mason 		if (cur == newest_gen)
1863af31f5e5SChris Mason 			newest_index = 0;
1864af31f5e5SChris Mason 	}
1865af31f5e5SChris Mason 	return newest_index;
1866af31f5e5SChris Mason }
1867af31f5e5SChris Mason 
1868af31f5e5SChris Mason 
1869af31f5e5SChris Mason /*
1870af31f5e5SChris Mason  * find the oldest backup so we know where to store new entries
1871af31f5e5SChris Mason  * in the backup array.  This will set the backup_root_index
1872af31f5e5SChris Mason  * field in the fs_info struct
1873af31f5e5SChris Mason  */
1874af31f5e5SChris Mason static void find_oldest_super_backup(struct btrfs_fs_info *info,
1875af31f5e5SChris Mason 				     u64 newest_gen)
1876af31f5e5SChris Mason {
1877af31f5e5SChris Mason 	int newest_index = -1;
1878af31f5e5SChris Mason 
1879af31f5e5SChris Mason 	newest_index = find_newest_super_backup(info, newest_gen);
1880af31f5e5SChris Mason 	/* if there was garbage in there, just move along */
1881af31f5e5SChris Mason 	if (newest_index == -1) {
1882af31f5e5SChris Mason 		info->backup_root_index = 0;
1883af31f5e5SChris Mason 	} else {
1884af31f5e5SChris Mason 		info->backup_root_index = (newest_index + 1) % BTRFS_NUM_BACKUP_ROOTS;
1885af31f5e5SChris Mason 	}
1886af31f5e5SChris Mason }
1887af31f5e5SChris Mason 
1888af31f5e5SChris Mason /*
1889af31f5e5SChris Mason  * copy all the root pointers into the super backup array.
1890af31f5e5SChris Mason  * this will bump the backup pointer by one when it is
1891af31f5e5SChris Mason  * done
1892af31f5e5SChris Mason  */
1893af31f5e5SChris Mason static void backup_super_roots(struct btrfs_fs_info *info)
1894af31f5e5SChris Mason {
1895af31f5e5SChris Mason 	int next_backup;
1896af31f5e5SChris Mason 	struct btrfs_root_backup *root_backup;
1897af31f5e5SChris Mason 	int last_backup;
1898af31f5e5SChris Mason 
1899af31f5e5SChris Mason 	next_backup = info->backup_root_index;
1900af31f5e5SChris Mason 	last_backup = (next_backup + BTRFS_NUM_BACKUP_ROOTS - 1) %
1901af31f5e5SChris Mason 		BTRFS_NUM_BACKUP_ROOTS;
1902af31f5e5SChris Mason 
1903af31f5e5SChris Mason 	/*
1904af31f5e5SChris Mason 	 * just overwrite the last backup if we're at the same generation
1905af31f5e5SChris Mason 	 * this happens only at umount
1906af31f5e5SChris Mason 	 */
1907af31f5e5SChris Mason 	root_backup = info->super_for_commit->super_roots + last_backup;
1908af31f5e5SChris Mason 	if (btrfs_backup_tree_root_gen(root_backup) ==
1909af31f5e5SChris Mason 	    btrfs_header_generation(info->tree_root->node))
1910af31f5e5SChris Mason 		next_backup = last_backup;
1911af31f5e5SChris Mason 
1912af31f5e5SChris Mason 	root_backup = info->super_for_commit->super_roots + next_backup;
1913af31f5e5SChris Mason 
1914af31f5e5SChris Mason 	/*
1915af31f5e5SChris Mason 	 * make sure all of our padding and empty slots get zero filled
1916af31f5e5SChris Mason 	 * regardless of which ones we use today
1917af31f5e5SChris Mason 	 */
1918af31f5e5SChris Mason 	memset(root_backup, 0, sizeof(*root_backup));
1919af31f5e5SChris Mason 
1920af31f5e5SChris Mason 	info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS;
1921af31f5e5SChris Mason 
1922af31f5e5SChris Mason 	btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start);
1923af31f5e5SChris Mason 	btrfs_set_backup_tree_root_gen(root_backup,
1924af31f5e5SChris Mason 			       btrfs_header_generation(info->tree_root->node));
1925af31f5e5SChris Mason 
1926af31f5e5SChris Mason 	btrfs_set_backup_tree_root_level(root_backup,
1927af31f5e5SChris Mason 			       btrfs_header_level(info->tree_root->node));
1928af31f5e5SChris Mason 
1929af31f5e5SChris Mason 	btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start);
1930af31f5e5SChris Mason 	btrfs_set_backup_chunk_root_gen(root_backup,
1931af31f5e5SChris Mason 			       btrfs_header_generation(info->chunk_root->node));
1932af31f5e5SChris Mason 	btrfs_set_backup_chunk_root_level(root_backup,
1933af31f5e5SChris Mason 			       btrfs_header_level(info->chunk_root->node));
1934af31f5e5SChris Mason 
1935af31f5e5SChris Mason 	btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start);
1936af31f5e5SChris Mason 	btrfs_set_backup_extent_root_gen(root_backup,
1937af31f5e5SChris Mason 			       btrfs_header_generation(info->extent_root->node));
1938af31f5e5SChris Mason 	btrfs_set_backup_extent_root_level(root_backup,
1939af31f5e5SChris Mason 			       btrfs_header_level(info->extent_root->node));
1940af31f5e5SChris Mason 
19417c7e82a7SChris Mason 	/*
19427c7e82a7SChris Mason 	 * we might commit during log recovery, which happens before we set
19437c7e82a7SChris Mason 	 * the fs_root.  Make sure it is valid before we fill it in.
19447c7e82a7SChris Mason 	 */
19457c7e82a7SChris Mason 	if (info->fs_root && info->fs_root->node) {
19467c7e82a7SChris Mason 		btrfs_set_backup_fs_root(root_backup,
19477c7e82a7SChris Mason 					 info->fs_root->node->start);
1948af31f5e5SChris Mason 		btrfs_set_backup_fs_root_gen(root_backup,
1949af31f5e5SChris Mason 			       btrfs_header_generation(info->fs_root->node));
1950af31f5e5SChris Mason 		btrfs_set_backup_fs_root_level(root_backup,
1951af31f5e5SChris Mason 			       btrfs_header_level(info->fs_root->node));
19527c7e82a7SChris Mason 	}
1953af31f5e5SChris Mason 
1954af31f5e5SChris Mason 	btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start);
1955af31f5e5SChris Mason 	btrfs_set_backup_dev_root_gen(root_backup,
1956af31f5e5SChris Mason 			       btrfs_header_generation(info->dev_root->node));
1957af31f5e5SChris Mason 	btrfs_set_backup_dev_root_level(root_backup,
1958af31f5e5SChris Mason 				       btrfs_header_level(info->dev_root->node));
1959af31f5e5SChris Mason 
1960af31f5e5SChris Mason 	btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start);
1961af31f5e5SChris Mason 	btrfs_set_backup_csum_root_gen(root_backup,
1962af31f5e5SChris Mason 			       btrfs_header_generation(info->csum_root->node));
1963af31f5e5SChris Mason 	btrfs_set_backup_csum_root_level(root_backup,
1964af31f5e5SChris Mason 			       btrfs_header_level(info->csum_root->node));
1965af31f5e5SChris Mason 
1966af31f5e5SChris Mason 	btrfs_set_backup_total_bytes(root_backup,
1967af31f5e5SChris Mason 			     btrfs_super_total_bytes(info->super_copy));
1968af31f5e5SChris Mason 	btrfs_set_backup_bytes_used(root_backup,
1969af31f5e5SChris Mason 			     btrfs_super_bytes_used(info->super_copy));
1970af31f5e5SChris Mason 	btrfs_set_backup_num_devices(root_backup,
1971af31f5e5SChris Mason 			     btrfs_super_num_devices(info->super_copy));
1972af31f5e5SChris Mason 
1973af31f5e5SChris Mason 	/*
1974af31f5e5SChris Mason 	 * if we don't copy this out to the super_copy, it won't get remembered
1975af31f5e5SChris Mason 	 * for the next commit
1976af31f5e5SChris Mason 	 */
1977af31f5e5SChris Mason 	memcpy(&info->super_copy->super_roots,
1978af31f5e5SChris Mason 	       &info->super_for_commit->super_roots,
1979af31f5e5SChris Mason 	       sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS);
1980af31f5e5SChris Mason }
1981af31f5e5SChris Mason 
1982af31f5e5SChris Mason /*
1983af31f5e5SChris Mason  * this copies info out of the root backup array and back into
1984af31f5e5SChris Mason  * the in-memory super block.  It is meant to help iterate through
1985af31f5e5SChris Mason  * the array, so you send it the number of backups you've already
1986af31f5e5SChris Mason  * tried and the last backup index you used.
1987af31f5e5SChris Mason  *
1988af31f5e5SChris Mason  * this returns -1 when it has tried all the backups
1989af31f5e5SChris Mason  */
1990af31f5e5SChris Mason static noinline int next_root_backup(struct btrfs_fs_info *info,
1991af31f5e5SChris Mason 				     struct btrfs_super_block *super,
1992af31f5e5SChris Mason 				     int *num_backups_tried, int *backup_index)
1993af31f5e5SChris Mason {
1994af31f5e5SChris Mason 	struct btrfs_root_backup *root_backup;
1995af31f5e5SChris Mason 	int newest = *backup_index;
1996af31f5e5SChris Mason 
1997af31f5e5SChris Mason 	if (*num_backups_tried == 0) {
1998af31f5e5SChris Mason 		u64 gen = btrfs_super_generation(super);
1999af31f5e5SChris Mason 
2000af31f5e5SChris Mason 		newest = find_newest_super_backup(info, gen);
2001af31f5e5SChris Mason 		if (newest == -1)
2002af31f5e5SChris Mason 			return -1;
2003af31f5e5SChris Mason 
2004af31f5e5SChris Mason 		*backup_index = newest;
2005af31f5e5SChris Mason 		*num_backups_tried = 1;
2006af31f5e5SChris Mason 	} else if (*num_backups_tried == BTRFS_NUM_BACKUP_ROOTS) {
2007af31f5e5SChris Mason 		/* we've tried all the backups, all done */
2008af31f5e5SChris Mason 		return -1;
2009af31f5e5SChris Mason 	} else {
2010af31f5e5SChris Mason 		/* jump to the next oldest backup */
2011af31f5e5SChris Mason 		newest = (*backup_index + BTRFS_NUM_BACKUP_ROOTS - 1) %
2012af31f5e5SChris Mason 			BTRFS_NUM_BACKUP_ROOTS;
2013af31f5e5SChris Mason 		*backup_index = newest;
2014af31f5e5SChris Mason 		*num_backups_tried += 1;
2015af31f5e5SChris Mason 	}
2016af31f5e5SChris Mason 	root_backup = super->super_roots + newest;
2017af31f5e5SChris Mason 
2018af31f5e5SChris Mason 	btrfs_set_super_generation(super,
2019af31f5e5SChris Mason 				   btrfs_backup_tree_root_gen(root_backup));
2020af31f5e5SChris Mason 	btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup));
2021af31f5e5SChris Mason 	btrfs_set_super_root_level(super,
2022af31f5e5SChris Mason 				   btrfs_backup_tree_root_level(root_backup));
2023af31f5e5SChris Mason 	btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup));
2024af31f5e5SChris Mason 
2025af31f5e5SChris Mason 	/*
2026af31f5e5SChris Mason 	 * fixme: the total bytes and num_devices need to match or we should
2027af31f5e5SChris Mason 	 * need a fsck
2028af31f5e5SChris Mason 	 */
2029af31f5e5SChris Mason 	btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup));
2030af31f5e5SChris Mason 	btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup));
2031af31f5e5SChris Mason 	return 0;
2032af31f5e5SChris Mason }
2033af31f5e5SChris Mason 
20347abadb64SLiu Bo /* helper to cleanup workers */
20357abadb64SLiu Bo static void btrfs_stop_all_workers(struct btrfs_fs_info *fs_info)
20367abadb64SLiu Bo {
2037dc6e3209SQu Wenruo 	btrfs_destroy_workqueue(fs_info->fixup_workers);
2038afe3d242SQu Wenruo 	btrfs_destroy_workqueue(fs_info->delalloc_workers);
20395cdc7ad3SQu Wenruo 	btrfs_destroy_workqueue(fs_info->workers);
2040fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_workers);
2041fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_meta_workers);
2042fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_raid56_workers);
2043d05a33acSQu Wenruo 	btrfs_destroy_workqueue(fs_info->rmw_workers);
2044fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_meta_write_workers);
2045fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_write_workers);
2046fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_freespace_worker);
2047a8c93d4eSQu Wenruo 	btrfs_destroy_workqueue(fs_info->submit_workers);
20485b3bc44eSQu Wenruo 	btrfs_destroy_workqueue(fs_info->delayed_workers);
2049e66f0bb1SQu Wenruo 	btrfs_destroy_workqueue(fs_info->caching_workers);
2050736cfa15SQu Wenruo 	btrfs_destroy_workqueue(fs_info->readahead_workers);
2051a44903abSQu Wenruo 	btrfs_destroy_workqueue(fs_info->flush_workers);
2052fc97fab0SQu Wenruo 	btrfs_destroy_workqueue(fs_info->qgroup_rescan_workers);
20537abadb64SLiu Bo }
20547abadb64SLiu Bo 
20552e9f5954SRashika static void free_root_extent_buffers(struct btrfs_root *root)
20562e9f5954SRashika {
20572e9f5954SRashika 	if (root) {
20582e9f5954SRashika 		free_extent_buffer(root->node);
20592e9f5954SRashika 		free_extent_buffer(root->commit_root);
20602e9f5954SRashika 		root->node = NULL;
20612e9f5954SRashika 		root->commit_root = NULL;
20622e9f5954SRashika 	}
20632e9f5954SRashika }
20642e9f5954SRashika 
2065af31f5e5SChris Mason /* helper to cleanup tree roots */
2066af31f5e5SChris Mason static void free_root_pointers(struct btrfs_fs_info *info, int chunk_root)
2067af31f5e5SChris Mason {
20682e9f5954SRashika 	free_root_extent_buffers(info->tree_root);
2069655b09feSJosef Bacik 
20702e9f5954SRashika 	free_root_extent_buffers(info->dev_root);
20712e9f5954SRashika 	free_root_extent_buffers(info->extent_root);
20722e9f5954SRashika 	free_root_extent_buffers(info->csum_root);
20732e9f5954SRashika 	free_root_extent_buffers(info->quota_root);
20742e9f5954SRashika 	free_root_extent_buffers(info->uuid_root);
20752e9f5954SRashika 	if (chunk_root)
20762e9f5954SRashika 		free_root_extent_buffers(info->chunk_root);
2077af31f5e5SChris Mason }
2078af31f5e5SChris Mason 
2079171f6537SJosef Bacik static void del_fs_roots(struct btrfs_fs_info *fs_info)
2080171f6537SJosef Bacik {
2081171f6537SJosef Bacik 	int ret;
2082171f6537SJosef Bacik 	struct btrfs_root *gang[8];
2083171f6537SJosef Bacik 	int i;
2084171f6537SJosef Bacik 
2085171f6537SJosef Bacik 	while (!list_empty(&fs_info->dead_roots)) {
2086171f6537SJosef Bacik 		gang[0] = list_entry(fs_info->dead_roots.next,
2087171f6537SJosef Bacik 				     struct btrfs_root, root_list);
2088171f6537SJosef Bacik 		list_del(&gang[0]->root_list);
2089171f6537SJosef Bacik 
2090171f6537SJosef Bacik 		if (gang[0]->in_radix) {
2091cb517eabSMiao Xie 			btrfs_drop_and_free_fs_root(fs_info, gang[0]);
2092171f6537SJosef Bacik 		} else {
2093171f6537SJosef Bacik 			free_extent_buffer(gang[0]->node);
2094171f6537SJosef Bacik 			free_extent_buffer(gang[0]->commit_root);
2095b0feb9d9SMiao Xie 			btrfs_put_fs_root(gang[0]);
2096171f6537SJosef Bacik 		}
2097171f6537SJosef Bacik 	}
2098171f6537SJosef Bacik 
2099171f6537SJosef Bacik 	while (1) {
2100171f6537SJosef Bacik 		ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2101171f6537SJosef Bacik 					     (void **)gang, 0,
2102171f6537SJosef Bacik 					     ARRAY_SIZE(gang));
2103171f6537SJosef Bacik 		if (!ret)
2104171f6537SJosef Bacik 			break;
2105171f6537SJosef Bacik 		for (i = 0; i < ret; i++)
2106cb517eabSMiao Xie 			btrfs_drop_and_free_fs_root(fs_info, gang[i]);
2107171f6537SJosef Bacik 	}
21081a4319ccSLiu Bo 
21091a4319ccSLiu Bo 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
21101a4319ccSLiu Bo 		btrfs_free_log_root_tree(NULL, fs_info);
21111a4319ccSLiu Bo 		btrfs_destroy_pinned_extent(fs_info->tree_root,
21121a4319ccSLiu Bo 					    fs_info->pinned_extents);
21131a4319ccSLiu Bo 	}
2114171f6537SJosef Bacik }
2115af31f5e5SChris Mason 
2116ad2b2c80SAl Viro int open_ctree(struct super_block *sb,
2117dfe25020SChris Mason 	       struct btrfs_fs_devices *fs_devices,
2118dfe25020SChris Mason 	       char *options)
2119eb60ceacSChris Mason {
2120db94535dSChris Mason 	u32 sectorsize;
2121db94535dSChris Mason 	u32 nodesize;
2122db94535dSChris Mason 	u32 leafsize;
2123db94535dSChris Mason 	u32 blocksize;
212487ee04ebSChris Mason 	u32 stripesize;
212584234f3aSYan Zheng 	u64 generation;
2126f2b636e8SJosef Bacik 	u64 features;
21273de4586cSChris Mason 	struct btrfs_key location;
2128a061fc8dSChris Mason 	struct buffer_head *bh;
21294d34b278SIlya Dryomov 	struct btrfs_super_block *disk_super;
2130815745cfSAl Viro 	struct btrfs_fs_info *fs_info = btrfs_sb(sb);
2131f84a8bd6SAl Viro 	struct btrfs_root *tree_root;
21324d34b278SIlya Dryomov 	struct btrfs_root *extent_root;
21334d34b278SIlya Dryomov 	struct btrfs_root *csum_root;
21344d34b278SIlya Dryomov 	struct btrfs_root *chunk_root;
21354d34b278SIlya Dryomov 	struct btrfs_root *dev_root;
2136bcef60f2SArne Jansen 	struct btrfs_root *quota_root;
2137f7a81ea4SStefan Behrens 	struct btrfs_root *uuid_root;
2138e02119d5SChris Mason 	struct btrfs_root *log_tree_root;
2139eb60ceacSChris Mason 	int ret;
2140e58ca020SYan 	int err = -EINVAL;
2141af31f5e5SChris Mason 	int num_backups_tried = 0;
2142af31f5e5SChris Mason 	int backup_index = 0;
21435cdc7ad3SQu Wenruo 	int max_active;
21445cdc7ad3SQu Wenruo 	int flags = WQ_MEM_RECLAIM | WQ_FREEZABLE | WQ_UNBOUND;
214570f80175SStefan Behrens 	bool create_uuid_tree;
214670f80175SStefan Behrens 	bool check_uuid_tree;
21474543df7eSChris Mason 
2148f84a8bd6SAl Viro 	tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info);
21496f07e42eSAl Viro 	chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info);
2150cb517eabSMiao Xie 	if (!tree_root || !chunk_root) {
215139279cc3SChris Mason 		err = -ENOMEM;
215239279cc3SChris Mason 		goto fail;
215339279cc3SChris Mason 	}
215476dda93cSYan, Zheng 
215576dda93cSYan, Zheng 	ret = init_srcu_struct(&fs_info->subvol_srcu);
215676dda93cSYan, Zheng 	if (ret) {
215776dda93cSYan, Zheng 		err = ret;
215876dda93cSYan, Zheng 		goto fail;
215976dda93cSYan, Zheng 	}
216076dda93cSYan, Zheng 
216176dda93cSYan, Zheng 	ret = setup_bdi(fs_info, &fs_info->bdi);
216276dda93cSYan, Zheng 	if (ret) {
216376dda93cSYan, Zheng 		err = ret;
216476dda93cSYan, Zheng 		goto fail_srcu;
216576dda93cSYan, Zheng 	}
216676dda93cSYan, Zheng 
2167e2d84521SMiao Xie 	ret = percpu_counter_init(&fs_info->dirty_metadata_bytes, 0);
2168e2d84521SMiao Xie 	if (ret) {
2169e2d84521SMiao Xie 		err = ret;
2170e2d84521SMiao Xie 		goto fail_bdi;
2171e2d84521SMiao Xie 	}
2172e2d84521SMiao Xie 	fs_info->dirty_metadata_batch = PAGE_CACHE_SIZE *
2173e2d84521SMiao Xie 					(1 + ilog2(nr_cpu_ids));
2174e2d84521SMiao Xie 
2175963d678bSMiao Xie 	ret = percpu_counter_init(&fs_info->delalloc_bytes, 0);
2176963d678bSMiao Xie 	if (ret) {
2177963d678bSMiao Xie 		err = ret;
2178963d678bSMiao Xie 		goto fail_dirty_metadata_bytes;
2179963d678bSMiao Xie 	}
2180963d678bSMiao Xie 
2181c404e0dcSMiao Xie 	ret = percpu_counter_init(&fs_info->bio_counter, 0);
2182c404e0dcSMiao Xie 	if (ret) {
2183c404e0dcSMiao Xie 		err = ret;
2184c404e0dcSMiao Xie 		goto fail_delalloc_bytes;
2185c404e0dcSMiao Xie 	}
2186c404e0dcSMiao Xie 
218776dda93cSYan, Zheng 	fs_info->btree_inode = new_inode(sb);
218876dda93cSYan, Zheng 	if (!fs_info->btree_inode) {
218976dda93cSYan, Zheng 		err = -ENOMEM;
2190c404e0dcSMiao Xie 		goto fail_bio_counter;
219176dda93cSYan, Zheng 	}
219276dda93cSYan, Zheng 
2193a6591715SChris Mason 	mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
21941561dedaSMiao Xie 
219576dda93cSYan, Zheng 	INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
2196f28491e0SJosef Bacik 	INIT_RADIX_TREE(&fs_info->buffer_radix, GFP_ATOMIC);
21978fd17795SChris Mason 	INIT_LIST_HEAD(&fs_info->trans_list);
2198facda1e7SChris Mason 	INIT_LIST_HEAD(&fs_info->dead_roots);
219924bbcf04SYan, Zheng 	INIT_LIST_HEAD(&fs_info->delayed_iputs);
2200eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&fs_info->delalloc_roots);
220111833d66SYan Zheng 	INIT_LIST_HEAD(&fs_info->caching_block_groups);
2202eb73c1b7SMiao Xie 	spin_lock_init(&fs_info->delalloc_root_lock);
2203a4abeea4SJosef Bacik 	spin_lock_init(&fs_info->trans_lock);
220476dda93cSYan, Zheng 	spin_lock_init(&fs_info->fs_roots_radix_lock);
220524bbcf04SYan, Zheng 	spin_lock_init(&fs_info->delayed_iput_lock);
22064cb5300bSChris Mason 	spin_lock_init(&fs_info->defrag_inodes_lock);
22072bf64758SJosef Bacik 	spin_lock_init(&fs_info->free_chunk_lock);
2208f29021b2SJan Schmidt 	spin_lock_init(&fs_info->tree_mod_seq_lock);
2209ceda0864SMiao Xie 	spin_lock_init(&fs_info->super_lock);
2210f28491e0SJosef Bacik 	spin_lock_init(&fs_info->buffer_lock);
2211f29021b2SJan Schmidt 	rwlock_init(&fs_info->tree_mod_log_lock);
22127585717fSChris Mason 	mutex_init(&fs_info->reloc_mutex);
2213573bfb72SMiao Xie 	mutex_init(&fs_info->delalloc_root_mutex);
2214de98ced9SMiao Xie 	seqlock_init(&fs_info->profiles_lock);
221519c00ddcSChris Mason 
221658176a96SJosef Bacik 	init_completion(&fs_info->kobj_unregister);
22170b86a832SChris Mason 	INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
22186324fbf3SChris Mason 	INIT_LIST_HEAD(&fs_info->space_info);
2219f29021b2SJan Schmidt 	INIT_LIST_HEAD(&fs_info->tree_mod_seq_list);
22200b86a832SChris Mason 	btrfs_mapping_init(&fs_info->mapping_tree);
222166d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->global_block_rsv,
222266d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_GLOBAL);
222366d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->delalloc_block_rsv,
222466d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_DELALLOC);
222566d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->trans_block_rsv, BTRFS_BLOCK_RSV_TRANS);
222666d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->chunk_block_rsv, BTRFS_BLOCK_RSV_CHUNK);
222766d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->empty_block_rsv, BTRFS_BLOCK_RSV_EMPTY);
222866d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->delayed_block_rsv,
222966d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_DELOPS);
2230cb03c743SChris Mason 	atomic_set(&fs_info->nr_async_submits, 0);
2231771ed689SChris Mason 	atomic_set(&fs_info->async_delalloc_pages, 0);
22328c8bee1dSChris Mason 	atomic_set(&fs_info->async_submit_draining, 0);
22330986fe9eSChris Mason 	atomic_set(&fs_info->nr_async_bios, 0);
22344cb5300bSChris Mason 	atomic_set(&fs_info->defrag_running, 0);
2235fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
2236e20d96d6SChris Mason 	fs_info->sb = sb;
22376f568d35SChris Mason 	fs_info->max_inline = 8192 * 1024;
22389ed74f2dSJosef Bacik 	fs_info->metadata_ratio = 0;
22394cb5300bSChris Mason 	fs_info->defrag_inodes = RB_ROOT;
22402bf64758SJosef Bacik 	fs_info->free_chunk_space = 0;
2241f29021b2SJan Schmidt 	fs_info->tree_mod_log = RB_ROOT;
22428b87dc17SDavid Sterba 	fs_info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL;
22430a2b2a84SJosef Bacik 	fs_info->avg_delayed_ref_runtime = div64_u64(NSEC_PER_SEC, 64);
224490519d66SArne Jansen 	/* readahead state */
224590519d66SArne Jansen 	INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_WAIT);
224690519d66SArne Jansen 	spin_lock_init(&fs_info->reada_lock);
2247c8b97818SChris Mason 
2248b34b086cSChris Mason 	fs_info->thread_pool_size = min_t(unsigned long,
2249b34b086cSChris Mason 					  num_online_cpus() + 2, 8);
22500afbaf8cSChris Mason 
2251199c2a9cSMiao Xie 	INIT_LIST_HEAD(&fs_info->ordered_roots);
2252199c2a9cSMiao Xie 	spin_lock_init(&fs_info->ordered_root_lock);
225316cdcec7SMiao Xie 	fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root),
225416cdcec7SMiao Xie 					GFP_NOFS);
225516cdcec7SMiao Xie 	if (!fs_info->delayed_root) {
225616cdcec7SMiao Xie 		err = -ENOMEM;
225716cdcec7SMiao Xie 		goto fail_iput;
225816cdcec7SMiao Xie 	}
225916cdcec7SMiao Xie 	btrfs_init_delayed_root(fs_info->delayed_root);
22603eaa2885SChris Mason 
2261a2de733cSArne Jansen 	mutex_init(&fs_info->scrub_lock);
2262a2de733cSArne Jansen 	atomic_set(&fs_info->scrubs_running, 0);
2263a2de733cSArne Jansen 	atomic_set(&fs_info->scrub_pause_req, 0);
2264a2de733cSArne Jansen 	atomic_set(&fs_info->scrubs_paused, 0);
2265a2de733cSArne Jansen 	atomic_set(&fs_info->scrub_cancel_req, 0);
2266c404e0dcSMiao Xie 	init_waitqueue_head(&fs_info->replace_wait);
2267a2de733cSArne Jansen 	init_waitqueue_head(&fs_info->scrub_pause_wait);
2268a2de733cSArne Jansen 	fs_info->scrub_workers_refcnt = 0;
226921adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
227021adbd5cSStefan Behrens 	fs_info->check_integrity_print_mask = 0;
227121adbd5cSStefan Behrens #endif
2272a2de733cSArne Jansen 
2273c9e9f97bSIlya Dryomov 	spin_lock_init(&fs_info->balance_lock);
2274c9e9f97bSIlya Dryomov 	mutex_init(&fs_info->balance_mutex);
2275837d5b6eSIlya Dryomov 	atomic_set(&fs_info->balance_running, 0);
2276837d5b6eSIlya Dryomov 	atomic_set(&fs_info->balance_pause_req, 0);
2277a7e99c69SIlya Dryomov 	atomic_set(&fs_info->balance_cancel_req, 0);
2278c9e9f97bSIlya Dryomov 	fs_info->balance_ctl = NULL;
2279837d5b6eSIlya Dryomov 	init_waitqueue_head(&fs_info->balance_wait_q);
2280a061fc8dSChris Mason 
22810afbaf8cSChris Mason 	sb->s_blocksize = 4096;
22820afbaf8cSChris Mason 	sb->s_blocksize_bits = blksize_bits(4096);
228332a88aa1SJens Axboe 	sb->s_bdi = &fs_info->bdi;
22840afbaf8cSChris Mason 
228576dda93cSYan, Zheng 	fs_info->btree_inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
2286bfe86848SMiklos Szeredi 	set_nlink(fs_info->btree_inode, 1);
22870afbaf8cSChris Mason 	/*
22880afbaf8cSChris Mason 	 * we set the i_size on the btree inode to the max possible int.
22890afbaf8cSChris Mason 	 * the real end of the address space is determined by all of
22900afbaf8cSChris Mason 	 * the devices in the system
22910afbaf8cSChris Mason 	 */
22920afbaf8cSChris Mason 	fs_info->btree_inode->i_size = OFFSET_MAX;
2293d98237b3SChris Mason 	fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
229404160088SChris Mason 	fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
229504160088SChris Mason 
22965d4f98a2SYan Zheng 	RB_CLEAR_NODE(&BTRFS_I(fs_info->btree_inode)->rb_node);
2297d1310b2eSChris Mason 	extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
2298f993c883SDavid Sterba 			     fs_info->btree_inode->i_mapping);
22990b32f4bbSJosef Bacik 	BTRFS_I(fs_info->btree_inode)->io_tree.track_uptodate = 0;
2300a8067e02SDavid Sterba 	extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree);
23010da5468fSChris Mason 
2302d1310b2eSChris Mason 	BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
2303d1310b2eSChris Mason 
23040f7d52f4SChris Mason 	BTRFS_I(fs_info->btree_inode)->root = tree_root;
23050f7d52f4SChris Mason 	memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
23060f7d52f4SChris Mason 	       sizeof(struct btrfs_key));
230772ac3c0dSJosef Bacik 	set_bit(BTRFS_INODE_DUMMY,
230872ac3c0dSJosef Bacik 		&BTRFS_I(fs_info->btree_inode)->runtime_flags);
2309778ba82bSFilipe David Borba Manana 	btrfs_insert_inode_hash(fs_info->btree_inode);
231039279cc3SChris Mason 
2311e02119d5SChris Mason 	spin_lock_init(&fs_info->block_group_cache_lock);
23126bef4d31SEric Paris 	fs_info->block_group_cache_tree = RB_ROOT;
2313a1897fddSLiu Bo 	fs_info->first_logical_byte = (u64)-1;
2314925baeddSChris Mason 
231511833d66SYan Zheng 	extent_io_tree_init(&fs_info->freed_extents[0],
2316f993c883SDavid Sterba 			     fs_info->btree_inode->i_mapping);
231711833d66SYan Zheng 	extent_io_tree_init(&fs_info->freed_extents[1],
2318f993c883SDavid Sterba 			     fs_info->btree_inode->i_mapping);
231911833d66SYan Zheng 	fs_info->pinned_extents = &fs_info->freed_extents[0];
2320e6dcd2dcSChris Mason 	fs_info->do_barriers = 1;
2321f9295749SChris Mason 
2322d98237b3SChris Mason 
23235a3f23d5SChris Mason 	mutex_init(&fs_info->ordered_operations_mutex);
23249ffba8cdSJosef Bacik 	mutex_init(&fs_info->ordered_extent_flush_mutex);
232530ae8467SChris Mason 	mutex_init(&fs_info->tree_log_mutex);
2326925baeddSChris Mason 	mutex_init(&fs_info->chunk_mutex);
2327925baeddSChris Mason 	mutex_init(&fs_info->transaction_kthread_mutex);
2328a74a4b97SChris Mason 	mutex_init(&fs_info->cleaner_mutex);
2329a74a4b97SChris Mason 	mutex_init(&fs_info->volume_mutex);
2330276e680dSYan Zheng 	init_rwsem(&fs_info->extent_commit_sem);
2331c71bf099SYan, Zheng 	init_rwsem(&fs_info->cleanup_work_sem);
233276dda93cSYan, Zheng 	init_rwsem(&fs_info->subvol_sem);
2333803b2f54SStefan Behrens 	sema_init(&fs_info->uuid_tree_rescan_sem, 1);
2334e922e087SStefan Behrens 	fs_info->dev_replace.lock_owner = 0;
2335e922e087SStefan Behrens 	atomic_set(&fs_info->dev_replace.nesting_level, 0);
2336e922e087SStefan Behrens 	mutex_init(&fs_info->dev_replace.lock_finishing_cancel_unmount);
2337e922e087SStefan Behrens 	mutex_init(&fs_info->dev_replace.lock_management_lock);
2338e922e087SStefan Behrens 	mutex_init(&fs_info->dev_replace.lock);
2339fa9c0d79SChris Mason 
2340416ac51dSArne Jansen 	spin_lock_init(&fs_info->qgroup_lock);
2341f2f6ed3dSWang Shilong 	mutex_init(&fs_info->qgroup_ioctl_lock);
2342416ac51dSArne Jansen 	fs_info->qgroup_tree = RB_ROOT;
2343416ac51dSArne Jansen 	INIT_LIST_HEAD(&fs_info->dirty_qgroups);
2344416ac51dSArne Jansen 	fs_info->qgroup_seq = 1;
2345416ac51dSArne Jansen 	fs_info->quota_enabled = 0;
2346416ac51dSArne Jansen 	fs_info->pending_quota_state = 0;
23471e8f9158SWang Shilong 	fs_info->qgroup_ulist = NULL;
23482f232036SJan Schmidt 	mutex_init(&fs_info->qgroup_rescan_lock);
2349416ac51dSArne Jansen 
2350fa9c0d79SChris Mason 	btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
2351fa9c0d79SChris Mason 	btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
2352fa9c0d79SChris Mason 
23537d9eb12cSChris Mason 	init_waitqueue_head(&fs_info->transaction_throttle);
23543768f368SChris Mason 	init_waitqueue_head(&fs_info->transaction_wait);
2355bb9c12c9SSage Weil 	init_waitqueue_head(&fs_info->transaction_blocked_wait);
23564854ddd0SChris Mason 	init_waitqueue_head(&fs_info->async_submit_wait);
23579a8dd150SChris Mason 
235853b381b3SDavid Woodhouse 	ret = btrfs_alloc_stripe_hash_table(fs_info);
235953b381b3SDavid Woodhouse 	if (ret) {
236083c8266aSDavid Sterba 		err = ret;
236153b381b3SDavid Woodhouse 		goto fail_alloc;
236253b381b3SDavid Woodhouse 	}
236353b381b3SDavid Woodhouse 
23640b86a832SChris Mason 	__setup_root(4096, 4096, 4096, 4096, tree_root,
23652c90e5d6SChris Mason 		     fs_info, BTRFS_ROOT_TREE_OBJECTID);
23667eccb903SChris Mason 
23673c4bb26bSChris Mason 	invalidate_bdev(fs_devices->latest_bdev);
23681104a885SDavid Sterba 
23691104a885SDavid Sterba 	/*
23701104a885SDavid Sterba 	 * Read super block and check the signature bytes only
23711104a885SDavid Sterba 	 */
2372a512bbf8SYan Zheng 	bh = btrfs_read_dev_super(fs_devices->latest_bdev);
237320b45077SDave Young 	if (!bh) {
237420b45077SDave Young 		err = -EINVAL;
237516cdcec7SMiao Xie 		goto fail_alloc;
237620b45077SDave Young 	}
237739279cc3SChris Mason 
23781104a885SDavid Sterba 	/*
23791104a885SDavid Sterba 	 * We want to check superblock checksum, the type is stored inside.
23801104a885SDavid Sterba 	 * Pass the whole disk block of size BTRFS_SUPER_INFO_SIZE (4k).
23811104a885SDavid Sterba 	 */
23821104a885SDavid Sterba 	if (btrfs_check_super_csum(bh->b_data)) {
2383efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: superblock checksum mismatch\n");
23841104a885SDavid Sterba 		err = -EINVAL;
23851104a885SDavid Sterba 		goto fail_alloc;
23861104a885SDavid Sterba 	}
23871104a885SDavid Sterba 
23881104a885SDavid Sterba 	/*
23891104a885SDavid Sterba 	 * super_copy is zeroed at allocation time and we never touch the
23901104a885SDavid Sterba 	 * following bytes up to INFO_SIZE, the checksum is calculated from
23911104a885SDavid Sterba 	 * the whole block of INFO_SIZE
23921104a885SDavid Sterba 	 */
23936c41761fSDavid Sterba 	memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy));
23946c41761fSDavid Sterba 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
23956c41761fSDavid Sterba 	       sizeof(*fs_info->super_for_commit));
2396a061fc8dSChris Mason 	brelse(bh);
23975f39d397SChris Mason 
23986c41761fSDavid Sterba 	memcpy(fs_info->fsid, fs_info->super_copy->fsid, BTRFS_FSID_SIZE);
23990b86a832SChris Mason 
24001104a885SDavid Sterba 	ret = btrfs_check_super_valid(fs_info, sb->s_flags & MS_RDONLY);
24011104a885SDavid Sterba 	if (ret) {
2402efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: superblock contains fatal errors\n");
24031104a885SDavid Sterba 		err = -EINVAL;
24041104a885SDavid Sterba 		goto fail_alloc;
24051104a885SDavid Sterba 	}
24061104a885SDavid Sterba 
24076c41761fSDavid Sterba 	disk_super = fs_info->super_copy;
24080f7d52f4SChris Mason 	if (!btrfs_super_root(disk_super))
240916cdcec7SMiao Xie 		goto fail_alloc;
24100f7d52f4SChris Mason 
2411acce952bSliubo 	/* check FS state, whether FS is broken. */
241287533c47SMiao Xie 	if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_ERROR)
241387533c47SMiao Xie 		set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
2414acce952bSliubo 
241575e7cb7fSLiu Bo 	/*
2416af31f5e5SChris Mason 	 * run through our array of backup supers and setup
2417af31f5e5SChris Mason 	 * our ring pointer to the oldest one
2418af31f5e5SChris Mason 	 */
2419af31f5e5SChris Mason 	generation = btrfs_super_generation(disk_super);
2420af31f5e5SChris Mason 	find_oldest_super_backup(fs_info, generation);
2421af31f5e5SChris Mason 
2422af31f5e5SChris Mason 	/*
242375e7cb7fSLiu Bo 	 * In the long term, we'll store the compression type in the super
242475e7cb7fSLiu Bo 	 * block, and it'll be used for per file compression control.
242575e7cb7fSLiu Bo 	 */
242675e7cb7fSLiu Bo 	fs_info->compress_type = BTRFS_COMPRESS_ZLIB;
242775e7cb7fSLiu Bo 
24282b82032cSYan Zheng 	ret = btrfs_parse_options(tree_root, options);
24292b82032cSYan Zheng 	if (ret) {
24302b82032cSYan Zheng 		err = ret;
243116cdcec7SMiao Xie 		goto fail_alloc;
24322b82032cSYan Zheng 	}
2433dfe25020SChris Mason 
2434f2b636e8SJosef Bacik 	features = btrfs_super_incompat_flags(disk_super) &
2435f2b636e8SJosef Bacik 		~BTRFS_FEATURE_INCOMPAT_SUPP;
2436f2b636e8SJosef Bacik 	if (features) {
2437f2b636e8SJosef Bacik 		printk(KERN_ERR "BTRFS: couldn't mount because of "
2438f2b636e8SJosef Bacik 		       "unsupported optional features (%Lx).\n",
2439c1c9ff7cSGeert Uytterhoeven 		       features);
2440f2b636e8SJosef Bacik 		err = -EINVAL;
244116cdcec7SMiao Xie 		goto fail_alloc;
2442f2b636e8SJosef Bacik 	}
2443f2b636e8SJosef Bacik 
2444727011e0SChris Mason 	if (btrfs_super_leafsize(disk_super) !=
2445727011e0SChris Mason 	    btrfs_super_nodesize(disk_super)) {
2446727011e0SChris Mason 		printk(KERN_ERR "BTRFS: couldn't mount because metadata "
2447727011e0SChris Mason 		       "blocksizes don't match.  node %d leaf %d\n",
2448727011e0SChris Mason 		       btrfs_super_nodesize(disk_super),
2449727011e0SChris Mason 		       btrfs_super_leafsize(disk_super));
2450727011e0SChris Mason 		err = -EINVAL;
2451727011e0SChris Mason 		goto fail_alloc;
2452727011e0SChris Mason 	}
2453727011e0SChris Mason 	if (btrfs_super_leafsize(disk_super) > BTRFS_MAX_METADATA_BLOCKSIZE) {
2454727011e0SChris Mason 		printk(KERN_ERR "BTRFS: couldn't mount because metadata "
2455727011e0SChris Mason 		       "blocksize (%d) was too large\n",
2456727011e0SChris Mason 		       btrfs_super_leafsize(disk_super));
2457727011e0SChris Mason 		err = -EINVAL;
2458727011e0SChris Mason 		goto fail_alloc;
2459727011e0SChris Mason 	}
2460727011e0SChris Mason 
24615d4f98a2SYan Zheng 	features = btrfs_super_incompat_flags(disk_super);
24625d4f98a2SYan Zheng 	features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
246369e380d1SLi Zefan 	if (tree_root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
2464a6fa6faeSLi Zefan 		features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
2465727011e0SChris Mason 
24663173a18fSJosef Bacik 	if (features & BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA)
2467efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: has skinny extents\n");
24683173a18fSJosef Bacik 
2469727011e0SChris Mason 	/*
2470727011e0SChris Mason 	 * flag our filesystem as having big metadata blocks if
2471727011e0SChris Mason 	 * they are bigger than the page size
2472727011e0SChris Mason 	 */
2473727011e0SChris Mason 	if (btrfs_super_leafsize(disk_super) > PAGE_CACHE_SIZE) {
2474727011e0SChris Mason 		if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA))
2475efe120a0SFrank Holton 			printk(KERN_INFO "BTRFS: flagging fs with big metadata feature\n");
2476727011e0SChris Mason 		features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA;
2477727011e0SChris Mason 	}
2478727011e0SChris Mason 
2479bc3f116fSChris Mason 	nodesize = btrfs_super_nodesize(disk_super);
2480bc3f116fSChris Mason 	leafsize = btrfs_super_leafsize(disk_super);
2481bc3f116fSChris Mason 	sectorsize = btrfs_super_sectorsize(disk_super);
2482bc3f116fSChris Mason 	stripesize = btrfs_super_stripesize(disk_super);
2483e2d84521SMiao Xie 	fs_info->dirty_metadata_batch = leafsize * (1 + ilog2(nr_cpu_ids));
2484963d678bSMiao Xie 	fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids));
2485bc3f116fSChris Mason 
2486bc3f116fSChris Mason 	/*
2487bc3f116fSChris Mason 	 * mixed block groups end up with duplicate but slightly offset
2488bc3f116fSChris Mason 	 * extent buffers for the same range.  It leads to corruptions
2489bc3f116fSChris Mason 	 */
2490bc3f116fSChris Mason 	if ((features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) &&
2491bc3f116fSChris Mason 	    (sectorsize != leafsize)) {
2492efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: unequal leaf/node/sector sizes "
2493bc3f116fSChris Mason 				"are not allowed for mixed block groups on %s\n",
2494bc3f116fSChris Mason 				sb->s_id);
2495bc3f116fSChris Mason 		goto fail_alloc;
2496bc3f116fSChris Mason 	}
2497bc3f116fSChris Mason 
2498ceda0864SMiao Xie 	/*
2499ceda0864SMiao Xie 	 * Needn't use the lock because there is no other task which will
2500ceda0864SMiao Xie 	 * update the flag.
2501ceda0864SMiao Xie 	 */
25025d4f98a2SYan Zheng 	btrfs_set_super_incompat_flags(disk_super, features);
25035d4f98a2SYan Zheng 
2504f2b636e8SJosef Bacik 	features = btrfs_super_compat_ro_flags(disk_super) &
2505f2b636e8SJosef Bacik 		~BTRFS_FEATURE_COMPAT_RO_SUPP;
2506f2b636e8SJosef Bacik 	if (!(sb->s_flags & MS_RDONLY) && features) {
2507f2b636e8SJosef Bacik 		printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
2508f2b636e8SJosef Bacik 		       "unsupported option features (%Lx).\n",
2509c1c9ff7cSGeert Uytterhoeven 		       features);
2510f2b636e8SJosef Bacik 		err = -EINVAL;
251116cdcec7SMiao Xie 		goto fail_alloc;
2512f2b636e8SJosef Bacik 	}
251361d92c32SChris Mason 
25145cdc7ad3SQu Wenruo 	max_active = fs_info->thread_pool_size;
251561d92c32SChris Mason 
25165cdc7ad3SQu Wenruo 	fs_info->workers =
25175cdc7ad3SQu Wenruo 		btrfs_alloc_workqueue("worker", flags | WQ_HIGHPRI,
25185cdc7ad3SQu Wenruo 				      max_active, 16);
2519c8b97818SChris Mason 
2520afe3d242SQu Wenruo 	fs_info->delalloc_workers =
2521afe3d242SQu Wenruo 		btrfs_alloc_workqueue("delalloc", flags, max_active, 2);
2522771ed689SChris Mason 
2523a44903abSQu Wenruo 	fs_info->flush_workers =
2524a44903abSQu Wenruo 		btrfs_alloc_workqueue("flush_delalloc", flags, max_active, 0);
252561b49440SChris Mason 
2526e66f0bb1SQu Wenruo 	fs_info->caching_workers =
2527e66f0bb1SQu Wenruo 		btrfs_alloc_workqueue("cache", flags, max_active, 0);
2528bab39bf9SJosef Bacik 
2529a8c93d4eSQu Wenruo 	/*
2530a8c93d4eSQu Wenruo 	 * a higher idle thresh on the submit workers makes it much more
253161b49440SChris Mason 	 * likely that bios will be send down in a sane order to the
253261b49440SChris Mason 	 * devices
253361b49440SChris Mason 	 */
2534a8c93d4eSQu Wenruo 	fs_info->submit_workers =
2535a8c93d4eSQu Wenruo 		btrfs_alloc_workqueue("submit", flags,
2536a8c93d4eSQu Wenruo 				      min_t(u64, fs_devices->num_devices,
2537a8c93d4eSQu Wenruo 					    max_active), 64);
253853863232SChris Mason 
2539dc6e3209SQu Wenruo 	fs_info->fixup_workers =
2540dc6e3209SQu Wenruo 		btrfs_alloc_workqueue("fixup", flags, 1, 0);
2541fccb5d86SQu Wenruo 
2542fccb5d86SQu Wenruo 	/*
2543fccb5d86SQu Wenruo 	 * endios are largely parallel and should have a very
2544fccb5d86SQu Wenruo 	 * low idle thresh
2545fccb5d86SQu Wenruo 	 */
2546fccb5d86SQu Wenruo 	fs_info->endio_workers =
2547fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("endio", flags, max_active, 4);
2548fccb5d86SQu Wenruo 	fs_info->endio_meta_workers =
2549fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("endio-meta", flags, max_active, 4);
2550fccb5d86SQu Wenruo 	fs_info->endio_meta_write_workers =
2551fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("endio-meta-write", flags, max_active, 2);
2552fccb5d86SQu Wenruo 	fs_info->endio_raid56_workers =
2553fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("endio-raid56", flags, max_active, 4);
2554d05a33acSQu Wenruo 	fs_info->rmw_workers =
2555d05a33acSQu Wenruo 		btrfs_alloc_workqueue("rmw", flags, max_active, 2);
2556fccb5d86SQu Wenruo 	fs_info->endio_write_workers =
2557fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("endio-write", flags, max_active, 2);
2558fccb5d86SQu Wenruo 	fs_info->endio_freespace_worker =
2559fccb5d86SQu Wenruo 		btrfs_alloc_workqueue("freespace-write", flags, max_active, 0);
25605b3bc44eSQu Wenruo 	fs_info->delayed_workers =
25615b3bc44eSQu Wenruo 		btrfs_alloc_workqueue("delayed-meta", flags, max_active, 0);
2562736cfa15SQu Wenruo 	fs_info->readahead_workers =
2563736cfa15SQu Wenruo 		btrfs_alloc_workqueue("readahead", flags, max_active, 2);
2564fc97fab0SQu Wenruo 	fs_info->qgroup_rescan_workers =
2565fc97fab0SQu Wenruo 		btrfs_alloc_workqueue("qgroup-rescan", flags, 1, 0);
256661b49440SChris Mason 
2567a8c93d4eSQu Wenruo 	if (!(fs_info->workers && fs_info->delalloc_workers &&
2568fccb5d86SQu Wenruo 	      fs_info->submit_workers && fs_info->flush_workers &&
2569fccb5d86SQu Wenruo 	      fs_info->endio_workers && fs_info->endio_meta_workers &&
2570fccb5d86SQu Wenruo 	      fs_info->endio_meta_write_workers &&
2571fccb5d86SQu Wenruo 	      fs_info->endio_write_workers && fs_info->endio_raid56_workers &&
2572e66f0bb1SQu Wenruo 	      fs_info->endio_freespace_worker && fs_info->rmw_workers &&
2573dc6e3209SQu Wenruo 	      fs_info->caching_workers && fs_info->readahead_workers &&
2574fc97fab0SQu Wenruo 	      fs_info->fixup_workers && fs_info->delayed_workers &&
2575fc97fab0SQu Wenruo 	      fs_info->qgroup_rescan_workers)) {
25765cdc7ad3SQu Wenruo 		err = -ENOMEM;
25775cdc7ad3SQu Wenruo 		goto fail_sb_buffer;
25785cdc7ad3SQu Wenruo 	}
25794543df7eSChris Mason 
25804575c9ccSChris Mason 	fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
2581c8b97818SChris Mason 	fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
2582c8b97818SChris Mason 				    4 * 1024 * 1024 / PAGE_CACHE_SIZE);
25834575c9ccSChris Mason 
2584db94535dSChris Mason 	tree_root->nodesize = nodesize;
2585db94535dSChris Mason 	tree_root->leafsize = leafsize;
2586db94535dSChris Mason 	tree_root->sectorsize = sectorsize;
258787ee04ebSChris Mason 	tree_root->stripesize = stripesize;
2588a061fc8dSChris Mason 
2589a061fc8dSChris Mason 	sb->s_blocksize = sectorsize;
2590a061fc8dSChris Mason 	sb->s_blocksize_bits = blksize_bits(sectorsize);
2591db94535dSChris Mason 
25923cae210fSQu Wenruo 	if (btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
2593efe120a0SFrank Holton 		printk(KERN_INFO "BTRFS: valid FS not found on %s\n", sb->s_id);
259439279cc3SChris Mason 		goto fail_sb_buffer;
259539279cc3SChris Mason 	}
259619c00ddcSChris Mason 
25978d082fb7SLiu Bo 	if (sectorsize != PAGE_SIZE) {
2598efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: Incompatible sector size(%lu) "
25998d082fb7SLiu Bo 		       "found on %s\n", (unsigned long)sectorsize, sb->s_id);
2600941b2ddfSKeith Mannthey 		goto fail_sb_buffer;
2601941b2ddfSKeith Mannthey 	}
2602941b2ddfSKeith Mannthey 
2603925baeddSChris Mason 	mutex_lock(&fs_info->chunk_mutex);
2604e4404d6eSYan Zheng 	ret = btrfs_read_sys_array(tree_root);
2605925baeddSChris Mason 	mutex_unlock(&fs_info->chunk_mutex);
260684eed90fSChris Mason 	if (ret) {
2607efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to read the system "
2608d397712bSChris Mason 		       "array on %s\n", sb->s_id);
26095d4f98a2SYan Zheng 		goto fail_sb_buffer;
261084eed90fSChris Mason 	}
26110b86a832SChris Mason 
26120b86a832SChris Mason 	blocksize = btrfs_level_size(tree_root,
26130b86a832SChris Mason 				     btrfs_super_chunk_root_level(disk_super));
261484234f3aSYan Zheng 	generation = btrfs_super_chunk_root_generation(disk_super);
26150b86a832SChris Mason 
26160b86a832SChris Mason 	__setup_root(nodesize, leafsize, sectorsize, stripesize,
26170b86a832SChris Mason 		     chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
26180b86a832SChris Mason 
26190b86a832SChris Mason 	chunk_root->node = read_tree_block(chunk_root,
26200b86a832SChris Mason 					   btrfs_super_chunk_root(disk_super),
262184234f3aSYan Zheng 					   blocksize, generation);
2622416bc658SJosef Bacik 	if (!chunk_root->node ||
2623416bc658SJosef Bacik 	    !test_bit(EXTENT_BUFFER_UPTODATE, &chunk_root->node->bflags)) {
2624efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to read chunk root on %s\n",
262583121942SDavid Woodhouse 		       sb->s_id);
2626af31f5e5SChris Mason 		goto fail_tree_roots;
262783121942SDavid Woodhouse 	}
26285d4f98a2SYan Zheng 	btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
26295d4f98a2SYan Zheng 	chunk_root->commit_root = btrfs_root_node(chunk_root);
26300b86a832SChris Mason 
2631e17cade2SChris Mason 	read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
2632b308bc2fSGeert Uytterhoeven 	   btrfs_header_chunk_tree_uuid(chunk_root->node), BTRFS_UUID_SIZE);
2633e17cade2SChris Mason 
26340b86a832SChris Mason 	ret = btrfs_read_chunk_tree(chunk_root);
26352b82032cSYan Zheng 	if (ret) {
2636efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to read chunk tree on %s\n",
2637d397712bSChris Mason 		       sb->s_id);
2638af31f5e5SChris Mason 		goto fail_tree_roots;
26392b82032cSYan Zheng 	}
26400b86a832SChris Mason 
26418dabb742SStefan Behrens 	/*
26428dabb742SStefan Behrens 	 * keep the device that is marked to be the target device for the
26438dabb742SStefan Behrens 	 * dev_replace procedure
26448dabb742SStefan Behrens 	 */
26458dabb742SStefan Behrens 	btrfs_close_extra_devices(fs_info, fs_devices, 0);
2646dfe25020SChris Mason 
2647a6b0d5c8SChris Mason 	if (!fs_devices->latest_bdev) {
2648efe120a0SFrank Holton 		printk(KERN_CRIT "BTRFS: failed to read devices on %s\n",
2649a6b0d5c8SChris Mason 		       sb->s_id);
2650a6b0d5c8SChris Mason 		goto fail_tree_roots;
2651a6b0d5c8SChris Mason 	}
2652a6b0d5c8SChris Mason 
2653af31f5e5SChris Mason retry_root_backup:
2654db94535dSChris Mason 	blocksize = btrfs_level_size(tree_root,
2655db94535dSChris Mason 				     btrfs_super_root_level(disk_super));
265684234f3aSYan Zheng 	generation = btrfs_super_generation(disk_super);
26570b86a832SChris Mason 
2658e20d96d6SChris Mason 	tree_root->node = read_tree_block(tree_root,
2659db94535dSChris Mason 					  btrfs_super_root(disk_super),
266084234f3aSYan Zheng 					  blocksize, generation);
2661af31f5e5SChris Mason 	if (!tree_root->node ||
2662af31f5e5SChris Mason 	    !test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
2663efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to read tree root on %s\n",
266483121942SDavid Woodhouse 		       sb->s_id);
2665af31f5e5SChris Mason 
2666af31f5e5SChris Mason 		goto recovery_tree_root;
266783121942SDavid Woodhouse 	}
2668af31f5e5SChris Mason 
26695d4f98a2SYan Zheng 	btrfs_set_root_node(&tree_root->root_item, tree_root->node);
26705d4f98a2SYan Zheng 	tree_root->commit_root = btrfs_root_node(tree_root);
267169e9c6c6SStefan Behrens 	btrfs_set_root_refs(&tree_root->root_item, 1);
2672db94535dSChris Mason 
2673cb517eabSMiao Xie 	location.objectid = BTRFS_EXTENT_TREE_OBJECTID;
2674cb517eabSMiao Xie 	location.type = BTRFS_ROOT_ITEM_KEY;
2675cb517eabSMiao Xie 	location.offset = 0;
2676cb517eabSMiao Xie 
2677cb517eabSMiao Xie 	extent_root = btrfs_read_tree_root(tree_root, &location);
2678cb517eabSMiao Xie 	if (IS_ERR(extent_root)) {
2679cb517eabSMiao Xie 		ret = PTR_ERR(extent_root);
2680af31f5e5SChris Mason 		goto recovery_tree_root;
2681cb517eabSMiao Xie 	}
26820b86a832SChris Mason 	extent_root->track_dirty = 1;
2683cb517eabSMiao Xie 	fs_info->extent_root = extent_root;
26840b86a832SChris Mason 
2685cb517eabSMiao Xie 	location.objectid = BTRFS_DEV_TREE_OBJECTID;
2686cb517eabSMiao Xie 	dev_root = btrfs_read_tree_root(tree_root, &location);
2687cb517eabSMiao Xie 	if (IS_ERR(dev_root)) {
2688cb517eabSMiao Xie 		ret = PTR_ERR(dev_root);
2689af31f5e5SChris Mason 		goto recovery_tree_root;
2690cb517eabSMiao Xie 	}
26915d4f98a2SYan Zheng 	dev_root->track_dirty = 1;
2692cb517eabSMiao Xie 	fs_info->dev_root = dev_root;
2693cb517eabSMiao Xie 	btrfs_init_devices_late(fs_info);
26943768f368SChris Mason 
2695cb517eabSMiao Xie 	location.objectid = BTRFS_CSUM_TREE_OBJECTID;
2696cb517eabSMiao Xie 	csum_root = btrfs_read_tree_root(tree_root, &location);
2697cb517eabSMiao Xie 	if (IS_ERR(csum_root)) {
2698cb517eabSMiao Xie 		ret = PTR_ERR(csum_root);
2699af31f5e5SChris Mason 		goto recovery_tree_root;
2700cb517eabSMiao Xie 	}
2701d20f7043SChris Mason 	csum_root->track_dirty = 1;
2702cb517eabSMiao Xie 	fs_info->csum_root = csum_root;
2703d20f7043SChris Mason 
2704cb517eabSMiao Xie 	location.objectid = BTRFS_QUOTA_TREE_OBJECTID;
2705cb517eabSMiao Xie 	quota_root = btrfs_read_tree_root(tree_root, &location);
2706cb517eabSMiao Xie 	if (!IS_ERR(quota_root)) {
2707bcef60f2SArne Jansen 		quota_root->track_dirty = 1;
2708bcef60f2SArne Jansen 		fs_info->quota_enabled = 1;
2709bcef60f2SArne Jansen 		fs_info->pending_quota_state = 1;
2710cb517eabSMiao Xie 		fs_info->quota_root = quota_root;
2711bcef60f2SArne Jansen 	}
2712bcef60f2SArne Jansen 
2713f7a81ea4SStefan Behrens 	location.objectid = BTRFS_UUID_TREE_OBJECTID;
2714f7a81ea4SStefan Behrens 	uuid_root = btrfs_read_tree_root(tree_root, &location);
2715f7a81ea4SStefan Behrens 	if (IS_ERR(uuid_root)) {
2716f7a81ea4SStefan Behrens 		ret = PTR_ERR(uuid_root);
2717f7a81ea4SStefan Behrens 		if (ret != -ENOENT)
2718f7a81ea4SStefan Behrens 			goto recovery_tree_root;
2719f7a81ea4SStefan Behrens 		create_uuid_tree = true;
272070f80175SStefan Behrens 		check_uuid_tree = false;
2721f7a81ea4SStefan Behrens 	} else {
2722f7a81ea4SStefan Behrens 		uuid_root->track_dirty = 1;
2723f7a81ea4SStefan Behrens 		fs_info->uuid_root = uuid_root;
272470f80175SStefan Behrens 		create_uuid_tree = false;
272570f80175SStefan Behrens 		check_uuid_tree =
272670f80175SStefan Behrens 		    generation != btrfs_super_uuid_tree_generation(disk_super);
2727f7a81ea4SStefan Behrens 	}
2728f7a81ea4SStefan Behrens 
27298929ecfaSYan, Zheng 	fs_info->generation = generation;
27308929ecfaSYan, Zheng 	fs_info->last_trans_committed = generation;
27318929ecfaSYan, Zheng 
273268310a5eSIlya Dryomov 	ret = btrfs_recover_balance(fs_info);
273368310a5eSIlya Dryomov 	if (ret) {
2734efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to recover balance\n");
273568310a5eSIlya Dryomov 		goto fail_block_groups;
273668310a5eSIlya Dryomov 	}
273768310a5eSIlya Dryomov 
2738733f4fbbSStefan Behrens 	ret = btrfs_init_dev_stats(fs_info);
2739733f4fbbSStefan Behrens 	if (ret) {
2740efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: failed to init dev_stats: %d\n",
2741733f4fbbSStefan Behrens 		       ret);
2742733f4fbbSStefan Behrens 		goto fail_block_groups;
2743733f4fbbSStefan Behrens 	}
2744733f4fbbSStefan Behrens 
27458dabb742SStefan Behrens 	ret = btrfs_init_dev_replace(fs_info);
27468dabb742SStefan Behrens 	if (ret) {
2747efe120a0SFrank Holton 		pr_err("BTRFS: failed to init dev_replace: %d\n", ret);
27488dabb742SStefan Behrens 		goto fail_block_groups;
27498dabb742SStefan Behrens 	}
27508dabb742SStefan Behrens 
27518dabb742SStefan Behrens 	btrfs_close_extra_devices(fs_info, fs_devices, 1);
27528dabb742SStefan Behrens 
27535ac1d209SJeff Mahoney 	ret = btrfs_sysfs_add_one(fs_info);
27545ac1d209SJeff Mahoney 	if (ret) {
2755efe120a0SFrank Holton 		pr_err("BTRFS: failed to init sysfs interface: %d\n", ret);
27565ac1d209SJeff Mahoney 		goto fail_block_groups;
27575ac1d209SJeff Mahoney 	}
27585ac1d209SJeff Mahoney 
2759c59021f8Sliubo 	ret = btrfs_init_space_info(fs_info);
2760c59021f8Sliubo 	if (ret) {
2761efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: Failed to initial space info: %d\n", ret);
27622365dd3cSAnand Jain 		goto fail_sysfs;
2763c59021f8Sliubo 	}
2764c59021f8Sliubo 
27651b1d1f66SJosef Bacik 	ret = btrfs_read_block_groups(extent_root);
27661b1d1f66SJosef Bacik 	if (ret) {
2767efe120a0SFrank Holton 		printk(KERN_ERR "BTRFS: Failed to read block groups: %d\n", ret);
27682365dd3cSAnand Jain 		goto fail_sysfs;
27691b1d1f66SJosef Bacik 	}
27705af3e8ccSStefan Behrens 	fs_info->num_tolerated_disk_barrier_failures =
27715af3e8ccSStefan Behrens 		btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
2772292fd7fcSStefan Behrens 	if (fs_info->fs_devices->missing_devices >
2773292fd7fcSStefan Behrens 	     fs_info->num_tolerated_disk_barrier_failures &&
2774292fd7fcSStefan Behrens 	    !(sb->s_flags & MS_RDONLY)) {
2775efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: "
2776efe120a0SFrank Holton 			"too many missing devices, writeable mount is not allowed\n");
27772365dd3cSAnand Jain 		goto fail_sysfs;
2778292fd7fcSStefan Behrens 	}
27799078a3e1SChris Mason 
2780a74a4b97SChris Mason 	fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
2781a74a4b97SChris Mason 					       "btrfs-cleaner");
278257506d50SQinghuang Feng 	if (IS_ERR(fs_info->cleaner_kthread))
27832365dd3cSAnand Jain 		goto fail_sysfs;
2784a74a4b97SChris Mason 
2785a74a4b97SChris Mason 	fs_info->transaction_kthread = kthread_run(transaction_kthread,
2786a74a4b97SChris Mason 						   tree_root,
2787a74a4b97SChris Mason 						   "btrfs-transaction");
278857506d50SQinghuang Feng 	if (IS_ERR(fs_info->transaction_kthread))
27893f157a2fSChris Mason 		goto fail_cleaner;
2790a74a4b97SChris Mason 
2791c289811cSChris Mason 	if (!btrfs_test_opt(tree_root, SSD) &&
2792c289811cSChris Mason 	    !btrfs_test_opt(tree_root, NOSSD) &&
2793c289811cSChris Mason 	    !fs_info->fs_devices->rotating) {
2794efe120a0SFrank Holton 		printk(KERN_INFO "BTRFS: detected SSD devices, enabling SSD "
2795c289811cSChris Mason 		       "mode\n");
2796c289811cSChris Mason 		btrfs_set_opt(fs_info->mount_opt, SSD);
2797c289811cSChris Mason 	}
2798c289811cSChris Mason 
27993818aea2SQu Wenruo 	/* Set the real inode map cache flag */
28003818aea2SQu Wenruo 	if (btrfs_test_opt(tree_root, CHANGE_INODE_CACHE))
28013818aea2SQu Wenruo 		btrfs_set_opt(tree_root->fs_info->mount_opt, INODE_MAP_CACHE);
28023818aea2SQu Wenruo 
280321adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
280421adbd5cSStefan Behrens 	if (btrfs_test_opt(tree_root, CHECK_INTEGRITY)) {
280521adbd5cSStefan Behrens 		ret = btrfsic_mount(tree_root, fs_devices,
280621adbd5cSStefan Behrens 				    btrfs_test_opt(tree_root,
280721adbd5cSStefan Behrens 					CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ?
280821adbd5cSStefan Behrens 				    1 : 0,
280921adbd5cSStefan Behrens 				    fs_info->check_integrity_print_mask);
281021adbd5cSStefan Behrens 		if (ret)
2811efe120a0SFrank Holton 			printk(KERN_WARNING "BTRFS: failed to initialize"
281221adbd5cSStefan Behrens 			       " integrity check module %s\n", sb->s_id);
281321adbd5cSStefan Behrens 	}
281421adbd5cSStefan Behrens #endif
2815bcef60f2SArne Jansen 	ret = btrfs_read_qgroup_config(fs_info);
2816bcef60f2SArne Jansen 	if (ret)
2817bcef60f2SArne Jansen 		goto fail_trans_kthread;
281821adbd5cSStefan Behrens 
2819acce952bSliubo 	/* do not make disk changes in broken FS */
282068ce9682SStefan Behrens 	if (btrfs_super_log_root(disk_super) != 0) {
2821e02119d5SChris Mason 		u64 bytenr = btrfs_super_log_root(disk_super);
2822d18a2c44SChris Mason 
28237c2ca468SChris Mason 		if (fs_devices->rw_devices == 0) {
2824efe120a0SFrank Holton 			printk(KERN_WARNING "BTRFS: log replay required "
2825d397712bSChris Mason 			       "on RO media\n");
28267c2ca468SChris Mason 			err = -EIO;
2827bcef60f2SArne Jansen 			goto fail_qgroup;
28287c2ca468SChris Mason 		}
2829e02119d5SChris Mason 		blocksize =
2830e02119d5SChris Mason 		     btrfs_level_size(tree_root,
2831e02119d5SChris Mason 				      btrfs_super_log_root_level(disk_super));
2832e02119d5SChris Mason 
28336f07e42eSAl Viro 		log_tree_root = btrfs_alloc_root(fs_info);
2834676e4c86SDan Carpenter 		if (!log_tree_root) {
2835676e4c86SDan Carpenter 			err = -ENOMEM;
2836bcef60f2SArne Jansen 			goto fail_qgroup;
2837676e4c86SDan Carpenter 		}
2838e02119d5SChris Mason 
2839e02119d5SChris Mason 		__setup_root(nodesize, leafsize, sectorsize, stripesize,
2840e02119d5SChris Mason 			     log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
2841e02119d5SChris Mason 
2842e02119d5SChris Mason 		log_tree_root->node = read_tree_block(tree_root, bytenr,
284384234f3aSYan Zheng 						      blocksize,
284484234f3aSYan Zheng 						      generation + 1);
2845416bc658SJosef Bacik 		if (!log_tree_root->node ||
2846416bc658SJosef Bacik 		    !extent_buffer_uptodate(log_tree_root->node)) {
2847efe120a0SFrank Holton 			printk(KERN_ERR "BTRFS: failed to read log tree\n");
2848416bc658SJosef Bacik 			free_extent_buffer(log_tree_root->node);
2849416bc658SJosef Bacik 			kfree(log_tree_root);
2850416bc658SJosef Bacik 			goto fail_trans_kthread;
2851416bc658SJosef Bacik 		}
285279787eaaSJeff Mahoney 		/* returns with log_tree_root freed on success */
2853e02119d5SChris Mason 		ret = btrfs_recover_log_trees(log_tree_root);
285479787eaaSJeff Mahoney 		if (ret) {
285579787eaaSJeff Mahoney 			btrfs_error(tree_root->fs_info, ret,
285679787eaaSJeff Mahoney 				    "Failed to recover log tree");
285779787eaaSJeff Mahoney 			free_extent_buffer(log_tree_root->node);
285879787eaaSJeff Mahoney 			kfree(log_tree_root);
285979787eaaSJeff Mahoney 			goto fail_trans_kthread;
286079787eaaSJeff Mahoney 		}
2861e556ce2cSYan Zheng 
2862e556ce2cSYan Zheng 		if (sb->s_flags & MS_RDONLY) {
2863e556ce2cSYan Zheng 			ret = btrfs_commit_super(tree_root);
286479787eaaSJeff Mahoney 			if (ret)
286579787eaaSJeff Mahoney 				goto fail_trans_kthread;
2866e556ce2cSYan Zheng 		}
2867e02119d5SChris Mason 	}
28681a40e23bSZheng Yan 
286976dda93cSYan, Zheng 	ret = btrfs_find_orphan_roots(tree_root);
287079787eaaSJeff Mahoney 	if (ret)
287179787eaaSJeff Mahoney 		goto fail_trans_kthread;
287276dda93cSYan, Zheng 
28737c2ca468SChris Mason 	if (!(sb->s_flags & MS_RDONLY)) {
2874d68fc57bSYan, Zheng 		ret = btrfs_cleanup_fs_roots(fs_info);
287544c44af2SIlya Dryomov 		if (ret)
287644c44af2SIlya Dryomov 			goto fail_trans_kthread;
2877d68fc57bSYan, Zheng 
28785d4f98a2SYan Zheng 		ret = btrfs_recover_relocation(tree_root);
2879d7ce5843SMiao Xie 		if (ret < 0) {
2880d7ce5843SMiao Xie 			printk(KERN_WARNING
2881efe120a0SFrank Holton 			       "BTRFS: failed to recover relocation\n");
2882d7ce5843SMiao Xie 			err = -EINVAL;
2883bcef60f2SArne Jansen 			goto fail_qgroup;
2884d7ce5843SMiao Xie 		}
28857c2ca468SChris Mason 	}
28861a40e23bSZheng Yan 
28873de4586cSChris Mason 	location.objectid = BTRFS_FS_TREE_OBJECTID;
28883de4586cSChris Mason 	location.type = BTRFS_ROOT_ITEM_KEY;
2889cb517eabSMiao Xie 	location.offset = 0;
28903de4586cSChris Mason 
28913de4586cSChris Mason 	fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
28923140c9a3SDan Carpenter 	if (IS_ERR(fs_info->fs_root)) {
28933140c9a3SDan Carpenter 		err = PTR_ERR(fs_info->fs_root);
2894bcef60f2SArne Jansen 		goto fail_qgroup;
28953140c9a3SDan Carpenter 	}
2896c289811cSChris Mason 
28972b6ba629SIlya Dryomov 	if (sb->s_flags & MS_RDONLY)
28982b6ba629SIlya Dryomov 		return 0;
28992b6ba629SIlya Dryomov 
2900e3acc2a6SJosef Bacik 	down_read(&fs_info->cleanup_work_sem);
29012b6ba629SIlya Dryomov 	if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) ||
29022b6ba629SIlya Dryomov 	    (ret = btrfs_orphan_cleanup(fs_info->tree_root))) {
29032b6ba629SIlya Dryomov 		up_read(&fs_info->cleanup_work_sem);
29042b6ba629SIlya Dryomov 		close_ctree(tree_root);
29052b6ba629SIlya Dryomov 		return ret;
29062b6ba629SIlya Dryomov 	}
2907e3acc2a6SJosef Bacik 	up_read(&fs_info->cleanup_work_sem);
290859641015SIlya Dryomov 
29092b6ba629SIlya Dryomov 	ret = btrfs_resume_balance_async(fs_info);
29102b6ba629SIlya Dryomov 	if (ret) {
2911efe120a0SFrank Holton 		printk(KERN_WARNING "BTRFS: failed to resume balance\n");
291266b4ffd1SJosef Bacik 		close_ctree(tree_root);
29132b6ba629SIlya Dryomov 		return ret;
2914e3acc2a6SJosef Bacik 	}
2915e3acc2a6SJosef Bacik 
29168dabb742SStefan Behrens 	ret = btrfs_resume_dev_replace_async(fs_info);
29178dabb742SStefan Behrens 	if (ret) {
2918efe120a0SFrank Holton 		pr_warn("BTRFS: failed to resume dev_replace\n");
29198dabb742SStefan Behrens 		close_ctree(tree_root);
29208dabb742SStefan Behrens 		return ret;
29218dabb742SStefan Behrens 	}
29228dabb742SStefan Behrens 
2923b382a324SJan Schmidt 	btrfs_qgroup_rescan_resume(fs_info);
2924b382a324SJan Schmidt 
2925f7a81ea4SStefan Behrens 	if (create_uuid_tree) {
2926efe120a0SFrank Holton 		pr_info("BTRFS: creating UUID tree\n");
2927f7a81ea4SStefan Behrens 		ret = btrfs_create_uuid_tree(fs_info);
2928f7a81ea4SStefan Behrens 		if (ret) {
2929efe120a0SFrank Holton 			pr_warn("BTRFS: failed to create the UUID tree %d\n",
2930f7a81ea4SStefan Behrens 				ret);
2931f7a81ea4SStefan Behrens 			close_ctree(tree_root);
2932f7a81ea4SStefan Behrens 			return ret;
2933f7a81ea4SStefan Behrens 		}
2934f420ee1eSStefan Behrens 	} else if (check_uuid_tree ||
2935f420ee1eSStefan Behrens 		   btrfs_test_opt(tree_root, RESCAN_UUID_TREE)) {
2936efe120a0SFrank Holton 		pr_info("BTRFS: checking UUID tree\n");
293770f80175SStefan Behrens 		ret = btrfs_check_uuid_tree(fs_info);
293870f80175SStefan Behrens 		if (ret) {
2939efe120a0SFrank Holton 			pr_warn("BTRFS: failed to check the UUID tree %d\n",
294070f80175SStefan Behrens 				ret);
294170f80175SStefan Behrens 			close_ctree(tree_root);
294270f80175SStefan Behrens 			return ret;
294370f80175SStefan Behrens 		}
294470f80175SStefan Behrens 	} else {
294570f80175SStefan Behrens 		fs_info->update_uuid_tree_gen = 1;
2946f7a81ea4SStefan Behrens 	}
2947f7a81ea4SStefan Behrens 
2948ad2b2c80SAl Viro 	return 0;
294939279cc3SChris Mason 
2950bcef60f2SArne Jansen fail_qgroup:
2951bcef60f2SArne Jansen 	btrfs_free_qgroup_config(fs_info);
29527c2ca468SChris Mason fail_trans_kthread:
29537c2ca468SChris Mason 	kthread_stop(fs_info->transaction_kthread);
295454067ae9SJosef Bacik 	btrfs_cleanup_transaction(fs_info->tree_root);
29557b5ff90eSJosef Bacik 	del_fs_roots(fs_info);
29563f157a2fSChris Mason fail_cleaner:
2957a74a4b97SChris Mason 	kthread_stop(fs_info->cleaner_kthread);
29587c2ca468SChris Mason 
29597c2ca468SChris Mason 	/*
29607c2ca468SChris Mason 	 * make sure we're done with the btree inode before we stop our
29617c2ca468SChris Mason 	 * kthreads
29627c2ca468SChris Mason 	 */
29637c2ca468SChris Mason 	filemap_write_and_wait(fs_info->btree_inode->i_mapping);
29647c2ca468SChris Mason 
29652365dd3cSAnand Jain fail_sysfs:
29662365dd3cSAnand Jain 	btrfs_sysfs_remove_one(fs_info);
29672365dd3cSAnand Jain 
29681b1d1f66SJosef Bacik fail_block_groups:
296954067ae9SJosef Bacik 	btrfs_put_block_group_cache(fs_info);
29701b1d1f66SJosef Bacik 	btrfs_free_block_groups(fs_info);
2971af31f5e5SChris Mason 
2972af31f5e5SChris Mason fail_tree_roots:
2973af31f5e5SChris Mason 	free_root_pointers(fs_info, 1);
29742b8195bbSMiao Xie 	invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
2975af31f5e5SChris Mason 
297639279cc3SChris Mason fail_sb_buffer:
29777abadb64SLiu Bo 	btrfs_stop_all_workers(fs_info);
297816cdcec7SMiao Xie fail_alloc:
29794543df7eSChris Mason fail_iput:
2980586e46e2SIlya Dryomov 	btrfs_mapping_tree_free(&fs_info->mapping_tree);
2981586e46e2SIlya Dryomov 
29824543df7eSChris Mason 	iput(fs_info->btree_inode);
2983c404e0dcSMiao Xie fail_bio_counter:
2984c404e0dcSMiao Xie 	percpu_counter_destroy(&fs_info->bio_counter);
2985963d678bSMiao Xie fail_delalloc_bytes:
2986963d678bSMiao Xie 	percpu_counter_destroy(&fs_info->delalloc_bytes);
2987e2d84521SMiao Xie fail_dirty_metadata_bytes:
2988e2d84521SMiao Xie 	percpu_counter_destroy(&fs_info->dirty_metadata_bytes);
2989ad081f14SJens Axboe fail_bdi:
29907e662854SQinghuang Feng 	bdi_destroy(&fs_info->bdi);
299176dda93cSYan, Zheng fail_srcu:
299276dda93cSYan, Zheng 	cleanup_srcu_struct(&fs_info->subvol_srcu);
29937e662854SQinghuang Feng fail:
299453b381b3SDavid Woodhouse 	btrfs_free_stripe_hash_table(fs_info);
2995586e46e2SIlya Dryomov 	btrfs_close_devices(fs_info->fs_devices);
2996ad2b2c80SAl Viro 	return err;
2997af31f5e5SChris Mason 
2998af31f5e5SChris Mason recovery_tree_root:
2999af31f5e5SChris Mason 	if (!btrfs_test_opt(tree_root, RECOVERY))
3000af31f5e5SChris Mason 		goto fail_tree_roots;
3001af31f5e5SChris Mason 
3002af31f5e5SChris Mason 	free_root_pointers(fs_info, 0);
3003af31f5e5SChris Mason 
3004af31f5e5SChris Mason 	/* don't use the log in recovery mode, it won't be valid */
3005af31f5e5SChris Mason 	btrfs_set_super_log_root(disk_super, 0);
3006af31f5e5SChris Mason 
3007af31f5e5SChris Mason 	/* we can't trust the free space cache either */
3008af31f5e5SChris Mason 	btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE);
3009af31f5e5SChris Mason 
3010af31f5e5SChris Mason 	ret = next_root_backup(fs_info, fs_info->super_copy,
3011af31f5e5SChris Mason 			       &num_backups_tried, &backup_index);
3012af31f5e5SChris Mason 	if (ret == -1)
3013af31f5e5SChris Mason 		goto fail_block_groups;
3014af31f5e5SChris Mason 	goto retry_root_backup;
3015eb60ceacSChris Mason }
3016eb60ceacSChris Mason 
3017f2984462SChris Mason static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
3018f2984462SChris Mason {
3019f2984462SChris Mason 	if (uptodate) {
3020f2984462SChris Mason 		set_buffer_uptodate(bh);
3021f2984462SChris Mason 	} else {
3022442a4f63SStefan Behrens 		struct btrfs_device *device = (struct btrfs_device *)
3023442a4f63SStefan Behrens 			bh->b_private;
3024442a4f63SStefan Behrens 
3025efe120a0SFrank Holton 		printk_ratelimited_in_rcu(KERN_WARNING "BTRFS: lost page write due to "
3026606686eeSJosef Bacik 					  "I/O error on %s\n",
3027606686eeSJosef Bacik 					  rcu_str_deref(device->name));
30281259ab75SChris Mason 		/* note, we dont' set_buffer_write_io_error because we have
30291259ab75SChris Mason 		 * our own ways of dealing with the IO errors
30301259ab75SChris Mason 		 */
3031f2984462SChris Mason 		clear_buffer_uptodate(bh);
3032442a4f63SStefan Behrens 		btrfs_dev_stat_inc_and_print(device, BTRFS_DEV_STAT_WRITE_ERRS);
3033f2984462SChris Mason 	}
3034f2984462SChris Mason 	unlock_buffer(bh);
3035f2984462SChris Mason 	put_bh(bh);
3036f2984462SChris Mason }
3037f2984462SChris Mason 
3038a512bbf8SYan Zheng struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
3039a512bbf8SYan Zheng {
3040a512bbf8SYan Zheng 	struct buffer_head *bh;
3041a512bbf8SYan Zheng 	struct buffer_head *latest = NULL;
3042a512bbf8SYan Zheng 	struct btrfs_super_block *super;
3043a512bbf8SYan Zheng 	int i;
3044a512bbf8SYan Zheng 	u64 transid = 0;
3045a512bbf8SYan Zheng 	u64 bytenr;
3046a512bbf8SYan Zheng 
3047a512bbf8SYan Zheng 	/* we would like to check all the supers, but that would make
3048a512bbf8SYan Zheng 	 * a btrfs mount succeed after a mkfs from a different FS.
3049a512bbf8SYan Zheng 	 * So, we need to add a special mount option to scan for
3050a512bbf8SYan Zheng 	 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
3051a512bbf8SYan Zheng 	 */
3052a512bbf8SYan Zheng 	for (i = 0; i < 1; i++) {
3053a512bbf8SYan Zheng 		bytenr = btrfs_sb_offset(i);
30548068a47eSAnand Jain 		if (bytenr + BTRFS_SUPER_INFO_SIZE >=
30558068a47eSAnand Jain 					i_size_read(bdev->bd_inode))
3056a512bbf8SYan Zheng 			break;
30578068a47eSAnand Jain 		bh = __bread(bdev, bytenr / 4096,
30588068a47eSAnand Jain 					BTRFS_SUPER_INFO_SIZE);
3059a512bbf8SYan Zheng 		if (!bh)
3060a512bbf8SYan Zheng 			continue;
3061a512bbf8SYan Zheng 
3062a512bbf8SYan Zheng 		super = (struct btrfs_super_block *)bh->b_data;
3063a512bbf8SYan Zheng 		if (btrfs_super_bytenr(super) != bytenr ||
30643cae210fSQu Wenruo 		    btrfs_super_magic(super) != BTRFS_MAGIC) {
3065a512bbf8SYan Zheng 			brelse(bh);
3066a512bbf8SYan Zheng 			continue;
3067a512bbf8SYan Zheng 		}
3068a512bbf8SYan Zheng 
3069a512bbf8SYan Zheng 		if (!latest || btrfs_super_generation(super) > transid) {
3070a512bbf8SYan Zheng 			brelse(latest);
3071a512bbf8SYan Zheng 			latest = bh;
3072a512bbf8SYan Zheng 			transid = btrfs_super_generation(super);
3073a512bbf8SYan Zheng 		} else {
3074a512bbf8SYan Zheng 			brelse(bh);
3075a512bbf8SYan Zheng 		}
3076a512bbf8SYan Zheng 	}
3077a512bbf8SYan Zheng 	return latest;
3078a512bbf8SYan Zheng }
3079a512bbf8SYan Zheng 
30804eedeb75SHisashi Hifumi /*
30814eedeb75SHisashi Hifumi  * this should be called twice, once with wait == 0 and
30824eedeb75SHisashi Hifumi  * once with wait == 1.  When wait == 0 is done, all the buffer heads
30834eedeb75SHisashi Hifumi  * we write are pinned.
30844eedeb75SHisashi Hifumi  *
30854eedeb75SHisashi Hifumi  * They are released when wait == 1 is done.
30864eedeb75SHisashi Hifumi  * max_mirrors must be the same for both runs, and it indicates how
30874eedeb75SHisashi Hifumi  * many supers on this one device should be written.
30884eedeb75SHisashi Hifumi  *
30894eedeb75SHisashi Hifumi  * max_mirrors == 0 means to write them all.
30904eedeb75SHisashi Hifumi  */
3091a512bbf8SYan Zheng static int write_dev_supers(struct btrfs_device *device,
3092a512bbf8SYan Zheng 			    struct btrfs_super_block *sb,
3093a512bbf8SYan Zheng 			    int do_barriers, int wait, int max_mirrors)
3094a512bbf8SYan Zheng {
3095a512bbf8SYan Zheng 	struct buffer_head *bh;
3096a512bbf8SYan Zheng 	int i;
3097a512bbf8SYan Zheng 	int ret;
3098a512bbf8SYan Zheng 	int errors = 0;
3099a512bbf8SYan Zheng 	u32 crc;
3100a512bbf8SYan Zheng 	u64 bytenr;
3101a512bbf8SYan Zheng 
3102a512bbf8SYan Zheng 	if (max_mirrors == 0)
3103a512bbf8SYan Zheng 		max_mirrors = BTRFS_SUPER_MIRROR_MAX;
3104a512bbf8SYan Zheng 
3105a512bbf8SYan Zheng 	for (i = 0; i < max_mirrors; i++) {
3106a512bbf8SYan Zheng 		bytenr = btrfs_sb_offset(i);
3107a512bbf8SYan Zheng 		if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
3108a512bbf8SYan Zheng 			break;
3109a512bbf8SYan Zheng 
3110a512bbf8SYan Zheng 		if (wait) {
3111a512bbf8SYan Zheng 			bh = __find_get_block(device->bdev, bytenr / 4096,
3112a512bbf8SYan Zheng 					      BTRFS_SUPER_INFO_SIZE);
3113634554dcSJosef Bacik 			if (!bh) {
3114634554dcSJosef Bacik 				errors++;
3115634554dcSJosef Bacik 				continue;
3116634554dcSJosef Bacik 			}
3117a512bbf8SYan Zheng 			wait_on_buffer(bh);
31184eedeb75SHisashi Hifumi 			if (!buffer_uptodate(bh))
31194eedeb75SHisashi Hifumi 				errors++;
31204eedeb75SHisashi Hifumi 
31214eedeb75SHisashi Hifumi 			/* drop our reference */
31224eedeb75SHisashi Hifumi 			brelse(bh);
31234eedeb75SHisashi Hifumi 
31244eedeb75SHisashi Hifumi 			/* drop the reference from the wait == 0 run */
3125a512bbf8SYan Zheng 			brelse(bh);
3126a512bbf8SYan Zheng 			continue;
3127a512bbf8SYan Zheng 		} else {
3128a512bbf8SYan Zheng 			btrfs_set_super_bytenr(sb, bytenr);
3129a512bbf8SYan Zheng 
3130a512bbf8SYan Zheng 			crc = ~(u32)0;
3131b0496686SLiu Bo 			crc = btrfs_csum_data((char *)sb +
3132a512bbf8SYan Zheng 					      BTRFS_CSUM_SIZE, crc,
3133a512bbf8SYan Zheng 					      BTRFS_SUPER_INFO_SIZE -
3134a512bbf8SYan Zheng 					      BTRFS_CSUM_SIZE);
3135a512bbf8SYan Zheng 			btrfs_csum_final(crc, sb->csum);
3136a512bbf8SYan Zheng 
31374eedeb75SHisashi Hifumi 			/*
31384eedeb75SHisashi Hifumi 			 * one reference for us, and we leave it for the
31394eedeb75SHisashi Hifumi 			 * caller
31404eedeb75SHisashi Hifumi 			 */
3141a512bbf8SYan Zheng 			bh = __getblk(device->bdev, bytenr / 4096,
3142a512bbf8SYan Zheng 				      BTRFS_SUPER_INFO_SIZE);
3143634554dcSJosef Bacik 			if (!bh) {
3144efe120a0SFrank Holton 				printk(KERN_ERR "BTRFS: couldn't get super "
3145634554dcSJosef Bacik 				       "buffer head for bytenr %Lu\n", bytenr);
3146634554dcSJosef Bacik 				errors++;
3147634554dcSJosef Bacik 				continue;
3148634554dcSJosef Bacik 			}
3149634554dcSJosef Bacik 
3150a512bbf8SYan Zheng 			memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
3151a512bbf8SYan Zheng 
31524eedeb75SHisashi Hifumi 			/* one reference for submit_bh */
3153a512bbf8SYan Zheng 			get_bh(bh);
31544eedeb75SHisashi Hifumi 
31554eedeb75SHisashi Hifumi 			set_buffer_uptodate(bh);
3156a512bbf8SYan Zheng 			lock_buffer(bh);
3157a512bbf8SYan Zheng 			bh->b_end_io = btrfs_end_buffer_write_sync;
3158442a4f63SStefan Behrens 			bh->b_private = device;
3159a512bbf8SYan Zheng 		}
3160a512bbf8SYan Zheng 
3161387125fcSChris Mason 		/*
3162387125fcSChris Mason 		 * we fua the first super.  The others we allow
3163387125fcSChris Mason 		 * to go down lazy.
3164387125fcSChris Mason 		 */
3165e8117c26SWang Shilong 		if (i == 0)
316621adbd5cSStefan Behrens 			ret = btrfsic_submit_bh(WRITE_FUA, bh);
3167e8117c26SWang Shilong 		else
3168e8117c26SWang Shilong 			ret = btrfsic_submit_bh(WRITE_SYNC, bh);
31694eedeb75SHisashi Hifumi 		if (ret)
3170a512bbf8SYan Zheng 			errors++;
3171a512bbf8SYan Zheng 	}
3172a512bbf8SYan Zheng 	return errors < i ? 0 : -1;
3173a512bbf8SYan Zheng }
3174a512bbf8SYan Zheng 
3175387125fcSChris Mason /*
3176387125fcSChris Mason  * endio for the write_dev_flush, this will wake anyone waiting
3177387125fcSChris Mason  * for the barrier when it is done
3178387125fcSChris Mason  */
3179387125fcSChris Mason static void btrfs_end_empty_barrier(struct bio *bio, int err)
3180387125fcSChris Mason {
3181387125fcSChris Mason 	if (err) {
3182387125fcSChris Mason 		if (err == -EOPNOTSUPP)
3183387125fcSChris Mason 			set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
3184387125fcSChris Mason 		clear_bit(BIO_UPTODATE, &bio->bi_flags);
3185387125fcSChris Mason 	}
3186387125fcSChris Mason 	if (bio->bi_private)
3187387125fcSChris Mason 		complete(bio->bi_private);
3188387125fcSChris Mason 	bio_put(bio);
3189387125fcSChris Mason }
3190387125fcSChris Mason 
3191387125fcSChris Mason /*
3192387125fcSChris Mason  * trigger flushes for one the devices.  If you pass wait == 0, the flushes are
3193387125fcSChris Mason  * sent down.  With wait == 1, it waits for the previous flush.
3194387125fcSChris Mason  *
3195387125fcSChris Mason  * any device where the flush fails with eopnotsupp are flagged as not-barrier
3196387125fcSChris Mason  * capable
3197387125fcSChris Mason  */
3198387125fcSChris Mason static int write_dev_flush(struct btrfs_device *device, int wait)
3199387125fcSChris Mason {
3200387125fcSChris Mason 	struct bio *bio;
3201387125fcSChris Mason 	int ret = 0;
3202387125fcSChris Mason 
3203387125fcSChris Mason 	if (device->nobarriers)
3204387125fcSChris Mason 		return 0;
3205387125fcSChris Mason 
3206387125fcSChris Mason 	if (wait) {
3207387125fcSChris Mason 		bio = device->flush_bio;
3208387125fcSChris Mason 		if (!bio)
3209387125fcSChris Mason 			return 0;
3210387125fcSChris Mason 
3211387125fcSChris Mason 		wait_for_completion(&device->flush_wait);
3212387125fcSChris Mason 
3213387125fcSChris Mason 		if (bio_flagged(bio, BIO_EOPNOTSUPP)) {
3214efe120a0SFrank Holton 			printk_in_rcu("BTRFS: disabling barriers on dev %s\n",
3215606686eeSJosef Bacik 				      rcu_str_deref(device->name));
3216387125fcSChris Mason 			device->nobarriers = 1;
32175af3e8ccSStefan Behrens 		} else if (!bio_flagged(bio, BIO_UPTODATE)) {
3218387125fcSChris Mason 			ret = -EIO;
3219442a4f63SStefan Behrens 			btrfs_dev_stat_inc_and_print(device,
3220442a4f63SStefan Behrens 				BTRFS_DEV_STAT_FLUSH_ERRS);
3221387125fcSChris Mason 		}
3222387125fcSChris Mason 
3223387125fcSChris Mason 		/* drop the reference from the wait == 0 run */
3224387125fcSChris Mason 		bio_put(bio);
3225387125fcSChris Mason 		device->flush_bio = NULL;
3226387125fcSChris Mason 
3227387125fcSChris Mason 		return ret;
3228387125fcSChris Mason 	}
3229387125fcSChris Mason 
3230387125fcSChris Mason 	/*
3231387125fcSChris Mason 	 * one reference for us, and we leave it for the
3232387125fcSChris Mason 	 * caller
3233387125fcSChris Mason 	 */
32349c017abcSJesper Juhl 	device->flush_bio = NULL;
32359be3395bSChris Mason 	bio = btrfs_io_bio_alloc(GFP_NOFS, 0);
3236387125fcSChris Mason 	if (!bio)
3237387125fcSChris Mason 		return -ENOMEM;
3238387125fcSChris Mason 
3239387125fcSChris Mason 	bio->bi_end_io = btrfs_end_empty_barrier;
3240387125fcSChris Mason 	bio->bi_bdev = device->bdev;
3241387125fcSChris Mason 	init_completion(&device->flush_wait);
3242387125fcSChris Mason 	bio->bi_private = &device->flush_wait;
3243387125fcSChris Mason 	device->flush_bio = bio;
3244387125fcSChris Mason 
3245387125fcSChris Mason 	bio_get(bio);
324621adbd5cSStefan Behrens 	btrfsic_submit_bio(WRITE_FLUSH, bio);
3247387125fcSChris Mason 
3248387125fcSChris Mason 	return 0;
3249387125fcSChris Mason }
3250387125fcSChris Mason 
3251387125fcSChris Mason /*
3252387125fcSChris Mason  * send an empty flush down to each device in parallel,
3253387125fcSChris Mason  * then wait for them
3254387125fcSChris Mason  */
3255387125fcSChris Mason static int barrier_all_devices(struct btrfs_fs_info *info)
3256387125fcSChris Mason {
3257387125fcSChris Mason 	struct list_head *head;
3258387125fcSChris Mason 	struct btrfs_device *dev;
32595af3e8ccSStefan Behrens 	int errors_send = 0;
32605af3e8ccSStefan Behrens 	int errors_wait = 0;
3261387125fcSChris Mason 	int ret;
3262387125fcSChris Mason 
3263387125fcSChris Mason 	/* send down all the barriers */
3264387125fcSChris Mason 	head = &info->fs_devices->devices;
3265387125fcSChris Mason 	list_for_each_entry_rcu(dev, head, dev_list) {
3266f88ba6a2SHidetoshi Seto 		if (dev->missing)
3267f88ba6a2SHidetoshi Seto 			continue;
3268387125fcSChris Mason 		if (!dev->bdev) {
32695af3e8ccSStefan Behrens 			errors_send++;
3270387125fcSChris Mason 			continue;
3271387125fcSChris Mason 		}
3272387125fcSChris Mason 		if (!dev->in_fs_metadata || !dev->writeable)
3273387125fcSChris Mason 			continue;
3274387125fcSChris Mason 
3275387125fcSChris Mason 		ret = write_dev_flush(dev, 0);
3276387125fcSChris Mason 		if (ret)
32775af3e8ccSStefan Behrens 			errors_send++;
3278387125fcSChris Mason 	}
3279387125fcSChris Mason 
3280387125fcSChris Mason 	/* wait for all the barriers */
3281387125fcSChris Mason 	list_for_each_entry_rcu(dev, head, dev_list) {
3282f88ba6a2SHidetoshi Seto 		if (dev->missing)
3283f88ba6a2SHidetoshi Seto 			continue;
3284387125fcSChris Mason 		if (!dev->bdev) {
32855af3e8ccSStefan Behrens 			errors_wait++;
3286387125fcSChris Mason 			continue;
3287387125fcSChris Mason 		}
3288387125fcSChris Mason 		if (!dev->in_fs_metadata || !dev->writeable)
3289387125fcSChris Mason 			continue;
3290387125fcSChris Mason 
3291387125fcSChris Mason 		ret = write_dev_flush(dev, 1);
3292387125fcSChris Mason 		if (ret)
32935af3e8ccSStefan Behrens 			errors_wait++;
3294387125fcSChris Mason 	}
32955af3e8ccSStefan Behrens 	if (errors_send > info->num_tolerated_disk_barrier_failures ||
32965af3e8ccSStefan Behrens 	    errors_wait > info->num_tolerated_disk_barrier_failures)
3297387125fcSChris Mason 		return -EIO;
3298387125fcSChris Mason 	return 0;
3299387125fcSChris Mason }
3300387125fcSChris Mason 
33015af3e8ccSStefan Behrens int btrfs_calc_num_tolerated_disk_barrier_failures(
33025af3e8ccSStefan Behrens 	struct btrfs_fs_info *fs_info)
33035af3e8ccSStefan Behrens {
33045af3e8ccSStefan Behrens 	struct btrfs_ioctl_space_info space;
33055af3e8ccSStefan Behrens 	struct btrfs_space_info *sinfo;
33065af3e8ccSStefan Behrens 	u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
33075af3e8ccSStefan Behrens 		       BTRFS_BLOCK_GROUP_SYSTEM,
33085af3e8ccSStefan Behrens 		       BTRFS_BLOCK_GROUP_METADATA,
33095af3e8ccSStefan Behrens 		       BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
33105af3e8ccSStefan Behrens 	int num_types = 4;
33115af3e8ccSStefan Behrens 	int i;
33125af3e8ccSStefan Behrens 	int c;
33135af3e8ccSStefan Behrens 	int num_tolerated_disk_barrier_failures =
33145af3e8ccSStefan Behrens 		(int)fs_info->fs_devices->num_devices;
33155af3e8ccSStefan Behrens 
33165af3e8ccSStefan Behrens 	for (i = 0; i < num_types; i++) {
33175af3e8ccSStefan Behrens 		struct btrfs_space_info *tmp;
33185af3e8ccSStefan Behrens 
33195af3e8ccSStefan Behrens 		sinfo = NULL;
33205af3e8ccSStefan Behrens 		rcu_read_lock();
33215af3e8ccSStefan Behrens 		list_for_each_entry_rcu(tmp, &fs_info->space_info, list) {
33225af3e8ccSStefan Behrens 			if (tmp->flags == types[i]) {
33235af3e8ccSStefan Behrens 				sinfo = tmp;
33245af3e8ccSStefan Behrens 				break;
33255af3e8ccSStefan Behrens 			}
33265af3e8ccSStefan Behrens 		}
33275af3e8ccSStefan Behrens 		rcu_read_unlock();
33285af3e8ccSStefan Behrens 
33295af3e8ccSStefan Behrens 		if (!sinfo)
33305af3e8ccSStefan Behrens 			continue;
33315af3e8ccSStefan Behrens 
33325af3e8ccSStefan Behrens 		down_read(&sinfo->groups_sem);
33335af3e8ccSStefan Behrens 		for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
33345af3e8ccSStefan Behrens 			if (!list_empty(&sinfo->block_groups[c])) {
33355af3e8ccSStefan Behrens 				u64 flags;
33365af3e8ccSStefan Behrens 
33375af3e8ccSStefan Behrens 				btrfs_get_block_group_info(
33385af3e8ccSStefan Behrens 					&sinfo->block_groups[c], &space);
33395af3e8ccSStefan Behrens 				if (space.total_bytes == 0 ||
33405af3e8ccSStefan Behrens 				    space.used_bytes == 0)
33415af3e8ccSStefan Behrens 					continue;
33425af3e8ccSStefan Behrens 				flags = space.flags;
33435af3e8ccSStefan Behrens 				/*
33445af3e8ccSStefan Behrens 				 * return
33455af3e8ccSStefan Behrens 				 * 0: if dup, single or RAID0 is configured for
33465af3e8ccSStefan Behrens 				 *    any of metadata, system or data, else
33475af3e8ccSStefan Behrens 				 * 1: if RAID5 is configured, or if RAID1 or
33485af3e8ccSStefan Behrens 				 *    RAID10 is configured and only two mirrors
33495af3e8ccSStefan Behrens 				 *    are used, else
33505af3e8ccSStefan Behrens 				 * 2: if RAID6 is configured, else
33515af3e8ccSStefan Behrens 				 * num_mirrors - 1: if RAID1 or RAID10 is
33525af3e8ccSStefan Behrens 				 *                  configured and more than
33535af3e8ccSStefan Behrens 				 *                  2 mirrors are used.
33545af3e8ccSStefan Behrens 				 */
33555af3e8ccSStefan Behrens 				if (num_tolerated_disk_barrier_failures > 0 &&
33565af3e8ccSStefan Behrens 				    ((flags & (BTRFS_BLOCK_GROUP_DUP |
33575af3e8ccSStefan Behrens 					       BTRFS_BLOCK_GROUP_RAID0)) ||
33585af3e8ccSStefan Behrens 				     ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK)
33595af3e8ccSStefan Behrens 				      == 0)))
33605af3e8ccSStefan Behrens 					num_tolerated_disk_barrier_failures = 0;
336153b381b3SDavid Woodhouse 				else if (num_tolerated_disk_barrier_failures > 1) {
336253b381b3SDavid Woodhouse 					if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
336353b381b3SDavid Woodhouse 					    BTRFS_BLOCK_GROUP_RAID5 |
336453b381b3SDavid Woodhouse 					    BTRFS_BLOCK_GROUP_RAID10)) {
33655af3e8ccSStefan Behrens 						num_tolerated_disk_barrier_failures = 1;
336653b381b3SDavid Woodhouse 					} else if (flags &
336715b0a89dSHenrik Nordvik 						   BTRFS_BLOCK_GROUP_RAID6) {
336853b381b3SDavid Woodhouse 						num_tolerated_disk_barrier_failures = 2;
336953b381b3SDavid Woodhouse 					}
337053b381b3SDavid Woodhouse 				}
33715af3e8ccSStefan Behrens 			}
33725af3e8ccSStefan Behrens 		}
33735af3e8ccSStefan Behrens 		up_read(&sinfo->groups_sem);
33745af3e8ccSStefan Behrens 	}
33755af3e8ccSStefan Behrens 
33765af3e8ccSStefan Behrens 	return num_tolerated_disk_barrier_failures;
33775af3e8ccSStefan Behrens }
33785af3e8ccSStefan Behrens 
337948a3b636SEric Sandeen static int write_all_supers(struct btrfs_root *root, int max_mirrors)
3380f2984462SChris Mason {
3381e5e9a520SChris Mason 	struct list_head *head;
3382f2984462SChris Mason 	struct btrfs_device *dev;
3383a061fc8dSChris Mason 	struct btrfs_super_block *sb;
3384f2984462SChris Mason 	struct btrfs_dev_item *dev_item;
3385f2984462SChris Mason 	int ret;
3386f2984462SChris Mason 	int do_barriers;
3387a236aed1SChris Mason 	int max_errors;
3388a236aed1SChris Mason 	int total_errors = 0;
3389a061fc8dSChris Mason 	u64 flags;
3390f2984462SChris Mason 
3391f2984462SChris Mason 	do_barriers = !btrfs_test_opt(root, NOBARRIER);
3392af31f5e5SChris Mason 	backup_super_roots(root->fs_info);
3393f2984462SChris Mason 
33946c41761fSDavid Sterba 	sb = root->fs_info->super_for_commit;
3395a061fc8dSChris Mason 	dev_item = &sb->dev_item;
3396e5e9a520SChris Mason 
3397174ba509SChris Mason 	mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
3398e5e9a520SChris Mason 	head = &root->fs_info->fs_devices->devices;
3399d7306801SFilipe David Borba Manana 	max_errors = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
3400387125fcSChris Mason 
34015af3e8ccSStefan Behrens 	if (do_barriers) {
34025af3e8ccSStefan Behrens 		ret = barrier_all_devices(root->fs_info);
34035af3e8ccSStefan Behrens 		if (ret) {
34045af3e8ccSStefan Behrens 			mutex_unlock(
34055af3e8ccSStefan Behrens 				&root->fs_info->fs_devices->device_list_mutex);
34065af3e8ccSStefan Behrens 			btrfs_error(root->fs_info, ret,
34075af3e8ccSStefan Behrens 				    "errors while submitting device barriers.");
34085af3e8ccSStefan Behrens 			return ret;
34095af3e8ccSStefan Behrens 		}
34105af3e8ccSStefan Behrens 	}
3411387125fcSChris Mason 
34121f78160cSXiao Guangrong 	list_for_each_entry_rcu(dev, head, dev_list) {
3413dfe25020SChris Mason 		if (!dev->bdev) {
3414dfe25020SChris Mason 			total_errors++;
3415dfe25020SChris Mason 			continue;
3416dfe25020SChris Mason 		}
34172b82032cSYan Zheng 		if (!dev->in_fs_metadata || !dev->writeable)
3418dfe25020SChris Mason 			continue;
3419dfe25020SChris Mason 
34202b82032cSYan Zheng 		btrfs_set_stack_device_generation(dev_item, 0);
3421a061fc8dSChris Mason 		btrfs_set_stack_device_type(dev_item, dev->type);
3422a061fc8dSChris Mason 		btrfs_set_stack_device_id(dev_item, dev->devid);
3423a061fc8dSChris Mason 		btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
3424a061fc8dSChris Mason 		btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
3425a061fc8dSChris Mason 		btrfs_set_stack_device_io_align(dev_item, dev->io_align);
3426a061fc8dSChris Mason 		btrfs_set_stack_device_io_width(dev_item, dev->io_width);
3427a061fc8dSChris Mason 		btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
3428a061fc8dSChris Mason 		memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
34292b82032cSYan Zheng 		memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
3430a512bbf8SYan Zheng 
3431a061fc8dSChris Mason 		flags = btrfs_super_flags(sb);
3432a061fc8dSChris Mason 		btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
3433f2984462SChris Mason 
3434a512bbf8SYan Zheng 		ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
3435a236aed1SChris Mason 		if (ret)
3436a236aed1SChris Mason 			total_errors++;
3437f2984462SChris Mason 	}
3438a236aed1SChris Mason 	if (total_errors > max_errors) {
3439efe120a0SFrank Holton 		btrfs_err(root->fs_info, "%d errors while writing supers",
3440d397712bSChris Mason 		       total_errors);
3441a724b436SStefan Behrens 		mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
344279787eaaSJeff Mahoney 
34439d565ba4SStefan Behrens 		/* FUA is masked off if unsupported and can't be the reason */
34449d565ba4SStefan Behrens 		btrfs_error(root->fs_info, -EIO,
34459d565ba4SStefan Behrens 			    "%d errors while writing supers", total_errors);
34469d565ba4SStefan Behrens 		return -EIO;
3447a236aed1SChris Mason 	}
3448f2984462SChris Mason 
3449a512bbf8SYan Zheng 	total_errors = 0;
34501f78160cSXiao Guangrong 	list_for_each_entry_rcu(dev, head, dev_list) {
3451dfe25020SChris Mason 		if (!dev->bdev)
3452dfe25020SChris Mason 			continue;
34532b82032cSYan Zheng 		if (!dev->in_fs_metadata || !dev->writeable)
3454dfe25020SChris Mason 			continue;
3455dfe25020SChris Mason 
3456a512bbf8SYan Zheng 		ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
3457a512bbf8SYan Zheng 		if (ret)
34581259ab75SChris Mason 			total_errors++;
3459f2984462SChris Mason 	}
3460174ba509SChris Mason 	mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
3461a236aed1SChris Mason 	if (total_errors > max_errors) {
346279787eaaSJeff Mahoney 		btrfs_error(root->fs_info, -EIO,
346379787eaaSJeff Mahoney 			    "%d errors while writing supers", total_errors);
346479787eaaSJeff Mahoney 		return -EIO;
3465a236aed1SChris Mason 	}
3466f2984462SChris Mason 	return 0;
3467f2984462SChris Mason }
3468f2984462SChris Mason 
3469a512bbf8SYan Zheng int write_ctree_super(struct btrfs_trans_handle *trans,
3470a512bbf8SYan Zheng 		      struct btrfs_root *root, int max_mirrors)
3471cfaa7295SChris Mason {
3472f570e757SRashika 	return write_all_supers(root, max_mirrors);
3473cfaa7295SChris Mason }
3474cfaa7295SChris Mason 
3475cb517eabSMiao Xie /* Drop a fs root from the radix tree and free it. */
3476cb517eabSMiao Xie void btrfs_drop_and_free_fs_root(struct btrfs_fs_info *fs_info,
3477cb517eabSMiao Xie 				  struct btrfs_root *root)
34782619ba1fSChris Mason {
34794df27c4dSYan, Zheng 	spin_lock(&fs_info->fs_roots_radix_lock);
34802619ba1fSChris Mason 	radix_tree_delete(&fs_info->fs_roots_radix,
34812619ba1fSChris Mason 			  (unsigned long)root->root_key.objectid);
34824df27c4dSYan, Zheng 	spin_unlock(&fs_info->fs_roots_radix_lock);
348376dda93cSYan, Zheng 
348476dda93cSYan, Zheng 	if (btrfs_root_refs(&root->root_item) == 0)
348576dda93cSYan, Zheng 		synchronize_srcu(&fs_info->subvol_srcu);
348676dda93cSYan, Zheng 
34871a4319ccSLiu Bo 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
34883321719eSLiu Bo 		btrfs_free_log(NULL, root);
34893321719eSLiu Bo 
3490581bb050SLi Zefan 	__btrfs_remove_free_space_cache(root->free_ino_pinned);
3491581bb050SLi Zefan 	__btrfs_remove_free_space_cache(root->free_ino_ctl);
34924df27c4dSYan, Zheng 	free_fs_root(root);
34934df27c4dSYan, Zheng }
34944df27c4dSYan, Zheng 
34954df27c4dSYan, Zheng static void free_fs_root(struct btrfs_root *root)
34964df27c4dSYan, Zheng {
349782d5902dSLi Zefan 	iput(root->cache_inode);
34984df27c4dSYan, Zheng 	WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
34991cb048f5SFilipe David Borba Manana 	btrfs_free_block_rsv(root, root->orphan_block_rsv);
35001cb048f5SFilipe David Borba Manana 	root->orphan_block_rsv = NULL;
35010ee5dc67SAl Viro 	if (root->anon_dev)
35020ee5dc67SAl Viro 		free_anon_bdev(root->anon_dev);
35038257b2dcSMiao Xie 	if (root->subv_writers)
35048257b2dcSMiao Xie 		btrfs_free_subvolume_writers(root->subv_writers);
35055f39d397SChris Mason 	free_extent_buffer(root->node);
35065f39d397SChris Mason 	free_extent_buffer(root->commit_root);
3507581bb050SLi Zefan 	kfree(root->free_ino_ctl);
3508581bb050SLi Zefan 	kfree(root->free_ino_pinned);
350958176a96SJosef Bacik 	kfree(root->name);
3510b0feb9d9SMiao Xie 	btrfs_put_fs_root(root);
35112619ba1fSChris Mason }
35122619ba1fSChris Mason 
3513cb517eabSMiao Xie void btrfs_free_fs_root(struct btrfs_root *root)
3514cb517eabSMiao Xie {
3515cb517eabSMiao Xie 	free_fs_root(root);
3516eb60ceacSChris Mason }
3517eb60ceacSChris Mason 
3518c146afadSYan Zheng int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
3519c146afadSYan Zheng {
3520c146afadSYan Zheng 	u64 root_objectid = 0;
3521c146afadSYan Zheng 	struct btrfs_root *gang[8];
3522c146afadSYan Zheng 	int i;
3523c146afadSYan Zheng 	int ret;
3524c146afadSYan Zheng 
3525c146afadSYan Zheng 	while (1) {
3526c146afadSYan Zheng 		ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3527c146afadSYan Zheng 					     (void **)gang, root_objectid,
3528c146afadSYan Zheng 					     ARRAY_SIZE(gang));
3529c146afadSYan Zheng 		if (!ret)
3530c146afadSYan Zheng 			break;
35315d4f98a2SYan Zheng 
35325d4f98a2SYan Zheng 		root_objectid = gang[ret - 1]->root_key.objectid + 1;
3533c146afadSYan Zheng 		for (i = 0; i < ret; i++) {
353466b4ffd1SJosef Bacik 			int err;
353566b4ffd1SJosef Bacik 
3536c146afadSYan Zheng 			root_objectid = gang[i]->root_key.objectid;
353766b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(gang[i]);
353866b4ffd1SJosef Bacik 			if (err)
353966b4ffd1SJosef Bacik 				return err;
3540c146afadSYan Zheng 		}
3541c146afadSYan Zheng 		root_objectid++;
3542c146afadSYan Zheng 	}
3543c146afadSYan Zheng 	return 0;
3544c146afadSYan Zheng }
3545c146afadSYan Zheng 
3546c146afadSYan Zheng int btrfs_commit_super(struct btrfs_root *root)
3547c146afadSYan Zheng {
3548c146afadSYan Zheng 	struct btrfs_trans_handle *trans;
3549c146afadSYan Zheng 
3550c146afadSYan Zheng 	mutex_lock(&root->fs_info->cleaner_mutex);
355124bbcf04SYan, Zheng 	btrfs_run_delayed_iputs(root);
3552c146afadSYan Zheng 	mutex_unlock(&root->fs_info->cleaner_mutex);
35539d1a2a3aSDavid Sterba 	wake_up_process(root->fs_info->cleaner_kthread);
3554c71bf099SYan, Zheng 
3555c71bf099SYan, Zheng 	/* wait until ongoing cleanup work done */
3556c71bf099SYan, Zheng 	down_write(&root->fs_info->cleanup_work_sem);
3557c71bf099SYan, Zheng 	up_write(&root->fs_info->cleanup_work_sem);
3558c71bf099SYan, Zheng 
35597a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
35603612b495STsutomu Itoh 	if (IS_ERR(trans))
35613612b495STsutomu Itoh 		return PTR_ERR(trans);
3562d52c1bccSLiu Bo 	return btrfs_commit_transaction(trans, root);
3563c146afadSYan Zheng }
3564c146afadSYan Zheng 
3565e20d96d6SChris Mason int close_ctree(struct btrfs_root *root)
3566eb60ceacSChris Mason {
35670f7d52f4SChris Mason 	struct btrfs_fs_info *fs_info = root->fs_info;
3568c146afadSYan Zheng 	int ret;
3569e089f05cSChris Mason 
3570facda1e7SChris Mason 	fs_info->closing = 1;
3571a2135011SChris Mason 	smp_mb();
3572a2135011SChris Mason 
3573803b2f54SStefan Behrens 	/* wait for the uuid_scan task to finish */
3574803b2f54SStefan Behrens 	down(&fs_info->uuid_tree_rescan_sem);
3575803b2f54SStefan Behrens 	/* avoid complains from lockdep et al., set sem back to initial state */
3576803b2f54SStefan Behrens 	up(&fs_info->uuid_tree_rescan_sem);
3577803b2f54SStefan Behrens 
3578837d5b6eSIlya Dryomov 	/* pause restriper - we want to resume on mount */
3579aa1b8cd4SStefan Behrens 	btrfs_pause_balance(fs_info);
3580837d5b6eSIlya Dryomov 
35818dabb742SStefan Behrens 	btrfs_dev_replace_suspend_for_unmount(fs_info);
35828dabb742SStefan Behrens 
3583aa1b8cd4SStefan Behrens 	btrfs_scrub_cancel(fs_info);
35844cb5300bSChris Mason 
35854cb5300bSChris Mason 	/* wait for any defraggers to finish */
35864cb5300bSChris Mason 	wait_event(fs_info->transaction_wait,
35874cb5300bSChris Mason 		   (atomic_read(&fs_info->defrag_running) == 0));
35884cb5300bSChris Mason 
35894cb5300bSChris Mason 	/* clear out the rbtree of defraggable inodes */
359026176e7cSMiao Xie 	btrfs_cleanup_defrag_inodes(fs_info);
35914cb5300bSChris Mason 
3592c146afadSYan Zheng 	if (!(fs_info->sb->s_flags & MS_RDONLY)) {
3593c146afadSYan Zheng 		ret = btrfs_commit_super(root);
3594d397712bSChris Mason 		if (ret)
3595efe120a0SFrank Holton 			btrfs_err(root->fs_info, "commit super ret %d", ret);
3596c146afadSYan Zheng 	}
3597ed2ff2cbSChris Mason 
359887533c47SMiao Xie 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
359968ce9682SStefan Behrens 		btrfs_error_commit_super(root);
3600acce952bSliubo 
3601e3029d9fSAl Viro 	kthread_stop(fs_info->transaction_kthread);
3602e3029d9fSAl Viro 	kthread_stop(fs_info->cleaner_kthread);
36038929ecfaSYan, Zheng 
3604f25784b3SYan Zheng 	fs_info->closing = 2;
3605f25784b3SYan Zheng 	smp_mb();
3606f25784b3SYan Zheng 
3607bcef60f2SArne Jansen 	btrfs_free_qgroup_config(root->fs_info);
3608bcef60f2SArne Jansen 
3609963d678bSMiao Xie 	if (percpu_counter_sum(&fs_info->delalloc_bytes)) {
3610efe120a0SFrank Holton 		btrfs_info(root->fs_info, "at unmount delalloc count %lld",
3611963d678bSMiao Xie 		       percpu_counter_sum(&fs_info->delalloc_bytes));
3612b0c68f8bSChris Mason 	}
361331153d81SYan Zheng 
36145ac1d209SJeff Mahoney 	btrfs_sysfs_remove_one(fs_info);
36155ac1d209SJeff Mahoney 
36160f7d52f4SChris Mason 	del_fs_roots(fs_info);
3617d10c5f31SChris Mason 
36181a4319ccSLiu Bo 	btrfs_put_block_group_cache(fs_info);
36191a4319ccSLiu Bo 
36202b1360daSJosef Bacik 	btrfs_free_block_groups(fs_info);
36212b1360daSJosef Bacik 
362296192499SJosef Bacik 	btrfs_stop_all_workers(fs_info);
362396192499SJosef Bacik 
362413e6c37bSJosef Bacik 	free_root_pointers(fs_info, 1);
36259ad6b7bcSChris Mason 
362613e6c37bSJosef Bacik 	iput(fs_info->btree_inode);
3627d6bfde87SChris Mason 
362821adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
362921adbd5cSStefan Behrens 	if (btrfs_test_opt(root, CHECK_INTEGRITY))
363021adbd5cSStefan Behrens 		btrfsic_unmount(root, fs_info->fs_devices);
363121adbd5cSStefan Behrens #endif
363221adbd5cSStefan Behrens 
3633dfe25020SChris Mason 	btrfs_close_devices(fs_info->fs_devices);
36340b86a832SChris Mason 	btrfs_mapping_tree_free(&fs_info->mapping_tree);
3635b248a415SChris Mason 
3636e2d84521SMiao Xie 	percpu_counter_destroy(&fs_info->dirty_metadata_bytes);
3637963d678bSMiao Xie 	percpu_counter_destroy(&fs_info->delalloc_bytes);
3638c404e0dcSMiao Xie 	percpu_counter_destroy(&fs_info->bio_counter);
363904160088SChris Mason 	bdi_destroy(&fs_info->bdi);
364076dda93cSYan, Zheng 	cleanup_srcu_struct(&fs_info->subvol_srcu);
36410b86a832SChris Mason 
364253b381b3SDavid Woodhouse 	btrfs_free_stripe_hash_table(fs_info);
364353b381b3SDavid Woodhouse 
36441cb048f5SFilipe David Borba Manana 	btrfs_free_block_rsv(root, root->orphan_block_rsv);
36451cb048f5SFilipe David Borba Manana 	root->orphan_block_rsv = NULL;
36461cb048f5SFilipe David Borba Manana 
3647eb60ceacSChris Mason 	return 0;
3648eb60ceacSChris Mason }
3649eb60ceacSChris Mason 
3650b9fab919SChris Mason int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid,
3651b9fab919SChris Mason 			  int atomic)
3652ccd467d6SChris Mason {
36531259ab75SChris Mason 	int ret;
3654727011e0SChris Mason 	struct inode *btree_inode = buf->pages[0]->mapping->host;
36551259ab75SChris Mason 
36560b32f4bbSJosef Bacik 	ret = extent_buffer_uptodate(buf);
36571259ab75SChris Mason 	if (!ret)
36581259ab75SChris Mason 		return ret;
36591259ab75SChris Mason 
36601259ab75SChris Mason 	ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
3661b9fab919SChris Mason 				    parent_transid, atomic);
3662b9fab919SChris Mason 	if (ret == -EAGAIN)
3663b9fab919SChris Mason 		return ret;
36641259ab75SChris Mason 	return !ret;
36655f39d397SChris Mason }
36666702ed49SChris Mason 
36675f39d397SChris Mason int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
36685f39d397SChris Mason {
36690b32f4bbSJosef Bacik 	return set_extent_buffer_uptodate(buf);
36705f39d397SChris Mason }
36715f39d397SChris Mason 
36725f39d397SChris Mason void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
36735f39d397SChris Mason {
367406ea65a3SJosef Bacik 	struct btrfs_root *root;
36755f39d397SChris Mason 	u64 transid = btrfs_header_generation(buf);
3676b9473439SChris Mason 	int was_dirty;
3677b4ce94deSChris Mason 
367806ea65a3SJosef Bacik #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
367906ea65a3SJosef Bacik 	/*
368006ea65a3SJosef Bacik 	 * This is a fast path so only do this check if we have sanity tests
368106ea65a3SJosef Bacik 	 * enabled.  Normal people shouldn't be marking dummy buffers as dirty
368206ea65a3SJosef Bacik 	 * outside of the sanity tests.
368306ea65a3SJosef Bacik 	 */
368406ea65a3SJosef Bacik 	if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &buf->bflags)))
368506ea65a3SJosef Bacik 		return;
368606ea65a3SJosef Bacik #endif
368706ea65a3SJosef Bacik 	root = BTRFS_I(buf->pages[0]->mapping->host)->root;
3688b9447ef8SChris Mason 	btrfs_assert_tree_locked(buf);
368931b1a2bdSJulia Lawall 	if (transid != root->fs_info->generation)
369031b1a2bdSJulia Lawall 		WARN(1, KERN_CRIT "btrfs transid mismatch buffer %llu, "
3691d397712bSChris Mason 		       "found %llu running %llu\n",
3692c1c9ff7cSGeert Uytterhoeven 			buf->start, transid, root->fs_info->generation);
36930b32f4bbSJosef Bacik 	was_dirty = set_extent_buffer_dirty(buf);
3694e2d84521SMiao Xie 	if (!was_dirty)
3695e2d84521SMiao Xie 		__percpu_counter_add(&root->fs_info->dirty_metadata_bytes,
3696e2d84521SMiao Xie 				     buf->len,
3697e2d84521SMiao Xie 				     root->fs_info->dirty_metadata_batch);
3698eb60ceacSChris Mason }
3699eb60ceacSChris Mason 
3700b53d3f5dSLiu Bo static void __btrfs_btree_balance_dirty(struct btrfs_root *root,
3701b53d3f5dSLiu Bo 					int flush_delayed)
370235b7e476SChris Mason {
3703188de649SChris Mason 	/*
3704188de649SChris Mason 	 * looks as though older kernels can get into trouble with
3705188de649SChris Mason 	 * this code, they end up stuck in balance_dirty_pages forever
3706188de649SChris Mason 	 */
3707e2d84521SMiao Xie 	int ret;
3708d6bfde87SChris Mason 
37096933c02eSJens Axboe 	if (current->flags & PF_MEMALLOC)
3710d6bfde87SChris Mason 		return;
3711d6bfde87SChris Mason 
3712b53d3f5dSLiu Bo 	if (flush_delayed)
371316cdcec7SMiao Xie 		btrfs_balance_delayed_items(root);
371416cdcec7SMiao Xie 
3715e2d84521SMiao Xie 	ret = percpu_counter_compare(&root->fs_info->dirty_metadata_bytes,
3716e2d84521SMiao Xie 				     BTRFS_DIRTY_METADATA_THRESH);
3717e2d84521SMiao Xie 	if (ret > 0) {
3718d0e1d66bSNamjae Jeon 		balance_dirty_pages_ratelimited(
3719d0e1d66bSNamjae Jeon 				   root->fs_info->btree_inode->i_mapping);
372016cdcec7SMiao Xie 	}
372116cdcec7SMiao Xie 	return;
372216cdcec7SMiao Xie }
372316cdcec7SMiao Xie 
3724b53d3f5dSLiu Bo void btrfs_btree_balance_dirty(struct btrfs_root *root)
372516cdcec7SMiao Xie {
3726b53d3f5dSLiu Bo 	__btrfs_btree_balance_dirty(root, 1);
372735b7e476SChris Mason }
3728b53d3f5dSLiu Bo 
3729b53d3f5dSLiu Bo void btrfs_btree_balance_dirty_nodelay(struct btrfs_root *root)
3730b53d3f5dSLiu Bo {
3731b53d3f5dSLiu Bo 	__btrfs_btree_balance_dirty(root, 0);
3732d6bfde87SChris Mason }
37336b80053dSChris Mason 
3734ca7a79adSChris Mason int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
37356b80053dSChris Mason {
3736727011e0SChris Mason 	struct btrfs_root *root = BTRFS_I(buf->pages[0]->mapping->host)->root;
37370b32f4bbSJosef Bacik 	return btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
37386b80053dSChris Mason }
37390da5468fSChris Mason 
3740fcd1f065SDavid Sterba static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
3741acce952bSliubo 			      int read_only)
3742acce952bSliubo {
37431104a885SDavid Sterba 	/*
37441104a885SDavid Sterba 	 * Placeholder for checks
37451104a885SDavid Sterba 	 */
3746fcd1f065SDavid Sterba 	return 0;
3747fcd1f065SDavid Sterba }
3748fcd1f065SDavid Sterba 
374948a3b636SEric Sandeen static void btrfs_error_commit_super(struct btrfs_root *root)
3750acce952bSliubo {
3751acce952bSliubo 	mutex_lock(&root->fs_info->cleaner_mutex);
3752acce952bSliubo 	btrfs_run_delayed_iputs(root);
3753acce952bSliubo 	mutex_unlock(&root->fs_info->cleaner_mutex);
3754acce952bSliubo 
3755acce952bSliubo 	down_write(&root->fs_info->cleanup_work_sem);
3756acce952bSliubo 	up_write(&root->fs_info->cleanup_work_sem);
3757acce952bSliubo 
3758acce952bSliubo 	/* cleanup FS via transaction */
3759acce952bSliubo 	btrfs_cleanup_transaction(root);
3760acce952bSliubo }
3761acce952bSliubo 
3762569e0f35SJosef Bacik static void btrfs_destroy_ordered_operations(struct btrfs_transaction *t,
3763569e0f35SJosef Bacik 					     struct btrfs_root *root)
3764acce952bSliubo {
3765acce952bSliubo 	struct btrfs_inode *btrfs_inode;
3766acce952bSliubo 	struct list_head splice;
3767acce952bSliubo 
3768acce952bSliubo 	INIT_LIST_HEAD(&splice);
3769acce952bSliubo 
3770acce952bSliubo 	mutex_lock(&root->fs_info->ordered_operations_mutex);
3771199c2a9cSMiao Xie 	spin_lock(&root->fs_info->ordered_root_lock);
3772acce952bSliubo 
3773569e0f35SJosef Bacik 	list_splice_init(&t->ordered_operations, &splice);
3774acce952bSliubo 	while (!list_empty(&splice)) {
3775acce952bSliubo 		btrfs_inode = list_entry(splice.next, struct btrfs_inode,
3776acce952bSliubo 					 ordered_operations);
3777acce952bSliubo 
3778acce952bSliubo 		list_del_init(&btrfs_inode->ordered_operations);
3779199c2a9cSMiao Xie 		spin_unlock(&root->fs_info->ordered_root_lock);
3780acce952bSliubo 
3781acce952bSliubo 		btrfs_invalidate_inodes(btrfs_inode->root);
3782b216cbfbSMiao Xie 
3783199c2a9cSMiao Xie 		spin_lock(&root->fs_info->ordered_root_lock);
3784acce952bSliubo 	}
3785acce952bSliubo 
3786199c2a9cSMiao Xie 	spin_unlock(&root->fs_info->ordered_root_lock);
3787acce952bSliubo 	mutex_unlock(&root->fs_info->ordered_operations_mutex);
3788acce952bSliubo }
3789acce952bSliubo 
3790143bede5SJeff Mahoney static void btrfs_destroy_ordered_extents(struct btrfs_root *root)
3791acce952bSliubo {
3792acce952bSliubo 	struct btrfs_ordered_extent *ordered;
3793acce952bSliubo 
3794199c2a9cSMiao Xie 	spin_lock(&root->ordered_extent_lock);
3795779880efSJosef Bacik 	/*
3796779880efSJosef Bacik 	 * This will just short circuit the ordered completion stuff which will
3797779880efSJosef Bacik 	 * make sure the ordered extent gets properly cleaned up.
3798779880efSJosef Bacik 	 */
3799199c2a9cSMiao Xie 	list_for_each_entry(ordered, &root->ordered_extents,
3800779880efSJosef Bacik 			    root_extent_list)
3801779880efSJosef Bacik 		set_bit(BTRFS_ORDERED_IOERR, &ordered->flags);
3802199c2a9cSMiao Xie 	spin_unlock(&root->ordered_extent_lock);
3803199c2a9cSMiao Xie }
3804199c2a9cSMiao Xie 
3805199c2a9cSMiao Xie static void btrfs_destroy_all_ordered_extents(struct btrfs_fs_info *fs_info)
3806199c2a9cSMiao Xie {
3807199c2a9cSMiao Xie 	struct btrfs_root *root;
3808199c2a9cSMiao Xie 	struct list_head splice;
3809199c2a9cSMiao Xie 
3810199c2a9cSMiao Xie 	INIT_LIST_HEAD(&splice);
3811199c2a9cSMiao Xie 
3812199c2a9cSMiao Xie 	spin_lock(&fs_info->ordered_root_lock);
3813199c2a9cSMiao Xie 	list_splice_init(&fs_info->ordered_roots, &splice);
3814199c2a9cSMiao Xie 	while (!list_empty(&splice)) {
3815199c2a9cSMiao Xie 		root = list_first_entry(&splice, struct btrfs_root,
3816199c2a9cSMiao Xie 					ordered_root);
38171de2cfdeSJosef Bacik 		list_move_tail(&root->ordered_root,
38181de2cfdeSJosef Bacik 			       &fs_info->ordered_roots);
3819199c2a9cSMiao Xie 
38202a85d9caSLiu Bo 		spin_unlock(&fs_info->ordered_root_lock);
3821199c2a9cSMiao Xie 		btrfs_destroy_ordered_extents(root);
3822199c2a9cSMiao Xie 
38232a85d9caSLiu Bo 		cond_resched();
38242a85d9caSLiu Bo 		spin_lock(&fs_info->ordered_root_lock);
3825199c2a9cSMiao Xie 	}
3826199c2a9cSMiao Xie 	spin_unlock(&fs_info->ordered_root_lock);
3827acce952bSliubo }
3828acce952bSliubo 
382935a3621bSStefan Behrens static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
3830acce952bSliubo 				      struct btrfs_root *root)
3831acce952bSliubo {
3832acce952bSliubo 	struct rb_node *node;
3833acce952bSliubo 	struct btrfs_delayed_ref_root *delayed_refs;
3834acce952bSliubo 	struct btrfs_delayed_ref_node *ref;
3835acce952bSliubo 	int ret = 0;
3836acce952bSliubo 
3837acce952bSliubo 	delayed_refs = &trans->delayed_refs;
3838acce952bSliubo 
3839acce952bSliubo 	spin_lock(&delayed_refs->lock);
3840d7df2c79SJosef Bacik 	if (atomic_read(&delayed_refs->num_entries) == 0) {
3841cfece4dbSDavid Sterba 		spin_unlock(&delayed_refs->lock);
3842efe120a0SFrank Holton 		btrfs_info(root->fs_info, "delayed_refs has NO entry");
3843acce952bSliubo 		return ret;
3844acce952bSliubo 	}
3845acce952bSliubo 
3846d7df2c79SJosef Bacik 	while ((node = rb_first(&delayed_refs->href_root)) != NULL) {
3847d7df2c79SJosef Bacik 		struct btrfs_delayed_ref_head *head;
3848e78417d1SJosef Bacik 		bool pin_bytes = false;
3849acce952bSliubo 
3850d7df2c79SJosef Bacik 		head = rb_entry(node, struct btrfs_delayed_ref_head,
3851d7df2c79SJosef Bacik 				href_node);
3852b939d1abSJosef Bacik 		if (!mutex_trylock(&head->mutex)) {
3853d7df2c79SJosef Bacik 			atomic_inc(&head->node.refs);
385479787eaaSJeff Mahoney 			spin_unlock(&delayed_refs->lock);
3855b939d1abSJosef Bacik 
3856acce952bSliubo 			mutex_lock(&head->mutex);
3857b939d1abSJosef Bacik 			mutex_unlock(&head->mutex);
3858d7df2c79SJosef Bacik 			btrfs_put_delayed_ref(&head->node);
3859e18fca73SJosef Bacik 			spin_lock(&delayed_refs->lock);
3860b939d1abSJosef Bacik 			continue;
3861b939d1abSJosef Bacik 		}
3862d7df2c79SJosef Bacik 		spin_lock(&head->lock);
3863d7df2c79SJosef Bacik 		while ((node = rb_first(&head->ref_root)) != NULL) {
3864d7df2c79SJosef Bacik 			ref = rb_entry(node, struct btrfs_delayed_ref_node,
3865d7df2c79SJosef Bacik 				       rb_node);
3866d7df2c79SJosef Bacik 			ref->in_tree = 0;
3867d7df2c79SJosef Bacik 			rb_erase(&ref->rb_node, &head->ref_root);
3868d7df2c79SJosef Bacik 			atomic_dec(&delayed_refs->num_entries);
3869d7df2c79SJosef Bacik 			btrfs_put_delayed_ref(ref);
3870d7df2c79SJosef Bacik 		}
387154067ae9SJosef Bacik 		if (head->must_insert_reserved)
3872e78417d1SJosef Bacik 			pin_bytes = true;
387378a6184aSMiao Xie 		btrfs_free_delayed_extent_op(head->extent_op);
3874acce952bSliubo 		delayed_refs->num_heads--;
3875d7df2c79SJosef Bacik 		if (head->processing == 0)
3876acce952bSliubo 			delayed_refs->num_heads_ready--;
3877d7df2c79SJosef Bacik 		atomic_dec(&delayed_refs->num_entries);
3878d7df2c79SJosef Bacik 		head->node.in_tree = 0;
3879c46effa6SLiu Bo 		rb_erase(&head->href_node, &delayed_refs->href_root);
3880d7df2c79SJosef Bacik 		spin_unlock(&head->lock);
3881acce952bSliubo 		spin_unlock(&delayed_refs->lock);
3882e78417d1SJosef Bacik 		mutex_unlock(&head->mutex);
3883acce952bSliubo 
3884d7df2c79SJosef Bacik 		if (pin_bytes)
3885d7df2c79SJosef Bacik 			btrfs_pin_extent(root, head->node.bytenr,
3886d7df2c79SJosef Bacik 					 head->node.num_bytes, 1);
3887d7df2c79SJosef Bacik 		btrfs_put_delayed_ref(&head->node);
3888acce952bSliubo 		cond_resched();
3889acce952bSliubo 		spin_lock(&delayed_refs->lock);
3890acce952bSliubo 	}
3891acce952bSliubo 
3892acce952bSliubo 	spin_unlock(&delayed_refs->lock);
3893acce952bSliubo 
3894acce952bSliubo 	return ret;
3895acce952bSliubo }
3896acce952bSliubo 
3897143bede5SJeff Mahoney static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
3898acce952bSliubo {
3899acce952bSliubo 	struct btrfs_inode *btrfs_inode;
3900acce952bSliubo 	struct list_head splice;
3901acce952bSliubo 
3902acce952bSliubo 	INIT_LIST_HEAD(&splice);
3903acce952bSliubo 
3904eb73c1b7SMiao Xie 	spin_lock(&root->delalloc_lock);
3905eb73c1b7SMiao Xie 	list_splice_init(&root->delalloc_inodes, &splice);
3906acce952bSliubo 
3907acce952bSliubo 	while (!list_empty(&splice)) {
3908eb73c1b7SMiao Xie 		btrfs_inode = list_first_entry(&splice, struct btrfs_inode,
3909acce952bSliubo 					       delalloc_inodes);
3910acce952bSliubo 
3911acce952bSliubo 		list_del_init(&btrfs_inode->delalloc_inodes);
3912df0af1a5SMiao Xie 		clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
3913df0af1a5SMiao Xie 			  &btrfs_inode->runtime_flags);
3914eb73c1b7SMiao Xie 		spin_unlock(&root->delalloc_lock);
3915acce952bSliubo 
3916acce952bSliubo 		btrfs_invalidate_inodes(btrfs_inode->root);
3917b216cbfbSMiao Xie 
3918eb73c1b7SMiao Xie 		spin_lock(&root->delalloc_lock);
3919acce952bSliubo 	}
3920acce952bSliubo 
3921eb73c1b7SMiao Xie 	spin_unlock(&root->delalloc_lock);
3922eb73c1b7SMiao Xie }
3923eb73c1b7SMiao Xie 
3924eb73c1b7SMiao Xie static void btrfs_destroy_all_delalloc_inodes(struct btrfs_fs_info *fs_info)
3925eb73c1b7SMiao Xie {
3926eb73c1b7SMiao Xie 	struct btrfs_root *root;
3927eb73c1b7SMiao Xie 	struct list_head splice;
3928eb73c1b7SMiao Xie 
3929eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&splice);
3930eb73c1b7SMiao Xie 
3931eb73c1b7SMiao Xie 	spin_lock(&fs_info->delalloc_root_lock);
3932eb73c1b7SMiao Xie 	list_splice_init(&fs_info->delalloc_roots, &splice);
3933eb73c1b7SMiao Xie 	while (!list_empty(&splice)) {
3934eb73c1b7SMiao Xie 		root = list_first_entry(&splice, struct btrfs_root,
3935eb73c1b7SMiao Xie 					 delalloc_root);
3936eb73c1b7SMiao Xie 		list_del_init(&root->delalloc_root);
3937eb73c1b7SMiao Xie 		root = btrfs_grab_fs_root(root);
3938eb73c1b7SMiao Xie 		BUG_ON(!root);
3939eb73c1b7SMiao Xie 		spin_unlock(&fs_info->delalloc_root_lock);
3940eb73c1b7SMiao Xie 
3941eb73c1b7SMiao Xie 		btrfs_destroy_delalloc_inodes(root);
3942eb73c1b7SMiao Xie 		btrfs_put_fs_root(root);
3943eb73c1b7SMiao Xie 
3944eb73c1b7SMiao Xie 		spin_lock(&fs_info->delalloc_root_lock);
3945eb73c1b7SMiao Xie 	}
3946eb73c1b7SMiao Xie 	spin_unlock(&fs_info->delalloc_root_lock);
3947acce952bSliubo }
3948acce952bSliubo 
3949acce952bSliubo static int btrfs_destroy_marked_extents(struct btrfs_root *root,
3950acce952bSliubo 					struct extent_io_tree *dirty_pages,
3951acce952bSliubo 					int mark)
3952acce952bSliubo {
3953acce952bSliubo 	int ret;
3954acce952bSliubo 	struct extent_buffer *eb;
3955acce952bSliubo 	u64 start = 0;
3956acce952bSliubo 	u64 end;
3957acce952bSliubo 
3958acce952bSliubo 	while (1) {
3959acce952bSliubo 		ret = find_first_extent_bit(dirty_pages, start, &start, &end,
3960e6138876SJosef Bacik 					    mark, NULL);
3961acce952bSliubo 		if (ret)
3962acce952bSliubo 			break;
3963acce952bSliubo 
3964acce952bSliubo 		clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
3965acce952bSliubo 		while (start <= end) {
3966fd8b2b61SJosef Bacik 			eb = btrfs_find_tree_block(root, start,
3967fd8b2b61SJosef Bacik 						   root->leafsize);
396869a85bd8SJosef Bacik 			start += root->leafsize;
3969fd8b2b61SJosef Bacik 			if (!eb)
3970acce952bSliubo 				continue;
3971fd8b2b61SJosef Bacik 			wait_on_extent_buffer_writeback(eb);
3972acce952bSliubo 
3973fd8b2b61SJosef Bacik 			if (test_and_clear_bit(EXTENT_BUFFER_DIRTY,
3974fd8b2b61SJosef Bacik 					       &eb->bflags))
3975fd8b2b61SJosef Bacik 				clear_extent_buffer_dirty(eb);
3976fd8b2b61SJosef Bacik 			free_extent_buffer_stale(eb);
3977acce952bSliubo 		}
3978acce952bSliubo 	}
3979acce952bSliubo 
3980acce952bSliubo 	return ret;
3981acce952bSliubo }
3982acce952bSliubo 
3983acce952bSliubo static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
3984acce952bSliubo 				       struct extent_io_tree *pinned_extents)
3985acce952bSliubo {
3986acce952bSliubo 	struct extent_io_tree *unpin;
3987acce952bSliubo 	u64 start;
3988acce952bSliubo 	u64 end;
3989acce952bSliubo 	int ret;
3990ed0eaa14SLiu Bo 	bool loop = true;
3991acce952bSliubo 
3992acce952bSliubo 	unpin = pinned_extents;
3993ed0eaa14SLiu Bo again:
3994acce952bSliubo 	while (1) {
3995acce952bSliubo 		ret = find_first_extent_bit(unpin, 0, &start, &end,
3996e6138876SJosef Bacik 					    EXTENT_DIRTY, NULL);
3997acce952bSliubo 		if (ret)
3998acce952bSliubo 			break;
3999acce952bSliubo 
4000acce952bSliubo 		/* opt_discard */
40015378e607SLi Dongyang 		if (btrfs_test_opt(root, DISCARD))
40025378e607SLi Dongyang 			ret = btrfs_error_discard_extent(root, start,
40035378e607SLi Dongyang 							 end + 1 - start,
40045378e607SLi Dongyang 							 NULL);
4005acce952bSliubo 
4006acce952bSliubo 		clear_extent_dirty(unpin, start, end, GFP_NOFS);
4007acce952bSliubo 		btrfs_error_unpin_extent_range(root, start, end);
4008acce952bSliubo 		cond_resched();
4009acce952bSliubo 	}
4010acce952bSliubo 
4011ed0eaa14SLiu Bo 	if (loop) {
4012ed0eaa14SLiu Bo 		if (unpin == &root->fs_info->freed_extents[0])
4013ed0eaa14SLiu Bo 			unpin = &root->fs_info->freed_extents[1];
4014ed0eaa14SLiu Bo 		else
4015ed0eaa14SLiu Bo 			unpin = &root->fs_info->freed_extents[0];
4016ed0eaa14SLiu Bo 		loop = false;
4017ed0eaa14SLiu Bo 		goto again;
4018ed0eaa14SLiu Bo 	}
4019ed0eaa14SLiu Bo 
4020acce952bSliubo 	return 0;
4021acce952bSliubo }
4022acce952bSliubo 
402349b25e05SJeff Mahoney void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
402449b25e05SJeff Mahoney 				   struct btrfs_root *root)
402549b25e05SJeff Mahoney {
4026724e2315SJosef Bacik 	btrfs_destroy_ordered_operations(cur_trans, root);
4027724e2315SJosef Bacik 
402849b25e05SJeff Mahoney 	btrfs_destroy_delayed_refs(cur_trans, root);
402949b25e05SJeff Mahoney 
40304a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
403149b25e05SJeff Mahoney 	wake_up(&root->fs_info->transaction_blocked_wait);
403249b25e05SJeff Mahoney 
40334a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
403449b25e05SJeff Mahoney 	wake_up(&root->fs_info->transaction_wait);
403549b25e05SJeff Mahoney 
403667cde344SMiao Xie 	btrfs_destroy_delayed_inodes(root);
403767cde344SMiao Xie 	btrfs_assert_delayed_root_empty(root);
403867cde344SMiao Xie 
403949b25e05SJeff Mahoney 	btrfs_destroy_marked_extents(root, &cur_trans->dirty_pages,
404049b25e05SJeff Mahoney 				     EXTENT_DIRTY);
40416e841e32SLiu Bo 	btrfs_destroy_pinned_extent(root,
40426e841e32SLiu Bo 				    root->fs_info->pinned_extents);
404349b25e05SJeff Mahoney 
40444a9d8bdeSMiao Xie 	cur_trans->state =TRANS_STATE_COMPLETED;
40454a9d8bdeSMiao Xie 	wake_up(&cur_trans->commit_wait);
40464a9d8bdeSMiao Xie 
404749b25e05SJeff Mahoney 	/*
404849b25e05SJeff Mahoney 	memset(cur_trans, 0, sizeof(*cur_trans));
404949b25e05SJeff Mahoney 	kmem_cache_free(btrfs_transaction_cachep, cur_trans);
405049b25e05SJeff Mahoney 	*/
405149b25e05SJeff Mahoney }
405249b25e05SJeff Mahoney 
405348a3b636SEric Sandeen static int btrfs_cleanup_transaction(struct btrfs_root *root)
4054acce952bSliubo {
4055acce952bSliubo 	struct btrfs_transaction *t;
4056acce952bSliubo 
4057acce952bSliubo 	mutex_lock(&root->fs_info->transaction_kthread_mutex);
4058acce952bSliubo 
4059a4abeea4SJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
4060724e2315SJosef Bacik 	while (!list_empty(&root->fs_info->trans_list)) {
4061724e2315SJosef Bacik 		t = list_first_entry(&root->fs_info->trans_list,
4062724e2315SJosef Bacik 				     struct btrfs_transaction, list);
4063724e2315SJosef Bacik 		if (t->state >= TRANS_STATE_COMMIT_START) {
4064724e2315SJosef Bacik 			atomic_inc(&t->use_count);
4065724e2315SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
4066724e2315SJosef Bacik 			btrfs_wait_for_commit(root, t->transid);
4067724e2315SJosef Bacik 			btrfs_put_transaction(t);
4068724e2315SJosef Bacik 			spin_lock(&root->fs_info->trans_lock);
4069724e2315SJosef Bacik 			continue;
4070724e2315SJosef Bacik 		}
4071724e2315SJosef Bacik 		if (t == root->fs_info->running_transaction) {
4072724e2315SJosef Bacik 			t->state = TRANS_STATE_COMMIT_DOING;
4073724e2315SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
4074724e2315SJosef Bacik 			/*
4075724e2315SJosef Bacik 			 * We wait for 0 num_writers since we don't hold a trans
4076724e2315SJosef Bacik 			 * handle open currently for this transaction.
4077724e2315SJosef Bacik 			 */
4078724e2315SJosef Bacik 			wait_event(t->writer_wait,
4079724e2315SJosef Bacik 				   atomic_read(&t->num_writers) == 0);
4080724e2315SJosef Bacik 		} else {
4081724e2315SJosef Bacik 			spin_unlock(&root->fs_info->trans_lock);
4082724e2315SJosef Bacik 		}
4083724e2315SJosef Bacik 		btrfs_cleanup_one_transaction(t, root);
4084724e2315SJosef Bacik 
4085724e2315SJosef Bacik 		spin_lock(&root->fs_info->trans_lock);
4086724e2315SJosef Bacik 		if (t == root->fs_info->running_transaction)
4087ac673879SMiao Xie 			root->fs_info->running_transaction = NULL;
4088724e2315SJosef Bacik 		list_del_init(&t->list);
4089a4abeea4SJosef Bacik 		spin_unlock(&root->fs_info->trans_lock);
4090a4abeea4SJosef Bacik 
4091724e2315SJosef Bacik 		btrfs_put_transaction(t);
4092724e2315SJosef Bacik 		trace_btrfs_transaction_commit(root);
4093724e2315SJosef Bacik 		spin_lock(&root->fs_info->trans_lock);
4094724e2315SJosef Bacik 	}
4095724e2315SJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
4096199c2a9cSMiao Xie 	btrfs_destroy_all_ordered_extents(root->fs_info);
409767cde344SMiao Xie 	btrfs_destroy_delayed_inodes(root);
409867cde344SMiao Xie 	btrfs_assert_delayed_root_empty(root);
4099724e2315SJosef Bacik 	btrfs_destroy_pinned_extent(root, root->fs_info->pinned_extents);
4100eb73c1b7SMiao Xie 	btrfs_destroy_all_delalloc_inodes(root->fs_info);
4101acce952bSliubo 	mutex_unlock(&root->fs_info->transaction_kthread_mutex);
4102acce952bSliubo 
4103acce952bSliubo 	return 0;
4104acce952bSliubo }
4105acce952bSliubo 
4106d1310b2eSChris Mason static struct extent_io_ops btree_extent_io_ops = {
4107ce9adaa5SChris Mason 	.readpage_end_io_hook = btree_readpage_end_io_hook,
41084bb31e92SArne Jansen 	.readpage_io_failed_hook = btree_io_failed_hook,
41090b86a832SChris Mason 	.submit_bio_hook = btree_submit_bio_hook,
4110239b14b3SChris Mason 	/* note we're sharing with inode.c for the merge bio hook */
4111239b14b3SChris Mason 	.merge_bio_hook = btrfs_merge_bio_hook,
41120da5468fSChris Mason };
4113