blob: 81a313874ae577aa51370459a0e98c8e26c53c46 [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 Masona74a4b92008-06-25 16:01:31 -040019#include <linux/version.h>
Chris Masone20d96d2007-03-22 12:13:20 -040020#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -040021#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -040022#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040023#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040024#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040025#include <linux/writeback.h>
Chris Masond3977122009-01-05 21:25:51 -050026#include <linux/buffer_head.h>
Chris Masonce9adaa2008-04-09 16:28:12 -040027#include <linux/workqueue.h>
Chris Masona74a4b92008-06-25 16:01:31 -040028#include <linux/kthread.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050029#include <linux/freezer.h>
30#include "compat.h"
Miguela5eb62e2008-04-11 15:45:51 -040031#include "crc32c.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050032#include "ctree.h"
33#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040034#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040035#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040036#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040037#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040038#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040039#include "locking.h"
Chris Mason017e5362008-07-28 15:32:51 -040040#include "ref-cache.h"
Chris Masone02119d2008-09-05 16:13:11 -040041#include "tree-log.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050042
Chris Masond1310b22008-01-24 16:13:08 -050043static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040044static void end_workqueue_fn(struct btrfs_work *work);
Chris Masonce9adaa2008-04-09 16:28:12 -040045
Chris Masond352ac62008-09-29 15:18:18 -040046/*
47 * end_io_wq structs are used to do processing in task context when an IO is
48 * complete. This is used during reads to verify checksums, and it is used
49 * by writes to insert metadata for new file extents after IO is complete.
50 */
Chris Masonce9adaa2008-04-09 16:28:12 -040051struct end_io_wq {
52 struct bio *bio;
53 bio_end_io_t *end_io;
54 void *private;
55 struct btrfs_fs_info *info;
56 int error;
Chris Mason22c59942008-04-09 16:28:12 -040057 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040058 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040059 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040060};
Chris Mason0da54682007-11-07 21:08:01 -050061
Chris Masond352ac62008-09-29 15:18:18 -040062/*
63 * async submit bios are used to offload expensive checksumming
64 * onto the worker threads. They checksum file and metadata bios
65 * just before they are sent down the IO stack.
66 */
Chris Mason44b8bd72008-04-16 11:14:51 -040067struct async_submit_bio {
68 struct inode *inode;
69 struct bio *bio;
70 struct list_head list;
Chris Mason4a69a412008-11-06 22:03:00 -050071 extent_submit_bio_hook_t *submit_bio_start;
72 extent_submit_bio_hook_t *submit_bio_done;
Chris Mason44b8bd72008-04-16 11:14:51 -040073 int rw;
74 int mirror_num;
Chris Masonc8b97812008-10-29 14:49:59 -040075 unsigned long bio_flags;
Chris Mason8b712842008-06-11 16:50:36 -040076 struct btrfs_work work;
Chris Mason44b8bd72008-04-16 11:14:51 -040077};
78
Chris Masond352ac62008-09-29 15:18:18 -040079/*
80 * extents on the btree inode are pretty simple, there's one extent
81 * that covers the entire device
82 */
Christoph Hellwigb2950862008-12-02 09:54:17 -050083static struct extent_map *btree_get_extent(struct inode *inode,
84 struct page *page, size_t page_offset, u64 start, u64 len,
85 int create)
Chris Mason5f39d392007-10-15 16:14:19 -040086{
87 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
88 struct extent_map *em;
89 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040090
Chris Masond1310b22008-01-24 16:13:08 -050091 spin_lock(&em_tree->lock);
92 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -040093 if (em) {
94 em->bdev =
95 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
96 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040097 goto out;
Chris Masona061fc82008-05-07 11:43:44 -040098 }
99 spin_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400100
Chris Mason5f39d392007-10-15 16:14:19 -0400101 em = alloc_extent_map(GFP_NOFS);
102 if (!em) {
103 em = ERR_PTR(-ENOMEM);
104 goto out;
105 }
106 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400107 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -0400108 em->block_len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400109 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400110 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500111
112 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400113 ret = add_extent_mapping(em_tree, em);
114 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400115 u64 failed_start = em->start;
116 u64 failed_len = em->len;
117
Chris Mason5f39d392007-10-15 16:14:19 -0400118 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400119 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400120 if (em) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400121 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400122 } else {
123 em = lookup_extent_mapping(em_tree, failed_start,
124 failed_len);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400125 ret = -EIO;
Chris Mason0afbaf82008-04-18 14:17:20 -0400126 }
Chris Mason5f39d392007-10-15 16:14:19 -0400127 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400128 free_extent_map(em);
129 em = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400130 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400131 spin_unlock(&em_tree->lock);
132
133 if (ret)
134 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400135out:
136 return em;
137}
138
Chris Mason19c00dd2007-10-15 16:19:22 -0400139u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
140{
Miguela5eb62e2008-04-11 15:45:51 -0400141 return btrfs_crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400142}
143
144void btrfs_csum_final(u32 crc, char *result)
145{
146 *(__le32 *)result = ~cpu_to_le32(crc);
147}
148
Chris Masond352ac62008-09-29 15:18:18 -0400149/*
150 * compute the csum for a btree block, and either verify it or write it
151 * into the csum field of the block.
152 */
Chris Mason19c00dd2007-10-15 16:19:22 -0400153static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
154 int verify)
155{
Josef Bacik607d4322008-12-02 07:17:45 -0500156 u16 csum_size =
157 btrfs_super_csum_size(&root->fs_info->super_copy);
158 char *result = NULL;
Chris Mason19c00dd2007-10-15 16:19:22 -0400159 unsigned long len;
160 unsigned long cur_len;
161 unsigned long offset = BTRFS_CSUM_SIZE;
162 char *map_token = NULL;
163 char *kaddr;
164 unsigned long map_start;
165 unsigned long map_len;
166 int err;
167 u32 crc = ~(u32)0;
Josef Bacik607d4322008-12-02 07:17:45 -0500168 unsigned long inline_result;
Chris Mason19c00dd2007-10-15 16:19:22 -0400169
170 len = buf->len - offset;
Chris Masond3977122009-01-05 21:25:51 -0500171 while (len > 0) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400172 err = map_private_extent_buffer(buf, offset, 32,
173 &map_token, &kaddr,
174 &map_start, &map_len, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -0500175 if (err)
Chris Mason19c00dd2007-10-15 16:19:22 -0400176 return 1;
Chris Mason19c00dd2007-10-15 16:19:22 -0400177 cur_len = min(len, map_len - (offset - map_start));
178 crc = btrfs_csum_data(root, kaddr + offset - map_start,
179 crc, cur_len);
180 len -= cur_len;
181 offset += cur_len;
182 unmap_extent_buffer(buf, map_token, KM_USER0);
183 }
Josef Bacik607d4322008-12-02 07:17:45 -0500184 if (csum_size > sizeof(inline_result)) {
185 result = kzalloc(csum_size * sizeof(char), GFP_NOFS);
186 if (!result)
187 return 1;
188 } else {
189 result = (char *)&inline_result;
190 }
191
Chris Mason19c00dd2007-10-15 16:19:22 -0400192 btrfs_csum_final(crc, result);
193
194 if (verify) {
Josef Bacik607d4322008-12-02 07:17:45 -0500195 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
Chris Masone4204de2008-01-08 15:46:27 -0500196 u32 val;
197 u32 found = 0;
Josef Bacik607d4322008-12-02 07:17:45 -0500198 memcpy(&found, result, csum_size);
Chris Masone4204de2008-01-08 15:46:27 -0500199
Josef Bacik607d4322008-12-02 07:17:45 -0500200 read_extent_buffer(buf, &val, 0, csum_size);
Chris Masond3977122009-01-05 21:25:51 -0500201 printk(KERN_INFO "btrfs: %s checksum verify failed "
202 "on %llu wanted %X found %X level %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400203 root->fs_info->sb->s_id,
Chris Mason2dd3e672008-08-04 08:20:15 -0400204 buf->start, val, found, btrfs_header_level(buf));
Josef Bacik607d4322008-12-02 07:17:45 -0500205 if (result != (char *)&inline_result)
206 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400207 return 1;
208 }
209 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500210 write_extent_buffer(buf, result, 0, csum_size);
Chris Mason19c00dd2007-10-15 16:19:22 -0400211 }
Josef Bacik607d4322008-12-02 07:17:45 -0500212 if (result != (char *)&inline_result)
213 kfree(result);
Chris Mason19c00dd2007-10-15 16:19:22 -0400214 return 0;
215}
216
Chris Masond352ac62008-09-29 15:18:18 -0400217/*
218 * we can't consider a given block up to date unless the transid of the
219 * block matches the transid in the parent node's pointer. This is how we
220 * detect blocks that either didn't get written at all or got written
221 * in the wrong place.
222 */
Chris Mason1259ab72008-05-12 13:39:03 -0400223static int verify_parent_transid(struct extent_io_tree *io_tree,
224 struct extent_buffer *eb, u64 parent_transid)
225{
226 int ret;
227
228 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
229 return 0;
230
231 lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
232 if (extent_buffer_uptodate(io_tree, eb) &&
233 btrfs_header_generation(eb) == parent_transid) {
234 ret = 0;
235 goto out;
236 }
237 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
238 (unsigned long long)eb->start,
239 (unsigned long long)parent_transid,
240 (unsigned long long)btrfs_header_generation(eb));
241 ret = 1;
Chris Mason1259ab72008-05-12 13:39:03 -0400242 clear_extent_buffer_uptodate(io_tree, eb);
Chris Mason33958dc2008-07-30 10:29:12 -0400243out:
Chris Mason1259ab72008-05-12 13:39:03 -0400244 unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
245 GFP_NOFS);
246 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400247}
248
Chris Masond352ac62008-09-29 15:18:18 -0400249/*
250 * helper to read a given tree block, doing retries as required when
251 * the checksums don't match and we have alternate mirrors to try.
252 */
Chris Masonf1885912008-04-09 16:28:12 -0400253static int btree_read_extent_buffer_pages(struct btrfs_root *root,
254 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400255 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400256{
257 struct extent_io_tree *io_tree;
258 int ret;
259 int num_copies = 0;
260 int mirror_num = 0;
261
262 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
263 while (1) {
264 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
265 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400266 if (!ret &&
267 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400268 return ret;
Chris Masond3977122009-01-05 21:25:51 -0500269
Chris Masonf1885912008-04-09 16:28:12 -0400270 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
271 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400272 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400273 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400274
Chris Masonf1885912008-04-09 16:28:12 -0400275 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400276 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400277 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400278 }
Chris Masonf1885912008-04-09 16:28:12 -0400279 return -EIO;
280}
Chris Mason19c00dd2007-10-15 16:19:22 -0400281
Chris Masond352ac62008-09-29 15:18:18 -0400282/*
Chris Masond3977122009-01-05 21:25:51 -0500283 * checksum a dirty tree block before IO. This has extra checks to make sure
284 * we only fill in the checksum field in the first page of a multi-page block
Chris Masond352ac62008-09-29 15:18:18 -0400285 */
Chris Masond3977122009-01-05 21:25:51 -0500286
Christoph Hellwigb2950862008-12-02 09:54:17 -0500287static int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
Chris Mason19c00dd2007-10-15 16:19:22 -0400288{
Chris Masond1310b22008-01-24 16:13:08 -0500289 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400290 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400291 u64 found_start;
292 int found_level;
293 unsigned long len;
294 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400295 int ret;
296
Chris Masond1310b22008-01-24 16:13:08 -0500297 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400298
299 if (page->private == EXTENT_PAGE_PRIVATE)
300 goto out;
301 if (!page->private)
302 goto out;
303 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500304 WARN_ON(len == 0);
305
Chris Mason19c00dd2007-10-15 16:19:22 -0400306 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -0400307 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
308 btrfs_header_generation(eb));
Chris Masonf1885912008-04-09 16:28:12 -0400309 BUG_ON(ret);
Chris Mason19c00dd2007-10-15 16:19:22 -0400310 found_start = btrfs_header_bytenr(eb);
311 if (found_start != start) {
Chris Mason55c69072008-01-09 15:55:33 -0500312 WARN_ON(1);
313 goto err;
314 }
315 if (eb->first_page != page) {
Chris Mason55c69072008-01-09 15:55:33 -0500316 WARN_ON(1);
317 goto err;
318 }
319 if (!PageUptodate(page)) {
Chris Mason55c69072008-01-09 15:55:33 -0500320 WARN_ON(1);
321 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400322 }
323 found_level = btrfs_header_level(eb);
Chris Mason4bef0842008-09-08 11:18:08 -0400324
Chris Mason19c00dd2007-10-15 16:19:22 -0400325 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500326err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400327 free_extent_buffer(eb);
328out:
329 return 0;
330}
331
Yan Zheng2b820322008-11-17 21:11:30 -0500332static int check_tree_block_fsid(struct btrfs_root *root,
333 struct extent_buffer *eb)
334{
335 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
336 u8 fsid[BTRFS_UUID_SIZE];
337 int ret = 1;
338
339 read_extent_buffer(eb, fsid, (unsigned long)btrfs_header_fsid(eb),
340 BTRFS_FSID_SIZE);
341 while (fs_devices) {
342 if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
343 ret = 0;
344 break;
345 }
346 fs_devices = fs_devices->seed;
347 }
348 return ret;
349}
350
Christoph Hellwigb2950862008-12-02 09:54:17 -0500351static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Masonce9adaa2008-04-09 16:28:12 -0400352 struct extent_state *state)
353{
354 struct extent_io_tree *tree;
355 u64 found_start;
356 int found_level;
357 unsigned long len;
358 struct extent_buffer *eb;
359 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400360 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400361
362 tree = &BTRFS_I(page->mapping->host)->io_tree;
363 if (page->private == EXTENT_PAGE_PRIVATE)
364 goto out;
365 if (!page->private)
366 goto out;
Chris Masond3977122009-01-05 21:25:51 -0500367
Chris Masonce9adaa2008-04-09 16:28:12 -0400368 len = page->private >> 2;
Chris Masond3977122009-01-05 21:25:51 -0500369 WARN_ON(len == 0);
370
Chris Masonce9adaa2008-04-09 16:28:12 -0400371 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400372
Chris Masonce9adaa2008-04-09 16:28:12 -0400373 found_start = btrfs_header_bytenr(eb);
Chris Mason23a07862008-09-12 08:57:47 -0400374 if (found_start != start) {
Chris Masond3977122009-01-05 21:25:51 -0500375 printk(KERN_INFO "btrfs bad tree block start %llu %llu\n",
Chris Masona1b32a52008-09-05 16:09:51 -0400376 (unsigned long long)found_start,
377 (unsigned long long)eb->start);
Chris Masonf1885912008-04-09 16:28:12 -0400378 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400379 goto err;
380 }
381 if (eb->first_page != page) {
Chris Masond3977122009-01-05 21:25:51 -0500382 printk(KERN_INFO "btrfs bad first page %lu %lu\n",
383 eb->first_page->index, page->index);
Chris Masonce9adaa2008-04-09 16:28:12 -0400384 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400385 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400386 goto err;
387 }
Yan Zheng2b820322008-11-17 21:11:30 -0500388 if (check_tree_block_fsid(root, eb)) {
Chris Masond3977122009-01-05 21:25:51 -0500389 printk(KERN_INFO "btrfs bad fsid on block %llu\n",
390 (unsigned long long)eb->start);
Chris Mason1259ab72008-05-12 13:39:03 -0400391 ret = -EIO;
392 goto err;
393 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400394 found_level = btrfs_header_level(eb);
395
396 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400397 if (ret)
398 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400399
400 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
401 end = eb->start + end - 1;
Chris Masonce9adaa2008-04-09 16:28:12 -0400402err:
403 free_extent_buffer(eb);
404out:
Chris Masonf1885912008-04-09 16:28:12 -0400405 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400406}
407
Chris Masonce9adaa2008-04-09 16:28:12 -0400408static void end_workqueue_bio(struct bio *bio, int err)
Chris Masonce9adaa2008-04-09 16:28:12 -0400409{
410 struct end_io_wq *end_io_wq = bio->bi_private;
411 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400412
Chris Masonce9adaa2008-04-09 16:28:12 -0400413 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400414 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400415 end_io_wq->work.func = end_workqueue_fn;
416 end_io_wq->work.flags = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500417
418 if (bio->bi_rw & (1 << BIO_RW)) {
Chris Masoncad321a2008-12-17 14:51:42 -0500419 if (end_io_wq->metadata)
420 btrfs_queue_worker(&fs_info->endio_meta_write_workers,
421 &end_io_wq->work);
422 else
423 btrfs_queue_worker(&fs_info->endio_write_workers,
424 &end_io_wq->work);
Chris Masond20f7042008-12-08 16:58:54 -0500425 } else {
426 if (end_io_wq->metadata)
427 btrfs_queue_worker(&fs_info->endio_meta_workers,
428 &end_io_wq->work);
429 else
430 btrfs_queue_worker(&fs_info->endio_workers,
431 &end_io_wq->work);
432 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400433}
434
Chris Mason22c59942008-04-09 16:28:12 -0400435int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
436 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400437{
Chris Masonce9adaa2008-04-09 16:28:12 -0400438 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400439 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
440 if (!end_io_wq)
441 return -ENOMEM;
442
443 end_io_wq->private = bio->bi_private;
444 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400445 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400446 end_io_wq->error = 0;
447 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400448 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400449
450 bio->bi_private = end_io_wq;
451 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400452 return 0;
453}
454
Chris Masonb64a2852008-08-20 13:39:41 -0400455unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400456{
457 unsigned long limit = min_t(unsigned long,
458 info->workers.max_workers,
459 info->fs_devices->open_devices);
460 return 256 * limit;
461}
462
Chris Mason777e6bd2008-08-15 15:34:15 -0400463int btrfs_congested_async(struct btrfs_fs_info *info, int iodone)
Chris Mason0986fe9e2008-08-15 15:34:15 -0400464{
Chris Masonb64a2852008-08-20 13:39:41 -0400465 return atomic_read(&info->nr_async_bios) >
466 btrfs_async_submit_limit(info);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400467}
468
Chris Mason4a69a412008-11-06 22:03:00 -0500469static void run_one_async_start(struct btrfs_work *work)
470{
471 struct btrfs_fs_info *fs_info;
472 struct async_submit_bio *async;
473
474 async = container_of(work, struct async_submit_bio, work);
475 fs_info = BTRFS_I(async->inode)->root->fs_info;
476 async->submit_bio_start(async->inode, async->rw, async->bio,
477 async->mirror_num, async->bio_flags);
478}
479
480static void run_one_async_done(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400481{
482 struct btrfs_fs_info *fs_info;
483 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400484 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400485
486 async = container_of(work, struct async_submit_bio, work);
487 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400488
Chris Masonb64a2852008-08-20 13:39:41 -0400489 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400490 limit = limit * 2 / 3;
491
Chris Mason8b712842008-06-11 16:50:36 -0400492 atomic_dec(&fs_info->nr_async_submits);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400493
Chris Masonb64a2852008-08-20 13:39:41 -0400494 if (atomic_read(&fs_info->nr_async_submits) < limit &&
495 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400496 wake_up(&fs_info->async_submit_wait);
497
Chris Mason4a69a412008-11-06 22:03:00 -0500498 async->submit_bio_done(async->inode, async->rw, async->bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400499 async->mirror_num, async->bio_flags);
Chris Mason4a69a412008-11-06 22:03:00 -0500500}
501
502static void run_one_async_free(struct btrfs_work *work)
503{
504 struct async_submit_bio *async;
505
506 async = container_of(work, struct async_submit_bio, work);
Chris Mason8b712842008-06-11 16:50:36 -0400507 kfree(async);
508}
509
Chris Mason44b8bd72008-04-16 11:14:51 -0400510int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
511 int rw, struct bio *bio, int mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -0400512 unsigned long bio_flags,
Chris Mason4a69a412008-11-06 22:03:00 -0500513 extent_submit_bio_hook_t *submit_bio_start,
514 extent_submit_bio_hook_t *submit_bio_done)
Chris Mason44b8bd72008-04-16 11:14:51 -0400515{
516 struct async_submit_bio *async;
517
518 async = kmalloc(sizeof(*async), GFP_NOFS);
519 if (!async)
520 return -ENOMEM;
521
522 async->inode = inode;
523 async->rw = rw;
524 async->bio = bio;
525 async->mirror_num = mirror_num;
Chris Mason4a69a412008-11-06 22:03:00 -0500526 async->submit_bio_start = submit_bio_start;
527 async->submit_bio_done = submit_bio_done;
528
529 async->work.func = run_one_async_start;
530 async->work.ordered_func = run_one_async_done;
531 async->work.ordered_free = run_one_async_free;
532
Chris Mason8b712842008-06-11 16:50:36 -0400533 async->work.flags = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400534 async->bio_flags = bio_flags;
Chris Mason8c8bee12008-09-29 11:19:10 -0400535
Chris Masoncb03c742008-05-15 16:15:45 -0400536 atomic_inc(&fs_info->nr_async_submits);
Chris Mason8b712842008-06-11 16:50:36 -0400537 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Masond2c3f4f2008-11-19 12:44:22 -0500538#if 0
Chris Mason7c2ca462008-11-19 15:13:35 -0500539 int limit = btrfs_async_submit_limit(fs_info);
Chris Mason9473f162008-08-28 06:15:24 -0400540 if (atomic_read(&fs_info->nr_async_submits) > limit) {
541 wait_event_timeout(fs_info->async_submit_wait,
Chris Mason4854ddd2008-08-15 15:34:17 -0400542 (atomic_read(&fs_info->nr_async_submits) < limit),
543 HZ/10);
Chris Mason9473f162008-08-28 06:15:24 -0400544
545 wait_event_timeout(fs_info->async_submit_wait,
546 (atomic_read(&fs_info->nr_async_bios) < limit),
547 HZ/10);
548 }
Chris Masond2c3f4f2008-11-19 12:44:22 -0500549#endif
Chris Masond3977122009-01-05 21:25:51 -0500550 while (atomic_read(&fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500551 atomic_read(&fs_info->nr_async_submits)) {
552 wait_event(fs_info->async_submit_wait,
553 (atomic_read(&fs_info->nr_async_submits) == 0));
554 }
555
Chris Mason44b8bd72008-04-16 11:14:51 -0400556 return 0;
557}
558
Chris Masonce3ed712008-09-23 13:14:12 -0400559static int btree_csum_one_bio(struct bio *bio)
560{
561 struct bio_vec *bvec = bio->bi_io_vec;
562 int bio_index = 0;
563 struct btrfs_root *root;
564
565 WARN_ON(bio->bi_vcnt <= 0);
Chris Masond3977122009-01-05 21:25:51 -0500566 while (bio_index < bio->bi_vcnt) {
Chris Masonce3ed712008-09-23 13:14:12 -0400567 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
568 csum_dirty_buffer(root, bvec->bv_page);
569 bio_index++;
570 bvec++;
571 }
572 return 0;
573}
574
Chris Mason4a69a412008-11-06 22:03:00 -0500575static int __btree_submit_bio_start(struct inode *inode, int rw,
576 struct bio *bio, int mirror_num,
577 unsigned long bio_flags)
Chris Mason22c59942008-04-09 16:28:12 -0400578{
Chris Mason8b712842008-06-11 16:50:36 -0400579 /*
580 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400581 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400582 */
Chris Mason4a69a412008-11-06 22:03:00 -0500583 btree_csum_one_bio(bio);
584 return 0;
585}
Chris Mason22c59942008-04-09 16:28:12 -0400586
Chris Mason4a69a412008-11-06 22:03:00 -0500587static int __btree_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
588 int mirror_num, unsigned long bio_flags)
589{
Chris Mason8b712842008-06-11 16:50:36 -0400590 /*
Chris Mason4a69a412008-11-06 22:03:00 -0500591 * when we're called for a write, we're already in the async
592 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400593 */
Chris Mason8b712842008-06-11 16:50:36 -0400594 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400595}
596
Chris Mason44b8bd72008-04-16 11:14:51 -0400597static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400598 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -0400599{
Chris Masoncad321a2008-12-17 14:51:42 -0500600 int ret;
601
602 ret = btrfs_bio_wq_end_io(BTRFS_I(inode)->root->fs_info,
603 bio, 1);
604 BUG_ON(ret);
605
Chris Mason44b8bd72008-04-16 11:14:51 -0400606 if (!(rw & (1 << BIO_RW))) {
Chris Mason4a69a412008-11-06 22:03:00 -0500607 /*
608 * called for a read, do the setup so that checksum validation
609 * can happen in the async kernel threads
610 */
Chris Mason4a69a412008-11-06 22:03:00 -0500611 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason6f3577b2008-11-13 09:59:36 -0500612 mirror_num, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -0400613 }
Chris Masoncad321a2008-12-17 14:51:42 -0500614 /*
615 * kthread helpers are used to submit writes so that checksumming
616 * can happen in parallel across all CPUs
617 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400618 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Masonc8b97812008-10-29 14:49:59 -0400619 inode, rw, bio, mirror_num, 0,
Chris Mason4a69a412008-11-06 22:03:00 -0500620 __btree_submit_bio_start,
621 __btree_submit_bio_done);
Chris Mason44b8bd72008-04-16 11:14:51 -0400622}
623
Chris Mason5f39d392007-10-15 16:14:19 -0400624static int btree_writepage(struct page *page, struct writeback_control *wbc)
625{
Chris Masond1310b22008-01-24 16:13:08 -0500626 struct extent_io_tree *tree;
627 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5443be42008-08-15 15:34:16 -0400628
629 if (current->flags & PF_MEMALLOC) {
630 redirty_page_for_writepage(wbc, page);
631 unlock_page(page);
632 return 0;
633 }
Chris Mason5f39d392007-10-15 16:14:19 -0400634 return extent_write_full_page(tree, page, btree_get_extent, wbc);
635}
Chris Mason0da54682007-11-07 21:08:01 -0500636
637static int btree_writepages(struct address_space *mapping,
638 struct writeback_control *wbc)
639{
Chris Masond1310b22008-01-24 16:13:08 -0500640 struct extent_io_tree *tree;
641 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500642 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800643 u64 num_dirty;
644 u64 start = 0;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400645 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800646
647 if (wbc->for_kupdate)
648 return 0;
649
Chris Mason1832a6d2007-12-21 16:27:21 -0500650 num_dirty = count_range_bits(tree, &start, (u64)-1,
651 thresh, EXTENT_DIRTY);
Chris Masond3977122009-01-05 21:25:51 -0500652 if (num_dirty < thresh)
Chris Mason793955b2007-11-26 16:34:41 -0800653 return 0;
Chris Mason793955b2007-11-26 16:34:41 -0800654 }
Chris Mason0da54682007-11-07 21:08:01 -0500655 return extent_writepages(tree, mapping, btree_get_extent, wbc);
656}
657
Christoph Hellwigb2950862008-12-02 09:54:17 -0500658static int btree_readpage(struct file *file, struct page *page)
Chris Mason5f39d392007-10-15 16:14:19 -0400659{
Chris Masond1310b22008-01-24 16:13:08 -0500660 struct extent_io_tree *tree;
661 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400662 return extent_read_full_page(tree, page, btree_get_extent);
663}
664
Chris Mason70dec802008-01-29 09:59:12 -0500665static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400666{
Chris Masond1310b22008-01-24 16:13:08 -0500667 struct extent_io_tree *tree;
668 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400669 int ret;
670
Chris Mason98509cf2008-09-11 15:51:43 -0400671 if (PageWriteback(page) || PageDirty(page))
Chris Masond3977122009-01-05 21:25:51 -0500672 return 0;
Chris Mason98509cf2008-09-11 15:51:43 -0400673
Chris Masond1310b22008-01-24 16:13:08 -0500674 tree = &BTRFS_I(page->mapping->host)->io_tree;
675 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118ce2008-07-22 11:18:07 -0400676
Chris Mason7b13b7b2008-04-18 10:29:50 -0400677 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Masond3977122009-01-05 21:25:51 -0500678 if (!ret)
Chris Mason6af118ce2008-07-22 11:18:07 -0400679 return 0;
Chris Mason6af118ce2008-07-22 11:18:07 -0400680
681 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400682 if (ret == 1) {
683 ClearPagePrivate(page);
684 set_page_private(page, 0);
685 page_cache_release(page);
686 }
Chris Mason6af118ce2008-07-22 11:18:07 -0400687
Chris Masond98237b2007-03-28 13:57:48 -0400688 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400689}
Chris Mason123abc82007-03-14 14:14:43 -0400690
Chris Mason5f39d392007-10-15 16:14:19 -0400691static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400692{
Chris Masond1310b22008-01-24 16:13:08 -0500693 struct extent_io_tree *tree;
694 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400695 extent_invalidatepage(tree, page, offset);
696 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400697 if (PagePrivate(page)) {
Chris Masond3977122009-01-05 21:25:51 -0500698 printk(KERN_WARNING "btrfs warning page private not zero "
699 "on page %llu\n", (unsigned long long)page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400700 ClearPagePrivate(page);
701 set_page_private(page, 0);
702 page_cache_release(page);
703 }
Chris Masond98237b2007-03-28 13:57:48 -0400704}
705
Chris Mason5f39d392007-10-15 16:14:19 -0400706#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400707static int btree_writepage(struct page *page, struct writeback_control *wbc)
708{
Chris Mason87cbda52007-03-28 19:44:27 -0400709 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400710 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400711 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400712 if (!page_has_buffers(page)) {
713 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
714 (1 << BH_Dirty)|(1 << BH_Uptodate));
715 }
716 head = page_buffers(page);
717 bh = head;
718 do {
719 if (buffer_dirty(bh))
720 csum_tree_block(root, bh, 0);
721 bh = bh->b_this_page;
722 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400723 return block_write_full_page(page, btree_get_block, wbc);
724}
Chris Mason5f39d392007-10-15 16:14:19 -0400725#endif
Chris Masond98237b2007-03-28 13:57:48 -0400726
727static struct address_space_operations btree_aops = {
728 .readpage = btree_readpage,
729 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500730 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400731 .releasepage = btree_releasepage,
732 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400733 .sync_page = block_sync_page,
734};
735
Chris Masonca7a79a2008-05-12 12:59:19 -0400736int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
737 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400738{
Chris Mason5f39d392007-10-15 16:14:19 -0400739 struct extent_buffer *buf = NULL;
740 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400741 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400742
Chris Masondb945352007-10-15 16:15:53 -0400743 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400744 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400745 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500746 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400747 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400748 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400749 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400750}
751
Chris Mason0999df52008-04-01 13:48:14 -0400752struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
753 u64 bytenr, u32 blocksize)
754{
755 struct inode *btree_inode = root->fs_info->btree_inode;
756 struct extent_buffer *eb;
757 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
758 bytenr, blocksize, GFP_NOFS);
759 return eb;
760}
761
762struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
763 u64 bytenr, u32 blocksize)
764{
765 struct inode *btree_inode = root->fs_info->btree_inode;
766 struct extent_buffer *eb;
767
768 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
769 bytenr, blocksize, NULL, GFP_NOFS);
770 return eb;
771}
772
773
Chris Masone02119d2008-09-05 16:13:11 -0400774int btrfs_write_tree_block(struct extent_buffer *buf)
775{
776 return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
Chris Mason24ab9cd2008-09-24 14:51:30 -0400777 buf->start + buf->len - 1, WB_SYNC_ALL);
Chris Masone02119d2008-09-05 16:13:11 -0400778}
779
780int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
781{
782 return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
Chris Masond3977122009-01-05 21:25:51 -0500783 buf->start, buf->start + buf->len - 1);
Chris Masone02119d2008-09-05 16:13:11 -0400784}
785
Chris Masondb945352007-10-15 16:15:53 -0400786struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400787 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400788{
Chris Mason5f39d392007-10-15 16:14:19 -0400789 struct extent_buffer *buf = NULL;
790 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500791 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400792 int ret;
793
Chris Masond1310b22008-01-24 16:13:08 -0500794 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400795
Chris Masondb945352007-10-15 16:15:53 -0400796 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400797 if (!buf)
798 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500799
Chris Masonca7a79a2008-05-12 12:59:19 -0400800 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400801
Chris Masond3977122009-01-05 21:25:51 -0500802 if (ret == 0)
Chris Masonce9adaa2008-04-09 16:28:12 -0400803 buf->flags |= EXTENT_UPTODATE;
Chris Masond3977122009-01-05 21:25:51 -0500804 else
Chris Masona1b32a52008-09-05 16:09:51 -0400805 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -0400806 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400807
Chris Masoneb60cea2007-02-02 09:18:22 -0500808}
809
Chris Masone089f052007-03-16 16:20:31 -0400810int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400811 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500812{
Chris Mason5f39d392007-10-15 16:14:19 -0400813 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500814 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400815 root->fs_info->running_transaction->transid) {
816 WARN_ON(!btrfs_tree_locked(buf));
Chris Masond1310b22008-01-24 16:13:08 -0500817 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500818 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400819 }
Chris Mason5f39d392007-10-15 16:14:19 -0400820 return 0;
821}
822
Chris Masondb945352007-10-15 16:15:53 -0400823static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500824 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400825 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400826 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500827{
Chris Masoncfaa7292007-02-21 17:04:57 -0500828 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500829 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400830 root->ref_tree = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400831 root->sectorsize = sectorsize;
832 root->nodesize = nodesize;
833 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500834 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400835 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400836 root->track_dirty = 0;
837
Chris Mason9f5fae22007-03-20 14:38:32 -0400838 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400839 root->objectid = objectid;
840 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400841 root->highest_inode = 0;
842 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400843 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500844 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400845
846 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -0400847 INIT_LIST_HEAD(&root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400848 INIT_LIST_HEAD(&root->dead_list);
Chris Mason925baed2008-06-25 16:01:30 -0400849 spin_lock_init(&root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400850 spin_lock_init(&root->list_lock);
Chris Masona2135012008-06-25 16:01:30 -0400851 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400852 mutex_init(&root->log_mutex);
Chris Masond0c803c2008-09-11 16:17:57 -0400853 extent_io_tree_init(&root->dirty_log_pages,
854 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason017e5362008-07-28 15:32:51 -0400855
856 btrfs_leaf_ref_tree_init(&root->ref_tree_struct);
857 root->ref_tree = &root->ref_tree_struct;
858
Chris Mason3768f362007-03-13 16:47:54 -0400859 memset(&root->root_key, 0, sizeof(root->root_key));
860 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400861 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400862 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -0400863 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -0400864 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400865 root->defrag_running = 0;
866 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400867 root->root_key.objectid = objectid;
Chris Mason3394e162008-11-17 20:42:26 -0500868 root->anon_super.s_root = NULL;
869 root->anon_super.s_dev = 0;
870 INIT_LIST_HEAD(&root->anon_super.s_list);
871 INIT_LIST_HEAD(&root->anon_super.s_instances);
872 init_rwsem(&root->anon_super.s_umount);
873
Chris Mason3768f362007-03-13 16:47:54 -0400874 return 0;
875}
876
Chris Masondb945352007-10-15 16:15:53 -0400877static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400878 struct btrfs_fs_info *fs_info,
879 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400880 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400881{
882 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400883 u32 blocksize;
Yan Zheng84234f32008-10-29 14:49:05 -0400884 u64 generation;
Chris Mason3768f362007-03-13 16:47:54 -0400885
Chris Masondb945352007-10-15 16:15:53 -0400886 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500887 tree_root->sectorsize, tree_root->stripesize,
888 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400889 ret = btrfs_find_last_root(tree_root, objectid,
890 &root->root_item, &root->root_key);
891 BUG_ON(ret);
892
Yan Zheng84234f32008-10-29 14:49:05 -0400893 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -0400894 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
895 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -0400896 blocksize, generation);
Chris Mason3768f362007-03-13 16:47:54 -0400897 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500898 return 0;
899}
900
Chris Masone02119d2008-09-05 16:13:11 -0400901int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
902 struct btrfs_fs_info *fs_info)
903{
904 struct extent_buffer *eb;
Chris Masond0c803c2008-09-11 16:17:57 -0400905 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
906 u64 start = 0;
907 u64 end = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400908 int ret;
909
Chris Masond0c803c2008-09-11 16:17:57 -0400910 if (!log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400911 return 0;
912
Chris Masond3977122009-01-05 21:25:51 -0500913 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -0400914 ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
915 0, &start, &end, EXTENT_DIRTY);
916 if (ret)
917 break;
918
919 clear_extent_dirty(&log_root_tree->dirty_log_pages,
920 start, end, GFP_NOFS);
921 }
Chris Masone02119d2008-09-05 16:13:11 -0400922 eb = fs_info->log_root_tree->node;
923
924 WARN_ON(btrfs_header_level(eb) != 0);
925 WARN_ON(btrfs_header_nritems(eb) != 0);
926
Chris Masond00aff02008-09-11 15:54:42 -0400927 ret = btrfs_free_reserved_extent(fs_info->tree_root,
928 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400929 BUG_ON(ret);
930
931 free_extent_buffer(eb);
932 kfree(fs_info->log_root_tree);
933 fs_info->log_root_tree = NULL;
934 return 0;
935}
936
937int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
938 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400939{
940 struct btrfs_root *root;
941 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Masone02119d2008-09-05 16:13:11 -0400942
943 root = kzalloc(sizeof(*root), GFP_NOFS);
944 if (!root)
945 return -ENOMEM;
946
947 __setup_root(tree_root->nodesize, tree_root->leafsize,
948 tree_root->sectorsize, tree_root->stripesize,
949 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
950
951 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
952 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
953 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
954 root->ref_cows = 0;
955
956 root->node = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -0400957 0, BTRFS_TREE_LOG_OBJECTID,
958 trans->transid, 0, 0, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400959
960 btrfs_set_header_nritems(root->node, 0);
961 btrfs_set_header_level(root->node, 0);
962 btrfs_set_header_bytenr(root->node, root->node->start);
963 btrfs_set_header_generation(root->node, trans->transid);
964 btrfs_set_header_owner(root->node, BTRFS_TREE_LOG_OBJECTID);
965
966 write_extent_buffer(root->node, root->fs_info->fsid,
967 (unsigned long)btrfs_header_fsid(root->node),
968 BTRFS_FSID_SIZE);
969 btrfs_mark_buffer_dirty(root->node);
970 btrfs_tree_unlock(root->node);
971 fs_info->log_root_tree = root;
972 return 0;
973}
974
975struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
976 struct btrfs_key *location)
977{
978 struct btrfs_root *root;
979 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400980 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400981 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400982 u64 highest_inode;
Yan Zheng84234f32008-10-29 14:49:05 -0400983 u64 generation;
Chris Masondb945352007-10-15 16:15:53 -0400984 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400985 int ret = 0;
986
Chris Mason5eda7b52007-06-22 14:16:25 -0400987 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400988 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400989 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400990 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400991 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400992 location->objectid, root);
993 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400994 kfree(root);
995 return ERR_PTR(ret);
996 }
997 goto insert;
998 }
999
Chris Masondb945352007-10-15 16:15:53 -04001000 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -05001001 tree_root->sectorsize, tree_root->stripesize,
1002 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001003
1004 path = btrfs_alloc_path();
1005 BUG_ON(!path);
1006 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
1007 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04001008 if (ret > 0)
1009 ret = -ENOENT;
1010 goto out;
1011 }
Chris Mason5f39d392007-10-15 16:14:19 -04001012 l = path->nodes[0];
1013 read_extent_buffer(l, &root->root_item,
1014 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -04001015 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -04001016 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -04001017 ret = 0;
1018out:
1019 btrfs_release_path(root, path);
1020 btrfs_free_path(path);
1021 if (ret) {
1022 kfree(root);
1023 return ERR_PTR(ret);
1024 }
Yan Zheng84234f32008-10-29 14:49:05 -04001025 generation = btrfs_root_generation(&root->root_item);
Chris Masondb945352007-10-15 16:15:53 -04001026 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
1027 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Yan Zheng84234f32008-10-29 14:49:05 -04001028 blocksize, generation);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001029 BUG_ON(!root->node);
1030insert:
Chris Masone02119d2008-09-05 16:13:11 -04001031 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
1032 root->ref_cows = 1;
1033 ret = btrfs_find_highest_inode(root, &highest_inode);
1034 if (ret == 0) {
1035 root->highest_inode = highest_inode;
1036 root->last_inode_alloc = highest_inode;
1037 }
Chris Mason5eda7b52007-06-22 14:16:25 -04001038 }
1039 return root;
1040}
1041
Chris Masondc17ff82008-01-08 15:46:30 -05001042struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
1043 u64 root_objectid)
1044{
1045 struct btrfs_root *root;
1046
1047 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
1048 return fs_info->tree_root;
1049 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
1050 return fs_info->extent_root;
1051
1052 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1053 (unsigned long)root_objectid);
1054 return root;
1055}
1056
Chris Masonedbd8d42007-12-21 16:27:24 -05001057struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
1058 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -04001059{
1060 struct btrfs_root *root;
1061 int ret;
1062
Chris Masonedbd8d42007-12-21 16:27:24 -05001063 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1064 return fs_info->tree_root;
1065 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1066 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001067 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
1068 return fs_info->chunk_root;
1069 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
1070 return fs_info->dev_root;
Yan Zheng0403e472008-12-10 20:32:51 -05001071 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
1072 return fs_info->csum_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05001073
Chris Mason5eda7b52007-06-22 14:16:25 -04001074 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1075 (unsigned long)location->objectid);
1076 if (root)
1077 return root;
1078
Chris Masone02119d2008-09-05 16:13:11 -04001079 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -04001080 if (IS_ERR(root))
1081 return root;
Chris Mason3394e162008-11-17 20:42:26 -05001082
1083 set_anon_super(&root->anon_super, NULL);
1084
Chris Mason2619ba12007-04-10 16:58:11 -04001085 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1086 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001087 root);
1088 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001089 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001090 kfree(root);
1091 return ERR_PTR(ret);
1092 }
Yan Zhengc146afa2008-11-12 14:34:12 -05001093 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
1094 ret = btrfs_find_dead_roots(fs_info->tree_root,
1095 root->root_key.objectid, root);
1096 BUG_ON(ret);
1097 btrfs_orphan_cleanup(root);
1098 }
Chris Masonedbd8d42007-12-21 16:27:24 -05001099 return root;
1100}
1101
1102struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
1103 struct btrfs_key *location,
1104 const char *name, int namelen)
1105{
1106 struct btrfs_root *root;
1107 int ret;
1108
1109 root = btrfs_read_fs_root_no_name(fs_info, location);
1110 if (!root)
1111 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -04001112
Chris Mason4313b392008-01-03 09:08:48 -05001113 if (root->in_sysfs)
1114 return root;
1115
Josef Bacik58176a92007-08-29 15:47:34 -04001116 ret = btrfs_set_root_name(root, name, namelen);
1117 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001118 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001119 kfree(root);
1120 return ERR_PTR(ret);
1121 }
Chris Masonea9e8b12008-11-17 21:14:24 -05001122#if 0
Josef Bacik58176a92007-08-29 15:47:34 -04001123 ret = btrfs_sysfs_add_root(root);
1124 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001125 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001126 kfree(root->name);
1127 kfree(root);
1128 return ERR_PTR(ret);
1129 }
Chris Masonea9e8b12008-11-17 21:14:24 -05001130#endif
Chris Mason4313b392008-01-03 09:08:48 -05001131 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001132 return root;
1133}
Chris Mason04160082008-03-26 10:28:07 -04001134
1135static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1136{
1137 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1138 int ret = 0;
1139 struct list_head *cur;
1140 struct btrfs_device *device;
1141 struct backing_dev_info *bdi;
Chris Mason6f3577b2008-11-13 09:59:36 -05001142#if 0
Chris Masoncb03c742008-05-15 16:15:45 -04001143 if ((bdi_bits & (1 << BDI_write_congested)) &&
Chris Mason777e6bd2008-08-15 15:34:15 -04001144 btrfs_congested_async(info, 0))
Chris Masoncb03c742008-05-15 16:15:45 -04001145 return 1;
Chris Mason6f3577b2008-11-13 09:59:36 -05001146#endif
Chris Mason04160082008-03-26 10:28:07 -04001147 list_for_each(cur, &info->fs_devices->devices) {
1148 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001149 if (!device->bdev)
1150 continue;
Chris Mason04160082008-03-26 10:28:07 -04001151 bdi = blk_get_backing_dev_info(device->bdev);
1152 if (bdi && bdi_congested(bdi, bdi_bits)) {
1153 ret = 1;
1154 break;
1155 }
1156 }
1157 return ret;
1158}
1159
Chris Mason38b66982008-04-22 09:22:11 -04001160/*
1161 * this unplugs every device on the box, and it is only used when page
1162 * is null
1163 */
1164static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1165{
1166 struct list_head *cur;
1167 struct btrfs_device *device;
1168 struct btrfs_fs_info *info;
1169
1170 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
1171 list_for_each(cur, &info->fs_devices->devices) {
1172 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masond20f7042008-12-08 16:58:54 -05001173 if (!device->bdev)
1174 continue;
1175
Chris Mason38b66982008-04-22 09:22:11 -04001176 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masond3977122009-01-05 21:25:51 -05001177 if (bdi->unplug_io_fn)
Chris Mason38b66982008-04-22 09:22:11 -04001178 bdi->unplug_io_fn(bdi, page);
Chris Mason38b66982008-04-22 09:22:11 -04001179 }
1180}
1181
Christoph Hellwigb2950862008-12-02 09:54:17 -05001182static void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
Chris Mason04160082008-03-26 10:28:07 -04001183{
Chris Mason38b66982008-04-22 09:22:11 -04001184 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -04001185 struct extent_map_tree *em_tree;
1186 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -04001187 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -04001188 u64 offset;
1189
Chris Masonbcbfce82008-04-22 13:26:47 -04001190 /* the generic O_DIRECT read code does this */
Chris Mason9f0ba5b2008-11-18 10:31:22 -05001191 if (1 || !page) {
Chris Mason38b66982008-04-22 09:22:11 -04001192 __unplug_io_fn(bdi, page);
1193 return;
1194 }
1195
Chris Masonbcbfce82008-04-22 13:26:47 -04001196 /*
1197 * page->mapping may change at any time. Get a consistent copy
1198 * and use that for everything below
1199 */
1200 smp_mb();
1201 mapping = page->mapping;
1202 if (!mapping)
1203 return;
1204
1205 inode = mapping->host;
Chris Mason240d5d42008-11-10 13:08:31 -05001206
1207 /*
1208 * don't do the expensive searching for a small number of
1209 * devices
1210 */
1211 if (BTRFS_I(inode)->root->fs_info->fs_devices->open_devices <= 2) {
1212 __unplug_io_fn(bdi, page);
1213 return;
1214 }
1215
Chris Mason38b66982008-04-22 09:22:11 -04001216 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -04001217
Chris Masonf2d8d742008-04-21 10:03:05 -04001218 em_tree = &BTRFS_I(inode)->extent_tree;
1219 spin_lock(&em_tree->lock);
1220 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1221 spin_unlock(&em_tree->lock);
Chris Mason89642222008-07-24 09:41:53 -04001222 if (!em) {
1223 __unplug_io_fn(bdi, page);
Chris Masonf2d8d742008-04-21 10:03:05 -04001224 return;
Chris Mason89642222008-07-24 09:41:53 -04001225 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001226
Chris Mason89642222008-07-24 09:41:53 -04001227 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1228 free_extent_map(em);
1229 __unplug_io_fn(bdi, page);
1230 return;
1231 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001232 offset = offset - em->start;
1233 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1234 em->block_start + offset, page);
1235 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001236}
1237
1238static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1239{
1240 bdi_init(bdi);
Chris Mason4575c9c2008-04-18 16:13:31 -04001241 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001242 bdi->state = 0;
1243 bdi->capabilities = default_backing_dev_info.capabilities;
1244 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1245 bdi->unplug_io_data = info;
1246 bdi->congested_fn = btrfs_congested_fn;
1247 bdi->congested_data = info;
1248 return 0;
1249}
1250
Chris Masonce9adaa2008-04-09 16:28:12 -04001251static int bio_ready_for_csum(struct bio *bio)
1252{
1253 u64 length = 0;
1254 u64 buf_len = 0;
1255 u64 start = 0;
1256 struct page *page;
1257 struct extent_io_tree *io_tree = NULL;
1258 struct btrfs_fs_info *info = NULL;
1259 struct bio_vec *bvec;
1260 int i;
1261 int ret;
1262
1263 bio_for_each_segment(bvec, bio, i) {
1264 page = bvec->bv_page;
1265 if (page->private == EXTENT_PAGE_PRIVATE) {
1266 length += bvec->bv_len;
1267 continue;
1268 }
1269 if (!page->private) {
1270 length += bvec->bv_len;
1271 continue;
1272 }
1273 length = bvec->bv_len;
1274 buf_len = page->private >> 2;
1275 start = page_offset(page) + bvec->bv_offset;
1276 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1277 info = BTRFS_I(page->mapping->host)->root->fs_info;
1278 }
1279 /* are we fully contained in this bio? */
1280 if (buf_len <= length)
1281 return 1;
1282
1283 ret = extent_range_uptodate(io_tree, start + length,
1284 start + buf_len - 1);
1285 if (ret == 1)
1286 return ret;
1287 return ret;
1288}
1289
Chris Mason8b712842008-06-11 16:50:36 -04001290/*
1291 * called by the kthread helper functions to finally call the bio end_io
1292 * functions. This is where read checksum verification actually happens
1293 */
1294static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001295{
Chris Masonce9adaa2008-04-09 16:28:12 -04001296 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001297 struct end_io_wq *end_io_wq;
1298 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001299 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001300
Chris Mason8b712842008-06-11 16:50:36 -04001301 end_io_wq = container_of(work, struct end_io_wq, work);
1302 bio = end_io_wq->bio;
1303 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001304
Chris Masoncad321a2008-12-17 14:51:42 -05001305 /* metadata bio reads are special because the whole tree block must
Chris Mason8b712842008-06-11 16:50:36 -04001306 * be checksummed at once. This makes sure the entire block is in
1307 * ram and up to date before trying to verify things. For
1308 * blocksize <= pagesize, it is basically a noop
1309 */
Chris Masoncad321a2008-12-17 14:51:42 -05001310 if (!(bio->bi_rw & (1 << BIO_RW)) && end_io_wq->metadata &&
1311 !bio_ready_for_csum(bio)) {
Chris Masond20f7042008-12-08 16:58:54 -05001312 btrfs_queue_worker(&fs_info->endio_meta_workers,
Chris Mason8b712842008-06-11 16:50:36 -04001313 &end_io_wq->work);
1314 return;
1315 }
1316 error = end_io_wq->error;
1317 bio->bi_private = end_io_wq->private;
1318 bio->bi_end_io = end_io_wq->end_io;
1319 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001320 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001321}
1322
Chris Masona74a4b92008-06-25 16:01:31 -04001323static int cleaner_kthread(void *arg)
1324{
1325 struct btrfs_root *root = arg;
1326
1327 do {
1328 smp_mb();
1329 if (root->fs_info->closing)
1330 break;
1331
1332 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1333 mutex_lock(&root->fs_info->cleaner_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001334 btrfs_clean_old_snapshots(root);
Chris Masona74a4b92008-06-25 16:01:31 -04001335 mutex_unlock(&root->fs_info->cleaner_mutex);
1336
1337 if (freezing(current)) {
1338 refrigerator();
1339 } else {
1340 smp_mb();
1341 if (root->fs_info->closing)
1342 break;
1343 set_current_state(TASK_INTERRUPTIBLE);
1344 schedule();
1345 __set_current_state(TASK_RUNNING);
1346 }
1347 } while (!kthread_should_stop());
1348 return 0;
1349}
1350
1351static int transaction_kthread(void *arg)
1352{
1353 struct btrfs_root *root = arg;
1354 struct btrfs_trans_handle *trans;
1355 struct btrfs_transaction *cur;
1356 unsigned long now;
1357 unsigned long delay;
1358 int ret;
1359
1360 do {
1361 smp_mb();
1362 if (root->fs_info->closing)
1363 break;
1364
1365 delay = HZ * 30;
1366 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1367 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1368
Chris Masonab78c842008-07-29 16:15:18 -04001369 if (root->fs_info->total_ref_cache_size > 20 * 1024 * 1024) {
Chris Masond3977122009-01-05 21:25:51 -05001370 printk(KERN_INFO "btrfs: total reference cache "
1371 "size %llu\n",
1372 root->fs_info->total_ref_cache_size);
Chris Masonab78c842008-07-29 16:15:18 -04001373 }
Yan Zheng31153d82008-07-28 15:32:19 -04001374
Chris Masona74a4b92008-06-25 16:01:31 -04001375 mutex_lock(&root->fs_info->trans_mutex);
1376 cur = root->fs_info->running_transaction;
1377 if (!cur) {
1378 mutex_unlock(&root->fs_info->trans_mutex);
1379 goto sleep;
1380 }
Yan Zheng31153d82008-07-28 15:32:19 -04001381
Chris Masona74a4b92008-06-25 16:01:31 -04001382 now = get_seconds();
1383 if (now < cur->start_time || now - cur->start_time < 30) {
1384 mutex_unlock(&root->fs_info->trans_mutex);
1385 delay = HZ * 5;
1386 goto sleep;
1387 }
1388 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001389 trans = btrfs_start_transaction(root, 1);
1390 ret = btrfs_commit_transaction(trans, root);
1391sleep:
1392 wake_up_process(root->fs_info->cleaner_kthread);
1393 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1394
1395 if (freezing(current)) {
1396 refrigerator();
1397 } else {
1398 if (root->fs_info->closing)
1399 break;
1400 set_current_state(TASK_INTERRUPTIBLE);
1401 schedule_timeout(delay);
1402 __set_current_state(TASK_RUNNING);
1403 }
1404 } while (!kthread_should_stop());
1405 return 0;
1406}
1407
Chris Mason8a4b83c2008-03-24 15:02:07 -04001408struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001409 struct btrfs_fs_devices *fs_devices,
1410 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001411{
Chris Masondb945352007-10-15 16:15:53 -04001412 u32 sectorsize;
1413 u32 nodesize;
1414 u32 leafsize;
1415 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001416 u32 stripesize;
Yan Zheng84234f32008-10-29 14:49:05 -04001417 u64 generation;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001418 u64 features;
Chris Mason3de45862008-11-17 21:02:50 -05001419 struct btrfs_key location;
Chris Masona061fc82008-05-07 11:43:44 -04001420 struct buffer_head *bh;
Chris Masone02119d2008-09-05 16:13:11 -04001421 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001422 GFP_NOFS);
Chris Masond20f7042008-12-08 16:58:54 -05001423 struct btrfs_root *csum_root = kzalloc(sizeof(struct btrfs_root),
1424 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001425 struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001426 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001427 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001428 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001429 struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001430 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001431 struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001432 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001433 struct btrfs_root *log_tree_root;
1434
Chris Masoneb60cea2007-02-02 09:18:22 -05001435 int ret;
Yane58ca022008-04-01 11:21:34 -04001436 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001437
Chris Mason2c90e5d2007-04-02 10:50:19 -04001438 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001439
Jim Meyering0463bb42008-10-01 19:09:04 -04001440 if (!extent_root || !tree_root || !fs_info ||
Chris Masond20f7042008-12-08 16:58:54 -05001441 !chunk_root || !dev_root || !csum_root) {
Chris Mason39279cc2007-06-12 06:35:45 -04001442 err = -ENOMEM;
1443 goto fail;
1444 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001445 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001446 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001447 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001448 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001449 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason19c00dd2007-10-15 16:19:22 -04001450 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001451 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001452 spin_lock_init(&fs_info->new_trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001453 spin_lock_init(&fs_info->ref_cache_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001454
Josef Bacik58176a92007-08-29 15:47:34 -04001455 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001456 fs_info->tree_root = tree_root;
1457 fs_info->extent_root = extent_root;
Chris Masond20f7042008-12-08 16:58:54 -05001458 fs_info->csum_root = csum_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001459 fs_info->chunk_root = chunk_root;
1460 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001461 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001462 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001463 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001464 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001465 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason771ed682008-11-06 22:02:51 -05001466 atomic_set(&fs_info->async_delalloc_pages, 0);
Chris Mason8c8bee12008-09-29 11:19:10 -04001467 atomic_set(&fs_info->async_submit_draining, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04001468 atomic_set(&fs_info->nr_async_bios, 0);
Chris Masona2135012008-06-25 16:01:30 -04001469 atomic_set(&fs_info->throttles, 0);
Chris Masonab78c842008-07-29 16:15:18 -04001470 atomic_set(&fs_info->throttle_gen, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001471 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001472 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001473 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001474 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001475 fs_info->btree_inode = new_inode(sb);
1476 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001477 fs_info->btree_inode->i_nlink = 1;
Chris Masonc8b97812008-10-29 14:49:59 -04001478
Chris Masonb34b0862008-12-19 15:43:22 -05001479 fs_info->thread_pool_size = min_t(unsigned long,
1480 num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001481
Chris Mason3eaa2882008-07-24 11:57:52 -04001482 INIT_LIST_HEAD(&fs_info->ordered_extents);
1483 spin_lock_init(&fs_info->ordered_extent_lock);
1484
Chris Masona061fc82008-05-07 11:43:44 -04001485 sb->s_blocksize = 4096;
1486 sb->s_blocksize_bits = blksize_bits(4096);
1487
Chris Mason0afbaf82008-04-18 14:17:20 -04001488 /*
1489 * we set the i_size on the btree inode to the max possible int.
1490 * the real end of the address space is determined by all of
1491 * the devices in the system
1492 */
1493 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001494 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001495 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1496
Chris Masond1310b22008-01-24 16:13:08 -05001497 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001498 fs_info->btree_inode->i_mapping,
1499 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001500 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1501 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001502
Chris Masond1310b22008-01-24 16:13:08 -05001503 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1504
Josef Bacik0f9dd462008-09-23 13:14:11 -04001505 spin_lock_init(&fs_info->block_group_cache_lock);
1506 fs_info->block_group_cache_tree.rb_node = NULL;
1507
Chris Masond1310b22008-01-24 16:13:08 -05001508 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001509 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001510 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -04001511 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001512 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -04001513 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001514 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001515
Zheng Yan1a40e232008-09-26 10:09:34 -04001516 INIT_LIST_HEAD(&fs_info->dead_reloc_roots);
1517 btrfs_leaf_ref_tree_init(&fs_info->reloc_ref_tree);
Zheng Yane4657682008-09-26 10:04:53 -04001518 btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree);
1519
Chris Mason0f7d52f2007-04-09 10:42:37 -04001520 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1521 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1522 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001523 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001524
Chris Mason79154b12007-03-22 15:59:16 -04001525 mutex_init(&fs_info->trans_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001526 mutex_init(&fs_info->tree_log_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001527 mutex_init(&fs_info->drop_mutex);
Josef Bacik25179202008-10-29 14:49:05 -04001528 mutex_init(&fs_info->extent_ins_mutex);
1529 mutex_init(&fs_info->pinned_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001530 mutex_init(&fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001531 mutex_init(&fs_info->transaction_kthread_mutex);
1532 mutex_init(&fs_info->cleaner_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001533 mutex_init(&fs_info->volume_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001534 mutex_init(&fs_info->tree_reloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001535 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001536 init_waitqueue_head(&fs_info->transaction_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04001537 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Masone02119d2008-09-05 16:13:11 -04001538 init_waitqueue_head(&fs_info->tree_log_wait);
1539 atomic_set(&fs_info->tree_log_commit, 0);
1540 atomic_set(&fs_info->tree_log_writers, 0);
1541 fs_info->tree_log_transid = 0;
Chris Mason3768f362007-03-13 16:47:54 -04001542
Chris Mason0b86a832008-03-24 15:01:56 -04001543 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001544 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001545
Chris Masond98237b2007-03-28 13:57:48 -04001546
Yan Zhenga512bbf2008-12-08 16:46:26 -05001547 bh = btrfs_read_dev_super(fs_devices->latest_bdev);
Chris Masona061fc82008-05-07 11:43:44 -04001548 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001549 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001550
Chris Masona061fc82008-05-07 11:43:44 -04001551 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
Yan Zheng2d69a0f2009-01-05 15:43:42 -05001552 memcpy(&fs_info->super_for_commit, &fs_info->super_copy,
1553 sizeof(fs_info->super_for_commit));
Chris Masona061fc82008-05-07 11:43:44 -04001554 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001555
Chris Masona061fc82008-05-07 11:43:44 -04001556 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001557
Chris Mason5f39d392007-10-15 16:14:19 -04001558 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001559 if (!btrfs_super_root(disk_super))
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001560 goto fail_iput;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001561
Yan Zheng2b820322008-11-17 21:11:30 -05001562 ret = btrfs_parse_options(tree_root, options);
1563 if (ret) {
1564 err = ret;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001565 goto fail_iput;
Yan Zheng2b820322008-11-17 21:11:30 -05001566 }
Chris Masondfe25022008-05-13 13:46:40 -04001567
Josef Bacikf2b636e2008-12-02 06:36:08 -05001568 features = btrfs_super_incompat_flags(disk_super) &
1569 ~BTRFS_FEATURE_INCOMPAT_SUPP;
1570 if (features) {
1571 printk(KERN_ERR "BTRFS: couldn't mount because of "
1572 "unsupported optional features (%Lx).\n",
1573 features);
1574 err = -EINVAL;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001575 goto fail_iput;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001576 }
1577
1578 features = btrfs_super_compat_ro_flags(disk_super) &
1579 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
1580 if (!(sb->s_flags & MS_RDONLY) && features) {
1581 printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
1582 "unsupported option features (%Lx).\n",
1583 features);
1584 err = -EINVAL;
Josef Bacikc6e2bac2008-12-02 06:36:10 -05001585 goto fail_iput;
Josef Bacikf2b636e2008-12-02 06:36:08 -05001586 }
1587
Chris Mason4543df72008-06-11 21:47:56 -04001588 /*
1589 * we need to start all the end_io workers up front because the
1590 * queue work function gets called at interrupt time, and so it
1591 * cannot dynamically grow.
1592 */
Chris Mason5443be42008-08-15 15:34:16 -04001593 btrfs_init_workers(&fs_info->workers, "worker",
1594 fs_info->thread_pool_size);
Chris Masonc8b97812008-10-29 14:49:59 -04001595
Chris Mason771ed682008-11-06 22:02:51 -05001596 btrfs_init_workers(&fs_info->delalloc_workers, "delalloc",
1597 fs_info->thread_pool_size);
1598
Chris Mason5443be42008-08-15 15:34:16 -04001599 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04001600 min_t(u64, fs_devices->num_devices,
1601 fs_info->thread_pool_size));
Chris Mason61b49442008-07-31 15:42:53 -04001602
1603 /* a higher idle thresh on the submit workers makes it much more
1604 * likely that bios will be send down in a sane order to the
1605 * devices
1606 */
1607 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04001608
Chris Mason771ed682008-11-06 22:02:51 -05001609 fs_info->workers.idle_thresh = 16;
Chris Mason4a69a412008-11-06 22:03:00 -05001610 fs_info->workers.ordered = 1;
Chris Mason61b49442008-07-31 15:42:53 -04001611
Chris Mason771ed682008-11-06 22:02:51 -05001612 fs_info->delalloc_workers.idle_thresh = 2;
1613 fs_info->delalloc_workers.ordered = 1;
1614
Chris Mason5443be42008-08-15 15:34:16 -04001615 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1);
1616 btrfs_init_workers(&fs_info->endio_workers, "endio",
1617 fs_info->thread_pool_size);
Chris Masond20f7042008-12-08 16:58:54 -05001618 btrfs_init_workers(&fs_info->endio_meta_workers, "endio-meta",
1619 fs_info->thread_pool_size);
Chris Masoncad321a2008-12-17 14:51:42 -05001620 btrfs_init_workers(&fs_info->endio_meta_write_workers,
1621 "endio-meta-write", fs_info->thread_pool_size);
Chris Mason5443be42008-08-15 15:34:16 -04001622 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Masone6dcd2d2008-07-17 12:53:50 -04001623 fs_info->thread_pool_size);
Chris Mason61b49442008-07-31 15:42:53 -04001624
1625 /*
1626 * endios are largely parallel and should have a very
1627 * low idle thresh
1628 */
1629 fs_info->endio_workers.idle_thresh = 4;
Chris Mason3a5f1d42008-09-11 15:53:37 -04001630 fs_info->endio_write_workers.idle_thresh = 64;
Chris Masoncad321a2008-12-17 14:51:42 -05001631 fs_info->endio_meta_write_workers.idle_thresh = 64;
Chris Mason61b49442008-07-31 15:42:53 -04001632
Chris Mason4543df72008-06-11 21:47:56 -04001633 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001634 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason771ed682008-11-06 22:02:51 -05001635 btrfs_start_workers(&fs_info->delalloc_workers, 1);
Chris Mason247e7432008-07-17 12:53:51 -04001636 btrfs_start_workers(&fs_info->fixup_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001637 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
Chris Masond20f7042008-12-08 16:58:54 -05001638 btrfs_start_workers(&fs_info->endio_meta_workers,
1639 fs_info->thread_pool_size);
Chris Masoncad321a2008-12-17 14:51:42 -05001640 btrfs_start_workers(&fs_info->endio_meta_write_workers,
1641 fs_info->thread_pool_size);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001642 btrfs_start_workers(&fs_info->endio_write_workers,
1643 fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001644
Chris Mason4575c9c2008-04-18 16:13:31 -04001645 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
Chris Masonc8b97812008-10-29 14:49:59 -04001646 fs_info->bdi.ra_pages = max(fs_info->bdi.ra_pages,
1647 4 * 1024 * 1024 / PAGE_CACHE_SIZE);
Chris Mason4575c9c2008-04-18 16:13:31 -04001648
Chris Masondb945352007-10-15 16:15:53 -04001649 nodesize = btrfs_super_nodesize(disk_super);
1650 leafsize = btrfs_super_leafsize(disk_super);
1651 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001652 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001653 tree_root->nodesize = nodesize;
1654 tree_root->leafsize = leafsize;
1655 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001656 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001657
1658 sb->s_blocksize = sectorsize;
1659 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001660
Chris Mason39279cc2007-06-12 06:35:45 -04001661 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1662 sizeof(disk_super->magic))) {
Chris Masond3977122009-01-05 21:25:51 -05001663 printk(KERN_INFO "btrfs: valid FS not found on %s\n", sb->s_id);
Chris Mason39279cc2007-06-12 06:35:45 -04001664 goto fail_sb_buffer;
1665 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001666
Chris Mason925baed2008-06-25 16:01:30 -04001667 mutex_lock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05001668 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001669 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001670 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05001671 printk(KERN_WARNING "btrfs: failed to read the system "
1672 "array on %s\n", sb->s_id);
Chris Mason84eed902008-04-25 09:04:37 -04001673 goto fail_sys_array;
1674 }
Chris Mason0b86a832008-03-24 15:01:56 -04001675
1676 blocksize = btrfs_level_size(tree_root,
1677 btrfs_super_chunk_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04001678 generation = btrfs_super_chunk_root_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04001679
1680 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1681 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1682
1683 chunk_root->node = read_tree_block(chunk_root,
1684 btrfs_super_chunk_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04001685 blocksize, generation);
Chris Mason0b86a832008-03-24 15:01:56 -04001686 BUG_ON(!chunk_root->node);
1687
Chris Masone17cade2008-04-15 15:41:47 -04001688 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
Chris Masond3977122009-01-05 21:25:51 -05001689 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1690 BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001691
Chris Mason925baed2008-06-25 16:01:30 -04001692 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001693 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001694 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001695 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05001696 printk(KERN_WARNING "btrfs: failed to read chunk tree on %s\n",
1697 sb->s_id);
Yan Zheng2b820322008-11-17 21:11:30 -05001698 goto fail_chunk_root;
1699 }
Chris Mason0b86a832008-03-24 15:01:56 -04001700
Chris Masondfe25022008-05-13 13:46:40 -04001701 btrfs_close_extra_devices(fs_devices);
1702
Chris Masondb945352007-10-15 16:15:53 -04001703 blocksize = btrfs_level_size(tree_root,
1704 btrfs_super_root_level(disk_super));
Yan Zheng84234f32008-10-29 14:49:05 -04001705 generation = btrfs_super_generation(disk_super);
Chris Mason0b86a832008-03-24 15:01:56 -04001706
Chris Masone20d96d2007-03-22 12:13:20 -04001707 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001708 btrfs_super_root(disk_super),
Yan Zheng84234f32008-10-29 14:49:05 -04001709 blocksize, generation);
Chris Mason39279cc2007-06-12 06:35:45 -04001710 if (!tree_root->node)
Yan Zheng2b820322008-11-17 21:11:30 -05001711 goto fail_chunk_root;
Chris Mason3768f362007-03-13 16:47:54 -04001712
Chris Masondb945352007-10-15 16:15:53 -04001713
1714 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001715 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001716 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001717 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001718 extent_root->track_dirty = 1;
1719
1720 ret = find_and_setup_root(tree_root, fs_info,
1721 BTRFS_DEV_TREE_OBJECTID, dev_root);
1722 dev_root->track_dirty = 1;
1723
1724 if (ret)
1725 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001726
Chris Masond20f7042008-12-08 16:58:54 -05001727 ret = find_and_setup_root(tree_root, fs_info,
1728 BTRFS_CSUM_TREE_OBJECTID, csum_root);
1729 if (ret)
1730 goto fail_extent_root;
1731
1732 csum_root->track_dirty = 1;
1733
Chris Mason9078a3e2007-04-26 16:46:15 -04001734 btrfs_read_block_groups(extent_root);
1735
Yan Zheng2d69a0f2009-01-05 15:43:42 -05001736 fs_info->generation = generation;
Yan Zhengc146afa2008-11-12 14:34:12 -05001737 fs_info->last_trans_committed = generation;
Chris Masond18a2c42008-04-04 15:40:00 -04001738 fs_info->data_alloc_profile = (u64)-1;
1739 fs_info->metadata_alloc_profile = (u64)-1;
1740 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
Chris Masona74a4b92008-06-25 16:01:31 -04001741 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
1742 "btrfs-cleaner");
1743 if (!fs_info->cleaner_kthread)
Chris Masond20f7042008-12-08 16:58:54 -05001744 goto fail_csum_root;
Chris Masona74a4b92008-06-25 16:01:31 -04001745
1746 fs_info->transaction_kthread = kthread_run(transaction_kthread,
1747 tree_root,
1748 "btrfs-transaction");
1749 if (!fs_info->transaction_kthread)
Chris Mason3f157a22008-06-25 16:01:31 -04001750 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04001751
Chris Masone02119d2008-09-05 16:13:11 -04001752 if (btrfs_super_log_root(disk_super) != 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001753 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04001754
Chris Mason7c2ca462008-11-19 15:13:35 -05001755 if (fs_devices->rw_devices == 0) {
Chris Masond3977122009-01-05 21:25:51 -05001756 printk(KERN_WARNING "Btrfs log replay required "
1757 "on RO media\n");
Chris Mason7c2ca462008-11-19 15:13:35 -05001758 err = -EIO;
1759 goto fail_trans_kthread;
1760 }
Chris Masone02119d2008-09-05 16:13:11 -04001761 blocksize =
1762 btrfs_level_size(tree_root,
1763 btrfs_super_log_root_level(disk_super));
1764
1765 log_tree_root = kzalloc(sizeof(struct btrfs_root),
1766 GFP_NOFS);
1767
1768 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1769 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1770
1771 log_tree_root->node = read_tree_block(tree_root, bytenr,
Yan Zheng84234f32008-10-29 14:49:05 -04001772 blocksize,
1773 generation + 1);
Chris Masone02119d2008-09-05 16:13:11 -04001774 ret = btrfs_recover_log_trees(log_tree_root);
1775 BUG_ON(ret);
Yan Zhenge556ce22008-11-20 10:25:19 -05001776
1777 if (sb->s_flags & MS_RDONLY) {
1778 ret = btrfs_commit_super(tree_root);
1779 BUG_ON(ret);
1780 }
Chris Masone02119d2008-09-05 16:13:11 -04001781 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001782
Chris Mason7c2ca462008-11-19 15:13:35 -05001783 if (!(sb->s_flags & MS_RDONLY)) {
1784 ret = btrfs_cleanup_reloc_trees(tree_root);
1785 BUG_ON(ret);
1786 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001787
Chris Mason3de45862008-11-17 21:02:50 -05001788 location.objectid = BTRFS_FS_TREE_OBJECTID;
1789 location.type = BTRFS_ROOT_ITEM_KEY;
1790 location.offset = (u64)-1;
1791
Chris Mason3de45862008-11-17 21:02:50 -05001792 fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
1793 if (!fs_info->fs_root)
Chris Mason7c2ca462008-11-19 15:13:35 -05001794 goto fail_trans_kthread;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001795 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001796
Chris Mason7c2ca462008-11-19 15:13:35 -05001797fail_trans_kthread:
1798 kthread_stop(fs_info->transaction_kthread);
Chris Mason3f157a22008-06-25 16:01:31 -04001799fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04001800 kthread_stop(fs_info->cleaner_kthread);
Chris Mason7c2ca462008-11-19 15:13:35 -05001801
1802 /*
1803 * make sure we're done with the btree inode before we stop our
1804 * kthreads
1805 */
1806 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1807 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
1808
Chris Masond20f7042008-12-08 16:58:54 -05001809fail_csum_root:
1810 free_extent_buffer(csum_root->node);
Chris Mason0b86a832008-03-24 15:01:56 -04001811fail_extent_root:
1812 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001813fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001814 free_extent_buffer(tree_root->node);
Yan Zheng2b820322008-11-17 21:11:30 -05001815fail_chunk_root:
1816 free_extent_buffer(chunk_root->node);
Chris Mason84eed902008-04-25 09:04:37 -04001817fail_sys_array:
Chris Mason7c2ca462008-11-19 15:13:35 -05001818 free_extent_buffer(dev_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001819fail_sb_buffer:
Chris Mason247e7432008-07-17 12:53:51 -04001820 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05001821 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001822 btrfs_stop_workers(&fs_info->workers);
1823 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05001824 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05001825 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001826 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001827 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001828fail_iput:
Chris Mason7c2ca462008-11-19 15:13:35 -05001829 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
Chris Mason4543df72008-06-11 21:47:56 -04001830 iput(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001831fail:
Chris Masondfe25022008-05-13 13:46:40 -04001832 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001833 btrfs_mapping_tree_free(&fs_info->mapping_tree);
1834
Chris Mason39279cc2007-06-12 06:35:45 -04001835 kfree(extent_root);
1836 kfree(tree_root);
Chris Mason2d2ae542008-03-26 16:24:23 -04001837 bdi_destroy(&fs_info->bdi);
Chris Mason39279cc2007-06-12 06:35:45 -04001838 kfree(fs_info);
Jim Meyering83afeac2008-10-01 19:09:51 -04001839 kfree(chunk_root);
1840 kfree(dev_root);
Chris Masond20f7042008-12-08 16:58:54 -05001841 kfree(csum_root);
Chris Mason39279cc2007-06-12 06:35:45 -04001842 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001843}
1844
Chris Masonf2984462008-04-10 16:19:33 -04001845static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1846{
1847 char b[BDEVNAME_SIZE];
1848
1849 if (uptodate) {
1850 set_buffer_uptodate(bh);
1851 } else {
1852 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1853 printk(KERN_WARNING "lost page write due to "
1854 "I/O error on %s\n",
1855 bdevname(bh->b_bdev, b));
1856 }
Chris Mason1259ab72008-05-12 13:39:03 -04001857 /* note, we dont' set_buffer_write_io_error because we have
1858 * our own ways of dealing with the IO errors
1859 */
Chris Masonf2984462008-04-10 16:19:33 -04001860 clear_buffer_uptodate(bh);
1861 }
1862 unlock_buffer(bh);
1863 put_bh(bh);
1864}
1865
Yan Zhenga512bbf2008-12-08 16:46:26 -05001866struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
1867{
1868 struct buffer_head *bh;
1869 struct buffer_head *latest = NULL;
1870 struct btrfs_super_block *super;
1871 int i;
1872 u64 transid = 0;
1873 u64 bytenr;
1874
1875 /* we would like to check all the supers, but that would make
1876 * a btrfs mount succeed after a mkfs from a different FS.
1877 * So, we need to add a special mount option to scan for
1878 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1879 */
1880 for (i = 0; i < 1; i++) {
1881 bytenr = btrfs_sb_offset(i);
1882 if (bytenr + 4096 >= i_size_read(bdev->bd_inode))
1883 break;
1884 bh = __bread(bdev, bytenr / 4096, 4096);
1885 if (!bh)
1886 continue;
1887
1888 super = (struct btrfs_super_block *)bh->b_data;
1889 if (btrfs_super_bytenr(super) != bytenr ||
1890 strncmp((char *)(&super->magic), BTRFS_MAGIC,
1891 sizeof(super->magic))) {
1892 brelse(bh);
1893 continue;
1894 }
1895
1896 if (!latest || btrfs_super_generation(super) > transid) {
1897 brelse(latest);
1898 latest = bh;
1899 transid = btrfs_super_generation(super);
1900 } else {
1901 brelse(bh);
1902 }
1903 }
1904 return latest;
1905}
1906
1907static int write_dev_supers(struct btrfs_device *device,
1908 struct btrfs_super_block *sb,
1909 int do_barriers, int wait, int max_mirrors)
1910{
1911 struct buffer_head *bh;
1912 int i;
1913 int ret;
1914 int errors = 0;
1915 u32 crc;
1916 u64 bytenr;
1917 int last_barrier = 0;
1918
1919 if (max_mirrors == 0)
1920 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
1921
1922 /* make sure only the last submit_bh does a barrier */
1923 if (do_barriers) {
1924 for (i = 0; i < max_mirrors; i++) {
1925 bytenr = btrfs_sb_offset(i);
1926 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1927 device->total_bytes)
1928 break;
1929 last_barrier = i;
1930 }
1931 }
1932
1933 for (i = 0; i < max_mirrors; i++) {
1934 bytenr = btrfs_sb_offset(i);
1935 if (bytenr + BTRFS_SUPER_INFO_SIZE >= device->total_bytes)
1936 break;
1937
1938 if (wait) {
1939 bh = __find_get_block(device->bdev, bytenr / 4096,
1940 BTRFS_SUPER_INFO_SIZE);
1941 BUG_ON(!bh);
1942 brelse(bh);
1943 wait_on_buffer(bh);
1944 if (buffer_uptodate(bh)) {
1945 brelse(bh);
1946 continue;
1947 }
1948 } else {
1949 btrfs_set_super_bytenr(sb, bytenr);
1950
1951 crc = ~(u32)0;
1952 crc = btrfs_csum_data(NULL, (char *)sb +
1953 BTRFS_CSUM_SIZE, crc,
1954 BTRFS_SUPER_INFO_SIZE -
1955 BTRFS_CSUM_SIZE);
1956 btrfs_csum_final(crc, sb->csum);
1957
1958 bh = __getblk(device->bdev, bytenr / 4096,
1959 BTRFS_SUPER_INFO_SIZE);
1960 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
1961
1962 set_buffer_uptodate(bh);
1963 get_bh(bh);
1964 lock_buffer(bh);
1965 bh->b_end_io = btrfs_end_buffer_write_sync;
1966 }
1967
1968 if (i == last_barrier && do_barriers && device->barriers) {
1969 ret = submit_bh(WRITE_BARRIER, bh);
1970 if (ret == -EOPNOTSUPP) {
1971 printk("btrfs: disabling barriers on dev %s\n",
1972 device->name);
1973 set_buffer_uptodate(bh);
1974 device->barriers = 0;
1975 get_bh(bh);
1976 lock_buffer(bh);
1977 ret = submit_bh(WRITE, bh);
1978 }
1979 } else {
1980 ret = submit_bh(WRITE, bh);
1981 }
1982
1983 if (!ret && wait) {
1984 wait_on_buffer(bh);
1985 if (!buffer_uptodate(bh))
1986 errors++;
1987 } else if (ret) {
1988 errors++;
1989 }
1990 if (wait)
1991 brelse(bh);
1992 }
1993 return errors < i ? 0 : -1;
1994}
1995
1996int write_all_supers(struct btrfs_root *root, int max_mirrors)
Chris Masonf2984462008-04-10 16:19:33 -04001997{
1998 struct list_head *cur;
1999 struct list_head *head = &root->fs_info->fs_devices->devices;
2000 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04002001 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04002002 struct btrfs_dev_item *dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04002003 int ret;
2004 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04002005 int max_errors;
2006 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04002007 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04002008
Chris Masona236aed2008-04-29 09:38:00 -04002009 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04002010 do_barriers = !btrfs_test_opt(root, NOBARRIER);
2011
Chris Masona061fc82008-05-07 11:43:44 -04002012 sb = &root->fs_info->super_for_commit;
2013 dev_item = &sb->dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04002014 list_for_each(cur, head) {
2015 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04002016 if (!dev->bdev) {
2017 total_errors++;
2018 continue;
2019 }
Yan Zheng2b820322008-11-17 21:11:30 -05002020 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002021 continue;
2022
Yan Zheng2b820322008-11-17 21:11:30 -05002023 btrfs_set_stack_device_generation(dev_item, 0);
Chris Masona061fc82008-05-07 11:43:44 -04002024 btrfs_set_stack_device_type(dev_item, dev->type);
2025 btrfs_set_stack_device_id(dev_item, dev->devid);
2026 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
2027 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
2028 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
2029 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
2030 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
2031 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002032 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
Yan Zhenga512bbf2008-12-08 16:46:26 -05002033
Chris Masona061fc82008-05-07 11:43:44 -04002034 flags = btrfs_super_flags(sb);
2035 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04002036
Yan Zhenga512bbf2008-12-08 16:46:26 -05002037 ret = write_dev_supers(dev, sb, do_barriers, 0, max_mirrors);
Chris Masona236aed2008-04-29 09:38:00 -04002038 if (ret)
2039 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002040 }
Chris Masona236aed2008-04-29 09:38:00 -04002041 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05002042 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
2043 total_errors);
Chris Masona236aed2008-04-29 09:38:00 -04002044 BUG();
2045 }
Chris Masonf2984462008-04-10 16:19:33 -04002046
Yan Zhenga512bbf2008-12-08 16:46:26 -05002047 total_errors = 0;
Chris Masonf2984462008-04-10 16:19:33 -04002048 list_for_each(cur, head) {
2049 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04002050 if (!dev->bdev)
2051 continue;
Yan Zheng2b820322008-11-17 21:11:30 -05002052 if (!dev->in_fs_metadata || !dev->writeable)
Chris Masondfe25022008-05-13 13:46:40 -04002053 continue;
2054
Yan Zhenga512bbf2008-12-08 16:46:26 -05002055 ret = write_dev_supers(dev, sb, do_barriers, 1, max_mirrors);
2056 if (ret)
2057 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04002058 }
Chris Masona236aed2008-04-29 09:38:00 -04002059 if (total_errors > max_errors) {
Chris Masond3977122009-01-05 21:25:51 -05002060 printk(KERN_ERR "btrfs: %d errors while writing supers\n",
2061 total_errors);
Chris Masona236aed2008-04-29 09:38:00 -04002062 BUG();
2063 }
Chris Masonf2984462008-04-10 16:19:33 -04002064 return 0;
2065}
2066
Yan Zhenga512bbf2008-12-08 16:46:26 -05002067int write_ctree_super(struct btrfs_trans_handle *trans,
2068 struct btrfs_root *root, int max_mirrors)
Chris Masoncfaa7292007-02-21 17:04:57 -05002069{
Chris Masone66f7092007-04-20 13:16:02 -04002070 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04002071
Yan Zhenga512bbf2008-12-08 16:46:26 -05002072 ret = write_all_supers(root, max_mirrors);
Chris Mason5f39d392007-10-15 16:14:19 -04002073 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05002074}
2075
Chris Mason5eda7b52007-06-22 14:16:25 -04002076int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04002077{
2078 radix_tree_delete(&fs_info->fs_roots_radix,
2079 (unsigned long)root->root_key.objectid);
Chris Mason3394e162008-11-17 20:42:26 -05002080 if (root->anon_super.s_dev) {
2081 down_write(&root->anon_super.s_umount);
2082 kill_anon_super(&root->anon_super);
2083 }
Chris Mason2619ba12007-04-10 16:58:11 -04002084 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04002085 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04002086 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04002087 free_extent_buffer(root->commit_root);
Chris Masond3977122009-01-05 21:25:51 -05002088 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04002089 kfree(root);
2090 return 0;
2091}
2092
Chris Mason35b7e472007-05-02 15:53:43 -04002093static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04002094{
2095 int ret;
2096 struct btrfs_root *gang[8];
2097 int i;
2098
Chris Masond3977122009-01-05 21:25:51 -05002099 while (1) {
Chris Mason0f7d52f2007-04-09 10:42:37 -04002100 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2101 (void **)gang, 0,
2102 ARRAY_SIZE(gang));
2103 if (!ret)
2104 break;
Chris Mason2619ba12007-04-10 16:58:11 -04002105 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04002106 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04002107 }
2108 return 0;
2109}
Chris Masonb4100d62007-04-12 12:14:00 -04002110
Yan Zhengc146afa2008-11-12 14:34:12 -05002111int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
2112{
2113 u64 root_objectid = 0;
2114 struct btrfs_root *gang[8];
2115 int i;
2116 int ret;
2117
2118 while (1) {
2119 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2120 (void **)gang, root_objectid,
2121 ARRAY_SIZE(gang));
2122 if (!ret)
2123 break;
2124 for (i = 0; i < ret; i++) {
2125 root_objectid = gang[i]->root_key.objectid;
2126 ret = btrfs_find_dead_roots(fs_info->tree_root,
2127 root_objectid, gang[i]);
2128 BUG_ON(ret);
2129 btrfs_orphan_cleanup(gang[i]);
2130 }
2131 root_objectid++;
2132 }
2133 return 0;
2134}
2135
2136int btrfs_commit_super(struct btrfs_root *root)
2137{
2138 struct btrfs_trans_handle *trans;
2139 int ret;
2140
2141 mutex_lock(&root->fs_info->cleaner_mutex);
2142 btrfs_clean_old_snapshots(root);
2143 mutex_unlock(&root->fs_info->cleaner_mutex);
2144 trans = btrfs_start_transaction(root, 1);
2145 ret = btrfs_commit_transaction(trans, root);
2146 BUG_ON(ret);
2147 /* run commit again to drop the original snapshot */
2148 trans = btrfs_start_transaction(root, 1);
2149 btrfs_commit_transaction(trans, root);
2150 ret = btrfs_write_and_wait_transaction(NULL, root);
2151 BUG_ON(ret);
2152
Yan Zhenga512bbf2008-12-08 16:46:26 -05002153 ret = write_ctree_super(NULL, root, 0);
Yan Zhengc146afa2008-11-12 14:34:12 -05002154 return ret;
2155}
2156
Chris Masone20d96d2007-03-22 12:13:20 -04002157int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05002158{
Chris Mason0f7d52f2007-04-09 10:42:37 -04002159 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05002160 int ret;
Chris Masone089f052007-03-16 16:20:31 -04002161
Chris Masonfacda1e2007-06-08 18:11:48 -04002162 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04002163 smp_mb();
2164
Chris Masona74a4b92008-06-25 16:01:31 -04002165 kthread_stop(root->fs_info->transaction_kthread);
2166 kthread_stop(root->fs_info->cleaner_kthread);
2167
Yan Zhengc146afa2008-11-12 14:34:12 -05002168 if (!(fs_info->sb->s_flags & MS_RDONLY)) {
2169 ret = btrfs_commit_super(root);
Chris Masond3977122009-01-05 21:25:51 -05002170 if (ret)
2171 printk(KERN_ERR "btrfs: commit super ret %d\n", ret);
Yan Zhengc146afa2008-11-12 14:34:12 -05002172 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05002173
Chris Masonb0c68f82008-01-31 11:05:37 -05002174 if (fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05002175 printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n",
Chris Masonb0c68f82008-01-31 11:05:37 -05002176 fs_info->delalloc_bytes);
2177 }
Yan Zheng31153d82008-07-28 15:32:19 -04002178 if (fs_info->total_ref_cache_size) {
Chris Masond3977122009-01-05 21:25:51 -05002179 printk(KERN_INFO "btrfs: at umount reference cache size %llu\n",
2180 (unsigned long long)fs_info->total_ref_cache_size);
Yan Zheng31153d82008-07-28 15:32:19 -04002181 }
Yanbcc63ab2008-07-30 16:29:20 -04002182
Chris Mason0f7d52f2007-04-09 10:42:37 -04002183 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04002184 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04002185
Chris Mason0f7d52f2007-04-09 10:42:37 -04002186 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04002187 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04002188
Chris Masond3977122009-01-05 21:25:51 -05002189 if (root->fs_info->chunk_root->node)
Chris Mason0b86a832008-03-24 15:01:56 -04002190 free_extent_buffer(root->fs_info->chunk_root->node);
2191
Chris Masond3977122009-01-05 21:25:51 -05002192 if (root->fs_info->dev_root->node)
Chris Mason0b86a832008-03-24 15:01:56 -04002193 free_extent_buffer(root->fs_info->dev_root->node);
2194
Chris Masond3977122009-01-05 21:25:51 -05002195 if (root->fs_info->csum_root->node)
Chris Masond20f7042008-12-08 16:58:54 -05002196 free_extent_buffer(root->fs_info->csum_root->node);
2197
Chris Mason9078a3e2007-04-26 16:46:15 -04002198 btrfs_free_block_groups(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05002199
Chris Mason0f7d52f2007-04-09 10:42:37 -04002200 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05002201
Yan Zhengc146afa2008-11-12 14:34:12 -05002202 iput(fs_info->btree_inode);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002203
Chris Mason247e7432008-07-17 12:53:51 -04002204 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason771ed682008-11-06 22:02:51 -05002205 btrfs_stop_workers(&fs_info->delalloc_workers);
Chris Mason8b712842008-06-11 16:50:36 -04002206 btrfs_stop_workers(&fs_info->workers);
2207 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masond20f7042008-12-08 16:58:54 -05002208 btrfs_stop_workers(&fs_info->endio_meta_workers);
Chris Masoncad321a2008-12-17 14:51:42 -05002209 btrfs_stop_workers(&fs_info->endio_meta_write_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002210 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04002211 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04002212
Chris Mason19c00dd2007-10-15 16:19:22 -04002213#if 0
Chris Masond3977122009-01-05 21:25:51 -05002214 while (!list_empty(&fs_info->hashers)) {
Chris Mason19c00dd2007-10-15 16:19:22 -04002215 struct btrfs_hasher *hasher;
2216 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
2217 hashers);
2218 list_del(&hasher->hashers);
2219 crypto_free_hash(&fs_info->hash_tfm);
2220 kfree(hasher);
2221 }
2222#endif
Chris Masondfe25022008-05-13 13:46:40 -04002223 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04002224 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04002225
Chris Mason04160082008-03-26 10:28:07 -04002226 bdi_destroy(&fs_info->bdi);
Chris Mason0b86a832008-03-24 15:01:56 -04002227
Chris Mason0f7d52f2007-04-09 10:42:37 -04002228 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04002229 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04002230 kfree(fs_info->chunk_root);
2231 kfree(fs_info->dev_root);
Chris Masond20f7042008-12-08 16:58:54 -05002232 kfree(fs_info->csum_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05002233 return 0;
2234}
2235
Chris Mason1259ab72008-05-12 13:39:03 -04002236int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04002237{
Chris Mason1259ab72008-05-12 13:39:03 -04002238 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04002239 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04002240
2241 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
2242 if (!ret)
2243 return ret;
2244
2245 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
2246 parent_transid);
2247 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002248}
Chris Mason6702ed42007-08-07 16:15:09 -04002249
Chris Mason5f39d392007-10-15 16:14:19 -04002250int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
2251{
Chris Mason810191f2007-10-15 16:18:55 -04002252 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002253 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04002254 buf);
2255}
2256
2257void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
2258{
Chris Mason810191f2007-10-15 16:18:55 -04002259 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04002260 u64 transid = btrfs_header_generation(buf);
2261 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04002262
Chris Mason925baed2008-06-25 16:01:30 -04002263 WARN_ON(!btrfs_tree_locked(buf));
Chris Masonccd467d2007-06-28 15:57:36 -04002264 if (transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -05002265 printk(KERN_CRIT "btrfs transid mismatch buffer %llu, "
2266 "found %llu running %llu\n",
Chris Masondb945352007-10-15 16:15:53 -04002267 (unsigned long long)buf->start,
Chris Masond3977122009-01-05 21:25:51 -05002268 (unsigned long long)transid,
2269 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -04002270 WARN_ON(1);
2271 }
Chris Masond1310b22008-01-24 16:13:08 -05002272 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05002273}
2274
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002275void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04002276{
Chris Mason188de642008-05-09 11:52:25 -04002277 /*
2278 * looks as though older kernels can get into trouble with
2279 * this code, they end up stuck in balance_dirty_pages forever
2280 */
Chris Masond6bfde82008-04-30 13:59:35 -04002281 struct extent_io_tree *tree;
2282 u64 num_dirty;
2283 u64 start = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002284 unsigned long thresh = 32 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04002285 tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
2286
Chris Masonb64a2852008-08-20 13:39:41 -04002287 if (current_is_pdflush() || current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04002288 return;
2289
2290 num_dirty = count_range_bits(tree, &start, (u64)-1,
2291 thresh, EXTENT_DIRTY);
2292 if (num_dirty > thresh) {
2293 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05002294 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04002295 }
Chris Mason188de642008-05-09 11:52:25 -04002296 return;
Chris Mason35b7e472007-05-02 15:53:43 -04002297}
Chris Mason6b800532007-10-15 16:17:34 -04002298
Chris Masonca7a79a2008-05-12 12:59:19 -04002299int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04002300{
Chris Mason810191f2007-10-15 16:18:55 -04002301 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04002302 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04002303 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masond3977122009-01-05 21:25:51 -05002304 if (ret == 0)
Chris Masonce9adaa2008-04-09 16:28:12 -04002305 buf->flags |= EXTENT_UPTODATE;
Chris Masonce9adaa2008-04-09 16:28:12 -04002306 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04002307}
Chris Mason0da54682007-11-07 21:08:01 -05002308
Chris Mason4bef0842008-09-08 11:18:08 -04002309int btree_lock_page_hook(struct page *page)
2310{
2311 struct inode *inode = page->mapping->host;
2312 struct btrfs_root *root = BTRFS_I(inode)->root;
2313 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2314 struct extent_buffer *eb;
2315 unsigned long len;
2316 u64 bytenr = page_offset(page);
2317
2318 if (page->private == EXTENT_PAGE_PRIVATE)
2319 goto out;
2320
2321 len = page->private >> 2;
2322 eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
2323 if (!eb)
2324 goto out;
2325
2326 btrfs_tree_lock(eb);
2327 spin_lock(&root->fs_info->hash_lock);
2328 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
2329 spin_unlock(&root->fs_info->hash_lock);
2330 btrfs_tree_unlock(eb);
2331 free_extent_buffer(eb);
2332out:
2333 lock_page(page);
2334 return 0;
2335}
2336
Chris Masond1310b22008-01-24 16:13:08 -05002337static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04002338 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04002339 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04002340 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04002341 /* note we're sharing with inode.c for the merge bio hook */
2342 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05002343};