blob: 9e41ea93ebcef5f011f60cd915393c5271a805e5 [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 Masoneb60cea2007-02-02 09:18:22 -050034
Chris Mason5f39d392007-10-15 16:14:19 -040035#if 0
36static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040037{
Chris Mason5f39d392007-10-15 16:14:19 -040038 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
39 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
40 (unsigned long long)extent_buffer_blocknr(buf),
41 (unsigned long long)btrfs_header_blocknr(buf));
Chris Mason39279cc2007-06-12 06:35:45 -040042 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040043 }
Chris Mason9a8dd152007-02-23 08:38:36 -050044 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050045}
Chris Mason5f39d392007-10-15 16:14:19 -040046#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050047
Chris Masond1310b22008-01-24 16:13:08 -050048static struct extent_io_ops btree_extent_io_ops;
Chris Masonce9adaa2008-04-09 16:28:12 -040049static struct workqueue_struct *end_io_workqueue;
Chris Mason44b8bd72008-04-16 11:14:51 -040050static struct workqueue_struct *async_submit_workqueue;
Chris Masonce9adaa2008-04-09 16:28:12 -040051
52struct end_io_wq {
53 struct bio *bio;
54 bio_end_io_t *end_io;
55 void *private;
56 struct btrfs_fs_info *info;
57 int error;
Chris Mason22c59942008-04-09 16:28:12 -040058 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040059 struct list_head list;
60};
Chris Mason0da54682007-11-07 21:08:01 -050061
Chris Mason44b8bd72008-04-16 11:14:51 -040062struct async_submit_bio {
63 struct inode *inode;
64 struct bio *bio;
65 struct list_head list;
66 extent_submit_bio_hook_t *submit_bio_hook;
67 int rw;
68 int mirror_num;
69};
70
Chris Mason5f39d392007-10-15 16:14:19 -040071struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050072 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040073 int create)
74{
75 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
76 struct extent_map *em;
77 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040078
Chris Mason5f39d392007-10-15 16:14:19 -040079again:
Chris Masond1310b22008-01-24 16:13:08 -050080 spin_lock(&em_tree->lock);
81 em = lookup_extent_mapping(em_tree, start, len);
82 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040083 if (em) {
84 goto out;
85 }
86 em = alloc_extent_map(GFP_NOFS);
87 if (!em) {
88 em = ERR_PTR(-ENOMEM);
89 goto out;
90 }
91 em->start = 0;
Chris Masond1310b22008-01-24 16:13:08 -050092 em->len = i_size_read(inode);
Chris Mason5f39d392007-10-15 16:14:19 -040093 em->block_start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -040094 em->bdev = inode->i_sb->s_bdev;
Chris Masond1310b22008-01-24 16:13:08 -050095
96 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040097 ret = add_extent_mapping(em_tree, em);
Chris Masond1310b22008-01-24 16:13:08 -050098 spin_unlock(&em_tree->lock);
99
Chris Mason5f39d392007-10-15 16:14:19 -0400100 if (ret == -EEXIST) {
101 free_extent_map(em);
102 em = NULL;
103 goto again;
104 } else if (ret) {
105 em = ERR_PTR(ret);
106 }
107out:
108 return em;
109}
110
Chris Mason19c00dd2007-10-15 16:19:22 -0400111u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
112{
Miguela5eb62e2008-04-11 15:45:51 -0400113 return btrfs_crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400114}
115
116void btrfs_csum_final(u32 crc, char *result)
117{
118 *(__le32 *)result = ~cpu_to_le32(crc);
119}
120
121static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
122 int verify)
123{
124 char result[BTRFS_CRC32_SIZE];
125 unsigned long len;
126 unsigned long cur_len;
127 unsigned long offset = BTRFS_CSUM_SIZE;
128 char *map_token = NULL;
129 char *kaddr;
130 unsigned long map_start;
131 unsigned long map_len;
132 int err;
133 u32 crc = ~(u32)0;
134
135 len = buf->len - offset;
136 while(len > 0) {
137 err = map_private_extent_buffer(buf, offset, 32,
138 &map_token, &kaddr,
139 &map_start, &map_len, KM_USER0);
140 if (err) {
141 printk("failed to map extent buffer! %lu\n",
142 offset);
143 return 1;
144 }
145 cur_len = min(len, map_len - (offset - map_start));
146 crc = btrfs_csum_data(root, kaddr + offset - map_start,
147 crc, cur_len);
148 len -= cur_len;
149 offset += cur_len;
150 unmap_extent_buffer(buf, map_token, KM_USER0);
151 }
152 btrfs_csum_final(crc, result);
153
154 if (verify) {
Chris Masone4204de2008-01-08 15:46:27 -0500155 int from_this_trans = 0;
156
157 if (root->fs_info->running_transaction &&
158 btrfs_header_generation(buf) ==
159 root->fs_info->running_transaction->transid)
160 from_this_trans = 1;
161
162 /* FIXME, this is not good */
Chris Mason63b10fc2008-04-01 11:21:32 -0400163 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
Chris Masone4204de2008-01-08 15:46:27 -0500164 u32 val;
165 u32 found = 0;
166 memcpy(&found, result, BTRFS_CRC32_SIZE);
167
168 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
169 printk("btrfs: %s checksum verify failed on %llu "
Chris Mason63b10fc2008-04-01 11:21:32 -0400170 "wanted %X found %X from_this_trans %d "
171 "level %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400172 root->fs_info->sb->s_id,
Chris Mason63b10fc2008-04-01 11:21:32 -0400173 buf->start, val, found, from_this_trans,
174 btrfs_header_level(buf));
Chris Mason19c00dd2007-10-15 16:19:22 -0400175 return 1;
176 }
177 } else {
178 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
179 }
180 return 0;
181}
182
Chris Masonf1885912008-04-09 16:28:12 -0400183static int btree_read_extent_buffer_pages(struct btrfs_root *root,
184 struct extent_buffer *eb,
185 u64 start)
186{
187 struct extent_io_tree *io_tree;
188 int ret;
189 int num_copies = 0;
190 int mirror_num = 0;
191
192 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
193 while (1) {
194 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
195 btree_get_extent, mirror_num);
196 if (!ret) {
197 if (mirror_num)
198printk("good read %Lu mirror %d total %d\n", eb->start, mirror_num, num_copies);
199 return ret;
200 }
201 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
202 eb->start, eb->len);
203printk("failed to read %Lu mirror %d total %d\n", eb->start, mirror_num, num_copies);
204 if (num_copies == 1) {
205printk("reading %Lu failed only one copy\n", eb->start);
206 return ret;
207 }
208 mirror_num++;
209 if (mirror_num > num_copies) {
210printk("bailing at mirror %d of %d\n", mirror_num, num_copies);
211 return ret;
212 }
213 }
214printk("read extent buffer page last\n");
215 return -EIO;
216}
Chris Mason19c00dd2007-10-15 16:19:22 -0400217
218int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
219{
Chris Masond1310b22008-01-24 16:13:08 -0500220 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400221 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400222 u64 found_start;
223 int found_level;
224 unsigned long len;
225 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400226 int ret;
227
Chris Masond1310b22008-01-24 16:13:08 -0500228 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400229
230 if (page->private == EXTENT_PAGE_PRIVATE)
231 goto out;
232 if (!page->private)
233 goto out;
234 len = page->private >> 2;
235 if (len == 0) {
236 WARN_ON(1);
237 }
238 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400239 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE);
240 BUG_ON(ret);
Chris Masone18e4802008-01-18 10:54:22 -0500241 btrfs_clear_buffer_defrag(eb);
Chris Mason19c00dd2007-10-15 16:19:22 -0400242 found_start = btrfs_header_bytenr(eb);
243 if (found_start != start) {
244 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
245 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500246 WARN_ON(1);
247 goto err;
248 }
249 if (eb->first_page != page) {
250 printk("bad first page %lu %lu\n", eb->first_page->index,
251 page->index);
252 WARN_ON(1);
253 goto err;
254 }
255 if (!PageUptodate(page)) {
256 printk("csum not up to date page %lu\n", page->index);
257 WARN_ON(1);
258 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400259 }
260 found_level = btrfs_header_level(eb);
Chris Mason63b10fc2008-04-01 11:21:32 -0400261 spin_lock(&root->fs_info->hash_lock);
262 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
263 spin_unlock(&root->fs_info->hash_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400264 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500265err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400266 free_extent_buffer(eb);
267out:
268 return 0;
269}
270
Chris Mason0da54682007-11-07 21:08:01 -0500271static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
272{
273 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
274
275 csum_dirty_buffer(root, page);
276 return 0;
277}
278
Chris Masonce9adaa2008-04-09 16:28:12 -0400279int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
280 struct extent_state *state)
281{
282 struct extent_io_tree *tree;
283 u64 found_start;
284 int found_level;
285 unsigned long len;
286 struct extent_buffer *eb;
287 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400288 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400289
290 tree = &BTRFS_I(page->mapping->host)->io_tree;
291 if (page->private == EXTENT_PAGE_PRIVATE)
292 goto out;
293 if (!page->private)
294 goto out;
295 len = page->private >> 2;
296 if (len == 0) {
297 WARN_ON(1);
298 }
299 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400300
Chris Masonce9adaa2008-04-09 16:28:12 -0400301 btrfs_clear_buffer_defrag(eb);
302 found_start = btrfs_header_bytenr(eb);
303 if (found_start != start) {
Chris Masonf1885912008-04-09 16:28:12 -0400304printk("bad start on %Lu found %Lu\n", eb->start, found_start);
305 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400306 goto err;
307 }
308 if (eb->first_page != page) {
309 printk("bad first page %lu %lu\n", eb->first_page->index,
310 page->index);
311 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400312 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400313 goto err;
314 }
315 found_level = btrfs_header_level(eb);
316
317 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400318 if (ret)
319 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400320
321 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
322 end = eb->start + end - 1;
323 release_extent_buffer_tail_pages(eb);
324err:
325 free_extent_buffer(eb);
326out:
Chris Masonf1885912008-04-09 16:28:12 -0400327 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400328}
329
330#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
331static void end_workqueue_bio(struct bio *bio, int err)
332#else
333static int end_workqueue_bio(struct bio *bio,
334 unsigned int bytes_done, int err)
335#endif
336{
337 struct end_io_wq *end_io_wq = bio->bi_private;
338 struct btrfs_fs_info *fs_info;
339 unsigned long flags;
340
341#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
342 if (bio->bi_size)
343 return 1;
344#endif
345
346 fs_info = end_io_wq->info;
347 spin_lock_irqsave(&fs_info->end_io_work_lock, flags);
348 end_io_wq->error = err;
349 list_add_tail(&end_io_wq->list, &fs_info->end_io_work_list);
350 spin_unlock_irqrestore(&fs_info->end_io_work_lock, flags);
351 queue_work(end_io_workqueue, &fs_info->end_io_work);
352
353#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
354 return 0;
355#endif
356}
357
Chris Mason22c59942008-04-09 16:28:12 -0400358int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
359 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400360{
Chris Masonce9adaa2008-04-09 16:28:12 -0400361 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400362 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
363 if (!end_io_wq)
364 return -ENOMEM;
365
366 end_io_wq->private = bio->bi_private;
367 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400368 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400369 end_io_wq->error = 0;
370 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400371 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400372
373 bio->bi_private = end_io_wq;
374 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400375 return 0;
376}
377
Chris Mason44b8bd72008-04-16 11:14:51 -0400378int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
379 int rw, struct bio *bio, int mirror_num,
380 extent_submit_bio_hook_t *submit_bio_hook)
381{
382 struct async_submit_bio *async;
383
384 async = kmalloc(sizeof(*async), GFP_NOFS);
385 if (!async)
386 return -ENOMEM;
387
388 async->inode = inode;
389 async->rw = rw;
390 async->bio = bio;
391 async->mirror_num = mirror_num;
392 async->submit_bio_hook = submit_bio_hook;
393
394 spin_lock(&fs_info->async_submit_work_lock);
395 list_add_tail(&async->list, &fs_info->async_submit_work_list);
396 spin_unlock(&fs_info->async_submit_work_lock);
397
398 queue_work(async_submit_workqueue, &fs_info->async_submit_work);
399 return 0;
400}
401
402static int __btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400403 int mirror_num)
Chris Mason22c59942008-04-09 16:28:12 -0400404{
405 struct btrfs_root *root = BTRFS_I(inode)->root;
406 u64 offset;
407 int ret;
408
409 offset = bio->bi_sector << 9;
410
411 if (rw & (1 << BIO_RW)) {
Chris Masonf1885912008-04-09 16:28:12 -0400412 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num);
Chris Mason22c59942008-04-09 16:28:12 -0400413 }
414
415 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 1);
416 BUG_ON(ret);
Chris Masonce9adaa2008-04-09 16:28:12 -0400417
Chris Mason0b86a832008-03-24 15:01:56 -0400418 if (offset == BTRFS_SUPER_INFO_OFFSET) {
Chris Masonf2984462008-04-10 16:19:33 -0400419 bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason0b86a832008-03-24 15:01:56 -0400420 submit_bio(rw, bio);
421 return 0;
422 }
Chris Masonf1885912008-04-09 16:28:12 -0400423 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num);
Chris Mason0b86a832008-03-24 15:01:56 -0400424}
425
Chris Mason44b8bd72008-04-16 11:14:51 -0400426static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
427 int mirror_num)
428{
429 if (!(rw & (1 << BIO_RW))) {
430 return __btree_submit_bio_hook(inode, rw, bio, mirror_num);
431 }
432 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
433 inode, rw, bio, mirror_num,
434 __btree_submit_bio_hook);
435}
436
Chris Mason5f39d392007-10-15 16:14:19 -0400437static int btree_writepage(struct page *page, struct writeback_control *wbc)
438{
Chris Masond1310b22008-01-24 16:13:08 -0500439 struct extent_io_tree *tree;
440 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400441 return extent_write_full_page(tree, page, btree_get_extent, wbc);
442}
Chris Mason0da54682007-11-07 21:08:01 -0500443
444static int btree_writepages(struct address_space *mapping,
445 struct writeback_control *wbc)
446{
Chris Masond1310b22008-01-24 16:13:08 -0500447 struct extent_io_tree *tree;
448 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500449 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800450 u64 num_dirty;
451 u64 start = 0;
452 unsigned long thresh = 96 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800453
454 if (wbc->for_kupdate)
455 return 0;
456
Chris Masonca664622007-11-27 11:16:35 -0500457 if (current_is_pdflush()) {
458 thresh = 96 * 1024 * 1024;
459 } else {
460 thresh = 8 * 1024 * 1024;
461 }
Chris Mason1832a6d2007-12-21 16:27:21 -0500462 num_dirty = count_range_bits(tree, &start, (u64)-1,
463 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800464 if (num_dirty < thresh) {
465 return 0;
466 }
467 }
Chris Mason0da54682007-11-07 21:08:01 -0500468 return extent_writepages(tree, mapping, btree_get_extent, wbc);
469}
470
Chris Mason5f39d392007-10-15 16:14:19 -0400471int btree_readpage(struct file *file, struct page *page)
472{
Chris Masond1310b22008-01-24 16:13:08 -0500473 struct extent_io_tree *tree;
474 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400475 return extent_read_full_page(tree, page, btree_get_extent);
476}
477
Chris Mason70dec802008-01-29 09:59:12 -0500478static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400479{
Chris Masond1310b22008-01-24 16:13:08 -0500480 struct extent_io_tree *tree;
481 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400482 int ret;
483
Chris Mason3dd39912008-04-11 10:51:07 -0400484 if (page_count(page) > 3) {
485 /* once for page->private, once for the caller, once
486 * once for the page cache
487 */
488 return 0;
489 }
Chris Masond1310b22008-01-24 16:13:08 -0500490 tree = &BTRFS_I(page->mapping->host)->io_tree;
491 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -0500492 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400493 if (ret == 1) {
Chris Mason728131d2008-04-09 16:28:12 -0400494 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -0400495 ClearPagePrivate(page);
496 set_page_private(page, 0);
497 page_cache_release(page);
498 }
Chris Masond98237b2007-03-28 13:57:48 -0400499 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400500}
Chris Mason123abc82007-03-14 14:14:43 -0400501
Chris Mason5f39d392007-10-15 16:14:19 -0400502static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400503{
Chris Masond1310b22008-01-24 16:13:08 -0500504 struct extent_io_tree *tree;
505 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400506 extent_invalidatepage(tree, page, offset);
507 btree_releasepage(page, GFP_NOFS);
Chris Masond98237b2007-03-28 13:57:48 -0400508}
509
Chris Mason5f39d392007-10-15 16:14:19 -0400510#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400511static int btree_writepage(struct page *page, struct writeback_control *wbc)
512{
Chris Mason87cbda52007-03-28 19:44:27 -0400513 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400514 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400515 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400516 if (!page_has_buffers(page)) {
517 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
518 (1 << BH_Dirty)|(1 << BH_Uptodate));
519 }
520 head = page_buffers(page);
521 bh = head;
522 do {
523 if (buffer_dirty(bh))
524 csum_tree_block(root, bh, 0);
525 bh = bh->b_this_page;
526 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400527 return block_write_full_page(page, btree_get_block, wbc);
528}
Chris Mason5f39d392007-10-15 16:14:19 -0400529#endif
Chris Masond98237b2007-03-28 13:57:48 -0400530
531static struct address_space_operations btree_aops = {
532 .readpage = btree_readpage,
533 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500534 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400535 .releasepage = btree_releasepage,
536 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400537 .sync_page = block_sync_page,
538};
539
Chris Masondb945352007-10-15 16:15:53 -0400540int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
Chris Mason090d1872007-05-01 08:53:32 -0400541{
Chris Mason5f39d392007-10-15 16:14:19 -0400542 struct extent_buffer *buf = NULL;
543 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400544 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400545
Chris Masondb945352007-10-15 16:15:53 -0400546 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400547 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400548 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500549 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400550 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400551 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400552 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400553}
554
Chris Mason0b86a832008-03-24 15:01:56 -0400555static int close_all_devices(struct btrfs_fs_info *fs_info)
556{
557 struct list_head *list;
558 struct list_head *next;
559 struct btrfs_device *device;
560
Chris Mason8a4b83c2008-03-24 15:02:07 -0400561 list = &fs_info->fs_devices->devices;
562 list_for_each(next, list) {
Chris Mason0b86a832008-03-24 15:01:56 -0400563 device = list_entry(next, struct btrfs_device, dev_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400564 if (device->bdev && device->bdev != fs_info->sb->s_bdev)
565 close_bdev_excl(device->bdev);
566 device->bdev = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400567 }
568 return 0;
569}
570
Chris Mason0999df52008-04-01 13:48:14 -0400571int btrfs_verify_block_csum(struct btrfs_root *root,
572 struct extent_buffer *buf)
573{
Chris Masonce9adaa2008-04-09 16:28:12 -0400574 return btrfs_buffer_uptodate(buf);
Chris Mason0999df52008-04-01 13:48:14 -0400575}
576
577struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
578 u64 bytenr, u32 blocksize)
579{
580 struct inode *btree_inode = root->fs_info->btree_inode;
581 struct extent_buffer *eb;
582 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
583 bytenr, blocksize, GFP_NOFS);
584 return eb;
585}
586
587struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
588 u64 bytenr, u32 blocksize)
589{
590 struct inode *btree_inode = root->fs_info->btree_inode;
591 struct extent_buffer *eb;
592
593 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
594 bytenr, blocksize, NULL, GFP_NOFS);
595 return eb;
596}
597
598
Chris Masondb945352007-10-15 16:15:53 -0400599struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
600 u32 blocksize)
Chris Masone20d96d2007-03-22 12:13:20 -0400601{
Chris Mason5f39d392007-10-15 16:14:19 -0400602 struct extent_buffer *buf = NULL;
603 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500604 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400605 int ret;
606
Chris Masond1310b22008-01-24 16:13:08 -0500607 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400608
Chris Masondb945352007-10-15 16:15:53 -0400609 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400610 if (!buf)
611 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500612
Chris Masonf1885912008-04-09 16:28:12 -0400613 ret = btree_read_extent_buffer_pages(root, buf, 0);
Chris Masonce9adaa2008-04-09 16:28:12 -0400614
615 if (ret == 0) {
616 buf->flags |= EXTENT_UPTODATE;
617 }
Chris Mason5f39d392007-10-15 16:14:19 -0400618 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400619
Chris Masoneb60cea2007-02-02 09:18:22 -0500620}
621
Chris Masone089f052007-03-16 16:20:31 -0400622int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400623 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500624{
Chris Mason5f39d392007-10-15 16:14:19 -0400625 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500626 if (btrfs_header_generation(buf) ==
627 root->fs_info->running_transaction->transid)
Chris Masond1310b22008-01-24 16:13:08 -0500628 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500629 buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400630 return 0;
631}
632
633int wait_on_tree_block_writeback(struct btrfs_root *root,
634 struct extent_buffer *buf)
635{
636 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500637 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400638 buf);
639 return 0;
640}
641
Chris Masondb945352007-10-15 16:15:53 -0400642static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500643 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400644 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400645 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500646{
Chris Masoncfaa7292007-02-21 17:04:57 -0500647 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400648 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500649 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400650 root->sectorsize = sectorsize;
651 root->nodesize = nodesize;
652 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500653 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400654 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400655 root->track_dirty = 0;
656
Chris Mason9f5fae22007-03-20 14:38:32 -0400657 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400658 root->objectid = objectid;
659 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400660 root->highest_inode = 0;
661 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400662 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500663 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400664
665 INIT_LIST_HEAD(&root->dirty_list);
Chris Mason3768f362007-03-13 16:47:54 -0400666 memset(&root->root_key, 0, sizeof(root->root_key));
667 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400668 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400669 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
670 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400671 root->defrag_running = 0;
672 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400673 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400674 return 0;
675}
676
Chris Masondb945352007-10-15 16:15:53 -0400677static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400678 struct btrfs_fs_info *fs_info,
679 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400680 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400681{
682 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400683 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400684
Chris Masondb945352007-10-15 16:15:53 -0400685 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500686 tree_root->sectorsize, tree_root->stripesize,
687 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400688 ret = btrfs_find_last_root(tree_root, objectid,
689 &root->root_item, &root->root_key);
690 BUG_ON(ret);
691
Chris Masondb945352007-10-15 16:15:53 -0400692 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
693 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
694 blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400695 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500696 return 0;
697}
698
Chris Mason5eda7b52007-06-22 14:16:25 -0400699struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
700 struct btrfs_key *location)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400701{
702 struct btrfs_root *root;
703 struct btrfs_root *tree_root = fs_info->tree_root;
704 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400705 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400706 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400707 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400708 int ret = 0;
709
Chris Mason5eda7b52007-06-22 14:16:25 -0400710 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400711 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400712 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400713 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400714 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400715 location->objectid, root);
716 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400717 kfree(root);
718 return ERR_PTR(ret);
719 }
720 goto insert;
721 }
722
Chris Masondb945352007-10-15 16:15:53 -0400723 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500724 tree_root->sectorsize, tree_root->stripesize,
725 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400726
727 path = btrfs_alloc_path();
728 BUG_ON(!path);
729 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
730 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400731 if (ret > 0)
732 ret = -ENOENT;
733 goto out;
734 }
Chris Mason5f39d392007-10-15 16:14:19 -0400735 l = path->nodes[0];
736 read_extent_buffer(l, &root->root_item,
737 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400738 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400739 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400740 ret = 0;
741out:
742 btrfs_release_path(root, path);
743 btrfs_free_path(path);
744 if (ret) {
745 kfree(root);
746 return ERR_PTR(ret);
747 }
Chris Masondb945352007-10-15 16:15:53 -0400748 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
749 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
750 blocksize);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400751 BUG_ON(!root->node);
752insert:
Chris Mason0f7d52f2007-04-09 10:42:37 -0400753 root->ref_cows = 1;
Chris Mason5eda7b52007-06-22 14:16:25 -0400754 ret = btrfs_find_highest_inode(root, &highest_inode);
755 if (ret == 0) {
756 root->highest_inode = highest_inode;
757 root->last_inode_alloc = highest_inode;
758 }
759 return root;
760}
761
Chris Masondc17ff82008-01-08 15:46:30 -0500762struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
763 u64 root_objectid)
764{
765 struct btrfs_root *root;
766
767 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
768 return fs_info->tree_root;
769 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
770 return fs_info->extent_root;
771
772 root = radix_tree_lookup(&fs_info->fs_roots_radix,
773 (unsigned long)root_objectid);
774 return root;
775}
776
Chris Masonedbd8d42007-12-21 16:27:24 -0500777struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
778 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400779{
780 struct btrfs_root *root;
781 int ret;
782
Chris Masonedbd8d42007-12-21 16:27:24 -0500783 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
784 return fs_info->tree_root;
785 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
786 return fs_info->extent_root;
787
Chris Mason5eda7b52007-06-22 14:16:25 -0400788 root = radix_tree_lookup(&fs_info->fs_roots_radix,
789 (unsigned long)location->objectid);
790 if (root)
791 return root;
792
793 root = btrfs_read_fs_root_no_radix(fs_info, location);
794 if (IS_ERR(root))
795 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400796 ret = radix_tree_insert(&fs_info->fs_roots_radix,
797 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400798 root);
799 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400800 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400801 kfree(root);
802 return ERR_PTR(ret);
803 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500804 ret = btrfs_find_dead_roots(fs_info->tree_root,
805 root->root_key.objectid, root);
806 BUG_ON(ret);
807
808 return root;
809}
810
811struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
812 struct btrfs_key *location,
813 const char *name, int namelen)
814{
815 struct btrfs_root *root;
816 int ret;
817
818 root = btrfs_read_fs_root_no_name(fs_info, location);
819 if (!root)
820 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400821
Chris Mason4313b392008-01-03 09:08:48 -0500822 if (root->in_sysfs)
823 return root;
824
Josef Bacik58176a92007-08-29 15:47:34 -0400825 ret = btrfs_set_root_name(root, name, namelen);
826 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400827 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400828 kfree(root);
829 return ERR_PTR(ret);
830 }
831
832 ret = btrfs_sysfs_add_root(root);
833 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400834 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400835 kfree(root->name);
836 kfree(root);
837 return ERR_PTR(ret);
838 }
Chris Mason4313b392008-01-03 09:08:48 -0500839 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400840 return root;
841}
Chris Mason19c00dd2007-10-15 16:19:22 -0400842#if 0
843static int add_hasher(struct btrfs_fs_info *info, char *type) {
844 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400845
Chris Mason19c00dd2007-10-15 16:19:22 -0400846 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
847 if (!hasher)
848 return -ENOMEM;
849 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
850 if (!hasher->hash_tfm) {
851 kfree(hasher);
852 return -EINVAL;
853 }
854 spin_lock(&info->hash_lock);
855 list_add(&hasher->list, &info->hashers);
856 spin_unlock(&info->hash_lock);
857 return 0;
858}
859#endif
Chris Mason04160082008-03-26 10:28:07 -0400860
861static int btrfs_congested_fn(void *congested_data, int bdi_bits)
862{
863 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
864 int ret = 0;
865 struct list_head *cur;
866 struct btrfs_device *device;
867 struct backing_dev_info *bdi;
868
869 list_for_each(cur, &info->fs_devices->devices) {
870 device = list_entry(cur, struct btrfs_device, dev_list);
871 bdi = blk_get_backing_dev_info(device->bdev);
872 if (bdi && bdi_congested(bdi, bdi_bits)) {
873 ret = 1;
874 break;
875 }
876 }
877 return ret;
878}
879
880void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
881{
882 struct list_head *cur;
883 struct btrfs_device *device;
884 struct btrfs_fs_info *info;
885
886 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
887 list_for_each(cur, &info->fs_devices->devices) {
888 device = list_entry(cur, struct btrfs_device, dev_list);
889 bdi = blk_get_backing_dev_info(device->bdev);
890 if (bdi->unplug_io_fn) {
891 bdi->unplug_io_fn(bdi, page);
892 }
893 }
894}
895
896static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
897{
Chris Masonb248a412008-04-14 09:48:18 -0400898#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -0400899 bdi_init(bdi);
Chris Masonb248a412008-04-14 09:48:18 -0400900#endif
Chris Mason83041ad2008-03-26 12:02:55 -0400901 bdi->ra_pages = default_backing_dev_info.ra_pages * 4;
Chris Mason04160082008-03-26 10:28:07 -0400902 bdi->state = 0;
903 bdi->capabilities = default_backing_dev_info.capabilities;
904 bdi->unplug_io_fn = btrfs_unplug_io_fn;
905 bdi->unplug_io_data = info;
906 bdi->congested_fn = btrfs_congested_fn;
907 bdi->congested_data = info;
908 return 0;
909}
910
Chris Masonce9adaa2008-04-09 16:28:12 -0400911static int bio_ready_for_csum(struct bio *bio)
912{
913 u64 length = 0;
914 u64 buf_len = 0;
915 u64 start = 0;
916 struct page *page;
917 struct extent_io_tree *io_tree = NULL;
918 struct btrfs_fs_info *info = NULL;
919 struct bio_vec *bvec;
920 int i;
921 int ret;
922
923 bio_for_each_segment(bvec, bio, i) {
924 page = bvec->bv_page;
925 if (page->private == EXTENT_PAGE_PRIVATE) {
926 length += bvec->bv_len;
927 continue;
928 }
929 if (!page->private) {
930 length += bvec->bv_len;
931 continue;
932 }
933 length = bvec->bv_len;
934 buf_len = page->private >> 2;
935 start = page_offset(page) + bvec->bv_offset;
936 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
937 info = BTRFS_I(page->mapping->host)->root->fs_info;
938 }
939 /* are we fully contained in this bio? */
940 if (buf_len <= length)
941 return 1;
942
943 ret = extent_range_uptodate(io_tree, start + length,
944 start + buf_len - 1);
945 if (ret == 1)
946 return ret;
947 return ret;
948}
949
950#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
Chris Mason44b8bd72008-04-16 11:14:51 -0400951static void btrfs_end_io_csum(void *p)
Chris Masonce9adaa2008-04-09 16:28:12 -0400952#else
Chris Mason44b8bd72008-04-16 11:14:51 -0400953static void btrfs_end_io_csum(struct work_struct *work)
Chris Masonce9adaa2008-04-09 16:28:12 -0400954#endif
955{
956#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
957 struct btrfs_fs_info *fs_info = p;
958#else
959 struct btrfs_fs_info *fs_info = container_of(work,
960 struct btrfs_fs_info,
961 end_io_work);
962#endif
963 unsigned long flags;
964 struct end_io_wq *end_io_wq;
965 struct bio *bio;
966 struct list_head *next;
967 int error;
968 int was_empty;
969
970 while(1) {
971 spin_lock_irqsave(&fs_info->end_io_work_lock, flags);
972 if (list_empty(&fs_info->end_io_work_list)) {
973 spin_unlock_irqrestore(&fs_info->end_io_work_lock,
974 flags);
975 return;
976 }
977 next = fs_info->end_io_work_list.next;
978 list_del(next);
979 spin_unlock_irqrestore(&fs_info->end_io_work_lock, flags);
980
981 end_io_wq = list_entry(next, struct end_io_wq, list);
982
983 bio = end_io_wq->bio;
Chris Mason22c59942008-04-09 16:28:12 -0400984 if (end_io_wq->metadata && !bio_ready_for_csum(bio)) {
Chris Masonce9adaa2008-04-09 16:28:12 -0400985 spin_lock_irqsave(&fs_info->end_io_work_lock, flags);
986 was_empty = list_empty(&fs_info->end_io_work_list);
987 list_add_tail(&end_io_wq->list,
988 &fs_info->end_io_work_list);
989 spin_unlock_irqrestore(&fs_info->end_io_work_lock,
990 flags);
991 if (was_empty)
992 return;
993 continue;
994 }
995 error = end_io_wq->error;
996 bio->bi_private = end_io_wq->private;
997 bio->bi_end_io = end_io_wq->end_io;
998 kfree(end_io_wq);
Miguel73f61b22008-04-11 15:50:59 -0400999#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
Chris Masonb248a412008-04-14 09:48:18 -04001000 bio_endio(bio, bio->bi_size, error);
Miguel73f61b22008-04-11 15:50:59 -04001001#else
Chris Masonce9adaa2008-04-09 16:28:12 -04001002 bio_endio(bio, error);
Miguel73f61b22008-04-11 15:50:59 -04001003#endif
Chris Masonce9adaa2008-04-09 16:28:12 -04001004 }
1005}
1006
Chris Mason44b8bd72008-04-16 11:14:51 -04001007#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1008static void btrfs_async_submit_work(void *p)
1009#else
1010static void btrfs_async_submit_work(struct work_struct *work)
1011#endif
1012{
1013#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1014 struct btrfs_fs_info *fs_info = p;
1015#else
1016 struct btrfs_fs_info *fs_info = container_of(work,
1017 struct btrfs_fs_info,
1018 async_submit_work);
1019#endif
1020 struct async_submit_bio *async;
1021 struct list_head *next;
1022
1023 while(1) {
1024 spin_lock(&fs_info->async_submit_work_lock);
1025 if (list_empty(&fs_info->async_submit_work_list)) {
1026 spin_unlock(&fs_info->async_submit_work_lock);
1027 return;
1028 }
1029 next = fs_info->async_submit_work_list.next;
1030 list_del(next);
1031 spin_unlock(&fs_info->async_submit_work_lock);
1032
1033 async = list_entry(next, struct async_submit_bio, list);
1034 async->submit_bio_hook(async->inode, async->rw, async->bio,
1035 async->mirror_num);
1036 kfree(async);
1037 }
1038}
1039
Chris Mason8a4b83c2008-03-24 15:02:07 -04001040struct btrfs_root *open_ctree(struct super_block *sb,
1041 struct btrfs_fs_devices *fs_devices)
Chris Masoneb60cea2007-02-02 09:18:22 -05001042{
Chris Masondb945352007-10-15 16:15:53 -04001043 u32 sectorsize;
1044 u32 nodesize;
1045 u32 leafsize;
1046 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001047 u32 stripesize;
Chris Masone20d96d2007-03-22 12:13:20 -04001048 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
1049 GFP_NOFS);
1050 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
1051 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001052 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001053 GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04001054 struct btrfs_root *chunk_root = kmalloc(sizeof(struct btrfs_root),
1055 GFP_NOFS);
1056 struct btrfs_root *dev_root = kmalloc(sizeof(struct btrfs_root),
1057 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -05001058 int ret;
Yane58ca022008-04-01 11:21:34 -04001059 int err = -EINVAL;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001060 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001061
Chris Mason39279cc2007-06-12 06:35:45 -04001062 if (!extent_root || !tree_root || !fs_info) {
1063 err = -ENOMEM;
1064 goto fail;
1065 }
Chris Masonce9adaa2008-04-09 16:28:12 -04001066 end_io_workqueue = create_workqueue("btrfs-end-io");
1067 BUG_ON(!end_io_workqueue);
Chris Mason44b8bd72008-04-16 11:14:51 -04001068 async_submit_workqueue = create_workqueue("btrfs-async-submit");
Chris Masonce9adaa2008-04-09 16:28:12 -04001069
Chris Mason0f7d52f2007-04-09 10:42:37 -04001070 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001071 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001072 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001073 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonce9adaa2008-04-09 16:28:12 -04001074 INIT_LIST_HEAD(&fs_info->end_io_work_list);
Chris Mason44b8bd72008-04-16 11:14:51 -04001075 INIT_LIST_HEAD(&fs_info->async_submit_work_list);
Chris Mason19c00dd2007-10-15 16:19:22 -04001076 spin_lock_init(&fs_info->hash_lock);
Chris Masonce9adaa2008-04-09 16:28:12 -04001077 spin_lock_init(&fs_info->end_io_work_lock);
Chris Mason44b8bd72008-04-16 11:14:51 -04001078 spin_lock_init(&fs_info->async_submit_work_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001079 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001080 spin_lock_init(&fs_info->new_trans_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001081
Josef Bacik58176a92007-08-29 15:47:34 -04001082 init_completion(&fs_info->kobj_unregister);
Chris Masonf2984462008-04-10 16:19:33 -04001083 sb_set_blocksize(sb, BTRFS_SUPER_INFO_SIZE);
Chris Mason9f5fae22007-03-20 14:38:32 -04001084 fs_info->tree_root = tree_root;
1085 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001086 fs_info->chunk_root = chunk_root;
1087 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001088 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001089 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001090 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001091 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masone20d96d2007-03-22 12:13:20 -04001092 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001093 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001094 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001095 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001096 fs_info->btree_inode = new_inode(sb);
1097 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001098 fs_info->btree_inode->i_nlink = 1;
Chris Masond98237b2007-03-28 13:57:48 -04001099 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
1100 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001101 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1102
Chris Masond1310b22008-01-24 16:13:08 -05001103 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001104 fs_info->btree_inode->i_mapping,
1105 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001106 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1107 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001108
Chris Masond1310b22008-01-24 16:13:08 -05001109 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1110
1111 extent_io_tree_init(&fs_info->free_space_cache,
Chris Masonf510cfe2007-10-15 16:14:48 -04001112 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001113 extent_io_tree_init(&fs_info->block_group_cache,
Chris Mason96b51792007-10-15 16:15:19 -04001114 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001115 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc1672007-10-15 16:15:26 -04001116 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001117 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc1672007-10-15 16:15:26 -04001118 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001119 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc1672007-10-15 16:15:26 -04001120 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001121 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001122
Chris Mason6da6aba2007-12-18 16:15:09 -05001123#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
Chris Masonb248a412008-04-14 09:48:18 -04001124 INIT_WORK(&fs_info->end_io_work, btrfs_end_io_csum, fs_info);
Chris Mason44b8bd72008-04-16 11:14:51 -04001125 INIT_WORK(&fs_info->async_submit_work, btrfs_async_submit_work,
1126 fs_info);
Chris Mason6da6aba2007-12-18 16:15:09 -05001127 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
1128#else
Chris Masonb248a412008-04-14 09:48:18 -04001129 INIT_WORK(&fs_info->end_io_work, btrfs_end_io_csum);
Chris Mason44b8bd72008-04-16 11:14:51 -04001130 INIT_WORK(&fs_info->async_submit_work, btrfs_async_submit_work);
Chris Mason08607c12007-06-08 15:33:54 -04001131 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
Chris Mason6da6aba2007-12-18 16:15:09 -05001132#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -04001133 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1134 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1135 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001136 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -04001137 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001138
Chris Mason79154b12007-03-22 15:59:16 -04001139 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -04001140 mutex_init(&fs_info->fs_mutex);
Chris Mason3768f362007-03-13 16:47:54 -04001141
Chris Mason19c00dd2007-10-15 16:19:22 -04001142#if 0
1143 ret = add_hasher(fs_info, "crc32c");
1144 if (ret) {
1145 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
1146 err = -ENOMEM;
1147 goto fail_iput;
1148 }
1149#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001150 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001151 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001152
Chris Mason2c90e5d2007-04-02 10:50:19 -04001153 fs_info->sb_buffer = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001154 BTRFS_SUPER_INFO_OFFSET,
Chris Mason0b86a832008-03-24 15:01:56 -04001155 4096);
Chris Masond98237b2007-03-28 13:57:48 -04001156
Chris Mason0f7d52f2007-04-09 10:42:37 -04001157 if (!fs_info->sb_buffer)
Chris Mason39279cc2007-06-12 06:35:45 -04001158 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001159
Chris Mason5f39d392007-10-15 16:14:19 -04001160 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
1161 sizeof(fs_info->super_copy));
1162
1163 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
1164 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
1165 BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001166
Chris Mason5f39d392007-10-15 16:14:19 -04001167 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001168 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -04001169 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001170
Chris Mason8a4b83c2008-03-24 15:02:07 -04001171 if (btrfs_super_num_devices(disk_super) != fs_devices->num_devices) {
1172 printk("Btrfs: wanted %llu devices, but found %llu\n",
1173 (unsigned long long)btrfs_super_num_devices(disk_super),
1174 (unsigned long long)fs_devices->num_devices);
1175 goto fail_sb_buffer;
1176 }
Chris Masondb945352007-10-15 16:15:53 -04001177 nodesize = btrfs_super_nodesize(disk_super);
1178 leafsize = btrfs_super_leafsize(disk_super);
1179 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001180 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001181 tree_root->nodesize = nodesize;
1182 tree_root->leafsize = leafsize;
1183 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001184 tree_root->stripesize = stripesize;
Chris Masonff79f812007-10-15 16:22:25 -04001185 sb_set_blocksize(sb, sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001186
Chris Mason8352d8a2007-04-12 10:43:05 -04001187 i_size_write(fs_info->btree_inode,
Chris Masondb945352007-10-15 16:15:53 -04001188 btrfs_super_total_bytes(disk_super));
Chris Mason8352d8a2007-04-12 10:43:05 -04001189
Chris Mason39279cc2007-06-12 06:35:45 -04001190 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1191 sizeof(disk_super->magic))) {
1192 printk("btrfs: valid FS not found on %s\n", sb->s_id);
1193 goto fail_sb_buffer;
1194 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001195
Chris Mason0b86a832008-03-24 15:01:56 -04001196 mutex_lock(&fs_info->fs_mutex);
Chris Mason0d81ba52008-03-24 15:02:07 -04001197
Chris Mason0b86a832008-03-24 15:01:56 -04001198 ret = btrfs_read_sys_array(tree_root);
1199 BUG_ON(ret);
1200
1201 blocksize = btrfs_level_size(tree_root,
1202 btrfs_super_chunk_root_level(disk_super));
1203
1204 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1205 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1206
1207 chunk_root->node = read_tree_block(chunk_root,
1208 btrfs_super_chunk_root(disk_super),
1209 blocksize);
1210 BUG_ON(!chunk_root->node);
1211
Chris Masone17cade2008-04-15 15:41:47 -04001212 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
1213 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1214 BTRFS_UUID_SIZE);
1215
Chris Mason0b86a832008-03-24 15:01:56 -04001216 ret = btrfs_read_chunk_tree(chunk_root);
1217 BUG_ON(ret);
1218
Chris Masondb945352007-10-15 16:15:53 -04001219 blocksize = btrfs_level_size(tree_root,
1220 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -04001221
Chris Mason0b86a832008-03-24 15:01:56 -04001222
Chris Masone20d96d2007-03-22 12:13:20 -04001223 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001224 btrfs_super_root(disk_super),
1225 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04001226 if (!tree_root->node)
1227 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -04001228
Chris Masondb945352007-10-15 16:15:53 -04001229
1230 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001231 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001232 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001233 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001234 extent_root->track_dirty = 1;
1235
1236 ret = find_and_setup_root(tree_root, fs_info,
1237 BTRFS_DEV_TREE_OBJECTID, dev_root);
1238 dev_root->track_dirty = 1;
1239
1240 if (ret)
1241 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001242
Chris Mason9078a3e2007-04-26 16:46:15 -04001243 btrfs_read_block_groups(extent_root);
1244
Chris Mason0f7d52f2007-04-09 10:42:37 -04001245 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Masond18a2c42008-04-04 15:40:00 -04001246 fs_info->data_alloc_profile = (u64)-1;
1247 fs_info->metadata_alloc_profile = (u64)-1;
1248 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
1249
Chris Mason5be6f7f2007-04-05 13:35:25 -04001250 mutex_unlock(&fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001251 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001252
Chris Mason0b86a832008-03-24 15:01:56 -04001253fail_extent_root:
1254 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001255fail_tree_root:
Chris Mason0b86a832008-03-24 15:01:56 -04001256 mutex_unlock(&fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001257 free_extent_buffer(tree_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001258fail_sb_buffer:
Chris Mason5f39d392007-10-15 16:14:19 -04001259 free_extent_buffer(fs_info->sb_buffer);
Chris Mason2d2ae542008-03-26 16:24:23 -04001260 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04001261fail_iput:
1262 iput(fs_info->btree_inode);
1263fail:
Chris Mason8a4b83c2008-03-24 15:02:07 -04001264 close_all_devices(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04001265 kfree(extent_root);
1266 kfree(tree_root);
Chris Masonb248a412008-04-14 09:48:18 -04001267#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
Chris Mason2d2ae542008-03-26 16:24:23 -04001268 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001269#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001270 kfree(fs_info);
1271 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001272}
1273
Chris Masonf2984462008-04-10 16:19:33 -04001274static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1275{
1276 char b[BDEVNAME_SIZE];
1277
1278 if (uptodate) {
1279 set_buffer_uptodate(bh);
1280 } else {
1281 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1282 printk(KERN_WARNING "lost page write due to "
1283 "I/O error on %s\n",
1284 bdevname(bh->b_bdev, b));
1285 }
1286 set_buffer_write_io_error(bh);
1287 clear_buffer_uptodate(bh);
1288 }
1289 unlock_buffer(bh);
1290 put_bh(bh);
1291}
1292
1293int write_all_supers(struct btrfs_root *root)
1294{
1295 struct list_head *cur;
1296 struct list_head *head = &root->fs_info->fs_devices->devices;
1297 struct btrfs_device *dev;
1298 struct extent_buffer *sb;
1299 struct btrfs_dev_item *dev_item;
1300 struct buffer_head *bh;
1301 int ret;
1302 int do_barriers;
1303
1304 do_barriers = !btrfs_test_opt(root, NOBARRIER);
1305
1306 sb = root->fs_info->sb_buffer;
1307 dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
1308 dev_item);
1309 list_for_each(cur, head) {
1310 dev = list_entry(cur, struct btrfs_device, dev_list);
1311 btrfs_set_device_type(sb, dev_item, dev->type);
1312 btrfs_set_device_id(sb, dev_item, dev->devid);
1313 btrfs_set_device_total_bytes(sb, dev_item, dev->total_bytes);
1314 btrfs_set_device_bytes_used(sb, dev_item, dev->bytes_used);
1315 btrfs_set_device_io_align(sb, dev_item, dev->io_align);
1316 btrfs_set_device_io_width(sb, dev_item, dev->io_width);
1317 btrfs_set_device_sector_size(sb, dev_item, dev->sector_size);
1318 write_extent_buffer(sb, dev->uuid,
1319 (unsigned long)btrfs_device_uuid(dev_item),
Chris Masone17cade2008-04-15 15:41:47 -04001320 BTRFS_UUID_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -04001321
1322 btrfs_set_header_flag(sb, BTRFS_HEADER_FLAG_WRITTEN);
1323 csum_tree_block(root, sb, 0);
1324
1325 bh = __getblk(dev->bdev, BTRFS_SUPER_INFO_OFFSET /
1326 root->fs_info->sb->s_blocksize,
1327 BTRFS_SUPER_INFO_SIZE);
1328
1329 read_extent_buffer(sb, bh->b_data, 0, BTRFS_SUPER_INFO_SIZE);
1330 dev->pending_io = bh;
1331
1332 get_bh(bh);
1333 set_buffer_uptodate(bh);
1334 lock_buffer(bh);
1335 bh->b_end_io = btrfs_end_buffer_write_sync;
1336
1337 if (do_barriers && dev->barriers) {
1338 ret = submit_bh(WRITE_BARRIER, bh);
1339 if (ret == -EOPNOTSUPP) {
1340 printk("btrfs: disabling barriers on dev %s\n",
1341 dev->name);
1342 set_buffer_uptodate(bh);
1343 dev->barriers = 0;
1344 get_bh(bh);
1345 lock_buffer(bh);
1346 ret = submit_bh(WRITE, bh);
1347 }
1348 } else {
1349 ret = submit_bh(WRITE, bh);
1350 }
1351 BUG_ON(ret);
1352 }
1353
1354 list_for_each(cur, head) {
1355 dev = list_entry(cur, struct btrfs_device, dev_list);
1356 BUG_ON(!dev->pending_io);
1357 bh = dev->pending_io;
1358 wait_on_buffer(bh);
1359 if (!buffer_uptodate(dev->pending_io)) {
1360 if (do_barriers && dev->barriers) {
1361 printk("btrfs: disabling barriers on dev %s\n",
1362 dev->name);
1363 set_buffer_uptodate(bh);
1364 get_bh(bh);
1365 lock_buffer(bh);
1366 dev->barriers = 0;
1367 ret = submit_bh(WRITE, bh);
1368 BUG_ON(ret);
1369 wait_on_buffer(bh);
1370 BUG_ON(!buffer_uptodate(bh));
1371 } else {
1372 BUG();
1373 }
1374
1375 }
1376 dev->pending_io = NULL;
1377 brelse(bh);
1378 }
1379 return 0;
1380}
1381
Chris Masone089f052007-03-16 16:20:31 -04001382int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -04001383 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -05001384{
Chris Masone66f7092007-04-20 13:16:02 -04001385 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001386
Chris Masonf2984462008-04-10 16:19:33 -04001387 ret = write_all_supers(root);
1388#if 0
Chris Mason21ad10c2008-01-09 09:23:21 -05001389 if (!btrfs_test_opt(root, NOBARRIER))
1390 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Masond1310b22008-01-24 16:13:08 -05001391 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
Chris Mason5f39d392007-10-15 16:14:19 -04001392 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
1393 super->start, super->len);
Chris Mason21ad10c2008-01-09 09:23:21 -05001394 if (!btrfs_test_opt(root, NOBARRIER))
1395 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Masonf2984462008-04-10 16:19:33 -04001396#endif
Chris Mason5f39d392007-10-15 16:14:19 -04001397 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05001398}
1399
Chris Mason5eda7b52007-06-22 14:16:25 -04001400int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04001401{
1402 radix_tree_delete(&fs_info->fs_roots_radix,
1403 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -05001404 if (root->in_sysfs)
1405 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -04001406 if (root->inode)
1407 iput(root->inode);
1408 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001409 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04001410 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04001411 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -04001412 if (root->name)
1413 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04001414 kfree(root);
1415 return 0;
1416}
1417
Chris Mason35b7e472007-05-02 15:53:43 -04001418static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001419{
1420 int ret;
1421 struct btrfs_root *gang[8];
1422 int i;
1423
1424 while(1) {
1425 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
1426 (void **)gang, 0,
1427 ARRAY_SIZE(gang));
1428 if (!ret)
1429 break;
Chris Mason2619ba12007-04-10 16:58:11 -04001430 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04001431 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001432 }
1433 return 0;
1434}
Chris Masonb4100d62007-04-12 12:14:00 -04001435
Chris Masone20d96d2007-03-22 12:13:20 -04001436int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05001437{
Chris Mason3768f362007-03-13 16:47:54 -04001438 int ret;
Chris Masone089f052007-03-16 16:20:31 -04001439 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001440 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -04001441
Chris Masonfacda1e2007-06-08 18:11:48 -04001442 fs_info->closing = 1;
Chris Mason08607c12007-06-08 15:33:54 -04001443 btrfs_transaction_flush_work(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001444 mutex_lock(&fs_info->fs_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -04001445 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason79154b12007-03-22 15:59:16 -04001446 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001447 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001448 /* run commit again to drop the original snapshot */
1449 trans = btrfs_start_transaction(root, 1);
1450 btrfs_commit_transaction(trans, root);
1451 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001452 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -04001453 write_ctree_super(NULL, root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001454 mutex_unlock(&fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001455
Chris Masonb0c68f82008-01-31 11:05:37 -05001456 if (fs_info->delalloc_bytes) {
1457 printk("btrfs: at unmount delalloc count %Lu\n",
1458 fs_info->delalloc_bytes);
1459 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001460 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001461 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001462
Chris Mason0f7d52f2007-04-09 10:42:37 -04001463 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001464 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001465
Chris Mason0b86a832008-03-24 15:01:56 -04001466 if (root->fs_info->chunk_root->node);
1467 free_extent_buffer(root->fs_info->chunk_root->node);
1468
1469 if (root->fs_info->dev_root->node);
1470 free_extent_buffer(root->fs_info->dev_root->node);
1471
Chris Mason5f39d392007-10-15 16:14:19 -04001472 free_extent_buffer(fs_info->sb_buffer);
Chris Mason7eccb902007-04-11 15:53:25 -04001473
Chris Mason9078a3e2007-04-26 16:46:15 -04001474 btrfs_free_block_groups(root->fs_info);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001475 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001476
1477 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1478
Chris Masond1310b22008-01-24 16:13:08 -05001479 extent_io_tree_empty_lru(&fs_info->free_space_cache);
1480 extent_io_tree_empty_lru(&fs_info->block_group_cache);
1481 extent_io_tree_empty_lru(&fs_info->pinned_extents);
1482 extent_io_tree_empty_lru(&fs_info->pending_del);
1483 extent_io_tree_empty_lru(&fs_info->extent_ins);
1484 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Masond10c5f32007-12-17 20:14:04 -05001485
Chris Masondb945352007-10-15 16:15:53 -04001486 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Masonce9adaa2008-04-09 16:28:12 -04001487 flush_workqueue(end_io_workqueue);
1488 destroy_workqueue(end_io_workqueue);
Chris Masond10c5f32007-12-17 20:14:04 -05001489
Chris Mason44b8bd72008-04-16 11:14:51 -04001490 flush_workqueue(async_submit_workqueue);
1491 destroy_workqueue(async_submit_workqueue);
1492
Chris Masondb945352007-10-15 16:15:53 -04001493 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001494#if 0
1495 while(!list_empty(&fs_info->hashers)) {
1496 struct btrfs_hasher *hasher;
1497 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1498 hashers);
1499 list_del(&hasher->hashers);
1500 crypto_free_hash(&fs_info->hash_tfm);
1501 kfree(hasher);
1502 }
1503#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001504 close_all_devices(fs_info);
1505 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04001506
1507#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -04001508 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001509#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001510
Chris Mason0f7d52f2007-04-09 10:42:37 -04001511 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001512 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001513 kfree(fs_info->chunk_root);
1514 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001515 return 0;
1516}
1517
Chris Mason5f39d392007-10-15 16:14:19 -04001518int btrfs_buffer_uptodate(struct extent_buffer *buf)
Chris Masonccd467d2007-06-28 15:57:36 -04001519{
Chris Mason810191f2007-10-15 16:18:55 -04001520 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001521 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001522}
Chris Mason6702ed42007-08-07 16:15:09 -04001523
Chris Mason5f39d392007-10-15 16:14:19 -04001524int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1525{
Chris Mason810191f2007-10-15 16:18:55 -04001526 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001527 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001528 buf);
1529}
1530
1531void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1532{
Chris Mason810191f2007-10-15 16:18:55 -04001533 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001534 u64 transid = btrfs_header_generation(buf);
1535 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001536
Chris Masonccd467d2007-06-28 15:57:36 -04001537 if (transid != root->fs_info->generation) {
1538 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001539 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001540 transid, root->fs_info->generation);
1541 WARN_ON(1);
1542 }
Chris Masond1310b22008-01-24 16:13:08 -05001543 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001544}
1545
Chris Masone2008b62008-01-08 15:46:30 -05001546void btrfs_throttle(struct btrfs_root *root)
1547{
Chris Mason55c69072008-01-09 15:55:33 -05001548 struct backing_dev_info *bdi;
1549
1550 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
Chris Mason04005cc2008-01-17 12:01:41 -05001551 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
1552#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
Chris Mason55c69072008-01-09 15:55:33 -05001553 congestion_wait(WRITE, HZ/20);
Chris Mason04005cc2008-01-17 12:01:41 -05001554#else
1555 blk_congestion_wait(WRITE, HZ/20);
1556#endif
1557 }
Chris Masone2008b62008-01-08 15:46:30 -05001558}
1559
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001560void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001561{
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001562 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05001563 root->fs_info->btree_inode->i_mapping, 1);
Chris Mason35b7e472007-05-02 15:53:43 -04001564}
Chris Mason6b800532007-10-15 16:17:34 -04001565
1566void btrfs_set_buffer_defrag(struct extent_buffer *buf)
1567{
Chris Mason810191f2007-10-15 16:18:55 -04001568 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001569 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001570 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001571 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
1572}
1573
1574void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
1575{
Chris Mason810191f2007-10-15 16:18:55 -04001576 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001577 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001578 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001579 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
1580 GFP_NOFS);
1581}
1582
1583int btrfs_buffer_defrag(struct extent_buffer *buf)
1584{
Chris Mason810191f2007-10-15 16:18:55 -04001585 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001586 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001587 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001588 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
1589}
1590
1591int btrfs_buffer_defrag_done(struct extent_buffer *buf)
1592{
Chris Mason810191f2007-10-15 16:18:55 -04001593 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001594 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001595 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001596 buf->start, buf->start + buf->len - 1,
1597 EXTENT_DEFRAG_DONE, 0);
1598}
1599
1600int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
1601{
Chris Mason810191f2007-10-15 16:18:55 -04001602 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001603 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001604 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001605 buf->start, buf->start + buf->len - 1,
1606 EXTENT_DEFRAG_DONE, GFP_NOFS);
1607}
1608
1609int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1610{
Chris Mason810191f2007-10-15 16:18:55 -04001611 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001612 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001613 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001614 buf->start, buf->start + buf->len - 1,
1615 EXTENT_DEFRAG, GFP_NOFS);
1616}
1617
1618int btrfs_read_buffer(struct extent_buffer *buf)
1619{
Chris Mason810191f2007-10-15 16:18:55 -04001620 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04001621 int ret;
Chris Masonf1885912008-04-09 16:28:12 -04001622 ret = btree_read_extent_buffer_pages(root, buf, 0);
Chris Masonce9adaa2008-04-09 16:28:12 -04001623 if (ret == 0) {
1624 buf->flags |= EXTENT_UPTODATE;
1625 }
1626 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04001627}
Chris Mason0da54682007-11-07 21:08:01 -05001628
Chris Masond1310b22008-01-24 16:13:08 -05001629static struct extent_io_ops btree_extent_io_ops = {
Chris Mason0da54682007-11-07 21:08:01 -05001630 .writepage_io_hook = btree_writepage_io_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04001631 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04001632 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04001633 /* note we're sharing with inode.c for the merge bio hook */
1634 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05001635};