blob: 438993e3d832588666d79dff9f3e92e0538fc3c7 [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 Masonfa9c0d72009-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"
Chris Masoneb60cea2007-02-02 09:18:22 -050047
Chris Masond1310b22008-01-24 16:13:08 -050048static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040049static void end_workqueue_fn(struct btrfs_work *work);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040050static void free_fs_root(struct btrfs_root *root);
liuboacce9522011-01-06 19:30:25 +080051static void btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
52 int read_only);
Jeff Mahoney143bede2012-03-01 14:56:26 +010053static void btrfs_destroy_ordered_operations(struct btrfs_root *root);
54static void btrfs_destroy_ordered_extents(struct btrfs_root *root);
liuboacce9522011-01-06 19:30:25 +080055static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
56 struct btrfs_root *root);
Jeff Mahoney143bede2012-03-01 14:56:26 +010057static void btrfs_destroy_pending_snapshots(struct btrfs_transaction *t);
58static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root);
liuboacce9522011-01-06 19:30:25 +080059static int btrfs_destroy_marked_extents(struct btrfs_root *root,
60 struct extent_io_tree *dirty_pages,
61 int mark);
62static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
63 struct extent_io_tree *pinned_extents);
Chris Masonce9adaa2008-04-09 16:28:12 -040064
Chris Masond352ac62008-09-29 15:18:18 -040065/*
66 * end_io_wq structs are used to do processing in task context when an IO is
67 * complete. This is used during reads to verify checksums, and it is used
68 * by writes to insert metadata for new file extents after IO is complete.
69 */
Chris Masonce9adaa2008-04-09 16:28:12 -040070struct end_io_wq {
71 struct bio *bio;
72 bio_end_io_t *end_io;
73 void *private;
74 struct btrfs_fs_info *info;
75 int error;
Chris Mason22c59942008-04-09 16:28:12 -040076 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040077 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040078 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040079};
Chris Mason0da54682007-11-07 21:08:01 -050080
Chris Masond352ac62008-09-29 15:18:18 -040081/*
82 * async submit bios are used to offload expensive checksumming
83 * onto the worker threads. They checksum file and metadata bios
84 * just before they are sent down the IO stack.
85 */
Chris Mason44b8bd72008-04-16 11:14:51 -040086struct async_submit_bio {
87 struct inode *inode;
88 struct bio *bio;
89 struct list_head list;
Chris Mason4a69a412008-11-06 22:03:00 -050090 extent_submit_bio_hook_t *submit_bio_start;
91 extent_submit_bio_hook_t *submit_bio_done;
Chris Mason44b8bd72008-04-16 11:14:51 -040092 int rw;
93 int mirror_num;
Chris Masonc8b97812008-10-29 14:49:59 -040094 unsigned long bio_flags;
Chris Masoneaf25d92010-05-25 09:48:28 -040095 /*
96 * bio_offset is optional, can be used if the pages in the bio
97 * can't tell us where in the file the bio should go
98 */
99 u64 bio_offset;
Chris Mason8b712842008-06-11 16:50:36 -0400100 struct btrfs_work work;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100101 int error;
Chris Mason44b8bd72008-04-16 11:14:51 -0400102};
103
Chris Mason85d4e462011-07-26 16:11:19 -0400104/*
105 * Lockdep class keys for extent_buffer->lock's in this root. For a given
106 * eb, the lockdep key is determined by the btrfs_root it belongs to and
107 * the level the eb occupies in the tree.
Chris Mason4008c042009-02-12 14:09:45 -0500108 *
Chris Mason85d4e462011-07-26 16:11:19 -0400109 * Different roots are used for different purposes and may nest inside each
110 * other and they require separate keysets. As lockdep keys should be
111 * static, assign keysets according to the purpose of the root as indicated
112 * by btrfs_root->objectid. This ensures that all special purpose roots
113 * have separate keysets.
Chris Mason4008c042009-02-12 14:09:45 -0500114 *
Chris Mason85d4e462011-07-26 16:11:19 -0400115 * Lock-nesting across peer nodes is always done with the immediate parent
116 * node locked thus preventing deadlock. As lockdep doesn't know this, use
117 * subclass to avoid triggering lockdep warning in such cases.
Chris Mason4008c042009-02-12 14:09:45 -0500118 *
Chris Mason85d4e462011-07-26 16:11:19 -0400119 * The key is set by the readpage_end_io_hook after the buffer has passed
120 * csum validation but before the pages are unlocked. It is also set by
121 * btrfs_init_new_buffer on freshly allocated blocks.
122 *
123 * We also add a check to make sure the highest level of the tree is the
124 * same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this code
125 * needs update as well.
Chris Mason4008c042009-02-12 14:09:45 -0500126 */
127#ifdef CONFIG_DEBUG_LOCK_ALLOC
128# if BTRFS_MAX_LEVEL != 8
129# error
130# endif
Chris Mason85d4e462011-07-26 16:11:19 -0400131
132static struct btrfs_lockdep_keyset {
133 u64 id; /* root objectid */
134 const char *name_stem; /* lock name stem */
135 char names[BTRFS_MAX_LEVEL + 1][20];
136 struct lock_class_key keys[BTRFS_MAX_LEVEL + 1];
137} btrfs_lockdep_keysets[] = {
138 { .id = BTRFS_ROOT_TREE_OBJECTID, .name_stem = "root" },
139 { .id = BTRFS_EXTENT_TREE_OBJECTID, .name_stem = "extent" },
140 { .id = BTRFS_CHUNK_TREE_OBJECTID, .name_stem = "chunk" },
141 { .id = BTRFS_DEV_TREE_OBJECTID, .name_stem = "dev" },
142 { .id = BTRFS_FS_TREE_OBJECTID, .name_stem = "fs" },
143 { .id = BTRFS_CSUM_TREE_OBJECTID, .name_stem = "csum" },
144 { .id = BTRFS_ORPHAN_OBJECTID, .name_stem = "orphan" },
145 { .id = BTRFS_TREE_LOG_OBJECTID, .name_stem = "log" },
146 { .id = BTRFS_TREE_RELOC_OBJECTID, .name_stem = "treloc" },
147 { .id = BTRFS_DATA_RELOC_TREE_OBJECTID, .name_stem = "dreloc" },
148 { .id = 0, .name_stem = "tree" },
Chris Mason4008c042009-02-12 14:09:45 -0500149};
Chris Mason85d4e462011-07-26 16:11:19 -0400150
151void __init btrfs_init_lockdep(void)
152{
153 int i, j;
154
155 /* initialize lockdep class names */
156 for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) {
157 struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i];
158
159 for (j = 0; j < ARRAY_SIZE(ks->names); j++)
160 snprintf(ks->names[j], sizeof(ks->names[j]),
161 "btrfs-%s-%02d", ks->name_stem, j);
162 }
163}
164
165void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb,
166 int level)
167{
168 struct btrfs_lockdep_keyset *ks;
169
170 BUG_ON(level >= ARRAY_SIZE(ks->keys));
171
172 /* find the matching keyset, id 0 is the default entry */
173 for (ks = btrfs_lockdep_keysets; ks->id; ks++)
174 if (ks->id == objectid)
175 break;
176
177 lockdep_set_class_and_name(&eb->lock,
178 &ks->keys[level], ks->names[level]);
179}
180
Chris Mason4008c042009-02-12 14:09:45 -0500181#endif
182
Chris Masond352ac62008-09-29 15:18:18 -0400183/*
184 * extents on the btree inode are pretty simple, there's one extent
185 * that covers the entire device
186 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500187static struct extent_map *btree_get_extent(struct inode *inode,
David Sterba306e16c2011-04-19 14:29:38 +0200188 struct page *page, size_t pg_offset, u64 start, u64 len,
Christoph Hellwigb2950862008-12-02 09:54:17 -0500189 int create)
Chris Mason5f39d392007-10-15 16:14:19 -0400190{
191 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
192 struct extent_map *em;
193 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400194
Chris Mason890871b2009-09-02 16:24:52 -0400195 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500196 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -0400197 if (em) {
198 em->bdev =
199 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -0400200 read_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400201 goto out;
Chris Masona061fc82008-05-07 11:43:44 -0400202 }
Chris Mason890871b2009-09-02 16:24:52 -0400203 read_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400204
David Sterba172ddd62011-04-21 00:48:27 +0200205 em = alloc_extent_map();
Chris Mason5f39d392007-10-15 16:14:19 -0400206 if (!em) {
207 em = ERR_PTR(-ENOMEM);
208 goto out;
209 }
210 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400211 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -0400212 em->block_len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400213 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400214 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500215
Chris Mason890871b2009-09-02 16:24:52 -0400216 write_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400217 ret = add_extent_mapping(em_tree, em);
218 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400219 u64 failed_start = em->start;
220 u64 failed_len = em->len;
221
Chris Mason5f39d392007-10-15 16:14:19 -0400222 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400223 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400224 if (em) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400225 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400226 } else {
227 em = lookup_extent_mapping(em_tree, failed_start,
228 failed_len);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400229 ret = -EIO;
Chris Mason0afbaf82008-04-18 14:17:20 -0400230 }
Chris Mason5f39d392007-10-15 16:14:19 -0400231 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400232 free_extent_map(em);
233 em = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400234 }
Chris Mason890871b2009-09-02 16:24:52 -0400235 write_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400236
237 if (ret)
238 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400239out:
240 return em;
241}
242
Chris Mason19c00dd2007-10-15 16:19:22 -0400243u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
244{
David Woodhouse163e7832009-04-19 13:02:41 +0100245 return crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400246}
247
248void btrfs_csum_final(u32 crc, char *result)
249{
David Sterba7e75bf32011-03-18 22:56:43 +0000250 put_unaligned_le32(~crc, result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400251}
252
Chris Masond352ac62008-09-29 15:18:18 -0400253/*
254 * compute the csum for a btree block, and either verify it or write it
255 * into the csum field of the block.
256 */
Chris Mason19c00dd2007-10-15 16:19:22 -0400257static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
258 int verify)
259{
David Sterba6c417612011-04-13 15:41:04 +0200260 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Josef Bacik607d4322008-12-02 07:17:45 -0500261 char *result = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -0400262 unsigned long len;
263 unsigned long cur_len;
264 unsigned long offset = BTRFS_CSUM_SIZE;
Chris Mason19c00dd2007-10-15 16:19:22 -0400265 char *kaddr;
266 unsigned long map_start;
267 unsigned long map_len;
268 int err;
269 u32 crc = ~(u32)0;
Josef Bacik607d4322008-12-02 07:17:45 -0500270 unsigned long inline_result;
Chris Mason19c00dd2007-10-15 16:19:22 -0400271
272 len = buf->len - offset;
Chris Masond3977122009-01-05 21:25:51 -0500273 while (len > 0) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400274 err = map_private_extent_buffer(buf, offset, 32,
Chris Masona6591712011-07-19 12:04:14 -0400275 &kaddr, &map_start, &map_len);
Chris Masond3977122009-01-05 21:25:51 -0500276 if (err)
Chris Mason19c00dd2007-10-15 16:19:22 -0400277 return 1;
Chris Mason19c00dd2007-10-15 16:19:22 -0400278 cur_len = min(len, map_len - (offset - map_start));
279 crc = btrfs_csum_data(root, kaddr + offset - map_start,
280 crc, cur_len);
281 len -= cur_len;
282 offset += cur_len;
Chris Mason19c00dd2007-10-15 16:19:22 -0400283 }
Josef Bacik607d4322008-12-02 07:17:45 -0500284 if (csum_size > sizeof(inline_result)) {
285 result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
286 if (!result)
287 return 1;
288 } else {
289 result = (char *)&inline_result;
290 }
291
Chris Mason19c00dd2007-10-15 16:19:22 -0400292 btrfs_csum_final(crc, result);
293
294 if (verify) {
Josef Bacik607d4322008-12-02 07:17:45 -0500295 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
Chris Masone4204de2008-01-08 15:46:27 -0500296 u32 val;
297 u32 found = 0;
Josef Bacik607d4322008-12-02 07:17:45 -0500298 memcpy(&found, result, csum_size);
Chris Masone4204de2008-01-08 15:46:27 -0500299
Josef Bacik607d4322008-12-02 07:17:45 -0500300 read_extent_buffer(buf, &val, 0, csum_size);
David Sterba7a36dde2011-05-06 15:33:15 +0200301 printk_ratelimited(KERN_INFO "btrfs: %s checksum verify "
Chris Mason193f2842009-04-27 07:29:05 -0400302 "failed on %llu wanted %X found %X "
303 "level %d\n",
304 root->fs_info->sb->s_id,
305 (unsigned long long)buf->start, val, found,
306 btrfs_header_level(buf));
Josef Bacik607d4322008-12-02 07:17:45 -0500307 if (result != (char *)&inline_result)
308 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400309 return 1;
310 }
311 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500312 write_extent_buffer(buf, result, 0, csum_size);
Chris Mason19c00dd2007-10-15 16:19:22 -0400313 }
Josef Bacik607d4322008-12-02 07:17:45 -0500314 if (result != (char *)&inline_result)
315 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400316 return 0;
317}
318
Chris Masond352ac62008-09-29 15:18:18 -0400319/*
320 * we can't consider a given block up to date unless the transid of the
321 * block matches the transid in the parent node's pointer. This is how we
322 * detect blocks that either didn't get written at all or got written
323 * in the wrong place.
324 */
Chris Mason1259ab72008-05-12 13:39:03 -0400325static int verify_parent_transid(struct extent_io_tree *io_tree,
326 struct extent_buffer *eb, u64 parent_transid)
327{
Josef Bacik2ac55d42010-02-03 19:33:23 +0000328 struct extent_state *cached_state = NULL;
Chris Mason1259ab72008-05-12 13:39:03 -0400329 int ret;
330
331 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
332 return 0;
333
Josef Bacik2ac55d42010-02-03 19:33:23 +0000334 lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100335 0, &cached_state);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000336 if (extent_buffer_uptodate(io_tree, eb, cached_state) &&
Chris Mason1259ab72008-05-12 13:39:03 -0400337 btrfs_header_generation(eb) == parent_transid) {
338 ret = 0;
339 goto out;
340 }
David Sterba7a36dde2011-05-06 15:33:15 +0200341 printk_ratelimited("parent transid verify failed on %llu wanted %llu "
Chris Mason193f2842009-04-27 07:29:05 -0400342 "found %llu\n",
343 (unsigned long long)eb->start,
344 (unsigned long long)parent_transid,
345 (unsigned long long)btrfs_header_generation(eb));
Chris Mason1259ab72008-05-12 13:39:03 -0400346 ret = 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000347 clear_extent_buffer_uptodate(io_tree, eb, &cached_state);
Chris Mason33958dc2008-07-30 10:29:12 -0400348out:
Josef Bacik2ac55d42010-02-03 19:33:23 +0000349 unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1,
350 &cached_state, GFP_NOFS);
Chris Mason1259ab72008-05-12 13:39:03 -0400351 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400352}
353
Chris Masond352ac62008-09-29 15:18:18 -0400354/*
355 * helper to read a given tree block, doing retries as required when
356 * the checksums don't match and we have alternate mirrors to try.
357 */
Chris Masonf1885912008-04-09 16:28:12 -0400358static int btree_read_extent_buffer_pages(struct btrfs_root *root,
359 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400360 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400361{
362 struct extent_io_tree *io_tree;
363 int ret;
364 int num_copies = 0;
365 int mirror_num = 0;
366
Josef Bacika826d6d2011-03-16 13:42:43 -0400367 clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
Chris Masonf1885912008-04-09 16:28:12 -0400368 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
369 while (1) {
Arne Jansenbb82ab82011-06-10 14:06:53 +0200370 ret = read_extent_buffer_pages(io_tree, eb, start,
371 WAIT_COMPLETE,
Chris Masonf1885912008-04-09 16:28:12 -0400372 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400373 if (!ret &&
374 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400375 return ret;
Chris Masond3977122009-01-05 21:25:51 -0500376
Josef Bacika826d6d2011-03-16 13:42:43 -0400377 /*
378 * This buffer's crc is fine, but its contents are corrupted, so
379 * there is no reason to read the other copies, they won't be
380 * any less wrong.
381 */
382 if (test_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags))
383 return ret;
384
Chris Masonf1885912008-04-09 16:28:12 -0400385 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
386 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400387 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400388 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400389
Chris Masonf1885912008-04-09 16:28:12 -0400390 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400391 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400392 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400393 }
Chris Masonf1885912008-04-09 16:28:12 -0400394 return -EIO;
395}
Chris Mason19c00dd2007-10-15 16:19:22 -0400396
Chris Masond352ac62008-09-29 15:18:18 -0400397/*
Chris Masond3977122009-01-05 21:25:51 -0500398 * checksum a dirty tree block before IO. This has extra checks to make sure
399 * we only fill in the checksum field in the first page of a multi-page block
Chris Masond352ac62008-09-29 15:18:18 -0400400 */
Chris Masond3977122009-01-05 21:25:51 -0500401
Christoph Hellwigb2950862008-12-02 09:54:17 -0500402static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
Chris Mason19c00dd2007-10-15 16:19:22 -0400403{
Chris Masond1310b22008-01-24 16:13:08 -0500404 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400405 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400406 u64 found_start;
Chris Mason19c00dd2007-10-15 16:19:22 -0400407 unsigned long len;
408 struct extent_buffer *eb;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100409 int ret = -EIO;
Chris Masonf1885912008-04-09 16:28:12 -0400410
Chris Masond1310b22008-01-24 16:13:08 -0500411 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400412
Chris Masoneb14ab82011-02-10 12:35:00 -0500413 if (page->private == EXTENT_PAGE_PRIVATE) {
414 WARN_ON(1);
Chris Mason19c00dd2007-10-15 16:19:22 -0400415 goto out;
Chris Masoneb14ab82011-02-10 12:35:00 -0500416 }
417 if (!page->private) {
418 WARN_ON(1);
Chris Mason19c00dd2007-10-15 16:19:22 -0400419 goto out;
Chris Masoneb14ab82011-02-10 12:35:00 -0500420 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400421 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500422 WARN_ON(len == 0);
423
David Sterbaba144192011-04-21 01:12:06 +0200424 eb = alloc_extent_buffer(tree, start, len, page);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +0000425 if (eb == NULL) {
426 WARN_ON(1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100427 ret = -ENOMEM;
Tsutomu Itoh91ca3382011-01-05 02:32:22 +0000428 goto out;
429 }
Chris Masonca7a79a2008-05-12 12:59:19 -0400430 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
431 btrfs_header_generation(eb));
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100432 if (ret) {
433 btrfs_printk(root->fs_info, KERN_WARNING
434 "Failed to checksum dirty buffer @ %llu[%lu]\n",
435 start, len);
436 goto err;
437 }
Chris Mason784b4e22010-11-21 22:20:49 -0500438 WARN_ON(!btrfs_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN));
439
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100440 ret = -EIO;
Chris Mason19c00dd2007-10-15 16:19:22 -0400441 found_start = btrfs_header_bytenr(eb);
442 if (found_start != start) {
Chris Mason55c69072008-01-09 15:55:33 -0500443 WARN_ON(1);
444 goto err;
445 }
446 if (eb->first_page != page) {
Chris Mason55c69072008-01-09 15:55:33 -0500447 WARN_ON(1);
448 goto err;
449 }
450 if (!PageUptodate(page)) {
Chris Mason55c69072008-01-09 15:55:33 -0500451 WARN_ON(1);
452 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400453 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400454 csum_tree_block(root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100455 ret = 0;
Chris Mason55c69072008-01-09 15:55:33 -0500456err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400457 free_extent_buffer(eb);
458out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100459 return ret;
Chris Mason19c00dd2007-10-15 16:19:22 -0400460}
461
Yan Zheng2b820322008-11-17 21:11:30 -0500462static int check_tree_block_fsid(struct btrfs_root *root,
463 struct extent_buffer *eb)
464{
465 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
466 u8 fsid[BTRFS_UUID_SIZE];
467 int ret = 1;
468
469 read_extent_buffer(eb, fsid, (unsigned long)btrfs_header_fsid(eb),
470 BTRFS_FSID_SIZE);
471 while (fs_devices) {
472 if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
473 ret = 0;
474 break;
475 }
476 fs_devices = fs_devices->seed;
477 }
478 return ret;
479}
480
Josef Bacika826d6d2011-03-16 13:42:43 -0400481#define CORRUPT(reason, eb, root, slot) \
482 printk(KERN_CRIT "btrfs: corrupt leaf, %s: block=%llu," \
483 "root=%llu, slot=%d\n", reason, \
484 (unsigned long long)btrfs_header_bytenr(eb), \
485 (unsigned long long)root->objectid, slot)
486
487static noinline int check_leaf(struct btrfs_root *root,
488 struct extent_buffer *leaf)
489{
490 struct btrfs_key key;
491 struct btrfs_key leaf_key;
492 u32 nritems = btrfs_header_nritems(leaf);
493 int slot;
494
495 if (nritems == 0)
496 return 0;
497
498 /* Check the 0 item */
499 if (btrfs_item_offset_nr(leaf, 0) + btrfs_item_size_nr(leaf, 0) !=
500 BTRFS_LEAF_DATA_SIZE(root)) {
501 CORRUPT("invalid item offset size pair", leaf, root, 0);
502 return -EIO;
503 }
504
505 /*
506 * Check to make sure each items keys are in the correct order and their
507 * offsets make sense. We only have to loop through nritems-1 because
508 * we check the current slot against the next slot, which verifies the
509 * next slot's offset+size makes sense and that the current's slot
510 * offset is correct.
511 */
512 for (slot = 0; slot < nritems - 1; slot++) {
513 btrfs_item_key_to_cpu(leaf, &leaf_key, slot);
514 btrfs_item_key_to_cpu(leaf, &key, slot + 1);
515
516 /* Make sure the keys are in the right order */
517 if (btrfs_comp_cpu_keys(&leaf_key, &key) >= 0) {
518 CORRUPT("bad key order", leaf, root, slot);
519 return -EIO;
520 }
521
522 /*
523 * Make sure the offset and ends are right, remember that the
524 * item data starts at the end of the leaf and grows towards the
525 * front.
526 */
527 if (btrfs_item_offset_nr(leaf, slot) !=
528 btrfs_item_end_nr(leaf, slot + 1)) {
529 CORRUPT("slot offset bad", leaf, root, slot);
530 return -EIO;
531 }
532
533 /*
534 * Check to make sure that we don't point outside of the leaf,
535 * just incase all the items are consistent to eachother, but
536 * all point outside of the leaf.
537 */
538 if (btrfs_item_end_nr(leaf, slot) >
539 BTRFS_LEAF_DATA_SIZE(root)) {
540 CORRUPT("slot end outside of leaf", leaf, root, slot);
541 return -EIO;
542 }
543 }
544
545 return 0;
546}
547
Christoph Hellwigb2950862008-12-02 09:54:17 -0500548static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Masonce9adaa2008-04-09 16:28:12 -0400549 struct extent_state *state)
550{
551 struct extent_io_tree *tree;
552 u64 found_start;
553 int found_level;
554 unsigned long len;
555 struct extent_buffer *eb;
556 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400557 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400558
559 tree = &BTRFS_I(page->mapping->host)->io_tree;
560 if (page->private == EXTENT_PAGE_PRIVATE)
561 goto out;
562 if (!page->private)
563 goto out;
Chris Masond3977122009-01-05 21:25:51 -0500564
Chris Masonce9adaa2008-04-09 16:28:12 -0400565 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500566 WARN_ON(len == 0);
567
David Sterbaba144192011-04-21 01:12:06 +0200568 eb = alloc_extent_buffer(tree, start, len, page);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +0000569 if (eb == NULL) {
570 ret = -EIO;
571 goto out;
572 }
Chris Masonf1885912008-04-09 16:28:12 -0400573
Chris Masonce9adaa2008-04-09 16:28:12 -0400574 found_start = btrfs_header_bytenr(eb);
Chris Mason23a07862008-09-12 08:57:47 -0400575 if (found_start != start) {
David Sterba7a36dde2011-05-06 15:33:15 +0200576 printk_ratelimited(KERN_INFO "btrfs bad tree block start "
Chris Mason193f2842009-04-27 07:29:05 -0400577 "%llu %llu\n",
578 (unsigned long long)found_start,
579 (unsigned long long)eb->start);
Chris Masonf1885912008-04-09 16:28:12 -0400580 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400581 goto err;
582 }
583 if (eb->first_page != page) {
Chris Masond3977122009-01-05 21:25:51 -0500584 printk(KERN_INFO "btrfs bad first page %lu %lu\n",
585 eb->first_page->index, page->index);
Chris Masonce9adaa2008-04-09 16:28:12 -0400586 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400587 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400588 goto err;
589 }
Yan Zheng2b820322008-11-17 21:11:30 -0500590 if (check_tree_block_fsid(root, eb)) {
David Sterba7a36dde2011-05-06 15:33:15 +0200591 printk_ratelimited(KERN_INFO "btrfs bad fsid on block %llu\n",
Chris Mason193f2842009-04-27 07:29:05 -0400592 (unsigned long long)eb->start);
Chris Mason1259ab72008-05-12 13:39:03 -0400593 ret = -EIO;
594 goto err;
595 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400596 found_level = btrfs_header_level(eb);
597
Chris Mason85d4e462011-07-26 16:11:19 -0400598 btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb),
599 eb, found_level);
Chris Mason4008c042009-02-12 14:09:45 -0500600
Chris Masonce9adaa2008-04-09 16:28:12 -0400601 ret = csum_tree_block(root, eb, 1);
Josef Bacika826d6d2011-03-16 13:42:43 -0400602 if (ret) {
Chris Masonf1885912008-04-09 16:28:12 -0400603 ret = -EIO;
Josef Bacika826d6d2011-03-16 13:42:43 -0400604 goto err;
605 }
606
607 /*
608 * If this is a leaf block and it is corrupt, set the corrupt bit so
609 * that we don't try and read the other copies of this block, just
610 * return -EIO.
611 */
612 if (found_level == 0 && check_leaf(root, eb)) {
613 set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
614 ret = -EIO;
615 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400616
617 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
618 end = eb->start + end - 1;
Chris Masonce9adaa2008-04-09 16:28:12 -0400619err:
Arne Jansen4bb31e92011-06-10 13:55:54 +0200620 if (test_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags)) {
621 clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags);
622 btree_readahead_hook(root, eb, eb->start, ret);
623 }
624
Chris Masonce9adaa2008-04-09 16:28:12 -0400625 free_extent_buffer(eb);
626out:
Chris Masonf1885912008-04-09 16:28:12 -0400627 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400628}
629
Arne Jansen4bb31e92011-06-10 13:55:54 +0200630static int btree_io_failed_hook(struct bio *failed_bio,
631 struct page *page, u64 start, u64 end,
Jan Schmidt32240a92011-11-20 07:33:38 -0500632 int mirror_num, struct extent_state *state)
Arne Jansen4bb31e92011-06-10 13:55:54 +0200633{
634 struct extent_io_tree *tree;
635 unsigned long len;
636 struct extent_buffer *eb;
637 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
638
639 tree = &BTRFS_I(page->mapping->host)->io_tree;
640 if (page->private == EXTENT_PAGE_PRIVATE)
641 goto out;
642 if (!page->private)
643 goto out;
644
645 len = page->private >> 2;
646 WARN_ON(len == 0);
647
648 eb = alloc_extent_buffer(tree, start, len, page);
649 if (eb == NULL)
650 goto out;
651
652 if (test_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags)) {
653 clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags);
654 btree_readahead_hook(root, eb, eb->start, -EIO);
655 }
Chris Masonc674e042011-11-03 22:23:13 -0400656 free_extent_buffer(eb);
Arne Jansen4bb31e92011-06-10 13:55:54 +0200657
658out:
659 return -EIO; /* we fixed nothing */
660}
661
Chris Masonce9adaa2008-04-09 16:28:12 -0400662static void end_workqueue_bio(struct bio *bio, int err)
Chris Masonce9adaa2008-04-09 16:28:12 -0400663{
664 struct end_io_wq *end_io_wq = bio->bi_private;
665 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400666
Chris Masonce9adaa2008-04-09 16:28:12 -0400667 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400668 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400669 end_io_wq->work.func = end_workqueue_fn;
670 end_io_wq->work.flags = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500671
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200672 if (bio->bi_rw & REQ_WRITE) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400673 if (end_io_wq->metadata == 1)
Chris Masoncad321a2008-12-17 14:51:42 -0500674 btrfs_queue_worker(&fs_info->endio_meta_write_workers,
675 &end_io_wq->work);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400676 else if (end_io_wq->metadata == 2)
677 btrfs_queue_worker(&fs_info->endio_freespace_worker,
678 &end_io_wq->work);
Chris Masoncad321a2008-12-17 14:51:42 -0500679 else
680 btrfs_queue_worker(&fs_info->endio_write_workers,
681 &end_io_wq->work);
Chris Masond20f7042008-12-08 16:58:54 -0500682 } else {
683 if (end_io_wq->metadata)
684 btrfs_queue_worker(&fs_info->endio_meta_workers,
685 &end_io_wq->work);
686 else
687 btrfs_queue_worker(&fs_info->endio_workers,
688 &end_io_wq->work);
689 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400690}
691
Josef Bacik0cb59c92010-07-02 12:14:14 -0400692/*
693 * For the metadata arg you want
694 *
695 * 0 - if data
696 * 1 - if normal metadta
697 * 2 - if writing to the free space cache area
698 */
Chris Mason22c59942008-04-09 16:28:12 -0400699int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
700 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400701{
Chris Masonce9adaa2008-04-09 16:28:12 -0400702 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400703 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
704 if (!end_io_wq)
705 return -ENOMEM;
706
707 end_io_wq->private = bio->bi_private;
708 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400709 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400710 end_io_wq->error = 0;
711 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400712 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400713
714 bio->bi_private = end_io_wq;
715 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400716 return 0;
717}
718
Chris Masonb64a2852008-08-20 13:39:41 -0400719unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400720{
721 unsigned long limit = min_t(unsigned long,
722 info->workers.max_workers,
723 info->fs_devices->open_devices);
724 return 256 * limit;
725}
726
Chris Mason4a69a412008-11-06 22:03:00 -0500727static void run_one_async_start(struct btrfs_work *work)
728{
Chris Mason4a69a412008-11-06 22:03:00 -0500729 struct async_submit_bio *async;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100730 int ret;
Chris Mason4a69a412008-11-06 22:03:00 -0500731
732 async = container_of(work, struct async_submit_bio, work);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100733 ret = async->submit_bio_start(async->inode, async->rw, async->bio,
734 async->mirror_num, async->bio_flags,
735 async->bio_offset);
736 if (ret)
737 async->error = ret;
Chris Mason4a69a412008-11-06 22:03:00 -0500738}
739
740static void run_one_async_done(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400741{
742 struct btrfs_fs_info *fs_info;
743 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400744 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400745
746 async = container_of(work, struct async_submit_bio, work);
747 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400748
Chris Masonb64a2852008-08-20 13:39:41 -0400749 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400750 limit = limit * 2 / 3;
751
Chris Mason8b712842008-06-11 16:50:36 -0400752 atomic_dec(&fs_info->nr_async_submits);
Chris Mason0986fe92008-08-15 15:34:15 -0400753
Chris Masonb64a2852008-08-20 13:39:41 -0400754 if (atomic_read(&fs_info->nr_async_submits) < limit &&
755 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400756 wake_up(&fs_info->async_submit_wait);
757
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100758 /* If an error occured we just want to clean up the bio and move on */
759 if (async->error) {
760 bio_endio(async->bio, async->error);
761 return;
762 }
763
Chris Mason4a69a412008-11-06 22:03:00 -0500764 async->submit_bio_done(async->inode, async->rw, async->bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400765 async->mirror_num, async->bio_flags,
766 async->bio_offset);
Chris Mason4a69a412008-11-06 22:03:00 -0500767}
768
769static void run_one_async_free(struct btrfs_work *work)
770{
771 struct async_submit_bio *async;
772
773 async = container_of(work, struct async_submit_bio, work);
Chris Mason8b712842008-06-11 16:50:36 -0400774 kfree(async);
775}
776
Chris Mason44b8bd72008-04-16 11:14:51 -0400777int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
778 int rw, struct bio *bio, int mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -0400779 unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -0400780 u64 bio_offset,
Chris Mason4a69a412008-11-06 22:03:00 -0500781 extent_submit_bio_hook_t *submit_bio_start,
782 extent_submit_bio_hook_t *submit_bio_done)
Chris Mason44b8bd72008-04-16 11:14:51 -0400783{
784 struct async_submit_bio *async;
785
786 async = kmalloc(sizeof(*async), GFP_NOFS);
787 if (!async)
788 return -ENOMEM;
789
790 async->inode = inode;
791 async->rw = rw;
792 async->bio = bio;
793 async->mirror_num = mirror_num;
Chris Mason4a69a412008-11-06 22:03:00 -0500794 async->submit_bio_start = submit_bio_start;
795 async->submit_bio_done = submit_bio_done;
796
797 async->work.func = run_one_async_start;
798 async->work.ordered_func = run_one_async_done;
799 async->work.ordered_free = run_one_async_free;
800
Chris Mason8b712842008-06-11 16:50:36 -0400801 async->work.flags = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400802 async->bio_flags = bio_flags;
Chris Masoneaf25d92010-05-25 09:48:28 -0400803 async->bio_offset = bio_offset;
Chris Mason8c8bee12008-09-29 11:19:10 -0400804
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100805 async->error = 0;
806
Chris Masoncb03c742008-05-15 16:15:45 -0400807 atomic_inc(&fs_info->nr_async_submits);
Chris Masond313d7a2009-04-20 15:50:09 -0400808
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200809 if (rw & REQ_SYNC)
Chris Masond313d7a2009-04-20 15:50:09 -0400810 btrfs_set_work_high_prio(&async->work);
811
Chris Mason8b712842008-06-11 16:50:36 -0400812 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason9473f162008-08-28 06:15:24 -0400813
Chris Masond3977122009-01-05 21:25:51 -0500814 while (atomic_read(&fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500815 atomic_read(&fs_info->nr_async_submits)) {
816 wait_event(fs_info->async_submit_wait,
817 (atomic_read(&fs_info->nr_async_submits) == 0));
818 }
819
Chris Mason44b8bd72008-04-16 11:14:51 -0400820 return 0;
821}
822
Chris Masonce3ed712008-09-23 13:14:12 -0400823static int btree_csum_one_bio(struct bio *bio)
824{
825 struct bio_vec *bvec = bio->bi_io_vec;
826 int bio_index = 0;
827 struct btrfs_root *root;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100828 int ret = 0;
Chris Masonce3ed712008-09-23 13:14:12 -0400829
830 WARN_ON(bio->bi_vcnt <= 0);
Chris Masond3977122009-01-05 21:25:51 -0500831 while (bio_index < bio->bi_vcnt) {
Chris Masonce3ed712008-09-23 13:14:12 -0400832 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100833 ret = csum_dirty_buffer(root, bvec->bv_page);
834 if (ret)
835 break;
Chris Masonce3ed712008-09-23 13:14:12 -0400836 bio_index++;
837 bvec++;
838 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100839 return ret;
Chris Masonce3ed712008-09-23 13:14:12 -0400840}
841
Chris Mason4a69a412008-11-06 22:03:00 -0500842static int __btree_submit_bio_start(struct inode *inode, int rw,
843 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -0400844 unsigned long bio_flags,
845 u64 bio_offset)
Chris Mason22c59942008-04-09 16:28:12 -0400846{
Chris Mason8b712842008-06-11 16:50:36 -0400847 /*
848 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400849 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400850 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100851 return btree_csum_one_bio(bio);
Chris Mason4a69a412008-11-06 22:03:00 -0500852}
Chris Mason22c59942008-04-09 16:28:12 -0400853
Chris Mason4a69a412008-11-06 22:03:00 -0500854static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400855 int mirror_num, unsigned long bio_flags,
856 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -0500857{
Chris Mason8b712842008-06-11 16:50:36 -0400858 /*
Chris Mason4a69a412008-11-06 22:03:00 -0500859 * when we're called for a write, we're already in the async
860 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400861 */
Chris Mason8b712842008-06-11 16:50:36 -0400862 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400863}
864
Chris Mason44b8bd72008-04-16 11:14:51 -0400865static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -0400866 int mirror_num, unsigned long bio_flags,
867 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -0400868{
Chris Masoncad321a2008-12-17 14:51:42 -0500869 int ret;
870
Jeff Mahoney355808c2011-10-03 23:23:14 -0400871 ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info, bio, 1);
872 if (ret)
873 return ret;
Chris Masoncad321a2008-12-17 14:51:42 -0500874
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200875 if (!(rw & REQ_WRITE)) {
Chris Mason4a69a412008-11-06 22:03:00 -0500876 /*
877 * called for a read, do the setup so that checksum validation
878 * can happen in the async kernel threads
879 */
Chris Mason4a69a412008-11-06 22:03:00 -0500880 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason6f3577b2008-11-13 09:59:36 -0500881 mirror_num, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -0400882 }
Chris Masond313d7a2009-04-20 15:50:09 -0400883
Chris Masoncad321a2008-12-17 14:51:42 -0500884 /*
885 * kthread helpers are used to submit writes so that checksumming
886 * can happen in parallel across all CPUs
887 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400888 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Masonc8b97812008-10-29 14:49:59 -0400889 inode, rw, bio, mirror_num, 0,
Chris Masoneaf25d92010-05-25 09:48:28 -0400890 bio_offset,
Chris Mason4a69a412008-11-06 22:03:00 -0500891 __btree_submit_bio_start,
892 __btree_submit_bio_done);
Chris Mason44b8bd72008-04-16 11:14:51 -0400893}
894
Jan Beulich3dd14622010-12-07 14:54:09 +0000895#ifdef CONFIG_MIGRATION
Chris Mason784b4e22010-11-21 22:20:49 -0500896static int btree_migratepage(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800897 struct page *newpage, struct page *page,
898 enum migrate_mode mode)
Chris Mason784b4e22010-11-21 22:20:49 -0500899{
900 /*
901 * we can't safely write a btree page from here,
902 * we haven't done the locking hook
903 */
904 if (PageDirty(page))
905 return -EAGAIN;
906 /*
907 * Buffers may be managed in a filesystem specific way.
908 * We must have no buffers or drop them.
909 */
910 if (page_has_private(page) &&
911 !try_to_release_page(page, GFP_KERNEL))
912 return -EAGAIN;
Mel Gormana6bc32b2012-01-12 17:19:43 -0800913 return migrate_page(mapping, newpage, page, mode);
Chris Mason784b4e22010-11-21 22:20:49 -0500914}
Jan Beulich3dd14622010-12-07 14:54:09 +0000915#endif
Chris Mason784b4e22010-11-21 22:20:49 -0500916
Chris Mason5f39d392007-10-15 16:14:19 -0400917static int btree_writepage(struct page *page, struct writeback_control *wbc)
918{
Chris Masond1310b22008-01-24 16:13:08 -0500919 struct extent_io_tree *tree;
Chris Masonb9473432009-03-13 11:00:37 -0400920 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
921 struct extent_buffer *eb;
922 int was_dirty;
Chris Mason5443be42008-08-15 15:34:16 -0400923
Chris Masonb9473432009-03-13 11:00:37 -0400924 tree = &BTRFS_I(page->mapping->host)->io_tree;
925 if (!(current->flags & PF_MEMALLOC)) {
926 return extent_write_full_page(tree, page,
927 btree_get_extent, wbc);
Chris Mason5443be42008-08-15 15:34:16 -0400928 }
Chris Masonb9473432009-03-13 11:00:37 -0400929
930 redirty_page_for_writepage(wbc, page);
Chris Mason784b4e22010-11-21 22:20:49 -0500931 eb = btrfs_find_tree_block(root, page_offset(page), PAGE_CACHE_SIZE);
Chris Masonb9473432009-03-13 11:00:37 -0400932 WARN_ON(!eb);
933
934 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
935 if (!was_dirty) {
936 spin_lock(&root->fs_info->delalloc_lock);
937 root->fs_info->dirty_metadata_bytes += PAGE_CACHE_SIZE;
938 spin_unlock(&root->fs_info->delalloc_lock);
939 }
940 free_extent_buffer(eb);
941
942 unlock_page(page);
943 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400944}
Chris Mason0da54682007-11-07 21:08:01 -0500945
946static int btree_writepages(struct address_space *mapping,
947 struct writeback_control *wbc)
948{
Chris Masond1310b22008-01-24 16:13:08 -0500949 struct extent_io_tree *tree;
950 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500951 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Masonb9473432009-03-13 11:00:37 -0400952 struct btrfs_root *root = BTRFS_I(mapping->host)->root;
Chris Mason793955b2007-11-26 16:34:41 -0800953 u64 num_dirty;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400954 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800955
956 if (wbc->for_kupdate)
957 return 0;
958
Chris Masonb9473432009-03-13 11:00:37 -0400959 /* this is a bit racy, but that's ok */
960 num_dirty = root->fs_info->dirty_metadata_bytes;
Chris Masond3977122009-01-05 21:25:51 -0500961 if (num_dirty < thresh)
Chris Mason793955b2007-11-26 16:34:41 -0800962 return 0;
Chris Mason793955b2007-11-26 16:34:41 -0800963 }
Chris Mason0da54682007-11-07 21:08:01 -0500964 return extent_writepages(tree, mapping, btree_get_extent, wbc);
965}
966
Christoph Hellwigb2950862008-12-02 09:54:17 -0500967static int btree_readpage(struct file *file, struct page *page)
Chris Mason5f39d392007-10-15 16:14:19 -0400968{
Chris Masond1310b22008-01-24 16:13:08 -0500969 struct extent_io_tree *tree;
970 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +0200971 return extent_read_full_page(tree, page, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400972}
973
Chris Mason70dec802008-01-29 09:59:12 -0500974static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400975{
Chris Masond1310b22008-01-24 16:13:08 -0500976 struct extent_io_tree *tree;
977 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400978 int ret;
979
Chris Mason98509cf2008-09-11 15:51:43 -0400980 if (PageWriteback(page) || PageDirty(page))
Chris Masond3977122009-01-05 21:25:51 -0500981 return 0;
Chris Mason98509cf2008-09-11 15:51:43 -0400982
Chris Masond1310b22008-01-24 16:13:08 -0500983 tree = &BTRFS_I(page->mapping->host)->io_tree;
984 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118c2008-07-22 11:18:07 -0400985
David Sterba0c4e5382012-01-26 15:01:12 -0500986 /*
987 * We need to mask out eg. __GFP_HIGHMEM and __GFP_DMA32 as we're doing
988 * slab allocation from alloc_extent_state down the callchain where
989 * it'd hit a BUG_ON as those flags are not allowed.
990 */
991 gfp_flags &= ~GFP_SLAB_BUG_MASK;
992
Chris Mason7b13b7b2008-04-18 10:29:50 -0400993 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Masond3977122009-01-05 21:25:51 -0500994 if (!ret)
Chris Mason6af118c2008-07-22 11:18:07 -0400995 return 0;
Chris Mason6af118c2008-07-22 11:18:07 -0400996
997 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400998 if (ret == 1) {
999 ClearPagePrivate(page);
1000 set_page_private(page, 0);
1001 page_cache_release(page);
1002 }
Chris Mason6af118c2008-07-22 11:18:07 -04001003
Chris Masond98237b2007-03-28 13:57:48 -04001004 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001005}
Chris Mason123abc82007-03-14 14:14:43 -04001006
Chris Mason5f39d392007-10-15 16:14:19 -04001007static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -04001008{
Chris Masond1310b22008-01-24 16:13:08 -05001009 struct extent_io_tree *tree;
1010 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -04001011 extent_invalidatepage(tree, page, offset);
1012 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001013 if (PagePrivate(page)) {
Chris Masond3977122009-01-05 21:25:51 -05001014 printk(KERN_WARNING "btrfs warning page private not zero "
1015 "on page %llu\n", (unsigned long long)page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001016 ClearPagePrivate(page);
1017 set_page_private(page, 0);
1018 page_cache_release(page);
1019 }
Chris Masond98237b2007-03-28 13:57:48 -04001020}
1021
Alexey Dobriyan7f094102009-09-21 17:01:10 -07001022static const struct address_space_operations btree_aops = {
Chris Masond98237b2007-03-28 13:57:48 -04001023 .readpage = btree_readpage,
1024 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -05001025 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -04001026 .releasepage = btree_releasepage,
1027 .invalidatepage = btree_invalidatepage,
Chris Mason5a92bc82010-11-29 09:49:11 -05001028#ifdef CONFIG_MIGRATION
Chris Mason784b4e22010-11-21 22:20:49 -05001029 .migratepage = btree_migratepage,
Chris Mason5a92bc82010-11-29 09:49:11 -05001030#endif
Chris Masond98237b2007-03-28 13:57:48 -04001031};
1032
Chris Masonca7a79a2008-05-12 12:59:19 -04001033int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1034 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -04001035{
Chris Mason5f39d392007-10-15 16:14:19 -04001036 struct extent_buffer *buf = NULL;
1037 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -04001038 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -04001039
Chris Masondb945352007-10-15 16:15:53 -04001040 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001041 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -04001042 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001043 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02001044 buf, 0, WAIT_NONE, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001045 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -04001046 return ret;
Chris Mason090d1872007-05-01 08:53:32 -04001047}
1048
Arne Jansenab0fff02011-05-23 14:25:41 +02001049int reada_tree_block_flagged(struct btrfs_root *root, u64 bytenr, u32 blocksize,
1050 int mirror_num, struct extent_buffer **eb)
1051{
1052 struct extent_buffer *buf = NULL;
1053 struct inode *btree_inode = root->fs_info->btree_inode;
1054 struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree;
1055 int ret;
1056
1057 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
1058 if (!buf)
1059 return 0;
1060
1061 set_bit(EXTENT_BUFFER_READAHEAD, &buf->bflags);
1062
1063 ret = read_extent_buffer_pages(io_tree, buf, 0, WAIT_PAGE_LOCK,
1064 btree_get_extent, mirror_num);
1065 if (ret) {
1066 free_extent_buffer(buf);
1067 return ret;
1068 }
1069
1070 if (test_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags)) {
1071 free_extent_buffer(buf);
1072 return -EIO;
1073 } else if (extent_buffer_uptodate(io_tree, buf, NULL)) {
1074 *eb = buf;
1075 } else {
1076 free_extent_buffer(buf);
1077 }
1078 return 0;
1079}
1080
Chris Mason0999df52008-04-01 13:48:14 -04001081struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
1082 u64 bytenr, u32 blocksize)
1083{
1084 struct inode *btree_inode = root->fs_info->btree_inode;
1085 struct extent_buffer *eb;
1086 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02001087 bytenr, blocksize);
Chris Mason0999df52008-04-01 13:48:14 -04001088 return eb;
1089}
1090
1091struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
1092 u64 bytenr, u32 blocksize)
1093{
1094 struct inode *btree_inode = root->fs_info->btree_inode;
1095 struct extent_buffer *eb;
1096
1097 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
David Sterbaba144192011-04-21 01:12:06 +02001098 bytenr, blocksize, NULL);
Chris Mason0999df52008-04-01 13:48:14 -04001099 return eb;
1100}
1101
1102
Chris Masone02119d2008-09-05 16:13:11 -04001103int btrfs_write_tree_block(struct extent_buffer *buf)
1104{
Christoph Hellwig8aa38c32009-10-01 12:58:30 -04001105 return filemap_fdatawrite_range(buf->first_page->mapping, buf->start,
1106 buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -04001107}
1108
1109int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
1110{
Christoph Hellwig8aa38c32009-10-01 12:58:30 -04001111 return filemap_fdatawait_range(buf->first_page->mapping,
1112 buf->start, buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -04001113}
1114
Chris Masondb945352007-10-15 16:15:53 -04001115struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001116 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -04001117{
Chris Mason5f39d392007-10-15 16:14:19 -04001118 struct extent_buffer *buf = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -04001119 int ret;
1120
Chris Masondb945352007-10-15 16:15:53 -04001121 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001122 if (!buf)
1123 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -05001124
Chris Masonca7a79a2008-05-12 12:59:19 -04001125 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -04001126
Chris Masond3977122009-01-05 21:25:51 -05001127 if (ret == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001128 set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
Chris Mason5f39d392007-10-15 16:14:19 -04001129 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -04001130
Chris Masoneb60cea2007-02-02 09:18:22 -05001131}
1132
Jeff Mahoneyd5c13f92012-03-01 14:56:27 +01001133void clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1134 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -05001135{
Chris Mason5f39d392007-10-15 16:14:19 -04001136 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -05001137 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -04001138 root->fs_info->running_transaction->transid) {
Chris Masonb9447ef2009-03-09 11:45:38 -04001139 btrfs_assert_tree_locked(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001140
Chris Masonb9473432009-03-13 11:00:37 -04001141 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
1142 spin_lock(&root->fs_info->delalloc_lock);
1143 if (root->fs_info->dirty_metadata_bytes >= buf->len)
1144 root->fs_info->dirty_metadata_bytes -= buf->len;
Jeff Mahoneyd5c13f92012-03-01 14:56:27 +01001145 else {
1146 spin_unlock(&root->fs_info->delalloc_lock);
1147 btrfs_panic(root->fs_info, -EOVERFLOW,
1148 "Can't clear %lu bytes from "
1149 " dirty_mdatadata_bytes (%lu)",
1150 buf->len,
1151 root->fs_info->dirty_metadata_bytes);
1152 }
Chris Masonb9473432009-03-13 11:00:37 -04001153 spin_unlock(&root->fs_info->delalloc_lock);
1154 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001155
Chris Masonb9473432009-03-13 11:00:37 -04001156 /* ugh, clear_extent_buffer_dirty needs to lock the page */
1157 btrfs_set_lock_blocking(buf);
Chris Masond1310b22008-01-24 16:13:08 -05001158 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -05001159 buf);
Chris Mason925baed2008-06-25 16:01:30 -04001160 }
Chris Mason5f39d392007-10-15 16:14:19 -04001161}
1162
Jeff Mahoney143bede2012-03-01 14:56:26 +01001163static void __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
1164 u32 stripesize, struct btrfs_root *root,
1165 struct btrfs_fs_info *fs_info,
1166 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -05001167{
Chris Masoncfaa7292007-02-21 17:04:57 -05001168 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -05001169 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -04001170 root->sectorsize = sectorsize;
1171 root->nodesize = nodesize;
1172 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001173 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -04001174 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001175 root->track_dirty = 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001176 root->in_radix = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001177 root->orphan_item_inserted = 0;
1178 root->orphan_cleanup_state = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001179
Chris Mason0f7d52f2007-04-09 10:42:37 -04001180 root->objectid = objectid;
1181 root->last_trans = 0;
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001182 root->highest_objectid = 0;
Josef Bacik58176a92007-08-29 15:47:34 -04001183 root->name = NULL;
Eric Paris6bef4d32010-02-23 19:43:04 +00001184 root->inode_tree = RB_ROOT;
Miao Xie16cdcec2011-04-22 18:12:22 +08001185 INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001186 root->block_rsv = NULL;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001187 root->orphan_block_rsv = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04001188
1189 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -04001190 INIT_LIST_HEAD(&root->orphan_list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001191 INIT_LIST_HEAD(&root->root_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001192 spin_lock_init(&root->orphan_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001193 spin_lock_init(&root->inode_lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001194 spin_lock_init(&root->accounting_lock);
Chris Masona2135012008-06-25 16:01:30 -04001195 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001196 mutex_init(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05001197 init_waitqueue_head(&root->log_writer_wait);
1198 init_waitqueue_head(&root->log_commit_wait[0]);
1199 init_waitqueue_head(&root->log_commit_wait[1]);
1200 atomic_set(&root->log_commit[0], 0);
1201 atomic_set(&root->log_commit[1], 0);
1202 atomic_set(&root->log_writers, 0);
1203 root->log_batch = 0;
1204 root->log_transid = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04001205 root->last_log_commit = 0;
Chris Masond0c803c2008-09-11 16:17:57 -04001206 extent_io_tree_init(&root->dirty_log_pages,
David Sterbaf993c882011-04-20 23:35:57 +02001207 fs_info->btree_inode->i_mapping);
Chris Mason017e5362008-07-28 15:32:51 -04001208
Chris Mason3768f362007-03-13 16:47:54 -04001209 memset(&root->root_key, 0, sizeof(root->root_key));
1210 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -04001211 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -04001212 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -04001213 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -04001214 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -04001215 root->defrag_running = 0;
Chris Mason4d775672007-04-20 20:23:12 -04001216 root->root_key.objectid = objectid;
Al Viro0ee5dc62011-07-07 15:44:25 -04001217 root->anon_dev = 0;
Chris Mason3768f362007-03-13 16:47:54 -04001218}
1219
Jeff Mahoney200a5c12011-10-03 23:22:43 -04001220static int __must_check find_and_setup_root(struct btrfs_root *tree_root,
1221 struct btrfs_fs_info *fs_info,
1222 u64 objectid,
1223 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -04001224{
1225 int ret;
Chris Masondb945352007-10-15 16:15:53 -04001226 u32 blocksize;
Yan Zheng84234f32008-10-29 14:49:05 -04001227 u64 generation;
Chris Mason3768f362007-03-13 16:47:54 -04001228
Chris Masondb945352007-10-15 16:15:53 -04001229 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001230 tree_root->sectorsize, tree_root->stripesize,
1231 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -04001232 ret = btrfs_find_last_root(tree_root, objectid,
1233 &root->root_item, &root->root_key);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001234 if (ret > 0)
1235 return -ENOENT;
Jeff Mahoney200a5c12011-10-03 23:22:43 -04001236 else if (ret < 0)
1237 return ret;
Chris Mason3768f362007-03-13 16:47:54 -04001238
Yan Zheng84234f32008-10-29 14:49:05 -04001239 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001240 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
Chris Masonaf31f5e2011-11-03 15:17:42 -04001241 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -04001242 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001243 blocksize, generation);
Chris Mason68433b72010-12-13 14:47:58 -05001244 if (!root->node || !btrfs_buffer_uptodate(root->node, generation)) {
1245 free_extent_buffer(root->node);
Chris Masonaf31f5e2011-11-03 15:17:42 -04001246 root->node = NULL;
Chris Mason68433b72010-12-13 14:47:58 -05001247 return -EIO;
1248 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001249 root->commit_root = btrfs_root_node(root);
Chris Masond97e63b2007-02-20 16:40:44 -05001250 return 0;
1251}
1252
Al Virof84a8bd2011-11-17 15:57:57 -05001253static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info)
Al Viro6f07e422011-11-17 00:46:16 -05001254{
1255 struct btrfs_root *root = kzalloc(sizeof(*root), GFP_NOFS);
1256 if (root)
1257 root->fs_info = fs_info;
1258 return root;
1259}
1260
Yan Zheng7237f182009-01-21 12:54:03 -05001261static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1262 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001263{
1264 struct btrfs_root *root;
1265 struct btrfs_root *tree_root = fs_info->tree_root;
Yan Zheng7237f182009-01-21 12:54:03 -05001266 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001267
Al Viro6f07e422011-11-17 00:46:16 -05001268 root = btrfs_alloc_root(fs_info);
Chris Masone02119d2008-09-05 16:13:11 -04001269 if (!root)
Yan Zheng7237f182009-01-21 12:54:03 -05001270 return ERR_PTR(-ENOMEM);
Chris Masone02119d2008-09-05 16:13:11 -04001271
1272 __setup_root(tree_root->nodesize, tree_root->leafsize,
1273 tree_root->sectorsize, tree_root->stripesize,
1274 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1275
1276 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1277 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1278 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
Yan Zheng7237f182009-01-21 12:54:03 -05001279 /*
1280 * log trees do not get reference counted because they go away
1281 * before a real commit is actually done. They do store pointers
1282 * to file data extents, and those reference counts still get
1283 * updated (along with back refs to the log tree).
1284 */
Chris Masone02119d2008-09-05 16:13:11 -04001285 root->ref_cows = 0;
1286
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001287 leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001288 BTRFS_TREE_LOG_OBJECTID, NULL,
1289 0, 0, 0, 0);
Yan Zheng7237f182009-01-21 12:54:03 -05001290 if (IS_ERR(leaf)) {
1291 kfree(root);
1292 return ERR_CAST(leaf);
1293 }
Chris Masone02119d2008-09-05 16:13:11 -04001294
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001295 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
1296 btrfs_set_header_bytenr(leaf, leaf->start);
1297 btrfs_set_header_generation(leaf, trans->transid);
1298 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1299 btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
Yan Zheng7237f182009-01-21 12:54:03 -05001300 root->node = leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001301
1302 write_extent_buffer(root->node, root->fs_info->fsid,
1303 (unsigned long)btrfs_header_fsid(root->node),
1304 BTRFS_FSID_SIZE);
1305 btrfs_mark_buffer_dirty(root->node);
1306 btrfs_tree_unlock(root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001307 return root;
1308}
1309
1310int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
1311 struct btrfs_fs_info *fs_info)
1312{
1313 struct btrfs_root *log_root;
1314
1315 log_root = alloc_log_tree(trans, fs_info);
1316 if (IS_ERR(log_root))
1317 return PTR_ERR(log_root);
1318 WARN_ON(fs_info->log_root_tree);
1319 fs_info->log_root_tree = log_root;
1320 return 0;
1321}
1322
1323int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
1324 struct btrfs_root *root)
1325{
1326 struct btrfs_root *log_root;
1327 struct btrfs_inode_item *inode_item;
1328
1329 log_root = alloc_log_tree(trans, root->fs_info);
1330 if (IS_ERR(log_root))
1331 return PTR_ERR(log_root);
1332
1333 log_root->last_trans = trans->transid;
1334 log_root->root_key.offset = root->root_key.objectid;
1335
1336 inode_item = &log_root->root_item.inode;
1337 inode_item->generation = cpu_to_le64(1);
1338 inode_item->size = cpu_to_le64(3);
1339 inode_item->nlink = cpu_to_le32(1);
1340 inode_item->nbytes = cpu_to_le64(root->leafsize);
1341 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
1342
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001343 btrfs_set_root_node(&log_root->root_item, log_root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001344
1345 WARN_ON(root->log_root);
1346 root->log_root = log_root;
1347 root->log_transid = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04001348 root->last_log_commit = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001349 return 0;
1350}
1351
1352struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
1353 struct btrfs_key *location)
1354{
1355 struct btrfs_root *root;
1356 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001357 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001358 struct extent_buffer *l;
Yan Zheng84234f32008-10-29 14:49:05 -04001359 u64 generation;
Chris Masondb945352007-10-15 16:15:53 -04001360 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001361 int ret = 0;
1362
Al Viro6f07e422011-11-17 00:46:16 -05001363 root = btrfs_alloc_root(fs_info);
Chris Mason0cf6c622007-06-09 09:22:25 -04001364 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001365 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001366 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -04001367 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001368 location->objectid, root);
1369 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04001370 kfree(root);
1371 return ERR_PTR(ret);
1372 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001373 goto out;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001374 }
1375
Chris Masondb945352007-10-15 16:15:53 -04001376 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001377 tree_root->sectorsize, tree_root->stripesize,
1378 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001379
1380 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001381 if (!path) {
1382 kfree(root);
1383 return ERR_PTR(-ENOMEM);
1384 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001385 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001386 if (ret == 0) {
1387 l = path->nodes[0];
1388 read_extent_buffer(l, &root->root_item,
1389 btrfs_item_ptr_offset(l, path->slots[0]),
1390 sizeof(root->root_item));
1391 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -04001392 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001393 btrfs_free_path(path);
1394 if (ret) {
Tsutomu Itoh5e540f72010-12-27 06:53:10 +00001395 kfree(root);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001396 if (ret > 0)
1397 ret = -ENOENT;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001398 return ERR_PTR(ret);
1399 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001400
Yan Zheng84234f32008-10-29 14:49:05 -04001401 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001402 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
1403 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001404 blocksize, generation);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001405 root->commit_root = btrfs_root_node(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001406 BUG_ON(!root->node); /* -ENOMEM */
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001407out:
Li Zefan08fe4db2011-03-28 02:01:25 +00001408 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
Chris Masone02119d2008-09-05 16:13:11 -04001409 root->ref_cows = 1;
Li Zefan08fe4db2011-03-28 02:01:25 +00001410 btrfs_check_and_init_root_item(&root->root_item);
1411 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -04001412
Chris Mason5eda7b52007-06-22 14:16:25 -04001413 return root;
1414}
1415
Chris Masonedbd8d42007-12-21 16:27:24 -05001416struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
1417 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -04001418{
1419 struct btrfs_root *root;
1420 int ret;
1421
Chris Masonedbd8d42007-12-21 16:27:24 -05001422 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1423 return fs_info->tree_root;
1424 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1425 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001426 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
1427 return fs_info->chunk_root;
1428 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
1429 return fs_info->dev_root;
Yan Zheng0403e472008-12-10 20:32:51 -05001430 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
1431 return fs_info->csum_root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001432again:
1433 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason5eda7b52007-06-22 14:16:25 -04001434 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1435 (unsigned long)location->objectid);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001436 spin_unlock(&fs_info->fs_roots_radix_lock);
Chris Mason5eda7b52007-06-22 14:16:25 -04001437 if (root)
1438 return root;
1439
Chris Masone02119d2008-09-05 16:13:11 -04001440 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -04001441 if (IS_ERR(root))
1442 return root;
Chris Mason3394e162008-11-17 20:42:26 -05001443
Li Zefan581bb052011-04-20 10:06:11 +08001444 root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS);
Li Zefan581bb052011-04-20 10:06:11 +08001445 root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned),
1446 GFP_NOFS);
David Sterba35a30d72011-06-13 15:18:23 +00001447 if (!root->free_ino_pinned || !root->free_ino_ctl) {
1448 ret = -ENOMEM;
Li Zefan581bb052011-04-20 10:06:11 +08001449 goto fail;
David Sterba35a30d72011-06-13 15:18:23 +00001450 }
Li Zefan581bb052011-04-20 10:06:11 +08001451
1452 btrfs_init_free_ino_ctl(root);
1453 mutex_init(&root->fs_commit_mutex);
1454 spin_lock_init(&root->cache_lock);
1455 init_waitqueue_head(&root->cache_wait);
1456
Al Viro0ee5dc62011-07-07 15:44:25 -04001457 ret = get_anon_bdev(&root->anon_dev);
Chris Masonac08aed2011-06-13 11:28:50 -04001458 if (ret)
1459 goto fail;
Chris Mason3394e162008-11-17 20:42:26 -05001460
Yan, Zhengd68fc572010-05-16 10:49:58 -04001461 if (btrfs_root_refs(&root->root_item) == 0) {
1462 ret = -ENOENT;
1463 goto fail;
1464 }
1465
1466 ret = btrfs_find_orphan_item(fs_info->tree_root, location->objectid);
1467 if (ret < 0)
1468 goto fail;
1469 if (ret == 0)
1470 root->orphan_item_inserted = 1;
1471
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001472 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
1473 if (ret)
1474 goto fail;
1475
1476 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason2619ba12007-04-10 16:58:11 -04001477 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1478 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001479 root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001480 if (ret == 0)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001481 root->in_radix = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001482
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001483 spin_unlock(&fs_info->fs_roots_radix_lock);
1484 radix_tree_preload_end();
Chris Mason0f7d52f2007-04-09 10:42:37 -04001485 if (ret) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001486 if (ret == -EEXIST) {
1487 free_fs_root(root);
1488 goto again;
1489 }
1490 goto fail;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001491 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001492
1493 ret = btrfs_find_dead_roots(fs_info->tree_root,
1494 root->root_key.objectid);
1495 WARN_ON(ret);
Chris Masonedbd8d42007-12-21 16:27:24 -05001496 return root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04001497fail:
1498 free_fs_root(root);
1499 return ERR_PTR(ret);
Chris Masonedbd8d42007-12-21 16:27:24 -05001500}
1501
Chris Mason04160082008-03-26 10:28:07 -04001502static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1503{
1504 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1505 int ret = 0;
Chris Mason04160082008-03-26 10:28:07 -04001506 struct btrfs_device *device;
1507 struct backing_dev_info *bdi;
Chris Masonb7967db2009-04-27 07:29:04 -04001508
Xiao Guangrong1f781602011-04-20 10:09:16 +00001509 rcu_read_lock();
1510 list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001511 if (!device->bdev)
1512 continue;
Chris Mason04160082008-03-26 10:28:07 -04001513 bdi = blk_get_backing_dev_info(device->bdev);
1514 if (bdi && bdi_congested(bdi, bdi_bits)) {
1515 ret = 1;
1516 break;
1517 }
1518 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001519 rcu_read_unlock();
Chris Mason04160082008-03-26 10:28:07 -04001520 return ret;
1521}
1522
Chris Mason38b66982008-04-22 09:22:11 -04001523/*
Jens Axboead081f12009-06-12 14:43:40 +02001524 * If this fails, caller must call bdi_destroy() to get rid of the
1525 * bdi again.
1526 */
Chris Mason04160082008-03-26 10:28:07 -04001527static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1528{
Jens Axboead081f12009-06-12 14:43:40 +02001529 int err;
1530
1531 bdi->capabilities = BDI_CAP_MAP_COPY;
Jens Axboee6d086d2010-04-26 10:27:54 +02001532 err = bdi_setup_and_register(bdi, "btrfs", BDI_CAP_MAP_COPY);
Jens Axboead081f12009-06-12 14:43:40 +02001533 if (err)
1534 return err;
1535
Chris Mason4575c9c2008-04-18 16:13:31 -04001536 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001537 bdi->congested_fn = btrfs_congested_fn;
1538 bdi->congested_data = info;
1539 return 0;
1540}
1541
Chris Masonce9adaa2008-04-09 16:28:12 -04001542static int bio_ready_for_csum(struct bio *bio)
1543{
1544 u64 length = 0;
1545 u64 buf_len = 0;
1546 u64 start = 0;
1547 struct page *page;
1548 struct extent_io_tree *io_tree = NULL;
Chris Masonce9adaa2008-04-09 16:28:12 -04001549 struct bio_vec *bvec;
1550 int i;
1551 int ret;
1552
1553 bio_for_each_segment(bvec, bio, i) {
1554 page = bvec->bv_page;
1555 if (page->private == EXTENT_PAGE_PRIVATE) {
1556 length += bvec->bv_len;
1557 continue;
1558 }
1559 if (!page->private) {
1560 length += bvec->bv_len;
1561 continue;
1562 }
1563 length = bvec->bv_len;
1564 buf_len = page->private >> 2;
1565 start = page_offset(page) + bvec->bv_offset;
1566 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masonce9adaa2008-04-09 16:28:12 -04001567 }
1568 /* are we fully contained in this bio? */
1569 if (buf_len <= length)
1570 return 1;
1571
1572 ret = extent_range_uptodate(io_tree, start + length,
1573 start + buf_len - 1);
Chris Masonce9adaa2008-04-09 16:28:12 -04001574 return ret;
1575}
1576
Chris Mason8b712842008-06-11 16:50:36 -04001577/*
1578 * called by the kthread helper functions to finally call the bio end_io
1579 * functions. This is where read checksum verification actually happens
1580 */
1581static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001582{
Chris Masonce9adaa2008-04-09 16:28:12 -04001583 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001584 struct end_io_wq *end_io_wq;
1585 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001586 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001587
Chris Mason8b712842008-06-11 16:50:36 -04001588 end_io_wq = container_of(work, struct end_io_wq, work);
1589 bio = end_io_wq->bio;
1590 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001591
Chris Masoncad321a2008-12-17 14:51:42 -05001592 /* metadata bio reads are special because the whole tree block must
Chris Mason8b712842008-06-11 16:50:36 -04001593 * be checksummed at once. This makes sure the entire block is in
1594 * ram and up to date before trying to verify things. For
1595 * blocksize <= pagesize, it is basically a noop
1596 */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001597 if (!(bio->bi_rw & REQ_WRITE) && end_io_wq->metadata &&
Chris Masoncad321a2008-12-17 14:51:42 -05001598 !bio_ready_for_csum(bio)) {
Chris Masond20f7042008-12-08 16:58:54 -05001599 btrfs_queue_worker(&fs_info->endio_meta_workers,
Chris Mason8b712842008-06-11 16:50:36 -04001600 &end_io_wq->work);
1601 return;
1602 }
1603 error = end_io_wq->error;
1604 bio->bi_private = end_io_wq->private;
1605 bio->bi_end_io = end_io_wq->end_io;
1606 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001607 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001608}
1609
Chris Masona74a4b92008-06-25 16:01:31 -04001610static int cleaner_kthread(void *arg)
1611{
1612 struct btrfs_root *root = arg;
1613
1614 do {
Chris Masona74a4b92008-06-25 16:01:31 -04001615 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
Yan, Zheng76dda932009-09-21 16:00:26 -04001616
1617 if (!(root->fs_info->sb->s_flags & MS_RDONLY) &&
1618 mutex_trylock(&root->fs_info->cleaner_mutex)) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001619 btrfs_run_delayed_iputs(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04001620 btrfs_clean_old_snapshots(root);
1621 mutex_unlock(&root->fs_info->cleaner_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001622 btrfs_run_defrag_inodes(root->fs_info);
Yan, Zheng76dda932009-09-21 16:00:26 -04001623 }
Chris Masona74a4b92008-06-25 16:01:31 -04001624
Tejun Heoa0acae02011-11-21 12:32:22 -08001625 if (!try_to_freeze()) {
Chris Masona74a4b92008-06-25 16:01:31 -04001626 set_current_state(TASK_INTERRUPTIBLE);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001627 if (!kthread_should_stop())
1628 schedule();
Chris Masona74a4b92008-06-25 16:01:31 -04001629 __set_current_state(TASK_RUNNING);
1630 }
1631 } while (!kthread_should_stop());
1632 return 0;
1633}
1634
1635static int transaction_kthread(void *arg)
1636{
1637 struct btrfs_root *root = arg;
1638 struct btrfs_trans_handle *trans;
1639 struct btrfs_transaction *cur;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001640 u64 transid;
Chris Masona74a4b92008-06-25 16:01:31 -04001641 unsigned long now;
1642 unsigned long delay;
Jan Kara914b2002012-03-12 16:05:50 +01001643 bool cannot_commit;
Chris Masona74a4b92008-06-25 16:01:31 -04001644
1645 do {
Jan Kara914b2002012-03-12 16:05:50 +01001646 cannot_commit = false;
Chris Masona74a4b92008-06-25 16:01:31 -04001647 delay = HZ * 30;
1648 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1649 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1650
Josef Bacika4abeea2011-04-11 17:25:13 -04001651 spin_lock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001652 cur = root->fs_info->running_transaction;
1653 if (!cur) {
Josef Bacika4abeea2011-04-11 17:25:13 -04001654 spin_unlock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001655 goto sleep;
1656 }
Yan Zheng31153d82008-07-28 15:32:19 -04001657
Chris Masona74a4b92008-06-25 16:01:31 -04001658 now = get_seconds();
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001659 if (!cur->blocked &&
1660 (now < cur->start_time || now - cur->start_time < 30)) {
Josef Bacika4abeea2011-04-11 17:25:13 -04001661 spin_unlock(&root->fs_info->trans_lock);
Chris Masona74a4b92008-06-25 16:01:31 -04001662 delay = HZ * 5;
1663 goto sleep;
1664 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001665 transid = cur->transid;
Josef Bacika4abeea2011-04-11 17:25:13 -04001666 spin_unlock(&root->fs_info->trans_lock);
Chris Mason56bec292009-03-13 10:10:06 -04001667
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001668 /* If the file system is aborted, this will always fail. */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001669 trans = btrfs_join_transaction(root);
Jan Kara914b2002012-03-12 16:05:50 +01001670 if (IS_ERR(trans)) {
1671 cannot_commit = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001672 goto sleep;
Jan Kara914b2002012-03-12 16:05:50 +01001673 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001674 if (transid == trans->transid) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001675 btrfs_commit_transaction(trans, root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001676 } else {
1677 btrfs_end_transaction(trans, root);
1678 }
Chris Masona74a4b92008-06-25 16:01:31 -04001679sleep:
1680 wake_up_process(root->fs_info->cleaner_kthread);
1681 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1682
Tejun Heoa0acae02011-11-21 12:32:22 -08001683 if (!try_to_freeze()) {
Chris Masona74a4b92008-06-25 16:01:31 -04001684 set_current_state(TASK_INTERRUPTIBLE);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001685 if (!kthread_should_stop() &&
Jan Kara914b2002012-03-12 16:05:50 +01001686 (!btrfs_transaction_blocked(root->fs_info) ||
1687 cannot_commit))
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001688 schedule_timeout(delay);
Chris Masona74a4b92008-06-25 16:01:31 -04001689 __set_current_state(TASK_RUNNING);
1690 }
1691 } while (!kthread_should_stop());
1692 return 0;
1693}
1694
Chris Masonaf31f5e2011-11-03 15:17:42 -04001695/*
1696 * this will find the highest generation in the array of
1697 * root backups. The index of the highest array is returned,
1698 * or -1 if we can't find anything.
1699 *
1700 * We check to make sure the array is valid by comparing the
1701 * generation of the latest root in the array with the generation
1702 * in the super block. If they don't match we pitch it.
1703 */
1704static int find_newest_super_backup(struct btrfs_fs_info *info, u64 newest_gen)
1705{
1706 u64 cur;
1707 int newest_index = -1;
1708 struct btrfs_root_backup *root_backup;
1709 int i;
1710
1711 for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
1712 root_backup = info->super_copy->super_roots + i;
1713 cur = btrfs_backup_tree_root_gen(root_backup);
1714 if (cur == newest_gen)
1715 newest_index = i;
1716 }
1717
1718 /* check to see if we actually wrapped around */
1719 if (newest_index == BTRFS_NUM_BACKUP_ROOTS - 1) {
1720 root_backup = info->super_copy->super_roots;
1721 cur = btrfs_backup_tree_root_gen(root_backup);
1722 if (cur == newest_gen)
1723 newest_index = 0;
1724 }
1725 return newest_index;
1726}
1727
1728
1729/*
1730 * find the oldest backup so we know where to store new entries
1731 * in the backup array. This will set the backup_root_index
1732 * field in the fs_info struct
1733 */
1734static void find_oldest_super_backup(struct btrfs_fs_info *info,
1735 u64 newest_gen)
1736{
1737 int newest_index = -1;
1738
1739 newest_index = find_newest_super_backup(info, newest_gen);
1740 /* if there was garbage in there, just move along */
1741 if (newest_index == -1) {
1742 info->backup_root_index = 0;
1743 } else {
1744 info->backup_root_index = (newest_index + 1) % BTRFS_NUM_BACKUP_ROOTS;
1745 }
1746}
1747
1748/*
1749 * copy all the root pointers into the super backup array.
1750 * this will bump the backup pointer by one when it is
1751 * done
1752 */
1753static void backup_super_roots(struct btrfs_fs_info *info)
1754{
1755 int next_backup;
1756 struct btrfs_root_backup *root_backup;
1757 int last_backup;
1758
1759 next_backup = info->backup_root_index;
1760 last_backup = (next_backup + BTRFS_NUM_BACKUP_ROOTS - 1) %
1761 BTRFS_NUM_BACKUP_ROOTS;
1762
1763 /*
1764 * just overwrite the last backup if we're at the same generation
1765 * this happens only at umount
1766 */
1767 root_backup = info->super_for_commit->super_roots + last_backup;
1768 if (btrfs_backup_tree_root_gen(root_backup) ==
1769 btrfs_header_generation(info->tree_root->node))
1770 next_backup = last_backup;
1771
1772 root_backup = info->super_for_commit->super_roots + next_backup;
1773
1774 /*
1775 * make sure all of our padding and empty slots get zero filled
1776 * regardless of which ones we use today
1777 */
1778 memset(root_backup, 0, sizeof(*root_backup));
1779
1780 info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS;
1781
1782 btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start);
1783 btrfs_set_backup_tree_root_gen(root_backup,
1784 btrfs_header_generation(info->tree_root->node));
1785
1786 btrfs_set_backup_tree_root_level(root_backup,
1787 btrfs_header_level(info->tree_root->node));
1788
1789 btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start);
1790 btrfs_set_backup_chunk_root_gen(root_backup,
1791 btrfs_header_generation(info->chunk_root->node));
1792 btrfs_set_backup_chunk_root_level(root_backup,
1793 btrfs_header_level(info->chunk_root->node));
1794
1795 btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start);
1796 btrfs_set_backup_extent_root_gen(root_backup,
1797 btrfs_header_generation(info->extent_root->node));
1798 btrfs_set_backup_extent_root_level(root_backup,
1799 btrfs_header_level(info->extent_root->node));
1800
Chris Mason7c7e82a2011-11-06 18:50:56 -05001801 /*
1802 * we might commit during log recovery, which happens before we set
1803 * the fs_root. Make sure it is valid before we fill it in.
1804 */
1805 if (info->fs_root && info->fs_root->node) {
1806 btrfs_set_backup_fs_root(root_backup,
1807 info->fs_root->node->start);
1808 btrfs_set_backup_fs_root_gen(root_backup,
Chris Masonaf31f5e2011-11-03 15:17:42 -04001809 btrfs_header_generation(info->fs_root->node));
Chris Mason7c7e82a2011-11-06 18:50:56 -05001810 btrfs_set_backup_fs_root_level(root_backup,
Chris Masonaf31f5e2011-11-03 15:17:42 -04001811 btrfs_header_level(info->fs_root->node));
Chris Mason7c7e82a2011-11-06 18:50:56 -05001812 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04001813
1814 btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start);
1815 btrfs_set_backup_dev_root_gen(root_backup,
1816 btrfs_header_generation(info->dev_root->node));
1817 btrfs_set_backup_dev_root_level(root_backup,
1818 btrfs_header_level(info->dev_root->node));
1819
1820 btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start);
1821 btrfs_set_backup_csum_root_gen(root_backup,
1822 btrfs_header_generation(info->csum_root->node));
1823 btrfs_set_backup_csum_root_level(root_backup,
1824 btrfs_header_level(info->csum_root->node));
1825
1826 btrfs_set_backup_total_bytes(root_backup,
1827 btrfs_super_total_bytes(info->super_copy));
1828 btrfs_set_backup_bytes_used(root_backup,
1829 btrfs_super_bytes_used(info->super_copy));
1830 btrfs_set_backup_num_devices(root_backup,
1831 btrfs_super_num_devices(info->super_copy));
1832
1833 /*
1834 * if we don't copy this out to the super_copy, it won't get remembered
1835 * for the next commit
1836 */
1837 memcpy(&info->super_copy->super_roots,
1838 &info->super_for_commit->super_roots,
1839 sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS);
1840}
1841
1842/*
1843 * this copies info out of the root backup array and back into
1844 * the in-memory super block. It is meant to help iterate through
1845 * the array, so you send it the number of backups you've already
1846 * tried and the last backup index you used.
1847 *
1848 * this returns -1 when it has tried all the backups
1849 */
1850static noinline int next_root_backup(struct btrfs_fs_info *info,
1851 struct btrfs_super_block *super,
1852 int *num_backups_tried, int *backup_index)
1853{
1854 struct btrfs_root_backup *root_backup;
1855 int newest = *backup_index;
1856
1857 if (*num_backups_tried == 0) {
1858 u64 gen = btrfs_super_generation(super);
1859
1860 newest = find_newest_super_backup(info, gen);
1861 if (newest == -1)
1862 return -1;
1863
1864 *backup_index = newest;
1865 *num_backups_tried = 1;
1866 } else if (*num_backups_tried == BTRFS_NUM_BACKUP_ROOTS) {
1867 /* we've tried all the backups, all done */
1868 return -1;
1869 } else {
1870 /* jump to the next oldest backup */
1871 newest = (*backup_index + BTRFS_NUM_BACKUP_ROOTS - 1) %
1872 BTRFS_NUM_BACKUP_ROOTS;
1873 *backup_index = newest;
1874 *num_backups_tried += 1;
1875 }
1876 root_backup = super->super_roots + newest;
1877
1878 btrfs_set_super_generation(super,
1879 btrfs_backup_tree_root_gen(root_backup));
1880 btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup));
1881 btrfs_set_super_root_level(super,
1882 btrfs_backup_tree_root_level(root_backup));
1883 btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup));
1884
1885 /*
1886 * fixme: the total bytes and num_devices need to match or we should
1887 * need a fsck
1888 */
1889 btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup));
1890 btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup));
1891 return 0;
1892}
1893
1894/* helper to cleanup tree roots */
1895static void free_root_pointers(struct btrfs_fs_info *info, int chunk_root)
1896{
1897 free_extent_buffer(info->tree_root->node);
1898 free_extent_buffer(info->tree_root->commit_root);
1899 free_extent_buffer(info->dev_root->node);
1900 free_extent_buffer(info->dev_root->commit_root);
1901 free_extent_buffer(info->extent_root->node);
1902 free_extent_buffer(info->extent_root->commit_root);
1903 free_extent_buffer(info->csum_root->node);
1904 free_extent_buffer(info->csum_root->commit_root);
1905
1906 info->tree_root->node = NULL;
1907 info->tree_root->commit_root = NULL;
1908 info->dev_root->node = NULL;
1909 info->dev_root->commit_root = NULL;
1910 info->extent_root->node = NULL;
1911 info->extent_root->commit_root = NULL;
1912 info->csum_root->node = NULL;
1913 info->csum_root->commit_root = NULL;
1914
1915 if (chunk_root) {
1916 free_extent_buffer(info->chunk_root->node);
1917 free_extent_buffer(info->chunk_root->commit_root);
1918 info->chunk_root->node = NULL;
1919 info->chunk_root->commit_root = NULL;
1920 }
1921}
1922
1923
Al Viroad2b2c82011-11-17 01:10:02 -05001924int open_ctree(struct super_block *sb,
1925 struct btrfs_fs_devices *fs_devices,
1926 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001927{
Chris Masondb945352007-10-15 16:15:53 -04001928 u32 sectorsize;
1929 u32 nodesize;
1930 u32 leafsize;
1931 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001932 u32 stripesize;
Yan Zheng84234f32008-10-29 14:49:05 -04001933 u64 generation;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001934 u64 features;
Chris Mason3de45862008-11-17 21:02:50 -05001935 struct btrfs_key location;
Chris Masona061fc82008-05-07 11:43:44 -04001936 struct buffer_head *bh;
Ilya Dryomov4d34b272011-11-09 00:08:15 +02001937 struct btrfs_super_block *disk_super;
Al Viro815745c2011-11-17 15:40:49 -05001938 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Al Virof84a8bd2011-11-17 15:57:57 -05001939 struct btrfs_root *tree_root;
Ilya Dryomov4d34b272011-11-09 00:08:15 +02001940 struct btrfs_root *extent_root;
1941 struct btrfs_root *csum_root;
1942 struct btrfs_root *chunk_root;
1943 struct btrfs_root *dev_root;
Chris Masone02119d2008-09-05 16:13:11 -04001944 struct btrfs_root *log_tree_root;
Chris Masoneb60cea2007-02-02 09:18:22 -05001945 int ret;
Yane58ca022008-04-01 11:21:34 -04001946 int err = -EINVAL;
Chris Masonaf31f5e2011-11-03 15:17:42 -04001947 int num_backups_tried = 0;
1948 int backup_index = 0;
Chris Mason4543df72008-06-11 21:47:56 -04001949
Al Virof84a8bd2011-11-17 15:57:57 -05001950 tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info);
Al Viro6f07e422011-11-17 00:46:16 -05001951 extent_root = fs_info->extent_root = btrfs_alloc_root(fs_info);
1952 csum_root = fs_info->csum_root = btrfs_alloc_root(fs_info);
1953 chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info);
1954 dev_root = fs_info->dev_root = btrfs_alloc_root(fs_info);
Chris Mason8790d502008-04-03 16:29:03 -04001955
Al Virof84a8bd2011-11-17 15:57:57 -05001956 if (!tree_root || !extent_root || !csum_root ||
1957 !chunk_root || !dev_root) {
Chris Mason39279cc2007-06-12 06:35:45 -04001958 err = -ENOMEM;
1959 goto fail;
1960 }
Yan, Zheng76dda932009-09-21 16:00:26 -04001961
1962 ret = init_srcu_struct(&fs_info->subvol_srcu);
1963 if (ret) {
1964 err = ret;
1965 goto fail;
1966 }
1967
1968 ret = setup_bdi(fs_info, &fs_info->bdi);
1969 if (ret) {
1970 err = ret;
1971 goto fail_srcu;
1972 }
1973
1974 fs_info->btree_inode = new_inode(sb);
1975 if (!fs_info->btree_inode) {
1976 err = -ENOMEM;
1977 goto fail_bdi;
1978 }
1979
Chris Masona6591712011-07-19 12:04:14 -04001980 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Miao Xie1561ded2011-03-27 16:07:36 +08001981
Yan, Zheng76dda932009-09-21 16:00:26 -04001982 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
Chris Mason8fd17792007-04-19 21:01:03 -04001983 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001984 INIT_LIST_HEAD(&fs_info->dead_roots);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001985 INIT_LIST_HEAD(&fs_info->delayed_iputs);
Chris Mason19c00dd2007-10-15 16:19:22 -04001986 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001987 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04001988 INIT_LIST_HEAD(&fs_info->ordered_operations);
Yan Zheng11833d62009-09-11 16:11:19 -04001989 INIT_LIST_HEAD(&fs_info->caching_block_groups);
Chris Mason1832a6d2007-12-21 16:27:21 -05001990 spin_lock_init(&fs_info->delalloc_lock);
Josef Bacika4abeea2011-04-11 17:25:13 -04001991 spin_lock_init(&fs_info->trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001992 spin_lock_init(&fs_info->ref_cache_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04001993 spin_lock_init(&fs_info->fs_roots_radix_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001994 spin_lock_init(&fs_info->delayed_iput_lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001995 spin_lock_init(&fs_info->defrag_inodes_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04001996 spin_lock_init(&fs_info->free_chunk_lock);
Chris Mason75857172011-06-13 20:00:16 -04001997 mutex_init(&fs_info->reloc_mutex);
Chris Mason19c00dd2007-10-15 16:19:22 -04001998
Josef Bacik58176a92007-08-29 15:47:34 -04001999 init_completion(&fs_info->kobj_unregister);
Chris Mason0b86a832008-03-24 15:01:56 -04002000 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04002001 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04002002 btrfs_mapping_init(&fs_info->mapping_tree);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002003 btrfs_init_block_rsv(&fs_info->global_block_rsv);
2004 btrfs_init_block_rsv(&fs_info->delalloc_block_rsv);
2005 btrfs_init_block_rsv(&fs_info->trans_block_rsv);
2006 btrfs_init_block_rsv(&fs_info->chunk_block_rsv);
2007 btrfs_init_block_rsv(&fs_info->empty_block_rsv);
Josef Bacik6d668dd2011-11-03 22:54:25 -04002008 btrfs_init_block_rsv(&fs_info->delayed_block_rsv);
Chris Masoncb03c742008-05-15 16:15:45 -04002009 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason771ed682008-11-06 22:02:51 -05002010 atomic_set(&fs_info->async_delalloc_pages, 0);
Chris Mason8c8bee12008-09-29 11:19:10 -04002011 atomic_set(&fs_info->async_submit_draining, 0);
Chris Mason0986fe92008-08-15 15:34:15 -04002012 atomic_set(&fs_info->nr_async_bios, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002013 atomic_set(&fs_info->defrag_running, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04002014 fs_info->sb = sb;
Chris Mason6f568d32008-01-29 16:03:38 -05002015 fs_info->max_inline = 8192 * 1024;
Josef Bacik9ed74f22009-09-11 16:12:44 -04002016 fs_info->metadata_ratio = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04002017 fs_info->defrag_inodes = RB_ROOT;
Josef Bacika4abeea2011-04-11 17:25:13 -04002018 fs_info->trans_no_join = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04002019 fs_info->free_chunk_space = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002020
Arne Jansen90519d62011-05-23 14:30:00 +02002021 /* readahead state */
2022 INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_WAIT);
2023 spin_lock_init(&fs_info->reada_lock);
Chris Mason2c90e5d2007-04-02 10:50:19 -04002024
Chris Masonb34b0862008-12-19 15:43:22 -05002025 fs_info->thread_pool_size = min_t(unsigned long,
2026 num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04002027
Chris Mason3eaa2882008-07-24 11:57:52 -04002028 INIT_LIST_HEAD(&fs_info->ordered_extents);
2029 spin_lock_init(&fs_info->ordered_extent_lock);
Miao Xie16cdcec2011-04-22 18:12:22 +08002030 fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root),
2031 GFP_NOFS);
2032 if (!fs_info->delayed_root) {
2033 err = -ENOMEM;
2034 goto fail_iput;
2035 }
2036 btrfs_init_delayed_root(fs_info->delayed_root);
Chris Mason3eaa2882008-07-24 11:57:52 -04002037
Arne Jansena2de7332011-03-08 14:14:00 +01002038 mutex_init(&fs_info->scrub_lock);
2039 atomic_set(&fs_info->scrubs_running, 0);
2040 atomic_set(&fs_info->scrub_pause_req, 0);
2041 atomic_set(&fs_info->scrubs_paused, 0);
2042 atomic_set(&fs_info->scrub_cancel_req, 0);
2043 init_waitqueue_head(&fs_info->scrub_pause_wait);
2044 init_rwsem(&fs_info->scrub_super_lock);
2045 fs_info->scrub_workers_refcnt = 0;
Stefan Behrens21adbd52011-11-09 13:44:05 +01002046#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2047 fs_info->check_integrity_print_mask = 0;
2048#endif
Arne Jansena2de7332011-03-08 14:14:00 +01002049
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002050 spin_lock_init(&fs_info->balance_lock);
2051 mutex_init(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002052 atomic_set(&fs_info->balance_running, 0);
2053 atomic_set(&fs_info->balance_pause_req, 0);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02002054 atomic_set(&fs_info->balance_cancel_req, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002055 fs_info->balance_ctl = NULL;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02002056 init_waitqueue_head(&fs_info->balance_wait_q);
Chris Masona061fc82008-05-07 11:43:44 -04002057
Chris Mason0afbaf82008-04-18 14:17:20 -04002058 sb->s_blocksize = 4096;
2059 sb->s_blocksize_bits = blksize_bits(4096);
Jens Axboe32a88aa2009-09-16 15:02:33 +02002060 sb->s_bdi = &fs_info->bdi;
Chris Mason0afbaf82008-04-18 14:17:20 -04002061
Yan, Zheng76dda932009-09-21 16:00:26 -04002062 fs_info->btree_inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
Miklos Szeredibfe86842011-10-28 14:13:29 +02002063 set_nlink(fs_info->btree_inode, 1);
Chris Mason0afbaf82008-04-18 14:17:20 -04002064 /*
2065 * we set the i_size on the btree inode to the max possible int.
2066 * the real end of the address space is determined by all of
2067 * the devices in the system
2068 */
2069 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04002070 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04002071 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
2072
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002073 RB_CLEAR_NODE(&BTRFS_I(fs_info->btree_inode)->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -05002074 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
David Sterbaf993c882011-04-20 23:35:57 +02002075 fs_info->btree_inode->i_mapping);
David Sterbaa8067e02011-04-21 00:34:43 +02002076 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree);
Chris Mason0da54682007-11-07 21:08:01 -05002077
Chris Masond1310b22008-01-24 16:13:08 -05002078 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
2079
Chris Mason0f7d52f2007-04-09 10:42:37 -04002080 BTRFS_I(fs_info->btree_inode)->root = tree_root;
2081 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
2082 sizeof(struct btrfs_key));
Yan, Zheng76dda932009-09-21 16:00:26 -04002083 BTRFS_I(fs_info->btree_inode)->dummy_inode = 1;
Chris Mason22b0ebd2007-03-30 08:47:31 -04002084 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002085
Chris Masone02119d2008-09-05 16:13:11 -04002086 spin_lock_init(&fs_info->block_group_cache_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002087 fs_info->block_group_cache_tree = RB_ROOT;
Chris Mason925baed2008-06-25 16:01:30 -04002088
Yan Zheng11833d62009-09-11 16:11:19 -04002089 extent_io_tree_init(&fs_info->freed_extents[0],
David Sterbaf993c882011-04-20 23:35:57 +02002090 fs_info->btree_inode->i_mapping);
Yan Zheng11833d62009-09-11 16:11:19 -04002091 extent_io_tree_init(&fs_info->freed_extents[1],
David Sterbaf993c882011-04-20 23:35:57 +02002092 fs_info->btree_inode->i_mapping);
Yan Zheng11833d62009-09-11 16:11:19 -04002093 fs_info->pinned_extents = &fs_info->freed_extents[0];
Chris Masone6dcd2d2008-07-17 12:53:50 -04002094 fs_info->do_barriers = 1;
Chris Masonf9295742008-07-17 12:54:14 -04002095
Chris Masond98237b2007-03-28 13:57:48 -04002096
Chris Mason5a3f23d2009-03-31 13:27:11 -04002097 mutex_init(&fs_info->ordered_operations_mutex);
Chris Mason30ae8462007-03-29 09:59:15 -04002098 mutex_init(&fs_info->tree_log_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002099 mutex_init(&fs_info->chunk_mutex);
2100 mutex_init(&fs_info->transaction_kthread_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04002101 mutex_init(&fs_info->cleaner_mutex);
2102 mutex_init(&fs_info->volume_mutex);
Yan Zheng276e6802009-07-30 09:40:40 -04002103 init_rwsem(&fs_info->extent_commit_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00002104 init_rwsem(&fs_info->cleanup_work_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002105 init_rwsem(&fs_info->subvol_sem);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002106
2107 btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
2108 btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
2109
Chris Mason7d9eb122008-07-08 14:19:17 -04002110 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Mason3768f362007-03-13 16:47:54 -04002111 init_waitqueue_head(&fs_info->transaction_wait);
Sage Weilbb9c12c2010-10-29 15:37:34 -04002112 init_waitqueue_head(&fs_info->transaction_blocked_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04002113 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Mason9a8dd152007-02-23 08:38:36 -05002114
Chris Mason0b86a832008-03-24 15:01:56 -04002115 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04002116 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04002117
Yan Zhenga512bbf2008-12-08 16:46:26 -05002118 bh = btrfs_read_dev_super(fs_devices->latest_bdev);
Dave Young20b45072011-01-08 10:09:13 +00002119 if (!bh) {
2120 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002121 goto fail_alloc;
Dave Young20b45072011-01-08 10:09:13 +00002122 }
Chris Mason39279cc2007-06-12 06:35:45 -04002123
David Sterba6c417612011-04-13 15:41:04 +02002124 memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy));
2125 memcpy(fs_info->super_for_commit, fs_info->super_copy,
2126 sizeof(*fs_info->super_for_commit));
Chris Masona061fc82008-05-07 11:43:44 -04002127 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04002128
David Sterba6c417612011-04-13 15:41:04 +02002129 memcpy(fs_info->fsid, fs_info->super_copy->fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04002130
David Sterba6c417612011-04-13 15:41:04 +02002131 disk_super = fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04002132 if (!btrfs_super_root(disk_super))
Miao Xie16cdcec2011-04-22 18:12:22 +08002133 goto fail_alloc;
Chris Mason0f7d52f2007-04-09 10:42:37 -04002134
liuboacce9522011-01-06 19:30:25 +08002135 /* check FS state, whether FS is broken. */
2136 fs_info->fs_state |= btrfs_super_flags(disk_super);
2137
2138 btrfs_check_super_valid(fs_info, sb->s_flags & MS_RDONLY);
2139
Liu Bo75e7cb72011-03-22 10:12:20 +00002140 /*
Chris Masonaf31f5e2011-11-03 15:17:42 -04002141 * run through our array of backup supers and setup
2142 * our ring pointer to the oldest one
2143 */
2144 generation = btrfs_super_generation(disk_super);
2145 find_oldest_super_backup(fs_info, generation);
2146
2147 /*
Liu Bo75e7cb72011-03-22 10:12:20 +00002148 * In the long term, we'll store the compression type in the super
2149 * block, and it'll be used for per file compression control.
2150 */
2151 fs_info->compress_type = BTRFS_COMPRESS_ZLIB;
2152
Yan Zheng2b820322008-11-17 21:11:30 -05002153 ret = btrfs_parse_options(tree_root, options);
2154 if (ret) {
2155 err = ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08002156 goto fail_alloc;
Yan Zheng2b820322008-11-17 21:11:30 -05002157 }
Chris Masondfe25022008-05-13 13:46:40 -04002158
Josef Bacikf2b636e2008-12-02 06:36:08 -05002159 features = btrfs_super_incompat_flags(disk_super) &
2160 ~BTRFS_FEATURE_INCOMPAT_SUPP;
2161 if (features) {
2162 printk(KERN_ERR "BTRFS: couldn't mount because of "
2163 "unsupported optional features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07002164 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05002165 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002166 goto fail_alloc;
Josef Bacikf2b636e2008-12-02 06:36:08 -05002167 }
2168
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002169 features = btrfs_super_incompat_flags(disk_super);
Li Zefana6fa6fa2010-10-25 15:12:26 +08002170 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
2171 if (tree_root->fs_info->compress_type & BTRFS_COMPRESS_LZO)
2172 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
2173 btrfs_set_super_incompat_flags(disk_super, features);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002174
Josef Bacikf2b636e2008-12-02 06:36:08 -05002175 features = btrfs_super_compat_ro_flags(disk_super) &
2176 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
2177 if (!(sb->s_flags & MS_RDONLY) && features) {
2178 printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
2179 "unsupported option features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07002180 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05002181 err = -EINVAL;
Miao Xie16cdcec2011-04-22 18:12:22 +08002182 goto fail_alloc;
Josef Bacikf2b636e2008-12-02 06:36:08 -05002183 }
Chris Mason61d92c32009-10-02 19:11:56 -04002184
2185 btrfs_init_workers(&fs_info->generic_worker,
2186 "genwork", 1, NULL);
2187
Chris Mason5443be42008-08-15 15:34:16 -04002188 btrfs_init_workers(&fs_info->workers, "worker",
Chris Mason61d92c32009-10-02 19:11:56 -04002189 fs_info->thread_pool_size,
2190 &fs_info->generic_worker);
Chris Masonc8b97812008-10-29 14:49:59 -04002191
Chris Mason771ed682008-11-06 22:02:51 -05002192 btrfs_init_workers(&fs_info->delalloc_workers, "delalloc",
Chris Mason61d92c32009-10-02 19:11:56 -04002193 fs_info->thread_pool_size,
2194 &fs_info->generic_worker);
Chris Mason771ed682008-11-06 22:02:51 -05002195
Chris Mason5443be42008-08-15 15:34:16 -04002196 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04002197 min_t(u64, fs_devices->num_devices,
Chris Mason61d92c32009-10-02 19:11:56 -04002198 fs_info->thread_pool_size),
2199 &fs_info->generic_worker);
Chris Mason61b49442008-07-31 15:42:53 -04002200
Josef Bacikbab39bf2011-06-30 14:42:28 -04002201 btrfs_init_workers(&fs_info->caching_workers, "cache",
2202 2, &fs_info->generic_worker);
2203
Chris Mason61b49442008-07-31 15:42:53 -04002204 /* a higher idle thresh on the submit workers makes it much more
2205 * likely that bios will be send down in a sane order to the
2206 * devices
2207 */
2208 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04002209
Chris Mason771ed682008-11-06 22:02:51 -05002210 fs_info->workers.idle_thresh = 16;
Chris Mason4a69a412008-11-06 22:03:00 -05002211 fs_info->workers.ordered = 1;
Chris Mason61b49442008-07-31 15:42:53 -04002212
Chris Mason771ed682008-11-06 22:02:51 -05002213 fs_info->delalloc_workers.idle_thresh = 2;
2214 fs_info->delalloc_workers.ordered = 1;
2215
Chris Mason61d92c32009-10-02 19:11:56 -04002216 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1,
2217 &fs_info->generic_worker);
Chris Mason5443be42008-08-15 15:34:16 -04002218 btrfs_init_workers(&fs_info->endio_workers, "endio",
Chris Mason61d92c32009-10-02 19:11:56 -04002219 fs_info->thread_pool_size,
2220 &fs_info->generic_worker);
Chris Masond20f7042008-12-08 16:58:54 -05002221 btrfs_init_workers(&fs_info->endio_meta_workers, "endio-meta",
Chris Mason61d92c32009-10-02 19:11:56 -04002222 fs_info->thread_pool_size,
2223 &fs_info->generic_worker);
Chris Masoncad321a2008-12-17 14:51:42 -05002224 btrfs_init_workers(&fs_info->endio_meta_write_workers,
Chris Mason61d92c32009-10-02 19:11:56 -04002225 "endio-meta-write", fs_info->thread_pool_size,
2226 &fs_info->generic_worker);
Chris Mason5443be42008-08-15 15:34:16 -04002227 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Mason61d92c32009-10-02 19:11:56 -04002228 fs_info->thread_pool_size,
2229 &fs_info->generic_worker);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002230 btrfs_init_workers(&fs_info->endio_freespace_worker, "freespace-write",
2231 1, &fs_info->generic_worker);
Miao Xie16cdcec2011-04-22 18:12:22 +08002232 btrfs_init_workers(&fs_info->delayed_workers, "delayed-meta",
2233 fs_info->thread_pool_size,
2234 &fs_info->generic_worker);
Arne Jansen90519d62011-05-23 14:30:00 +02002235 btrfs_init_workers(&fs_info->readahead_workers, "readahead",
2236 fs_info->thread_pool_size,
2237 &fs_info->generic_worker);
Chris Mason61b49442008-07-31 15:42:53 -04002238
2239 /*
2240 * endios are largely parallel and should have a very
2241 * low idle thresh
2242 */
2243 fs_info->endio_workers.idle_thresh = 4;
Chris Masonb51912c2009-02-04 09:23:24 -05002244 fs_info->endio_meta_workers.idle_thresh = 4;
2245
Chris Mason90428462009-08-04 16:56:34 -04002246 fs_info->endio_write_workers.idle_thresh = 2;
2247 fs_info->endio_meta_write_workers.idle_thresh = 2;
Arne Jansen90519d62011-05-23 14:30:00 +02002248 fs_info->readahead_workers.idle_thresh = 2;
Chris Mason90428462009-08-04 16:56:34 -04002249
Josef Bacik0dc3b842011-11-18 14:37:27 -05002250 /*
2251 * btrfs_start_workers can really only fail because of ENOMEM so just
2252 * return -ENOMEM if any of these fail.
2253 */
2254 ret = btrfs_start_workers(&fs_info->workers);
2255 ret |= btrfs_start_workers(&fs_info->generic_worker);
2256 ret |= btrfs_start_workers(&fs_info->submit_workers);
2257 ret |= btrfs_start_workers(&fs_info->delalloc_workers);
2258 ret |= btrfs_start_workers(&fs_info->fixup_workers);
2259 ret |= btrfs_start_workers(&fs_info->endio_workers);
2260 ret |= btrfs_start_workers(&fs_info->endio_meta_workers);
2261 ret |= btrfs_start_workers(&fs_info->endio_meta_write_workers);
2262 ret |= btrfs_start_workers(&fs_info->endio_write_workers);
2263 ret |= btrfs_start_workers(&fs_info->endio_freespace_worker);
2264 ret |= btrfs_start_workers(&fs_info->delayed_workers);
2265 ret |= btrfs_start_workers(&fs_info->caching_workers);
2266 ret |= btrfs_start_workers(&fs_info->readahead_workers);
2267 if (ret) {
2268 ret = -ENOMEM;
2269 goto fail_sb_buffer;
2270 }
Chris Mason4543df72008-06-11 21:47:56 -04002271
Chris Mason4575c9c2008-04-18 16:13:31 -04002272 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
Chris Masonc8b97812008-10-29 14:49:59 -04002273 fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
2274 4 * 1024 * 1024 / PAGE_CACHE_SIZE);
Chris Mason4575c9c2008-04-18 16:13:31 -04002275
Chris Masondb945352007-10-15 16:15:53 -04002276 nodesize = btrfs_super_nodesize(disk_super);
2277 leafsize = btrfs_super_leafsize(disk_super);
2278 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05002279 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04002280 tree_root->nodesize = nodesize;
2281 tree_root->leafsize = leafsize;
2282 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05002283 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04002284
2285 sb->s_blocksize = sectorsize;
2286 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04002287
Chris Mason39279cc2007-06-12 06:35:45 -04002288 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
2289 sizeof(disk_super->magic))) {
Chris Masond3977122009-01-05 21:25:51 -05002290 printk(KERN_INFO "btrfs: valid FS not found on %s\n", sb->s_id);
Chris Mason39279cc2007-06-12 06:35:45 -04002291 goto fail_sb_buffer;
2292 }
Chris Mason19c00dd2007-10-15 16:19:22 -04002293
Keith Mannthey941b2dd2011-11-29 17:44:12 -08002294 if (sectorsize < PAGE_SIZE) {
2295 printk(KERN_WARNING "btrfs: Incompatible sector size "
2296 "found on %s\n", sb->s_id);
2297 goto fail_sb_buffer;
2298 }
2299
Chris Mason925baed2008-06-25 16:01:30 -04002300 mutex_lock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002301 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04002302 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04002303 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002304 printk(KERN_WARNING "btrfs: failed to read the system "
2305 "array on %s\n", sb->s_id);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002306 goto fail_sb_buffer;
Chris Mason84eed902008-04-25 09:04:37 -04002307 }
Chris Mason0b86a832008-03-24 15:01:56 -04002308
2309 blocksize = btrfs_level_size(tree_root,
2310 btrfs_super_chunk_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04002311 generation = btrfs_super_chunk_root_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04002312
2313 __setup_root(nodesize, leafsize, sectorsize, stripesize,
2314 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
2315
2316 chunk_root->node = read_tree_block(chunk_root,
2317 btrfs_super_chunk_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04002318 blocksize, generation);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002319 BUG_ON(!chunk_root->node); /* -ENOMEM */
David Woodhouse83121942009-07-22 16:52:13 -04002320 if (!test_bit(EXTENT_BUFFER_UPTODATE, &chunk_root->node->bflags)) {
2321 printk(KERN_WARNING "btrfs: failed to read chunk root on %s\n",
2322 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002323 goto fail_tree_roots;
David Woodhouse83121942009-07-22 16:52:13 -04002324 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002325 btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
2326 chunk_root->commit_root = btrfs_root_node(chunk_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002327
Chris Masone17cade2008-04-15 15:41:47 -04002328 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
Chris Masond3977122009-01-05 21:25:51 -05002329 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
2330 BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002331
Chris Mason0b86a832008-03-24 15:01:56 -04002332 ret = btrfs_read_chunk_tree(chunk_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002333 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002334 printk(KERN_WARNING "btrfs: failed to read chunk tree on %s\n",
2335 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002336 goto fail_tree_roots;
Yan Zheng2b820322008-11-17 21:11:30 -05002337 }
Chris Mason0b86a832008-03-24 15:01:56 -04002338
Chris Masondfe25022008-05-13 13:46:40 -04002339 btrfs_close_extra_devices(fs_devices);
2340
Chris Masona6b0d5c2012-02-20 20:53:43 -05002341 if (!fs_devices->latest_bdev) {
2342 printk(KERN_CRIT "btrfs: failed to read devices on %s\n",
2343 sb->s_id);
2344 goto fail_tree_roots;
2345 }
2346
Chris Masonaf31f5e2011-11-03 15:17:42 -04002347retry_root_backup:
Chris Masondb945352007-10-15 16:15:53 -04002348 blocksize = btrfs_level_size(tree_root,
2349 btrfs_super_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04002350 generation = btrfs_super_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04002351
Chris Masone20d96d2007-03-22 12:13:20 -04002352 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04002353 btrfs_super_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04002354 blocksize, generation);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002355 if (!tree_root->node ||
2356 !test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
David Woodhouse83121942009-07-22 16:52:13 -04002357 printk(KERN_WARNING "btrfs: failed to read tree root on %s\n",
2358 sb->s_id);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002359
2360 goto recovery_tree_root;
David Woodhouse83121942009-07-22 16:52:13 -04002361 }
Chris Masonaf31f5e2011-11-03 15:17:42 -04002362
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002363 btrfs_set_root_node(&tree_root->root_item, tree_root->node);
2364 tree_root->commit_root = btrfs_root_node(tree_root);
Chris Masondb945352007-10-15 16:15:53 -04002365
2366 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04002367 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002368 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002369 goto recovery_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002370 extent_root->track_dirty = 1;
2371
2372 ret = find_and_setup_root(tree_root, fs_info,
2373 BTRFS_DEV_TREE_OBJECTID, dev_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002374 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002375 goto recovery_tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002376 dev_root->track_dirty = 1;
Chris Mason3768f362007-03-13 16:47:54 -04002377
Chris Masond20f7042008-12-08 16:58:54 -05002378 ret = find_and_setup_root(tree_root, fs_info,
2379 BTRFS_CSUM_TREE_OBJECTID, csum_root);
2380 if (ret)
Chris Masonaf31f5e2011-11-03 15:17:42 -04002381 goto recovery_tree_root;
Chris Masond20f7042008-12-08 16:58:54 -05002382
2383 csum_root->track_dirty = 1;
2384
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002385 fs_info->generation = generation;
2386 fs_info->last_trans_committed = generation;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002387
liuboc59021f2011-03-07 02:13:14 +00002388 ret = btrfs_init_space_info(fs_info);
2389 if (ret) {
2390 printk(KERN_ERR "Failed to initial space info: %d\n", ret);
2391 goto fail_block_groups;
2392 }
2393
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002394 ret = btrfs_read_block_groups(extent_root);
2395 if (ret) {
2396 printk(KERN_ERR "Failed to read block groups: %d\n", ret);
2397 goto fail_block_groups;
2398 }
Chris Mason9078a3e2007-04-26 16:46:15 -04002399
Chris Masona74a4b92008-06-25 16:01:31 -04002400 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
2401 "btrfs-cleaner");
Qinghuang Feng57506d52009-01-21 10:49:16 -05002402 if (IS_ERR(fs_info->cleaner_kthread))
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002403 goto fail_block_groups;
Chris Masona74a4b92008-06-25 16:01:31 -04002404
2405 fs_info->transaction_kthread = kthread_run(transaction_kthread,
2406 tree_root,
2407 "btrfs-transaction");
Qinghuang Feng57506d52009-01-21 10:49:16 -05002408 if (IS_ERR(fs_info->transaction_kthread))
Chris Mason3f157a22008-06-25 16:01:31 -04002409 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04002410
Chris Masonc2898112009-06-10 09:51:32 -04002411 if (!btrfs_test_opt(tree_root, SSD) &&
2412 !btrfs_test_opt(tree_root, NOSSD) &&
2413 !fs_info->fs_devices->rotating) {
2414 printk(KERN_INFO "Btrfs detected SSD devices, enabling SSD "
2415 "mode\n");
2416 btrfs_set_opt(fs_info->mount_opt, SSD);
2417 }
2418
Stefan Behrens21adbd52011-11-09 13:44:05 +01002419#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2420 if (btrfs_test_opt(tree_root, CHECK_INTEGRITY)) {
2421 ret = btrfsic_mount(tree_root, fs_devices,
2422 btrfs_test_opt(tree_root,
2423 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ?
2424 1 : 0,
2425 fs_info->check_integrity_print_mask);
2426 if (ret)
2427 printk(KERN_WARNING "btrfs: failed to initialize"
2428 " integrity check module %s\n", sb->s_id);
2429 }
2430#endif
2431
liuboacce9522011-01-06 19:30:25 +08002432 /* do not make disk changes in broken FS */
2433 if (btrfs_super_log_root(disk_super) != 0 &&
2434 !(fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)) {
Chris Masone02119d2008-09-05 16:13:11 -04002435 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04002436
Chris Mason7c2ca462008-11-19 15:13:35 -05002437 if (fs_devices->rw_devices == 0) {
Chris Masond3977122009-01-05 21:25:51 -05002438 printk(KERN_WARNING "Btrfs log replay required "
2439 "on RO media\n");
Chris Mason7c2ca462008-11-19 15:13:35 -05002440 err = -EIO;
2441 goto fail_trans_kthread;
2442 }
Chris Masone02119d2008-09-05 16:13:11 -04002443 blocksize =
2444 btrfs_level_size(tree_root,
2445 btrfs_super_log_root_level(disk_super));
2446
Al Viro6f07e422011-11-17 00:46:16 -05002447 log_tree_root = btrfs_alloc_root(fs_info);
Dan Carpenter676e4c82010-05-29 09:43:07 +00002448 if (!log_tree_root) {
2449 err = -ENOMEM;
2450 goto fail_trans_kthread;
2451 }
Chris Masone02119d2008-09-05 16:13:11 -04002452
2453 __setup_root(nodesize, leafsize, sectorsize, stripesize,
2454 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
2455
2456 log_tree_root->node = read_tree_block(tree_root, bytenr,
Yan Zheng84234f32008-10-29 14:49:05 -04002457 blocksize,
2458 generation + 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002459 /* returns with log_tree_root freed on success */
Chris Masone02119d2008-09-05 16:13:11 -04002460 ret = btrfs_recover_log_trees(log_tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002461 if (ret) {
2462 btrfs_error(tree_root->fs_info, ret,
2463 "Failed to recover log tree");
2464 free_extent_buffer(log_tree_root->node);
2465 kfree(log_tree_root);
2466 goto fail_trans_kthread;
2467 }
Yan Zhenge556ce22008-11-20 10:25:19 -05002468
2469 if (sb->s_flags & MS_RDONLY) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002470 ret = btrfs_commit_super(tree_root);
2471 if (ret)
2472 goto fail_trans_kthread;
Yan Zhenge556ce22008-11-20 10:25:19 -05002473 }
Chris Masone02119d2008-09-05 16:13:11 -04002474 }
Zheng Yan1a40e232008-09-26 10:09:34 -04002475
Yan, Zheng76dda932009-09-21 16:00:26 -04002476 ret = btrfs_find_orphan_roots(tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002477 if (ret)
2478 goto fail_trans_kthread;
Yan, Zheng76dda932009-09-21 16:00:26 -04002479
Chris Mason7c2ca462008-11-19 15:13:35 -05002480 if (!(sb->s_flags & MS_RDONLY)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002481 ret = btrfs_cleanup_fs_roots(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002482 if (ret) {
2483 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002484
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002485 ret = btrfs_recover_relocation(tree_root);
Miao Xied7ce5842010-02-02 08:46:44 +00002486 if (ret < 0) {
2487 printk(KERN_WARNING
2488 "btrfs: failed to recover relocation\n");
2489 err = -EINVAL;
2490 goto fail_trans_kthread;
2491 }
Chris Mason7c2ca462008-11-19 15:13:35 -05002492 }
Zheng Yan1a40e232008-09-26 10:09:34 -04002493
Chris Mason3de45862008-11-17 21:02:50 -05002494 location.objectid = BTRFS_FS_TREE_OBJECTID;
2495 location.type = BTRFS_ROOT_ITEM_KEY;
2496 location.offset = (u64)-1;
2497
Chris Mason3de45862008-11-17 21:02:50 -05002498 fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
2499 if (!fs_info->fs_root)
Chris Mason7c2ca462008-11-19 15:13:35 -05002500 goto fail_trans_kthread;
Dan Carpenter3140c9a2010-05-29 09:44:10 +00002501 if (IS_ERR(fs_info->fs_root)) {
2502 err = PTR_ERR(fs_info->fs_root);
2503 goto fail_trans_kthread;
2504 }
Chris Masonc2898112009-06-10 09:51:32 -04002505
Josef Bacike3acc2a2010-01-26 14:30:53 +00002506 if (!(sb->s_flags & MS_RDONLY)) {
2507 down_read(&fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002508 err = btrfs_orphan_cleanup(fs_info->fs_root);
2509 if (!err)
2510 err = btrfs_orphan_cleanup(fs_info->tree_root);
Josef Bacike3acc2a2010-01-26 14:30:53 +00002511 up_read(&fs_info->cleanup_work_sem);
Ilya Dryomov59641012012-01-16 22:04:48 +02002512
2513 if (!err)
2514 err = btrfs_recover_balance(fs_info->tree_root);
2515
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002516 if (err) {
2517 close_ctree(tree_root);
Al Viroad2b2c82011-11-17 01:10:02 -05002518 return err;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002519 }
Josef Bacike3acc2a2010-01-26 14:30:53 +00002520 }
2521
Al Viroad2b2c82011-11-17 01:10:02 -05002522 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002523
Chris Mason7c2ca462008-11-19 15:13:35 -05002524fail_trans_kthread:
2525 kthread_stop(fs_info->transaction_kthread);
Chris Mason3f157a22008-06-25 16:01:31 -04002526fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04002527 kthread_stop(fs_info->cleaner_kthread);
Chris Mason7c2ca462008-11-19 15:13:35 -05002528
2529 /*
2530 * make sure we're done with the btree inode before we stop our
2531 * kthreads
2532 */
2533 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
2534 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
2535
Josef Bacik1b1d1f62010-03-19 20:49:55 +00002536fail_block_groups:
2537 btrfs_free_block_groups(fs_info);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002538
2539fail_tree_roots:
2540 free_root_pointers(fs_info, 1);
2541
Chris Mason39279cc2007-06-12 06:35:45 -04002542fail_sb_buffer:
Chris Mason61d92c32009-10-02 19:11:56 -04002543 btrfs_stop_workers(&fs_info->generic_worker);
Chris Mason306c8b62011-11-03 15:21:39 -04002544 btrfs_stop_workers(&fs_info->readahead_workers);
Chris Mason247e7432008-07-17 12:53:51 -04002545 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05002546 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04002547 btrfs_stop_workers(&fs_info->workers);
2548 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05002549 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05002550 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002551 btrfs_stop_workers(&fs_info->endio_write_workers);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002552 btrfs_stop_workers(&fs_info->endio_freespace_worker);
Chris Mason1cc127b2008-06-12 14:46:17 -04002553 btrfs_stop_workers(&fs_info->submit_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08002554 btrfs_stop_workers(&fs_info->delayed_workers);
Josef Bacikbab39bf2011-06-30 14:42:28 -04002555 btrfs_stop_workers(&fs_info->caching_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08002556fail_alloc:
Chris Mason4543df72008-06-11 21:47:56 -04002557fail_iput:
Ilya Dryomov586e46e2011-11-09 13:26:37 +02002558 btrfs_mapping_tree_free(&fs_info->mapping_tree);
2559
Chris Mason7c2ca462008-11-19 15:13:35 -05002560 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
Chris Mason4543df72008-06-11 21:47:56 -04002561 iput(fs_info->btree_inode);
Jens Axboead081f12009-06-12 14:43:40 +02002562fail_bdi:
Qinghuang Feng7e662852009-01-21 10:49:16 -05002563 bdi_destroy(&fs_info->bdi);
Yan, Zheng76dda932009-09-21 16:00:26 -04002564fail_srcu:
2565 cleanup_srcu_struct(&fs_info->subvol_srcu);
Qinghuang Feng7e662852009-01-21 10:49:16 -05002566fail:
Ilya Dryomov586e46e2011-11-09 13:26:37 +02002567 btrfs_close_devices(fs_info->fs_devices);
Al Viroad2b2c82011-11-17 01:10:02 -05002568 return err;
Chris Masonaf31f5e2011-11-03 15:17:42 -04002569
2570recovery_tree_root:
Chris Masonaf31f5e2011-11-03 15:17:42 -04002571 if (!btrfs_test_opt(tree_root, RECOVERY))
2572 goto fail_tree_roots;
2573
2574 free_root_pointers(fs_info, 0);
2575
2576 /* don't use the log in recovery mode, it won't be valid */
2577 btrfs_set_super_log_root(disk_super, 0);
2578
2579 /* we can't trust the free space cache either */
2580 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE);
2581
2582 ret = next_root_backup(fs_info, fs_info->super_copy,
2583 &num_backups_tried, &backup_index);
2584 if (ret == -1)
2585 goto fail_block_groups;
2586 goto retry_root_backup;
Chris Masoneb60cea2007-02-02 09:18:22 -05002587}
2588
Chris Masonf2984462008-04-10 16:19:33 -04002589static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
2590{
2591 char b[BDEVNAME_SIZE];
2592
2593 if (uptodate) {
2594 set_buffer_uptodate(bh);
2595 } else {
David Sterba7a36dde2011-05-06 15:33:15 +02002596 printk_ratelimited(KERN_WARNING "lost page write due to "
Chris Masonf2984462008-04-10 16:19:33 -04002597 "I/O error on %s\n",
2598 bdevname(bh->b_bdev, b));
Chris Mason1259ab72008-05-12 13:39:03 -04002599 /* note, we dont' set_buffer_write_io_error because we have
2600 * our own ways of dealing with the IO errors
2601 */
Chris Masonf2984462008-04-10 16:19:33 -04002602 clear_buffer_uptodate(bh);
2603 }
2604 unlock_buffer(bh);
2605 put_bh(bh);
2606}
2607
Yan Zhenga512bbf2008-12-08 16:46:26 -05002608struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
2609{
2610 struct buffer_head *bh;
2611 struct buffer_head *latest = NULL;
2612 struct btrfs_super_block *super;
2613 int i;
2614 u64 transid = 0;
2615 u64 bytenr;
2616
2617 /* we would like to check all the supers, but that would make
2618 * a btrfs mount succeed after a mkfs from a different FS.
2619 * So, we need to add a special mount option to scan for
2620 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
2621 */
2622 for (i = 0; i < 1; i++) {
2623 bytenr = btrfs_sb_offset(i);
2624 if (bytenr + 4096 >= i_size_read(bdev->bd_inode))
2625 break;
2626 bh = __bread(bdev, bytenr / 4096, 4096);
2627 if (!bh)
2628 continue;
2629
2630 super = (struct btrfs_super_block *)bh->b_data;
2631 if (btrfs_super_bytenr(super) != bytenr ||
2632 strncmp((char *)(&super->magic), BTRFS_MAGIC,
2633 sizeof(super->magic))) {
2634 brelse(bh);
2635 continue;
2636 }
2637
2638 if (!latest || btrfs_super_generation(super) > transid) {
2639 brelse(latest);
2640 latest = bh;
2641 transid = btrfs_super_generation(super);
2642 } else {
2643 brelse(bh);
2644 }
2645 }
2646 return latest;
2647}
2648
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002649/*
2650 * this should be called twice, once with wait == 0 and
2651 * once with wait == 1. When wait == 0 is done, all the buffer heads
2652 * we write are pinned.
2653 *
2654 * They are released when wait == 1 is done.
2655 * max_mirrors must be the same for both runs, and it indicates how
2656 * many supers on this one device should be written.
2657 *
2658 * max_mirrors == 0 means to write them all.
2659 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002660static int write_dev_supers(struct btrfs_device *device,
2661 struct btrfs_super_block *sb,
2662 int do_barriers, int wait, int max_mirrors)
2663{
2664 struct buffer_head *bh;
2665 int i;
2666 int ret;
2667 int errors = 0;
2668 u32 crc;
2669 u64 bytenr;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002670
2671 if (max_mirrors == 0)
2672 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
2673
Yan Zhenga512bbf2008-12-08 16:46:26 -05002674 for (i = 0; i < max_mirrors; i++) {
2675 bytenr = btrfs_sb_offset(i);
2676 if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
2677 break;
2678
2679 if (wait) {
2680 bh = __find_get_block(device->bdev, bytenr / 4096,
2681 BTRFS_SUPER_INFO_SIZE);
2682 BUG_ON(!bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002683 wait_on_buffer(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002684 if (!buffer_uptodate(bh))
2685 errors++;
2686
2687 /* drop our reference */
2688 brelse(bh);
2689
2690 /* drop the reference from the wait == 0 run */
2691 brelse(bh);
2692 continue;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002693 } else {
2694 btrfs_set_super_bytenr(sb, bytenr);
2695
2696 crc = ~(u32)0;
2697 crc = btrfs_csum_data(NULL, (char *)sb +
2698 BTRFS_CSUM_SIZE, crc,
2699 BTRFS_SUPER_INFO_SIZE -
2700 BTRFS_CSUM_SIZE);
2701 btrfs_csum_final(crc, sb->csum);
2702
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002703 /*
2704 * one reference for us, and we leave it for the
2705 * caller
2706 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002707 bh = __getblk(device->bdev, bytenr / 4096,
2708 BTRFS_SUPER_INFO_SIZE);
2709 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
2710
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002711 /* one reference for submit_bh */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002712 get_bh(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002713
2714 set_buffer_uptodate(bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002715 lock_buffer(bh);
2716 bh->b_end_io = btrfs_end_buffer_write_sync;
2717 }
2718
Chris Mason387125f2011-11-18 15:07:51 -05002719 /*
2720 * we fua the first super. The others we allow
2721 * to go down lazy.
2722 */
Stefan Behrens21adbd52011-11-09 13:44:05 +01002723 ret = btrfsic_submit_bh(WRITE_FUA, bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002724 if (ret)
Yan Zhenga512bbf2008-12-08 16:46:26 -05002725 errors++;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002726 }
2727 return errors < i ? 0 : -1;
2728}
2729
Chris Mason387125f2011-11-18 15:07:51 -05002730/*
2731 * endio for the write_dev_flush, this will wake anyone waiting
2732 * for the barrier when it is done
2733 */
2734static void btrfs_end_empty_barrier(struct bio *bio, int err)
2735{
2736 if (err) {
2737 if (err == -EOPNOTSUPP)
2738 set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
2739 clear_bit(BIO_UPTODATE, &bio->bi_flags);
2740 }
2741 if (bio->bi_private)
2742 complete(bio->bi_private);
2743 bio_put(bio);
2744}
2745
2746/*
2747 * trigger flushes for one the devices. If you pass wait == 0, the flushes are
2748 * sent down. With wait == 1, it waits for the previous flush.
2749 *
2750 * any device where the flush fails with eopnotsupp are flagged as not-barrier
2751 * capable
2752 */
2753static int write_dev_flush(struct btrfs_device *device, int wait)
2754{
2755 struct bio *bio;
2756 int ret = 0;
2757
2758 if (device->nobarriers)
2759 return 0;
2760
2761 if (wait) {
2762 bio = device->flush_bio;
2763 if (!bio)
2764 return 0;
2765
2766 wait_for_completion(&device->flush_wait);
2767
2768 if (bio_flagged(bio, BIO_EOPNOTSUPP)) {
2769 printk("btrfs: disabling barriers on dev %s\n",
2770 device->name);
2771 device->nobarriers = 1;
2772 }
2773 if (!bio_flagged(bio, BIO_UPTODATE)) {
2774 ret = -EIO;
2775 }
2776
2777 /* drop the reference from the wait == 0 run */
2778 bio_put(bio);
2779 device->flush_bio = NULL;
2780
2781 return ret;
2782 }
2783
2784 /*
2785 * one reference for us, and we leave it for the
2786 * caller
2787 */
2788 device->flush_bio = NULL;;
2789 bio = bio_alloc(GFP_NOFS, 0);
2790 if (!bio)
2791 return -ENOMEM;
2792
2793 bio->bi_end_io = btrfs_end_empty_barrier;
2794 bio->bi_bdev = device->bdev;
2795 init_completion(&device->flush_wait);
2796 bio->bi_private = &device->flush_wait;
2797 device->flush_bio = bio;
2798
2799 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01002800 btrfsic_submit_bio(WRITE_FLUSH, bio);
Chris Mason387125f2011-11-18 15:07:51 -05002801
2802 return 0;
2803}
2804
2805/*
2806 * send an empty flush down to each device in parallel,
2807 * then wait for them
2808 */
2809static int barrier_all_devices(struct btrfs_fs_info *info)
2810{
2811 struct list_head *head;
2812 struct btrfs_device *dev;
2813 int errors = 0;
2814 int ret;
2815
2816 /* send down all the barriers */
2817 head = &info->fs_devices->devices;
2818 list_for_each_entry_rcu(dev, head, dev_list) {
2819 if (!dev->bdev) {
2820 errors++;
2821 continue;
2822 }
2823 if (!dev->in_fs_metadata || !dev->writeable)
2824 continue;
2825
2826 ret = write_dev_flush(dev, 0);
2827 if (ret)
2828 errors++;
2829 }
2830
2831 /* wait for all the barriers */
2832 list_for_each_entry_rcu(dev, head, dev_list) {
2833 if (!dev->bdev) {
2834 errors++;
2835 continue;
2836 }
2837 if (!dev->in_fs_metadata || !dev->writeable)
2838 continue;
2839
2840 ret = write_dev_flush(dev, 1);
2841 if (ret)
2842 errors++;
2843 }
2844 if (errors)
2845 return -EIO;
2846 return 0;
2847}
2848
Yan Zhenga512bbf2008-12-08 16:46:26 -05002849int write_all_supers(struct btrfs_root *root, int max_mirrors)
Chris Masonf2984462008-04-10 16:19:33 -04002850{
Chris Masone5e9a522009-06-10 15:17:02 -04002851 struct list_head *head;
Chris Masonf2984462008-04-10 16:19:33 -04002852 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04002853 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04002854 struct btrfs_dev_item *dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04002855 int ret;
2856 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04002857 int max_errors;
2858 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04002859 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04002860
David Sterba6c417612011-04-13 15:41:04 +02002861 max_errors = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04002862 do_barriers = !btrfs_test_opt(root, NOBARRIER);
Chris Masonaf31f5e2011-11-03 15:17:42 -04002863 backup_super_roots(root->fs_info);
Chris Masonf2984462008-04-10 16:19:33 -04002864
David Sterba6c417612011-04-13 15:41:04 +02002865 sb = root->fs_info->super_for_commit;
Chris Masona061fc82008-05-07 11:43:44 -04002866 dev_item = &sb->dev_item;
Chris Masone5e9a522009-06-10 15:17:02 -04002867
Chris Mason174ba502011-05-27 10:03:58 -04002868 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masone5e9a522009-06-10 15:17:02 -04002869 head = &root->fs_info->fs_devices->devices;
Chris Mason387125f2011-11-18 15:07:51 -05002870
2871 if (do_barriers)
2872 barrier_all_devices(root->fs_info);
2873
Xiao Guangrong1f781602011-04-20 10:09:16 +00002874 list_for_each_entry_rcu(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04002875 if (!dev->bdev) {
2876 total_errors++;
2877 continue;
2878 }
Yan Zheng2b820322008-11-17 21:11:30 -05002879 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002880 continue;
2881
Yan Zheng2b820322008-11-17 21:11:30 -05002882 btrfs_set_stack_device_generation(dev_item, 0);
Chris Masona061fc82008-05-07 11:43:44 -04002883 btrfs_set_stack_device_type(dev_item, dev->type);
2884 btrfs_set_stack_device_id(dev_item, dev->devid);
2885 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
2886 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
2887 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
2888 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
2889 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
2890 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002891 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002892
Chris Masona061fc82008-05-07 11:43:44 -04002893 flags = btrfs_super_flags(sb);
2894 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04002895
Yan Zhenga512bbf2008-12-08 16:46:26 -05002896 ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
Chris Masona236aed2008-04-29 09:38:00 -04002897 if (ret)
2898 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002899 }
Chris Masona236aed2008-04-29 09:38:00 -04002900 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05002901 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
2902 total_errors);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002903
2904 /* This shouldn't happen. FUA is masked off if unsupported */
Chris Masona236aed2008-04-29 09:38:00 -04002905 BUG();
2906 }
Chris Masonf2984462008-04-10 16:19:33 -04002907
Yan Zhenga512bbf2008-12-08 16:46:26 -05002908 total_errors = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00002909 list_for_each_entry_rcu(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04002910 if (!dev->bdev)
2911 continue;
Yan Zheng2b820322008-11-17 21:11:30 -05002912 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002913 continue;
2914
Yan Zhenga512bbf2008-12-08 16:46:26 -05002915 ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
2916 if (ret)
2917 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002918 }
Chris Mason174ba502011-05-27 10:03:58 -04002919 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masona236aed2008-04-29 09:38:00 -04002920 if (total_errors > max_errors) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002921 btrfs_error(root->fs_info, -EIO,
2922 "%d errors while writing supers", total_errors);
2923 return -EIO;
Chris Masona236aed2008-04-29 09:38:00 -04002924 }
Chris Masonf2984462008-04-10 16:19:33 -04002925 return 0;
2926}
2927
Yan Zhenga512bbf2008-12-08 16:46:26 -05002928int write_ctree_super(struct btrfs_trans_handle *trans,
2929 struct btrfs_root *root, int max_mirrors)
Chris Masoncfaa7292007-02-21 17:04:57 -05002930{
Chris Masone66f7092007-04-20 13:16:02 -04002931 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04002932
Yan Zhenga512bbf2008-12-08 16:46:26 -05002933 ret = write_all_supers(root, max_mirrors);
Chris Mason5f39d392007-10-15 16:14:19 -04002934 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05002935}
2936
Jeff Mahoney49b25e02012-03-01 17:24:58 +01002937/* Kill all outstanding I/O */
2938void btrfs_abort_devices(struct btrfs_root *root)
2939{
2940 struct list_head *head;
2941 struct btrfs_device *dev;
2942 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2943 head = &root->fs_info->fs_devices->devices;
2944 list_for_each_entry_rcu(dev, head, dev_list) {
2945 blk_abort_queue(dev->bdev->bd_disk->queue);
2946 }
2947 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2948}
2949
Jeff Mahoney143bede2012-03-01 14:56:26 +01002950void btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04002951{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002952 spin_lock(&fs_info->fs_roots_radix_lock);
Chris Mason2619ba12007-04-10 16:58:11 -04002953 radix_tree_delete(&fs_info->fs_roots_radix,
2954 (unsigned long)root->root_key.objectid);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002955 spin_unlock(&fs_info->fs_roots_radix_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04002956
2957 if (btrfs_root_refs(&root->root_item) == 0)
2958 synchronize_srcu(&fs_info->subvol_srcu);
2959
Li Zefan581bb052011-04-20 10:06:11 +08002960 __btrfs_remove_free_space_cache(root->free_ino_pinned);
2961 __btrfs_remove_free_space_cache(root->free_ino_ctl);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002962 free_fs_root(root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002963}
2964
2965static void free_fs_root(struct btrfs_root *root)
2966{
Li Zefan82d59022011-04-20 10:33:24 +08002967 iput(root->cache_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002968 WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
Al Viro0ee5dc62011-07-07 15:44:25 -04002969 if (root->anon_dev)
2970 free_anon_bdev(root->anon_dev);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002971 free_extent_buffer(root->node);
2972 free_extent_buffer(root->commit_root);
Li Zefan581bb052011-04-20 10:06:11 +08002973 kfree(root->free_ino_ctl);
2974 kfree(root->free_ino_pinned);
Chris Masond3977122009-01-05 21:25:51 -05002975 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04002976 kfree(root);
Chris Mason2619ba12007-04-10 16:58:11 -04002977}
2978
Jeff Mahoney143bede2012-03-01 14:56:26 +01002979static void del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04002980{
2981 int ret;
2982 struct btrfs_root *gang[8];
2983 int i;
2984
Yan, Zheng76dda932009-09-21 16:00:26 -04002985 while (!list_empty(&fs_info->dead_roots)) {
2986 gang[0] = list_entry(fs_info->dead_roots.next,
2987 struct btrfs_root, root_list);
2988 list_del(&gang[0]->root_list);
2989
2990 if (gang[0]->in_radix) {
2991 btrfs_free_fs_root(fs_info, gang[0]);
2992 } else {
2993 free_extent_buffer(gang[0]->node);
2994 free_extent_buffer(gang[0]->commit_root);
2995 kfree(gang[0]);
2996 }
2997 }
2998
Chris Masond3977122009-01-05 21:25:51 -05002999 while (1) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04003000 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3001 (void **)gang, 0,
3002 ARRAY_SIZE(gang));
3003 if (!ret)
3004 break;
Chris Mason2619ba12007-04-10 16:58:11 -04003005 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04003006 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04003007 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04003008}
Chris Masonb4100d62007-04-12 12:14:00 -04003009
Yan Zhengc146afa2008-11-12 14:34:12 -05003010int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
3011{
3012 u64 root_objectid = 0;
3013 struct btrfs_root *gang[8];
3014 int i;
3015 int ret;
3016
3017 while (1) {
3018 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3019 (void **)gang, root_objectid,
3020 ARRAY_SIZE(gang));
3021 if (!ret)
3022 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003023
3024 root_objectid = gang[ret - 1]->root_key.objectid + 1;
Yan Zhengc146afa2008-11-12 14:34:12 -05003025 for (i = 0; i < ret; i++) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003026 int err;
3027
Yan Zhengc146afa2008-11-12 14:34:12 -05003028 root_objectid = gang[i]->root_key.objectid;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003029 err = btrfs_orphan_cleanup(gang[i]);
3030 if (err)
3031 return err;
Yan Zhengc146afa2008-11-12 14:34:12 -05003032 }
3033 root_objectid++;
3034 }
3035 return 0;
3036}
3037
3038int btrfs_commit_super(struct btrfs_root *root)
3039{
3040 struct btrfs_trans_handle *trans;
3041 int ret;
3042
3043 mutex_lock(&root->fs_info->cleaner_mutex);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003044 btrfs_run_delayed_iputs(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05003045 btrfs_clean_old_snapshots(root);
3046 mutex_unlock(&root->fs_info->cleaner_mutex);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003047
3048 /* wait until ongoing cleanup work done */
3049 down_write(&root->fs_info->cleanup_work_sem);
3050 up_write(&root->fs_info->cleanup_work_sem);
3051
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003052 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003053 if (IS_ERR(trans))
3054 return PTR_ERR(trans);
Yan Zhengc146afa2008-11-12 14:34:12 -05003055 ret = btrfs_commit_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003056 if (ret)
3057 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003058 /* run commit again to drop the original snapshot */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003059 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003060 if (IS_ERR(trans))
3061 return PTR_ERR(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003062 ret = btrfs_commit_transaction(trans, root);
3063 if (ret)
3064 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003065 ret = btrfs_write_and_wait_transaction(NULL, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003066 if (ret) {
3067 btrfs_error(root->fs_info, ret,
3068 "Failed to sync btree inode to disk.");
3069 return ret;
3070 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003071
Yan Zhenga512bbf2008-12-08 16:46:26 -05003072 ret = write_ctree_super(NULL, root, 0);
Yan Zhengc146afa2008-11-12 14:34:12 -05003073 return ret;
3074}
3075
Chris Masone20d96d2007-03-22 12:13:20 -04003076int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05003077{
Chris Mason0f7d52f2007-04-09 10:42:37 -04003078 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05003079 int ret;
Chris Masone089f052007-03-16 16:20:31 -04003080
Chris Masonfacda1e2007-06-08 18:11:48 -04003081 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04003082 smp_mb();
3083
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003084 /* pause restriper - we want to resume on mount */
3085 btrfs_pause_balance(root->fs_info);
3086
Arne Jansena2de7332011-03-08 14:14:00 +01003087 btrfs_scrub_cancel(root);
Chris Mason4cb53002011-05-24 15:35:30 -04003088
3089 /* wait for any defraggers to finish */
3090 wait_event(fs_info->transaction_wait,
3091 (atomic_read(&fs_info->defrag_running) == 0));
3092
3093 /* clear out the rbtree of defraggable inodes */
Al Viroe3029d92011-11-17 00:56:18 -05003094 btrfs_run_defrag_inodes(fs_info);
Chris Mason4cb53002011-05-24 15:35:30 -04003095
liuboacce9522011-01-06 19:30:25 +08003096 /*
3097 * Here come 2 situations when btrfs is broken to flip readonly:
3098 *
3099 * 1. when btrfs flips readonly somewhere else before
3100 * btrfs_commit_super, sb->s_flags has MS_RDONLY flag,
3101 * and btrfs will skip to write sb directly to keep
3102 * ERROR state on disk.
3103 *
3104 * 2. when btrfs flips readonly just in btrfs_commit_super,
Justin P. Mattockae0e47f2011-03-01 15:06:02 +01003105 * and in such case, btrfs cannot write sb via btrfs_commit_super,
liuboacce9522011-01-06 19:30:25 +08003106 * and since fs_state has been set BTRFS_SUPER_FLAG_ERROR flag,
3107 * btrfs will cleanup all FS resources first and write sb then.
3108 */
Yan Zhengc146afa2008-11-12 14:34:12 -05003109 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
liuboacce9522011-01-06 19:30:25 +08003110 ret = btrfs_commit_super(root);
3111 if (ret)
3112 printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
3113 }
3114
3115 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
3116 ret = btrfs_error_commit_super(root);
Chris Masond3977122009-01-05 21:25:51 -05003117 if (ret)
3118 printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
Yan Zhengc146afa2008-11-12 14:34:12 -05003119 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05003120
Josef Bacik300e4f82011-08-29 14:06:00 -04003121 btrfs_put_block_group_cache(fs_info);
3122
Al Viroe3029d92011-11-17 00:56:18 -05003123 kthread_stop(fs_info->transaction_kthread);
3124 kthread_stop(fs_info->cleaner_kthread);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003125
Yan Zhengf25784b2009-07-28 08:41:57 -04003126 fs_info->closing = 2;
3127 smp_mb();
3128
Chris Masonb0c68f82008-01-31 11:05:37 -05003129 if (fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05003130 printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07003131 (unsigned long long)fs_info->delalloc_bytes);
Chris Masonb0c68f82008-01-31 11:05:37 -05003132 }
Yan Zheng31153d82008-07-28 15:32:19 -04003133 if (fs_info->total_ref_cache_size) {
Chris Masond3977122009-01-05 21:25:51 -05003134 printk(KERN_INFO "btrfs: at umount reference cache size %llu\n",
3135 (unsigned long long)fs_info->total_ref_cache_size);
Yan Zheng31153d82008-07-28 15:32:19 -04003136 }
Yanbcc63ab2008-07-30 16:29:20 -04003137
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003138 free_extent_buffer(fs_info->extent_root->node);
3139 free_extent_buffer(fs_info->extent_root->commit_root);
3140 free_extent_buffer(fs_info->tree_root->node);
3141 free_extent_buffer(fs_info->tree_root->commit_root);
Al Viroe3029d92011-11-17 00:56:18 -05003142 free_extent_buffer(fs_info->chunk_root->node);
3143 free_extent_buffer(fs_info->chunk_root->commit_root);
3144 free_extent_buffer(fs_info->dev_root->node);
3145 free_extent_buffer(fs_info->dev_root->commit_root);
3146 free_extent_buffer(fs_info->csum_root->node);
3147 free_extent_buffer(fs_info->csum_root->commit_root);
Chris Masond20f7042008-12-08 16:58:54 -05003148
Al Viroe3029d92011-11-17 00:56:18 -05003149 btrfs_free_block_groups(fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05003150
Chris Mason0f7d52f2007-04-09 10:42:37 -04003151 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05003152
Yan Zhengc146afa2008-11-12 14:34:12 -05003153 iput(fs_info->btree_inode);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003154
Chris Mason61d92c32009-10-02 19:11:56 -04003155 btrfs_stop_workers(&fs_info->generic_worker);
Chris Mason247e7432008-07-17 12:53:51 -04003156 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05003157 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04003158 btrfs_stop_workers(&fs_info->workers);
3159 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05003160 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05003161 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003162 btrfs_stop_workers(&fs_info->endio_write_workers);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003163 btrfs_stop_workers(&fs_info->endio_freespace_worker);
Chris Mason1cc127b2008-06-12 14:46:17 -04003164 btrfs_stop_workers(&fs_info->submit_workers);
Miao Xie16cdcec2011-04-22 18:12:22 +08003165 btrfs_stop_workers(&fs_info->delayed_workers);
Josef Bacikbab39bf2011-06-30 14:42:28 -04003166 btrfs_stop_workers(&fs_info->caching_workers);
Arne Jansen90519d62011-05-23 14:30:00 +02003167 btrfs_stop_workers(&fs_info->readahead_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04003168
Stefan Behrens21adbd52011-11-09 13:44:05 +01003169#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
3170 if (btrfs_test_opt(root, CHECK_INTEGRITY))
3171 btrfsic_unmount(root, fs_info->fs_devices);
3172#endif
3173
Chris Masondfe25022008-05-13 13:46:40 -04003174 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04003175 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04003176
Chris Mason04160082008-03-26 10:28:07 -04003177 bdi_destroy(&fs_info->bdi);
Yan, Zheng76dda932009-09-21 16:00:26 -04003178 cleanup_srcu_struct(&fs_info->subvol_srcu);
Chris Mason0b86a832008-03-24 15:01:56 -04003179
Chris Masoneb60cea2007-02-02 09:18:22 -05003180 return 0;
3181}
3182
Chris Mason1259ab72008-05-12 13:39:03 -04003183int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04003184{
Chris Mason1259ab72008-05-12 13:39:03 -04003185 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04003186 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04003187
Josef Bacik2ac55d42010-02-03 19:33:23 +00003188 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf,
3189 NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04003190 if (!ret)
3191 return ret;
3192
3193 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
3194 parent_transid);
3195 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003196}
Chris Mason6702ed42007-08-07 16:15:09 -04003197
Chris Mason5f39d392007-10-15 16:14:19 -04003198int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
3199{
Chris Mason810191f2007-10-15 16:18:55 -04003200 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003201 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04003202 buf);
3203}
3204
3205void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
3206{
Chris Mason810191f2007-10-15 16:18:55 -04003207 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003208 u64 transid = btrfs_header_generation(buf);
3209 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonb9473432009-03-13 11:00:37 -04003210 int was_dirty;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003211
Chris Masonb9447ef2009-03-09 11:45:38 -04003212 btrfs_assert_tree_locked(buf);
Chris Masonccd467d2007-06-28 15:57:36 -04003213 if (transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -05003214 printk(KERN_CRIT "btrfs transid mismatch buffer %llu, "
3215 "found %llu running %llu\n",
Chris Masondb945352007-10-15 16:15:53 -04003216 (unsigned long long)buf->start,
Chris Masond3977122009-01-05 21:25:51 -05003217 (unsigned long long)transid,
3218 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -04003219 WARN_ON(1);
3220 }
Chris Masonb9473432009-03-13 11:00:37 -04003221 was_dirty = set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
3222 buf);
3223 if (!was_dirty) {
3224 spin_lock(&root->fs_info->delalloc_lock);
3225 root->fs_info->dirty_metadata_bytes += buf->len;
3226 spin_unlock(&root->fs_info->delalloc_lock);
3227 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003228}
3229
Chris Masond3c2fdc2007-09-17 10:58:06 -04003230void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04003231{
Chris Mason188de642008-05-09 11:52:25 -04003232 /*
3233 * looks as though older kernels can get into trouble with
3234 * this code, they end up stuck in balance_dirty_pages forever
3235 */
Chris Masond6bfde82008-04-30 13:59:35 -04003236 u64 num_dirty;
Chris Mason771ed682008-11-06 22:02:51 -05003237 unsigned long thresh = 32 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04003238
Jens Axboe6933c022009-03-17 09:36:37 +01003239 if (current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04003240 return;
3241
Miao Xie16cdcec2011-04-22 18:12:22 +08003242 btrfs_balance_delayed_items(root);
3243
3244 num_dirty = root->fs_info->dirty_metadata_bytes;
3245
3246 if (num_dirty > thresh) {
3247 balance_dirty_pages_ratelimited_nr(
3248 root->fs_info->btree_inode->i_mapping, 1);
3249 }
3250 return;
3251}
3252
3253void __btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
3254{
3255 /*
3256 * looks as though older kernels can get into trouble with
3257 * this code, they end up stuck in balance_dirty_pages forever
3258 */
3259 u64 num_dirty;
3260 unsigned long thresh = 32 * 1024 * 1024;
3261
3262 if (current->flags & PF_MEMALLOC)
3263 return;
3264
Chris Mason585ad2c2009-05-18 10:41:58 -04003265 num_dirty = root->fs_info->dirty_metadata_bytes;
3266
Chris Masond6bfde82008-04-30 13:59:35 -04003267 if (num_dirty > thresh) {
3268 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05003269 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04003270 }
Chris Mason188de642008-05-09 11:52:25 -04003271 return;
Chris Mason35b7e472007-05-02 15:53:43 -04003272}
Chris Mason6b800532007-10-15 16:17:34 -04003273
Chris Masonca7a79a2008-05-12 12:59:19 -04003274int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04003275{
Chris Mason810191f2007-10-15 16:18:55 -04003276 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04003277 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04003278 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masond3977122009-01-05 21:25:51 -05003279 if (ret == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003280 set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003281 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04003282}
Chris Mason0da54682007-11-07 21:08:01 -05003283
Chris Mason01d658f2011-11-01 10:08:06 -04003284static int btree_lock_page_hook(struct page *page, void *data,
3285 void (*flush_fn)(void *))
Chris Mason4bef0842008-09-08 11:18:08 -04003286{
3287 struct inode *inode = page->mapping->host;
Chris Masonb9473432009-03-13 11:00:37 -04003288 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4bef0842008-09-08 11:18:08 -04003289 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3290 struct extent_buffer *eb;
3291 unsigned long len;
3292 u64 bytenr = page_offset(page);
3293
3294 if (page->private == EXTENT_PAGE_PRIVATE)
3295 goto out;
3296
3297 len = page->private >> 2;
David Sterbaf09d1f62011-04-21 01:08:01 +02003298 eb = find_extent_buffer(io_tree, bytenr, len);
Chris Mason4bef0842008-09-08 11:18:08 -04003299 if (!eb)
3300 goto out;
3301
Chris Mason01d658f2011-11-01 10:08:06 -04003302 if (!btrfs_try_tree_write_lock(eb)) {
3303 flush_fn(data);
3304 btrfs_tree_lock(eb);
3305 }
Chris Mason4bef0842008-09-08 11:18:08 -04003306 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonb9473432009-03-13 11:00:37 -04003307
3308 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3309 spin_lock(&root->fs_info->delalloc_lock);
3310 if (root->fs_info->dirty_metadata_bytes >= eb->len)
3311 root->fs_info->dirty_metadata_bytes -= eb->len;
3312 else
3313 WARN_ON(1);
3314 spin_unlock(&root->fs_info->delalloc_lock);
3315 }
3316
Chris Mason4bef0842008-09-08 11:18:08 -04003317 btrfs_tree_unlock(eb);
3318 free_extent_buffer(eb);
3319out:
Chris Mason01d658f2011-11-01 10:08:06 -04003320 if (!trylock_page(page)) {
3321 flush_fn(data);
3322 lock_page(page);
3323 }
Chris Mason4bef0842008-09-08 11:18:08 -04003324 return 0;
3325}
3326
liuboacce9522011-01-06 19:30:25 +08003327static void btrfs_check_super_valid(struct btrfs_fs_info *fs_info,
3328 int read_only)
3329{
3330 if (read_only)
3331 return;
3332
3333 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
3334 printk(KERN_WARNING "warning: mount fs with errors, "
3335 "running btrfsck is recommended\n");
3336}
3337
3338int btrfs_error_commit_super(struct btrfs_root *root)
3339{
3340 int ret;
3341
3342 mutex_lock(&root->fs_info->cleaner_mutex);
3343 btrfs_run_delayed_iputs(root);
3344 mutex_unlock(&root->fs_info->cleaner_mutex);
3345
3346 down_write(&root->fs_info->cleanup_work_sem);
3347 up_write(&root->fs_info->cleanup_work_sem);
3348
3349 /* cleanup FS via transaction */
3350 btrfs_cleanup_transaction(root);
3351
3352 ret = write_ctree_super(NULL, root, 0);
3353
3354 return ret;
3355}
3356
Jeff Mahoney143bede2012-03-01 14:56:26 +01003357static void btrfs_destroy_ordered_operations(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003358{
3359 struct btrfs_inode *btrfs_inode;
3360 struct list_head splice;
3361
3362 INIT_LIST_HEAD(&splice);
3363
3364 mutex_lock(&root->fs_info->ordered_operations_mutex);
3365 spin_lock(&root->fs_info->ordered_extent_lock);
3366
3367 list_splice_init(&root->fs_info->ordered_operations, &splice);
3368 while (!list_empty(&splice)) {
3369 btrfs_inode = list_entry(splice.next, struct btrfs_inode,
3370 ordered_operations);
3371
3372 list_del_init(&btrfs_inode->ordered_operations);
3373
3374 btrfs_invalidate_inodes(btrfs_inode->root);
3375 }
3376
3377 spin_unlock(&root->fs_info->ordered_extent_lock);
3378 mutex_unlock(&root->fs_info->ordered_operations_mutex);
liuboacce9522011-01-06 19:30:25 +08003379}
3380
Jeff Mahoney143bede2012-03-01 14:56:26 +01003381static void btrfs_destroy_ordered_extents(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003382{
3383 struct list_head splice;
3384 struct btrfs_ordered_extent *ordered;
3385 struct inode *inode;
3386
3387 INIT_LIST_HEAD(&splice);
3388
3389 spin_lock(&root->fs_info->ordered_extent_lock);
3390
3391 list_splice_init(&root->fs_info->ordered_extents, &splice);
3392 while (!list_empty(&splice)) {
3393 ordered = list_entry(splice.next, struct btrfs_ordered_extent,
3394 root_extent_list);
3395
3396 list_del_init(&ordered->root_extent_list);
3397 atomic_inc(&ordered->refs);
3398
3399 /* the inode may be getting freed (in sys_unlink path). */
3400 inode = igrab(ordered->inode);
3401
3402 spin_unlock(&root->fs_info->ordered_extent_lock);
3403 if (inode)
3404 iput(inode);
3405
3406 atomic_set(&ordered->refs, 1);
3407 btrfs_put_ordered_extent(ordered);
3408
3409 spin_lock(&root->fs_info->ordered_extent_lock);
3410 }
3411
3412 spin_unlock(&root->fs_info->ordered_extent_lock);
liuboacce9522011-01-06 19:30:25 +08003413}
3414
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003415int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
3416 struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003417{
3418 struct rb_node *node;
3419 struct btrfs_delayed_ref_root *delayed_refs;
3420 struct btrfs_delayed_ref_node *ref;
3421 int ret = 0;
3422
3423 delayed_refs = &trans->delayed_refs;
3424
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003425again:
liuboacce9522011-01-06 19:30:25 +08003426 spin_lock(&delayed_refs->lock);
3427 if (delayed_refs->num_entries == 0) {
David Sterbacfece4d2011-04-25 19:43:52 -04003428 spin_unlock(&delayed_refs->lock);
liuboacce9522011-01-06 19:30:25 +08003429 printk(KERN_INFO "delayed_refs has NO entry\n");
3430 return ret;
3431 }
3432
3433 node = rb_first(&delayed_refs->root);
3434 while (node) {
3435 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
3436 node = rb_next(node);
3437
3438 ref->in_tree = 0;
3439 rb_erase(&ref->rb_node, &delayed_refs->root);
3440 delayed_refs->num_entries--;
3441
3442 atomic_set(&ref->refs, 1);
3443 if (btrfs_delayed_ref_is_head(ref)) {
3444 struct btrfs_delayed_ref_head *head;
3445
3446 head = btrfs_delayed_node_to_head(ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003447 spin_unlock(&delayed_refs->lock);
liuboacce9522011-01-06 19:30:25 +08003448 mutex_lock(&head->mutex);
3449 kfree(head->extent_op);
3450 delayed_refs->num_heads--;
3451 if (list_empty(&head->cluster))
3452 delayed_refs->num_heads_ready--;
3453 list_del_init(&head->cluster);
3454 mutex_unlock(&head->mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003455 btrfs_put_delayed_ref(ref);
3456 goto again;
liuboacce9522011-01-06 19:30:25 +08003457 }
liuboacce9522011-01-06 19:30:25 +08003458 spin_unlock(&delayed_refs->lock);
3459 btrfs_put_delayed_ref(ref);
3460
3461 cond_resched();
3462 spin_lock(&delayed_refs->lock);
3463 }
3464
3465 spin_unlock(&delayed_refs->lock);
3466
3467 return ret;
3468}
3469
Jeff Mahoney143bede2012-03-01 14:56:26 +01003470static void btrfs_destroy_pending_snapshots(struct btrfs_transaction *t)
liuboacce9522011-01-06 19:30:25 +08003471{
3472 struct btrfs_pending_snapshot *snapshot;
3473 struct list_head splice;
3474
3475 INIT_LIST_HEAD(&splice);
3476
3477 list_splice_init(&t->pending_snapshots, &splice);
3478
3479 while (!list_empty(&splice)) {
3480 snapshot = list_entry(splice.next,
3481 struct btrfs_pending_snapshot,
3482 list);
3483
3484 list_del_init(&snapshot->list);
3485
3486 kfree(snapshot);
3487 }
liuboacce9522011-01-06 19:30:25 +08003488}
3489
Jeff Mahoney143bede2012-03-01 14:56:26 +01003490static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003491{
3492 struct btrfs_inode *btrfs_inode;
3493 struct list_head splice;
3494
3495 INIT_LIST_HEAD(&splice);
3496
liuboacce9522011-01-06 19:30:25 +08003497 spin_lock(&root->fs_info->delalloc_lock);
David Sterba5be76752011-06-09 10:02:51 +00003498 list_splice_init(&root->fs_info->delalloc_inodes, &splice);
liuboacce9522011-01-06 19:30:25 +08003499
3500 while (!list_empty(&splice)) {
3501 btrfs_inode = list_entry(splice.next, struct btrfs_inode,
3502 delalloc_inodes);
3503
3504 list_del_init(&btrfs_inode->delalloc_inodes);
3505
3506 btrfs_invalidate_inodes(btrfs_inode->root);
3507 }
3508
3509 spin_unlock(&root->fs_info->delalloc_lock);
liuboacce9522011-01-06 19:30:25 +08003510}
3511
3512static int btrfs_destroy_marked_extents(struct btrfs_root *root,
3513 struct extent_io_tree *dirty_pages,
3514 int mark)
3515{
3516 int ret;
3517 struct page *page;
3518 struct inode *btree_inode = root->fs_info->btree_inode;
3519 struct extent_buffer *eb;
3520 u64 start = 0;
3521 u64 end;
3522 u64 offset;
3523 unsigned long index;
3524
3525 while (1) {
3526 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
3527 mark);
3528 if (ret)
3529 break;
3530
3531 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
3532 while (start <= end) {
3533 index = start >> PAGE_CACHE_SHIFT;
3534 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
3535 page = find_get_page(btree_inode->i_mapping, index);
3536 if (!page)
3537 continue;
3538 offset = page_offset(page);
3539
3540 spin_lock(&dirty_pages->buffer_lock);
3541 eb = radix_tree_lookup(
3542 &(&BTRFS_I(page->mapping->host)->io_tree)->buffer,
3543 offset >> PAGE_CACHE_SHIFT);
3544 spin_unlock(&dirty_pages->buffer_lock);
3545 if (eb) {
3546 ret = test_and_clear_bit(EXTENT_BUFFER_DIRTY,
3547 &eb->bflags);
3548 atomic_set(&eb->refs, 1);
3549 }
3550 if (PageWriteback(page))
3551 end_page_writeback(page);
3552
3553 lock_page(page);
3554 if (PageDirty(page)) {
3555 clear_page_dirty_for_io(page);
3556 spin_lock_irq(&page->mapping->tree_lock);
3557 radix_tree_tag_clear(&page->mapping->page_tree,
3558 page_index(page),
3559 PAGECACHE_TAG_DIRTY);
3560 spin_unlock_irq(&page->mapping->tree_lock);
3561 }
3562
3563 page->mapping->a_ops->invalidatepage(page, 0);
3564 unlock_page(page);
3565 }
3566 }
3567
3568 return ret;
3569}
3570
3571static int btrfs_destroy_pinned_extent(struct btrfs_root *root,
3572 struct extent_io_tree *pinned_extents)
3573{
3574 struct extent_io_tree *unpin;
3575 u64 start;
3576 u64 end;
3577 int ret;
3578
3579 unpin = pinned_extents;
3580 while (1) {
3581 ret = find_first_extent_bit(unpin, 0, &start, &end,
3582 EXTENT_DIRTY);
3583 if (ret)
3584 break;
3585
3586 /* opt_discard */
Li Dongyang5378e602011-03-24 10:24:27 +00003587 if (btrfs_test_opt(root, DISCARD))
3588 ret = btrfs_error_discard_extent(root, start,
3589 end + 1 - start,
3590 NULL);
liuboacce9522011-01-06 19:30:25 +08003591
3592 clear_extent_dirty(unpin, start, end, GFP_NOFS);
3593 btrfs_error_unpin_extent_range(root, start, end);
3594 cond_resched();
3595 }
3596
3597 return 0;
3598}
3599
Jeff Mahoney49b25e02012-03-01 17:24:58 +01003600void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
3601 struct btrfs_root *root)
3602{
3603 btrfs_destroy_delayed_refs(cur_trans, root);
3604 btrfs_block_rsv_release(root, &root->fs_info->trans_block_rsv,
3605 cur_trans->dirty_pages.dirty_bytes);
3606
3607 /* FIXME: cleanup wait for commit */
3608 cur_trans->in_commit = 1;
3609 cur_trans->blocked = 1;
3610 if (waitqueue_active(&root->fs_info->transaction_blocked_wait))
3611 wake_up(&root->fs_info->transaction_blocked_wait);
3612
3613 cur_trans->blocked = 0;
3614 if (waitqueue_active(&root->fs_info->transaction_wait))
3615 wake_up(&root->fs_info->transaction_wait);
3616
3617 cur_trans->commit_done = 1;
3618 if (waitqueue_active(&cur_trans->commit_wait))
3619 wake_up(&cur_trans->commit_wait);
3620
3621 btrfs_destroy_pending_snapshots(cur_trans);
3622
3623 btrfs_destroy_marked_extents(root, &cur_trans->dirty_pages,
3624 EXTENT_DIRTY);
3625
3626 /*
3627 memset(cur_trans, 0, sizeof(*cur_trans));
3628 kmem_cache_free(btrfs_transaction_cachep, cur_trans);
3629 */
3630}
3631
3632int btrfs_cleanup_transaction(struct btrfs_root *root)
liuboacce9522011-01-06 19:30:25 +08003633{
3634 struct btrfs_transaction *t;
3635 LIST_HEAD(list);
3636
liuboacce9522011-01-06 19:30:25 +08003637 mutex_lock(&root->fs_info->transaction_kthread_mutex);
3638
Josef Bacika4abeea2011-04-11 17:25:13 -04003639 spin_lock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003640 list_splice_init(&root->fs_info->trans_list, &list);
Josef Bacika4abeea2011-04-11 17:25:13 -04003641 root->fs_info->trans_no_join = 1;
3642 spin_unlock(&root->fs_info->trans_lock);
3643
liuboacce9522011-01-06 19:30:25 +08003644 while (!list_empty(&list)) {
3645 t = list_entry(list.next, struct btrfs_transaction, list);
3646 if (!t)
3647 break;
3648
3649 btrfs_destroy_ordered_operations(root);
3650
3651 btrfs_destroy_ordered_extents(root);
3652
3653 btrfs_destroy_delayed_refs(t, root);
3654
3655 btrfs_block_rsv_release(root,
3656 &root->fs_info->trans_block_rsv,
3657 t->dirty_pages.dirty_bytes);
3658
3659 /* FIXME: cleanup wait for commit */
3660 t->in_commit = 1;
3661 t->blocked = 1;
3662 if (waitqueue_active(&root->fs_info->transaction_blocked_wait))
3663 wake_up(&root->fs_info->transaction_blocked_wait);
3664
3665 t->blocked = 0;
3666 if (waitqueue_active(&root->fs_info->transaction_wait))
3667 wake_up(&root->fs_info->transaction_wait);
liuboacce9522011-01-06 19:30:25 +08003668
liuboacce9522011-01-06 19:30:25 +08003669 t->commit_done = 1;
3670 if (waitqueue_active(&t->commit_wait))
3671 wake_up(&t->commit_wait);
liuboacce9522011-01-06 19:30:25 +08003672
3673 btrfs_destroy_pending_snapshots(t);
3674
3675 btrfs_destroy_delalloc_inodes(root);
3676
Josef Bacika4abeea2011-04-11 17:25:13 -04003677 spin_lock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003678 root->fs_info->running_transaction = NULL;
Josef Bacika4abeea2011-04-11 17:25:13 -04003679 spin_unlock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003680
3681 btrfs_destroy_marked_extents(root, &t->dirty_pages,
3682 EXTENT_DIRTY);
3683
3684 btrfs_destroy_pinned_extent(root,
3685 root->fs_info->pinned_extents);
3686
Josef Bacik13c5a932011-04-11 15:45:29 -04003687 atomic_set(&t->use_count, 0);
liuboacce9522011-01-06 19:30:25 +08003688 list_del_init(&t->list);
3689 memset(t, 0, sizeof(*t));
3690 kmem_cache_free(btrfs_transaction_cachep, t);
3691 }
3692
Josef Bacika4abeea2011-04-11 17:25:13 -04003693 spin_lock(&root->fs_info->trans_lock);
3694 root->fs_info->trans_no_join = 0;
3695 spin_unlock(&root->fs_info->trans_lock);
liuboacce9522011-01-06 19:30:25 +08003696 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
liuboacce9522011-01-06 19:30:25 +08003697
3698 return 0;
3699}
3700
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003701static int btree_writepage_io_failed_hook(struct bio *bio, struct page *page,
3702 u64 start, u64 end,
3703 struct extent_state *state)
3704{
3705 struct super_block *sb = page->mapping->host->i_sb;
3706 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
3707 btrfs_error(fs_info, -EIO,
3708 "Error occured while writing out btree at %llu", start);
3709 return -EIO;
3710}
3711
Chris Masond1310b22008-01-24 16:13:08 -05003712static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04003713 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04003714 .readpage_end_io_hook = btree_readpage_end_io_hook,
Arne Jansen4bb31e92011-06-10 13:55:54 +02003715 .readpage_io_failed_hook = btree_io_failed_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04003716 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003717 /* note we're sharing with inode.c for the merge bio hook */
3718 .merge_bio_hook = btrfs_merge_bio_hook,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003719 .writepage_io_failed_hook = btree_writepage_io_failed_hook,
Chris Mason0da54682007-11-07 21:08:01 -05003720};