blob: 15831d5c73676ef79804f5308997f44745c33da3 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050030#include "compat.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050031#include "ctree.h"
32#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040033#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040034#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040035#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040036#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040037#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040038#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040040#include "free-space-cache.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050041
Chris Masond1310b22008-01-24 16:13:08 -050042static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040043static void end_workqueue_fn(struct btrfs_work *work);
Chris Masonce9adaa2008-04-09 16:28:12 -040044
Jens Axboead081f12009-06-12 14:43:40 +020045static atomic_t btrfs_bdi_num = ATOMIC_INIT(0);
46
Chris Masond352ac62008-09-29 15:18:18 -040047/*
48 * end_io_wq structs are used to do processing in task context when an IO is
49 * complete. This is used during reads to verify checksums, and it is used
50 * by writes to insert metadata for new file extents after IO is complete.
51 */
Chris Masonce9adaa2008-04-09 16:28:12 -040052struct end_io_wq {
53 struct bio *bio;
54 bio_end_io_t *end_io;
55 void *private;
56 struct btrfs_fs_info *info;
57 int error;
Chris Mason22c59942008-04-09 16:28:12 -040058 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040059 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040060 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040061};
Chris Mason0da54682007-11-07 21:08:01 -050062
Chris Masond352ac62008-09-29 15:18:18 -040063/*
64 * async submit bios are used to offload expensive checksumming
65 * onto the worker threads. They checksum file and metadata bios
66 * just before they are sent down the IO stack.
67 */
Chris Mason44b8bd72008-04-16 11:14:51 -040068struct async_submit_bio {
69 struct inode *inode;
70 struct bio *bio;
71 struct list_head list;
Chris Mason4a69a412008-11-06 22:03:00 -050072 extent_submit_bio_hook_t *submit_bio_start;
73 extent_submit_bio_hook_t *submit_bio_done;
Chris Mason44b8bd72008-04-16 11:14:51 -040074 int rw;
75 int mirror_num;
Chris Masonc8b97812008-10-29 14:49:59 -040076 unsigned long bio_flags;
Chris Mason8b712842008-06-11 16:50:36 -040077 struct btrfs_work work;
Chris Mason44b8bd72008-04-16 11:14:51 -040078};
79
Chris Mason4008c042009-02-12 14:09:45 -050080/* These are used to set the lockdep class on the extent buffer locks.
81 * The class is set by the readpage_end_io_hook after the buffer has
82 * passed csum validation but before the pages are unlocked.
83 *
84 * The lockdep class is also set by btrfs_init_new_buffer on freshly
85 * allocated blocks.
86 *
87 * The class is based on the level in the tree block, which allows lockdep
88 * to know that lower nodes nest inside the locks of higher nodes.
89 *
90 * We also add a check to make sure the highest level of the tree is
91 * the same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this
92 * code needs update as well.
93 */
94#ifdef CONFIG_DEBUG_LOCK_ALLOC
95# if BTRFS_MAX_LEVEL != 8
96# error
97# endif
98static struct lock_class_key btrfs_eb_class[BTRFS_MAX_LEVEL + 1];
99static const char *btrfs_eb_name[BTRFS_MAX_LEVEL + 1] = {
100 /* leaf */
101 "btrfs-extent-00",
102 "btrfs-extent-01",
103 "btrfs-extent-02",
104 "btrfs-extent-03",
105 "btrfs-extent-04",
106 "btrfs-extent-05",
107 "btrfs-extent-06",
108 "btrfs-extent-07",
109 /* highest possible level */
110 "btrfs-extent-08",
111};
112#endif
113
Chris Masond352ac62008-09-29 15:18:18 -0400114/*
115 * extents on the btree inode are pretty simple, there's one extent
116 * that covers the entire device
117 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500118static struct extent_map *btree_get_extent(struct inode *inode,
119 struct page *page, size_t page_offset, u64 start, u64 len,
120 int create)
Chris Mason5f39d392007-10-15 16:14:19 -0400121{
122 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
123 struct extent_map *em;
124 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400125
Chris Masond1310b22008-01-24 16:13:08 -0500126 spin_lock(&em_tree->lock);
127 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -0400128 if (em) {
129 em->bdev =
130 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
131 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400132 goto out;
Chris Masona061fc82008-05-07 11:43:44 -0400133 }
134 spin_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400135
Chris Mason5f39d392007-10-15 16:14:19 -0400136 em = alloc_extent_map(GFP_NOFS);
137 if (!em) {
138 em = ERR_PTR(-ENOMEM);
139 goto out;
140 }
141 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400142 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -0400143 em->block_len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400144 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400145 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500146
147 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400148 ret = add_extent_mapping(em_tree, em);
149 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400150 u64 failed_start = em->start;
151 u64 failed_len = em->len;
152
Chris Mason5f39d392007-10-15 16:14:19 -0400153 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400154 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400155 if (em) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400156 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400157 } else {
158 em = lookup_extent_mapping(em_tree, failed_start,
159 failed_len);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400160 ret = -EIO;
Chris Mason0afbaf82008-04-18 14:17:20 -0400161 }
Chris Mason5f39d392007-10-15 16:14:19 -0400162 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400163 free_extent_map(em);
164 em = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400165 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400166 spin_unlock(&em_tree->lock);
167
168 if (ret)
169 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400170out:
171 return em;
172}
173
Chris Mason19c00dd2007-10-15 16:19:22 -0400174u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
175{
David Woodhouse163e7832009-04-19 13:02:41 +0100176 return crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400177}
178
179void btrfs_csum_final(u32 crc, char *result)
180{
181 *(__le32 *)result = ~cpu_to_le32(crc);
182}
183
Chris Masond352ac62008-09-29 15:18:18 -0400184/*
185 * compute the csum for a btree block, and either verify it or write it
186 * into the csum field of the block.
187 */
Chris Mason19c00dd2007-10-15 16:19:22 -0400188static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
189 int verify)
190{
Josef Bacik607d4322008-12-02 07:17:45 -0500191 u16 csum_size =
192 btrfs_super_csum_size(&root->fs_info->super_copy);
193 char *result = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -0400194 unsigned long len;
195 unsigned long cur_len;
196 unsigned long offset = BTRFS_CSUM_SIZE;
197 char *map_token = NULL;
198 char *kaddr;
199 unsigned long map_start;
200 unsigned long map_len;
201 int err;
202 u32 crc = ~(u32)0;
Josef Bacik607d4322008-12-02 07:17:45 -0500203 unsigned long inline_result;
Chris Mason19c00dd2007-10-15 16:19:22 -0400204
205 len = buf->len - offset;
Chris Masond3977122009-01-05 21:25:51 -0500206 while (len > 0) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400207 err = map_private_extent_buffer(buf, offset, 32,
208 &map_token, &kaddr,
209 &map_start, &map_len, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -0500210 if (err)
Chris Mason19c00dd2007-10-15 16:19:22 -0400211 return 1;
Chris Mason19c00dd2007-10-15 16:19:22 -0400212 cur_len = min(len, map_len - (offset - map_start));
213 crc = btrfs_csum_data(root, kaddr + offset - map_start,
214 crc, cur_len);
215 len -= cur_len;
216 offset += cur_len;
217 unmap_extent_buffer(buf, map_token, KM_USER0);
218 }
Josef Bacik607d4322008-12-02 07:17:45 -0500219 if (csum_size > sizeof(inline_result)) {
220 result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
221 if (!result)
222 return 1;
223 } else {
224 result = (char *)&inline_result;
225 }
226
Chris Mason19c00dd2007-10-15 16:19:22 -0400227 btrfs_csum_final(crc, result);
228
229 if (verify) {
Josef Bacik607d4322008-12-02 07:17:45 -0500230 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
Chris Masone4204de2008-01-08 15:46:27 -0500231 u32 val;
232 u32 found = 0;
Josef Bacik607d4322008-12-02 07:17:45 -0500233 memcpy(&found, result, csum_size);
Chris Masone4204de2008-01-08 15:46:27 -0500234
Josef Bacik607d4322008-12-02 07:17:45 -0500235 read_extent_buffer(buf, &val, 0, csum_size);
Chris Mason193f2842009-04-27 07:29:05 -0400236 if (printk_ratelimit()) {
237 printk(KERN_INFO "btrfs: %s checksum verify "
238 "failed on %llu wanted %X found %X "
239 "level %d\n",
240 root->fs_info->sb->s_id,
241 (unsigned long long)buf->start, val, found,
242 btrfs_header_level(buf));
243 }
Josef Bacik607d4322008-12-02 07:17:45 -0500244 if (result != (char *)&inline_result)
245 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400246 return 1;
247 }
248 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500249 write_extent_buffer(buf, result, 0, csum_size);
Chris Mason19c00dd2007-10-15 16:19:22 -0400250 }
Josef Bacik607d4322008-12-02 07:17:45 -0500251 if (result != (char *)&inline_result)
252 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400253 return 0;
254}
255
Chris Masond352ac62008-09-29 15:18:18 -0400256/*
257 * we can't consider a given block up to date unless the transid of the
258 * block matches the transid in the parent node's pointer. This is how we
259 * detect blocks that either didn't get written at all or got written
260 * in the wrong place.
261 */
Chris Mason1259ab72008-05-12 13:39:03 -0400262static int verify_parent_transid(struct extent_io_tree *io_tree,
263 struct extent_buffer *eb, u64 parent_transid)
264{
265 int ret;
266
267 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
268 return 0;
269
270 lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
271 if (extent_buffer_uptodate(io_tree, eb) &&
272 btrfs_header_generation(eb) == parent_transid) {
273 ret = 0;
274 goto out;
275 }
Chris Mason193f2842009-04-27 07:29:05 -0400276 if (printk_ratelimit()) {
277 printk("parent transid verify failed on %llu wanted %llu "
278 "found %llu\n",
279 (unsigned long long)eb->start,
280 (unsigned long long)parent_transid,
281 (unsigned long long)btrfs_header_generation(eb));
282 }
Chris Mason1259ab72008-05-12 13:39:03 -0400283 ret = 1;
Chris Mason1259ab72008-05-12 13:39:03 -0400284 clear_extent_buffer_uptodate(io_tree, eb);
Chris Mason33958dc2008-07-30 10:29:12 -0400285out:
Chris Mason1259ab72008-05-12 13:39:03 -0400286 unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
287 GFP_NOFS);
288 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400289}
290
Chris Masond352ac62008-09-29 15:18:18 -0400291/*
292 * helper to read a given tree block, doing retries as required when
293 * the checksums don't match and we have alternate mirrors to try.
294 */
Chris Masonf1885912008-04-09 16:28:12 -0400295static int btree_read_extent_buffer_pages(struct btrfs_root *root,
296 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400297 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400298{
299 struct extent_io_tree *io_tree;
300 int ret;
301 int num_copies = 0;
302 int mirror_num = 0;
303
304 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
305 while (1) {
306 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
307 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400308 if (!ret &&
309 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400310 return ret;
Chris Masond3977122009-01-05 21:25:51 -0500311
Chris Masonf1885912008-04-09 16:28:12 -0400312 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
313 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400314 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400315 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400316
Chris Masonf1885912008-04-09 16:28:12 -0400317 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400318 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400319 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400320 }
Chris Masonf1885912008-04-09 16:28:12 -0400321 return -EIO;
322}
Chris Mason19c00dd2007-10-15 16:19:22 -0400323
Chris Masond352ac62008-09-29 15:18:18 -0400324/*
Chris Masond3977122009-01-05 21:25:51 -0500325 * checksum a dirty tree block before IO. This has extra checks to make sure
326 * we only fill in the checksum field in the first page of a multi-page block
Chris Masond352ac62008-09-29 15:18:18 -0400327 */
Chris Masond3977122009-01-05 21:25:51 -0500328
Christoph Hellwigb2950862008-12-02 09:54:17 -0500329static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
Chris Mason19c00dd2007-10-15 16:19:22 -0400330{
Chris Masond1310b22008-01-24 16:13:08 -0500331 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400332 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400333 u64 found_start;
334 int found_level;
335 unsigned long len;
336 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400337 int ret;
338
Chris Masond1310b22008-01-24 16:13:08 -0500339 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400340
341 if (page->private == EXTENT_PAGE_PRIVATE)
342 goto out;
343 if (!page->private)
344 goto out;
345 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500346 WARN_ON(len == 0);
347
Chris Mason19c00dd2007-10-15 16:19:22 -0400348 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -0400349 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
350 btrfs_header_generation(eb));
Chris Masonf1885912008-04-09 16:28:12 -0400351 BUG_ON(ret);
Chris Mason19c00dd2007-10-15 16:19:22 -0400352 found_start = btrfs_header_bytenr(eb);
353 if (found_start != start) {
Chris Mason55c69072008-01-09 15:55:33 -0500354 WARN_ON(1);
355 goto err;
356 }
357 if (eb->first_page != page) {
Chris Mason55c69072008-01-09 15:55:33 -0500358 WARN_ON(1);
359 goto err;
360 }
361 if (!PageUptodate(page)) {
Chris Mason55c69072008-01-09 15:55:33 -0500362 WARN_ON(1);
363 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400364 }
365 found_level = btrfs_header_level(eb);
Chris Mason4bef0842008-09-08 11:18:08 -0400366
Chris Mason19c00dd2007-10-15 16:19:22 -0400367 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500368err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400369 free_extent_buffer(eb);
370out:
371 return 0;
372}
373
Yan Zheng2b820322008-11-17 21:11:30 -0500374static int check_tree_block_fsid(struct btrfs_root *root,
375 struct extent_buffer *eb)
376{
377 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
378 u8 fsid[BTRFS_UUID_SIZE];
379 int ret = 1;
380
381 read_extent_buffer(eb, fsid, (unsigned long)btrfs_header_fsid(eb),
382 BTRFS_FSID_SIZE);
383 while (fs_devices) {
384 if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
385 ret = 0;
386 break;
387 }
388 fs_devices = fs_devices->seed;
389 }
390 return ret;
391}
392
Chris Mason4008c042009-02-12 14:09:45 -0500393#ifdef CONFIG_DEBUG_LOCK_ALLOC
394void btrfs_set_buffer_lockdep_class(struct extent_buffer *eb, int level)
395{
396 lockdep_set_class_and_name(&eb->lock,
397 &btrfs_eb_class[level],
398 btrfs_eb_name[level]);
399}
400#endif
401
Christoph Hellwigb2950862008-12-02 09:54:17 -0500402static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Masonce9adaa2008-04-09 16:28:12 -0400403 struct extent_state *state)
404{
405 struct extent_io_tree *tree;
406 u64 found_start;
407 int found_level;
408 unsigned long len;
409 struct extent_buffer *eb;
410 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400411 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400412
413 tree = &BTRFS_I(page->mapping->host)->io_tree;
414 if (page->private == EXTENT_PAGE_PRIVATE)
415 goto out;
416 if (!page->private)
417 goto out;
Chris Masond3977122009-01-05 21:25:51 -0500418
Chris Masonce9adaa2008-04-09 16:28:12 -0400419 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500420 WARN_ON(len == 0);
421
Chris Masonce9adaa2008-04-09 16:28:12 -0400422 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400423
Chris Masonce9adaa2008-04-09 16:28:12 -0400424 found_start = btrfs_header_bytenr(eb);
Chris Mason23a07862008-09-12 08:57:47 -0400425 if (found_start != start) {
Chris Mason193f2842009-04-27 07:29:05 -0400426 if (printk_ratelimit()) {
427 printk(KERN_INFO "btrfs bad tree block start "
428 "%llu %llu\n",
429 (unsigned long long)found_start,
430 (unsigned long long)eb->start);
431 }
Chris Masonf1885912008-04-09 16:28:12 -0400432 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400433 goto err;
434 }
435 if (eb->first_page != page) {
Chris Masond3977122009-01-05 21:25:51 -0500436 printk(KERN_INFO "btrfs bad first page %lu %lu\n",
437 eb->first_page->index, page->index);
Chris Masonce9adaa2008-04-09 16:28:12 -0400438 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400439 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400440 goto err;
441 }
Yan Zheng2b820322008-11-17 21:11:30 -0500442 if (check_tree_block_fsid(root, eb)) {
Chris Mason193f2842009-04-27 07:29:05 -0400443 if (printk_ratelimit()) {
444 printk(KERN_INFO "btrfs bad fsid on block %llu\n",
445 (unsigned long long)eb->start);
446 }
Chris Mason1259ab72008-05-12 13:39:03 -0400447 ret = -EIO;
448 goto err;
449 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400450 found_level = btrfs_header_level(eb);
451
Chris Mason4008c042009-02-12 14:09:45 -0500452 btrfs_set_buffer_lockdep_class(eb, found_level);
453
Chris Masonce9adaa2008-04-09 16:28:12 -0400454 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400455 if (ret)
456 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400457
458 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
459 end = eb->start + end - 1;
Chris Masonce9adaa2008-04-09 16:28:12 -0400460err:
461 free_extent_buffer(eb);
462out:
Chris Masonf1885912008-04-09 16:28:12 -0400463 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400464}
465
Chris Masonce9adaa2008-04-09 16:28:12 -0400466static void end_workqueue_bio(struct bio *bio, int err)
Chris Masonce9adaa2008-04-09 16:28:12 -0400467{
468 struct end_io_wq *end_io_wq = bio->bi_private;
469 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400470
Chris Masonce9adaa2008-04-09 16:28:12 -0400471 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400472 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400473 end_io_wq->work.func = end_workqueue_fn;
474 end_io_wq->work.flags = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500475
476 if (bio->bi_rw & (1 << BIO_RW)) {
Chris Masoncad321a2008-12-17 14:51:42 -0500477 if (end_io_wq->metadata)
478 btrfs_queue_worker(&fs_info->endio_meta_write_workers,
479 &end_io_wq->work);
480 else
481 btrfs_queue_worker(&fs_info->endio_write_workers,
482 &end_io_wq->work);
Chris Masond20f7042008-12-08 16:58:54 -0500483 } else {
484 if (end_io_wq->metadata)
485 btrfs_queue_worker(&fs_info->endio_meta_workers,
486 &end_io_wq->work);
487 else
488 btrfs_queue_worker(&fs_info->endio_workers,
489 &end_io_wq->work);
490 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400491}
492
Chris Mason22c59942008-04-09 16:28:12 -0400493int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
494 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400495{
Chris Masonce9adaa2008-04-09 16:28:12 -0400496 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400497 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
498 if (!end_io_wq)
499 return -ENOMEM;
500
501 end_io_wq->private = bio->bi_private;
502 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400503 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400504 end_io_wq->error = 0;
505 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400506 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400507
508 bio->bi_private = end_io_wq;
509 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400510 return 0;
511}
512
Chris Masonb64a2852008-08-20 13:39:41 -0400513unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400514{
515 unsigned long limit = min_t(unsigned long,
516 info->workers.max_workers,
517 info->fs_devices->open_devices);
518 return 256 * limit;
519}
520
Chris Mason777e6bd2008-08-15 15:34:15 -0400521int btrfs_congested_async(struct btrfs_fs_info *info, int iodone)
Chris Mason0986fe9e2008-08-15 15:34:15 -0400522{
Chris Masonb64a2852008-08-20 13:39:41 -0400523 return atomic_read(&info->nr_async_bios) >
524 btrfs_async_submit_limit(info);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400525}
526
Chris Mason4a69a412008-11-06 22:03:00 -0500527static void run_one_async_start(struct btrfs_work *work)
528{
529 struct btrfs_fs_info *fs_info;
530 struct async_submit_bio *async;
531
532 async = container_of(work, struct async_submit_bio, work);
533 fs_info = BTRFS_I(async->inode)->root->fs_info;
534 async->submit_bio_start(async->inode, async->rw, async->bio,
535 async->mirror_num, async->bio_flags);
536}
537
538static void run_one_async_done(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400539{
540 struct btrfs_fs_info *fs_info;
541 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400542 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400543
544 async = container_of(work, struct async_submit_bio, work);
545 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400546
Chris Masonb64a2852008-08-20 13:39:41 -0400547 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400548 limit = limit * 2 / 3;
549
Chris Mason8b712842008-06-11 16:50:36 -0400550 atomic_dec(&fs_info->nr_async_submits);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400551
Chris Masonb64a2852008-08-20 13:39:41 -0400552 if (atomic_read(&fs_info->nr_async_submits) < limit &&
553 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400554 wake_up(&fs_info->async_submit_wait);
555
Chris Mason4a69a412008-11-06 22:03:00 -0500556 async->submit_bio_done(async->inode, async->rw, async->bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400557 async->mirror_num, async->bio_flags);
Chris Mason4a69a412008-11-06 22:03:00 -0500558}
559
560static void run_one_async_free(struct btrfs_work *work)
561{
562 struct async_submit_bio *async;
563
564 async = container_of(work, struct async_submit_bio, work);
Chris Mason8b712842008-06-11 16:50:36 -0400565 kfree(async);
566}
567
Chris Mason44b8bd72008-04-16 11:14:51 -0400568int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
569 int rw, struct bio *bio, int mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -0400570 unsigned long bio_flags,
Chris Mason4a69a412008-11-06 22:03:00 -0500571 extent_submit_bio_hook_t *submit_bio_start,
572 extent_submit_bio_hook_t *submit_bio_done)
Chris Mason44b8bd72008-04-16 11:14:51 -0400573{
574 struct async_submit_bio *async;
575
576 async = kmalloc(sizeof(*async), GFP_NOFS);
577 if (!async)
578 return -ENOMEM;
579
580 async->inode = inode;
581 async->rw = rw;
582 async->bio = bio;
583 async->mirror_num = mirror_num;
Chris Mason4a69a412008-11-06 22:03:00 -0500584 async->submit_bio_start = submit_bio_start;
585 async->submit_bio_done = submit_bio_done;
586
587 async->work.func = run_one_async_start;
588 async->work.ordered_func = run_one_async_done;
589 async->work.ordered_free = run_one_async_free;
590
Chris Mason8b712842008-06-11 16:50:36 -0400591 async->work.flags = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400592 async->bio_flags = bio_flags;
Chris Mason8c8bee12008-09-29 11:19:10 -0400593
Chris Masoncb03c742008-05-15 16:15:45 -0400594 atomic_inc(&fs_info->nr_async_submits);
Chris Masond313d7a2009-04-20 15:50:09 -0400595
596 if (rw & (1 << BIO_RW_SYNCIO))
597 btrfs_set_work_high_prio(&async->work);
598
Chris Mason8b712842008-06-11 16:50:36 -0400599 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason9473f162008-08-28 06:15:24 -0400600
Chris Masond3977122009-01-05 21:25:51 -0500601 while (atomic_read(&fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500602 atomic_read(&fs_info->nr_async_submits)) {
603 wait_event(fs_info->async_submit_wait,
604 (atomic_read(&fs_info->nr_async_submits) == 0));
605 }
606
Chris Mason44b8bd72008-04-16 11:14:51 -0400607 return 0;
608}
609
Chris Masonce3ed712008-09-23 13:14:12 -0400610static int btree_csum_one_bio(struct bio *bio)
611{
612 struct bio_vec *bvec = bio->bi_io_vec;
613 int bio_index = 0;
614 struct btrfs_root *root;
615
616 WARN_ON(bio->bi_vcnt <= 0);
Chris Masond3977122009-01-05 21:25:51 -0500617 while (bio_index < bio->bi_vcnt) {
Chris Masonce3ed712008-09-23 13:14:12 -0400618 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
619 csum_dirty_buffer(root, bvec->bv_page);
620 bio_index++;
621 bvec++;
622 }
623 return 0;
624}
625
Chris Mason4a69a412008-11-06 22:03:00 -0500626static int __btree_submit_bio_start(struct inode *inode, int rw,
627 struct bio *bio, int mirror_num,
628 unsigned long bio_flags)
Chris Mason22c59942008-04-09 16:28:12 -0400629{
Chris Mason8b712842008-06-11 16:50:36 -0400630 /*
631 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400632 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400633 */
Chris Mason4a69a412008-11-06 22:03:00 -0500634 btree_csum_one_bio(bio);
635 return 0;
636}
Chris Mason22c59942008-04-09 16:28:12 -0400637
Chris Mason4a69a412008-11-06 22:03:00 -0500638static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
639 int mirror_num, unsigned long bio_flags)
640{
Chris Mason8b712842008-06-11 16:50:36 -0400641 /*
Chris Mason4a69a412008-11-06 22:03:00 -0500642 * when we're called for a write, we're already in the async
643 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400644 */
Chris Mason8b712842008-06-11 16:50:36 -0400645 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400646}
647
Chris Mason44b8bd72008-04-16 11:14:51 -0400648static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400649 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -0400650{
Chris Masoncad321a2008-12-17 14:51:42 -0500651 int ret;
652
653 ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info,
654 bio, 1);
655 BUG_ON(ret);
656
Chris Mason44b8bd72008-04-16 11:14:51 -0400657 if (!(rw & (1 << BIO_RW))) {
Chris Mason4a69a412008-11-06 22:03:00 -0500658 /*
659 * called for a read, do the setup so that checksum validation
660 * can happen in the async kernel threads
661 */
Chris Mason4a69a412008-11-06 22:03:00 -0500662 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason6f3577b2008-11-13 09:59:36 -0500663 mirror_num, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -0400664 }
Chris Masond313d7a2009-04-20 15:50:09 -0400665
Chris Masoncad321a2008-12-17 14:51:42 -0500666 /*
667 * kthread helpers are used to submit writes so that checksumming
668 * can happen in parallel across all CPUs
669 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400670 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Masonc8b97812008-10-29 14:49:59 -0400671 inode, rw, bio, mirror_num, 0,
Chris Mason4a69a412008-11-06 22:03:00 -0500672 __btree_submit_bio_start,
673 __btree_submit_bio_done);
Chris Mason44b8bd72008-04-16 11:14:51 -0400674}
675
Chris Mason5f39d392007-10-15 16:14:19 -0400676static int btree_writepage(struct page *page, struct writeback_control *wbc)
677{
Chris Masond1310b22008-01-24 16:13:08 -0500678 struct extent_io_tree *tree;
Chris Masonb9473432009-03-13 11:00:37 -0400679 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
680 struct extent_buffer *eb;
681 int was_dirty;
Chris Mason5443be42008-08-15 15:34:16 -0400682
Chris Masonb9473432009-03-13 11:00:37 -0400683 tree = &BTRFS_I(page->mapping->host)->io_tree;
684 if (!(current->flags & PF_MEMALLOC)) {
685 return extent_write_full_page(tree, page,
686 btree_get_extent, wbc);
Chris Mason5443be42008-08-15 15:34:16 -0400687 }
Chris Masonb9473432009-03-13 11:00:37 -0400688
689 redirty_page_for_writepage(wbc, page);
690 eb = btrfs_find_tree_block(root, page_offset(page),
691 PAGE_CACHE_SIZE);
692 WARN_ON(!eb);
693
694 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
695 if (!was_dirty) {
696 spin_lock(&root->fs_info->delalloc_lock);
697 root->fs_info->dirty_metadata_bytes += PAGE_CACHE_SIZE;
698 spin_unlock(&root->fs_info->delalloc_lock);
699 }
700 free_extent_buffer(eb);
701
702 unlock_page(page);
703 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400704}
Chris Mason0da54682007-11-07 21:08:01 -0500705
706static int btree_writepages(struct address_space *mapping,
707 struct writeback_control *wbc)
708{
Chris Masond1310b22008-01-24 16:13:08 -0500709 struct extent_io_tree *tree;
710 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500711 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Masonb9473432009-03-13 11:00:37 -0400712 struct btrfs_root *root = BTRFS_I(mapping->host)->root;
Chris Mason793955b2007-11-26 16:34:41 -0800713 u64 num_dirty;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400714 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800715
716 if (wbc->for_kupdate)
717 return 0;
718
Chris Masonb9473432009-03-13 11:00:37 -0400719 /* this is a bit racy, but that's ok */
720 num_dirty = root->fs_info->dirty_metadata_bytes;
Chris Masond3977122009-01-05 21:25:51 -0500721 if (num_dirty < thresh)
Chris Mason793955b2007-11-26 16:34:41 -0800722 return 0;
Chris Mason793955b2007-11-26 16:34:41 -0800723 }
Chris Mason0da54682007-11-07 21:08:01 -0500724 return extent_writepages(tree, mapping, btree_get_extent, wbc);
725}
726
Christoph Hellwigb2950862008-12-02 09:54:17 -0500727static int btree_readpage(struct file *file, struct page *page)
Chris Mason5f39d392007-10-15 16:14:19 -0400728{
Chris Masond1310b22008-01-24 16:13:08 -0500729 struct extent_io_tree *tree;
730 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400731 return extent_read_full_page(tree, page, btree_get_extent);
732}
733
Chris Mason70dec802008-01-29 09:59:12 -0500734static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400735{
Chris Masond1310b22008-01-24 16:13:08 -0500736 struct extent_io_tree *tree;
737 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400738 int ret;
739
Chris Mason98509cf2008-09-11 15:51:43 -0400740 if (PageWriteback(page) || PageDirty(page))
Chris Masond3977122009-01-05 21:25:51 -0500741 return 0;
Chris Mason98509cf2008-09-11 15:51:43 -0400742
Chris Masond1310b22008-01-24 16:13:08 -0500743 tree = &BTRFS_I(page->mapping->host)->io_tree;
744 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118ce2008-07-22 11:18:07 -0400745
Chris Mason7b13b7b2008-04-18 10:29:50 -0400746 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Masond3977122009-01-05 21:25:51 -0500747 if (!ret)
Chris Mason6af118ce2008-07-22 11:18:07 -0400748 return 0;
Chris Mason6af118ce2008-07-22 11:18:07 -0400749
750 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400751 if (ret == 1) {
752 ClearPagePrivate(page);
753 set_page_private(page, 0);
754 page_cache_release(page);
755 }
Chris Mason6af118ce2008-07-22 11:18:07 -0400756
Chris Masond98237b2007-03-28 13:57:48 -0400757 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400758}
Chris Mason123abc82007-03-14 14:14:43 -0400759
Chris Mason5f39d392007-10-15 16:14:19 -0400760static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400761{
Chris Masond1310b22008-01-24 16:13:08 -0500762 struct extent_io_tree *tree;
763 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400764 extent_invalidatepage(tree, page, offset);
765 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400766 if (PagePrivate(page)) {
Chris Masond3977122009-01-05 21:25:51 -0500767 printk(KERN_WARNING "btrfs warning page private not zero "
768 "on page %llu\n", (unsigned long long)page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400769 ClearPagePrivate(page);
770 set_page_private(page, 0);
771 page_cache_release(page);
772 }
Chris Masond98237b2007-03-28 13:57:48 -0400773}
774
Chris Masond98237b2007-03-28 13:57:48 -0400775static struct address_space_operations btree_aops = {
776 .readpage = btree_readpage,
777 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500778 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400779 .releasepage = btree_releasepage,
780 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400781 .sync_page = block_sync_page,
782};
783
Chris Masonca7a79a2008-05-12 12:59:19 -0400784int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
785 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400786{
Chris Mason5f39d392007-10-15 16:14:19 -0400787 struct extent_buffer *buf = NULL;
788 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400789 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400790
Chris Masondb945352007-10-15 16:15:53 -0400791 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400792 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400793 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500794 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400795 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400796 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400797 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400798}
799
Chris Mason0999df52008-04-01 13:48:14 -0400800struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
801 u64 bytenr, u32 blocksize)
802{
803 struct inode *btree_inode = root->fs_info->btree_inode;
804 struct extent_buffer *eb;
805 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
806 bytenr, blocksize, GFP_NOFS);
807 return eb;
808}
809
810struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
811 u64 bytenr, u32 blocksize)
812{
813 struct inode *btree_inode = root->fs_info->btree_inode;
814 struct extent_buffer *eb;
815
816 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
817 bytenr, blocksize, NULL, GFP_NOFS);
818 return eb;
819}
820
821
Chris Masone02119d2008-09-05 16:13:11 -0400822int btrfs_write_tree_block(struct extent_buffer *buf)
823{
824 return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
Chris Mason24ab9cd2008-09-24 14:51:30 -0400825 buf->start + buf->len - 1, WB_SYNC_ALL);
Chris Masone02119d2008-09-05 16:13:11 -0400826}
827
828int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
829{
830 return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
Chris Masond3977122009-01-05 21:25:51 -0500831 buf->start, buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -0400832}
833
Chris Masondb945352007-10-15 16:15:53 -0400834struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400835 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400836{
Chris Mason5f39d392007-10-15 16:14:19 -0400837 struct extent_buffer *buf = NULL;
838 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500839 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400840 int ret;
841
Chris Masond1310b22008-01-24 16:13:08 -0500842 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400843
Chris Masondb945352007-10-15 16:15:53 -0400844 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400845 if (!buf)
846 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500847
Chris Masonca7a79a2008-05-12 12:59:19 -0400848 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400849
Chris Masond3977122009-01-05 21:25:51 -0500850 if (ret == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -0500851 set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
Chris Mason5f39d392007-10-15 16:14:19 -0400852 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400853
Chris Masoneb60cea2007-02-02 09:18:22 -0500854}
855
Chris Masone089f052007-03-16 16:20:31 -0400856int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400857 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500858{
Chris Mason5f39d392007-10-15 16:14:19 -0400859 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500860 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400861 root->fs_info->running_transaction->transid) {
Chris Masonb9447ef2009-03-09 11:45:38 -0400862 btrfs_assert_tree_locked(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500863
Chris Masonb9473432009-03-13 11:00:37 -0400864 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
865 spin_lock(&root->fs_info->delalloc_lock);
866 if (root->fs_info->dirty_metadata_bytes >= buf->len)
867 root->fs_info->dirty_metadata_bytes -= buf->len;
868 else
869 WARN_ON(1);
870 spin_unlock(&root->fs_info->delalloc_lock);
871 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500872
Chris Masonb9473432009-03-13 11:00:37 -0400873 /* ugh, clear_extent_buffer_dirty needs to lock the page */
874 btrfs_set_lock_blocking(buf);
Chris Masond1310b22008-01-24 16:13:08 -0500875 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500876 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400877 }
Chris Mason5f39d392007-10-15 16:14:19 -0400878 return 0;
879}
880
Chris Masondb945352007-10-15 16:15:53 -0400881static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500882 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400883 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400884 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500885{
Chris Masoncfaa7292007-02-21 17:04:57 -0500886 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500887 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400888 root->sectorsize = sectorsize;
889 root->nodesize = nodesize;
890 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500891 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400892 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400893 root->track_dirty = 0;
894
Chris Mason9f5fae22007-03-20 14:38:32 -0400895 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400896 root->objectid = objectid;
897 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400898 root->highest_inode = 0;
899 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400900 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500901 root->in_sysfs = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400902 root->inode_tree.rb_node = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400903
904 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -0400905 INIT_LIST_HEAD(&root->orphan_list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400906 INIT_LIST_HEAD(&root->root_list);
Chris Mason925baed2008-06-25 16:01:30 -0400907 spin_lock_init(&root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400908 spin_lock_init(&root->list_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400909 spin_lock_init(&root->inode_lock);
Chris Masona2135012008-06-25 16:01:30 -0400910 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400911 mutex_init(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -0500912 init_waitqueue_head(&root->log_writer_wait);
913 init_waitqueue_head(&root->log_commit_wait[0]);
914 init_waitqueue_head(&root->log_commit_wait[1]);
915 atomic_set(&root->log_commit[0], 0);
916 atomic_set(&root->log_commit[1], 0);
917 atomic_set(&root->log_writers, 0);
918 root->log_batch = 0;
919 root->log_transid = 0;
Chris Masond0c803c2008-09-11 16:17:57 -0400920 extent_io_tree_init(&root->dirty_log_pages,
921 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason017e5362008-07-28 15:32:51 -0400922
Chris Mason3768f362007-03-13 16:47:54 -0400923 memset(&root->root_key, 0, sizeof(root->root_key));
924 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400925 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400926 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -0400927 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -0400928 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400929 root->defrag_running = 0;
930 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400931 root->root_key.objectid = objectid;
Chris Mason3394e162008-11-17 20:42:26 -0500932 root->anon_super.s_root = NULL;
933 root->anon_super.s_dev = 0;
934 INIT_LIST_HEAD(&root->anon_super.s_list);
935 INIT_LIST_HEAD(&root->anon_super.s_instances);
936 init_rwsem(&root->anon_super.s_umount);
937
Chris Mason3768f362007-03-13 16:47:54 -0400938 return 0;
939}
940
Chris Masondb945352007-10-15 16:15:53 -0400941static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400942 struct btrfs_fs_info *fs_info,
943 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400944 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400945{
946 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400947 u32 blocksize;
Yan Zheng84234f32008-10-29 14:49:05 -0400948 u64 generation;
Chris Mason3768f362007-03-13 16:47:54 -0400949
Chris Masondb945352007-10-15 16:15:53 -0400950 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500951 tree_root->sectorsize, tree_root->stripesize,
952 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400953 ret = btrfs_find_last_root(tree_root, objectid,
954 &root->root_item, &root->root_key);
955 BUG_ON(ret);
956
Yan Zheng84234f32008-10-29 14:49:05 -0400957 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -0400958 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
959 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -0400960 blocksize, generation);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 root->commit_root = btrfs_root_node(root);
Chris Mason3768f362007-03-13 16:47:54 -0400962 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500963 return 0;
964}
965
Chris Masone02119d2008-09-05 16:13:11 -0400966int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
967 struct btrfs_fs_info *fs_info)
968{
969 struct extent_buffer *eb;
Chris Masond0c803c2008-09-11 16:17:57 -0400970 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
971 u64 start = 0;
972 u64 end = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400973 int ret;
974
Chris Masond0c803c2008-09-11 16:17:57 -0400975 if (!log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400976 return 0;
977
Chris Masond3977122009-01-05 21:25:51 -0500978 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -0400979 ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
980 0, &start, &end, EXTENT_DIRTY);
981 if (ret)
982 break;
983
984 clear_extent_dirty(&log_root_tree->dirty_log_pages,
985 start, end, GFP_NOFS);
986 }
Chris Masone02119d2008-09-05 16:13:11 -0400987 eb = fs_info->log_root_tree->node;
988
989 WARN_ON(btrfs_header_level(eb) != 0);
990 WARN_ON(btrfs_header_nritems(eb) != 0);
991
Chris Masond00aff02008-09-11 15:54:42 -0400992 ret = btrfs_free_reserved_extent(fs_info->tree_root,
993 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400994 BUG_ON(ret);
995
996 free_extent_buffer(eb);
997 kfree(fs_info->log_root_tree);
998 fs_info->log_root_tree = NULL;
999 return 0;
1000}
1001
Yan Zheng7237f182009-01-21 12:54:03 -05001002static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1003 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001004{
1005 struct btrfs_root *root;
1006 struct btrfs_root *tree_root = fs_info->tree_root;
Yan Zheng7237f182009-01-21 12:54:03 -05001007 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001008
1009 root = kzalloc(sizeof(*root), GFP_NOFS);
1010 if (!root)
Yan Zheng7237f182009-01-21 12:54:03 -05001011 return ERR_PTR(-ENOMEM);
Chris Masone02119d2008-09-05 16:13:11 -04001012
1013 __setup_root(tree_root->nodesize, tree_root->leafsize,
1014 tree_root->sectorsize, tree_root->stripesize,
1015 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1016
1017 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1018 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1019 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
Yan Zheng7237f182009-01-21 12:54:03 -05001020 /*
1021 * log trees do not get reference counted because they go away
1022 * before a real commit is actually done. They do store pointers
1023 * to file data extents, and those reference counts still get
1024 * updated (along with back refs to the log tree).
1025 */
Chris Masone02119d2008-09-05 16:13:11 -04001026 root->ref_cows = 0;
1027
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001028 leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
1029 BTRFS_TREE_LOG_OBJECTID, NULL, 0, 0, 0);
Yan Zheng7237f182009-01-21 12:54:03 -05001030 if (IS_ERR(leaf)) {
1031 kfree(root);
1032 return ERR_CAST(leaf);
1033 }
Chris Masone02119d2008-09-05 16:13:11 -04001034
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
1036 btrfs_set_header_bytenr(leaf, leaf->start);
1037 btrfs_set_header_generation(leaf, trans->transid);
1038 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1039 btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
Yan Zheng7237f182009-01-21 12:54:03 -05001040 root->node = leaf;
Chris Masone02119d2008-09-05 16:13:11 -04001041
1042 write_extent_buffer(root->node, root->fs_info->fsid,
1043 (unsigned long)btrfs_header_fsid(root->node),
1044 BTRFS_FSID_SIZE);
1045 btrfs_mark_buffer_dirty(root->node);
1046 btrfs_tree_unlock(root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001047 return root;
1048}
1049
1050int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
1051 struct btrfs_fs_info *fs_info)
1052{
1053 struct btrfs_root *log_root;
1054
1055 log_root = alloc_log_tree(trans, fs_info);
1056 if (IS_ERR(log_root))
1057 return PTR_ERR(log_root);
1058 WARN_ON(fs_info->log_root_tree);
1059 fs_info->log_root_tree = log_root;
1060 return 0;
1061}
1062
1063int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
1064 struct btrfs_root *root)
1065{
1066 struct btrfs_root *log_root;
1067 struct btrfs_inode_item *inode_item;
1068
1069 log_root = alloc_log_tree(trans, root->fs_info);
1070 if (IS_ERR(log_root))
1071 return PTR_ERR(log_root);
1072
1073 log_root->last_trans = trans->transid;
1074 log_root->root_key.offset = root->root_key.objectid;
1075
1076 inode_item = &log_root->root_item.inode;
1077 inode_item->generation = cpu_to_le64(1);
1078 inode_item->size = cpu_to_le64(3);
1079 inode_item->nlink = cpu_to_le32(1);
1080 inode_item->nbytes = cpu_to_le64(root->leafsize);
1081 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
1082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001083 btrfs_set_root_node(&log_root->root_item, log_root->node);
Yan Zheng7237f182009-01-21 12:54:03 -05001084
1085 WARN_ON(root->log_root);
1086 root->log_root = log_root;
1087 root->log_transid = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001088 return 0;
1089}
1090
1091struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
1092 struct btrfs_key *location)
1093{
1094 struct btrfs_root *root;
1095 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001096 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001097 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -04001098 u64 highest_inode;
Yan Zheng84234f32008-10-29 14:49:05 -04001099 u64 generation;
Chris Masondb945352007-10-15 16:15:53 -04001100 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001101 int ret = 0;
1102
Chris Mason5eda7b52007-06-22 14:16:25 -04001103 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -04001104 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001105 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001106 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -04001107 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001108 location->objectid, root);
1109 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04001110 kfree(root);
1111 return ERR_PTR(ret);
1112 }
1113 goto insert;
1114 }
1115
Chris Masondb945352007-10-15 16:15:53 -04001116 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001117 tree_root->sectorsize, tree_root->stripesize,
1118 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001119
1120 path = btrfs_alloc_path();
1121 BUG_ON(!path);
1122 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
1123 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04001124 if (ret > 0)
1125 ret = -ENOENT;
1126 goto out;
1127 }
Chris Mason5f39d392007-10-15 16:14:19 -04001128 l = path->nodes[0];
1129 read_extent_buffer(l, &root->root_item,
1130 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -04001131 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -04001132 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -04001133 ret = 0;
1134out:
1135 btrfs_release_path(root, path);
1136 btrfs_free_path(path);
1137 if (ret) {
1138 kfree(root);
1139 return ERR_PTR(ret);
1140 }
Yan Zheng84234f32008-10-29 14:49:05 -04001141 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001142 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
1143 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001144 blocksize, generation);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001145 root->commit_root = btrfs_root_node(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001146 BUG_ON(!root->node);
1147insert:
Chris Masone02119d2008-09-05 16:13:11 -04001148 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
1149 root->ref_cows = 1;
1150 ret = btrfs_find_highest_inode(root, &highest_inode);
1151 if (ret == 0) {
1152 root->highest_inode = highest_inode;
1153 root->last_inode_alloc = highest_inode;
1154 }
Chris Mason5eda7b52007-06-22 14:16:25 -04001155 }
1156 return root;
1157}
1158
Chris Masondc17ff82008-01-08 15:46:30 -05001159struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
1160 u64 root_objectid)
1161{
1162 struct btrfs_root *root;
1163
1164 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
1165 return fs_info->tree_root;
1166 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
1167 return fs_info->extent_root;
1168
1169 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1170 (unsigned long)root_objectid);
1171 return root;
1172}
1173
Chris Masonedbd8d42007-12-21 16:27:24 -05001174struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
1175 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -04001176{
1177 struct btrfs_root *root;
1178 int ret;
1179
Chris Masonedbd8d42007-12-21 16:27:24 -05001180 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1181 return fs_info->tree_root;
1182 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1183 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001184 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
1185 return fs_info->chunk_root;
1186 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
1187 return fs_info->dev_root;
Yan Zheng0403e472008-12-10 20:32:51 -05001188 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
1189 return fs_info->csum_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05001190
Chris Mason5eda7b52007-06-22 14:16:25 -04001191 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1192 (unsigned long)location->objectid);
1193 if (root)
1194 return root;
1195
Chris Masone02119d2008-09-05 16:13:11 -04001196 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -04001197 if (IS_ERR(root))
1198 return root;
Chris Mason3394e162008-11-17 20:42:26 -05001199
1200 set_anon_super(&root->anon_super, NULL);
1201
Chris Mason2619ba12007-04-10 16:58:11 -04001202 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1203 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001204 root);
1205 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001206 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001207 kfree(root);
1208 return ERR_PTR(ret);
1209 }
Yan Zhengc146afa2008-11-12 14:34:12 -05001210 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
1211 ret = btrfs_find_dead_roots(fs_info->tree_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001212 root->root_key.objectid);
Yan Zhengc146afa2008-11-12 14:34:12 -05001213 BUG_ON(ret);
1214 btrfs_orphan_cleanup(root);
1215 }
Chris Masonedbd8d42007-12-21 16:27:24 -05001216 return root;
1217}
1218
1219struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
1220 struct btrfs_key *location,
1221 const char *name, int namelen)
1222{
1223 struct btrfs_root *root;
1224 int ret;
1225
1226 root = btrfs_read_fs_root_no_name(fs_info, location);
1227 if (!root)
1228 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -04001229
Chris Mason4313b392008-01-03 09:08:48 -05001230 if (root->in_sysfs)
1231 return root;
1232
Josef Bacik58176a92007-08-29 15:47:34 -04001233 ret = btrfs_set_root_name(root, name, namelen);
1234 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001235 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001236 kfree(root);
1237 return ERR_PTR(ret);
1238 }
Chris Masonea9e8b12008-11-17 21:14:24 -05001239#if 0
Josef Bacik58176a92007-08-29 15:47:34 -04001240 ret = btrfs_sysfs_add_root(root);
1241 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001242 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001243 kfree(root->name);
1244 kfree(root);
1245 return ERR_PTR(ret);
1246 }
Chris Masonea9e8b12008-11-17 21:14:24 -05001247#endif
Chris Mason4313b392008-01-03 09:08:48 -05001248 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001249 return root;
1250}
Chris Mason04160082008-03-26 10:28:07 -04001251
1252static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1253{
1254 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1255 int ret = 0;
Chris Mason04160082008-03-26 10:28:07 -04001256 struct btrfs_device *device;
1257 struct backing_dev_info *bdi;
Chris Masonb7967db2009-04-27 07:29:04 -04001258
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001259 list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04001260 if (!device->bdev)
1261 continue;
Chris Mason04160082008-03-26 10:28:07 -04001262 bdi = blk_get_backing_dev_info(device->bdev);
1263 if (bdi && bdi_congested(bdi, bdi_bits)) {
1264 ret = 1;
1265 break;
1266 }
1267 }
1268 return ret;
1269}
1270
Chris Mason38b66982008-04-22 09:22:11 -04001271/*
1272 * this unplugs every device on the box, and it is only used when page
1273 * is null
1274 */
1275static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1276{
Chris Mason38b66982008-04-22 09:22:11 -04001277 struct btrfs_device *device;
1278 struct btrfs_fs_info *info;
1279
1280 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001281 list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
Chris Masond20f7042008-12-08 16:58:54 -05001282 if (!device->bdev)
1283 continue;
1284
Chris Mason38b66982008-04-22 09:22:11 -04001285 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masond3977122009-01-05 21:25:51 -05001286 if (bdi->unplug_io_fn)
Chris Mason38b66982008-04-22 09:22:11 -04001287 bdi->unplug_io_fn(bdi, page);
Chris Mason38b66982008-04-22 09:22:11 -04001288 }
1289}
1290
Christoph Hellwigb2950862008-12-02 09:54:17 -05001291static void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
Chris Mason04160082008-03-26 10:28:07 -04001292{
Chris Mason38b66982008-04-22 09:22:11 -04001293 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -04001294 struct extent_map_tree *em_tree;
1295 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -04001296 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -04001297 u64 offset;
1298
Chris Masonbcbfce82008-04-22 13:26:47 -04001299 /* the generic O_DIRECT read code does this */
Chris Mason9f0ba5b2008-11-18 10:31:22 -05001300 if (1 || !page) {
Chris Mason38b66982008-04-22 09:22:11 -04001301 __unplug_io_fn(bdi, page);
1302 return;
1303 }
1304
Chris Masonbcbfce82008-04-22 13:26:47 -04001305 /*
1306 * page->mapping may change at any time. Get a consistent copy
1307 * and use that for everything below
1308 */
1309 smp_mb();
1310 mapping = page->mapping;
1311 if (!mapping)
1312 return;
1313
1314 inode = mapping->host;
Chris Mason240d5d42008-11-10 13:08:31 -05001315
1316 /*
1317 * don't do the expensive searching for a small number of
1318 * devices
1319 */
1320 if (BTRFS_I(inode)->root->fs_info->fs_devices->open_devices <= 2) {
1321 __unplug_io_fn(bdi, page);
1322 return;
1323 }
1324
Chris Mason38b66982008-04-22 09:22:11 -04001325 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -04001326
Chris Masonf2d8d742008-04-21 10:03:05 -04001327 em_tree = &BTRFS_I(inode)->extent_tree;
1328 spin_lock(&em_tree->lock);
1329 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1330 spin_unlock(&em_tree->lock);
Chris Mason89642222008-07-24 09:41:53 -04001331 if (!em) {
1332 __unplug_io_fn(bdi, page);
Chris Masonf2d8d742008-04-21 10:03:05 -04001333 return;
Chris Mason89642222008-07-24 09:41:53 -04001334 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001335
Chris Mason89642222008-07-24 09:41:53 -04001336 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1337 free_extent_map(em);
1338 __unplug_io_fn(bdi, page);
1339 return;
1340 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001341 offset = offset - em->start;
1342 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1343 em->block_start + offset, page);
1344 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001345}
1346
Jens Axboead081f12009-06-12 14:43:40 +02001347/*
1348 * If this fails, caller must call bdi_destroy() to get rid of the
1349 * bdi again.
1350 */
Chris Mason04160082008-03-26 10:28:07 -04001351static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1352{
Jens Axboead081f12009-06-12 14:43:40 +02001353 int err;
1354
Jens Axboed9938312009-06-12 14:45:52 +02001355 bdi->name = "btrfs";
Jens Axboead081f12009-06-12 14:43:40 +02001356 bdi->capabilities = BDI_CAP_MAP_COPY;
1357 err = bdi_init(bdi);
1358 if (err)
1359 return err;
1360
1361 err = bdi_register(bdi, NULL, "btrfs-%d",
1362 atomic_inc_return(&btrfs_bdi_num));
1363 if (err)
1364 return err;
1365
Chris Mason4575c9c2008-04-18 16:13:31 -04001366 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001367 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1368 bdi->unplug_io_data = info;
1369 bdi->congested_fn = btrfs_congested_fn;
1370 bdi->congested_data = info;
1371 return 0;
1372}
1373
Chris Masonce9adaa2008-04-09 16:28:12 -04001374static int bio_ready_for_csum(struct bio *bio)
1375{
1376 u64 length = 0;
1377 u64 buf_len = 0;
1378 u64 start = 0;
1379 struct page *page;
1380 struct extent_io_tree *io_tree = NULL;
1381 struct btrfs_fs_info *info = NULL;
1382 struct bio_vec *bvec;
1383 int i;
1384 int ret;
1385
1386 bio_for_each_segment(bvec, bio, i) {
1387 page = bvec->bv_page;
1388 if (page->private == EXTENT_PAGE_PRIVATE) {
1389 length += bvec->bv_len;
1390 continue;
1391 }
1392 if (!page->private) {
1393 length += bvec->bv_len;
1394 continue;
1395 }
1396 length = bvec->bv_len;
1397 buf_len = page->private >> 2;
1398 start = page_offset(page) + bvec->bv_offset;
1399 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1400 info = BTRFS_I(page->mapping->host)->root->fs_info;
1401 }
1402 /* are we fully contained in this bio? */
1403 if (buf_len <= length)
1404 return 1;
1405
1406 ret = extent_range_uptodate(io_tree, start + length,
1407 start + buf_len - 1);
Chris Masonce9adaa2008-04-09 16:28:12 -04001408 return ret;
1409}
1410
Chris Mason8b712842008-06-11 16:50:36 -04001411/*
1412 * called by the kthread helper functions to finally call the bio end_io
1413 * functions. This is where read checksum verification actually happens
1414 */
1415static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001416{
Chris Masonce9adaa2008-04-09 16:28:12 -04001417 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001418 struct end_io_wq *end_io_wq;
1419 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001420 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001421
Chris Mason8b712842008-06-11 16:50:36 -04001422 end_io_wq = container_of(work, struct end_io_wq, work);
1423 bio = end_io_wq->bio;
1424 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001425
Chris Masoncad321a2008-12-17 14:51:42 -05001426 /* metadata bio reads are special because the whole tree block must
Chris Mason8b712842008-06-11 16:50:36 -04001427 * be checksummed at once. This makes sure the entire block is in
1428 * ram and up to date before trying to verify things. For
1429 * blocksize <= pagesize, it is basically a noop
1430 */
Chris Masoncad321a2008-12-17 14:51:42 -05001431 if (!(bio->bi_rw & (1 << BIO_RW)) && end_io_wq->metadata &&
1432 !bio_ready_for_csum(bio)) {
Chris Masond20f7042008-12-08 16:58:54 -05001433 btrfs_queue_worker(&fs_info->endio_meta_workers,
Chris Mason8b712842008-06-11 16:50:36 -04001434 &end_io_wq->work);
1435 return;
1436 }
1437 error = end_io_wq->error;
1438 bio->bi_private = end_io_wq->private;
1439 bio->bi_end_io = end_io_wq->end_io;
1440 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001441 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001442}
1443
Chris Masona74a4b92008-06-25 16:01:31 -04001444static int cleaner_kthread(void *arg)
1445{
1446 struct btrfs_root *root = arg;
1447
1448 do {
1449 smp_mb();
1450 if (root->fs_info->closing)
1451 break;
1452
1453 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1454 mutex_lock(&root->fs_info->cleaner_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001455 btrfs_clean_old_snapshots(root);
Chris Masona74a4b92008-06-25 16:01:31 -04001456 mutex_unlock(&root->fs_info->cleaner_mutex);
1457
1458 if (freezing(current)) {
1459 refrigerator();
1460 } else {
1461 smp_mb();
1462 if (root->fs_info->closing)
1463 break;
1464 set_current_state(TASK_INTERRUPTIBLE);
1465 schedule();
1466 __set_current_state(TASK_RUNNING);
1467 }
1468 } while (!kthread_should_stop());
1469 return 0;
1470}
1471
1472static int transaction_kthread(void *arg)
1473{
1474 struct btrfs_root *root = arg;
1475 struct btrfs_trans_handle *trans;
1476 struct btrfs_transaction *cur;
1477 unsigned long now;
1478 unsigned long delay;
1479 int ret;
1480
1481 do {
1482 smp_mb();
1483 if (root->fs_info->closing)
1484 break;
1485
1486 delay = HZ * 30;
1487 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1488 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1489
1490 mutex_lock(&root->fs_info->trans_mutex);
1491 cur = root->fs_info->running_transaction;
1492 if (!cur) {
1493 mutex_unlock(&root->fs_info->trans_mutex);
1494 goto sleep;
1495 }
Yan Zheng31153d82008-07-28 15:32:19 -04001496
Chris Masona74a4b92008-06-25 16:01:31 -04001497 now = get_seconds();
1498 if (now < cur->start_time || now - cur->start_time < 30) {
1499 mutex_unlock(&root->fs_info->trans_mutex);
1500 delay = HZ * 5;
1501 goto sleep;
1502 }
1503 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001504 trans = btrfs_start_transaction(root, 1);
1505 ret = btrfs_commit_transaction(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -04001506
Chris Masona74a4b92008-06-25 16:01:31 -04001507sleep:
1508 wake_up_process(root->fs_info->cleaner_kthread);
1509 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1510
1511 if (freezing(current)) {
1512 refrigerator();
1513 } else {
1514 if (root->fs_info->closing)
1515 break;
1516 set_current_state(TASK_INTERRUPTIBLE);
1517 schedule_timeout(delay);
1518 __set_current_state(TASK_RUNNING);
1519 }
1520 } while (!kthread_should_stop());
1521 return 0;
1522}
1523
Chris Mason8a4b83c2008-03-24 15:02:07 -04001524struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001525 struct btrfs_fs_devices *fs_devices,
1526 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001527{
Chris Masondb945352007-10-15 16:15:53 -04001528 u32 sectorsize;
1529 u32 nodesize;
1530 u32 leafsize;
1531 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001532 u32 stripesize;
Yan Zheng84234f32008-10-29 14:49:05 -04001533 u64 generation;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001534 u64 features;
Chris Mason3de45862008-11-17 21:02:50 -05001535 struct btrfs_key location;
Chris Masona061fc82008-05-07 11:43:44 -04001536 struct buffer_head *bh;
Chris Masone02119d2008-09-05 16:13:11 -04001537 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001538 GFP_NOFS);
Chris Masond20f7042008-12-08 16:58:54 -05001539 struct btrfs_root *csum_root = kzalloc(sizeof(struct btrfs_root),
1540 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001541 struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001542 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001543 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001544 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001545 struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001546 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001547 struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001548 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001549 struct btrfs_root *log_tree_root;
1550
Chris Masoneb60cea2007-02-02 09:18:22 -05001551 int ret;
Yane58ca022008-04-01 11:21:34 -04001552 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001553
Chris Mason2c90e5d2007-04-02 10:50:19 -04001554 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001555
Jim Meyering0463bb42008-10-01 19:09:04 -04001556 if (!extent_root || !tree_root || !fs_info ||
Chris Masond20f7042008-12-08 16:58:54 -05001557 !chunk_root || !dev_root || !csum_root) {
Chris Mason39279cc2007-06-12 06:35:45 -04001558 err = -ENOMEM;
1559 goto fail;
1560 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001561 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001562 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001563 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001564 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001565 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04001566 INIT_LIST_HEAD(&fs_info->ordered_operations);
Chris Mason1832a6d2007-12-21 16:27:21 -05001567 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001568 spin_lock_init(&fs_info->new_trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001569 spin_lock_init(&fs_info->ref_cache_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001570
Josef Bacik58176a92007-08-29 15:47:34 -04001571 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001572 fs_info->tree_root = tree_root;
1573 fs_info->extent_root = extent_root;
Chris Masond20f7042008-12-08 16:58:54 -05001574 fs_info->csum_root = csum_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001575 fs_info->chunk_root = chunk_root;
1576 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001577 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001578 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001579 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001580 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001581 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason771ed682008-11-06 22:02:51 -05001582 atomic_set(&fs_info->async_delalloc_pages, 0);
Chris Mason8c8bee12008-09-29 11:19:10 -04001583 atomic_set(&fs_info->async_submit_draining, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04001584 atomic_set(&fs_info->nr_async_bios, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001585 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001586 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001587 fs_info->max_inline = 8192 * 1024;
Jens Axboead081f12009-06-12 14:43:40 +02001588 if (setup_bdi(fs_info, &fs_info->bdi))
1589 goto fail_bdi;
Chris Masond98237b2007-03-28 13:57:48 -04001590 fs_info->btree_inode = new_inode(sb);
1591 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001592 fs_info->btree_inode->i_nlink = 1;
Josef Bacik97e728d2009-04-21 17:40:57 -04001593 fs_info->metadata_ratio = 8;
Chris Masonc8b97812008-10-29 14:49:59 -04001594
Chris Masonb34b0862008-12-19 15:43:22 -05001595 fs_info->thread_pool_size = min_t(unsigned long,
1596 num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001597
Chris Mason3eaa2882008-07-24 11:57:52 -04001598 INIT_LIST_HEAD(&fs_info->ordered_extents);
1599 spin_lock_init(&fs_info->ordered_extent_lock);
1600
Chris Masona061fc82008-05-07 11:43:44 -04001601 sb->s_blocksize = 4096;
1602 sb->s_blocksize_bits = blksize_bits(4096);
1603
Chris Mason0afbaf82008-04-18 14:17:20 -04001604 /*
1605 * we set the i_size on the btree inode to the max possible int.
1606 * the real end of the address space is determined by all of
1607 * the devices in the system
1608 */
1609 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001610 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001611 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1612
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001613 RB_CLEAR_NODE(&BTRFS_I(fs_info->btree_inode)->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -05001614 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001615 fs_info->btree_inode->i_mapping,
1616 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001617 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1618 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001619
Chris Masond1310b22008-01-24 16:13:08 -05001620 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1621
Josef Bacik0f9dd462008-09-23 13:14:11 -04001622 spin_lock_init(&fs_info->block_group_cache_lock);
1623 fs_info->block_group_cache_tree.rb_node = NULL;
1624
Chris Masond1310b22008-01-24 16:13:08 -05001625 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001626 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001627 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001628
Chris Mason0f7d52f2007-04-09 10:42:37 -04001629 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1630 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1631 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001632 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001633
Chris Mason79154b12007-03-22 15:59:16 -04001634 mutex_init(&fs_info->trans_mutex);
Chris Mason5a3f23d2009-03-31 13:27:11 -04001635 mutex_init(&fs_info->ordered_operations_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001636 mutex_init(&fs_info->tree_log_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001637 mutex_init(&fs_info->drop_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001638 mutex_init(&fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001639 mutex_init(&fs_info->transaction_kthread_mutex);
1640 mutex_init(&fs_info->cleaner_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001641 mutex_init(&fs_info->volume_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001642 mutex_init(&fs_info->tree_reloc_mutex);
Yan Zheng276e6802009-07-30 09:40:40 -04001643 init_rwsem(&fs_info->extent_commit_sem);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001644
1645 btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
1646 btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
1647
Chris Masone6dcd2d2008-07-17 12:53:50 -04001648 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001649 init_waitqueue_head(&fs_info->transaction_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04001650 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Mason3768f362007-03-13 16:47:54 -04001651
Chris Mason0b86a832008-03-24 15:01:56 -04001652 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001653 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001654
Chris Masond98237b2007-03-28 13:57:48 -04001655
Yan Zhenga512bbf2008-12-08 16:46:26 -05001656 bh = btrfs_read_dev_super(fs_devices->latest_bdev);
Chris Masona061fc82008-05-07 11:43:44 -04001657 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001658 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001659
Chris Masona061fc82008-05-07 11:43:44 -04001660 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
Yan Zheng2d69a0f2009-01-05 15:43:42 -05001661 memcpy(&fs_info->super_for_commit, &fs_info->super_copy,
1662 sizeof(fs_info->super_for_commit));
Chris Masona061fc82008-05-07 11:43:44 -04001663 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001664
Chris Masona061fc82008-05-07 11:43:44 -04001665 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001666
Chris Mason5f39d392007-10-15 16:14:19 -04001667 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001668 if (!btrfs_super_root(disk_super))
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001669 goto fail_iput;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001670
Yan Zheng2b820322008-11-17 21:11:30 -05001671 ret = btrfs_parse_options(tree_root, options);
1672 if (ret) {
1673 err = ret;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001674 goto fail_iput;
Yan Zheng2b820322008-11-17 21:11:30 -05001675 }
Chris Masondfe25022008-05-13 13:46:40 -04001676
Josef Bacikf2b636e2008-12-02 06:36:08 -05001677 features = btrfs_super_incompat_flags(disk_super) &
1678 ~BTRFS_FEATURE_INCOMPAT_SUPP;
1679 if (features) {
1680 printk(KERN_ERR "BTRFS: couldn't mount because of "
1681 "unsupported optional features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07001682 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05001683 err = -EINVAL;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001684 goto fail_iput;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001685 }
1686
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001687 features = btrfs_super_incompat_flags(disk_super);
1688 if (!(features & BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF)) {
1689 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
1690 btrfs_set_super_incompat_flags(disk_super, features);
1691 }
1692
Josef Bacikf2b636e2008-12-02 06:36:08 -05001693 features = btrfs_super_compat_ro_flags(disk_super) &
1694 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
1695 if (!(sb->s_flags & MS_RDONLY) && features) {
1696 printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
1697 "unsupported option features (%Lx).\n",
Joel Becker21380932009-04-21 12:38:29 -07001698 (unsigned long long)features);
Josef Bacikf2b636e2008-12-02 06:36:08 -05001699 err = -EINVAL;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001700 goto fail_iput;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001701 }
1702
Chris Mason4543df72008-06-11 21:47:56 -04001703 /*
1704 * we need to start all the end_io workers up front because the
1705 * queue work function gets called at interrupt time, and so it
1706 * cannot dynamically grow.
1707 */
Chris Mason5443be42008-08-15 15:34:16 -04001708 btrfs_init_workers(&fs_info->workers, "worker",
1709 fs_info->thread_pool_size);
Chris Masonc8b97812008-10-29 14:49:59 -04001710
Chris Mason771ed682008-11-06 22:02:51 -05001711 btrfs_init_workers(&fs_info->delalloc_workers, "delalloc",
1712 fs_info->thread_pool_size);
1713
Chris Mason5443be42008-08-15 15:34:16 -04001714 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04001715 min_t(u64, fs_devices->num_devices,
1716 fs_info->thread_pool_size));
Chris Mason61b49442008-07-31 15:42:53 -04001717
1718 /* a higher idle thresh on the submit workers makes it much more
1719 * likely that bios will be send down in a sane order to the
1720 * devices
1721 */
1722 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04001723
Chris Mason771ed682008-11-06 22:02:51 -05001724 fs_info->workers.idle_thresh = 16;
Chris Mason4a69a412008-11-06 22:03:00 -05001725 fs_info->workers.ordered = 1;
Chris Mason61b49442008-07-31 15:42:53 -04001726
Chris Mason771ed682008-11-06 22:02:51 -05001727 fs_info->delalloc_workers.idle_thresh = 2;
1728 fs_info->delalloc_workers.ordered = 1;
1729
Chris Mason5443be42008-08-15 15:34:16 -04001730 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1);
1731 btrfs_init_workers(&fs_info->endio_workers, "endio",
1732 fs_info->thread_pool_size);
Chris Masond20f7042008-12-08 16:58:54 -05001733 btrfs_init_workers(&fs_info->endio_meta_workers, "endio-meta",
1734 fs_info->thread_pool_size);
Chris Masoncad321a2008-12-17 14:51:42 -05001735 btrfs_init_workers(&fs_info->endio_meta_write_workers,
1736 "endio-meta-write", fs_info->thread_pool_size);
Chris Mason5443be42008-08-15 15:34:16 -04001737 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Masone6dcd2d2008-07-17 12:53:50 -04001738 fs_info->thread_pool_size);
Chris Mason61b49442008-07-31 15:42:53 -04001739
1740 /*
1741 * endios are largely parallel and should have a very
1742 * low idle thresh
1743 */
1744 fs_info->endio_workers.idle_thresh = 4;
Chris Masonb51912c2009-02-04 09:23:24 -05001745 fs_info->endio_meta_workers.idle_thresh = 4;
1746
Chris Mason3a5f1d42008-09-11 15:53:37 -04001747 fs_info->endio_write_workers.idle_thresh = 64;
Chris Masoncad321a2008-12-17 14:51:42 -05001748 fs_info->endio_meta_write_workers.idle_thresh = 64;
Chris Mason61b49442008-07-31 15:42:53 -04001749
Chris Mason4543df72008-06-11 21:47:56 -04001750 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001751 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason771ed682008-11-06 22:02:51 -05001752 btrfs_start_workers(&fs_info->delalloc_workers, 1);
Chris Mason247e7432008-07-17 12:53:51 -04001753 btrfs_start_workers(&fs_info->fixup_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001754 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
Chris Masond20f7042008-12-08 16:58:54 -05001755 btrfs_start_workers(&fs_info->endio_meta_workers,
1756 fs_info->thread_pool_size);
Chris Masoncad321a2008-12-17 14:51:42 -05001757 btrfs_start_workers(&fs_info->endio_meta_write_workers,
1758 fs_info->thread_pool_size);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001759 btrfs_start_workers(&fs_info->endio_write_workers,
1760 fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001761
Chris Mason4575c9c2008-04-18 16:13:31 -04001762 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
Chris Masonc8b97812008-10-29 14:49:59 -04001763 fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
1764 4 * 1024 * 1024 / PAGE_CACHE_SIZE);
Chris Mason4575c9c2008-04-18 16:13:31 -04001765
Chris Masondb945352007-10-15 16:15:53 -04001766 nodesize = btrfs_super_nodesize(disk_super);
1767 leafsize = btrfs_super_leafsize(disk_super);
1768 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001769 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001770 tree_root->nodesize = nodesize;
1771 tree_root->leafsize = leafsize;
1772 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001773 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001774
1775 sb->s_blocksize = sectorsize;
1776 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001777
Chris Mason39279cc2007-06-12 06:35:45 -04001778 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1779 sizeof(disk_super->magic))) {
Chris Masond3977122009-01-05 21:25:51 -05001780 printk(KERN_INFO "btrfs: valid FS not found on %s\n", sb->s_id);
Chris Mason39279cc2007-06-12 06:35:45 -04001781 goto fail_sb_buffer;
1782 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001783
Chris Mason925baed2008-06-25 16:01:30 -04001784 mutex_lock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001785 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001786 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001787 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05001788 printk(KERN_WARNING "btrfs: failed to read the system "
1789 "array on %s\n", sb->s_id);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001790 goto fail_sb_buffer;
Chris Mason84eed902008-04-25 09:04:37 -04001791 }
Chris Mason0b86a832008-03-24 15:01:56 -04001792
1793 blocksize = btrfs_level_size(tree_root,
1794 btrfs_super_chunk_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04001795 generation = btrfs_super_chunk_root_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04001796
1797 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1798 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1799
1800 chunk_root->node = read_tree_block(chunk_root,
1801 btrfs_super_chunk_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04001802 blocksize, generation);
Chris Mason0b86a832008-03-24 15:01:56 -04001803 BUG_ON(!chunk_root->node);
David Woodhouse83121942009-07-22 16:52:13 -04001804 if (!test_bit(EXTENT_BUFFER_UPTODATE, &chunk_root->node->bflags)) {
1805 printk(KERN_WARNING "btrfs: failed to read chunk root on %s\n",
1806 sb->s_id);
1807 goto fail_chunk_root;
1808 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001809 btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
1810 chunk_root->commit_root = btrfs_root_node(chunk_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001811
Chris Masone17cade2008-04-15 15:41:47 -04001812 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
Chris Masond3977122009-01-05 21:25:51 -05001813 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1814 BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001815
Chris Mason925baed2008-06-25 16:01:30 -04001816 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001817 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001818 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001819 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05001820 printk(KERN_WARNING "btrfs: failed to read chunk tree on %s\n",
1821 sb->s_id);
Yan Zheng2b820322008-11-17 21:11:30 -05001822 goto fail_chunk_root;
1823 }
Chris Mason0b86a832008-03-24 15:01:56 -04001824
Chris Masondfe25022008-05-13 13:46:40 -04001825 btrfs_close_extra_devices(fs_devices);
1826
Chris Masondb945352007-10-15 16:15:53 -04001827 blocksize = btrfs_level_size(tree_root,
1828 btrfs_super_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04001829 generation = btrfs_super_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04001830
Chris Masone20d96d2007-03-22 12:13:20 -04001831 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001832 btrfs_super_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04001833 blocksize, generation);
Chris Mason39279cc2007-06-12 06:35:45 -04001834 if (!tree_root->node)
Yan Zheng2b820322008-11-17 21:11:30 -05001835 goto fail_chunk_root;
David Woodhouse83121942009-07-22 16:52:13 -04001836 if (!test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
1837 printk(KERN_WARNING "btrfs: failed to read tree root on %s\n",
1838 sb->s_id);
1839 goto fail_tree_root;
1840 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001841 btrfs_set_root_node(&tree_root->root_item, tree_root->node);
1842 tree_root->commit_root = btrfs_root_node(tree_root);
Chris Masondb945352007-10-15 16:15:53 -04001843
1844 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001845 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001846 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001847 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001848 extent_root->track_dirty = 1;
1849
1850 ret = find_and_setup_root(tree_root, fs_info,
1851 BTRFS_DEV_TREE_OBJECTID, dev_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001852 if (ret)
1853 goto fail_extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001854 dev_root->track_dirty = 1;
Chris Mason3768f362007-03-13 16:47:54 -04001855
Chris Masond20f7042008-12-08 16:58:54 -05001856 ret = find_and_setup_root(tree_root, fs_info,
1857 BTRFS_CSUM_TREE_OBJECTID, csum_root);
1858 if (ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001859 goto fail_dev_root;
Chris Masond20f7042008-12-08 16:58:54 -05001860
1861 csum_root->track_dirty = 1;
1862
Chris Mason9078a3e2007-04-26 16:46:15 -04001863 btrfs_read_block_groups(extent_root);
1864
Yan Zheng2d69a0f2009-01-05 15:43:42 -05001865 fs_info->generation = generation;
Yan Zhengc146afa2008-11-12 14:34:12 -05001866 fs_info->last_trans_committed = generation;
Chris Masond18a2c42008-04-04 15:40:00 -04001867 fs_info->data_alloc_profile = (u64)-1;
1868 fs_info->metadata_alloc_profile = (u64)-1;
1869 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
Chris Masona74a4b92008-06-25 16:01:31 -04001870 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
1871 "btrfs-cleaner");
Qinghuang Feng57506d52009-01-21 10:49:16 -05001872 if (IS_ERR(fs_info->cleaner_kthread))
Chris Masond20f7042008-12-08 16:58:54 -05001873 goto fail_csum_root;
Chris Masona74a4b92008-06-25 16:01:31 -04001874
1875 fs_info->transaction_kthread = kthread_run(transaction_kthread,
1876 tree_root,
1877 "btrfs-transaction");
Qinghuang Feng57506d52009-01-21 10:49:16 -05001878 if (IS_ERR(fs_info->transaction_kthread))
Chris Mason3f157a22008-06-25 16:01:31 -04001879 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04001880
Chris Masonc2898112009-06-10 09:51:32 -04001881 if (!btrfs_test_opt(tree_root, SSD) &&
1882 !btrfs_test_opt(tree_root, NOSSD) &&
1883 !fs_info->fs_devices->rotating) {
1884 printk(KERN_INFO "Btrfs detected SSD devices, enabling SSD "
1885 "mode\n");
1886 btrfs_set_opt(fs_info->mount_opt, SSD);
1887 }
1888
Chris Masone02119d2008-09-05 16:13:11 -04001889 if (btrfs_super_log_root(disk_super) != 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001890 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04001891
Chris Mason7c2ca462008-11-19 15:13:35 -05001892 if (fs_devices->rw_devices == 0) {
Chris Masond3977122009-01-05 21:25:51 -05001893 printk(KERN_WARNING "Btrfs log replay required "
1894 "on RO media\n");
Chris Mason7c2ca462008-11-19 15:13:35 -05001895 err = -EIO;
1896 goto fail_trans_kthread;
1897 }
Chris Masone02119d2008-09-05 16:13:11 -04001898 blocksize =
1899 btrfs_level_size(tree_root,
1900 btrfs_super_log_root_level(disk_super));
1901
1902 log_tree_root = kzalloc(sizeof(struct btrfs_root),
1903 GFP_NOFS);
1904
1905 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1906 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1907
1908 log_tree_root->node = read_tree_block(tree_root, bytenr,
Yan Zheng84234f32008-10-29 14:49:05 -04001909 blocksize,
1910 generation + 1);
Chris Masone02119d2008-09-05 16:13:11 -04001911 ret = btrfs_recover_log_trees(log_tree_root);
1912 BUG_ON(ret);
Yan Zhenge556ce22008-11-20 10:25:19 -05001913
1914 if (sb->s_flags & MS_RDONLY) {
1915 ret = btrfs_commit_super(tree_root);
1916 BUG_ON(ret);
1917 }
Chris Masone02119d2008-09-05 16:13:11 -04001918 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001919
Chris Mason7c2ca462008-11-19 15:13:35 -05001920 if (!(sb->s_flags & MS_RDONLY)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001921 ret = btrfs_recover_relocation(tree_root);
Chris Mason7c2ca462008-11-19 15:13:35 -05001922 BUG_ON(ret);
1923 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001924
Chris Mason3de45862008-11-17 21:02:50 -05001925 location.objectid = BTRFS_FS_TREE_OBJECTID;
1926 location.type = BTRFS_ROOT_ITEM_KEY;
1927 location.offset = (u64)-1;
1928
Chris Mason3de45862008-11-17 21:02:50 -05001929 fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
1930 if (!fs_info->fs_root)
Chris Mason7c2ca462008-11-19 15:13:35 -05001931 goto fail_trans_kthread;
Chris Masonc2898112009-06-10 09:51:32 -04001932
Chris Mason0f7d52f2007-04-09 10:42:37 -04001933 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001934
Chris Mason7c2ca462008-11-19 15:13:35 -05001935fail_trans_kthread:
1936 kthread_stop(fs_info->transaction_kthread);
Chris Mason3f157a22008-06-25 16:01:31 -04001937fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04001938 kthread_stop(fs_info->cleaner_kthread);
Chris Mason7c2ca462008-11-19 15:13:35 -05001939
1940 /*
1941 * make sure we're done with the btree inode before we stop our
1942 * kthreads
1943 */
1944 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1945 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
1946
Chris Masond20f7042008-12-08 16:58:54 -05001947fail_csum_root:
1948 free_extent_buffer(csum_root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001949 free_extent_buffer(csum_root->commit_root);
1950fail_dev_root:
1951 free_extent_buffer(dev_root->node);
1952 free_extent_buffer(dev_root->commit_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001953fail_extent_root:
1954 free_extent_buffer(extent_root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001955 free_extent_buffer(extent_root->commit_root);
Chris Mason39279cc2007-06-12 06:35:45 -04001956fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001957 free_extent_buffer(tree_root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001958 free_extent_buffer(tree_root->commit_root);
Yan Zheng2b820322008-11-17 21:11:30 -05001959fail_chunk_root:
1960 free_extent_buffer(chunk_root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001961 free_extent_buffer(chunk_root->commit_root);
Chris Mason39279cc2007-06-12 06:35:45 -04001962fail_sb_buffer:
Chris Mason247e7432008-07-17 12:53:51 -04001963 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05001964 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001965 btrfs_stop_workers(&fs_info->workers);
1966 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05001967 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05001968 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001969 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001970 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001971fail_iput:
Chris Mason7c2ca462008-11-19 15:13:35 -05001972 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
Chris Mason4543df72008-06-11 21:47:56 -04001973 iput(fs_info->btree_inode);
Qinghuang Feng7e662852009-01-21 10:49:16 -05001974
Chris Masondfe25022008-05-13 13:46:40 -04001975 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001976 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Jens Axboead081f12009-06-12 14:43:40 +02001977fail_bdi:
Qinghuang Feng7e662852009-01-21 10:49:16 -05001978 bdi_destroy(&fs_info->bdi);
Qinghuang Feng7e662852009-01-21 10:49:16 -05001979fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001980 kfree(extent_root);
1981 kfree(tree_root);
1982 kfree(fs_info);
Jim Meyering83afeac2008-10-01 19:09:51 -04001983 kfree(chunk_root);
1984 kfree(dev_root);
Chris Masond20f7042008-12-08 16:58:54 -05001985 kfree(csum_root);
Chris Mason39279cc2007-06-12 06:35:45 -04001986 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001987}
1988
Chris Masonf2984462008-04-10 16:19:33 -04001989static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1990{
1991 char b[BDEVNAME_SIZE];
1992
1993 if (uptodate) {
1994 set_buffer_uptodate(bh);
1995 } else {
1996 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1997 printk(KERN_WARNING "lost page write due to "
1998 "I/O error on %s\n",
1999 bdevname(bh->b_bdev, b));
2000 }
Chris Mason1259ab72008-05-12 13:39:03 -04002001 /* note, we dont' set_buffer_write_io_error because we have
2002 * our own ways of dealing with the IO errors
2003 */
Chris Masonf2984462008-04-10 16:19:33 -04002004 clear_buffer_uptodate(bh);
2005 }
2006 unlock_buffer(bh);
2007 put_bh(bh);
2008}
2009
Yan Zhenga512bbf2008-12-08 16:46:26 -05002010struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
2011{
2012 struct buffer_head *bh;
2013 struct buffer_head *latest = NULL;
2014 struct btrfs_super_block *super;
2015 int i;
2016 u64 transid = 0;
2017 u64 bytenr;
2018
2019 /* we would like to check all the supers, but that would make
2020 * a btrfs mount succeed after a mkfs from a different FS.
2021 * So, we need to add a special mount option to scan for
2022 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
2023 */
2024 for (i = 0; i < 1; i++) {
2025 bytenr = btrfs_sb_offset(i);
2026 if (bytenr + 4096 >= i_size_read(bdev->bd_inode))
2027 break;
2028 bh = __bread(bdev, bytenr / 4096, 4096);
2029 if (!bh)
2030 continue;
2031
2032 super = (struct btrfs_super_block *)bh->b_data;
2033 if (btrfs_super_bytenr(super) != bytenr ||
2034 strncmp((char *)(&super->magic), BTRFS_MAGIC,
2035 sizeof(super->magic))) {
2036 brelse(bh);
2037 continue;
2038 }
2039
2040 if (!latest || btrfs_super_generation(super) > transid) {
2041 brelse(latest);
2042 latest = bh;
2043 transid = btrfs_super_generation(super);
2044 } else {
2045 brelse(bh);
2046 }
2047 }
2048 return latest;
2049}
2050
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002051/*
2052 * this should be called twice, once with wait == 0 and
2053 * once with wait == 1. When wait == 0 is done, all the buffer heads
2054 * we write are pinned.
2055 *
2056 * They are released when wait == 1 is done.
2057 * max_mirrors must be the same for both runs, and it indicates how
2058 * many supers on this one device should be written.
2059 *
2060 * max_mirrors == 0 means to write them all.
2061 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002062static int write_dev_supers(struct btrfs_device *device,
2063 struct btrfs_super_block *sb,
2064 int do_barriers, int wait, int max_mirrors)
2065{
2066 struct buffer_head *bh;
2067 int i;
2068 int ret;
2069 int errors = 0;
2070 u32 crc;
2071 u64 bytenr;
2072 int last_barrier = 0;
2073
2074 if (max_mirrors == 0)
2075 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
2076
2077 /* make sure only the last submit_bh does a barrier */
2078 if (do_barriers) {
2079 for (i = 0; i < max_mirrors; i++) {
2080 bytenr = btrfs_sb_offset(i);
2081 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
2082 device->total_bytes)
2083 break;
2084 last_barrier = i;
2085 }
2086 }
2087
2088 for (i = 0; i < max_mirrors; i++) {
2089 bytenr = btrfs_sb_offset(i);
2090 if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
2091 break;
2092
2093 if (wait) {
2094 bh = __find_get_block(device->bdev, bytenr / 4096,
2095 BTRFS_SUPER_INFO_SIZE);
2096 BUG_ON(!bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002097 wait_on_buffer(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002098 if (!buffer_uptodate(bh))
2099 errors++;
2100
2101 /* drop our reference */
2102 brelse(bh);
2103
2104 /* drop the reference from the wait == 0 run */
2105 brelse(bh);
2106 continue;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002107 } else {
2108 btrfs_set_super_bytenr(sb, bytenr);
2109
2110 crc = ~(u32)0;
2111 crc = btrfs_csum_data(NULL, (char *)sb +
2112 BTRFS_CSUM_SIZE, crc,
2113 BTRFS_SUPER_INFO_SIZE -
2114 BTRFS_CSUM_SIZE);
2115 btrfs_csum_final(crc, sb->csum);
2116
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002117 /*
2118 * one reference for us, and we leave it for the
2119 * caller
2120 */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002121 bh = __getblk(device->bdev, bytenr / 4096,
2122 BTRFS_SUPER_INFO_SIZE);
2123 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
2124
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002125 /* one reference for submit_bh */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002126 get_bh(bh);
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002127
2128 set_buffer_uptodate(bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002129 lock_buffer(bh);
2130 bh->b_end_io = btrfs_end_buffer_write_sync;
2131 }
2132
2133 if (i == last_barrier && do_barriers && device->barriers) {
2134 ret = submit_bh(WRITE_BARRIER, bh);
2135 if (ret == -EOPNOTSUPP) {
2136 printk("btrfs: disabling barriers on dev %s\n",
2137 device->name);
2138 set_buffer_uptodate(bh);
2139 device->barriers = 0;
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002140 /* one reference for submit_bh */
Yan Zhenga512bbf2008-12-08 16:46:26 -05002141 get_bh(bh);
2142 lock_buffer(bh);
Chris Masonffbd5172009-04-20 15:50:09 -04002143 ret = submit_bh(WRITE_SYNC, bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002144 }
2145 } else {
Chris Masonffbd5172009-04-20 15:50:09 -04002146 ret = submit_bh(WRITE_SYNC, bh);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002147 }
2148
Hisashi Hifumi4eedeb72009-06-10 15:28:55 -04002149 if (ret)
Yan Zhenga512bbf2008-12-08 16:46:26 -05002150 errors++;
Yan Zhenga512bbf2008-12-08 16:46:26 -05002151 }
2152 return errors < i ? 0 : -1;
2153}
2154
2155int write_all_supers(struct btrfs_root *root, int max_mirrors)
Chris Masonf2984462008-04-10 16:19:33 -04002156{
Chris Masone5e9a522009-06-10 15:17:02 -04002157 struct list_head *head;
Chris Masonf2984462008-04-10 16:19:33 -04002158 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04002159 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04002160 struct btrfs_dev_item *dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04002161 int ret;
2162 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04002163 int max_errors;
2164 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04002165 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04002166
Chris Masona236aed2008-04-29 09:38:00 -04002167 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04002168 do_barriers = !btrfs_test_opt(root, NOBARRIER);
2169
Chris Masona061fc82008-05-07 11:43:44 -04002170 sb = &root->fs_info->super_for_commit;
2171 dev_item = &sb->dev_item;
Chris Masone5e9a522009-06-10 15:17:02 -04002172
2173 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2174 head = &root->fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002175 list_for_each_entry(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04002176 if (!dev->bdev) {
2177 total_errors++;
2178 continue;
2179 }
Yan Zheng2b820322008-11-17 21:11:30 -05002180 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002181 continue;
2182
Yan Zheng2b820322008-11-17 21:11:30 -05002183 btrfs_set_stack_device_generation(dev_item, 0);
Chris Masona061fc82008-05-07 11:43:44 -04002184 btrfs_set_stack_device_type(dev_item, dev->type);
2185 btrfs_set_stack_device_id(dev_item, dev->devid);
2186 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
2187 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
2188 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
2189 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
2190 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
2191 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002192 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002193
Chris Masona061fc82008-05-07 11:43:44 -04002194 flags = btrfs_super_flags(sb);
2195 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04002196
Yan Zhenga512bbf2008-12-08 16:46:26 -05002197 ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
Chris Masona236aed2008-04-29 09:38:00 -04002198 if (ret)
2199 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002200 }
Chris Masona236aed2008-04-29 09:38:00 -04002201 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05002202 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
2203 total_errors);
Chris Masona236aed2008-04-29 09:38:00 -04002204 BUG();
2205 }
Chris Masonf2984462008-04-10 16:19:33 -04002206
Yan Zhenga512bbf2008-12-08 16:46:26 -05002207 total_errors = 0;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002208 list_for_each_entry(dev, head, dev_list) {
Chris Masondfe25022008-05-13 13:46:40 -04002209 if (!dev->bdev)
2210 continue;
Yan Zheng2b820322008-11-17 21:11:30 -05002211 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002212 continue;
2213
Yan Zhenga512bbf2008-12-08 16:46:26 -05002214 ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
2215 if (ret)
2216 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002217 }
Chris Masone5e9a522009-06-10 15:17:02 -04002218 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Masona236aed2008-04-29 09:38:00 -04002219 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05002220 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
2221 total_errors);
Chris Masona236aed2008-04-29 09:38:00 -04002222 BUG();
2223 }
Chris Masonf2984462008-04-10 16:19:33 -04002224 return 0;
2225}
2226
Yan Zhenga512bbf2008-12-08 16:46:26 -05002227int write_ctree_super(struct btrfs_trans_handle *trans,
2228 struct btrfs_root *root, int max_mirrors)
Chris Masoncfaa7292007-02-21 17:04:57 -05002229{
Chris Masone66f7092007-04-20 13:16:02 -04002230 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04002231
Yan Zhenga512bbf2008-12-08 16:46:26 -05002232 ret = write_all_supers(root, max_mirrors);
Chris Mason5f39d392007-10-15 16:14:19 -04002233 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05002234}
2235
Chris Mason5eda7b52007-06-22 14:16:25 -04002236int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04002237{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002238 WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
Chris Mason2619ba12007-04-10 16:58:11 -04002239 radix_tree_delete(&fs_info->fs_roots_radix,
2240 (unsigned long)root->root_key.objectid);
Chris Mason3394e162008-11-17 20:42:26 -05002241 if (root->anon_super.s_dev) {
2242 down_write(&root->anon_super.s_umount);
2243 kill_anon_super(&root->anon_super);
2244 }
Chris Mason2619ba12007-04-10 16:58:11 -04002245 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04002246 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04002247 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04002248 free_extent_buffer(root->commit_root);
Chris Masond3977122009-01-05 21:25:51 -05002249 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04002250 kfree(root);
2251 return 0;
2252}
2253
Chris Mason35b7e472007-05-02 15:53:43 -04002254static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04002255{
2256 int ret;
2257 struct btrfs_root *gang[8];
2258 int i;
2259
Chris Masond3977122009-01-05 21:25:51 -05002260 while (1) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04002261 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2262 (void **)gang, 0,
2263 ARRAY_SIZE(gang));
2264 if (!ret)
2265 break;
Chris Mason2619ba12007-04-10 16:58:11 -04002266 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04002267 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04002268 }
2269 return 0;
2270}
Chris Masonb4100d62007-04-12 12:14:00 -04002271
Yan Zhengc146afa2008-11-12 14:34:12 -05002272int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
2273{
2274 u64 root_objectid = 0;
2275 struct btrfs_root *gang[8];
2276 int i;
2277 int ret;
2278
2279 while (1) {
2280 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2281 (void **)gang, root_objectid,
2282 ARRAY_SIZE(gang));
2283 if (!ret)
2284 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002285
2286 root_objectid = gang[ret - 1]->root_key.objectid + 1;
Yan Zhengc146afa2008-11-12 14:34:12 -05002287 for (i = 0; i < ret; i++) {
2288 root_objectid = gang[i]->root_key.objectid;
2289 ret = btrfs_find_dead_roots(fs_info->tree_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 root_objectid);
Yan Zhengc146afa2008-11-12 14:34:12 -05002291 BUG_ON(ret);
2292 btrfs_orphan_cleanup(gang[i]);
2293 }
2294 root_objectid++;
2295 }
2296 return 0;
2297}
2298
2299int btrfs_commit_super(struct btrfs_root *root)
2300{
2301 struct btrfs_trans_handle *trans;
2302 int ret;
2303
2304 mutex_lock(&root->fs_info->cleaner_mutex);
2305 btrfs_clean_old_snapshots(root);
2306 mutex_unlock(&root->fs_info->cleaner_mutex);
2307 trans = btrfs_start_transaction(root, 1);
2308 ret = btrfs_commit_transaction(trans, root);
2309 BUG_ON(ret);
2310 /* run commit again to drop the original snapshot */
2311 trans = btrfs_start_transaction(root, 1);
2312 btrfs_commit_transaction(trans, root);
2313 ret = btrfs_write_and_wait_transaction(NULL, root);
2314 BUG_ON(ret);
2315
Yan Zhenga512bbf2008-12-08 16:46:26 -05002316 ret = write_ctree_super(NULL, root, 0);
Yan Zhengc146afa2008-11-12 14:34:12 -05002317 return ret;
2318}
2319
Chris Masone20d96d2007-03-22 12:13:20 -04002320int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05002321{
Chris Mason0f7d52f2007-04-09 10:42:37 -04002322 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05002323 int ret;
Chris Masone089f052007-03-16 16:20:31 -04002324
Chris Masonfacda1e2007-06-08 18:11:48 -04002325 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04002326 smp_mb();
2327
Chris Masona74a4b92008-06-25 16:01:31 -04002328 kthread_stop(root->fs_info->transaction_kthread);
2329 kthread_stop(root->fs_info->cleaner_kthread);
2330
Yan Zhengc146afa2008-11-12 14:34:12 -05002331 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
2332 ret = btrfs_commit_super(root);
Chris Masond3977122009-01-05 21:25:51 -05002333 if (ret)
2334 printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
Yan Zhengc146afa2008-11-12 14:34:12 -05002335 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05002336
Yan Zhengf25784b2009-07-28 08:41:57 -04002337 fs_info->closing = 2;
2338 smp_mb();
2339
Chris Masonb0c68f82008-01-31 11:05:37 -05002340 if (fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05002341 printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07002342 (unsigned long long)fs_info->delalloc_bytes);
Chris Masonb0c68f82008-01-31 11:05:37 -05002343 }
Yan Zheng31153d82008-07-28 15:32:19 -04002344 if (fs_info->total_ref_cache_size) {
Chris Masond3977122009-01-05 21:25:51 -05002345 printk(KERN_INFO "btrfs: at umount reference cache size %llu\n",
2346 (unsigned long long)fs_info->total_ref_cache_size);
Yan Zheng31153d82008-07-28 15:32:19 -04002347 }
Yanbcc63ab2008-07-30 16:29:20 -04002348
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002349 free_extent_buffer(fs_info->extent_root->node);
2350 free_extent_buffer(fs_info->extent_root->commit_root);
2351 free_extent_buffer(fs_info->tree_root->node);
2352 free_extent_buffer(fs_info->tree_root->commit_root);
2353 free_extent_buffer(root->fs_info->chunk_root->node);
2354 free_extent_buffer(root->fs_info->chunk_root->commit_root);
2355 free_extent_buffer(root->fs_info->dev_root->node);
2356 free_extent_buffer(root->fs_info->dev_root->commit_root);
2357 free_extent_buffer(root->fs_info->csum_root->node);
2358 free_extent_buffer(root->fs_info->csum_root->commit_root);
Chris Masond20f7042008-12-08 16:58:54 -05002359
Chris Mason9078a3e2007-04-26 16:46:15 -04002360 btrfs_free_block_groups(root->fs_info);
Josef Bacik68b38552009-07-27 13:57:01 -04002361 btrfs_free_pinned_extents(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05002362
Chris Mason0f7d52f2007-04-09 10:42:37 -04002363 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05002364
Yan Zhengc146afa2008-11-12 14:34:12 -05002365 iput(fs_info->btree_inode);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002366
Chris Mason247e7432008-07-17 12:53:51 -04002367 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05002368 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04002369 btrfs_stop_workers(&fs_info->workers);
2370 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05002371 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05002372 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002373 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04002374 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04002375
Chris Masondfe25022008-05-13 13:46:40 -04002376 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04002377 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04002378
Chris Mason04160082008-03-26 10:28:07 -04002379 bdi_destroy(&fs_info->bdi);
Chris Mason0b86a832008-03-24 15:01:56 -04002380
Chris Mason0f7d52f2007-04-09 10:42:37 -04002381 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04002382 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002383 kfree(fs_info->chunk_root);
2384 kfree(fs_info->dev_root);
Chris Masond20f7042008-12-08 16:58:54 -05002385 kfree(fs_info->csum_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05002386 return 0;
2387}
2388
Chris Mason1259ab72008-05-12 13:39:03 -04002389int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04002390{
Chris Mason1259ab72008-05-12 13:39:03 -04002391 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04002392 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04002393
2394 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
2395 if (!ret)
2396 return ret;
2397
2398 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
2399 parent_transid);
2400 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002401}
Chris Mason6702ed42007-08-07 16:15:09 -04002402
Chris Mason5f39d392007-10-15 16:14:19 -04002403int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
2404{
Chris Mason810191f2007-10-15 16:18:55 -04002405 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002406 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04002407 buf);
2408}
2409
2410void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
2411{
Chris Mason810191f2007-10-15 16:18:55 -04002412 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04002413 u64 transid = btrfs_header_generation(buf);
2414 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonb9473432009-03-13 11:00:37 -04002415 int was_dirty;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002416
Chris Masonb9447ef2009-03-09 11:45:38 -04002417 btrfs_assert_tree_locked(buf);
Chris Masonccd467d2007-06-28 15:57:36 -04002418 if (transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -05002419 printk(KERN_CRIT "btrfs transid mismatch buffer %llu, "
2420 "found %llu running %llu\n",
Chris Masondb945352007-10-15 16:15:53 -04002421 (unsigned long long)buf->start,
Chris Masond3977122009-01-05 21:25:51 -05002422 (unsigned long long)transid,
2423 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -04002424 WARN_ON(1);
2425 }
Chris Masonb9473432009-03-13 11:00:37 -04002426 was_dirty = set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
2427 buf);
2428 if (!was_dirty) {
2429 spin_lock(&root->fs_info->delalloc_lock);
2430 root->fs_info->dirty_metadata_bytes += buf->len;
2431 spin_unlock(&root->fs_info->delalloc_lock);
2432 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002433}
2434
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002435void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04002436{
Chris Mason188de642008-05-09 11:52:25 -04002437 /*
2438 * looks as though older kernels can get into trouble with
2439 * this code, they end up stuck in balance_dirty_pages forever
2440 */
Chris Masond6bfde82008-04-30 13:59:35 -04002441 u64 num_dirty;
Chris Mason771ed682008-11-06 22:02:51 -05002442 unsigned long thresh = 32 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04002443
Jens Axboe6933c022009-03-17 09:36:37 +01002444 if (current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04002445 return;
2446
Chris Mason585ad2c2009-05-18 10:41:58 -04002447 num_dirty = root->fs_info->dirty_metadata_bytes;
2448
Chris Masond6bfde82008-04-30 13:59:35 -04002449 if (num_dirty > thresh) {
2450 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05002451 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04002452 }
Chris Mason188de642008-05-09 11:52:25 -04002453 return;
Chris Mason35b7e472007-05-02 15:53:43 -04002454}
Chris Mason6b800532007-10-15 16:17:34 -04002455
Chris Masonca7a79a2008-05-12 12:59:19 -04002456int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04002457{
Chris Mason810191f2007-10-15 16:18:55 -04002458 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04002459 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04002460 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masond3977122009-01-05 21:25:51 -05002461 if (ret == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002462 set_bit(EXTENT_BUFFER_UPTODATE, &buf->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04002463 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04002464}
Chris Mason0da54682007-11-07 21:08:01 -05002465
Chris Mason4bef0842008-09-08 11:18:08 -04002466int btree_lock_page_hook(struct page *page)
2467{
2468 struct inode *inode = page->mapping->host;
Chris Masonb9473432009-03-13 11:00:37 -04002469 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4bef0842008-09-08 11:18:08 -04002470 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2471 struct extent_buffer *eb;
2472 unsigned long len;
2473 u64 bytenr = page_offset(page);
2474
2475 if (page->private == EXTENT_PAGE_PRIVATE)
2476 goto out;
2477
2478 len = page->private >> 2;
2479 eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
2480 if (!eb)
2481 goto out;
2482
2483 btrfs_tree_lock(eb);
Chris Mason4bef0842008-09-08 11:18:08 -04002484 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonb9473432009-03-13 11:00:37 -04002485
2486 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
2487 spin_lock(&root->fs_info->delalloc_lock);
2488 if (root->fs_info->dirty_metadata_bytes >= eb->len)
2489 root->fs_info->dirty_metadata_bytes -= eb->len;
2490 else
2491 WARN_ON(1);
2492 spin_unlock(&root->fs_info->delalloc_lock);
2493 }
2494
Chris Mason4bef0842008-09-08 11:18:08 -04002495 btrfs_tree_unlock(eb);
2496 free_extent_buffer(eb);
2497out:
2498 lock_page(page);
2499 return 0;
2500}
2501
Chris Masond1310b22008-01-24 16:13:08 -05002502static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04002503 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04002504 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04002505 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04002506 /* note we're sharing with inode.c for the merge bio hook */
2507 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05002508};