blob: fe40bdd984ff30f94c32cdb3aa3bf48deb69991e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masone20d96d2007-03-22 12:13:20 -040019#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -040020#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -040021#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040022#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040023#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040024#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040025#include <linux/buffer_head.h> // for block_sync_page
Chris Masonce9adaa2008-04-09 16:28:12 -040026#include <linux/workqueue.h>
Miguela5eb62e2008-04-11 15:45:51 -040027#include "crc32c.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050028#include "ctree.h"
29#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040030#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040033#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040034#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040035#include "locking.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050036
Chris Mason5f39d392007-10-15 16:14:19 -040037#if 0
38static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040039{
Chris Mason5f39d392007-10-15 16:14:19 -040040 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
41 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
42 (unsigned long long)extent_buffer_blocknr(buf),
43 (unsigned long long)btrfs_header_blocknr(buf));
Chris Mason39279cc2007-06-12 06:35:45 -040044 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040045 }
Chris Mason9a8dd152007-02-23 08:38:36 -050046 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050047}
Chris Mason5f39d392007-10-15 16:14:19 -040048#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050049
Chris Masond1310b22008-01-24 16:13:08 -050050static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040051static void end_workqueue_fn(struct btrfs_work *work);
Chris Masonce9adaa2008-04-09 16:28:12 -040052
53struct end_io_wq {
54 struct bio *bio;
55 bio_end_io_t *end_io;
56 void *private;
57 struct btrfs_fs_info *info;
58 int error;
Chris Mason22c59942008-04-09 16:28:12 -040059 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040060 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040061 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040062};
Chris Mason0da54682007-11-07 21:08:01 -050063
Chris Mason44b8bd72008-04-16 11:14:51 -040064struct async_submit_bio {
65 struct inode *inode;
66 struct bio *bio;
67 struct list_head list;
68 extent_submit_bio_hook_t *submit_bio_hook;
69 int rw;
70 int mirror_num;
Chris Mason8b712842008-06-11 16:50:36 -040071 struct btrfs_work work;
Chris Mason44b8bd72008-04-16 11:14:51 -040072};
73
Chris Mason5f39d392007-10-15 16:14:19 -040074struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050075 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040076 int create)
77{
78 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
79 struct extent_map *em;
80 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040081
Chris Masond1310b22008-01-24 16:13:08 -050082 spin_lock(&em_tree->lock);
83 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -040084 if (em) {
85 em->bdev =
86 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
87 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040088 goto out;
Chris Masona061fc82008-05-07 11:43:44 -040089 }
90 spin_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -040091
Chris Mason5f39d392007-10-15 16:14:19 -040092 em = alloc_extent_map(GFP_NOFS);
93 if (!em) {
94 em = ERR_PTR(-ENOMEM);
95 goto out;
96 }
97 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -040098 em->len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -040099 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400100 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500101
102 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400103 ret = add_extent_mapping(em_tree, em);
104 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400105 u64 failed_start = em->start;
106 u64 failed_len = em->len;
107
108 printk("failed to insert %Lu %Lu -> %Lu into tree\n",
109 em->start, em->len, em->block_start);
Chris Mason5f39d392007-10-15 16:14:19 -0400110 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400111 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400112 if (em) {
113 printk("after failing, found %Lu %Lu %Lu\n",
114 em->start, em->len, em->block_start);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400115 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400116 } else {
117 em = lookup_extent_mapping(em_tree, failed_start,
118 failed_len);
119 if (em) {
120 printk("double failure lookup gives us "
121 "%Lu %Lu -> %Lu\n", em->start,
122 em->len, em->block_start);
123 free_extent_map(em);
124 }
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
149static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
150 int verify)
151{
152 char result[BTRFS_CRC32_SIZE];
153 unsigned long len;
154 unsigned long cur_len;
155 unsigned long offset = BTRFS_CSUM_SIZE;
156 char *map_token = NULL;
157 char *kaddr;
158 unsigned long map_start;
159 unsigned long map_len;
160 int err;
161 u32 crc = ~(u32)0;
162
163 len = buf->len - offset;
164 while(len > 0) {
165 err = map_private_extent_buffer(buf, offset, 32,
166 &map_token, &kaddr,
167 &map_start, &map_len, KM_USER0);
168 if (err) {
169 printk("failed to map extent buffer! %lu\n",
170 offset);
171 return 1;
172 }
173 cur_len = min(len, map_len - (offset - map_start));
174 crc = btrfs_csum_data(root, kaddr + offset - map_start,
175 crc, cur_len);
176 len -= cur_len;
177 offset += cur_len;
178 unmap_extent_buffer(buf, map_token, KM_USER0);
179 }
180 btrfs_csum_final(crc, result);
181
182 if (verify) {
Chris Masone4204de2008-01-08 15:46:27 -0500183 int from_this_trans = 0;
184
185 if (root->fs_info->running_transaction &&
186 btrfs_header_generation(buf) ==
187 root->fs_info->running_transaction->transid)
188 from_this_trans = 1;
189
190 /* FIXME, this is not good */
Chris Mason63b10fc2008-04-01 11:21:32 -0400191 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
Chris Masone4204de2008-01-08 15:46:27 -0500192 u32 val;
193 u32 found = 0;
194 memcpy(&found, result, BTRFS_CRC32_SIZE);
195
196 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
197 printk("btrfs: %s checksum verify failed on %llu "
Chris Mason63b10fc2008-04-01 11:21:32 -0400198 "wanted %X found %X from_this_trans %d "
199 "level %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400200 root->fs_info->sb->s_id,
Chris Mason63b10fc2008-04-01 11:21:32 -0400201 buf->start, val, found, from_this_trans,
202 btrfs_header_level(buf));
Chris Mason19c00dd2007-10-15 16:19:22 -0400203 return 1;
204 }
205 } else {
206 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
207 }
208 return 0;
209}
210
Chris Mason1259ab72008-05-12 13:39:03 -0400211static int verify_parent_transid(struct extent_io_tree *io_tree,
212 struct extent_buffer *eb, u64 parent_transid)
213{
214 int ret;
215
216 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
217 return 0;
218
219 lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
220 if (extent_buffer_uptodate(io_tree, eb) &&
221 btrfs_header_generation(eb) == parent_transid) {
222 ret = 0;
223 goto out;
224 }
225 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
226 (unsigned long long)eb->start,
227 (unsigned long long)parent_transid,
228 (unsigned long long)btrfs_header_generation(eb));
229 ret = 1;
230out:
231 clear_extent_buffer_uptodate(io_tree, eb);
232 unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
233 GFP_NOFS);
234 return ret;
235
236}
237
Chris Masonf1885912008-04-09 16:28:12 -0400238static int btree_read_extent_buffer_pages(struct btrfs_root *root,
239 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400240 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400241{
242 struct extent_io_tree *io_tree;
243 int ret;
244 int num_copies = 0;
245 int mirror_num = 0;
246
247 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
248 while (1) {
249 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
250 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400251 if (!ret &&
252 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400253 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400254
Chris Masonf1885912008-04-09 16:28:12 -0400255 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
256 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400257 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400258 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400259
Chris Masonf1885912008-04-09 16:28:12 -0400260 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400261 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400262 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400263 }
Chris Masonf1885912008-04-09 16:28:12 -0400264 return -EIO;
265}
Chris Mason19c00dd2007-10-15 16:19:22 -0400266
267int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
268{
Chris Masond1310b22008-01-24 16:13:08 -0500269 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400270 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400271 u64 found_start;
272 int found_level;
273 unsigned long len;
274 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400275 int ret;
276
Chris Masond1310b22008-01-24 16:13:08 -0500277 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400278
279 if (page->private == EXTENT_PAGE_PRIVATE)
280 goto out;
281 if (!page->private)
282 goto out;
283 len = page->private >> 2;
284 if (len == 0) {
285 WARN_ON(1);
286 }
287 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -0400288 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
289 btrfs_header_generation(eb));
Chris Masonf1885912008-04-09 16:28:12 -0400290 BUG_ON(ret);
Chris Masone18e4802008-01-18 10:54:22 -0500291 btrfs_clear_buffer_defrag(eb);
Chris Mason19c00dd2007-10-15 16:19:22 -0400292 found_start = btrfs_header_bytenr(eb);
293 if (found_start != start) {
294 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
295 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500296 WARN_ON(1);
297 goto err;
298 }
299 if (eb->first_page != page) {
300 printk("bad first page %lu %lu\n", eb->first_page->index,
301 page->index);
302 WARN_ON(1);
303 goto err;
304 }
305 if (!PageUptodate(page)) {
306 printk("csum not up to date page %lu\n", page->index);
307 WARN_ON(1);
308 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400309 }
310 found_level = btrfs_header_level(eb);
Chris Mason63b10fc2008-04-01 11:21:32 -0400311 spin_lock(&root->fs_info->hash_lock);
312 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
313 spin_unlock(&root->fs_info->hash_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400314 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500315err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400316 free_extent_buffer(eb);
317out:
318 return 0;
319}
320
Chris Mason0da54682007-11-07 21:08:01 -0500321static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
322{
323 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
324
325 csum_dirty_buffer(root, page);
326 return 0;
327}
328
Chris Masonce9adaa2008-04-09 16:28:12 -0400329int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
330 struct extent_state *state)
331{
332 struct extent_io_tree *tree;
333 u64 found_start;
334 int found_level;
335 unsigned long len;
336 struct extent_buffer *eb;
337 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400338 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400339
340 tree = &BTRFS_I(page->mapping->host)->io_tree;
341 if (page->private == EXTENT_PAGE_PRIVATE)
342 goto out;
343 if (!page->private)
344 goto out;
345 len = page->private >> 2;
346 if (len == 0) {
347 WARN_ON(1);
348 }
349 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400350
Chris Masonce9adaa2008-04-09 16:28:12 -0400351 btrfs_clear_buffer_defrag(eb);
352 found_start = btrfs_header_bytenr(eb);
353 if (found_start != start) {
Chris Masonf1885912008-04-09 16:28:12 -0400354 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400355 goto err;
356 }
357 if (eb->first_page != page) {
358 printk("bad first page %lu %lu\n", eb->first_page->index,
359 page->index);
360 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400361 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400362 goto err;
363 }
Chris Mason1259ab72008-05-12 13:39:03 -0400364 if (memcmp_extent_buffer(eb, root->fs_info->fsid,
365 (unsigned long)btrfs_header_fsid(eb),
366 BTRFS_FSID_SIZE)) {
367 printk("bad fsid on block %Lu\n", eb->start);
368 ret = -EIO;
369 goto err;
370 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400371 found_level = btrfs_header_level(eb);
372
373 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400374 if (ret)
375 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400376
377 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
378 end = eb->start + end - 1;
379 release_extent_buffer_tail_pages(eb);
380err:
381 free_extent_buffer(eb);
382out:
Chris Masonf1885912008-04-09 16:28:12 -0400383 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400384}
385
386#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
387static void end_workqueue_bio(struct bio *bio, int err)
388#else
389static int end_workqueue_bio(struct bio *bio,
390 unsigned int bytes_done, int err)
391#endif
392{
393 struct end_io_wq *end_io_wq = bio->bi_private;
394 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400395
396#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
397 if (bio->bi_size)
398 return 1;
399#endif
400
401 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400402 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400403 end_io_wq->work.func = end_workqueue_fn;
404 end_io_wq->work.flags = 0;
405 btrfs_queue_worker(&fs_info->endio_workers, &end_io_wq->work);
Chris Masonce9adaa2008-04-09 16:28:12 -0400406
407#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
408 return 0;
409#endif
410}
411
Chris Mason22c59942008-04-09 16:28:12 -0400412int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
413 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400414{
Chris Masonce9adaa2008-04-09 16:28:12 -0400415 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400416 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
417 if (!end_io_wq)
418 return -ENOMEM;
419
420 end_io_wq->private = bio->bi_private;
421 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400422 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400423 end_io_wq->error = 0;
424 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400425 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400426
427 bio->bi_private = end_io_wq;
428 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400429 return 0;
430}
431
Chris Mason8b712842008-06-11 16:50:36 -0400432static void run_one_async_submit(struct btrfs_work *work)
433{
434 struct btrfs_fs_info *fs_info;
435 struct async_submit_bio *async;
436
437 async = container_of(work, struct async_submit_bio, work);
438 fs_info = BTRFS_I(async->inode)->root->fs_info;
439 atomic_dec(&fs_info->nr_async_submits);
440 async->submit_bio_hook(async->inode, async->rw, async->bio,
441 async->mirror_num);
442 kfree(async);
443}
444
Chris Mason44b8bd72008-04-16 11:14:51 -0400445int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
446 int rw, struct bio *bio, int mirror_num,
447 extent_submit_bio_hook_t *submit_bio_hook)
448{
449 struct async_submit_bio *async;
450
451 async = kmalloc(sizeof(*async), GFP_NOFS);
452 if (!async)
453 return -ENOMEM;
454
455 async->inode = inode;
456 async->rw = rw;
457 async->bio = bio;
458 async->mirror_num = mirror_num;
459 async->submit_bio_hook = submit_bio_hook;
Chris Mason8b712842008-06-11 16:50:36 -0400460 async->work.func = run_one_async_submit;
461 async->work.flags = 0;
Chris Masoncb03c742008-05-15 16:15:45 -0400462 atomic_inc(&fs_info->nr_async_submits);
Chris Mason8b712842008-06-11 16:50:36 -0400463 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason44b8bd72008-04-16 11:14:51 -0400464 return 0;
465}
466
467static int __btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400468 int mirror_num)
Chris Mason22c59942008-04-09 16:28:12 -0400469{
470 struct btrfs_root *root = BTRFS_I(inode)->root;
471 u64 offset;
472 int ret;
473
474 offset = bio->bi_sector << 9;
475
Chris Mason8b712842008-06-11 16:50:36 -0400476 /*
477 * when we're called for a write, we're already in the async
478 * submission context. Just jump ingo btrfs_map_bio
479 */
Chris Mason22c59942008-04-09 16:28:12 -0400480 if (rw & (1 << BIO_RW)) {
Chris Mason8b712842008-06-11 16:50:36 -0400481 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
482 mirror_num, 0);
Chris Mason22c59942008-04-09 16:28:12 -0400483 }
484
Chris Mason8b712842008-06-11 16:50:36 -0400485 /*
486 * called for a read, do the setup so that checksum validation
487 * can happen in the async kernel threads
488 */
Chris Mason22c59942008-04-09 16:28:12 -0400489 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 1);
490 BUG_ON(ret);
Chris Masonce9adaa2008-04-09 16:28:12 -0400491
Chris Mason8b712842008-06-11 16:50:36 -0400492 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400493}
494
Chris Mason44b8bd72008-04-16 11:14:51 -0400495static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
496 int mirror_num)
497{
Chris Mason8b712842008-06-11 16:50:36 -0400498 /*
499 * kthread helpers are used to submit writes so that checksumming
500 * can happen in parallel across all CPUs
501 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400502 if (!(rw & (1 << BIO_RW))) {
503 return __btree_submit_bio_hook(inode, rw, bio, mirror_num);
504 }
505 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
506 inode, rw, bio, mirror_num,
507 __btree_submit_bio_hook);
508}
509
Chris Mason5f39d392007-10-15 16:14:19 -0400510static int btree_writepage(struct page *page, struct writeback_control *wbc)
511{
Chris Masond1310b22008-01-24 16:13:08 -0500512 struct extent_io_tree *tree;
513 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400514 return extent_write_full_page(tree, page, btree_get_extent, wbc);
515}
Chris Mason0da54682007-11-07 21:08:01 -0500516
517static int btree_writepages(struct address_space *mapping,
518 struct writeback_control *wbc)
519{
Chris Masond1310b22008-01-24 16:13:08 -0500520 struct extent_io_tree *tree;
521 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500522 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800523 u64 num_dirty;
524 u64 start = 0;
525 unsigned long thresh = 96 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800526
527 if (wbc->for_kupdate)
528 return 0;
529
Chris Masonca664622007-11-27 11:16:35 -0500530 if (current_is_pdflush()) {
531 thresh = 96 * 1024 * 1024;
532 } else {
533 thresh = 8 * 1024 * 1024;
534 }
Chris Mason1832a6d2007-12-21 16:27:21 -0500535 num_dirty = count_range_bits(tree, &start, (u64)-1,
536 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800537 if (num_dirty < thresh) {
538 return 0;
539 }
540 }
Chris Mason0da54682007-11-07 21:08:01 -0500541 return extent_writepages(tree, mapping, btree_get_extent, wbc);
542}
543
Chris Mason5f39d392007-10-15 16:14:19 -0400544int btree_readpage(struct file *file, struct page *page)
545{
Chris Masond1310b22008-01-24 16:13:08 -0500546 struct extent_io_tree *tree;
547 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400548 return extent_read_full_page(tree, page, btree_get_extent);
549}
550
Chris Mason70dec802008-01-29 09:59:12 -0500551static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400552{
Chris Masond1310b22008-01-24 16:13:08 -0500553 struct extent_io_tree *tree;
554 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400555 int ret;
556
Chris Mason3dd39912008-04-11 10:51:07 -0400557 if (page_count(page) > 3) {
558 /* once for page->private, once for the caller, once
559 * once for the page cache
560 */
561 return 0;
562 }
Chris Masond1310b22008-01-24 16:13:08 -0500563 tree = &BTRFS_I(page->mapping->host)->io_tree;
564 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -0400565 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400566 if (ret == 1) {
Chris Mason728131d2008-04-09 16:28:12 -0400567 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -0400568 ClearPagePrivate(page);
569 set_page_private(page, 0);
570 page_cache_release(page);
571 }
Chris Masond98237b2007-03-28 13:57:48 -0400572 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400573}
Chris Mason123abc82007-03-14 14:14:43 -0400574
Chris Mason5f39d392007-10-15 16:14:19 -0400575static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400576{
Chris Masond1310b22008-01-24 16:13:08 -0500577 struct extent_io_tree *tree;
578 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400579 extent_invalidatepage(tree, page, offset);
580 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400581 if (PagePrivate(page)) {
Chris Mason4ef64ea2008-04-21 08:52:50 -0400582 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400583 ClearPagePrivate(page);
584 set_page_private(page, 0);
585 page_cache_release(page);
586 }
Chris Masond98237b2007-03-28 13:57:48 -0400587}
588
Chris Mason5f39d392007-10-15 16:14:19 -0400589#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400590static int btree_writepage(struct page *page, struct writeback_control *wbc)
591{
Chris Mason87cbda52007-03-28 19:44:27 -0400592 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400593 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400594 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400595 if (!page_has_buffers(page)) {
596 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
597 (1 << BH_Dirty)|(1 << BH_Uptodate));
598 }
599 head = page_buffers(page);
600 bh = head;
601 do {
602 if (buffer_dirty(bh))
603 csum_tree_block(root, bh, 0);
604 bh = bh->b_this_page;
605 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400606 return block_write_full_page(page, btree_get_block, wbc);
607}
Chris Mason5f39d392007-10-15 16:14:19 -0400608#endif
Chris Masond98237b2007-03-28 13:57:48 -0400609
610static struct address_space_operations btree_aops = {
611 .readpage = btree_readpage,
612 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500613 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400614 .releasepage = btree_releasepage,
615 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400616 .sync_page = block_sync_page,
617};
618
Chris Masonca7a79a2008-05-12 12:59:19 -0400619int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
620 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400621{
Chris Mason5f39d392007-10-15 16:14:19 -0400622 struct extent_buffer *buf = NULL;
623 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400624 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400625
Chris Masondb945352007-10-15 16:15:53 -0400626 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400627 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400628 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500629 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400630 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400631 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400632 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400633}
634
Chris Mason0999df52008-04-01 13:48:14 -0400635struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
636 u64 bytenr, u32 blocksize)
637{
638 struct inode *btree_inode = root->fs_info->btree_inode;
639 struct extent_buffer *eb;
640 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
641 bytenr, blocksize, GFP_NOFS);
642 return eb;
643}
644
645struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
646 u64 bytenr, u32 blocksize)
647{
648 struct inode *btree_inode = root->fs_info->btree_inode;
649 struct extent_buffer *eb;
650
651 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
652 bytenr, blocksize, NULL, GFP_NOFS);
653 return eb;
654}
655
656
Chris Masondb945352007-10-15 16:15:53 -0400657struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400658 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400659{
Chris Mason5f39d392007-10-15 16:14:19 -0400660 struct extent_buffer *buf = NULL;
661 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500662 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400663 int ret;
664
Chris Masond1310b22008-01-24 16:13:08 -0500665 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400666
Chris Masondb945352007-10-15 16:15:53 -0400667 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400668 if (!buf)
669 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500670
Chris Masonca7a79a2008-05-12 12:59:19 -0400671 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400672
673 if (ret == 0) {
674 buf->flags |= EXTENT_UPTODATE;
675 }
Chris Mason5f39d392007-10-15 16:14:19 -0400676 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400677
Chris Masoneb60cea2007-02-02 09:18:22 -0500678}
679
Chris Masone089f052007-03-16 16:20:31 -0400680int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400681 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500682{
Chris Mason5f39d392007-10-15 16:14:19 -0400683 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500684 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400685 root->fs_info->running_transaction->transid) {
686 WARN_ON(!btrfs_tree_locked(buf));
Chris Masond1310b22008-01-24 16:13:08 -0500687 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500688 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400689 }
Chris Mason5f39d392007-10-15 16:14:19 -0400690 return 0;
691}
692
693int wait_on_tree_block_writeback(struct btrfs_root *root,
694 struct extent_buffer *buf)
695{
696 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500697 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400698 buf);
699 return 0;
700}
701
Chris Masondb945352007-10-15 16:15:53 -0400702static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500703 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400704 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400705 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500706{
Chris Masoncfaa7292007-02-21 17:04:57 -0500707 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400708 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500709 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400710 root->sectorsize = sectorsize;
711 root->nodesize = nodesize;
712 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500713 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400714 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400715 root->track_dirty = 0;
716
Chris Mason9f5fae22007-03-20 14:38:32 -0400717 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400718 root->objectid = objectid;
719 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400720 root->highest_inode = 0;
721 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400722 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500723 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400724
725 INIT_LIST_HEAD(&root->dirty_list);
Chris Mason925baed2008-06-25 16:01:30 -0400726 spin_lock_init(&root->node_lock);
Chris Mason3768f362007-03-13 16:47:54 -0400727 memset(&root->root_key, 0, sizeof(root->root_key));
728 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400729 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400730 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
731 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400732 root->defrag_running = 0;
733 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400734 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400735 return 0;
736}
737
Chris Masondb945352007-10-15 16:15:53 -0400738static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400739 struct btrfs_fs_info *fs_info,
740 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400741 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400742{
743 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400744 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400745
Chris Masondb945352007-10-15 16:15:53 -0400746 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500747 tree_root->sectorsize, tree_root->stripesize,
748 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400749 ret = btrfs_find_last_root(tree_root, objectid,
750 &root->root_item, &root->root_key);
751 BUG_ON(ret);
752
Chris Masondb945352007-10-15 16:15:53 -0400753 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
754 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400755 blocksize, 0);
Chris Mason3768f362007-03-13 16:47:54 -0400756 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500757 return 0;
758}
759
Chris Mason5eda7b52007-06-22 14:16:25 -0400760struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
761 struct btrfs_key *location)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400762{
763 struct btrfs_root *root;
764 struct btrfs_root *tree_root = fs_info->tree_root;
765 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400766 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400767 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400768 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400769 int ret = 0;
770
Chris Mason5eda7b52007-06-22 14:16:25 -0400771 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400772 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400773 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400774 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400775 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400776 location->objectid, root);
777 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400778 kfree(root);
779 return ERR_PTR(ret);
780 }
781 goto insert;
782 }
783
Chris Masondb945352007-10-15 16:15:53 -0400784 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500785 tree_root->sectorsize, tree_root->stripesize,
786 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400787
788 path = btrfs_alloc_path();
789 BUG_ON(!path);
790 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
791 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400792 if (ret > 0)
793 ret = -ENOENT;
794 goto out;
795 }
Chris Mason5f39d392007-10-15 16:14:19 -0400796 l = path->nodes[0];
797 read_extent_buffer(l, &root->root_item,
798 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400799 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400800 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400801 ret = 0;
802out:
803 btrfs_release_path(root, path);
804 btrfs_free_path(path);
805 if (ret) {
806 kfree(root);
807 return ERR_PTR(ret);
808 }
Chris Masondb945352007-10-15 16:15:53 -0400809 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
810 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400811 blocksize, 0);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400812 BUG_ON(!root->node);
813insert:
Chris Mason0f7d52f2007-04-09 10:42:37 -0400814 root->ref_cows = 1;
Chris Mason5eda7b52007-06-22 14:16:25 -0400815 ret = btrfs_find_highest_inode(root, &highest_inode);
816 if (ret == 0) {
817 root->highest_inode = highest_inode;
818 root->last_inode_alloc = highest_inode;
819 }
820 return root;
821}
822
Chris Masondc17ff82008-01-08 15:46:30 -0500823struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
824 u64 root_objectid)
825{
826 struct btrfs_root *root;
827
828 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
829 return fs_info->tree_root;
830 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
831 return fs_info->extent_root;
832
833 root = radix_tree_lookup(&fs_info->fs_roots_radix,
834 (unsigned long)root_objectid);
835 return root;
836}
837
Chris Masonedbd8d42007-12-21 16:27:24 -0500838struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
839 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400840{
841 struct btrfs_root *root;
842 int ret;
843
Chris Masonedbd8d42007-12-21 16:27:24 -0500844 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
845 return fs_info->tree_root;
846 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
847 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -0400848 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
849 return fs_info->chunk_root;
850 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
851 return fs_info->dev_root;
Chris Masonedbd8d42007-12-21 16:27:24 -0500852
Chris Mason5eda7b52007-06-22 14:16:25 -0400853 root = radix_tree_lookup(&fs_info->fs_roots_radix,
854 (unsigned long)location->objectid);
855 if (root)
856 return root;
857
858 root = btrfs_read_fs_root_no_radix(fs_info, location);
859 if (IS_ERR(root))
860 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400861 ret = radix_tree_insert(&fs_info->fs_roots_radix,
862 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400863 root);
864 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400865 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400866 kfree(root);
867 return ERR_PTR(ret);
868 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500869 ret = btrfs_find_dead_roots(fs_info->tree_root,
870 root->root_key.objectid, root);
871 BUG_ON(ret);
872
873 return root;
874}
875
876struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
877 struct btrfs_key *location,
878 const char *name, int namelen)
879{
880 struct btrfs_root *root;
881 int ret;
882
883 root = btrfs_read_fs_root_no_name(fs_info, location);
884 if (!root)
885 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400886
Chris Mason4313b392008-01-03 09:08:48 -0500887 if (root->in_sysfs)
888 return root;
889
Josef Bacik58176a92007-08-29 15:47:34 -0400890 ret = btrfs_set_root_name(root, name, namelen);
891 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400892 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400893 kfree(root);
894 return ERR_PTR(ret);
895 }
896
897 ret = btrfs_sysfs_add_root(root);
898 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400899 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400900 kfree(root->name);
901 kfree(root);
902 return ERR_PTR(ret);
903 }
Chris Mason4313b392008-01-03 09:08:48 -0500904 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400905 return root;
906}
Chris Mason19c00dd2007-10-15 16:19:22 -0400907#if 0
908static int add_hasher(struct btrfs_fs_info *info, char *type) {
909 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400910
Chris Mason19c00dd2007-10-15 16:19:22 -0400911 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
912 if (!hasher)
913 return -ENOMEM;
914 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
915 if (!hasher->hash_tfm) {
916 kfree(hasher);
917 return -EINVAL;
918 }
919 spin_lock(&info->hash_lock);
920 list_add(&hasher->list, &info->hashers);
921 spin_unlock(&info->hash_lock);
922 return 0;
923}
924#endif
Chris Mason04160082008-03-26 10:28:07 -0400925
926static int btrfs_congested_fn(void *congested_data, int bdi_bits)
927{
928 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
929 int ret = 0;
Chris Masoncb03c742008-05-15 16:15:45 -0400930 int limit = 256 * info->fs_devices->open_devices;
Chris Mason04160082008-03-26 10:28:07 -0400931 struct list_head *cur;
932 struct btrfs_device *device;
933 struct backing_dev_info *bdi;
934
Chris Masoncb03c742008-05-15 16:15:45 -0400935 if ((bdi_bits & (1 << BDI_write_congested)) &&
936 atomic_read(&info->nr_async_submits) > limit) {
937 return 1;
938 }
939
Chris Mason04160082008-03-26 10:28:07 -0400940 list_for_each(cur, &info->fs_devices->devices) {
941 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -0400942 if (!device->bdev)
943 continue;
Chris Mason04160082008-03-26 10:28:07 -0400944 bdi = blk_get_backing_dev_info(device->bdev);
945 if (bdi && bdi_congested(bdi, bdi_bits)) {
946 ret = 1;
947 break;
948 }
949 }
950 return ret;
951}
952
Chris Mason38b66982008-04-22 09:22:11 -0400953/*
954 * this unplugs every device on the box, and it is only used when page
955 * is null
956 */
957static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
958{
959 struct list_head *cur;
960 struct btrfs_device *device;
961 struct btrfs_fs_info *info;
962
963 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
964 list_for_each(cur, &info->fs_devices->devices) {
965 device = list_entry(cur, struct btrfs_device, dev_list);
966 bdi = blk_get_backing_dev_info(device->bdev);
967 if (bdi->unplug_io_fn) {
968 bdi->unplug_io_fn(bdi, page);
969 }
970 }
971}
972
Chris Mason04160082008-03-26 10:28:07 -0400973void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
974{
Chris Mason38b66982008-04-22 09:22:11 -0400975 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -0400976 struct extent_map_tree *em_tree;
977 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -0400978 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -0400979 u64 offset;
980
Chris Masonbcbfce82008-04-22 13:26:47 -0400981 /* the generic O_DIRECT read code does this */
Chris Mason38b66982008-04-22 09:22:11 -0400982 if (!page) {
983 __unplug_io_fn(bdi, page);
984 return;
985 }
986
Chris Masonbcbfce82008-04-22 13:26:47 -0400987 /*
988 * page->mapping may change at any time. Get a consistent copy
989 * and use that for everything below
990 */
991 smp_mb();
992 mapping = page->mapping;
993 if (!mapping)
994 return;
995
996 inode = mapping->host;
Chris Mason38b66982008-04-22 09:22:11 -0400997 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -0400998
Chris Masonf2d8d742008-04-21 10:03:05 -0400999 em_tree = &BTRFS_I(inode)->extent_tree;
1000 spin_lock(&em_tree->lock);
1001 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1002 spin_unlock(&em_tree->lock);
1003 if (!em)
1004 return;
1005
1006 offset = offset - em->start;
1007 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1008 em->block_start + offset, page);
1009 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001010}
1011
1012static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1013{
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001014#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -04001015 bdi_init(bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001016#endif
Chris Mason4575c9c2008-04-18 16:13:31 -04001017 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001018 bdi->state = 0;
1019 bdi->capabilities = default_backing_dev_info.capabilities;
1020 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1021 bdi->unplug_io_data = info;
1022 bdi->congested_fn = btrfs_congested_fn;
1023 bdi->congested_data = info;
1024 return 0;
1025}
1026
Chris Masonce9adaa2008-04-09 16:28:12 -04001027static int bio_ready_for_csum(struct bio *bio)
1028{
1029 u64 length = 0;
1030 u64 buf_len = 0;
1031 u64 start = 0;
1032 struct page *page;
1033 struct extent_io_tree *io_tree = NULL;
1034 struct btrfs_fs_info *info = NULL;
1035 struct bio_vec *bvec;
1036 int i;
1037 int ret;
1038
1039 bio_for_each_segment(bvec, bio, i) {
1040 page = bvec->bv_page;
1041 if (page->private == EXTENT_PAGE_PRIVATE) {
1042 length += bvec->bv_len;
1043 continue;
1044 }
1045 if (!page->private) {
1046 length += bvec->bv_len;
1047 continue;
1048 }
1049 length = bvec->bv_len;
1050 buf_len = page->private >> 2;
1051 start = page_offset(page) + bvec->bv_offset;
1052 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1053 info = BTRFS_I(page->mapping->host)->root->fs_info;
1054 }
1055 /* are we fully contained in this bio? */
1056 if (buf_len <= length)
1057 return 1;
1058
1059 ret = extent_range_uptodate(io_tree, start + length,
1060 start + buf_len - 1);
1061 if (ret == 1)
1062 return ret;
1063 return ret;
1064}
1065
Chris Mason8b712842008-06-11 16:50:36 -04001066/*
1067 * called by the kthread helper functions to finally call the bio end_io
1068 * functions. This is where read checksum verification actually happens
1069 */
1070static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001071{
Chris Masonce9adaa2008-04-09 16:28:12 -04001072 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001073 struct end_io_wq *end_io_wq;
1074 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001075 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001076
Chris Mason8b712842008-06-11 16:50:36 -04001077 end_io_wq = container_of(work, struct end_io_wq, work);
1078 bio = end_io_wq->bio;
1079 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001080
Chris Mason8b712842008-06-11 16:50:36 -04001081 /* metadata bios are special because the whole tree block must
1082 * be checksummed at once. This makes sure the entire block is in
1083 * ram and up to date before trying to verify things. For
1084 * blocksize <= pagesize, it is basically a noop
1085 */
1086 if (end_io_wq->metadata && !bio_ready_for_csum(bio)) {
1087 btrfs_queue_worker(&fs_info->endio_workers,
1088 &end_io_wq->work);
1089 return;
1090 }
1091 error = end_io_wq->error;
1092 bio->bi_private = end_io_wq->private;
1093 bio->bi_end_io = end_io_wq->end_io;
1094 kfree(end_io_wq);
Miguel73f61b22008-04-11 15:50:59 -04001095#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
Chris Mason8b712842008-06-11 16:50:36 -04001096 bio_endio(bio, bio->bi_size, error);
Miguel73f61b22008-04-11 15:50:59 -04001097#else
Chris Mason8b712842008-06-11 16:50:36 -04001098 bio_endio(bio, error);
Miguel73f61b22008-04-11 15:50:59 -04001099#endif
Chris Mason44b8bd72008-04-16 11:14:51 -04001100}
1101
Chris Mason8a4b83c2008-03-24 15:02:07 -04001102struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001103 struct btrfs_fs_devices *fs_devices,
1104 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001105{
Chris Masondb945352007-10-15 16:15:53 -04001106 u32 sectorsize;
1107 u32 nodesize;
1108 u32 leafsize;
1109 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001110 u32 stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001111 struct buffer_head *bh;
Chris Masone20d96d2007-03-22 12:13:20 -04001112 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
1113 GFP_NOFS);
1114 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
1115 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001116 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001117 GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04001118 struct btrfs_root *chunk_root = kmalloc(sizeof(struct btrfs_root),
1119 GFP_NOFS);
1120 struct btrfs_root *dev_root = kmalloc(sizeof(struct btrfs_root),
1121 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -05001122 int ret;
Yane58ca022008-04-01 11:21:34 -04001123 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001124
Chris Mason2c90e5d2007-04-02 10:50:19 -04001125 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001126
Chris Mason39279cc2007-06-12 06:35:45 -04001127 if (!extent_root || !tree_root || !fs_info) {
1128 err = -ENOMEM;
1129 goto fail;
1130 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001131 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001132 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001133 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001134 INIT_LIST_HEAD(&fs_info->hashers);
1135 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001136 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001137 spin_lock_init(&fs_info->new_trans_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001138
Josef Bacik58176a92007-08-29 15:47:34 -04001139 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001140 fs_info->tree_root = tree_root;
1141 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001142 fs_info->chunk_root = chunk_root;
1143 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001144 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001145 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001146 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001147 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001148 atomic_set(&fs_info->nr_async_submits, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001149 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001150 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001151 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001152 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001153 fs_info->btree_inode = new_inode(sb);
1154 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001155 fs_info->btree_inode->i_nlink = 1;
Chris Mason4543df72008-06-11 21:47:56 -04001156 fs_info->thread_pool_size = min(num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001157
Chris Masona061fc82008-05-07 11:43:44 -04001158 sb->s_blocksize = 4096;
1159 sb->s_blocksize_bits = blksize_bits(4096);
1160
Chris Mason0afbaf82008-04-18 14:17:20 -04001161 /*
1162 * we set the i_size on the btree inode to the max possible int.
1163 * the real end of the address space is determined by all of
1164 * the devices in the system
1165 */
1166 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001167 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001168 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1169
Chris Masond1310b22008-01-24 16:13:08 -05001170 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001171 fs_info->btree_inode->i_mapping,
1172 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001173 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1174 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001175
Chris Masond1310b22008-01-24 16:13:08 -05001176 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1177
1178 extent_io_tree_init(&fs_info->free_space_cache,
Chris Masonf510cfe2007-10-15 16:14:48 -04001179 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001180 extent_io_tree_init(&fs_info->block_group_cache,
Chris Mason96b51792007-10-15 16:15:19 -04001181 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001182 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001183 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001184 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -04001185 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001186 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -04001187 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001188 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001189
Chris Mason6da6aba2007-12-18 16:15:09 -05001190#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1191 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
1192#else
Chris Mason08607c12007-06-08 15:33:54 -04001193 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
Chris Mason6da6aba2007-12-18 16:15:09 -05001194#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -04001195 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1196 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1197 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001198 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -04001199 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001200
Chris Mason79154b12007-03-22 15:59:16 -04001201 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -04001202 mutex_init(&fs_info->fs_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001203 mutex_init(&fs_info->alloc_mutex);
1204 mutex_init(&fs_info->chunk_mutex);
Chris Mason3768f362007-03-13 16:47:54 -04001205
Chris Mason19c00dd2007-10-15 16:19:22 -04001206#if 0
1207 ret = add_hasher(fs_info, "crc32c");
1208 if (ret) {
1209 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
1210 err = -ENOMEM;
1211 goto fail_iput;
1212 }
1213#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001214 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001215 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001216
Chris Masond98237b2007-03-28 13:57:48 -04001217
Chris Masona061fc82008-05-07 11:43:44 -04001218 bh = __bread(fs_devices->latest_bdev,
1219 BTRFS_SUPER_INFO_OFFSET / 4096, 4096);
1220 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001221 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001222
Chris Masona061fc82008-05-07 11:43:44 -04001223 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
1224 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001225
Chris Masona061fc82008-05-07 11:43:44 -04001226 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001227
Chris Mason5f39d392007-10-15 16:14:19 -04001228 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001229 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -04001230 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001231
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001232 err = btrfs_parse_options(tree_root, options);
1233 if (err)
1234 goto fail_sb_buffer;
Chris Masondfe25022008-05-13 13:46:40 -04001235
Chris Mason4543df72008-06-11 21:47:56 -04001236 /*
1237 * we need to start all the end_io workers up front because the
1238 * queue work function gets called at interrupt time, and so it
1239 * cannot dynamically grow.
1240 */
1241 btrfs_init_workers(&fs_info->workers, fs_info->thread_pool_size);
Chris Mason1cc127b2008-06-12 14:46:17 -04001242 btrfs_init_workers(&fs_info->submit_workers, fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001243 btrfs_init_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
1244 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001245 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001246 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
1247
1248
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001249 err = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001250 if (btrfs_super_num_devices(disk_super) > fs_devices->open_devices) {
Chris Mason8a4b83c2008-03-24 15:02:07 -04001251 printk("Btrfs: wanted %llu devices, but found %llu\n",
1252 (unsigned long long)btrfs_super_num_devices(disk_super),
Chris Masona0af4692008-05-13 16:03:06 -04001253 (unsigned long long)fs_devices->open_devices);
Chris Masondfe25022008-05-13 13:46:40 -04001254 if (btrfs_test_opt(tree_root, DEGRADED))
1255 printk("continuing in degraded mode\n");
1256 else {
1257 goto fail_sb_buffer;
1258 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001259 }
Chris Masondfe25022008-05-13 13:46:40 -04001260
Chris Mason4575c9c2008-04-18 16:13:31 -04001261 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
1262
Chris Masondb945352007-10-15 16:15:53 -04001263 nodesize = btrfs_super_nodesize(disk_super);
1264 leafsize = btrfs_super_leafsize(disk_super);
1265 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001266 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001267 tree_root->nodesize = nodesize;
1268 tree_root->leafsize = leafsize;
1269 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001270 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001271
1272 sb->s_blocksize = sectorsize;
1273 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001274
Chris Mason39279cc2007-06-12 06:35:45 -04001275 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1276 sizeof(disk_super->magic))) {
1277 printk("btrfs: valid FS not found on %s\n", sb->s_id);
1278 goto fail_sb_buffer;
1279 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001280
Chris Mason0b86a832008-03-24 15:01:56 -04001281 mutex_lock(&fs_info->fs_mutex);
Chris Mason0d81ba52008-03-24 15:02:07 -04001282
Chris Mason925baed2008-06-25 16:01:30 -04001283 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001284 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001285 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001286 if (ret) {
1287 printk("btrfs: failed to read the system array on %s\n",
1288 sb->s_id);
1289 goto fail_sys_array;
1290 }
Chris Mason0b86a832008-03-24 15:01:56 -04001291
1292 blocksize = btrfs_level_size(tree_root,
1293 btrfs_super_chunk_root_level(disk_super));
1294
1295 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1296 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1297
1298 chunk_root->node = read_tree_block(chunk_root,
1299 btrfs_super_chunk_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001300 blocksize, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001301 BUG_ON(!chunk_root->node);
1302
Chris Masone17cade2008-04-15 15:41:47 -04001303 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
1304 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1305 BTRFS_UUID_SIZE);
1306
Chris Mason925baed2008-06-25 16:01:30 -04001307 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001308 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001309 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001310 BUG_ON(ret);
1311
Chris Masondfe25022008-05-13 13:46:40 -04001312 btrfs_close_extra_devices(fs_devices);
1313
Chris Masondb945352007-10-15 16:15:53 -04001314 blocksize = btrfs_level_size(tree_root,
1315 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -04001316
Chris Mason0b86a832008-03-24 15:01:56 -04001317
Chris Masone20d96d2007-03-22 12:13:20 -04001318 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001319 btrfs_super_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001320 blocksize, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001321 if (!tree_root->node)
1322 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -04001323
Chris Masondb945352007-10-15 16:15:53 -04001324
1325 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001326 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001327 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001328 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001329 extent_root->track_dirty = 1;
1330
1331 ret = find_and_setup_root(tree_root, fs_info,
1332 BTRFS_DEV_TREE_OBJECTID, dev_root);
1333 dev_root->track_dirty = 1;
1334
1335 if (ret)
1336 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001337
Chris Mason9078a3e2007-04-26 16:46:15 -04001338 btrfs_read_block_groups(extent_root);
1339
Chris Mason0f7d52f2007-04-09 10:42:37 -04001340 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Masond18a2c42008-04-04 15:40:00 -04001341 fs_info->data_alloc_profile = (u64)-1;
1342 fs_info->metadata_alloc_profile = (u64)-1;
1343 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
1344
Chris Mason5be6f7f2007-04-05 13:35:25 -04001345 mutex_unlock(&fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001346 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001347
Chris Mason0b86a832008-03-24 15:01:56 -04001348fail_extent_root:
1349 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001350fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001351 free_extent_buffer(tree_root->node);
Chris Mason84eed902008-04-25 09:04:37 -04001352fail_sys_array:
1353 mutex_unlock(&fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001354fail_sb_buffer:
Chris Mason2d2ae542008-03-26 16:24:23 -04001355 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Mason8b712842008-06-11 16:50:36 -04001356 btrfs_stop_workers(&fs_info->workers);
1357 btrfs_stop_workers(&fs_info->endio_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001358 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001359fail_iput:
1360 iput(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001361fail:
Chris Masondfe25022008-05-13 13:46:40 -04001362 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001363 btrfs_mapping_tree_free(&fs_info->mapping_tree);
1364
Chris Mason39279cc2007-06-12 06:35:45 -04001365 kfree(extent_root);
1366 kfree(tree_root);
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001367#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason2d2ae542008-03-26 16:24:23 -04001368 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001369#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001370 kfree(fs_info);
1371 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001372}
1373
Chris Masonf2984462008-04-10 16:19:33 -04001374static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1375{
1376 char b[BDEVNAME_SIZE];
1377
1378 if (uptodate) {
1379 set_buffer_uptodate(bh);
1380 } else {
1381 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1382 printk(KERN_WARNING "lost page write due to "
1383 "I/O error on %s\n",
1384 bdevname(bh->b_bdev, b));
1385 }
Chris Mason1259ab72008-05-12 13:39:03 -04001386 /* note, we dont' set_buffer_write_io_error because we have
1387 * our own ways of dealing with the IO errors
1388 */
Chris Masonf2984462008-04-10 16:19:33 -04001389 clear_buffer_uptodate(bh);
1390 }
1391 unlock_buffer(bh);
1392 put_bh(bh);
1393}
1394
1395int write_all_supers(struct btrfs_root *root)
1396{
1397 struct list_head *cur;
1398 struct list_head *head = &root->fs_info->fs_devices->devices;
1399 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04001400 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04001401 struct btrfs_dev_item *dev_item;
1402 struct buffer_head *bh;
1403 int ret;
1404 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04001405 int max_errors;
1406 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001407 u32 crc;
1408 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04001409
Chris Masona236aed2008-04-29 09:38:00 -04001410 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04001411 do_barriers = !btrfs_test_opt(root, NOBARRIER);
1412
Chris Masona061fc82008-05-07 11:43:44 -04001413 sb = &root->fs_info->super_for_commit;
1414 dev_item = &sb->dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04001415 list_for_each(cur, head) {
1416 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001417 if (!dev->bdev) {
1418 total_errors++;
1419 continue;
1420 }
1421 if (!dev->in_fs_metadata)
1422 continue;
1423
Chris Masona061fc82008-05-07 11:43:44 -04001424 btrfs_set_stack_device_type(dev_item, dev->type);
1425 btrfs_set_stack_device_id(dev_item, dev->devid);
1426 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1427 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1428 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1429 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1430 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1431 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1432 flags = btrfs_super_flags(sb);
1433 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04001434
Chris Masonf2984462008-04-10 16:19:33 -04001435
Chris Masona061fc82008-05-07 11:43:44 -04001436 crc = ~(u32)0;
1437 crc = btrfs_csum_data(root, (char *)sb + BTRFS_CSUM_SIZE, crc,
1438 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1439 btrfs_csum_final(crc, sb->csum);
1440
1441 bh = __getblk(dev->bdev, BTRFS_SUPER_INFO_OFFSET / 4096,
Chris Masonf2984462008-04-10 16:19:33 -04001442 BTRFS_SUPER_INFO_SIZE);
1443
Chris Masona061fc82008-05-07 11:43:44 -04001444 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -04001445 dev->pending_io = bh;
1446
1447 get_bh(bh);
1448 set_buffer_uptodate(bh);
1449 lock_buffer(bh);
1450 bh->b_end_io = btrfs_end_buffer_write_sync;
1451
1452 if (do_barriers && dev->barriers) {
1453 ret = submit_bh(WRITE_BARRIER, bh);
1454 if (ret == -EOPNOTSUPP) {
1455 printk("btrfs: disabling barriers on dev %s\n",
1456 dev->name);
1457 set_buffer_uptodate(bh);
1458 dev->barriers = 0;
1459 get_bh(bh);
1460 lock_buffer(bh);
1461 ret = submit_bh(WRITE, bh);
1462 }
1463 } else {
1464 ret = submit_bh(WRITE, bh);
1465 }
Chris Masona236aed2008-04-29 09:38:00 -04001466 if (ret)
1467 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001468 }
Chris Masona236aed2008-04-29 09:38:00 -04001469 if (total_errors > max_errors) {
1470 printk("btrfs: %d errors while writing supers\n", total_errors);
1471 BUG();
1472 }
1473 total_errors = 0;
Chris Masonf2984462008-04-10 16:19:33 -04001474
1475 list_for_each(cur, head) {
1476 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001477 if (!dev->bdev)
1478 continue;
1479 if (!dev->in_fs_metadata)
1480 continue;
1481
Chris Masonf2984462008-04-10 16:19:33 -04001482 BUG_ON(!dev->pending_io);
1483 bh = dev->pending_io;
1484 wait_on_buffer(bh);
1485 if (!buffer_uptodate(dev->pending_io)) {
1486 if (do_barriers && dev->barriers) {
1487 printk("btrfs: disabling barriers on dev %s\n",
1488 dev->name);
1489 set_buffer_uptodate(bh);
1490 get_bh(bh);
1491 lock_buffer(bh);
1492 dev->barriers = 0;
1493 ret = submit_bh(WRITE, bh);
1494 BUG_ON(ret);
1495 wait_on_buffer(bh);
Chris Mason1259ab72008-05-12 13:39:03 -04001496 if (!buffer_uptodate(bh))
1497 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001498 } else {
Chris Masona236aed2008-04-29 09:38:00 -04001499 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001500 }
1501
1502 }
1503 dev->pending_io = NULL;
1504 brelse(bh);
1505 }
Chris Masona236aed2008-04-29 09:38:00 -04001506 if (total_errors > max_errors) {
1507 printk("btrfs: %d errors while writing supers\n", total_errors);
1508 BUG();
1509 }
Chris Masonf2984462008-04-10 16:19:33 -04001510 return 0;
1511}
1512
Chris Masone089f052007-03-16 16:20:31 -04001513int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -04001514 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -05001515{
Chris Masone66f7092007-04-20 13:16:02 -04001516 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001517
Chris Masonf2984462008-04-10 16:19:33 -04001518 ret = write_all_supers(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001519 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05001520}
1521
Chris Mason5eda7b52007-06-22 14:16:25 -04001522int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04001523{
1524 radix_tree_delete(&fs_info->fs_roots_radix,
1525 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -05001526 if (root->in_sysfs)
1527 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -04001528 if (root->inode)
1529 iput(root->inode);
1530 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001531 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04001532 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04001533 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -04001534 if (root->name)
1535 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04001536 kfree(root);
1537 return 0;
1538}
1539
Chris Mason35b7e472007-05-02 15:53:43 -04001540static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001541{
1542 int ret;
1543 struct btrfs_root *gang[8];
1544 int i;
1545
1546 while(1) {
1547 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
1548 (void **)gang, 0,
1549 ARRAY_SIZE(gang));
1550 if (!ret)
1551 break;
Chris Mason2619ba12007-04-10 16:58:11 -04001552 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04001553 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001554 }
1555 return 0;
1556}
Chris Masonb4100d62007-04-12 12:14:00 -04001557
Chris Masone20d96d2007-03-22 12:13:20 -04001558int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05001559{
Chris Mason3768f362007-03-13 16:47:54 -04001560 int ret;
Chris Masone089f052007-03-16 16:20:31 -04001561 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001562 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -04001563
Chris Masonfacda1e2007-06-08 18:11:48 -04001564 fs_info->closing = 1;
Chris Mason08607c12007-06-08 15:33:54 -04001565 btrfs_transaction_flush_work(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001566 mutex_lock(&fs_info->fs_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -04001567 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason79154b12007-03-22 15:59:16 -04001568 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001569 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001570 /* run commit again to drop the original snapshot */
1571 trans = btrfs_start_transaction(root, 1);
1572 btrfs_commit_transaction(trans, root);
1573 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001574 BUG_ON(ret);
Chris Masond6bfde82008-04-30 13:59:35 -04001575
Chris Mason79154b12007-03-22 15:59:16 -04001576 write_ctree_super(NULL, root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001577 mutex_unlock(&fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001578
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001579 btrfs_transaction_flush_work(root);
1580
Chris Masonb0c68f82008-01-31 11:05:37 -05001581 if (fs_info->delalloc_bytes) {
1582 printk("btrfs: at unmount delalloc count %Lu\n",
1583 fs_info->delalloc_bytes);
1584 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001585 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001586 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001587
Chris Mason0f7d52f2007-04-09 10:42:37 -04001588 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001589 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001590
Chris Mason0b86a832008-03-24 15:01:56 -04001591 if (root->fs_info->chunk_root->node);
1592 free_extent_buffer(root->fs_info->chunk_root->node);
1593
1594 if (root->fs_info->dev_root->node);
1595 free_extent_buffer(root->fs_info->dev_root->node);
1596
Chris Mason9078a3e2007-04-26 16:46:15 -04001597 btrfs_free_block_groups(root->fs_info);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001598 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001599
1600 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1601
Chris Masond1310b22008-01-24 16:13:08 -05001602 extent_io_tree_empty_lru(&fs_info->free_space_cache);
1603 extent_io_tree_empty_lru(&fs_info->block_group_cache);
1604 extent_io_tree_empty_lru(&fs_info->pinned_extents);
1605 extent_io_tree_empty_lru(&fs_info->pending_del);
1606 extent_io_tree_empty_lru(&fs_info->extent_ins);
1607 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Masond10c5f32007-12-17 20:14:04 -05001608
Chris Masondb945352007-10-15 16:15:53 -04001609 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001610
Chris Mason8b712842008-06-11 16:50:36 -04001611 btrfs_stop_workers(&fs_info->workers);
1612 btrfs_stop_workers(&fs_info->endio_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001613 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04001614
Chris Masondb945352007-10-15 16:15:53 -04001615 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001616#if 0
1617 while(!list_empty(&fs_info->hashers)) {
1618 struct btrfs_hasher *hasher;
1619 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1620 hashers);
1621 list_del(&hasher->hashers);
1622 crypto_free_hash(&fs_info->hash_tfm);
1623 kfree(hasher);
1624 }
1625#endif
Chris Masondfe25022008-05-13 13:46:40 -04001626 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04001627 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04001628
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001629#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -04001630 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001631#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001632
Chris Mason0f7d52f2007-04-09 10:42:37 -04001633 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001634 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001635 kfree(fs_info->chunk_root);
1636 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001637 return 0;
1638}
1639
Chris Mason1259ab72008-05-12 13:39:03 -04001640int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04001641{
Chris Mason1259ab72008-05-12 13:39:03 -04001642 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04001643 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04001644
1645 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
1646 if (!ret)
1647 return ret;
1648
1649 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
1650 parent_transid);
1651 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001652}
Chris Mason6702ed42007-08-07 16:15:09 -04001653
Chris Mason5f39d392007-10-15 16:14:19 -04001654int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1655{
Chris Mason810191f2007-10-15 16:18:55 -04001656 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001657 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001658 buf);
1659}
1660
1661void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1662{
Chris Mason810191f2007-10-15 16:18:55 -04001663 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001664 u64 transid = btrfs_header_generation(buf);
1665 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001666
Chris Mason925baed2008-06-25 16:01:30 -04001667 WARN_ON(!btrfs_tree_locked(buf));
Chris Masonccd467d2007-06-28 15:57:36 -04001668 if (transid != root->fs_info->generation) {
1669 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001670 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001671 transid, root->fs_info->generation);
1672 WARN_ON(1);
1673 }
Chris Masond1310b22008-01-24 16:13:08 -05001674 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001675}
1676
Chris Masone2008b62008-01-08 15:46:30 -05001677void btrfs_throttle(struct btrfs_root *root)
1678{
Chris Mason55c69072008-01-09 15:55:33 -05001679 struct backing_dev_info *bdi;
1680
Chris Masona061fc82008-05-07 11:43:44 -04001681 bdi = &root->fs_info->bdi;
Chris Mason04005cc2008-01-17 12:01:41 -05001682 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
1683#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
Chris Mason55c69072008-01-09 15:55:33 -05001684 congestion_wait(WRITE, HZ/20);
Chris Mason04005cc2008-01-17 12:01:41 -05001685#else
1686 blk_congestion_wait(WRITE, HZ/20);
1687#endif
1688 }
Chris Masone2008b62008-01-08 15:46:30 -05001689}
1690
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001691void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001692{
Chris Mason188de642008-05-09 11:52:25 -04001693 /*
1694 * looks as though older kernels can get into trouble with
1695 * this code, they end up stuck in balance_dirty_pages forever
1696 */
Chris Masond6bfde82008-04-30 13:59:35 -04001697 struct extent_io_tree *tree;
1698 u64 num_dirty;
1699 u64 start = 0;
1700 unsigned long thresh = 16 * 1024 * 1024;
1701 tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
1702
1703 if (current_is_pdflush())
1704 return;
1705
1706 num_dirty = count_range_bits(tree, &start, (u64)-1,
1707 thresh, EXTENT_DIRTY);
1708 if (num_dirty > thresh) {
1709 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05001710 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04001711 }
Chris Mason188de642008-05-09 11:52:25 -04001712 return;
Chris Mason35b7e472007-05-02 15:53:43 -04001713}
Chris Mason6b800532007-10-15 16:17:34 -04001714
1715void btrfs_set_buffer_defrag(struct extent_buffer *buf)
1716{
Chris Mason810191f2007-10-15 16:18:55 -04001717 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001718 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001719 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001720 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
1721}
1722
1723void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
1724{
Chris Mason810191f2007-10-15 16:18:55 -04001725 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001726 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001727 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001728 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
1729 GFP_NOFS);
1730}
1731
1732int btrfs_buffer_defrag(struct extent_buffer *buf)
1733{
Chris Mason810191f2007-10-15 16:18:55 -04001734 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001735 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001736 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001737 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
1738}
1739
1740int btrfs_buffer_defrag_done(struct extent_buffer *buf)
1741{
Chris Mason810191f2007-10-15 16:18:55 -04001742 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001743 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001744 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001745 buf->start, buf->start + buf->len - 1,
1746 EXTENT_DEFRAG_DONE, 0);
1747}
1748
1749int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
1750{
Chris Mason810191f2007-10-15 16:18:55 -04001751 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001752 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001753 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001754 buf->start, buf->start + buf->len - 1,
1755 EXTENT_DEFRAG_DONE, GFP_NOFS);
1756}
1757
1758int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1759{
Chris Mason810191f2007-10-15 16:18:55 -04001760 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001761 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001762 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001763 buf->start, buf->start + buf->len - 1,
1764 EXTENT_DEFRAG, GFP_NOFS);
1765}
1766
Chris Masonca7a79a2008-05-12 12:59:19 -04001767int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04001768{
Chris Mason810191f2007-10-15 16:18:55 -04001769 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04001770 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04001771 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -04001772 if (ret == 0) {
1773 buf->flags |= EXTENT_UPTODATE;
1774 }
1775 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04001776}
Chris Mason0da54682007-11-07 21:08:01 -05001777
Chris Masond1310b22008-01-24 16:13:08 -05001778static struct extent_io_ops btree_extent_io_ops = {
Chris Mason0da54682007-11-07 21:08:01 -05001779 .writepage_io_hook = btree_writepage_io_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04001780 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04001781 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04001782 /* note we're sharing with inode.c for the merge bio hook */
1783 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05001784};