blob: aa02eab8c40b42f08a22e75d87aec247a32f43cf [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masone20d96d2007-03-22 12:13:20 -040019#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -040020#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -040021#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040022#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040023#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040024#include <linux/writeback.h>
Chris Masond3977122009-01-05 21:25:51 -050025#include <linux/buffer_head.h>
Chris Masonce9adaa2008-04-09 16:28:12 -040026#include <linux/workqueue.h>
Chris Masona74a4b92008-06-25 16:01:31 -040027#include <linux/kthread.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050028#include <linux/freezer.h>
David Woodhouse163e7832009-04-19 13:02:41 +010029#include <linux/crc32c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Chris Mason784b4e22010-11-21 22:20:49 -050031#include <linux/migrate.h>
David Sterba7a36dde2011-05-06 15:33:15 +020032#include <linux/ratelimit.h>
David Sterba7e75bf32011-03-18 22:56:43 +000033#include <asm/unaligned.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050034#include "compat.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050035#include "ctree.h"
36#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040037#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040038#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040039#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040040#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040041#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040042#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040043#include "tree-log.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040044#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080045#include "inode-map.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010046#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040047#include "rcu-string.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050048
Josef Bacikde0022b2012-09-25 14:25:58 -040049#ifdef CONFIG_X86
50#include <asm/cpufeature.h>
51#endif
52
Chris Masond1310b22008-01-24 16:13:08 -050053static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040054static void end_workqueue_fn(struct btrfs_work *work);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040055static void free_fs_root(struct btrfs_root *root);
David Sterbafcd1f0652012-03-06 00:06:18 +010056static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
liuboacce9522011-01-06 19:30:25 +080057 int read_only);
Jeff Mahoney143bede2012-03-01 14:56:26 +010058static void btrfs_destroy_ordered_operations(struct btrfs_root *root);
59static void btrfs_destroy_ordered_extents(struct btrfs_root *root);
liuboacce9522011-01-06 19:30:25 +080060static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
61 struct btrfs_root *root);
Jeff Mahoney143bede2012-03-01 14:56:26 +010062static void btrfs_destroy_pending_snapshots(struct btrfs_transaction *t);
63static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root);
liuboacce9522011-01-06 19:30:25 +080064static int btrfs_destroy_marked_extents(struct btrfs_root *root,
65 struct extent_io_tree *dirty_pages,
66 int mark);
67static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
68 struct extent_io_tree *pinned_extents);
Chris Masonce9adaa2008-04-09 16:28:12 -040069
Chris Masond352ac62008-09-29 15:18:18 -040070/*
71 * end_io_wq structs are used to do processing in task context when an IO is
72 * complete. This is used during reads to verify checksums, and it is used
73 * by writes to insert metadata for new file extents after IO is complete.
74 */
Chris Masonce9adaa2008-04-09 16:28:12 -040075struct end_io_wq {
76 struct bio *bio;
77 bio_end_io_t *end_io;
78 void *private;
79 struct btrfs_fs_info *info;
80 int error;
Chris Mason22c59942008-04-09 16:28:12 -040081 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040082 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040083 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040084};
Chris Mason0da54682007-11-07 21:08:01 -050085
Chris Masond352ac62008-09-29 15:18:18 -040086/*
87 * async submit bios are used to offload expensive checksumming
88 * onto the worker threads. They checksum file and metadata bios
89 * just before they are sent down the IO stack.
90 */
Chris Mason44b8bd72008-04-16 11:14:51 -040091struct async_submit_bio {
92 struct inode *inode;
93 struct bio *bio;
94 struct list_head list;
Chris Mason4a69a412008-11-06 22:03:00 -050095 extent_submit_bio_hook_t *submit_bio_start;
96 extent_submit_bio_hook_t *submit_bio_done;
Chris Mason44b8bd72008-04-16 11:14:51 -040097 int rw;
98 int mirror_num;
Chris Masonc8b97812008-10-29 14:49:59 -040099 unsigned long bio_flags;
Chris Masoneaf25d92010-05-25 09:48:28 -0400100 /*
101 * bio_offset is optional, can be used if the pages in the bio
102 * can't tell us where in the file the bio should go
103 */
104 u64 bio_offset;
Chris Mason8b712842008-06-11 16:50:36 -0400105 struct btrfs_work work;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100106 int error;
Chris Mason44b8bd72008-04-16 11:14:51 -0400107};
108
Chris Mason85d4e462011-07-26 16:11:19 -0400109/*
110 * Lockdep class keys for extent_buffer->lock's in this root. For a given
111 * eb, the lockdep key is determined by the btrfs_root it belongs to and
112 * the level the eb occupies in the tree.
Chris Mason4008c042009-02-12 14:09:45 -0500113 *
Chris Mason85d4e462011-07-26 16:11:19 -0400114 * Different roots are used for different purposes and may nest inside each
115 * other and they require separate keysets. As lockdep keys should be
116 * static, assign keysets according to the purpose of the root as indicated
117 * by btrfs_root->objectid. This ensures that all special purpose roots
118 * have separate keysets.
Chris Mason4008c042009-02-12 14:09:45 -0500119 *
Chris Mason85d4e462011-07-26 16:11:19 -0400120 * Lock-nesting across peer nodes is always done with the immediate parent
121 * node locked thus preventing deadlock. As lockdep doesn't know this, use
122 * subclass to avoid triggering lockdep warning in such cases.
Chris Mason4008c042009-02-12 14:09:45 -0500123 *
Chris Mason85d4e462011-07-26 16:11:19 -0400124 * The key is set by the readpage_end_io_hook after the buffer has passed
125 * csum validation but before the pages are unlocked. It is also set by
126 * btrfs_init_new_buffer on freshly allocated blocks.
127 *
128 * We also add a check to make sure the highest level of the tree is the
129 * same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this code
130 * needs update as well.
Chris Mason4008c042009-02-12 14:09:45 -0500131 */
132#ifdef CONFIG_DEBUG_LOCK_ALLOC
133# if BTRFS_MAX_LEVEL != 8
134# error
135# endif
Chris Mason85d4e462011-07-26 16:11:19 -0400136
137static struct btrfs_lockdep_keyset {
138 u64 id; /* root objectid */
139 const char *name_stem; /* lock name stem */
140 char names[BTRFS_MAX_LEVEL + 1][20];
141 struct lock_class_key keys[BTRFS_MAX_LEVEL + 1];
142} btrfs_lockdep_keysets[] = {
143 { .id = BTRFS_ROOT_TREE_OBJECTID, .name_stem = "root" },
144 { .id = BTRFS_EXTENT_TREE_OBJECTID, .name_stem = "extent" },
145 { .id = BTRFS_CHUNK_TREE_OBJECTID, .name_stem = "chunk" },
146 { .id = BTRFS_DEV_TREE_OBJECTID, .name_stem = "dev" },
147 { .id = BTRFS_FS_TREE_OBJECTID, .name_stem = "fs" },
148 { .id = BTRFS_CSUM_TREE_OBJECTID, .name_stem = "csum" },
149 { .id = BTRFS_ORPHAN_OBJECTID, .name_stem = "orphan" },
150 { .id = BTRFS_TREE_LOG_OBJECTID, .name_stem = "log" },
151 { .id = BTRFS_TREE_RELOC_OBJECTID, .name_stem = "treloc" },
152 { .id = BTRFS_DATA_RELOC_TREE_OBJECTID, .name_stem = "dreloc" },
153 { .id = 0, .name_stem = "tree" },
Chris Mason4008c042009-02-12 14:09:45 -0500154};
Chris Mason85d4e462011-07-26 16:11:19 -0400155
156void __init btrfs_init_lockdep(void)
157{
158 int i, j;
159
160 /* initialize lockdep class names */
161 for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) {
162 struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i];
163
164 for (j = 0; j < ARRAY_SIZE(ks->names); j++)
165 snprintf(ks->names[j], sizeof(ks->names[j]),
166 "btrfs-%s-%02d", ks->name_stem, j);
167 }
168}
169
170void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb,
171 int level)
172{
173 struct btrfs_lockdep_keyset *ks;
174
175 BUG_ON(level >= ARRAY_SIZE(ks->keys));
176
177 /* find the matching keyset, id 0 is the default entry */
178 for (ks = btrfs_lockdep_keysets; ks->id; ks++)
179 if (ks->id == objectid)
180 break;
181
182 lockdep_set_class_and_name(&eb->lock,
183 &ks->keys[level], ks->names[level]);
184}
185
Chris Mason4008c042009-02-12 14:09:45 -0500186#endif
187
Chris Masond352ac62008-09-29 15:18:18 -0400188/*
189 * extents on the btree inode are pretty simple, there's one extent
190 * that covers the entire device
191 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500192static struct extent_map *btree_get_extent(struct inode *inode,
David Sterba306e16c2011-04-19 14:29:38 +0200193 struct page *page, size_t pg_offset, u64 start, u64 len,
Christoph Hellwigb2950862008-12-02 09:54:17 -0500194 int create)
Chris Mason5f39d392007-10-15 16:14:19 -0400195{
196 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
197 struct extent_map *em;
198 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400199
Chris Mason890871b2009-09-02 16:24:52 -0400200 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500201 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -0400202 if (em) {
203 em->bdev =
204 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -0400205 read_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400206 goto out;
Chris Masona061fc82008-05-07 11:43:44 -0400207 }
Chris Mason890871b2009-09-02 16:24:52 -0400208 read_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400209
David Sterba172ddd62011-04-21 00:48:27 +0200210 em = alloc_extent_map();
Chris Mason5f39d392007-10-15 16:14:19 -0400211 if (!em) {
212 em = ERR_PTR(-ENOMEM);
213 goto out;
214 }
215 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400216 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -0400217 em->block_len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400218 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400219 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500220
Chris Mason890871b2009-09-02 16:24:52 -0400221 write_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400222 ret = add_extent_mapping(em_tree, em);
223 if (ret == -EEXIST) {
224 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400225 em = lookup_extent_mapping(em_tree, start, len);
Tsutomu Itohb4f359a2012-09-13 03:32:54 -0600226 if (!em)
Tsutomu Itoh0433f202012-09-13 03:32:32 -0600227 em = ERR_PTR(-EIO);
Chris Mason5f39d392007-10-15 16:14:19 -0400228 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400229 free_extent_map(em);
Tsutomu Itoh0433f202012-09-13 03:32:32 -0600230 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400231 }
Chris Mason890871b2009-09-02 16:24:52 -0400232 write_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400233
Chris Mason5f39d392007-10-15 16:14:19 -0400234out:
235 return em;
236}
237
Chris Mason19c00dd2007-10-15 16:19:22 -0400238u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
239{
David Woodhouse163e7832009-04-19 13:02:41 +0100240 return crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400241}
242
243void btrfs_csum_final(u32 crc, char *result)
244{
David Sterba7e75bf32011-03-18 22:56:43 +0000245 put_unaligned_le32(~crc, result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400246}
247
Chris Masond352ac62008-09-29 15:18:18 -0400248/*
249 * compute the csum for a btree block, and either verify it or write it
250 * into the csum field of the block.
251 */
Chris Mason19c00dd2007-10-15 16:19:22 -0400252static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
253 int verify)
254{
David Sterba6c417612011-04-13 15:41:04 +0200255 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Josef Bacik607d4322008-12-02 07:17:45 -0500256 char *result = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -0400257 unsigned long len;
258 unsigned long cur_len;
259 unsigned long offset = BTRFS_CSUM_SIZE;
Chris Mason19c00dd2007-10-15 16:19:22 -0400260 char *kaddr;
261 unsigned long map_start;
262 unsigned long map_len;
263 int err;
264 u32 crc = ~(u32)0;
Josef Bacik607d4322008-12-02 07:17:45 -0500265 unsigned long inline_result;
Chris Mason19c00dd2007-10-15 16:19:22 -0400266
267 len = buf->len - offset;
Chris Masond3977122009-01-05 21:25:51 -0500268 while (len > 0) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400269 err = map_private_extent_buffer(buf, offset, 32,
Chris Masona6591712011-07-19 12:04:14 -0400270 &kaddr, &map_start, &map_len);
Chris Masond3977122009-01-05 21:25:51 -0500271 if (err)
Chris Mason19c00dd2007-10-15 16:19:22 -0400272 return 1;
Chris Mason19c00dd2007-10-15 16:19:22 -0400273 cur_len = min(len, map_len - (offset - map_start));
274 crc = btrfs_csum_data(root, kaddr + offset - map_start,
275 crc, cur_len);
276 len -= cur_len;
277 offset += cur_len;
Chris Mason19c00dd2007-10-15 16:19:22 -0400278 }
Josef Bacik607d4322008-12-02 07:17:45 -0500279 if (csum_size > sizeof(inline_result)) {
280 result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
281 if (!result)
282 return 1;
283 } else {
284 result = (char *)&inline_result;
285 }
286
Chris Mason19c00dd2007-10-15 16:19:22 -0400287 btrfs_csum_final(crc, result);
288
289 if (verify) {
Josef Bacik607d4322008-12-02 07:17:45 -0500290 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
Chris Masone4204de2008-01-08 15:46:27 -0500291 u32 val;
292 u32 found = 0;
Josef Bacik607d4322008-12-02 07:17:45 -0500293 memcpy(&found, result, csum_size);
Chris Masone4204de2008-01-08 15:46:27 -0500294
Josef Bacik607d4322008-12-02 07:17:45 -0500295 read_extent_buffer(buf, &val, 0, csum_size);
David Sterba7a36dde2011-05-06 15:33:15 +0200296 printk_ratelimited(KERN_INFO "btrfs: %s checksum verify "
Chris Mason193f2842009-04-27 07:29:05 -0400297 "failed on %llu wanted %X found %X "
298 "level %d\n",
299 root->fs_info->sb->s_id,
300 (unsigned long long)buf->start, val, found,
301 btrfs_header_level(buf));
Josef Bacik607d4322008-12-02 07:17:45 -0500302 if (result != (char *)&inline_result)
303 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400304 return 1;
305 }
306 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500307 write_extent_buffer(buf, result, 0, csum_size);
Chris Mason19c00dd2007-10-15 16:19:22 -0400308 }
Josef Bacik607d4322008-12-02 07:17:45 -0500309 if (result != (char *)&inline_result)
310 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400311 return 0;
312}
313
Chris Masond352ac62008-09-29 15:18:18 -0400314/*
315 * we can't consider a given block up to date unless the transid of the
316 * block matches the transid in the parent node's pointer. This is how we
317 * detect blocks that either didn't get written at all or got written
318 * in the wrong place.
319 */
Chris Mason1259ab72008-05-12 13:39:03 -0400320static int verify_parent_transid(struct extent_io_tree *io_tree,
Chris Masonb9fab912012-05-06 07:23:47 -0400321 struct extent_buffer *eb, u64 parent_transid,
322 int atomic)
Chris Mason1259ab72008-05-12 13:39:03 -0400323{
Josef Bacik2ac55d42010-02-03 19:33:23 +0000324 struct extent_state *cached_state = NULL;
Chris Mason1259ab72008-05-12 13:39:03 -0400325 int ret;
326
327 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
328 return 0;
329
Chris Masonb9fab912012-05-06 07:23:47 -0400330 if (atomic)
331 return -EAGAIN;
332
Josef Bacik2ac55d42010-02-03 19:33:23 +0000333 lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100334 0, &cached_state);
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400335 if (extent_buffer_uptodate(eb) &&
Chris Mason1259ab72008-05-12 13:39:03 -0400336 btrfs_header_generation(eb) == parent_transid) {
337 ret = 0;
338 goto out;
339 }
David Sterba7a36dde2011-05-06 15:33:15 +0200340 printk_ratelimited("parent transid verify failed on %llu wanted %llu "
Chris Mason193f2842009-04-27 07:29:05 -0400341 "found %llu\n",
342 (unsigned long long)eb->start,
343 (unsigned long long)parent_transid,
344 (unsigned long long)btrfs_header_generation(eb));
Chris Mason1259ab72008-05-12 13:39:03 -0400345 ret = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400346 clear_extent_buffer_uptodate(eb);
Chris Mason33958dc2008-07-30 10:29:12 -0400347out:
Josef Bacik2ac55d42010-02-03 19:33:23 +0000348 unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1,
349 &cached_state, GFP_NOFS);
Chris Mason1259ab72008-05-12 13:39:03 -0400350 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400351}
352
Chris Masond352ac62008-09-29 15:18:18 -0400353/*
354 * helper to read a given tree block, doing retries as required when
355 * the checksums don't match and we have alternate mirrors to try.
356 */
Chris Masonf1885912008-04-09 16:28:12 -0400357static int btree_read_extent_buffer_pages(struct btrfs_root *root,
358 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400359 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400360{
361 struct extent_io_tree *io_tree;
Josef Bacikea466792012-03-26 21:57:36 -0400362 int failed = 0;
Chris Masonf1885912008-04-09 16:28:12 -0400363 int ret;
364 int num_copies = 0;
365 int mirror_num = 0;
Josef Bacikea466792012-03-26 21:57:36 -0400366 int failed_mirror = 0;
Chris Masonf1885912008-04-09 16:28:12 -0400367
Josef Bacika826d6d2011-03-16 13:42:43 -0400368 clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
Chris Masonf1885912008-04-09 16:28:12 -0400369 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
370 while (1) {
Arne Jansenbb82ab82011-06-10 14:06:53 +0200371 ret = read_extent_buffer_pages(io_tree, eb, start,
372 WAIT_COMPLETE,
Chris Masonf1885912008-04-09 16:28:12 -0400373 btree_get_extent, mirror_num);
Stefan Behrens256dd1b2012-08-10 08:58:21 -0600374 if (!ret) {
375 if (!verify_parent_transid(io_tree, eb,
Chris Masonb9fab912012-05-06 07:23:47 -0400376 parent_transid, 0))
Stefan Behrens256dd1b2012-08-10 08:58:21 -0600377 break;
378 else
379 ret = -EIO;
380 }
Chris Masond3977122009-01-05 21:25:51 -0500381
Josef Bacika826d6d2011-03-16 13:42:43 -0400382 /*
383 * This buffer's crc is fine, but its contents are corrupted, so
384 * there is no reason to read the other copies, they won't be
385 * any less wrong.
386 */
387 if (test_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags))
Josef Bacikea466792012-03-26 21:57:36 -0400388 break;
389
Chris Masonf1885912008-04-09 16:28:12 -0400390 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
391 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400392 if (num_copies == 1)
Josef Bacikea466792012-03-26 21:57:36 -0400393 break;
Chris Mason42352982008-04-28 16:40:52 -0400394
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400395 if (!failed_mirror) {
396 failed = 1;
397 failed_mirror = eb->read_mirror;
398 }
399
Chris Masonf1885912008-04-09 16:28:12 -0400400 mirror_num++;
Josef Bacikea466792012-03-26 21:57:36 -0400401 if (mirror_num == failed_mirror)
402 mirror_num++;
403
Chris Mason42352982008-04-28 16:40:52 -0400404 if (mirror_num > num_copies)
Josef Bacikea466792012-03-26 21:57:36 -0400405 break;
Chris Masonf1885912008-04-09 16:28:12 -0400406 }
Josef Bacikea466792012-03-26 21:57:36 -0400407
Stefan Behrensc0901582012-07-10 07:30:17 -0600408 if (failed && !ret && failed_mirror)
Josef Bacikea466792012-03-26 21:57:36 -0400409 repair_eb_io_failure(root, eb, failed_mirror);
410
411 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400412}
Chris Mason19c00dd2007-10-15 16:19:22 -0400413
Chris Masond352ac62008-09-29 15:18:18 -0400414/*
Chris Masond3977122009-01-05 21:25:51 -0500415 * checksum a dirty tree block before IO. This has extra checks to make sure
416 * we only fill in the checksum field in the first page of a multi-page block
Chris Masond352ac62008-09-29 15:18:18 -0400417 */
Chris Masond3977122009-01-05 21:25:51 -0500418
Christoph Hellwigb2950862008-12-02 09:54:17 -0500419static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
Chris Mason19c00dd2007-10-15 16:19:22 -0400420{
Chris Masond1310b22008-01-24 16:13:08 -0500421 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400422 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400423 u64 found_start;
Chris Mason19c00dd2007-10-15 16:19:22 -0400424 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400425
Chris Masond1310b22008-01-24 16:13:08 -0500426 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400427
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500428 eb = (struct extent_buffer *)page->private;
429 if (page != eb->pages[0])
430 return 0;
Chris Mason19c00dd2007-10-15 16:19:22 -0400431 found_start = btrfs_header_bytenr(eb);
432 if (found_start != start) {
Chris Mason55c69072008-01-09 15:55:33 -0500433 WARN_ON(1);
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500434 return 0;
Chris Mason55c69072008-01-09 15:55:33 -0500435 }
Chris Mason727011e2010-08-06 13:21:20 -0400436 if (eb->pages[0] != page) {
Chris Mason55c69072008-01-09 15:55:33 -0500437 WARN_ON(1);
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500438 return 0;
Chris Mason55c69072008-01-09 15:55:33 -0500439 }
440 if (!PageUptodate(page)) {
Chris Mason55c69072008-01-09 15:55:33 -0500441 WARN_ON(1);
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500442 return 0;
Chris Mason19c00dd2007-10-15 16:19:22 -0400443 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400444 csum_tree_block(root, eb, 0);
Chris Mason19c00dd2007-10-15 16:19:22 -0400445 return 0;
446}
447
Yan Zheng2b820322008-11-17 21:11:30 -0500448static int check_tree_block_fsid(struct btrfs_root *root,
449 struct extent_buffer *eb)
450{
451 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
452 u8 fsid[BTRFS_UUID_SIZE];
453 int ret = 1;
454
455 read_extent_buffer(eb, fsid, (unsigned long)btrfs_header_fsid(eb),
456 BTRFS_FSID_SIZE);
457 while (fs_devices) {
458 if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
459 ret = 0;
460 break;
461 }
462 fs_devices = fs_devices->seed;
463 }
464 return ret;
465}
466
Josef Bacika826d6d2011-03-16 13:42:43 -0400467#define CORRUPT(reason, eb, root, slot) \
468 printk(KERN_CRIT "btrfs: corrupt leaf, %s: block=%llu," \
469 "root=%llu, slot=%d\n", reason, \
470 (unsigned long long)btrfs_header_bytenr(eb), \
471 (unsigned long long)root->objectid, slot)
472
473static noinline int check_leaf(struct btrfs_root *root,
474 struct extent_buffer *leaf)
475{
476 struct btrfs_key key;
477 struct btrfs_key leaf_key;
478 u32 nritems = btrfs_header_nritems(leaf);
479 int slot;
480
481 if (nritems == 0)
482 return 0;
483
484 /* Check the 0 item */
485 if (btrfs_item_offset_nr(leaf, 0) + btrfs_item_size_nr(leaf, 0) !=
486 BTRFS_LEAF_DATA_SIZE(root)) {
487 CORRUPT("invalid item offset size pair", leaf, root, 0);
488 return -EIO;
489 }
490
491 /*
492 * Check to make sure each items keys are in the correct order and their
493 * offsets make sense. We only have to loop through nritems-1 because
494 * we check the current slot against the next slot, which verifies the
495 * next slot's offset+size makes sense and that the current's slot
496 * offset is correct.
497 */
498 for (slot = 0; slot < nritems - 1; slot++) {
499 btrfs_item_key_to_cpu(leaf, &leaf_key, slot);
500 btrfs_item_key_to_cpu(leaf, &key, slot + 1);
501
502 /* Make sure the keys are in the right order */
503 if (btrfs_comp_cpu_keys(&leaf_key, &key) >= 0) {
504 CORRUPT("bad key order", leaf, root, slot);
505 return -EIO;
506 }
507
508 /*
509 * Make sure the offset and ends are right, remember that the
510 * item data starts at the end of the leaf and grows towards the
511 * front.
512 */
513 if (btrfs_item_offset_nr(leaf, slot) !=
514 btrfs_item_end_nr(leaf, slot + 1)) {
515 CORRUPT("slot offset bad", leaf, root, slot);
516 return -EIO;
517 }
518
519 /*
520 * Check to make sure that we don't point outside of the leaf,
521 * just incase all the items are consistent to eachother, but
522 * all point outside of the leaf.
523 */
524 if (btrfs_item_end_nr(leaf, slot) >
525 BTRFS_LEAF_DATA_SIZE(root)) {
526 CORRUPT("slot end outside of leaf", leaf, root, slot);
527 return -EIO;
528 }
529 }
530
531 return 0;
532}
533
Chris Mason727011e2010-08-06 13:21:20 -0400534struct extent_buffer *find_eb_for_page(struct extent_io_tree *tree,
535 struct page *page, int max_walk)
536{
537 struct extent_buffer *eb;
538 u64 start = page_offset(page);
539 u64 target = start;
540 u64 min_start;
541
542 if (start < max_walk)
543 min_start = 0;
544 else
545 min_start = start - max_walk;
546
547 while (start >= min_start) {
548 eb = find_extent_buffer(tree, start, 0);
549 if (eb) {
550 /*
551 * we found an extent buffer and it contains our page
552 * horray!
553 */
554 if (eb->start <= target &&
555 eb->start + eb->len > target)
556 return eb;
557
558 /* we found an extent buffer that wasn't for us */
559 free_extent_buffer(eb);
560 return NULL;
561 }
562 if (start == 0)
563 break;
564 start -= PAGE_CACHE_SIZE;
565 }
566 return NULL;
567}
568
Christoph Hellwigb2950862008-12-02 09:54:17 -0500569static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400570 struct extent_state *state, int mirror)
Chris Masonce9adaa2008-04-09 16:28:12 -0400571{
572 struct extent_io_tree *tree;
573 u64 found_start;
574 int found_level;
Chris Masonce9adaa2008-04-09 16:28:12 -0400575 struct extent_buffer *eb;
576 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400577 int ret = 0;
Chris Mason727011e2010-08-06 13:21:20 -0400578 int reads_done;
Chris Masonce9adaa2008-04-09 16:28:12 -0400579
Chris Masonce9adaa2008-04-09 16:28:12 -0400580 if (!page->private)
581 goto out;
Chris Masond3977122009-01-05 21:25:51 -0500582
Chris Mason727011e2010-08-06 13:21:20 -0400583 tree = &BTRFS_I(page->mapping->host)->io_tree;
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500584 eb = (struct extent_buffer *)page->private;
Chris Masond3977122009-01-05 21:25:51 -0500585
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400586 /* the pending IO might have been the only thing that kept this buffer
587 * in memory. Make sure we have a ref for all this other checks
588 */
589 extent_buffer_get(eb);
590
591 reads_done = atomic_dec_and_test(&eb->io_pages);
Chris Mason727011e2010-08-06 13:21:20 -0400592 if (!reads_done)
593 goto err;
Chris Masonf1885912008-04-09 16:28:12 -0400594
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400595 eb->read_mirror = mirror;
Josef Bacikea466792012-03-26 21:57:36 -0400596 if (test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
597 ret = -EIO;
598 goto err;
599 }
600
Chris Masonce9adaa2008-04-09 16:28:12 -0400601 found_start = btrfs_header_bytenr(eb);
Chris Mason727011e2010-08-06 13:21:20 -0400602 if (found_start != eb->start) {
David Sterba7a36dde2011-05-06 15:33:15 +0200603 printk_ratelimited(KERN_INFO "btrfs bad tree block start "
Chris Mason193f2842009-04-27 07:29:05 -0400604 "%llu %llu\n",
605 (unsigned long long)found_start,
606 (unsigned long long)eb->start);
Chris Masonf1885912008-04-09 16:28:12 -0400607 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400608 goto err;
609 }
Yan Zheng2b820322008-11-17 21:11:30 -0500610 if (check_tree_block_fsid(root, eb)) {
David Sterba7a36dde2011-05-06 15:33:15 +0200611 printk_ratelimited(KERN_INFO "btrfs bad fsid on block %llu\n",
Chris Mason193f2842009-04-27 07:29:05 -0400612 (unsigned long long)eb->start);
Chris Mason1259ab72008-05-12 13:39:03 -0400613 ret = -EIO;
614 goto err;
615 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400616 found_level = btrfs_header_level(eb);
617
Chris Mason85d4e462011-07-26 16:11:19 -0400618 btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb),
619 eb, found_level);
Chris Mason4008c042009-02-12 14:09:45 -0500620
Chris Masonce9adaa2008-04-09 16:28:12 -0400621 ret = csum_tree_block(root, eb, 1);
Josef Bacika826d6d2011-03-16 13:42:43 -0400622 if (ret) {
Chris Masonf1885912008-04-09 16:28:12 -0400623 ret = -EIO;
Josef Bacika826d6d2011-03-16 13:42:43 -0400624 goto err;
625 }
626
627 /*
628 * If this is a leaf block and it is corrupt, set the corrupt bit so
629 * that we don't try and read the other copies of this block, just
630 * return -EIO.
631 */
632 if (found_level == 0 && check_leaf(root, eb)) {
633 set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
634 ret = -EIO;
635 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400636
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400637 if (!ret)
638 set_extent_buffer_uptodate(eb);
Chris Masonce9adaa2008-04-09 16:28:12 -0400639err:
Arne Jansen4bb31e92011-06-10 13:55:54 +0200640 if (test_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags)) {
641 clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags);
642 btree_readahead_hook(root, eb, eb->start, ret);
643 }
644
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400645 if (ret)
646 clear_extent_buffer_uptodate(eb);
647 free_extent_buffer(eb);
Chris Masonce9adaa2008-04-09 16:28:12 -0400648out:
Chris Masonf1885912008-04-09 16:28:12 -0400649 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400650}
651
Josef Bacikea466792012-03-26 21:57:36 -0400652static int btree_io_failed_hook(struct page *page, int failed_mirror)
Arne Jansen4bb31e92011-06-10 13:55:54 +0200653{
Arne Jansen4bb31e92011-06-10 13:55:54 +0200654 struct extent_buffer *eb;
655 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
656
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500657 eb = (struct extent_buffer *)page->private;
Josef Bacikea466792012-03-26 21:57:36 -0400658 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400659 eb->read_mirror = failed_mirror;
Josef Bacikea466792012-03-26 21:57:36 -0400660 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
Arne Jansen4bb31e92011-06-10 13:55:54 +0200661 btree_readahead_hook(root, eb, eb->start, -EIO);
Arne Jansen4bb31e92011-06-10 13:55:54 +0200662 return -EIO; /* we fixed nothing */
663}
664
Chris Masonce9adaa2008-04-09 16:28:12 -0400665static void end_workqueue_bio(struct bio *bio, int err)
Chris Masonce9adaa2008-04-09 16:28:12 -0400666{
667 struct end_io_wq *end_io_wq = bio->bi_private;
668 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400669
Chris Masonce9adaa2008-04-09 16:28:12 -0400670 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400671 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400672 end_io_wq->work.func = end_workqueue_fn;
673 end_io_wq->work.flags = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500674
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200675 if (bio->bi_rw & REQ_WRITE) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400676 if (end_io_wq->metadata == 1)
Chris Masoncad321a2008-12-17 14:51:42 -0500677 btrfs_queue_worker(&fs_info->endio_meta_write_workers,
678 &end_io_wq->work);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400679 else if (end_io_wq->metadata == 2)
680 btrfs_queue_worker(&fs_info->endio_freespace_worker,
681 &end_io_wq->work);
Chris Masoncad321a2008-12-17 14:51:42 -0500682 else
683 btrfs_queue_worker(&fs_info->endio_write_workers,
684 &end_io_wq->work);
Chris Masond20f7042008-12-08 16:58:54 -0500685 } else {
686 if (end_io_wq->metadata)
687 btrfs_queue_worker(&fs_info->endio_meta_workers,
688 &end_io_wq->work);
689 else
690 btrfs_queue_worker(&fs_info->endio_workers,
691 &end_io_wq->work);
692 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400693}
694
Josef Bacik0cb59c92010-07-02 12:14:14 -0400695/*
696 * For the metadata arg you want
697 *
698 * 0 - if data
699 * 1 - if normal metadta
700 * 2 - if writing to the free space cache area
701 */
Chris Mason22c59942008-04-09 16:28:12 -0400702int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
703 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400704{
Chris Masonce9adaa2008-04-09 16:28:12 -0400705 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400706 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
707 if (!end_io_wq)
708 return -ENOMEM;
709
710 end_io_wq->private = bio->bi_private;
711 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400712 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400713 end_io_wq->error = 0;
714 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400715 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400716
717 bio->bi_private = end_io_wq;
718 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400719 return 0;
720}
721
Chris Masonb64a2852008-08-20 13:39:41 -0400722unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400723{
724 unsigned long limit = min_t(unsigned long,
725 info->workers.max_workers,
726 info->fs_devices->open_devices);
727 return 256 * limit;
728}
729
Chris Mason4a69a412008-11-06 22:03:00 -0500730static void run_one_async_start(struct btrfs_work *work)
731{
Chris Mason4a69a412008-11-06 22:03:00 -0500732 struct async_submit_bio *async;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100733 int ret;
Chris Mason4a69a412008-11-06 22:03:00 -0500734
735 async = container_of(work, struct async_submit_bio, work);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100736 ret = async->submit_bio_start(async->inode, async->rw, async->bio,
737 async->mirror_num, async->bio_flags,
738 async->bio_offset);
739 if (ret)
740 async->error = ret;
Chris Mason4a69a412008-11-06 22:03:00 -0500741}
742
743static void run_one_async_done(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400744{
745 struct btrfs_fs_info *fs_info;
746 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400747 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400748
749 async = container_of(work, struct async_submit_bio, work);
750 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400751
Chris Masonb64a2852008-08-20 13:39:41 -0400752 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400753 limit = limit * 2 / 3;
754
Josef Bacik66657b32012-08-01 15:36:24 -0400755 if (atomic_dec_return(&fs_info->nr_async_submits) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400756 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400757 wake_up(&fs_info->async_submit_wait);
758
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100759 /* If an error occured we just want to clean up the bio and move on */
760 if (async->error) {
761 bio_endio(async->bio, async->error);
762 return;
763 }
764
Chris Mason4a69a412008-11-06 22:03:00 -0500765 async->submit_bio_done(async->inode, async->rw, async->bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400766 async->mirror_num, async->bio_flags,
767 async->bio_offset);
Chris Mason4a69a412008-11-06 22:03:00 -0500768}
769
770static void run_one_async_free(struct btrfs_work *work)
771{
772 struct async_submit_bio *async;
773
774 async = container_of(work, struct async_submit_bio, work);
Chris Mason8b712842008-06-11 16:50:36 -0400775 kfree(async);
776}
777
Chris Mason44b8bd72008-04-16 11:14:51 -0400778int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
779 int rw, struct bio *bio, int mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -0400780 unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -0400781 u64 bio_offset,
Chris Mason4a69a412008-11-06 22:03:00 -0500782 extent_submit_bio_hook_t *submit_bio_start,
783 extent_submit_bio_hook_t *submit_bio_done)
Chris Mason44b8bd72008-04-16 11:14:51 -0400784{
785 struct async_submit_bio *async;
786
787 async = kmalloc(sizeof(*async), GFP_NOFS);
788 if (!async)
789 return -ENOMEM;
790
791 async->inode = inode;
792 async->rw = rw;
793 async->bio = bio;
794 async->mirror_num = mirror_num;
Chris Mason4a69a412008-11-06 22:03:00 -0500795 async->submit_bio_start = submit_bio_start;
796 async->submit_bio_done = submit_bio_done;
797
798 async->work.func = run_one_async_start;
799 async->work.ordered_func = run_one_async_done;
800 async->work.ordered_free = run_one_async_free;
801
Chris Mason8b712842008-06-11 16:50:36 -0400802 async->work.flags = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400803 async->bio_flags = bio_flags;
Chris Masoneaf25d92010-05-25 09:48:28 -0400804 async->bio_offset = bio_offset;
Chris Mason8c8bee12008-09-29 11:19:10 -0400805
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100806 async->error = 0;
807
Chris Masoncb03c742008-05-15 16:15:45 -0400808 atomic_inc(&fs_info->nr_async_submits);
Chris Masond313d7a2009-04-20 15:50:09 -0400809
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200810 if (rw & REQ_SYNC)
Chris Masond313d7a2009-04-20 15:50:09 -0400811 btrfs_set_work_high_prio(&async->work);
812
Chris Mason8b712842008-06-11 16:50:36 -0400813 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason9473f162008-08-28 06:15:24 -0400814
Chris Masond3977122009-01-05 21:25:51 -0500815 while (atomic_read(&fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500816 atomic_read(&fs_info->nr_async_submits)) {
817 wait_event(fs_info->async_submit_wait,
818 (atomic_read(&fs_info->nr_async_submits) == 0));
819 }
820
Chris Mason44b8bd72008-04-16 11:14:51 -0400821 return 0;
822}
823
Chris Masonce3ed712008-09-23 13:14:12 -0400824static int btree_csum_one_bio(struct bio *bio)
825{
826 struct bio_vec *bvec = bio->bi_io_vec;
827 int bio_index = 0;
828 struct btrfs_root *root;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100829 int ret = 0;
Chris Masonce3ed712008-09-23 13:14:12 -0400830
831 WARN_ON(bio->bi_vcnt <= 0);
Chris Masond3977122009-01-05 21:25:51 -0500832 while (bio_index < bio->bi_vcnt) {
Chris Masonce3ed712008-09-23 13:14:12 -0400833 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100834 ret = csum_dirty_buffer(root, bvec->bv_page);
835 if (ret)
836 break;
Chris Masonce3ed712008-09-23 13:14:12 -0400837 bio_index++;
838 bvec++;
839 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100840 return ret;
Chris Masonce3ed712008-09-23 13:14:12 -0400841}
842
Chris Mason4a69a412008-11-06 22:03:00 -0500843static int __btree_submit_bio_start(struct inode *inode, int rw,
844 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -0400845 unsigned long bio_flags,
846 u64 bio_offset)
Chris Mason22c59942008-04-09 16:28:12 -0400847{
Chris Mason8b712842008-06-11 16:50:36 -0400848 /*
849 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400850 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400851 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100852 return btree_csum_one_bio(bio);
Chris Mason4a69a412008-11-06 22:03:00 -0500853}
Chris Mason22c59942008-04-09 16:28:12 -0400854
Chris Mason4a69a412008-11-06 22:03:00 -0500855static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400856 int mirror_num, unsigned long bio_flags,
857 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -0500858{
Chris Mason8b712842008-06-11 16:50:36 -0400859 /*
Chris Mason4a69a412008-11-06 22:03:00 -0500860 * when we're called for a write, we're already in the async
861 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400862 */
Chris Mason8b712842008-06-11 16:50:36 -0400863 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400864}
865
Josef Bacikde0022b2012-09-25 14:25:58 -0400866static int check_async_write(struct inode *inode, unsigned long bio_flags)
867{
868 if (bio_flags & EXTENT_BIO_TREE_LOG)
869 return 0;
870#ifdef CONFIG_X86
871 if (cpu_has_xmm4_2)
872 return 0;
873#endif
874 return 1;
875}
876
Chris Mason44b8bd72008-04-16 11:14:51 -0400877static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400878 int mirror_num, unsigned long bio_flags,
879 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -0400880{
Josef Bacikde0022b2012-09-25 14:25:58 -0400881 int async = check_async_write(inode, bio_flags);
Chris Masoncad321a2008-12-17 14:51:42 -0500882 int ret;
883
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200884 if (!(rw & REQ_WRITE)) {
Chris Masonf3f266a2012-03-23 10:22:46 -0400885
Chris Mason4a69a412008-11-06 22:03:00 -0500886 /*
887 * called for a read, do the setup so that checksum validation
888 * can happen in the async kernel threads
889 */
Chris Masonf3f266a2012-03-23 10:22:46 -0400890 ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info,
891 bio, 1);
Chris Mason1d4284b2012-03-28 20:31:37 -0400892 if (ret)
893 return ret;
Chris Mason4a69a412008-11-06 22:03:00 -0500894 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason6f3577b2008-11-13 09:59:36 -0500895 mirror_num, 0);
Josef Bacikde0022b2012-09-25 14:25:58 -0400896 } else if (!async) {
897 ret = btree_csum_one_bio(bio);
898 if (ret)
899 return ret;
900 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
901 mirror_num, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -0400902 }
Chris Masond313d7a2009-04-20 15:50:09 -0400903
Chris Masoncad321a2008-12-17 14:51:42 -0500904 /*
905 * kthread helpers are used to submit writes so that checksumming
906 * can happen in parallel across all CPUs
907 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400908 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Masonc8b97812008-10-29 14:49:59 -0400909 inode, rw, bio, mirror_num, 0,
Chris Masoneaf25d92010-05-25 09:48:28 -0400910 bio_offset,
Chris Mason4a69a412008-11-06 22:03:00 -0500911 __btree_submit_bio_start,
912 __btree_submit_bio_done);
Chris Mason44b8bd72008-04-16 11:14:51 -0400913}
914
Jan Beulich3dd14622010-12-07 14:54:09 +0000915#ifdef CONFIG_MIGRATION
Chris Mason784b4e22010-11-21 22:20:49 -0500916static int btree_migratepage(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800917 struct page *newpage, struct page *page,
918 enum migrate_mode mode)
Chris Mason784b4e22010-11-21 22:20:49 -0500919{
920 /*
921 * we can't safely write a btree page from here,
922 * we haven't done the locking hook
923 */
924 if (PageDirty(page))
925 return -EAGAIN;
926 /*
927 * Buffers may be managed in a filesystem specific way.
928 * We must have no buffers or drop them.
929 */
930 if (page_has_private(page) &&
931 !try_to_release_page(page, GFP_KERNEL))
932 return -EAGAIN;
Mel Gormana6bc32b2012-01-12 17:19:43 -0800933 return migrate_page(mapping, newpage, page, mode);
Chris Mason784b4e22010-11-21 22:20:49 -0500934}
Jan Beulich3dd14622010-12-07 14:54:09 +0000935#endif
Chris Mason784b4e22010-11-21 22:20:49 -0500936
Chris Mason0da54682007-11-07 21:08:01 -0500937
938static int btree_writepages(struct address_space *mapping,
939 struct writeback_control *wbc)
940{
Chris Masond1310b22008-01-24 16:13:08 -0500941 struct extent_io_tree *tree;
942 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500943 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Masonb9473432009-03-13 11:00:37 -0400944 struct btrfs_root *root = BTRFS_I(mapping->host)->root;
Chris Mason793955b2007-11-26 16:34:41 -0800945 u64 num_dirty;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400946 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800947
948 if (wbc->for_kupdate)
949 return 0;
950
Chris Masonb9473432009-03-13 11:00:37 -0400951 /* this is a bit racy, but that's ok */
952 num_dirty = root->fs_info->dirty_metadata_bytes;
Chris Masond3977122009-01-05 21:25:51 -0500953 if (num_dirty < thresh)
Chris Mason793955b2007-11-26 16:34:41 -0800954 return 0;
Chris Mason793955b2007-11-26 16:34:41 -0800955 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400956 return btree_write_cache_pages(mapping, wbc);
Chris Mason0da54682007-11-07 21:08:01 -0500957}
958
Christoph Hellwigb2950862008-12-02 09:54:17 -0500959static int btree_readpage(struct file *file, struct page *page)
Chris Mason5f39d392007-10-15 16:14:19 -0400960{
Chris Masond1310b22008-01-24 16:13:08 -0500961 struct extent_io_tree *tree;
962 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +0200963 return extent_read_full_page(tree, page, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400964}
965
Chris Mason70dec802008-01-29 09:59:12 -0500966static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400967{
Chris Mason98509cf2008-09-11 15:51:43 -0400968 if (PageWriteback(page) || PageDirty(page))
Chris Masond3977122009-01-05 21:25:51 -0500969 return 0;
David Sterba0c4e5382012-01-26 15:01:12 -0500970 /*
971 * We need to mask out eg. __GFP_HIGHMEM and __GFP_DMA32 as we're doing
972 * slab allocation from alloc_extent_state down the callchain where
973 * it'd hit a BUG_ON as those flags are not allowed.
974 */
975 gfp_flags &= ~GFP_SLAB_BUG_MASK;
976
Josef Bacik3083ee22012-03-09 16:01:49 -0500977 return try_release_extent_buffer(page, gfp_flags);
Chris Masone20d96d2007-03-22 12:13:20 -0400978}
Chris Mason123abc82007-03-14 14:14:43 -0400979
Chris Mason5f39d392007-10-15 16:14:19 -0400980static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400981{
Chris Masond1310b22008-01-24 16:13:08 -0500982 struct extent_io_tree *tree;
983 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400984 extent_invalidatepage(tree, page, offset);
985 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400986 if (PagePrivate(page)) {
Chris Masond3977122009-01-05 21:25:51 -0500987 printk(KERN_WARNING "btrfs warning page private not zero "
988 "on page %llu\n", (unsigned long long)page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400989 ClearPagePrivate(page);
990 set_page_private(page, 0);
991 page_cache_release(page);
992 }
Chris Masond98237b2007-03-28 13:57:48 -0400993}
994
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400995static int btree_set_page_dirty(struct page *page)
996{
997 struct extent_buffer *eb;
998
999 BUG_ON(!PagePrivate(page));
1000 eb = (struct extent_buffer *)page->private;
1001 BUG_ON(!eb);
1002 BUG_ON(!test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
1003 BUG_ON(!atomic_read(&eb->refs));
1004 btrfs_assert_tree_locked(eb);
1005 return __set_page_dirty_nobuffers(page);
1006}
1007
Alexey Dobriyan7f094102009-09-21 17:01:10 -07001008static const struct address_space_operations btree_aops = {
Chris Masond98237b2007-03-28 13:57:48 -04001009 .readpage = btree_readpage,
Chris Mason0da54682007-11-07 21:08:01 -05001010 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -04001011 .releasepage = btree_releasepage,
1012 .invalidatepage = btree_invalidatepage,
Chris Mason5a92bc82010-11-29 09:49:11 -05001013#ifdef CONFIG_MIGRATION
Chris Mason784b4e22010-11-21 22:20:49 -05001014 .migratepage = btree_migratepage,
Chris Mason5a92bc82010-11-29 09:49:11 -05001015#endif
Josef Bacik0b32f4b2012-03-13 09:38:00 -04001016 .set_page_dirty = btree_set_page_dirty,
Chris Masond98237b2007-03-28 13:57:48 -04001017};
1018
Chris Masonca7a79a2008-05-12 12:59:19 -04001019int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1020 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -04001021{
Chris Mason5f39d392007-10-15 16:14:19 -04001022 struct extent_buffer *buf = NULL;
1023 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -04001024 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -04001025
Chris Masondb945352007-10-15 16:15:53 -04001026 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001027 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -04001028 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001029 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02001030 buf, 0, WAIT_NONE, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001031 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -04001032 return ret;
Chris Mason090d1872007-05-01 08:53:32 -04001033}
1034
Arne Jansenab0fff02011-05-23 14:25:41 +02001035int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1036 int mirror_num, struct extent_buffer **eb)
1037{
1038 struct extent_buffer *buf = NULL;
1039 struct inode *btree_inode = root->fs_info->btree_inode;
1040 struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree;
1041 int ret;
1042
1043 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
1044 if (!buf)
1045 return 0;
1046
1047 set_bit(EXTENT_BUFFER_READAHEAD, &buf->bflags);
1048
1049 ret = read_extent_buffer_pages(io_tree, buf, 0, WAIT_PAGE_LOCK,
1050 btree_get_extent, mirror_num);
1051 if (ret) {
1052 free_extent_buffer(buf);
1053 return ret;
1054 }
1055
1056 if (test_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags)) {
1057 free_extent_buffer(buf);
1058 return -EIO;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04001059 } else if (extent_buffer_uptodate(buf)) {
Arne Jansenab0fff02011-05-23 14:25:41 +02001060 *eb = buf;
1061 } else {
1062 free_extent_buffer(buf);
1063 }
1064 return 0;
1065}
1066
Chris Mason0999df52008-04-01 13:48:14 -04001067struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
1068 u64 bytenr, u32 blocksize)
1069{
1070 struct inode *btree_inode = root->fs_info->btree_inode;
1071 struct extent_buffer *eb;
1072 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02001073 bytenr, blocksize);
Chris Mason0999df52008-04-01 13:48:14 -04001074 return eb;
1075}
1076
1077struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
1078 u64 bytenr, u32 blocksize)
1079{
1080 struct inode *btree_inode = root->fs_info->btree_inode;
1081 struct extent_buffer *eb;
1082
1083 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
Chris Mason727011e2010-08-06 13:21:20 -04001084 bytenr, blocksize);
Chris Mason0999df52008-04-01 13:48:14 -04001085 return eb;
1086}
1087
1088
Chris Masone02119d2008-09-05 16:13:11 -04001089int btrfs_write_tree_block(struct extent_buffer *buf)
1090{
Chris Mason727011e2010-08-06 13:21:20 -04001091 return filemap_fdatawrite_range(buf->pages[0]->mapping, buf->start,
Christoph Hellwig8aa38c32009-10-01 12:58:30 -04001092 buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -04001093}
1094
1095int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
1096{
Chris Mason727011e2010-08-06 13:21:20 -04001097 return filemap_fdatawait_range(buf->pages[0]->mapping,
Christoph Hellwig8aa38c32009-10-01 12:58:30 -04001098 buf->start, buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -04001099}
1100
Chris Masondb945352007-10-15 16:15:53 -04001101struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001102 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -04001103{
Chris Mason5f39d392007-10-15 16:14:19 -04001104 struct extent_buffer *buf = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -04001105 int ret;
1106
Chris Masondb945352007-10-15 16:15:53 -04001107 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001108 if (!buf)
1109 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -05001110
Chris Masonca7a79a2008-05-12 12:59:19 -04001111 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Mason5f39d392007-10-15 16:14:19 -04001112 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -04001113
Chris Masoneb60cea2007-02-02 09:18:22 -05001114}
1115
Jeff Mahoneyd5c13f92012-03-01 14:56:27 +01001116void clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1117 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -05001118{
Chris Mason55c69072008-01-09 15:55:33 -05001119 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -04001120 root->fs_info->running_transaction->transid) {
Chris Masonb9447ef2009-03-09 11:45:38 -04001121 btrfs_assert_tree_locked(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001122
Chris Masonb9473432009-03-13 11:00:37 -04001123 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
1124 spin_lock(&root->fs_info->delalloc_lock);
1125 if (root->fs_info->dirty_metadata_bytes >= buf->len)
1126 root->fs_info->dirty_metadata_bytes -= buf->len;
Jeff Mahoneyd5c13f92012-03-01 14:56:27 +01001127 else {
1128 spin_unlock(&root->fs_info->delalloc_lock);
1129 btrfs_panic(root->fs_info, -EOVERFLOW,
1130 "Can't clear %lu bytes from "
Joe Perches533574c2012-07-30 14:40:13 -07001131 " dirty_mdatadata_bytes (%llu)",
Jeff Mahoneyd5c13f92012-03-01 14:56:27 +01001132 buf->len,
1133 root->fs_info->dirty_metadata_bytes);
1134 }
Chris Masonb9473432009-03-13 11:00:37 -04001135 spin_unlock(&root->fs_info->delalloc_lock);
1136 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001137
Chris Masonb9473432009-03-13 11:00:37 -04001138 /* ugh, clear_extent_buffer_dirty needs to lock the page */
1139 btrfs_set_lock_blocking(buf);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04001140 clear_extent_buffer_dirty(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001141 }
Chris Mason5f39d392007-10-15 16:14:19 -04001142}
1143
Jeff Mahoney143bede2012-03-01 14:56:26 +01001144static void __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
1145 u32 stripesize, struct btrfs_root *root,
1146 struct btrfs_fs_info *fs_info,
1147 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -05001148{
Chris Masoncfaa7292007-02-21 17:04:57 -05001149 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -05001150 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -04001151 root->sectorsize = sectorsize;
1152 root->nodesize = nodesize;
1153 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001154 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -04001155 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001156 root->track_dirty = 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001157 root->in_radix = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001158 root->orphan_item_inserted = 0;
1159 root->orphan_cleanup_state = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001160
Chris Mason0f7d52f2007-04-09 10:42:37 -04001161 root->objectid = objectid;
1162 root->last_trans = 0;
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001163 root->highest_objectid = 0;
Josef Bacik58176a92007-08-29 15:47:34 -04001164 root->name = NULL;
Eric Paris6bef4d32010-02-23 19:43:04 +00001165 root->inode_tree = RB_ROOT;
Miao Xie16cdcec2011-04-22 18:12:22 +08001166 INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001167 root->block_rsv = NULL;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001168 root->orphan_block_rsv = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04001169
1170 INIT_LIST_HEAD(&root->dirty_list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001171 INIT_LIST_HEAD(&root->root_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001172 spin_lock_init(&root->orphan_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001173 spin_lock_init(&root->inode_lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001174 spin_lock_init(&root->accounting_lock);
Chris Masona2135012008-06-25 16:01:30 -04001175 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001176 mutex_init(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05001177 init_waitqueue_head(&root->log_writer_wait);
1178 init_waitqueue_head(&root->log_commit_wait[0]);
1179 init_waitqueue_head(&root->log_commit_wait[1]);
1180 atomic_set(&root->log_commit[0], 0);
1181 atomic_set(&root->log_commit[1], 0);
1182 atomic_set(&root->log_writers, 0);
Miao Xie2ecb7922012-09-06 04:04:27 -06001183 atomic_set(&root->log_batch, 0);
Josef Bacik8a35d952012-05-23 14:26:42 -04001184 atomic_set(&root->orphan_inodes, 0);
Yan Zheng7237f182009-01-21 12:54:03 -05001185 root->log_transid = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04001186 root->last_log_commit = 0;
Chris Masond0c803c2008-09-11 16:17:57 -04001187 extent_io_tree_init(&root->dirty_log_pages,
David Sterbaf993c882011-04-20 23:35:57 +02001188 fs_info->btree_inode->i_mapping);
Chris Mason017e5362008-07-28 15:32:51 -04001189
Chris Mason3768f362007-03-13 16:47:54 -04001190 memset(&root->root_key, 0, sizeof(root->root_key));
1191 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -04001192 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -04001193 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -04001194 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -04001195 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -04001196 root->defrag_running = 0;
Chris Mason4d775672007-04-20 20:23:12 -04001197 root->root_key.objectid = objectid;
Al Viro0ee5dc62011-07-07 15:44:25 -04001198 root->anon_dev = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +02001199
1200 spin_lock_init(&root->root_times_lock);
Chris Mason3768f362007-03-13 16:47:54 -04001201}
1202
Jeff Mahoney200a5c12011-10-03 23:22:43 -04001203static int __must_check find_and_setup_root(struct btrfs_root *tree_root,
1204 struct btrfs_fs_info *fs_info,
1205 u64 objectid,
1206 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -04001207{
1208 int ret;
Chris Masondb945352007-10-15 16:15:53 -04001209 u32 blocksize;
Yan Zheng84234f32008-10-29 14:49:05 -04001210 u64 generation;
Chris Mason3768f362007-03-13 16:47:54 -04001211
Chris Masondb945352007-10-15 16:15:53 -04001212 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001213 tree_root->sectorsize, tree_root->stripesize,
1214 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -04001215 ret = btrfs_find_last_root(tree_root, objectid,
1216 &root->root_item, &root->root_key);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001217 if (ret > 0)
1218 return -ENOENT;
Jeff Mahoney200a5c12011-10-03 23:22:43 -04001219 else if (ret < 0)
1220 return ret;
Chris Mason3768f362007-03-13 16:47:54 -04001221
Yan Zheng84234f32008-10-29 14:49:05 -04001222 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001223 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
Chris Masonaf31f5e2011-11-03 15:17:42 -04001224 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -04001225 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001226 blocksize, generation);
Chris Masonb9fab912012-05-06 07:23:47 -04001227 if (!root->node || !btrfs_buffer_uptodate(root->node, generation, 0)) {
Chris Mason68433b72010-12-13 14:47:58 -05001228 free_extent_buffer(root->node);
Chris Masonaf31f5e2011-11-03 15:17:42 -04001229 root->node = NULL;
Chris Mason68433b72010-12-13 14:47:58 -05001230 return -EIO;
1231 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001232 root->commit_root = btrfs_root_node(root);
Chris Masond97e63b2007-02-20 16:40:44 -05001233 return 0;
1234}
1235
Al Virof84a8bd2011-11-17 15:57:57 -05001236static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info)
Al Viro6f07e422011-11-17 00:46:16 -05001237{
1238 struct btrfs_root *root = kzalloc(sizeof(*root), GFP_NOFS);
1239 if (root)
1240 root->fs_info = fs_info;
1241 return root;
1242}
1243
Arne Jansen20897f52011-09-13 12:44:20 +02001244struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
1245 struct btrfs_fs_info *fs_info,
1246 u64 objectid)
1247{
1248 struct extent_buffer *leaf;
1249 struct btrfs_root *tree_root = fs_info->tree_root;
1250 struct btrfs_root *root;
1251 struct btrfs_key key;
1252 int ret = 0;
1253 u64 bytenr;
1254
1255 root = btrfs_alloc_root(fs_info);
1256 if (!root)
1257 return ERR_PTR(-ENOMEM);
1258
1259 __setup_root(tree_root->nodesize, tree_root->leafsize,
1260 tree_root->sectorsize, tree_root->stripesize,
1261 root, fs_info, objectid);
1262 root->root_key.objectid = objectid;
1263 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1264 root->root_key.offset = 0;
1265
1266 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
1267 0, objectid, NULL, 0, 0, 0);
1268 if (IS_ERR(leaf)) {
1269 ret = PTR_ERR(leaf);
1270 goto fail;
1271 }
1272
1273 bytenr = leaf->start;
1274 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
1275 btrfs_set_header_bytenr(leaf, leaf->start);
1276 btrfs_set_header_generation(leaf, trans->transid);
1277 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1278 btrfs_set_header_owner(leaf, objectid);
1279 root->node = leaf;
1280
1281 write_extent_buffer(leaf, fs_info->fsid,
1282 (unsigned long)btrfs_header_fsid(leaf),
1283 BTRFS_FSID_SIZE);
1284 write_extent_buffer(leaf, fs_info->chunk_tree_uuid,
1285 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
1286 BTRFS_UUID_SIZE);
1287 btrfs_mark_buffer_dirty(leaf);
1288
1289 root->commit_root = btrfs_root_node(root);
1290 root->track_dirty = 1;
1291
1292
1293 root->root_item.flags = 0;
1294 root->root_item.byte_limit = 0;
1295 btrfs_set_root_bytenr(&root->root_item, leaf->start);
1296 btrfs_set_root_generation(&root->root_item, trans->transid);
1297 btrfs_set_root_level(&root->root_item, 0);
1298 btrfs_set_root_refs(&root->root_item, 1);
1299 btrfs_set_root_used(&root->root_item, leaf->len);
1300 btrfs_set_root_last_snapshot(&root->root_item, 0);
1301 btrfs_set_root_dirid(&root->root_item, 0);
1302 root->root_item.drop_level = 0;
1303
1304 key.objectid = objectid;
1305 key.type = BTRFS_ROOT_ITEM_KEY;
1306 key.offset = 0;
1307 ret = btrfs_insert_root(trans, tree_root, &key, &root->root_item);
1308 if (ret)
1309 goto fail;
1310
1311 btrfs_tree_unlock(leaf);
1312
1313fail:
1314 if (ret)
1315 return ERR_PTR(ret);
1316
1317 return root;
1318}
1319
Yan Zheng7237f182009-01-21 12:54:03 -05001320static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1321 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001322{
1323 struct btrfs_root *root;
1324 struct btrfs_root *tree_root = fs_info->tree_root;
Yan Zheng7237f182009-01-21 12:54:03 -05001325 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001326
Al Viro6f07e422011-11-17 00:46:16 -05001327 root = btrfs_alloc_root(fs_info);
Chris Masone02119d2008-09-05 16:13:11 -04001328 if (!root)
Yan Zheng7237f182009-01-21 12:54:03 -05001329 return ERR_PTR(-ENOMEM);
Chris Masone02119d2008-09-05 16:13:11 -04001330
1331 __setup_root(tree_root->nodesize, tree_root->leafsize,
1332 tree_root->sectorsize, tree_root->stripesize,
1333 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1334
1335 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1336 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1337 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
Yan Zheng7237f182009-01-21 12:54:03 -05001338 /*
1339 * log trees do not get reference counted because they go away
1340 * before a real commit is actually done. They do store pointers
1341 * to file data extents, and those reference counts still get
1342 * updated (along with back refs to the log tree).
1343 */
Chris Masone02119d2008-09-05 16:13:11 -04001344 root->ref_cows = 0;
1345
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001347 BTRFS_TREE_LOG_OBJECTID, NULL,
Jan Schmidt5581a512012-05-16 17:04:52 +02001348 0, 0, 0);
Yan Zheng7237f182009-01-21 12:54:03 -05001349 if (IS_ERR(leaf)) {
1350 kfree(root);
1351 return ERR_CAST(leaf);
1352 }
Chris Masone02119d2008-09-05 16:13:11 -04001353
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001354 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
1355 btrfs_set_header_bytenr(leaf, leaf->start);
1356 btrfs_set_header_generation(leaf, trans->transid);
1357 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1358 btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
Yan Zheng7237f182009-01-21 12:54:03 -05001359 root->node = leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001360
1361 write_extent_buffer(root->node, root->fs_info->fsid,
1362 (unsigned long)btrfs_header_fsid(root->node),
1363 BTRFS_FSID_SIZE);
1364 btrfs_mark_buffer_dirty(root->node);
1365 btrfs_tree_unlock(root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001366 return root;
1367}
1368
1369int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
1370 struct btrfs_fs_info *fs_info)
1371{
1372 struct btrfs_root *log_root;
1373
1374 log_root = alloc_log_tree(trans, fs_info);
1375 if (IS_ERR(log_root))
1376 return PTR_ERR(log_root);
1377 WARN_ON(fs_info->log_root_tree);
1378 fs_info->log_root_tree = log_root;
1379 return 0;
1380}
1381
1382int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
1383 struct btrfs_root *root)
1384{
1385 struct btrfs_root *log_root;
1386 struct btrfs_inode_item *inode_item;
1387
1388 log_root = alloc_log_tree(trans, root->fs_info);
1389 if (IS_ERR(log_root))
1390 return PTR_ERR(log_root);
1391
1392 log_root->last_trans = trans->transid;
1393 log_root->root_key.offset = root->root_key.objectid;
1394
1395 inode_item = &log_root->root_item.inode;
1396 inode_item->generation = cpu_to_le64(1);
1397 inode_item->size = cpu_to_le64(3);
1398 inode_item->nlink = cpu_to_le32(1);
1399 inode_item->nbytes = cpu_to_le64(root->leafsize);
1400 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
1401
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001402 btrfs_set_root_node(&log_root->root_item, log_root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001403
1404 WARN_ON(root->log_root);
1405 root->log_root = log_root;
1406 root->log_transid = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04001407 root->last_log_commit = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001408 return 0;
1409}
1410
1411struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
1412 struct btrfs_key *location)
1413{
1414 struct btrfs_root *root;
1415 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001416 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001417 struct extent_buffer *l;
Yan Zheng84234f32008-10-29 14:49:05 -04001418 u64 generation;
Chris Masondb945352007-10-15 16:15:53 -04001419 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001420 int ret = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +02001421 int slot;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001422
Al Viro6f07e422011-11-17 00:46:16 -05001423 root = btrfs_alloc_root(fs_info);
Chris Mason0cf6c622007-06-09 09:22:25 -04001424 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001425 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001426 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -04001427 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001428 location->objectid, root);
1429 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04001430 kfree(root);
1431 return ERR_PTR(ret);
1432 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001433 goto out;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001434 }
1435
Chris Masondb945352007-10-15 16:15:53 -04001436 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001437 tree_root->sectorsize, tree_root->stripesize,
1438 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001439
1440 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001441 if (!path) {
1442 kfree(root);
1443 return ERR_PTR(-ENOMEM);
1444 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001445 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001446 if (ret == 0) {
1447 l = path->nodes[0];
Alexander Block8ea05e32012-07-25 17:35:53 +02001448 slot = path->slots[0];
1449 btrfs_read_root_item(tree_root, l, slot, &root->root_item);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001450 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -04001451 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001452 btrfs_free_path(path);
1453 if (ret) {
Tsutomu Itoh5e540f72010-12-27 06:53:10 +00001454 kfree(root);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001455 if (ret > 0)
1456 ret = -ENOENT;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001457 return ERR_PTR(ret);
1458 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001459
Yan Zheng84234f32008-10-29 14:49:05 -04001460 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001461 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
1462 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001463 blocksize, generation);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001464 root->commit_root = btrfs_root_node(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001465 BUG_ON(!root->node); /* -ENOMEM */
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001466out:
Li Zefan08fe4db2011-03-28 02:01:25 +00001467 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
Chris Masone02119d2008-09-05 16:13:11 -04001468 root->ref_cows = 1;
Li Zefan08fe4db2011-03-28 02:01:25 +00001469 btrfs_check_and_init_root_item(&root->root_item);
1470 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001471
Chris Mason5eda7b52007-06-22 14:16:25 -04001472 return root;
1473}
1474
Chris Masonedbd8d42007-12-21 16:27:24 -05001475struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
1476 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -04001477{
1478 struct btrfs_root *root;
1479 int ret;
1480
Chris Masonedbd8d42007-12-21 16:27:24 -05001481 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1482 return fs_info->tree_root;
1483 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1484 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001485 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
1486 return fs_info->chunk_root;
1487 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
1488 return fs_info->dev_root;
Yan Zheng0403e472008-12-10 20:32:51 -05001489 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
1490 return fs_info->csum_root;
Arne Jansenbcef60f2011-09-13 15:23:30 +02001491 if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
1492 return fs_info->quota_root ? fs_info->quota_root :
1493 ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001494again:
1495 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason5eda7b52007-06-22 14:16:25 -04001496 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1497 (unsigned long)location->objectid);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001498 spin_unlock(&fs_info->fs_roots_radix_lock);
Chris Mason5eda7b52007-06-22 14:16:25 -04001499 if (root)
1500 return root;
1501
Chris Masone02119d2008-09-05 16:13:11 -04001502 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -04001503 if (IS_ERR(root))
1504 return root;
Chris Mason3394e162008-11-17 20:42:26 -05001505
Li Zefan581bb052011-04-20 10:06:11 +08001506 root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS);
Li Zefan581bb052011-04-20 10:06:11 +08001507 root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned),
1508 GFP_NOFS);
David Sterba35a30d72011-06-13 15:18:23 +00001509 if (!root->free_ino_pinned || !root->free_ino_ctl) {
1510 ret = -ENOMEM;
Li Zefan581bb052011-04-20 10:06:11 +08001511 goto fail;
David Sterba35a30d72011-06-13 15:18:23 +00001512 }
Li Zefan581bb052011-04-20 10:06:11 +08001513
1514 btrfs_init_free_ino_ctl(root);
1515 mutex_init(&root->fs_commit_mutex);
1516 spin_lock_init(&root->cache_lock);
1517 init_waitqueue_head(&root->cache_wait);
1518
Al Viro0ee5dc62011-07-07 15:44:25 -04001519 ret = get_anon_bdev(&root->anon_dev);
Chris Masonac08aed2011-06-13 11:28:50 -04001520 if (ret)
1521 goto fail;
Chris Mason3394e162008-11-17 20:42:26 -05001522
Yan, Zhengd68fc572010-05-16 10:49:58 -04001523 if (btrfs_root_refs(&root->root_item) == 0) {
1524 ret = -ENOENT;
1525 goto fail;
1526 }
1527
1528 ret = btrfs_find_orphan_item(fs_info->tree_root, location->objectid);
1529 if (ret < 0)
1530 goto fail;
1531 if (ret == 0)
1532 root->orphan_item_inserted = 1;
1533
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001534 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
1535 if (ret)
1536 goto fail;
1537
1538 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason2619ba12007-04-10 16:58:11 -04001539 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1540 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001541 root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001542 if (ret == 0)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001543 root->in_radix = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001544
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001545 spin_unlock(&fs_info->fs_roots_radix_lock);
1546 radix_tree_preload_end();
Chris Mason0f7d52f2007-04-09 10:42:37 -04001547 if (ret) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001548 if (ret == -EEXIST) {
1549 free_fs_root(root);
1550 goto again;
1551 }
1552 goto fail;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001553 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001554
1555 ret = btrfs_find_dead_roots(fs_info->tree_root,
1556 root->root_key.objectid);
1557 WARN_ON(ret);
Chris Masonedbd8d42007-12-21 16:27:24 -05001558 return root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001559fail:
1560 free_fs_root(root);
1561 return ERR_PTR(ret);
Chris Masonedbd8d42007-12-21 16:27:24 -05001562}
1563
Chris Mason04160082008-03-26 10:28:07 -04001564static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1565{
1566 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1567 int ret = 0;
Chris Mason04160082008-03-26 10:28:07 -04001568 struct btrfs_device *device;
1569 struct backing_dev_info *bdi;
Chris Masonb7967db2009-04-27 07:29:04 -04001570
Xiao Guangrong1f781602011-04-20 10:09:16 +00001571 rcu_read_lock();
1572 list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001573 if (!device->bdev)
1574 continue;
Chris Mason04160082008-03-26 10:28:07 -04001575 bdi = blk_get_backing_dev_info(device->bdev);
1576 if (bdi && bdi_congested(bdi, bdi_bits)) {
1577 ret = 1;
1578 break;
1579 }
1580 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001581 rcu_read_unlock();
Chris Mason04160082008-03-26 10:28:07 -04001582 return ret;
1583}
1584
Chris Mason38b66982008-04-22 09:22:11 -04001585/*
Jens Axboead081f12009-06-12 14:43:40 +02001586 * If this fails, caller must call bdi_destroy() to get rid of the
1587 * bdi again.
1588 */
Chris Mason04160082008-03-26 10:28:07 -04001589static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1590{
Jens Axboead081f12009-06-12 14:43:40 +02001591 int err;
1592
1593 bdi->capabilities = BDI_CAP_MAP_COPY;
Jens Axboee6d086d2010-04-26 10:27:54 +02001594 err = bdi_setup_and_register(bdi, "btrfs", BDI_CAP_MAP_COPY);
Jens Axboead081f12009-06-12 14:43:40 +02001595 if (err)
1596 return err;
1597
Chris Mason4575c9c2008-04-18 16:13:31 -04001598 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001599 bdi->congested_fn = btrfs_congested_fn;
1600 bdi->congested_data = info;
1601 return 0;
1602}
1603
Chris Mason8b712842008-06-11 16:50:36 -04001604/*
1605 * called by the kthread helper functions to finally call the bio end_io
1606 * functions. This is where read checksum verification actually happens
1607 */
1608static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001609{
Chris Masonce9adaa2008-04-09 16:28:12 -04001610 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001611 struct end_io_wq *end_io_wq;
1612 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001613 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001614
Chris Mason8b712842008-06-11 16:50:36 -04001615 end_io_wq = container_of(work, struct end_io_wq, work);
1616 bio = end_io_wq->bio;
1617 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001618
Chris Mason8b712842008-06-11 16:50:36 -04001619 error = end_io_wq->error;
1620 bio->bi_private = end_io_wq->private;
1621 bio->bi_end_io = end_io_wq->end_io;
1622 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001623 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001624}
1625
Chris Masona74a4b92008-06-25 16:01:31 -04001626static int cleaner_kthread(void *arg)
1627{
1628 struct btrfs_root *root = arg;
1629
1630 do {
Yan, Zheng76dda932009-09-21 16:00:26 -04001631 if (!(root->fs_info->sb->s_flags & MS_RDONLY) &&
1632 mutex_trylock(&root->fs_info->cleaner_mutex)) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001633 btrfs_run_delayed_iputs(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04001634 btrfs_clean_old_snapshots(root);
1635 mutex_unlock(&root->fs_info->cleaner_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001636 btrfs_run_defrag_inodes(root->fs_info);
Yan, Zheng76dda932009-09-21 16:00:26 -04001637 }
Chris Masona74a4b92008-06-25 16:01:31 -04001638
Tejun Heoa0acae02011-11-21 12:32:22 -08001639 if (!try_to_freeze()) {
Chris Masona74a4b92008-06-25 16:01:31 -04001640 set_current_state(TASK_INTERRUPTIBLE);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001641 if (!kthread_should_stop())
1642 schedule();
Chris Masona74a4b92008-06-25 16:01:31 -04001643 __set_current_state(TASK_RUNNING);
1644 }
1645 } while (!kthread_should_stop());
1646 return 0;
1647}
1648
1649static int transaction_kthread(void *arg)
1650{
1651 struct btrfs_root *root = arg;
1652 struct btrfs_trans_handle *trans;
1653 struct btrfs_transaction *cur;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001654 u64 transid;
Chris Masona74a4b92008-06-25 16:01:31 -04001655 unsigned long now;
1656 unsigned long delay;
Jan Kara914b2002012-03-12 16:05:50 +01001657 bool cannot_commit;
Chris Masona74a4b92008-06-25 16:01:31 -04001658
1659 do {
Jan Kara914b2002012-03-12 16:05:50 +01001660 cannot_commit = false;
Chris Masona74a4b92008-06-25 16:01:31 -04001661 delay = HZ * 30;
Chris Masona74a4b92008-06-25 16:01:31 -04001662 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1663
Josef Bacika4abeea2011-04-11 17:25:13 -04001664 spin_lock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001665 cur = root->fs_info->running_transaction;
1666 if (!cur) {
Josef Bacika4abeea2011-04-11 17:25:13 -04001667 spin_unlock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001668 goto sleep;
1669 }
Yan Zheng31153d82008-07-28 15:32:19 -04001670
Chris Masona74a4b92008-06-25 16:01:31 -04001671 now = get_seconds();
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001672 if (!cur->blocked &&
1673 (now < cur->start_time || now - cur->start_time < 30)) {
Josef Bacika4abeea2011-04-11 17:25:13 -04001674 spin_unlock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001675 delay = HZ * 5;
1676 goto sleep;
1677 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001678 transid = cur->transid;
Josef Bacika4abeea2011-04-11 17:25:13 -04001679 spin_unlock(&root->fs_info->trans_lock);
Chris Mason56bec292009-03-13 10:10:06 -04001680
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001681 /* If the file system is aborted, this will always fail. */
Miao Xie354aa0f2012-09-20 01:54:00 -06001682 trans = btrfs_attach_transaction(root);
Jan Kara914b2002012-03-12 16:05:50 +01001683 if (IS_ERR(trans)) {
Miao Xie354aa0f2012-09-20 01:54:00 -06001684 if (PTR_ERR(trans) != -ENOENT)
1685 cannot_commit = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001686 goto sleep;
Jan Kara914b2002012-03-12 16:05:50 +01001687 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001688 if (transid == trans->transid) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001689 btrfs_commit_transaction(trans, root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001690 } else {
1691 btrfs_end_transaction(trans, root);
1692 }
Chris Masona74a4b92008-06-25 16:01:31 -04001693sleep:
1694 wake_up_process(root->fs_info->cleaner_kthread);
1695 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1696
Tejun Heoa0acae02011-11-21 12:32:22 -08001697 if (!try_to_freeze()) {
Chris Masona74a4b92008-06-25 16:01:31 -04001698 set_current_state(TASK_INTERRUPTIBLE);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001699 if (!kthread_should_stop() &&
Jan Kara914b2002012-03-12 16:05:50 +01001700 (!btrfs_transaction_blocked(root->fs_info) ||
1701 cannot_commit))
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001702 schedule_timeout(delay);
Chris Masona74a4b92008-06-25 16:01:31 -04001703 __set_current_state(TASK_RUNNING);
1704 }
1705 } while (!kthread_should_stop());
1706 return 0;
1707}
1708
Chris Masonaf31f5e2011-11-03 15:17:42 -04001709/*
1710 * this will find the highest generation in the array of
1711 * root backups. The index of the highest array is returned,
1712 * or -1 if we can't find anything.
1713 *
1714 * We check to make sure the array is valid by comparing the
1715 * generation of the latest root in the array with the generation
1716 * in the super block. If they don't match we pitch it.
1717 */
1718static int find_newest_super_backup(struct btrfs_fs_info *info, u64 newest_gen)
1719{
1720 u64 cur;
1721 int newest_index = -1;
1722 struct btrfs_root_backup *root_backup;
1723 int i;
1724
1725 for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
1726 root_backup = info->super_copy->super_roots + i;
1727 cur = btrfs_backup_tree_root_gen(root_backup);
1728 if (cur == newest_gen)
1729 newest_index = i;
1730 }
1731
1732 /* check to see if we actually wrapped around */
1733 if (newest_index == BTRFS_NUM_BACKUP_ROOTS - 1) {
1734 root_backup = info->super_copy->super_roots;
1735 cur = btrfs_backup_tree_root_gen(root_backup);
1736 if (cur == newest_gen)
1737 newest_index = 0;
1738 }
1739 return newest_index;
1740}
1741
1742
1743/*
1744 * find the oldest backup so we know where to store new entries
1745 * in the backup array. This will set the backup_root_index
1746 * field in the fs_info struct
1747 */
1748static void find_oldest_super_backup(struct btrfs_fs_info *info,
1749 u64 newest_gen)
1750{
1751 int newest_index = -1;
1752
1753 newest_index = find_newest_super_backup(info, newest_gen);
1754 /* if there was garbage in there, just move along */
1755 if (newest_index == -1) {
1756 info->backup_root_index = 0;
1757 } else {
1758 info->backup_root_index = (newest_index + 1) % BTRFS_NUM_BACKUP_ROOTS;
1759 }
1760}
1761
1762/*
1763 * copy all the root pointers into the super backup array.
1764 * this will bump the backup pointer by one when it is
1765 * done
1766 */
1767static void backup_super_roots(struct btrfs_fs_info *info)
1768{
1769 int next_backup;
1770 struct btrfs_root_backup *root_backup;
1771 int last_backup;
1772
1773 next_backup = info->backup_root_index;
1774 last_backup = (next_backup + BTRFS_NUM_BACKUP_ROOTS - 1) %
1775 BTRFS_NUM_BACKUP_ROOTS;
1776
1777 /*
1778 * just overwrite the last backup if we're at the same generation
1779 * this happens only at umount
1780 */
1781 root_backup = info->super_for_commit->super_roots + last_backup;
1782 if (btrfs_backup_tree_root_gen(root_backup) ==
1783 btrfs_header_generation(info->tree_root->node))
1784 next_backup = last_backup;
1785
1786 root_backup = info->super_for_commit->super_roots + next_backup;
1787
1788 /*
1789 * make sure all of our padding and empty slots get zero filled
1790 * regardless of which ones we use today
1791 */
1792 memset(root_backup, 0, sizeof(*root_backup));
1793
1794 info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS;
1795
1796 btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start);
1797 btrfs_set_backup_tree_root_gen(root_backup,
1798 btrfs_header_generation(info->tree_root->node));
1799
1800 btrfs_set_backup_tree_root_level(root_backup,
1801 btrfs_header_level(info->tree_root->node));
1802
1803 btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start);
1804 btrfs_set_backup_chunk_root_gen(root_backup,
1805 btrfs_header_generation(info->chunk_root->node));
1806 btrfs_set_backup_chunk_root_level(root_backup,
1807 btrfs_header_level(info->chunk_root->node));
1808
1809 btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start);
1810 btrfs_set_backup_extent_root_gen(root_backup,
1811 btrfs_header_generation(info->extent_root->node));
1812 btrfs_set_backup_extent_root_level(root_backup,
1813 btrfs_header_level(info->extent_root->node));
1814
Chris Mason7c7e82a2011-11-06 18:50:56 -05001815 /*
1816 * we might commit during log recovery, which happens before we set
1817 * the fs_root. Make sure it is valid before we fill it in.
1818 */
1819 if (info->fs_root && info->fs_root->node) {
1820 btrfs_set_backup_fs_root(root_backup,
1821 info->fs_root->node->start);
1822 btrfs_set_backup_fs_root_gen(root_backup,
Chris Masonaf31f5e2011-11-03 15:17:42 -04001823 btrfs_header_generation(info->fs_root->node));
Chris Mason7c7e82a2011-11-06 18:50:56 -05001824 btrfs_set_backup_fs_root_level(root_backup,
Chris Masonaf31f5e2011-11-03 15:17:42 -04001825 btrfs_header_level(info->fs_root->node));
Chris Mason7c7e82a2011-11-06 18:50:56 -05001826 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04001827
1828 btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start);
1829 btrfs_set_backup_dev_root_gen(root_backup,
1830 btrfs_header_generation(info->dev_root->node));
1831 btrfs_set_backup_dev_root_level(root_backup,
1832 btrfs_header_level(info->dev_root->node));
1833
1834 btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start);
1835 btrfs_set_backup_csum_root_gen(root_backup,
1836 btrfs_header_generation(info->csum_root->node));
1837 btrfs_set_backup_csum_root_level(root_backup,
1838 btrfs_header_level(info->csum_root->node));
1839
1840 btrfs_set_backup_total_bytes(root_backup,
1841 btrfs_super_total_bytes(info->super_copy));
1842 btrfs_set_backup_bytes_used(root_backup,
1843 btrfs_super_bytes_used(info->super_copy));
1844 btrfs_set_backup_num_devices(root_backup,
1845 btrfs_super_num_devices(info->super_copy));
1846
1847 /*
1848 * if we don't copy this out to the super_copy, it won't get remembered
1849 * for the next commit
1850 */
1851 memcpy(&info->super_copy->super_roots,
1852 &info->super_for_commit->super_roots,
1853 sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS);
1854}
1855
1856/*
1857 * this copies info out of the root backup array and back into
1858 * the in-memory super block. It is meant to help iterate through
1859 * the array, so you send it the number of backups you've already
1860 * tried and the last backup index you used.
1861 *
1862 * this returns -1 when it has tried all the backups
1863 */
1864static noinline int next_root_backup(struct btrfs_fs_info *info,
1865 struct btrfs_super_block *super,
1866 int *num_backups_tried, int *backup_index)
1867{
1868 struct btrfs_root_backup *root_backup;
1869 int newest = *backup_index;
1870
1871 if (*num_backups_tried == 0) {
1872 u64 gen = btrfs_super_generation(super);
1873
1874 newest = find_newest_super_backup(info, gen);
1875 if (newest == -1)
1876 return -1;
1877
1878 *backup_index = newest;
1879 *num_backups_tried = 1;
1880 } else if (*num_backups_tried == BTRFS_NUM_BACKUP_ROOTS) {
1881 /* we've tried all the backups, all done */
1882 return -1;
1883 } else {
1884 /* jump to the next oldest backup */
1885 newest = (*backup_index + BTRFS_NUM_BACKUP_ROOTS - 1) %
1886 BTRFS_NUM_BACKUP_ROOTS;
1887 *backup_index = newest;
1888 *num_backups_tried += 1;
1889 }
1890 root_backup = super->super_roots + newest;
1891
1892 btrfs_set_super_generation(super,
1893 btrfs_backup_tree_root_gen(root_backup));
1894 btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup));
1895 btrfs_set_super_root_level(super,
1896 btrfs_backup_tree_root_level(root_backup));
1897 btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup));
1898
1899 /*
1900 * fixme: the total bytes and num_devices need to match or we should
1901 * need a fsck
1902 */
1903 btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup));
1904 btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup));
1905 return 0;
1906}
1907
1908/* helper to cleanup tree roots */
1909static void free_root_pointers(struct btrfs_fs_info *info, int chunk_root)
1910{
1911 free_extent_buffer(info->tree_root->node);
1912 free_extent_buffer(info->tree_root->commit_root);
1913 free_extent_buffer(info->dev_root->node);
1914 free_extent_buffer(info->dev_root->commit_root);
1915 free_extent_buffer(info->extent_root->node);
1916 free_extent_buffer(info->extent_root->commit_root);
1917 free_extent_buffer(info->csum_root->node);
1918 free_extent_buffer(info->csum_root->commit_root);
Arne Jansenbcef60f2011-09-13 15:23:30 +02001919 if (info->quota_root) {
1920 free_extent_buffer(info->quota_root->node);
1921 free_extent_buffer(info->quota_root->commit_root);
1922 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04001923
1924 info->tree_root->node = NULL;
1925 info->tree_root->commit_root = NULL;
1926 info->dev_root->node = NULL;
1927 info->dev_root->commit_root = NULL;
1928 info->extent_root->node = NULL;
1929 info->extent_root->commit_root = NULL;
1930 info->csum_root->node = NULL;
1931 info->csum_root->commit_root = NULL;
Arne Jansenbcef60f2011-09-13 15:23:30 +02001932 if (info->quota_root) {
1933 info->quota_root->node = NULL;
1934 info->quota_root->commit_root = NULL;
1935 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04001936
1937 if (chunk_root) {
1938 free_extent_buffer(info->chunk_root->node);
1939 free_extent_buffer(info->chunk_root->commit_root);
1940 info->chunk_root->node = NULL;
1941 info->chunk_root->commit_root = NULL;
1942 }
1943}
1944
1945
Al Viroad2b2c82011-11-17 01:10:02 -05001946int open_ctree(struct super_block *sb,
1947 struct btrfs_fs_devices *fs_devices,
1948 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001949{
Chris Masondb945352007-10-15 16:15:53 -04001950 u32 sectorsize;
1951 u32 nodesize;
1952 u32 leafsize;
1953 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001954 u32 stripesize;
Yan Zheng84234f32008-10-29 14:49:05 -04001955 u64 generation;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001956 u64 features;
Chris Mason3de45862008-11-17 21:02:50 -05001957 struct btrfs_key location;
Chris Masona061fc82008-05-07 11:43:44 -04001958 struct buffer_head *bh;
Ilya Dryomov4d34b272011-11-09 00:08:15 +02001959 struct btrfs_super_block *disk_super;
Al Viro815745c2011-11-17 15:40:49 -05001960 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Al Virof84a8bd2011-11-17 15:57:57 -05001961 struct btrfs_root *tree_root;
Ilya Dryomov4d34b272011-11-09 00:08:15 +02001962 struct btrfs_root *extent_root;
1963 struct btrfs_root *csum_root;
1964 struct btrfs_root *chunk_root;
1965 struct btrfs_root *dev_root;
Arne Jansenbcef60f2011-09-13 15:23:30 +02001966 struct btrfs_root *quota_root;
Chris Masone02119d2008-09-05 16:13:11 -04001967 struct btrfs_root *log_tree_root;
Chris Masoneb60cea2007-02-02 09:18:22 -05001968 int ret;
Yane58ca022008-04-01 11:21:34 -04001969 int err = -EINVAL;
Chris Masonaf31f5e2011-11-03 15:17:42 -04001970 int num_backups_tried = 0;
1971 int backup_index = 0;
Chris Mason4543df72008-06-11 21:47:56 -04001972
Al Virof84a8bd2011-11-17 15:57:57 -05001973 tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info);
Al Viro6f07e422011-11-17 00:46:16 -05001974 extent_root = fs_info->extent_root = btrfs_alloc_root(fs_info);
1975 csum_root = fs_info->csum_root = btrfs_alloc_root(fs_info);
1976 chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info);
1977 dev_root = fs_info->dev_root = btrfs_alloc_root(fs_info);
Arne Jansenbcef60f2011-09-13 15:23:30 +02001978 quota_root = fs_info->quota_root = btrfs_alloc_root(fs_info);
Chris Mason8790d502008-04-03 16:29:03 -04001979
Al Virof84a8bd2011-11-17 15:57:57 -05001980 if (!tree_root || !extent_root || !csum_root ||
Arne Jansenbcef60f2011-09-13 15:23:30 +02001981 !chunk_root || !dev_root || !quota_root) {
Chris Mason39279cc2007-06-12 06:35:45 -04001982 err = -ENOMEM;
1983 goto fail;
1984 }
Yan, Zheng76dda932009-09-21 16:00:26 -04001985
1986 ret = init_srcu_struct(&fs_info->subvol_srcu);
1987 if (ret) {
1988 err = ret;
1989 goto fail;
1990 }
1991
1992 ret = setup_bdi(fs_info, &fs_info->bdi);
1993 if (ret) {
1994 err = ret;
1995 goto fail_srcu;
1996 }
1997
1998 fs_info->btree_inode = new_inode(sb);
1999 if (!fs_info->btree_inode) {
2000 err = -ENOMEM;
2001 goto fail_bdi;
2002 }
2003
Chris Masona6591712011-07-19 12:04:14 -04002004 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Miao Xie1561ded2011-03-27 16:07:36 +08002005
Yan, Zheng76dda932009-09-21 16:00:26 -04002006 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
Chris Mason8fd17792007-04-19 21:01:03 -04002007 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04002008 INIT_LIST_HEAD(&fs_info->dead_roots);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002009 INIT_LIST_HEAD(&fs_info->delayed_iputs);
Chris Masonea8c2812008-08-04 23:17:27 -04002010 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04002011 INIT_LIST_HEAD(&fs_info->ordered_operations);
Yan Zheng11833d62009-09-11 16:11:19 -04002012 INIT_LIST_HEAD(&fs_info->caching_block_groups);
Chris Mason1832a6d2007-12-21 16:27:21 -05002013 spin_lock_init(&fs_info->delalloc_lock);
Josef Bacika4abeea2011-04-11 17:25:13 -04002014 spin_lock_init(&fs_info->trans_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04002015 spin_lock_init(&fs_info->fs_roots_radix_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002016 spin_lock_init(&fs_info->delayed_iput_lock);
Chris Mason4cb53002011-05-24 15:35:30 -04002017 spin_lock_init(&fs_info->defrag_inodes_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04002018 spin_lock_init(&fs_info->free_chunk_lock);
Jan Schmidtf29021b2012-05-16 17:55:38 +02002019 spin_lock_init(&fs_info->tree_mod_seq_lock);
2020 rwlock_init(&fs_info->tree_mod_log_lock);
Chris Mason75857172011-06-13 20:00:16 -04002021 mutex_init(&fs_info->reloc_mutex);
Chris Mason19c00dd2007-10-15 16:19:22 -04002022
Josef Bacik58176a92007-08-29 15:47:34 -04002023 init_completion(&fs_info->kobj_unregister);
Chris Mason0b86a832008-03-24 15:01:56 -04002024 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04002025 INIT_LIST_HEAD(&fs_info->space_info);
Jan Schmidtf29021b2012-05-16 17:55:38 +02002026 INIT_LIST_HEAD(&fs_info->tree_mod_seq_list);
Chris Mason0b86a832008-03-24 15:01:56 -04002027 btrfs_mapping_init(&fs_info->mapping_tree);
Miao Xie66d8f3d2012-09-06 04:02:28 -06002028 btrfs_init_block_rsv(&fs_info->global_block_rsv,
2029 BTRFS_BLOCK_RSV_GLOBAL);
2030 btrfs_init_block_rsv(&fs_info->delalloc_block_rsv,
2031 BTRFS_BLOCK_RSV_DELALLOC);
2032 btrfs_init_block_rsv(&fs_info->trans_block_rsv, BTRFS_BLOCK_RSV_TRANS);
2033 btrfs_init_block_rsv(&fs_info->chunk_block_rsv, BTRFS_BLOCK_RSV_CHUNK);
2034 btrfs_init_block_rsv(&fs_info->empty_block_rsv, BTRFS_BLOCK_RSV_EMPTY);
2035 btrfs_init_block_rsv(&fs_info->delayed_block_rsv,
2036 BTRFS_BLOCK_RSV_DELOPS);
Chris Masoncb03c742008-05-15 16:15:45 -04002037 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason771ed682008-11-06 22:02:51 -05002038 atomic_set(&fs_info->async_delalloc_pages, 0);
Chris Mason8c8bee12008-09-29 11:19:10 -04002039 atomic_set(&fs_info->async_submit_draining, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04002040 atomic_set(&fs_info->nr_async_bios, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002041 atomic_set(&fs_info->defrag_running, 0);
Jan Schmidtf29021b2012-05-16 17:55:38 +02002042 atomic_set(&fs_info->tree_mod_seq, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04002043 fs_info->sb = sb;
Chris Mason6f568d32008-01-29 16:03:38 -05002044 fs_info->max_inline = 8192 * 1024;
Josef Bacik9ed74f22009-09-11 16:12:44 -04002045 fs_info->metadata_ratio = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04002046 fs_info->defrag_inodes = RB_ROOT;
Josef Bacika4abeea2011-04-11 17:25:13 -04002047 fs_info->trans_no_join = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04002048 fs_info->free_chunk_space = 0;
Jan Schmidtf29021b2012-05-16 17:55:38 +02002049 fs_info->tree_mod_log = RB_ROOT;
Chris Masonc8b97812008-10-29 14:49:59 -04002050
Arne Jansen90519d62011-05-23 14:30:00 +02002051 /* readahead state */
2052 INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_WAIT);
2053 spin_lock_init(&fs_info->reada_lock);
Chris Mason2c90e5d2007-04-02 10:50:19 -04002054
Chris Masonb34b0862008-12-19 15:43:22 -05002055 fs_info->thread_pool_size = min_t(unsigned long,
2056 num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04002057
Chris Mason3eaa2882008-07-24 11:57:52 -04002058 INIT_LIST_HEAD(&fs_info->ordered_extents);
2059 spin_lock_init(&fs_info->ordered_extent_lock);
Miao Xie16cdcec2011-04-22 18:12:22 +08002060 fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root),
2061 GFP_NOFS);
2062 if (!fs_info->delayed_root) {
2063 err = -ENOMEM;
2064 goto fail_iput;
2065 }
2066 btrfs_init_delayed_root(fs_info->delayed_root);
Chris Mason3eaa2882008-07-24 11:57:52 -04002067
Arne Jansena2de7332011-03-08 14:14:00 +01002068 mutex_init(&fs_info->scrub_lock);
2069 atomic_set(&fs_info->scrubs_running, 0);
2070 atomic_set(&fs_info->scrub_pause_req, 0);
2071 atomic_set(&fs_info->scrubs_paused, 0);
2072 atomic_set(&fs_info->scrub_cancel_req, 0);
2073 init_waitqueue_head(&fs_info->scrub_pause_wait);
2074 init_rwsem(&fs_info->scrub_super_lock);
2075 fs_info->scrub_workers_refcnt = 0;
Stefan Behrens21adbd52011-11-09 13:44:05 +01002076#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2077 fs_info->check_integrity_print_mask = 0;
2078#endif
Arne Jansena2de7332011-03-08 14:14:00 +01002079
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002080 spin_lock_init(&fs_info->balance_lock);
2081 mutex_init(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002082 atomic_set(&fs_info->balance_running, 0);
2083 atomic_set(&fs_info->balance_pause_req, 0);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002084 atomic_set(&fs_info->balance_cancel_req, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002085 fs_info->balance_ctl = NULL;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002086 init_waitqueue_head(&fs_info->balance_wait_q);
Chris Masona061fc82008-05-07 11:43:44 -04002087
Chris Mason0afbaf82008-04-18 14:17:20 -04002088 sb->s_blocksize = 4096;
2089 sb->s_blocksize_bits = blksize_bits(4096);
Jens Axboe32a88aa2009-09-16 15:02:33 +02002090 sb->s_bdi = &fs_info->bdi;
Chris Mason0afbaf82008-04-18 14:17:20 -04002091
Yan, Zheng76dda932009-09-21 16:00:26 -04002092 fs_info->btree_inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
Miklos Szeredibfe86842011-10-28 14:13:29 +02002093 set_nlink(fs_info->btree_inode, 1);
Chris Mason0afbaf82008-04-18 14:17:20 -04002094 /*
2095 * we set the i_size on the btree inode to the max possible int.
2096 * the real end of the address space is determined by all of
2097 * the devices in the system
2098 */
2099 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04002100 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04002101 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
2102
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002103 RB_CLEAR_NODE(&BTRFS_I(fs_info->btree_inode)->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -05002104 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
David Sterbaf993c882011-04-20 23:35:57 +02002105 fs_info->btree_inode->i_mapping);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04002106 BTRFS_I(fs_info->btree_inode)->io_tree.track_uptodate = 0;
David Sterbaa8067e02011-04-21 00:34:43 +02002107 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree);
Chris Mason0da54682007-11-07 21:08:01 -05002108
Chris Masond1310b22008-01-24 16:13:08 -05002109 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
2110
Chris Mason0f7d52f2007-04-09 10:42:37 -04002111 BTRFS_I(fs_info->btree_inode)->root = tree_root;
2112 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
2113 sizeof(struct btrfs_key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04002114 set_bit(BTRFS_INODE_DUMMY,
2115 &BTRFS_I(fs_info->btree_inode)->runtime_flags);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002116 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002117
Chris Masone02119d2008-09-05 16:13:11 -04002118 spin_lock_init(&fs_info->block_group_cache_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002119 fs_info->block_group_cache_tree = RB_ROOT;
Chris Mason925baed2008-06-25 16:01:30 -04002120
Yan Zheng11833d62009-09-11 16:11:19 -04002121 extent_io_tree_init(&fs_info->freed_extents[0],
David Sterbaf993c882011-04-20 23:35:57 +02002122 fs_info->btree_inode->i_mapping);
Yan Zheng11833d62009-09-11 16:11:19 -04002123 extent_io_tree_init(&fs_info->freed_extents[1],
David Sterbaf993c882011-04-20 23:35:57 +02002124 fs_info->btree_inode->i_mapping);
Yan Zheng11833d62009-09-11 16:11:19 -04002125 fs_info->pinned_extents = &fs_info->freed_extents[0];
Chris Masone6dcd2d2008-07-17 12:53:50 -04002126 fs_info->do_barriers = 1;
Chris Masonf9295742008-07-17 12:54:14 -04002127
Chris Masond98237b2007-03-28 13:57:48 -04002128
Chris Mason5a3f23d2009-03-31 13:27:11 -04002129 mutex_init(&fs_info->ordered_operations_mutex);
Chris Mason30ae8462007-03-29 09:59:15 -04002130 mutex_init(&fs_info->tree_log_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002131 mutex_init(&fs_info->chunk_mutex);
2132 mutex_init(&fs_info->transaction_kthread_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04002133 mutex_init(&fs_info->cleaner_mutex);
2134 mutex_init(&fs_info->volume_mutex);
Yan Zheng276e6802009-07-30 09:40:40 -04002135 init_rwsem(&fs_info->extent_commit_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00002136 init_rwsem(&fs_info->cleanup_work_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002137 init_rwsem(&fs_info->subvol_sem);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002138
Arne Jansen416ac512011-09-13 12:56:09 +02002139 spin_lock_init(&fs_info->qgroup_lock);
2140 fs_info->qgroup_tree = RB_ROOT;
2141 INIT_LIST_HEAD(&fs_info->dirty_qgroups);
2142 fs_info->qgroup_seq = 1;
2143 fs_info->quota_enabled = 0;
2144 fs_info->pending_quota_state = 0;
2145
Chris Masonfa9c0d792009-04-03 09:47:43 -04002146 btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
2147 btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
2148
Chris Mason7d9eb122008-07-08 14:19:17 -04002149 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Mason3768f362007-03-13 16:47:54 -04002150 init_waitqueue_head(&fs_info->transaction_wait);
Sage Weilbb9c12c2010-10-29 15:37:34 -04002151 init_waitqueue_head(&fs_info->transaction_blocked_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04002152 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Mason9a8dd152007-02-23 08:38:36 -05002153
Chris Mason0b86a832008-03-24 15:01:56 -04002154 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04002155 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04002156
Chris Mason3c4bb262012-03-27 18:56:56 -04002157 invalidate_bdev(fs_devices->latest_bdev);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002158 bh = btrfs_read_dev_super(fs_devices->latest_bdev);
Dave Young20b45072011-01-08 10:09:13 +00002159 if (!bh) {
2160 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002161 goto fail_alloc;
Dave Young20b45072011-01-08 10:09:13 +00002162 }
Chris Mason39279cc2007-06-12 06:35:45 -04002163
David Sterba6c417612011-04-13 15:41:04 +02002164 memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy));
2165 memcpy(fs_info->super_for_commit, fs_info->super_copy,
2166 sizeof(*fs_info->super_for_commit));
Chris Masona061fc82008-05-07 11:43:44 -04002167 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04002168
David Sterba6c417612011-04-13 15:41:04 +02002169 memcpy(fs_info->fsid, fs_info->super_copy->fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04002170
David Sterba6c417612011-04-13 15:41:04 +02002171 disk_super = fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04002172 if (!btrfs_super_root(disk_super))
Miao Xie16cdcec2011-04-22 18:12:22 +08002173 goto fail_alloc;
Chris Mason0f7d52f2007-04-09 10:42:37 -04002174
liuboacce9522011-01-06 19:30:25 +08002175 /* check FS state, whether FS is broken. */
2176 fs_info->fs_state |= btrfs_super_flags(disk_super);
2177
David Sterbafcd1f0652012-03-06 00:06:18 +01002178 ret = btrfs_check_super_valid(fs_info, sb->s_flags & MS_RDONLY);
2179 if (ret) {
2180 printk(KERN_ERR "btrfs: superblock contains fatal errors\n");
2181 err = ret;
2182 goto fail_alloc;
2183 }
liuboacce9522011-01-06 19:30:25 +08002184
Liu Bo75e7cb72011-03-22 10:12:20 +00002185 /*
Chris Masonaf31f5e2011-11-03 15:17:42 -04002186 * run through our array of backup supers and setup
2187 * our ring pointer to the oldest one
2188 */
2189 generation = btrfs_super_generation(disk_super);
2190 find_oldest_super_backup(fs_info, generation);
2191
2192 /*
Liu Bo75e7cb72011-03-22 10:12:20 +00002193 * In the long term, we'll store the compression type in the super
2194 * block, and it'll be used for per file compression control.
2195 */
2196 fs_info->compress_type = BTRFS_COMPRESS_ZLIB;
2197
Yan Zheng2b820322008-11-17 21:11:30 -05002198 ret = btrfs_parse_options(tree_root, options);
2199 if (ret) {
2200 err = ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08002201 goto fail_alloc;
Yan Zheng2b820322008-11-17 21:11:30 -05002202 }
Chris Masondfe25022008-05-13 13:46:40 -04002203
Josef Bacikf2b636e2008-12-02 06:36:08 -05002204 features = btrfs_super_incompat_flags(disk_super) &
2205 ~BTRFS_FEATURE_INCOMPAT_SUPP;
2206 if (features) {
2207 printk(KERN_ERR "BTRFS: couldn't mount because of "
2208 "unsupported optional features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07002209 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05002210 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002211 goto fail_alloc;
Josef Bacikf2b636e2008-12-02 06:36:08 -05002212 }
2213
Chris Mason727011e2010-08-06 13:21:20 -04002214 if (btrfs_super_leafsize(disk_super) !=
2215 btrfs_super_nodesize(disk_super)) {
2216 printk(KERN_ERR "BTRFS: couldn't mount because metadata "
2217 "blocksizes don't match. node %d leaf %d\n",
2218 btrfs_super_nodesize(disk_super),
2219 btrfs_super_leafsize(disk_super));
2220 err = -EINVAL;
2221 goto fail_alloc;
2222 }
2223 if (btrfs_super_leafsize(disk_super) > BTRFS_MAX_METADATA_BLOCKSIZE) {
2224 printk(KERN_ERR "BTRFS: couldn't mount because metadata "
2225 "blocksize (%d) was too large\n",
2226 btrfs_super_leafsize(disk_super));
2227 err = -EINVAL;
2228 goto fail_alloc;
2229 }
2230
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002231 features = btrfs_super_incompat_flags(disk_super);
Li Zefana6fa6fa2010-10-25 15:12:26 +08002232 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
Li Zefan69e380d2012-06-11 17:10:51 +08002233 if (tree_root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
Li Zefana6fa6fa2010-10-25 15:12:26 +08002234 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
Chris Mason727011e2010-08-06 13:21:20 -04002235
2236 /*
2237 * flag our filesystem as having big metadata blocks if
2238 * they are bigger than the page size
2239 */
2240 if (btrfs_super_leafsize(disk_super) > PAGE_CACHE_SIZE) {
2241 if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA))
2242 printk(KERN_INFO "btrfs flagging fs with big metadata feature\n");
2243 features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA;
2244 }
2245
Chris Masonbc3f1162012-03-29 17:02:47 -04002246 nodesize = btrfs_super_nodesize(disk_super);
2247 leafsize = btrfs_super_leafsize(disk_super);
2248 sectorsize = btrfs_super_sectorsize(disk_super);
2249 stripesize = btrfs_super_stripesize(disk_super);
2250
2251 /*
2252 * mixed block groups end up with duplicate but slightly offset
2253 * extent buffers for the same range. It leads to corruptions
2254 */
2255 if ((features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) &&
2256 (sectorsize != leafsize)) {
2257 printk(KERN_WARNING "btrfs: unequal leaf/node/sector sizes "
2258 "are not allowed for mixed block groups on %s\n",
2259 sb->s_id);
2260 goto fail_alloc;
2261 }
2262
Li Zefana6fa6fa2010-10-25 15:12:26 +08002263 btrfs_set_super_incompat_flags(disk_super, features);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002264
Josef Bacikf2b636e2008-12-02 06:36:08 -05002265 features = btrfs_super_compat_ro_flags(disk_super) &
2266 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
2267 if (!(sb->s_flags & MS_RDONLY) && features) {
2268 printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
2269 "unsupported option features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07002270 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05002271 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002272 goto fail_alloc;
Josef Bacikf2b636e2008-12-02 06:36:08 -05002273 }
Chris Mason61d92c32009-10-02 19:11:56 -04002274
2275 btrfs_init_workers(&fs_info->generic_worker,
2276 "genwork", 1, NULL);
2277
Chris Mason5443be42008-08-15 15:34:16 -04002278 btrfs_init_workers(&fs_info->workers, "worker",
Chris Mason61d92c32009-10-02 19:11:56 -04002279 fs_info->thread_pool_size,
2280 &fs_info->generic_worker);
Chris Masonc8b97812008-10-29 14:49:59 -04002281
Chris Mason771ed682008-11-06 22:02:51 -05002282 btrfs_init_workers(&fs_info->delalloc_workers, "delalloc",
Chris Mason61d92c32009-10-02 19:11:56 -04002283 fs_info->thread_pool_size,
2284 &fs_info->generic_worker);
Chris Mason771ed682008-11-06 22:02:51 -05002285
Chris Mason5443be42008-08-15 15:34:16 -04002286 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04002287 min_t(u64, fs_devices->num_devices,
Chris Mason61d92c32009-10-02 19:11:56 -04002288 fs_info->thread_pool_size),
2289 &fs_info->generic_worker);
Chris Mason61b49442008-07-31 15:42:53 -04002290
Josef Bacikbab39bf2011-06-30 14:42:28 -04002291 btrfs_init_workers(&fs_info->caching_workers, "cache",
2292 2, &fs_info->generic_worker);
2293
Chris Mason61b49442008-07-31 15:42:53 -04002294 /* a higher idle thresh on the submit workers makes it much more
2295 * likely that bios will be send down in a sane order to the
2296 * devices
2297 */
2298 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04002299
Chris Mason771ed682008-11-06 22:02:51 -05002300 fs_info->workers.idle_thresh = 16;
Chris Mason4a69a412008-11-06 22:03:00 -05002301 fs_info->workers.ordered = 1;
Chris Mason61b49442008-07-31 15:42:53 -04002302
Chris Mason771ed682008-11-06 22:02:51 -05002303 fs_info->delalloc_workers.idle_thresh = 2;
2304 fs_info->delalloc_workers.ordered = 1;
2305
Chris Mason61d92c32009-10-02 19:11:56 -04002306 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1,
2307 &fs_info->generic_worker);
Chris Mason5443be42008-08-15 15:34:16 -04002308 btrfs_init_workers(&fs_info->endio_workers, "endio",
Chris Mason61d92c32009-10-02 19:11:56 -04002309 fs_info->thread_pool_size,
2310 &fs_info->generic_worker);
Chris Masond20f7042008-12-08 16:58:54 -05002311 btrfs_init_workers(&fs_info->endio_meta_workers, "endio-meta",
Chris Mason61d92c32009-10-02 19:11:56 -04002312 fs_info->thread_pool_size,
2313 &fs_info->generic_worker);
Chris Masoncad321a2008-12-17 14:51:42 -05002314 btrfs_init_workers(&fs_info->endio_meta_write_workers,
Chris Mason61d92c32009-10-02 19:11:56 -04002315 "endio-meta-write", fs_info->thread_pool_size,
2316 &fs_info->generic_worker);
Chris Mason5443be42008-08-15 15:34:16 -04002317 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Mason61d92c32009-10-02 19:11:56 -04002318 fs_info->thread_pool_size,
2319 &fs_info->generic_worker);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002320 btrfs_init_workers(&fs_info->endio_freespace_worker, "freespace-write",
2321 1, &fs_info->generic_worker);
Miao Xie16cdcec2011-04-22 18:12:22 +08002322 btrfs_init_workers(&fs_info->delayed_workers, "delayed-meta",
2323 fs_info->thread_pool_size,
2324 &fs_info->generic_worker);
Arne Jansen90519d62011-05-23 14:30:00 +02002325 btrfs_init_workers(&fs_info->readahead_workers, "readahead",
2326 fs_info->thread_pool_size,
2327 &fs_info->generic_worker);
Chris Mason61b49442008-07-31 15:42:53 -04002328
2329 /*
2330 * endios are largely parallel and should have a very
2331 * low idle thresh
2332 */
2333 fs_info->endio_workers.idle_thresh = 4;
Chris Masonb51912c2009-02-04 09:23:24 -05002334 fs_info->endio_meta_workers.idle_thresh = 4;
2335
Chris Mason90428462009-08-04 16:56:34 -04002336 fs_info->endio_write_workers.idle_thresh = 2;
2337 fs_info->endio_meta_write_workers.idle_thresh = 2;
Arne Jansen90519d62011-05-23 14:30:00 +02002338 fs_info->readahead_workers.idle_thresh = 2;
Chris Mason90428462009-08-04 16:56:34 -04002339
Josef Bacik0dc3b842011-11-18 14:37:27 -05002340 /*
2341 * btrfs_start_workers can really only fail because of ENOMEM so just
2342 * return -ENOMEM if any of these fail.
2343 */
2344 ret = btrfs_start_workers(&fs_info->workers);
2345 ret |= btrfs_start_workers(&fs_info->generic_worker);
2346 ret |= btrfs_start_workers(&fs_info->submit_workers);
2347 ret |= btrfs_start_workers(&fs_info->delalloc_workers);
2348 ret |= btrfs_start_workers(&fs_info->fixup_workers);
2349 ret |= btrfs_start_workers(&fs_info->endio_workers);
2350 ret |= btrfs_start_workers(&fs_info->endio_meta_workers);
2351 ret |= btrfs_start_workers(&fs_info->endio_meta_write_workers);
2352 ret |= btrfs_start_workers(&fs_info->endio_write_workers);
2353 ret |= btrfs_start_workers(&fs_info->endio_freespace_worker);
2354 ret |= btrfs_start_workers(&fs_info->delayed_workers);
2355 ret |= btrfs_start_workers(&fs_info->caching_workers);
2356 ret |= btrfs_start_workers(&fs_info->readahead_workers);
2357 if (ret) {
Ilya Dryomovfed425c2012-06-22 12:13:01 -06002358 err = -ENOMEM;
Josef Bacik0dc3b842011-11-18 14:37:27 -05002359 goto fail_sb_buffer;
2360 }
Chris Mason4543df72008-06-11 21:47:56 -04002361
Chris Mason4575c9c2008-04-18 16:13:31 -04002362 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
Chris Masonc8b97812008-10-29 14:49:59 -04002363 fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
2364 4 * 1024 * 1024 / PAGE_CACHE_SIZE);
Chris Mason4575c9c2008-04-18 16:13:31 -04002365
Chris Masondb945352007-10-15 16:15:53 -04002366 tree_root->nodesize = nodesize;
2367 tree_root->leafsize = leafsize;
2368 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05002369 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04002370
2371 sb->s_blocksize = sectorsize;
2372 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04002373
Chris Mason39279cc2007-06-12 06:35:45 -04002374 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
2375 sizeof(disk_super->magic))) {
Chris Masond3977122009-01-05 21:25:51 -05002376 printk(KERN_INFO "btrfs: valid FS not found on %s\n", sb->s_id);
Chris Mason39279cc2007-06-12 06:35:45 -04002377 goto fail_sb_buffer;
2378 }
Chris Mason19c00dd2007-10-15 16:19:22 -04002379
Liu Bo8d082fb2012-04-03 09:56:53 +08002380 if (sectorsize != PAGE_SIZE) {
2381 printk(KERN_WARNING "btrfs: Incompatible sector size(%lu) "
2382 "found on %s\n", (unsigned long)sectorsize, sb->s_id);
Keith Mannthey941b2dd2011-11-29 17:44:12 -08002383 goto fail_sb_buffer;
2384 }
2385
Chris Mason925baed2008-06-25 16:01:30 -04002386 mutex_lock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002387 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04002388 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04002389 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002390 printk(KERN_WARNING "btrfs: failed to read the system "
2391 "array on %s\n", sb->s_id);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002392 goto fail_sb_buffer;
Chris Mason84eed902008-04-25 09:04:37 -04002393 }
Chris Mason0b86a832008-03-24 15:01:56 -04002394
2395 blocksize = btrfs_level_size(tree_root,
2396 btrfs_super_chunk_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04002397 generation = btrfs_super_chunk_root_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04002398
2399 __setup_root(nodesize, leafsize, sectorsize, stripesize,
2400 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
2401
2402 chunk_root->node = read_tree_block(chunk_root,
2403 btrfs_super_chunk_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04002404 blocksize, generation);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002405 BUG_ON(!chunk_root->node); /* -ENOMEM */
David Woodhouse83121942009-07-22 16:52:13 -04002406 if (!test_bit(EXTENT_BUFFER_UPTODATE, &chunk_root->node->bflags)) {
2407 printk(KERN_WARNING "btrfs: failed to read chunk root on %s\n",
2408 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002409 goto fail_tree_roots;
David Woodhouse83121942009-07-22 16:52:13 -04002410 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002411 btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
2412 chunk_root->commit_root = btrfs_root_node(chunk_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002413
Chris Masone17cade2008-04-15 15:41:47 -04002414 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
Chris Masond3977122009-01-05 21:25:51 -05002415 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
2416 BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002417
Chris Mason0b86a832008-03-24 15:01:56 -04002418 ret = btrfs_read_chunk_tree(chunk_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002419 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002420 printk(KERN_WARNING "btrfs: failed to read chunk tree on %s\n",
2421 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002422 goto fail_tree_roots;
Yan Zheng2b820322008-11-17 21:11:30 -05002423 }
Chris Mason0b86a832008-03-24 15:01:56 -04002424
Chris Masondfe25022008-05-13 13:46:40 -04002425 btrfs_close_extra_devices(fs_devices);
2426
Chris Masona6b0d5c2012-02-20 20:53:43 -05002427 if (!fs_devices->latest_bdev) {
2428 printk(KERN_CRIT "btrfs: failed to read devices on %s\n",
2429 sb->s_id);
2430 goto fail_tree_roots;
2431 }
2432
Chris Masonaf31f5e2011-11-03 15:17:42 -04002433retry_root_backup:
Chris Masondb945352007-10-15 16:15:53 -04002434 blocksize = btrfs_level_size(tree_root,
2435 btrfs_super_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04002436 generation = btrfs_super_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04002437
Chris Masone20d96d2007-03-22 12:13:20 -04002438 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04002439 btrfs_super_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04002440 blocksize, generation);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002441 if (!tree_root->node ||
2442 !test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
David Woodhouse83121942009-07-22 16:52:13 -04002443 printk(KERN_WARNING "btrfs: failed to read tree root on %s\n",
2444 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002445
2446 goto recovery_tree_root;
David Woodhouse83121942009-07-22 16:52:13 -04002447 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04002448
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449 btrfs_set_root_node(&tree_root->root_item, tree_root->node);
2450 tree_root->commit_root = btrfs_root_node(tree_root);
Chris Masondb945352007-10-15 16:15:53 -04002451
2452 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04002453 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002454 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002455 goto recovery_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002456 extent_root->track_dirty = 1;
2457
2458 ret = find_and_setup_root(tree_root, fs_info,
2459 BTRFS_DEV_TREE_OBJECTID, dev_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002460 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002461 goto recovery_tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002462 dev_root->track_dirty = 1;
Chris Mason3768f362007-03-13 16:47:54 -04002463
Chris Masond20f7042008-12-08 16:58:54 -05002464 ret = find_and_setup_root(tree_root, fs_info,
2465 BTRFS_CSUM_TREE_OBJECTID, csum_root);
2466 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002467 goto recovery_tree_root;
Chris Masond20f7042008-12-08 16:58:54 -05002468 csum_root->track_dirty = 1;
2469
Arne Jansenbcef60f2011-09-13 15:23:30 +02002470 ret = find_and_setup_root(tree_root, fs_info,
2471 BTRFS_QUOTA_TREE_OBJECTID, quota_root);
2472 if (ret) {
2473 kfree(quota_root);
2474 quota_root = fs_info->quota_root = NULL;
2475 } else {
2476 quota_root->track_dirty = 1;
2477 fs_info->quota_enabled = 1;
2478 fs_info->pending_quota_state = 1;
2479 }
2480
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002481 fs_info->generation = generation;
2482 fs_info->last_trans_committed = generation;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002483
Ilya Dryomov68310a52012-06-22 12:24:12 -06002484 ret = btrfs_recover_balance(fs_info);
2485 if (ret) {
2486 printk(KERN_WARNING "btrfs: failed to recover balance\n");
2487 goto fail_block_groups;
2488 }
2489
Stefan Behrens733f4fb2012-05-25 16:06:10 +02002490 ret = btrfs_init_dev_stats(fs_info);
2491 if (ret) {
2492 printk(KERN_ERR "btrfs: failed to init dev_stats: %d\n",
2493 ret);
2494 goto fail_block_groups;
2495 }
2496
liuboc59021f2011-03-07 02:13:14 +00002497 ret = btrfs_init_space_info(fs_info);
2498 if (ret) {
2499 printk(KERN_ERR "Failed to initial space info: %d\n", ret);
2500 goto fail_block_groups;
2501 }
2502
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002503 ret = btrfs_read_block_groups(extent_root);
2504 if (ret) {
2505 printk(KERN_ERR "Failed to read block groups: %d\n", ret);
2506 goto fail_block_groups;
2507 }
Chris Mason9078a3e2007-04-26 16:46:15 -04002508
Chris Masona74a4b92008-06-25 16:01:31 -04002509 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
2510 "btrfs-cleaner");
Qinghuang Feng57506d52009-01-21 10:49:16 -05002511 if (IS_ERR(fs_info->cleaner_kthread))
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002512 goto fail_block_groups;
Chris Masona74a4b92008-06-25 16:01:31 -04002513
2514 fs_info->transaction_kthread = kthread_run(transaction_kthread,
2515 tree_root,
2516 "btrfs-transaction");
Qinghuang Feng57506d52009-01-21 10:49:16 -05002517 if (IS_ERR(fs_info->transaction_kthread))
Chris Mason3f157a22008-06-25 16:01:31 -04002518 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04002519
Chris Masonc2898112009-06-10 09:51:32 -04002520 if (!btrfs_test_opt(tree_root, SSD) &&
2521 !btrfs_test_opt(tree_root, NOSSD) &&
2522 !fs_info->fs_devices->rotating) {
2523 printk(KERN_INFO "Btrfs detected SSD devices, enabling SSD "
2524 "mode\n");
2525 btrfs_set_opt(fs_info->mount_opt, SSD);
2526 }
2527
Stefan Behrens21adbd52011-11-09 13:44:05 +01002528#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2529 if (btrfs_test_opt(tree_root, CHECK_INTEGRITY)) {
2530 ret = btrfsic_mount(tree_root, fs_devices,
2531 btrfs_test_opt(tree_root,
2532 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ?
2533 1 : 0,
2534 fs_info->check_integrity_print_mask);
2535 if (ret)
2536 printk(KERN_WARNING "btrfs: failed to initialize"
2537 " integrity check module %s\n", sb->s_id);
2538 }
2539#endif
Arne Jansenbcef60f2011-09-13 15:23:30 +02002540 ret = btrfs_read_qgroup_config(fs_info);
2541 if (ret)
2542 goto fail_trans_kthread;
Stefan Behrens21adbd52011-11-09 13:44:05 +01002543
liuboacce9522011-01-06 19:30:25 +08002544 /* do not make disk changes in broken FS */
Stefan Behrens68ce9682012-08-01 05:45:52 -06002545 if (btrfs_super_log_root(disk_super) != 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002546 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04002547
Chris Mason7c2ca462008-11-19 15:13:35 -05002548 if (fs_devices->rw_devices == 0) {
Chris Masond3977122009-01-05 21:25:51 -05002549 printk(KERN_WARNING "Btrfs log replay required "
2550 "on RO media\n");
Chris Mason7c2ca462008-11-19 15:13:35 -05002551 err = -EIO;
Arne Jansenbcef60f2011-09-13 15:23:30 +02002552 goto fail_qgroup;
Chris Mason7c2ca462008-11-19 15:13:35 -05002553 }
Chris Masone02119d2008-09-05 16:13:11 -04002554 blocksize =
2555 btrfs_level_size(tree_root,
2556 btrfs_super_log_root_level(disk_super));
2557
Al Viro6f07e422011-11-17 00:46:16 -05002558 log_tree_root = btrfs_alloc_root(fs_info);
Dan Carpenter676e4c82010-05-29 09:43:07 +00002559 if (!log_tree_root) {
2560 err = -ENOMEM;
Arne Jansenbcef60f2011-09-13 15:23:30 +02002561 goto fail_qgroup;
Dan Carpenter676e4c82010-05-29 09:43:07 +00002562 }
Chris Masone02119d2008-09-05 16:13:11 -04002563
2564 __setup_root(nodesize, leafsize, sectorsize, stripesize,
2565 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
2566
2567 log_tree_root->node = read_tree_block(tree_root, bytenr,
Yan Zheng84234f32008-10-29 14:49:05 -04002568 blocksize,
2569 generation + 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002570 /* returns with log_tree_root freed on success */
Chris Masone02119d2008-09-05 16:13:11 -04002571 ret = btrfs_recover_log_trees(log_tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002572 if (ret) {
2573 btrfs_error(tree_root->fs_info, ret,
2574 "Failed to recover log tree");
2575 free_extent_buffer(log_tree_root->node);
2576 kfree(log_tree_root);
2577 goto fail_trans_kthread;
2578 }
Yan Zhenge556ce22008-11-20 10:25:19 -05002579
2580 if (sb->s_flags & MS_RDONLY) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002581 ret = btrfs_commit_super(tree_root);
2582 if (ret)
2583 goto fail_trans_kthread;
Yan Zhenge556ce22008-11-20 10:25:19 -05002584 }
Chris Masone02119d2008-09-05 16:13:11 -04002585 }
Zheng Yan1a40e232008-09-26 10:09:34 -04002586
Yan, Zheng76dda932009-09-21 16:00:26 -04002587 ret = btrfs_find_orphan_roots(tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002588 if (ret)
2589 goto fail_trans_kthread;
Yan, Zheng76dda932009-09-21 16:00:26 -04002590
Chris Mason7c2ca462008-11-19 15:13:35 -05002591 if (!(sb->s_flags & MS_RDONLY)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002592 ret = btrfs_cleanup_fs_roots(fs_info);
Ilya Dryomov44c44af2012-06-22 12:14:13 -06002593 if (ret)
2594 goto fail_trans_kthread;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002595
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002596 ret = btrfs_recover_relocation(tree_root);
Miao Xied7ce5842010-02-02 08:46:44 +00002597 if (ret < 0) {
2598 printk(KERN_WARNING
2599 "btrfs: failed to recover relocation\n");
2600 err = -EINVAL;
Arne Jansenbcef60f2011-09-13 15:23:30 +02002601 goto fail_qgroup;
Miao Xied7ce5842010-02-02 08:46:44 +00002602 }
Chris Mason7c2ca462008-11-19 15:13:35 -05002603 }
Zheng Yan1a40e232008-09-26 10:09:34 -04002604
Chris Mason3de45862008-11-17 21:02:50 -05002605 location.objectid = BTRFS_FS_TREE_OBJECTID;
2606 location.type = BTRFS_ROOT_ITEM_KEY;
2607 location.offset = (u64)-1;
2608
Chris Mason3de45862008-11-17 21:02:50 -05002609 fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
2610 if (!fs_info->fs_root)
Arne Jansenbcef60f2011-09-13 15:23:30 +02002611 goto fail_qgroup;
Dan Carpenter3140c9a2010-05-29 09:44:10 +00002612 if (IS_ERR(fs_info->fs_root)) {
2613 err = PTR_ERR(fs_info->fs_root);
Arne Jansenbcef60f2011-09-13 15:23:30 +02002614 goto fail_qgroup;
Dan Carpenter3140c9a2010-05-29 09:44:10 +00002615 }
Chris Masonc2898112009-06-10 09:51:32 -04002616
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06002617 if (sb->s_flags & MS_RDONLY)
2618 return 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02002619
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06002620 down_read(&fs_info->cleanup_work_sem);
2621 if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) ||
2622 (ret = btrfs_orphan_cleanup(fs_info->tree_root))) {
Josef Bacike3acc2a2010-01-26 14:30:53 +00002623 up_read(&fs_info->cleanup_work_sem);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06002624 close_ctree(tree_root);
2625 return ret;
2626 }
2627 up_read(&fs_info->cleanup_work_sem);
Ilya Dryomov59641012012-01-16 22:04:48 +02002628
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06002629 ret = btrfs_resume_balance_async(fs_info);
2630 if (ret) {
2631 printk(KERN_WARNING "btrfs: failed to resume balance\n");
2632 close_ctree(tree_root);
2633 return ret;
Josef Bacike3acc2a2010-01-26 14:30:53 +00002634 }
2635
Al Viroad2b2c82011-11-17 01:10:02 -05002636 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002637
Arne Jansenbcef60f2011-09-13 15:23:30 +02002638fail_qgroup:
2639 btrfs_free_qgroup_config(fs_info);
Chris Mason7c2ca462008-11-19 15:13:35 -05002640fail_trans_kthread:
2641 kthread_stop(fs_info->transaction_kthread);
Chris Mason3f157a22008-06-25 16:01:31 -04002642fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04002643 kthread_stop(fs_info->cleaner_kthread);
Chris Mason7c2ca462008-11-19 15:13:35 -05002644
2645 /*
2646 * make sure we're done with the btree inode before we stop our
2647 * kthreads
2648 */
2649 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
2650 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
2651
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002652fail_block_groups:
2653 btrfs_free_block_groups(fs_info);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002654
2655fail_tree_roots:
2656 free_root_pointers(fs_info, 1);
2657
Chris Mason39279cc2007-06-12 06:35:45 -04002658fail_sb_buffer:
Chris Mason61d92c32009-10-02 19:11:56 -04002659 btrfs_stop_workers(&fs_info->generic_worker);
Chris Mason306c8b62011-11-03 15:21:39 -04002660 btrfs_stop_workers(&fs_info->readahead_workers);
Chris Mason247e7432008-07-17 12:53:51 -04002661 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05002662 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04002663 btrfs_stop_workers(&fs_info->workers);
2664 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05002665 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05002666 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002667 btrfs_stop_workers(&fs_info->endio_write_workers);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002668 btrfs_stop_workers(&fs_info->endio_freespace_worker);
Chris Mason1cc127b2008-06-12 14:46:17 -04002669 btrfs_stop_workers(&fs_info->submit_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08002670 btrfs_stop_workers(&fs_info->delayed_workers);
Josef Bacikbab39bf2011-06-30 14:42:28 -04002671 btrfs_stop_workers(&fs_info->caching_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08002672fail_alloc:
Chris Mason4543df72008-06-11 21:47:56 -04002673fail_iput:
Ilya Dryomov586e46e2011-11-09 13:26:37 +02002674 btrfs_mapping_tree_free(&fs_info->mapping_tree);
2675
Chris Mason7c2ca462008-11-19 15:13:35 -05002676 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
Chris Mason4543df72008-06-11 21:47:56 -04002677 iput(fs_info->btree_inode);
Jens Axboead081f12009-06-12 14:43:40 +02002678fail_bdi:
Qinghuang Feng7e662852009-01-21 10:49:16 -05002679 bdi_destroy(&fs_info->bdi);
Yan, Zheng76dda932009-09-21 16:00:26 -04002680fail_srcu:
2681 cleanup_srcu_struct(&fs_info->subvol_srcu);
Qinghuang Feng7e662852009-01-21 10:49:16 -05002682fail:
Ilya Dryomov586e46e2011-11-09 13:26:37 +02002683 btrfs_close_devices(fs_info->fs_devices);
Al Viroad2b2c82011-11-17 01:10:02 -05002684 return err;
Chris Masonaf31f5e2011-11-03 15:17:42 -04002685
2686recovery_tree_root:
Chris Masonaf31f5e2011-11-03 15:17:42 -04002687 if (!btrfs_test_opt(tree_root, RECOVERY))
2688 goto fail_tree_roots;
2689
2690 free_root_pointers(fs_info, 0);
2691
2692 /* don't use the log in recovery mode, it won't be valid */
2693 btrfs_set_super_log_root(disk_super, 0);
2694
2695 /* we can't trust the free space cache either */
2696 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE);
2697
2698 ret = next_root_backup(fs_info, fs_info->super_copy,
2699 &num_backups_tried, &backup_index);
2700 if (ret == -1)
2701 goto fail_block_groups;
2702 goto retry_root_backup;
Chris Masoneb60cea2007-02-02 09:18:22 -05002703}
2704
Chris Masonf2984462008-04-10 16:19:33 -04002705static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
2706{
Chris Masonf2984462008-04-10 16:19:33 -04002707 if (uptodate) {
2708 set_buffer_uptodate(bh);
2709 } else {
Stefan Behrens442a4f62012-05-25 16:06:08 +02002710 struct btrfs_device *device = (struct btrfs_device *)
2711 bh->b_private;
2712
Josef Bacik606686e2012-06-04 14:03:51 -04002713 printk_ratelimited_in_rcu(KERN_WARNING "lost page write due to "
2714 "I/O error on %s\n",
2715 rcu_str_deref(device->name));
Chris Mason1259ab72008-05-12 13:39:03 -04002716 /* note, we dont' set_buffer_write_io_error because we have
2717 * our own ways of dealing with the IO errors
2718 */
Chris Masonf2984462008-04-10 16:19:33 -04002719 clear_buffer_uptodate(bh);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002720 btrfs_dev_stat_inc_and_print(device, BTRFS_DEV_STAT_WRITE_ERRS);
Chris Masonf2984462008-04-10 16:19:33 -04002721 }
2722 unlock_buffer(bh);
2723 put_bh(bh);
2724}
2725
Yan Zhenga512bbf2008-12-08 16:46:26 -05002726struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
2727{
2728 struct buffer_head *bh;
2729 struct buffer_head *latest = NULL;
2730 struct btrfs_super_block *super;
2731 int i;
2732 u64 transid = 0;
2733 u64 bytenr;
2734
2735 /* we would like to check all the supers, but that would make
2736 * a btrfs mount succeed after a mkfs from a different FS.
2737 * So, we need to add a special mount option to scan for
2738 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
2739 */
2740 for (i = 0; i < 1; i++) {
2741 bytenr = btrfs_sb_offset(i);
2742 if (bytenr + 4096 >= i_size_read(bdev->bd_inode))
2743 break;
2744 bh = __bread(bdev, bytenr / 4096, 4096);
2745 if (!bh)
2746 continue;
2747
2748 super = (struct btrfs_super_block *)bh->b_data;
2749 if (btrfs_super_bytenr(super) != bytenr ||
2750 strncmp((char *)(&super->magic), BTRFS_MAGIC,
2751 sizeof(super->magic))) {
2752 brelse(bh);
2753 continue;
2754 }
2755
2756 if (!latest || btrfs_super_generation(super) > transid) {
2757 brelse(latest);
2758 latest = bh;
2759 transid = btrfs_super_generation(super);
2760 } else {
2761 brelse(bh);
2762 }
2763 }
2764 return latest;
2765}
2766
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002767/*
2768 * this should be called twice, once with wait == 0 and
2769 * once with wait == 1. When wait == 0 is done, all the buffer heads
2770 * we write are pinned.
2771 *
2772 * They are released when wait == 1 is done.
2773 * max_mirrors must be the same for both runs, and it indicates how
2774 * many supers on this one device should be written.
2775 *
2776 * max_mirrors == 0 means to write them all.
2777 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002778static int write_dev_supers(struct btrfs_device *device,
2779 struct btrfs_super_block *sb,
2780 int do_barriers, int wait, int max_mirrors)
2781{
2782 struct buffer_head *bh;
2783 int i;
2784 int ret;
2785 int errors = 0;
2786 u32 crc;
2787 u64 bytenr;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002788
2789 if (max_mirrors == 0)
2790 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
2791
Yan Zhenga512bbf2008-12-08 16:46:26 -05002792 for (i = 0; i < max_mirrors; i++) {
2793 bytenr = btrfs_sb_offset(i);
2794 if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
2795 break;
2796
2797 if (wait) {
2798 bh = __find_get_block(device->bdev, bytenr / 4096,
2799 BTRFS_SUPER_INFO_SIZE);
2800 BUG_ON(!bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002801 wait_on_buffer(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002802 if (!buffer_uptodate(bh))
2803 errors++;
2804
2805 /* drop our reference */
2806 brelse(bh);
2807
2808 /* drop the reference from the wait == 0 run */
2809 brelse(bh);
2810 continue;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002811 } else {
2812 btrfs_set_super_bytenr(sb, bytenr);
2813
2814 crc = ~(u32)0;
2815 crc = btrfs_csum_data(NULL, (char *)sb +
2816 BTRFS_CSUM_SIZE, crc,
2817 BTRFS_SUPER_INFO_SIZE -
2818 BTRFS_CSUM_SIZE);
2819 btrfs_csum_final(crc, sb->csum);
2820
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002821 /*
2822 * one reference for us, and we leave it for the
2823 * caller
2824 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002825 bh = __getblk(device->bdev, bytenr / 4096,
2826 BTRFS_SUPER_INFO_SIZE);
2827 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
2828
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002829 /* one reference for submit_bh */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002830 get_bh(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002831
2832 set_buffer_uptodate(bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002833 lock_buffer(bh);
2834 bh->b_end_io = btrfs_end_buffer_write_sync;
Stefan Behrens442a4f62012-05-25 16:06:08 +02002835 bh->b_private = device;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002836 }
2837
Chris Mason387125f2011-11-18 15:07:51 -05002838 /*
2839 * we fua the first super. The others we allow
2840 * to go down lazy.
2841 */
Stefan Behrens21adbd52011-11-09 13:44:05 +01002842 ret = btrfsic_submit_bh(WRITE_FUA, bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002843 if (ret)
Yan Zhenga512bbf2008-12-08 16:46:26 -05002844 errors++;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002845 }
2846 return errors < i ? 0 : -1;
2847}
2848
Chris Mason387125f2011-11-18 15:07:51 -05002849/*
2850 * endio for the write_dev_flush, this will wake anyone waiting
2851 * for the barrier when it is done
2852 */
2853static void btrfs_end_empty_barrier(struct bio *bio, int err)
2854{
2855 if (err) {
2856 if (err == -EOPNOTSUPP)
2857 set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
2858 clear_bit(BIO_UPTODATE, &bio->bi_flags);
2859 }
2860 if (bio->bi_private)
2861 complete(bio->bi_private);
2862 bio_put(bio);
2863}
2864
2865/*
2866 * trigger flushes for one the devices. If you pass wait == 0, the flushes are
2867 * sent down. With wait == 1, it waits for the previous flush.
2868 *
2869 * any device where the flush fails with eopnotsupp are flagged as not-barrier
2870 * capable
2871 */
2872static int write_dev_flush(struct btrfs_device *device, int wait)
2873{
2874 struct bio *bio;
2875 int ret = 0;
2876
2877 if (device->nobarriers)
2878 return 0;
2879
2880 if (wait) {
2881 bio = device->flush_bio;
2882 if (!bio)
2883 return 0;
2884
2885 wait_for_completion(&device->flush_wait);
2886
2887 if (bio_flagged(bio, BIO_EOPNOTSUPP)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002888 printk_in_rcu("btrfs: disabling barriers on dev %s\n",
2889 rcu_str_deref(device->name));
Chris Mason387125f2011-11-18 15:07:51 -05002890 device->nobarriers = 1;
2891 }
2892 if (!bio_flagged(bio, BIO_UPTODATE)) {
2893 ret = -EIO;
Stefan Behrens442a4f62012-05-25 16:06:08 +02002894 if (!bio_flagged(bio, BIO_EOPNOTSUPP))
2895 btrfs_dev_stat_inc_and_print(device,
2896 BTRFS_DEV_STAT_FLUSH_ERRS);
Chris Mason387125f2011-11-18 15:07:51 -05002897 }
2898
2899 /* drop the reference from the wait == 0 run */
2900 bio_put(bio);
2901 device->flush_bio = NULL;
2902
2903 return ret;
2904 }
2905
2906 /*
2907 * one reference for us, and we leave it for the
2908 * caller
2909 */
Jesper Juhl9c017ab2012-02-27 00:04:56 +01002910 device->flush_bio = NULL;
Chris Mason387125f2011-11-18 15:07:51 -05002911 bio = bio_alloc(GFP_NOFS, 0);
2912 if (!bio)
2913 return -ENOMEM;
2914
2915 bio->bi_end_io = btrfs_end_empty_barrier;
2916 bio->bi_bdev = device->bdev;
2917 init_completion(&device->flush_wait);
2918 bio->bi_private = &device->flush_wait;
2919 device->flush_bio = bio;
2920
2921 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01002922 btrfsic_submit_bio(WRITE_FLUSH, bio);
Chris Mason387125f2011-11-18 15:07:51 -05002923
2924 return 0;
2925}
2926
2927/*
2928 * send an empty flush down to each device in parallel,
2929 * then wait for them
2930 */
2931static int barrier_all_devices(struct btrfs_fs_info *info)
2932{
2933 struct list_head *head;
2934 struct btrfs_device *dev;
2935 int errors = 0;
2936 int ret;
2937
2938 /* send down all the barriers */
2939 head = &info->fs_devices->devices;
2940 list_for_each_entry_rcu(dev, head, dev_list) {
2941 if (!dev->bdev) {
2942 errors++;
2943 continue;
2944 }
2945 if (!dev->in_fs_metadata || !dev->writeable)
2946 continue;
2947
2948 ret = write_dev_flush(dev, 0);
2949 if (ret)
2950 errors++;
2951 }
2952
2953 /* wait for all the barriers */
2954 list_for_each_entry_rcu(dev, head, dev_list) {
2955 if (!dev->bdev) {
2956 errors++;
2957 continue;
2958 }
2959 if (!dev->in_fs_metadata || !dev->writeable)
2960 continue;
2961
2962 ret = write_dev_flush(dev, 1);
2963 if (ret)
2964 errors++;
2965 }
2966 if (errors)
2967 return -EIO;
2968 return 0;
2969}
2970
Yan Zhenga512bbf2008-12-08 16:46:26 -05002971int write_all_supers(struct btrfs_root *root, int max_mirrors)
Chris Masonf2984462008-04-10 16:19:33 -04002972{
Chris Masone5e9a522009-06-10 15:17:02 -04002973 struct list_head *head;
Chris Masonf2984462008-04-10 16:19:33 -04002974 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04002975 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04002976 struct btrfs_dev_item *dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04002977 int ret;
2978 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04002979 int max_errors;
2980 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04002981 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04002982
David Sterba6c417612011-04-13 15:41:04 +02002983 max_errors = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04002984 do_barriers = !btrfs_test_opt(root, NOBARRIER);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002985 backup_super_roots(root->fs_info);
Chris Masonf2984462008-04-10 16:19:33 -04002986
David Sterba6c417612011-04-13 15:41:04 +02002987 sb = root->fs_info->super_for_commit;
Chris Masona061fc82008-05-07 11:43:44 -04002988 dev_item = &sb->dev_item;
Chris Masone5e9a522009-06-10 15:17:02 -04002989
Chris Mason174ba502011-05-27 10:03:58 -04002990 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masone5e9a522009-06-10 15:17:02 -04002991 head = &root->fs_info->fs_devices->devices;
Chris Mason387125f2011-11-18 15:07:51 -05002992
2993 if (do_barriers)
2994 barrier_all_devices(root->fs_info);
2995
Xiao Guangrong1f781602011-04-20 10:09:16 +00002996 list_for_each_entry_rcu(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04002997 if (!dev->bdev) {
2998 total_errors++;
2999 continue;
3000 }
Yan Zheng2b820322008-11-17 21:11:30 -05003001 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04003002 continue;
3003
Yan Zheng2b820322008-11-17 21:11:30 -05003004 btrfs_set_stack_device_generation(dev_item, 0);
Chris Masona061fc82008-05-07 11:43:44 -04003005 btrfs_set_stack_device_type(dev_item, dev->type);
3006 btrfs_set_stack_device_id(dev_item, dev->devid);
3007 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
3008 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
3009 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
3010 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
3011 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
3012 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05003013 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
Yan Zhenga512bbf2008-12-08 16:46:26 -05003014
Chris Masona061fc82008-05-07 11:43:44 -04003015 flags = btrfs_super_flags(sb);
3016 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04003017
Yan Zhenga512bbf2008-12-08 16:46:26 -05003018 ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
Chris Masona236aed2008-04-29 09:38:00 -04003019 if (ret)
3020 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04003021 }
Chris Masona236aed2008-04-29 09:38:00 -04003022 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05003023 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
3024 total_errors);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003025
3026 /* This shouldn't happen. FUA is masked off if unsupported */
Chris Masona236aed2008-04-29 09:38:00 -04003027 BUG();
3028 }
Chris Masonf2984462008-04-10 16:19:33 -04003029
Yan Zhenga512bbf2008-12-08 16:46:26 -05003030 total_errors = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00003031 list_for_each_entry_rcu(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04003032 if (!dev->bdev)
3033 continue;
Yan Zheng2b820322008-11-17 21:11:30 -05003034 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04003035 continue;
3036
Yan Zhenga512bbf2008-12-08 16:46:26 -05003037 ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
3038 if (ret)
3039 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04003040 }
Chris Mason174ba502011-05-27 10:03:58 -04003041 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masona236aed2008-04-29 09:38:00 -04003042 if (total_errors > max_errors) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003043 btrfs_error(root->fs_info, -EIO,
3044 "%d errors while writing supers", total_errors);
3045 return -EIO;
Chris Masona236aed2008-04-29 09:38:00 -04003046 }
Chris Masonf2984462008-04-10 16:19:33 -04003047 return 0;
3048}
3049
Yan Zhenga512bbf2008-12-08 16:46:26 -05003050int write_ctree_super(struct btrfs_trans_handle *trans,
3051 struct btrfs_root *root, int max_mirrors)
Chris Masoncfaa7292007-02-21 17:04:57 -05003052{
Chris Masone66f7092007-04-20 13:16:02 -04003053 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003054
Yan Zhenga512bbf2008-12-08 16:46:26 -05003055 ret = write_all_supers(root, max_mirrors);
Chris Mason5f39d392007-10-15 16:14:19 -04003056 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05003057}
3058
Jeff Mahoney143bede2012-03-01 14:56:26 +01003059void btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04003060{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003061 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason2619ba12007-04-10 16:58:11 -04003062 radix_tree_delete(&fs_info->fs_roots_radix,
3063 (unsigned long)root->root_key.objectid);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003064 spin_unlock(&fs_info->fs_roots_radix_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003065
3066 if (btrfs_root_refs(&root->root_item) == 0)
3067 synchronize_srcu(&fs_info->subvol_srcu);
3068
Li Zefan581bb052011-04-20 10:06:11 +08003069 __btrfs_remove_free_space_cache(root->free_ino_pinned);
3070 __btrfs_remove_free_space_cache(root->free_ino_ctl);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003071 free_fs_root(root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003072}
3073
3074static void free_fs_root(struct btrfs_root *root)
3075{
Li Zefan82d59022011-04-20 10:33:24 +08003076 iput(root->cache_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003077 WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
Al Viro0ee5dc62011-07-07 15:44:25 -04003078 if (root->anon_dev)
3079 free_anon_bdev(root->anon_dev);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003080 free_extent_buffer(root->node);
3081 free_extent_buffer(root->commit_root);
Li Zefan581bb052011-04-20 10:06:11 +08003082 kfree(root->free_ino_ctl);
3083 kfree(root->free_ino_pinned);
Chris Masond3977122009-01-05 21:25:51 -05003084 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04003085 kfree(root);
Chris Mason2619ba12007-04-10 16:58:11 -04003086}
3087
Jeff Mahoney143bede2012-03-01 14:56:26 +01003088static void del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04003089{
3090 int ret;
3091 struct btrfs_root *gang[8];
3092 int i;
3093
Yan, Zheng76dda932009-09-21 16:00:26 -04003094 while (!list_empty(&fs_info->dead_roots)) {
3095 gang[0] = list_entry(fs_info->dead_roots.next,
3096 struct btrfs_root, root_list);
3097 list_del(&gang[0]->root_list);
3098
3099 if (gang[0]->in_radix) {
3100 btrfs_free_fs_root(fs_info, gang[0]);
3101 } else {
3102 free_extent_buffer(gang[0]->node);
3103 free_extent_buffer(gang[0]->commit_root);
3104 kfree(gang[0]);
3105 }
3106 }
3107
Chris Masond3977122009-01-05 21:25:51 -05003108 while (1) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04003109 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3110 (void **)gang, 0,
3111 ARRAY_SIZE(gang));
3112 if (!ret)
3113 break;
Chris Mason2619ba12007-04-10 16:58:11 -04003114 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04003115 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04003116 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04003117}
Chris Masonb4100d62007-04-12 12:14:00 -04003118
Yan Zhengc146afa2008-11-12 14:34:12 -05003119int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
3120{
3121 u64 root_objectid = 0;
3122 struct btrfs_root *gang[8];
3123 int i;
3124 int ret;
3125
3126 while (1) {
3127 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3128 (void **)gang, root_objectid,
3129 ARRAY_SIZE(gang));
3130 if (!ret)
3131 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003132
3133 root_objectid = gang[ret - 1]->root_key.objectid + 1;
Yan Zhengc146afa2008-11-12 14:34:12 -05003134 for (i = 0; i < ret; i++) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003135 int err;
3136
Yan Zhengc146afa2008-11-12 14:34:12 -05003137 root_objectid = gang[i]->root_key.objectid;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003138 err = btrfs_orphan_cleanup(gang[i]);
3139 if (err)
3140 return err;
Yan Zhengc146afa2008-11-12 14:34:12 -05003141 }
3142 root_objectid++;
3143 }
3144 return 0;
3145}
3146
3147int btrfs_commit_super(struct btrfs_root *root)
3148{
3149 struct btrfs_trans_handle *trans;
3150 int ret;
3151
3152 mutex_lock(&root->fs_info->cleaner_mutex);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003153 btrfs_run_delayed_iputs(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05003154 btrfs_clean_old_snapshots(root);
3155 mutex_unlock(&root->fs_info->cleaner_mutex);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003156
3157 /* wait until ongoing cleanup work done */
3158 down_write(&root->fs_info->cleanup_work_sem);
3159 up_write(&root->fs_info->cleanup_work_sem);
3160
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003161 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003162 if (IS_ERR(trans))
3163 return PTR_ERR(trans);
Yan Zhengc146afa2008-11-12 14:34:12 -05003164 ret = btrfs_commit_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003165 if (ret)
3166 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003167 /* run commit again to drop the original snapshot */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003168 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003169 if (IS_ERR(trans))
3170 return PTR_ERR(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003171 ret = btrfs_commit_transaction(trans, root);
3172 if (ret)
3173 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003174 ret = btrfs_write_and_wait_transaction(NULL, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003175 if (ret) {
3176 btrfs_error(root->fs_info, ret,
3177 "Failed to sync btree inode to disk.");
3178 return ret;
3179 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003180
Yan Zhenga512bbf2008-12-08 16:46:26 -05003181 ret = write_ctree_super(NULL, root, 0);
Yan Zhengc146afa2008-11-12 14:34:12 -05003182 return ret;
3183}
3184
Chris Masone20d96d2007-03-22 12:13:20 -04003185int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05003186{
Chris Mason0f7d52f2007-04-09 10:42:37 -04003187 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05003188 int ret;
Chris Masone089f052007-03-16 16:20:31 -04003189
Chris Masonfacda1e2007-06-08 18:11:48 -04003190 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04003191 smp_mb();
3192
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003193 /* pause restriper - we want to resume on mount */
3194 btrfs_pause_balance(root->fs_info);
3195
Arne Jansena2de7332011-03-08 14:14:00 +01003196 btrfs_scrub_cancel(root);
Chris Mason4cb53002011-05-24 15:35:30 -04003197
3198 /* wait for any defraggers to finish */
3199 wait_event(fs_info->transaction_wait,
3200 (atomic_read(&fs_info->defrag_running) == 0));
3201
3202 /* clear out the rbtree of defraggable inodes */
Al Viroe3029d92011-11-17 00:56:18 -05003203 btrfs_run_defrag_inodes(fs_info);
Chris Mason4cb53002011-05-24 15:35:30 -04003204
Yan Zhengc146afa2008-11-12 14:34:12 -05003205 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
liuboacce9522011-01-06 19:30:25 +08003206 ret = btrfs_commit_super(root);
3207 if (ret)
3208 printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
3209 }
3210
Stefan Behrens68ce9682012-08-01 05:45:52 -06003211 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
3212 btrfs_error_commit_super(root);
Chris Masoned2ff2c2007-03-01 18:59:40 -05003213
Josef Bacik300e4f82011-08-29 14:06:00 -04003214 btrfs_put_block_group_cache(fs_info);
3215
Al Viroe3029d92011-11-17 00:56:18 -05003216 kthread_stop(fs_info->transaction_kthread);
3217 kthread_stop(fs_info->cleaner_kthread);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003218
Yan Zhengf25784b2009-07-28 08:41:57 -04003219 fs_info->closing = 2;
3220 smp_mb();
3221
Arne Jansenbcef60f2011-09-13 15:23:30 +02003222 btrfs_free_qgroup_config(root->fs_info);
3223
Chris Masonb0c68f82008-01-31 11:05:37 -05003224 if (fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05003225 printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07003226 (unsigned long long)fs_info->delalloc_bytes);
Chris Masonb0c68f82008-01-31 11:05:37 -05003227 }
Yanbcc63ab2008-07-30 16:29:20 -04003228
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003229 free_extent_buffer(fs_info->extent_root->node);
3230 free_extent_buffer(fs_info->extent_root->commit_root);
3231 free_extent_buffer(fs_info->tree_root->node);
3232 free_extent_buffer(fs_info->tree_root->commit_root);
Al Viroe3029d92011-11-17 00:56:18 -05003233 free_extent_buffer(fs_info->chunk_root->node);
3234 free_extent_buffer(fs_info->chunk_root->commit_root);
3235 free_extent_buffer(fs_info->dev_root->node);
3236 free_extent_buffer(fs_info->dev_root->commit_root);
3237 free_extent_buffer(fs_info->csum_root->node);
3238 free_extent_buffer(fs_info->csum_root->commit_root);
Arne Jansenbcef60f2011-09-13 15:23:30 +02003239 if (fs_info->quota_root) {
3240 free_extent_buffer(fs_info->quota_root->node);
3241 free_extent_buffer(fs_info->quota_root->commit_root);
3242 }
Chris Masond20f7042008-12-08 16:58:54 -05003243
Al Viroe3029d92011-11-17 00:56:18 -05003244 btrfs_free_block_groups(fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05003245
Chris Mason0f7d52f2007-04-09 10:42:37 -04003246 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05003247
Yan Zhengc146afa2008-11-12 14:34:12 -05003248 iput(fs_info->btree_inode);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003249
Chris Mason61d92c32009-10-02 19:11:56 -04003250 btrfs_stop_workers(&fs_info->generic_worker);
Chris Mason247e7432008-07-17 12:53:51 -04003251 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05003252 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04003253 btrfs_stop_workers(&fs_info->workers);
3254 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05003255 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05003256 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003257 btrfs_stop_workers(&fs_info->endio_write_workers);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003258 btrfs_stop_workers(&fs_info->endio_freespace_worker);
Chris Mason1cc127b2008-06-12 14:46:17 -04003259 btrfs_stop_workers(&fs_info->submit_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08003260 btrfs_stop_workers(&fs_info->delayed_workers);
Josef Bacikbab39bf2011-06-30 14:42:28 -04003261 btrfs_stop_workers(&fs_info->caching_workers);
Arne Jansen90519d62011-05-23 14:30:00 +02003262 btrfs_stop_workers(&fs_info->readahead_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04003263
Stefan Behrens21adbd52011-11-09 13:44:05 +01003264#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
3265 if (btrfs_test_opt(root, CHECK_INTEGRITY))
3266 btrfsic_unmount(root, fs_info->fs_devices);
3267#endif
3268
Chris Masondfe25022008-05-13 13:46:40 -04003269 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04003270 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04003271
Chris Mason04160082008-03-26 10:28:07 -04003272 bdi_destroy(&fs_info->bdi);
Yan, Zheng76dda932009-09-21 16:00:26 -04003273 cleanup_srcu_struct(&fs_info->subvol_srcu);
Chris Mason0b86a832008-03-24 15:01:56 -04003274
Chris Masoneb60cea2007-02-02 09:18:22 -05003275 return 0;
3276}
3277
Chris Masonb9fab912012-05-06 07:23:47 -04003278int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid,
3279 int atomic)
Chris Masonccd467d2007-06-28 15:57:36 -04003280{
Chris Mason1259ab72008-05-12 13:39:03 -04003281 int ret;
Chris Mason727011e2010-08-06 13:21:20 -04003282 struct inode *btree_inode = buf->pages[0]->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04003283
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003284 ret = extent_buffer_uptodate(buf);
Chris Mason1259ab72008-05-12 13:39:03 -04003285 if (!ret)
3286 return ret;
3287
3288 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
Chris Masonb9fab912012-05-06 07:23:47 -04003289 parent_transid, atomic);
3290 if (ret == -EAGAIN)
3291 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -04003292 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003293}
Chris Mason6702ed42007-08-07 16:15:09 -04003294
Chris Mason5f39d392007-10-15 16:14:19 -04003295int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
3296{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003297 return set_extent_buffer_uptodate(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04003298}
3299
3300void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
3301{
Chris Mason727011e2010-08-06 13:21:20 -04003302 struct btrfs_root *root = BTRFS_I(buf->pages[0]->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003303 u64 transid = btrfs_header_generation(buf);
Chris Masonb9473432009-03-13 11:00:37 -04003304 int was_dirty;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003305
Chris Masonb9447ef2009-03-09 11:45:38 -04003306 btrfs_assert_tree_locked(buf);
Chris Masonccd467d2007-06-28 15:57:36 -04003307 if (transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -05003308 printk(KERN_CRIT "btrfs transid mismatch buffer %llu, "
3309 "found %llu running %llu\n",
Chris Masondb945352007-10-15 16:15:53 -04003310 (unsigned long long)buf->start,
Chris Masond3977122009-01-05 21:25:51 -05003311 (unsigned long long)transid,
3312 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -04003313 WARN_ON(1);
3314 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003315 was_dirty = set_extent_buffer_dirty(buf);
Chris Masonb9473432009-03-13 11:00:37 -04003316 if (!was_dirty) {
3317 spin_lock(&root->fs_info->delalloc_lock);
3318 root->fs_info->dirty_metadata_bytes += buf->len;
3319 spin_unlock(&root->fs_info->delalloc_lock);
3320 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003321}
3322
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003323void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04003324{
Chris Mason188de642008-05-09 11:52:25 -04003325 /*
3326 * looks as though older kernels can get into trouble with
3327 * this code, they end up stuck in balance_dirty_pages forever
3328 */
Chris Masond6bfde82008-04-30 13:59:35 -04003329 u64 num_dirty;
Chris Mason771ed682008-11-06 22:02:51 -05003330 unsigned long thresh = 32 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04003331
Jens Axboe6933c022009-03-17 09:36:37 +01003332 if (current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04003333 return;
3334
Miao Xie16cdcec2011-04-22 18:12:22 +08003335 btrfs_balance_delayed_items(root);
3336
3337 num_dirty = root->fs_info->dirty_metadata_bytes;
3338
3339 if (num_dirty > thresh) {
3340 balance_dirty_pages_ratelimited_nr(
3341 root->fs_info->btree_inode->i_mapping, 1);
3342 }
3343 return;
3344}
3345
3346void __btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
3347{
3348 /*
3349 * looks as though older kernels can get into trouble with
3350 * this code, they end up stuck in balance_dirty_pages forever
3351 */
3352 u64 num_dirty;
3353 unsigned long thresh = 32 * 1024 * 1024;
3354
3355 if (current->flags & PF_MEMALLOC)
3356 return;
3357
Chris Mason585ad2c2009-05-18 10:41:58 -04003358 num_dirty = root->fs_info->dirty_metadata_bytes;
3359
Chris Masond6bfde82008-04-30 13:59:35 -04003360 if (num_dirty > thresh) {
3361 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05003362 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04003363 }
Chris Mason188de642008-05-09 11:52:25 -04003364 return;
Chris Mason35b7e472007-05-02 15:53:43 -04003365}
Chris Mason6b800532007-10-15 16:17:34 -04003366
Chris Masonca7a79a2008-05-12 12:59:19 -04003367int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04003368{
Chris Mason727011e2010-08-06 13:21:20 -04003369 struct btrfs_root *root = BTRFS_I(buf->pages[0]->mapping->host)->root;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003370 return btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Mason6b800532007-10-15 16:17:34 -04003371}
Chris Mason0da54682007-11-07 21:08:01 -05003372
David Sterbafcd1f0652012-03-06 00:06:18 +01003373static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
liuboacce9522011-01-06 19:30:25 +08003374 int read_only)
3375{
David Sterbafcd1f0652012-03-06 00:06:18 +01003376 if (btrfs_super_csum_type(fs_info->super_copy) >= ARRAY_SIZE(btrfs_csum_sizes)) {
3377 printk(KERN_ERR "btrfs: unsupported checksum algorithm\n");
3378 return -EINVAL;
3379 }
liuboacce9522011-01-06 19:30:25 +08003380
David Sterbafcd1f0652012-03-06 00:06:18 +01003381 if (read_only)
3382 return 0;
3383
David Sterbafcd1f0652012-03-06 00:06:18 +01003384 return 0;
liuboacce9522011-01-06 19:30:25 +08003385}
3386
Stefan Behrens68ce9682012-08-01 05:45:52 -06003387void btrfs_error_commit_super(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003388{
liuboacce9522011-01-06 19:30:25 +08003389 mutex_lock(&root->fs_info->cleaner_mutex);
3390 btrfs_run_delayed_iputs(root);
3391 mutex_unlock(&root->fs_info->cleaner_mutex);
3392
3393 down_write(&root->fs_info->cleanup_work_sem);
3394 up_write(&root->fs_info->cleanup_work_sem);
3395
3396 /* cleanup FS via transaction */
3397 btrfs_cleanup_transaction(root);
liuboacce9522011-01-06 19:30:25 +08003398}
3399
Jeff Mahoney143bede2012-03-01 14:56:26 +01003400static void btrfs_destroy_ordered_operations(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003401{
3402 struct btrfs_inode *btrfs_inode;
3403 struct list_head splice;
3404
3405 INIT_LIST_HEAD(&splice);
3406
3407 mutex_lock(&root->fs_info->ordered_operations_mutex);
3408 spin_lock(&root->fs_info->ordered_extent_lock);
3409
3410 list_splice_init(&root->fs_info->ordered_operations, &splice);
3411 while (!list_empty(&splice)) {
3412 btrfs_inode = list_entry(splice.next, struct btrfs_inode,
3413 ordered_operations);
3414
3415 list_del_init(&btrfs_inode->ordered_operations);
3416
3417 btrfs_invalidate_inodes(btrfs_inode->root);
3418 }
3419
3420 spin_unlock(&root->fs_info->ordered_extent_lock);
3421 mutex_unlock(&root->fs_info->ordered_operations_mutex);
liuboacce9522011-01-06 19:30:25 +08003422}
3423
Jeff Mahoney143bede2012-03-01 14:56:26 +01003424static void btrfs_destroy_ordered_extents(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003425{
3426 struct list_head splice;
3427 struct btrfs_ordered_extent *ordered;
3428 struct inode *inode;
3429
3430 INIT_LIST_HEAD(&splice);
3431
3432 spin_lock(&root->fs_info->ordered_extent_lock);
3433
3434 list_splice_init(&root->fs_info->ordered_extents, &splice);
3435 while (!list_empty(&splice)) {
3436 ordered = list_entry(splice.next, struct btrfs_ordered_extent,
3437 root_extent_list);
3438
3439 list_del_init(&ordered->root_extent_list);
3440 atomic_inc(&ordered->refs);
3441
3442 /* the inode may be getting freed (in sys_unlink path). */
3443 inode = igrab(ordered->inode);
3444
3445 spin_unlock(&root->fs_info->ordered_extent_lock);
3446 if (inode)
3447 iput(inode);
3448
3449 atomic_set(&ordered->refs, 1);
3450 btrfs_put_ordered_extent(ordered);
3451
3452 spin_lock(&root->fs_info->ordered_extent_lock);
3453 }
3454
3455 spin_unlock(&root->fs_info->ordered_extent_lock);
liuboacce9522011-01-06 19:30:25 +08003456}
3457
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003458int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
3459 struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003460{
3461 struct rb_node *node;
3462 struct btrfs_delayed_ref_root *delayed_refs;
3463 struct btrfs_delayed_ref_node *ref;
3464 int ret = 0;
3465
3466 delayed_refs = &trans->delayed_refs;
3467
3468 spin_lock(&delayed_refs->lock);
3469 if (delayed_refs->num_entries == 0) {
David Sterbacfece4d2011-04-25 19:43:52 -04003470 spin_unlock(&delayed_refs->lock);
liuboacce9522011-01-06 19:30:25 +08003471 printk(KERN_INFO "delayed_refs has NO entry\n");
3472 return ret;
3473 }
3474
Josef Bacikb939d1a2012-05-31 11:06:33 -04003475 while ((node = rb_first(&delayed_refs->root)) != NULL) {
liuboacce9522011-01-06 19:30:25 +08003476 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
liuboacce9522011-01-06 19:30:25 +08003477
3478 atomic_set(&ref->refs, 1);
3479 if (btrfs_delayed_ref_is_head(ref)) {
3480 struct btrfs_delayed_ref_head *head;
3481
3482 head = btrfs_delayed_node_to_head(ref);
Josef Bacikb939d1a2012-05-31 11:06:33 -04003483 if (!mutex_trylock(&head->mutex)) {
3484 atomic_inc(&ref->refs);
3485 spin_unlock(&delayed_refs->lock);
3486
3487 /* Need to wait for the delayed ref to run */
3488 mutex_lock(&head->mutex);
3489 mutex_unlock(&head->mutex);
3490 btrfs_put_delayed_ref(ref);
3491
Josef Bacike18fca72012-06-18 07:23:18 -06003492 spin_lock(&delayed_refs->lock);
Josef Bacikb939d1a2012-05-31 11:06:33 -04003493 continue;
3494 }
3495
liuboacce9522011-01-06 19:30:25 +08003496 kfree(head->extent_op);
3497 delayed_refs->num_heads--;
3498 if (list_empty(&head->cluster))
3499 delayed_refs->num_heads_ready--;
3500 list_del_init(&head->cluster);
liuboacce9522011-01-06 19:30:25 +08003501 }
Josef Bacikb939d1a2012-05-31 11:06:33 -04003502 ref->in_tree = 0;
3503 rb_erase(&ref->rb_node, &delayed_refs->root);
3504 delayed_refs->num_entries--;
3505
liuboacce9522011-01-06 19:30:25 +08003506 spin_unlock(&delayed_refs->lock);
3507 btrfs_put_delayed_ref(ref);
3508
3509 cond_resched();
3510 spin_lock(&delayed_refs->lock);
3511 }
3512
3513 spin_unlock(&delayed_refs->lock);
3514
3515 return ret;
3516}
3517
Jeff Mahoney143bede2012-03-01 14:56:26 +01003518static void btrfs_destroy_pending_snapshots(struct btrfs_transaction *t)
liuboacce9522011-01-06 19:30:25 +08003519{
3520 struct btrfs_pending_snapshot *snapshot;
3521 struct list_head splice;
3522
3523 INIT_LIST_HEAD(&splice);
3524
3525 list_splice_init(&t->pending_snapshots, &splice);
3526
3527 while (!list_empty(&splice)) {
3528 snapshot = list_entry(splice.next,
3529 struct btrfs_pending_snapshot,
3530 list);
3531
3532 list_del_init(&snapshot->list);
3533
3534 kfree(snapshot);
3535 }
liuboacce9522011-01-06 19:30:25 +08003536}
3537
Jeff Mahoney143bede2012-03-01 14:56:26 +01003538static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003539{
3540 struct btrfs_inode *btrfs_inode;
3541 struct list_head splice;
3542
3543 INIT_LIST_HEAD(&splice);
3544
liuboacce9522011-01-06 19:30:25 +08003545 spin_lock(&root->fs_info->delalloc_lock);
David Sterba5be76752011-06-09 10:02:51 +00003546 list_splice_init(&root->fs_info->delalloc_inodes, &splice);
liuboacce9522011-01-06 19:30:25 +08003547
3548 while (!list_empty(&splice)) {
3549 btrfs_inode = list_entry(splice.next, struct btrfs_inode,
3550 delalloc_inodes);
3551
3552 list_del_init(&btrfs_inode->delalloc_inodes);
3553
3554 btrfs_invalidate_inodes(btrfs_inode->root);
3555 }
3556
3557 spin_unlock(&root->fs_info->delalloc_lock);
liuboacce9522011-01-06 19:30:25 +08003558}
3559
3560static int btrfs_destroy_marked_extents(struct btrfs_root *root,
3561 struct extent_io_tree *dirty_pages,
3562 int mark)
3563{
3564 int ret;
3565 struct page *page;
3566 struct inode *btree_inode = root->fs_info->btree_inode;
3567 struct extent_buffer *eb;
3568 u64 start = 0;
3569 u64 end;
3570 u64 offset;
3571 unsigned long index;
3572
3573 while (1) {
3574 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
3575 mark);
3576 if (ret)
3577 break;
3578
3579 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
3580 while (start <= end) {
3581 index = start >> PAGE_CACHE_SHIFT;
3582 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
3583 page = find_get_page(btree_inode->i_mapping, index);
3584 if (!page)
3585 continue;
3586 offset = page_offset(page);
3587
3588 spin_lock(&dirty_pages->buffer_lock);
3589 eb = radix_tree_lookup(
3590 &(&BTRFS_I(page->mapping->host)->io_tree)->buffer,
3591 offset >> PAGE_CACHE_SHIFT);
3592 spin_unlock(&dirty_pages->buffer_lock);
Josef Bacikee670f0a2012-05-31 15:54:30 -04003593 if (eb)
liuboacce9522011-01-06 19:30:25 +08003594 ret = test_and_clear_bit(EXTENT_BUFFER_DIRTY,
3595 &eb->bflags);
liuboacce9522011-01-06 19:30:25 +08003596 if (PageWriteback(page))
3597 end_page_writeback(page);
3598
3599 lock_page(page);
3600 if (PageDirty(page)) {
3601 clear_page_dirty_for_io(page);
3602 spin_lock_irq(&page->mapping->tree_lock);
3603 radix_tree_tag_clear(&page->mapping->page_tree,
3604 page_index(page),
3605 PAGECACHE_TAG_DIRTY);
3606 spin_unlock_irq(&page->mapping->tree_lock);
3607 }
3608
liuboacce9522011-01-06 19:30:25 +08003609 unlock_page(page);
Josef Bacikee670f0a2012-05-31 15:54:30 -04003610 page_cache_release(page);
liuboacce9522011-01-06 19:30:25 +08003611 }
3612 }
3613
3614 return ret;
3615}
3616
3617static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
3618 struct extent_io_tree *pinned_extents)
3619{
3620 struct extent_io_tree *unpin;
3621 u64 start;
3622 u64 end;
3623 int ret;
Liu Boed0eaa12012-06-14 02:23:21 -06003624 bool loop = true;
liuboacce9522011-01-06 19:30:25 +08003625
3626 unpin = pinned_extents;
Liu Boed0eaa12012-06-14 02:23:21 -06003627again:
liuboacce9522011-01-06 19:30:25 +08003628 while (1) {
3629 ret = find_first_extent_bit(unpin, 0, &start, &end,
3630 EXTENT_DIRTY);
3631 if (ret)
3632 break;
3633
3634 /* opt_discard */
Li Dongyang5378e602011-03-24 10:24:27 +00003635 if (btrfs_test_opt(root, DISCARD))
3636 ret = btrfs_error_discard_extent(root, start,
3637 end + 1 - start,
3638 NULL);
liuboacce9522011-01-06 19:30:25 +08003639
3640 clear_extent_dirty(unpin, start, end, GFP_NOFS);
3641 btrfs_error_unpin_extent_range(root, start, end);
3642 cond_resched();
3643 }
3644
Liu Boed0eaa12012-06-14 02:23:21 -06003645 if (loop) {
3646 if (unpin == &root->fs_info->freed_extents[0])
3647 unpin = &root->fs_info->freed_extents[1];
3648 else
3649 unpin = &root->fs_info->freed_extents[0];
3650 loop = false;
3651 goto again;
3652 }
3653
liuboacce9522011-01-06 19:30:25 +08003654 return 0;
3655}
3656
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003657void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
3658 struct btrfs_root *root)
3659{
3660 btrfs_destroy_delayed_refs(cur_trans, root);
3661 btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv,
3662 cur_trans->dirty_pages.dirty_bytes);
3663
3664 /* FIXME: cleanup wait for commit */
3665 cur_trans->in_commit = 1;
3666 cur_trans->blocked = 1;
Josef Bacikd7096fc2012-05-31 15:49:57 -04003667 wake_up(&root->fs_info->transaction_blocked_wait);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003668
3669 cur_trans->blocked = 0;
Josef Bacikd7096fc2012-05-31 15:49:57 -04003670 wake_up(&root->fs_info->transaction_wait);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003671
3672 cur_trans->commit_done = 1;
Josef Bacikd7096fc2012-05-31 15:49:57 -04003673 wake_up(&cur_trans->commit_wait);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003674
Miao Xie67cde342012-06-14 02:23:22 -06003675 btrfs_destroy_delayed_inodes(root);
3676 btrfs_assert_delayed_root_empty(root);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003677
3678 btrfs_destroy_pending_snapshots(cur_trans);
3679
3680 btrfs_destroy_marked_extents(root, &cur_trans->dirty_pages,
3681 EXTENT_DIRTY);
Liu Bo6e841e32012-06-14 02:23:20 -06003682 btrfs_destroy_pinned_extent(root,
3683 root->fs_info->pinned_extents);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003684
3685 /*
3686 memset(cur_trans, 0, sizeof(*cur_trans));
3687 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
3688 */
3689}
3690
3691int btrfs_cleanup_transaction(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003692{
3693 struct btrfs_transaction *t;
3694 LIST_HEAD(list);
3695
liuboacce9522011-01-06 19:30:25 +08003696 mutex_lock(&root->fs_info->transaction_kthread_mutex);
3697
Josef Bacika4abeea2011-04-11 17:25:13 -04003698 spin_lock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003699 list_splice_init(&root->fs_info->trans_list, &list);
Josef Bacika4abeea2011-04-11 17:25:13 -04003700 root->fs_info->trans_no_join = 1;
3701 spin_unlock(&root->fs_info->trans_lock);
3702
liuboacce9522011-01-06 19:30:25 +08003703 while (!list_empty(&list)) {
3704 t = list_entry(list.next, struct btrfs_transaction, list);
3705 if (!t)
3706 break;
3707
3708 btrfs_destroy_ordered_operations(root);
3709
3710 btrfs_destroy_ordered_extents(root);
3711
3712 btrfs_destroy_delayed_refs(t, root);
3713
3714 btrfs_block_rsv_release(root,
3715 &root->fs_info->trans_block_rsv,
3716 t->dirty_pages.dirty_bytes);
3717
3718 /* FIXME: cleanup wait for commit */
3719 t->in_commit = 1;
3720 t->blocked = 1;
Josef Bacik66657b32012-08-01 15:36:24 -04003721 smp_mb();
liuboacce9522011-01-06 19:30:25 +08003722 if (waitqueue_active(&root->fs_info->transaction_blocked_wait))
3723 wake_up(&root->fs_info->transaction_blocked_wait);
3724
3725 t->blocked = 0;
Josef Bacik66657b32012-08-01 15:36:24 -04003726 smp_mb();
liuboacce9522011-01-06 19:30:25 +08003727 if (waitqueue_active(&root->fs_info->transaction_wait))
3728 wake_up(&root->fs_info->transaction_wait);
liuboacce9522011-01-06 19:30:25 +08003729
liuboacce9522011-01-06 19:30:25 +08003730 t->commit_done = 1;
Josef Bacik66657b32012-08-01 15:36:24 -04003731 smp_mb();
liuboacce9522011-01-06 19:30:25 +08003732 if (waitqueue_active(&t->commit_wait))
3733 wake_up(&t->commit_wait);
liuboacce9522011-01-06 19:30:25 +08003734
Miao Xie67cde342012-06-14 02:23:22 -06003735 btrfs_destroy_delayed_inodes(root);
3736 btrfs_assert_delayed_root_empty(root);
3737
liuboacce9522011-01-06 19:30:25 +08003738 btrfs_destroy_pending_snapshots(t);
3739
3740 btrfs_destroy_delalloc_inodes(root);
3741
Josef Bacika4abeea2011-04-11 17:25:13 -04003742 spin_lock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003743 root->fs_info->running_transaction = NULL;
Josef Bacika4abeea2011-04-11 17:25:13 -04003744 spin_unlock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003745
3746 btrfs_destroy_marked_extents(root, &t->dirty_pages,
3747 EXTENT_DIRTY);
3748
3749 btrfs_destroy_pinned_extent(root,
3750 root->fs_info->pinned_extents);
3751
Josef Bacik13c5a932011-04-11 15:45:29 -04003752 atomic_set(&t->use_count, 0);
liuboacce9522011-01-06 19:30:25 +08003753 list_del_init(&t->list);
3754 memset(t, 0, sizeof(*t));
3755 kmem_cache_free(btrfs_transaction_cachep, t);
3756 }
3757
Josef Bacika4abeea2011-04-11 17:25:13 -04003758 spin_lock(&root->fs_info->trans_lock);
3759 root->fs_info->trans_no_join = 0;
3760 spin_unlock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003761 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
liuboacce9522011-01-06 19:30:25 +08003762
3763 return 0;
3764}
3765
Chris Masond1310b22008-01-24 16:13:08 -05003766static struct extent_io_ops btree_extent_io_ops = {
Chris Masonce9adaa2008-04-09 16:28:12 -04003767 .readpage_end_io_hook = btree_readpage_end_io_hook,
Arne Jansen4bb31e92011-06-10 13:55:54 +02003768 .readpage_io_failed_hook = btree_io_failed_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04003769 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003770 /* note we're sharing with inode.c for the merge bio hook */
3771 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05003772};