Btrfs: Add support for device scanning and detection ioctls
[linux-2.6-block.git] / fs / btrfs / disk-io.c
CommitLineData
6cbd5570
CM
1/*
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
e20d96d6 19#include <linux/fs.h>
d98237b3 20#include <linux/blkdev.h>
11bd143f 21#include <linux/crc32c.h>
87cbda5c 22#include <linux/scatterlist.h>
22b0ebda 23#include <linux/swap.h>
0f7d52f4 24#include <linux/radix-tree.h>
35b7e476 25#include <linux/writeback.h>
5f39d397 26#include <linux/buffer_head.h> // for block_sync_page
eb60ceac
CM
27#include "ctree.h"
28#include "disk-io.h"
e089f05c 29#include "transaction.h"
0f7d52f4 30#include "btrfs_inode.h"
0b86a832 31#include "volumes.h"
db94535d 32#include "print-tree.h"
eb60ceac 33
5f39d397
CM
34#if 0
35static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
7eccb903 36{
5f39d397
CM
37 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
38 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
39 (unsigned long long)extent_buffer_blocknr(buf),
40 (unsigned long long)btrfs_header_blocknr(buf));
39279cc3 41 return 1;
d98237b3 42 }
9a8dd150 43 return 0;
eb60ceac 44}
5f39d397 45#endif
eb60ceac 46
d1310b2e 47static struct extent_io_ops btree_extent_io_ops;
0da5468f 48
5f39d397 49struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
db94535d 50 u64 bytenr, u32 blocksize)
d98237b3 51{
5f39d397 52 struct inode *btree_inode = root->fs_info->btree_inode;
f510cfec 53 struct extent_buffer *eb;
d1310b2e 54 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
db94535d 55 bytenr, blocksize, GFP_NOFS);
f510cfec 56 return eb;
5f39d397 57}
d98237b3 58
5f39d397 59struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
db94535d 60 u64 bytenr, u32 blocksize)
5f39d397
CM
61{
62 struct inode *btree_inode = root->fs_info->btree_inode;
f510cfec 63 struct extent_buffer *eb;
db94535d 64
d1310b2e 65 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
19c00ddc 66 bytenr, blocksize, NULL, GFP_NOFS);
f510cfec 67 return eb;
d98237b3
CM
68}
69
5f39d397 70struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
d1310b2e 71 size_t page_offset, u64 start, u64 len,
5f39d397 72 int create)
7eccb903 73{
5f39d397
CM
74 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
75 struct extent_map *em;
76 int ret;
77
78again:
d1310b2e
CM
79 spin_lock(&em_tree->lock);
80 em = lookup_extent_mapping(em_tree, start, len);
81 spin_unlock(&em_tree->lock);
5f39d397
CM
82 if (em) {
83 goto out;
7eccb903 84 }
5f39d397
CM
85 em = alloc_extent_map(GFP_NOFS);
86 if (!em) {
87 em = ERR_PTR(-ENOMEM);
88 goto out;
89 }
90 em->start = 0;
d1310b2e 91 em->len = i_size_read(inode);
5f39d397 92 em->block_start = 0;
5f39d397 93 em->bdev = inode->i_sb->s_bdev;
d1310b2e
CM
94
95 spin_lock(&em_tree->lock);
5f39d397 96 ret = add_extent_mapping(em_tree, em);
d1310b2e
CM
97 spin_unlock(&em_tree->lock);
98
5f39d397
CM
99 if (ret == -EEXIST) {
100 free_extent_map(em);
101 em = NULL;
102 goto again;
103 } else if (ret) {
104 em = ERR_PTR(ret);
105 }
106out:
107 return em;
7eccb903
CM
108}
109
19c00ddc
CM
110u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
111{
112 return crc32c(seed, data, len);
113}
114
115void btrfs_csum_final(u32 crc, char *result)
116{
117 *(__le32 *)result = ~cpu_to_le32(crc);
118}
119
120static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
121 int verify)
122{
123 char result[BTRFS_CRC32_SIZE];
124 unsigned long len;
125 unsigned long cur_len;
126 unsigned long offset = BTRFS_CSUM_SIZE;
127 char *map_token = NULL;
128 char *kaddr;
129 unsigned long map_start;
130 unsigned long map_len;
131 int err;
132 u32 crc = ~(u32)0;
133
134 len = buf->len - offset;
135 while(len > 0) {
136 err = map_private_extent_buffer(buf, offset, 32,
137 &map_token, &kaddr,
138 &map_start, &map_len, KM_USER0);
139 if (err) {
140 printk("failed to map extent buffer! %lu\n",
141 offset);
142 return 1;
143 }
144 cur_len = min(len, map_len - (offset - map_start));
145 crc = btrfs_csum_data(root, kaddr + offset - map_start,
146 crc, cur_len);
147 len -= cur_len;
148 offset += cur_len;
149 unmap_extent_buffer(buf, map_token, KM_USER0);
150 }
151 btrfs_csum_final(crc, result);
152
153 if (verify) {
e4204ded
CM
154 int from_this_trans = 0;
155
156 if (root->fs_info->running_transaction &&
157 btrfs_header_generation(buf) ==
158 root->fs_info->running_transaction->transid)
159 from_this_trans = 1;
160
161 /* FIXME, this is not good */
162 if (from_this_trans == 0 &&
163 memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
164 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 "
170 "wanted %X found %X from_this_trans %d\n",
19c00ddc 171 root->fs_info->sb->s_id,
e4204ded 172 buf->start, val, found, from_this_trans);
19c00ddc
CM
173 return 1;
174 }
175 } else {
176 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
177 }
178 return 0;
179}
180
181
182int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
183{
d1310b2e 184 struct extent_io_tree *tree;
35ebb934 185 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
19c00ddc
CM
186 u64 found_start;
187 int found_level;
188 unsigned long len;
189 struct extent_buffer *eb;
d1310b2e 190 tree = &BTRFS_I(page->mapping->host)->io_tree;
19c00ddc
CM
191
192 if (page->private == EXTENT_PAGE_PRIVATE)
193 goto out;
194 if (!page->private)
195 goto out;
196 len = page->private >> 2;
197 if (len == 0) {
198 WARN_ON(1);
199 }
200 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
a86c12c7
CM
201 read_extent_buffer_pages(tree, eb, start + PAGE_CACHE_SIZE, 1,
202 btree_get_extent);
e18e4809 203 btrfs_clear_buffer_defrag(eb);
19c00ddc
CM
204 found_start = btrfs_header_bytenr(eb);
205 if (found_start != start) {
206 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
207 start, found_start, len);
55c69072
CM
208 WARN_ON(1);
209 goto err;
210 }
211 if (eb->first_page != page) {
212 printk("bad first page %lu %lu\n", eb->first_page->index,
213 page->index);
214 WARN_ON(1);
215 goto err;
216 }
217 if (!PageUptodate(page)) {
218 printk("csum not up to date page %lu\n", page->index);
219 WARN_ON(1);
220 goto err;
19c00ddc
CM
221 }
222 found_level = btrfs_header_level(eb);
223 csum_tree_block(root, eb, 0);
55c69072 224err:
19c00ddc
CM
225 free_extent_buffer(eb);
226out:
227 return 0;
228}
229
0da5468f 230static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
d98237b3 231{
19c00ddc 232 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
19c00ddc
CM
233
234 csum_dirty_buffer(root, page);
0da5468f
CM
235 return 0;
236}
237
0b86a832
CM
238static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio)
239{
240 struct btrfs_root *root = BTRFS_I(inode)->root;
241 u64 offset;
242 offset = bio->bi_sector << 9;
243 if (offset == BTRFS_SUPER_INFO_OFFSET) {
244 bio->bi_bdev = root->fs_info->sb->s_bdev;
245 submit_bio(rw, bio);
246 return 0;
247 }
248 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio);
249}
250
0da5468f
CM
251static int btree_writepage(struct page *page, struct writeback_control *wbc)
252{
d1310b2e
CM
253 struct extent_io_tree *tree;
254 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
255 return extent_write_full_page(tree, page, btree_get_extent, wbc);
256}
0da5468f
CM
257
258static int btree_writepages(struct address_space *mapping,
259 struct writeback_control *wbc)
260{
d1310b2e
CM
261 struct extent_io_tree *tree;
262 tree = &BTRFS_I(mapping->host)->io_tree;
d8d5f3e1 263 if (wbc->sync_mode == WB_SYNC_NONE) {
793955bc
CM
264 u64 num_dirty;
265 u64 start = 0;
266 unsigned long thresh = 96 * 1024 * 1024;
448d640b
CM
267
268 if (wbc->for_kupdate)
269 return 0;
270
ca664626
CM
271 if (current_is_pdflush()) {
272 thresh = 96 * 1024 * 1024;
273 } else {
274 thresh = 8 * 1024 * 1024;
275 }
1832a6d5
CM
276 num_dirty = count_range_bits(tree, &start, (u64)-1,
277 thresh, EXTENT_DIRTY);
793955bc
CM
278 if (num_dirty < thresh) {
279 return 0;
280 }
281 }
0da5468f
CM
282 return extent_writepages(tree, mapping, btree_get_extent, wbc);
283}
284
5f39d397
CM
285int btree_readpage(struct file *file, struct page *page)
286{
d1310b2e
CM
287 struct extent_io_tree *tree;
288 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
289 return extent_read_full_page(tree, page, btree_get_extent);
290}
22b0ebda 291
70dec807 292static int btree_releasepage(struct page *page, gfp_t gfp_flags)
5f39d397 293{
d1310b2e
CM
294 struct extent_io_tree *tree;
295 struct extent_map_tree *map;
5f39d397 296 int ret;
d98237b3 297
d1310b2e
CM
298 tree = &BTRFS_I(page->mapping->host)->io_tree;
299 map = &BTRFS_I(page->mapping->host)->extent_tree;
70dec807 300 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
5f39d397
CM
301 if (ret == 1) {
302 ClearPagePrivate(page);
303 set_page_private(page, 0);
304 page_cache_release(page);
305 }
d98237b3
CM
306 return ret;
307}
308
5f39d397 309static void btree_invalidatepage(struct page *page, unsigned long offset)
d98237b3 310{
d1310b2e
CM
311 struct extent_io_tree *tree;
312 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
313 extent_invalidatepage(tree, page, offset);
314 btree_releasepage(page, GFP_NOFS);
d98237b3
CM
315}
316
5f39d397 317#if 0
d98237b3 318static int btree_writepage(struct page *page, struct writeback_control *wbc)
ed2ff2cb 319{
87cbda5c 320 struct buffer_head *bh;
0f7d52f4 321 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
87cbda5c 322 struct buffer_head *head;
87cbda5c
CM
323 if (!page_has_buffers(page)) {
324 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
325 (1 << BH_Dirty)|(1 << BH_Uptodate));
326 }
327 head = page_buffers(page);
328 bh = head;
329 do {
330 if (buffer_dirty(bh))
331 csum_tree_block(root, bh, 0);
332 bh = bh->b_this_page;
333 } while (bh != head);
d98237b3 334 return block_write_full_page(page, btree_get_block, wbc);
ed2ff2cb 335}
5f39d397 336#endif
eb60ceac 337
d98237b3
CM
338static struct address_space_operations btree_aops = {
339 .readpage = btree_readpage,
340 .writepage = btree_writepage,
0da5468f 341 .writepages = btree_writepages,
5f39d397
CM
342 .releasepage = btree_releasepage,
343 .invalidatepage = btree_invalidatepage,
d98237b3
CM
344 .sync_page = block_sync_page,
345};
346
db94535d 347int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
090d1875 348{
5f39d397
CM
349 struct extent_buffer *buf = NULL;
350 struct inode *btree_inode = root->fs_info->btree_inode;
de428b63 351 int ret = 0;
090d1875 352
db94535d 353 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5f39d397 354 if (!buf)
090d1875 355 return 0;
d1310b2e 356 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
a86c12c7 357 buf, 0, 0, btree_get_extent);
5f39d397 358 free_extent_buffer(buf);
de428b63 359 return ret;
090d1875
CM
360}
361
0b86a832
CM
362static int close_all_devices(struct btrfs_fs_info *fs_info)
363{
364 struct list_head *list;
365 struct list_head *next;
366 struct btrfs_device *device;
367
8a4b83cc
CM
368 list = &fs_info->fs_devices->devices;
369 list_for_each(next, list) {
0b86a832 370 device = list_entry(next, struct btrfs_device, dev_list);
8a4b83cc
CM
371 if (device->bdev && device->bdev != fs_info->sb->s_bdev)
372 close_bdev_excl(device->bdev);
373 device->bdev = NULL;
0b86a832
CM
374 }
375 return 0;
376}
377
db94535d
CM
378struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
379 u32 blocksize)
eb60ceac 380{
5f39d397
CM
381 struct extent_buffer *buf = NULL;
382 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 383 struct extent_io_tree *io_tree;
e4204ded 384 u64 end;
19c00ddc
CM
385 int ret;
386
d1310b2e 387 io_tree = &BTRFS_I(btree_inode)->io_tree;
5f39d397 388
db94535d 389 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5f39d397
CM
390 if (!buf)
391 return NULL;
a86c12c7
CM
392 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, 0, 1,
393 btree_get_extent);
e4204ded
CM
394
395 if (buf->flags & EXTENT_CSUM)
19c00ddc 396 return buf;
e4204ded
CM
397
398 end = buf->start + PAGE_CACHE_SIZE - 1;
d1310b2e 399 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
19c00ddc
CM
400 buf->flags |= EXTENT_CSUM;
401 return buf;
402 }
e4204ded 403
d1310b2e 404 lock_extent(io_tree, buf->start, end, GFP_NOFS);
e4204ded 405
d1310b2e 406 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
e4204ded
CM
407 buf->flags |= EXTENT_CSUM;
408 goto out_unlock;
409 }
410
19c00ddc 411 ret = csum_tree_block(root, buf, 1);
d1310b2e 412 set_extent_bits(io_tree, buf->start, end, EXTENT_CSUM, GFP_NOFS);
19c00ddc 413 buf->flags |= EXTENT_CSUM;
e4204ded
CM
414
415out_unlock:
d1310b2e 416 unlock_extent(io_tree, buf->start, end, GFP_NOFS);
5f39d397 417 return buf;
eb60ceac
CM
418}
419
e089f05c 420int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
5f39d397 421 struct extent_buffer *buf)
ed2ff2cb 422{
5f39d397 423 struct inode *btree_inode = root->fs_info->btree_inode;
55c69072
CM
424 if (btrfs_header_generation(buf) ==
425 root->fs_info->running_transaction->transid)
d1310b2e 426 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
55c69072 427 buf);
5f39d397
CM
428 return 0;
429}
430
431int wait_on_tree_block_writeback(struct btrfs_root *root,
432 struct extent_buffer *buf)
433{
434 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 435 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
5f39d397
CM
436 buf);
437 return 0;
438}
439
db94535d 440static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
87ee04eb 441 u32 stripesize, struct btrfs_root *root,
9f5fae2f 442 struct btrfs_fs_info *fs_info,
e20d96d6 443 u64 objectid)
d97e63b6 444{
cfaa7295 445 root->node = NULL;
0f7d52f4 446 root->inode = NULL;
a28ec197 447 root->commit_root = NULL;
db94535d
CM
448 root->sectorsize = sectorsize;
449 root->nodesize = nodesize;
450 root->leafsize = leafsize;
87ee04eb 451 root->stripesize = stripesize;
123abc88 452 root->ref_cows = 0;
0b86a832
CM
453 root->track_dirty = 0;
454
9f5fae2f 455 root->fs_info = fs_info;
0f7d52f4
CM
456 root->objectid = objectid;
457 root->last_trans = 0;
1b05da2e
CM
458 root->highest_inode = 0;
459 root->last_inode_alloc = 0;
58176a96 460 root->name = NULL;
4313b399 461 root->in_sysfs = 0;
0b86a832
CM
462
463 INIT_LIST_HEAD(&root->dirty_list);
3768f368
CM
464 memset(&root->root_key, 0, sizeof(root->root_key));
465 memset(&root->root_item, 0, sizeof(root->root_item));
6702ed49 466 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
58176a96
JB
467 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
468 init_completion(&root->kobj_unregister);
6702ed49
CM
469 root->defrag_running = 0;
470 root->defrag_level = 0;
4d775673 471 root->root_key.objectid = objectid;
3768f368
CM
472 return 0;
473}
474
db94535d 475static int find_and_setup_root(struct btrfs_root *tree_root,
9f5fae2f
CM
476 struct btrfs_fs_info *fs_info,
477 u64 objectid,
e20d96d6 478 struct btrfs_root *root)
3768f368
CM
479{
480 int ret;
db94535d 481 u32 blocksize;
3768f368 482
db94535d 483 __setup_root(tree_root->nodesize, tree_root->leafsize,
87ee04eb
CM
484 tree_root->sectorsize, tree_root->stripesize,
485 root, fs_info, objectid);
3768f368
CM
486 ret = btrfs_find_last_root(tree_root, objectid,
487 &root->root_item, &root->root_key);
488 BUG_ON(ret);
489
db94535d
CM
490 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
491 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
492 blocksize);
3768f368 493 BUG_ON(!root->node);
d97e63b6
CM
494 return 0;
495}
496
5eda7b5e
CM
497struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
498 struct btrfs_key *location)
0f7d52f4
CM
499{
500 struct btrfs_root *root;
501 struct btrfs_root *tree_root = fs_info->tree_root;
502 struct btrfs_path *path;
5f39d397 503 struct extent_buffer *l;
1b05da2e 504 u64 highest_inode;
db94535d 505 u32 blocksize;
0f7d52f4
CM
506 int ret = 0;
507
5eda7b5e 508 root = kzalloc(sizeof(*root), GFP_NOFS);
0cf6c620 509 if (!root)
0f7d52f4 510 return ERR_PTR(-ENOMEM);
0f7d52f4 511 if (location->offset == (u64)-1) {
db94535d 512 ret = find_and_setup_root(tree_root, fs_info,
0f7d52f4
CM
513 location->objectid, root);
514 if (ret) {
0f7d52f4
CM
515 kfree(root);
516 return ERR_PTR(ret);
517 }
518 goto insert;
519 }
520
db94535d 521 __setup_root(tree_root->nodesize, tree_root->leafsize,
87ee04eb
CM
522 tree_root->sectorsize, tree_root->stripesize,
523 root, fs_info, location->objectid);
0f7d52f4
CM
524
525 path = btrfs_alloc_path();
526 BUG_ON(!path);
527 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
528 if (ret != 0) {
0f7d52f4
CM
529 if (ret > 0)
530 ret = -ENOENT;
531 goto out;
532 }
5f39d397
CM
533 l = path->nodes[0];
534 read_extent_buffer(l, &root->root_item,
535 btrfs_item_ptr_offset(l, path->slots[0]),
0f7d52f4 536 sizeof(root->root_item));
44b36eb2 537 memcpy(&root->root_key, location, sizeof(*location));
0f7d52f4
CM
538 ret = 0;
539out:
540 btrfs_release_path(root, path);
541 btrfs_free_path(path);
542 if (ret) {
543 kfree(root);
544 return ERR_PTR(ret);
545 }
db94535d
CM
546 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
547 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
548 blocksize);
0f7d52f4
CM
549 BUG_ON(!root->node);
550insert:
0f7d52f4 551 root->ref_cows = 1;
5eda7b5e
CM
552 ret = btrfs_find_highest_inode(root, &highest_inode);
553 if (ret == 0) {
554 root->highest_inode = highest_inode;
555 root->last_inode_alloc = highest_inode;
556 }
557 return root;
558}
559
dc17ff8f
CM
560struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
561 u64 root_objectid)
562{
563 struct btrfs_root *root;
564
565 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
566 return fs_info->tree_root;
567 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
568 return fs_info->extent_root;
569
570 root = radix_tree_lookup(&fs_info->fs_roots_radix,
571 (unsigned long)root_objectid);
572 return root;
573}
574
edbd8d4e
CM
575struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
576 struct btrfs_key *location)
5eda7b5e
CM
577{
578 struct btrfs_root *root;
579 int ret;
580
edbd8d4e
CM
581 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
582 return fs_info->tree_root;
583 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
584 return fs_info->extent_root;
585
5eda7b5e
CM
586 root = radix_tree_lookup(&fs_info->fs_roots_radix,
587 (unsigned long)location->objectid);
588 if (root)
589 return root;
590
591 root = btrfs_read_fs_root_no_radix(fs_info, location);
592 if (IS_ERR(root))
593 return root;
2619ba1f
CM
594 ret = radix_tree_insert(&fs_info->fs_roots_radix,
595 (unsigned long)root->root_key.objectid,
0f7d52f4
CM
596 root);
597 if (ret) {
5f39d397 598 free_extent_buffer(root->node);
0f7d52f4
CM
599 kfree(root);
600 return ERR_PTR(ret);
601 }
edbd8d4e
CM
602 ret = btrfs_find_dead_roots(fs_info->tree_root,
603 root->root_key.objectid, root);
604 BUG_ON(ret);
605
606 return root;
607}
608
609struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
610 struct btrfs_key *location,
611 const char *name, int namelen)
612{
613 struct btrfs_root *root;
614 int ret;
615
616 root = btrfs_read_fs_root_no_name(fs_info, location);
617 if (!root)
618 return NULL;
58176a96 619
4313b399
CM
620 if (root->in_sysfs)
621 return root;
622
58176a96
JB
623 ret = btrfs_set_root_name(root, name, namelen);
624 if (ret) {
5f39d397 625 free_extent_buffer(root->node);
58176a96
JB
626 kfree(root);
627 return ERR_PTR(ret);
628 }
629
630 ret = btrfs_sysfs_add_root(root);
631 if (ret) {
5f39d397 632 free_extent_buffer(root->node);
58176a96
JB
633 kfree(root->name);
634 kfree(root);
635 return ERR_PTR(ret);
636 }
4313b399 637 root->in_sysfs = 1;
0f7d52f4
CM
638 return root;
639}
19c00ddc
CM
640#if 0
641static int add_hasher(struct btrfs_fs_info *info, char *type) {
642 struct btrfs_hasher *hasher;
643
644 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
645 if (!hasher)
646 return -ENOMEM;
647 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
648 if (!hasher->hash_tfm) {
649 kfree(hasher);
650 return -EINVAL;
651 }
652 spin_lock(&info->hash_lock);
653 list_add(&hasher->list, &info->hashers);
654 spin_unlock(&info->hash_lock);
655 return 0;
656}
657#endif
8a4b83cc
CM
658struct btrfs_root *open_ctree(struct super_block *sb,
659 struct btrfs_fs_devices *fs_devices)
2e635a27 660{
db94535d
CM
661 u32 sectorsize;
662 u32 nodesize;
663 u32 leafsize;
664 u32 blocksize;
87ee04eb 665 u32 stripesize;
e20d96d6
CM
666 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
667 GFP_NOFS);
668 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
669 GFP_NOFS);
e20d96d6
CM
670 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
671 GFP_NOFS);
0b86a832
CM
672 struct btrfs_root *chunk_root = kmalloc(sizeof(struct btrfs_root),
673 GFP_NOFS);
674 struct btrfs_root *dev_root = kmalloc(sizeof(struct btrfs_root),
675 GFP_NOFS);
eb60ceac 676 int ret;
39279cc3 677 int err = -EIO;
2c90e5d6 678 struct btrfs_super_block *disk_super;
eb60ceac 679
39279cc3
CM
680 if (!extent_root || !tree_root || !fs_info) {
681 err = -ENOMEM;
682 goto fail;
683 }
0f7d52f4 684 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
8fd17795 685 INIT_LIST_HEAD(&fs_info->trans_list);
facda1e7 686 INIT_LIST_HEAD(&fs_info->dead_roots);
19c00ddc
CM
687 INIT_LIST_HEAD(&fs_info->hashers);
688 spin_lock_init(&fs_info->hash_lock);
1832a6d5 689 spin_lock_init(&fs_info->delalloc_lock);
cee36a03 690 spin_lock_init(&fs_info->new_trans_lock);
19c00ddc 691
58176a96
JB
692 memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
693 init_completion(&fs_info->kobj_unregister);
2c90e5d6 694 sb_set_blocksize(sb, 4096);
9f5fae2f 695 fs_info->running_transaction = NULL;
15ee9bc7 696 fs_info->last_trans_committed = 0;
9f5fae2f
CM
697 fs_info->tree_root = tree_root;
698 fs_info->extent_root = extent_root;
0b86a832
CM
699 fs_info->chunk_root = chunk_root;
700 fs_info->dev_root = dev_root;
8a4b83cc 701 fs_info->fs_devices = fs_devices;
0b86a832 702 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
6324fbf3 703 INIT_LIST_HEAD(&fs_info->space_info);
0b86a832 704 btrfs_mapping_init(&fs_info->mapping_tree);
e20d96d6 705 fs_info->sb = sb;
e2008b61 706 fs_info->throttles = 0;
b6cda9bc 707 fs_info->mount_opt = 0;
c59f8951 708 fs_info->max_extent = (u64)-1;
6f568d35 709 fs_info->max_inline = 8192 * 1024;
1832a6d5 710 fs_info->delalloc_bytes = 0;
d98237b3
CM
711 fs_info->btree_inode = new_inode(sb);
712 fs_info->btree_inode->i_ino = 1;
2c90e5d6 713 fs_info->btree_inode->i_nlink = 1;
d98237b3
CM
714 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
715 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
d1310b2e 716 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
5f39d397
CM
717 fs_info->btree_inode->i_mapping,
718 GFP_NOFS);
d1310b2e
CM
719 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
720 GFP_NOFS);
721
722 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
0da5468f 723
d1310b2e 724 extent_io_tree_init(&fs_info->free_space_cache,
f510cfec 725 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 726 extent_io_tree_init(&fs_info->block_group_cache,
96b5179d 727 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 728 extent_io_tree_init(&fs_info->pinned_extents,
1a5bc167 729 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 730 extent_io_tree_init(&fs_info->pending_del,
1a5bc167 731 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 732 extent_io_tree_init(&fs_info->extent_ins,
1a5bc167 733 fs_info->btree_inode->i_mapping, GFP_NOFS);
e66f709b 734 fs_info->do_barriers = 1;
facda1e7 735 fs_info->closing = 0;
324ae4df 736 fs_info->total_pinned = 0;
e18e4809 737 fs_info->last_alloc = 0;
4529ba49 738 fs_info->last_data_alloc = 0;
e18e4809 739
6da6abae
CM
740#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
741 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
742#else
08607c1b 743 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
6da6abae 744#endif
0f7d52f4
CM
745 BTRFS_I(fs_info->btree_inode)->root = tree_root;
746 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
747 sizeof(struct btrfs_key));
22b0ebda 748 insert_inode_hash(fs_info->btree_inode);
d98237b3 749 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
39279cc3 750
79154b1b 751 mutex_init(&fs_info->trans_mutex);
d561c025 752 mutex_init(&fs_info->fs_mutex);
3768f368 753
19c00ddc
CM
754#if 0
755 ret = add_hasher(fs_info, "crc32c");
756 if (ret) {
757 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
758 err = -ENOMEM;
759 goto fail_iput;
760 }
761#endif
0b86a832 762 __setup_root(4096, 4096, 4096, 4096, tree_root,
2c90e5d6 763 fs_info, BTRFS_ROOT_TREE_OBJECTID);
7eccb903 764
2c90e5d6 765 fs_info->sb_buffer = read_tree_block(tree_root,
db94535d 766 BTRFS_SUPER_INFO_OFFSET,
0b86a832 767 4096);
d98237b3 768
0f7d52f4 769 if (!fs_info->sb_buffer)
39279cc3 770 goto fail_iput;
39279cc3 771
5f39d397
CM
772 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
773 sizeof(fs_info->super_copy));
774
775 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
776 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
777 BTRFS_FSID_SIZE);
0b86a832 778
5f39d397 779 disk_super = &fs_info->super_copy;
0f7d52f4 780 if (!btrfs_super_root(disk_super))
39279cc3 781 goto fail_sb_buffer;
0f7d52f4 782
8a4b83cc
CM
783 if (btrfs_super_num_devices(disk_super) != fs_devices->num_devices) {
784 printk("Btrfs: wanted %llu devices, but found %llu\n",
785 (unsigned long long)btrfs_super_num_devices(disk_super),
786 (unsigned long long)fs_devices->num_devices);
787 goto fail_sb_buffer;
788 }
db94535d
CM
789 nodesize = btrfs_super_nodesize(disk_super);
790 leafsize = btrfs_super_leafsize(disk_super);
791 sectorsize = btrfs_super_sectorsize(disk_super);
87ee04eb 792 stripesize = btrfs_super_stripesize(disk_super);
db94535d
CM
793 tree_root->nodesize = nodesize;
794 tree_root->leafsize = leafsize;
795 tree_root->sectorsize = sectorsize;
87ee04eb 796 tree_root->stripesize = stripesize;
ff79f819 797 sb_set_blocksize(sb, sectorsize);
db94535d 798
8352d8a4 799 i_size_write(fs_info->btree_inode,
db94535d 800 btrfs_super_total_bytes(disk_super));
8352d8a4 801
39279cc3
CM
802 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
803 sizeof(disk_super->magic))) {
804 printk("btrfs: valid FS not found on %s\n", sb->s_id);
805 goto fail_sb_buffer;
806 }
19c00ddc 807
0b86a832 808 mutex_lock(&fs_info->fs_mutex);
0d81ba5d 809
0b86a832
CM
810 ret = btrfs_read_sys_array(tree_root);
811 BUG_ON(ret);
812
813 blocksize = btrfs_level_size(tree_root,
814 btrfs_super_chunk_root_level(disk_super));
815
816 __setup_root(nodesize, leafsize, sectorsize, stripesize,
817 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
818
819 chunk_root->node = read_tree_block(chunk_root,
820 btrfs_super_chunk_root(disk_super),
821 blocksize);
822 BUG_ON(!chunk_root->node);
823
824 ret = btrfs_read_chunk_tree(chunk_root);
825 BUG_ON(ret);
826
db94535d
CM
827 blocksize = btrfs_level_size(tree_root,
828 btrfs_super_root_level(disk_super));
19c00ddc 829
0b86a832 830
e20d96d6 831 tree_root->node = read_tree_block(tree_root,
db94535d
CM
832 btrfs_super_root(disk_super),
833 blocksize);
39279cc3
CM
834 if (!tree_root->node)
835 goto fail_sb_buffer;
3768f368 836
db94535d
CM
837
838 ret = find_and_setup_root(tree_root, fs_info,
e20d96d6 839 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
0b86a832 840 if (ret)
39279cc3 841 goto fail_tree_root;
0b86a832
CM
842 extent_root->track_dirty = 1;
843
844 ret = find_and_setup_root(tree_root, fs_info,
845 BTRFS_DEV_TREE_OBJECTID, dev_root);
846 dev_root->track_dirty = 1;
847
848 if (ret)
849 goto fail_extent_root;
3768f368 850
9078a3e1
CM
851 btrfs_read_block_groups(extent_root);
852
0f7d52f4 853 fs_info->generation = btrfs_super_generation(disk_super) + 1;
5be6f7f1 854 mutex_unlock(&fs_info->fs_mutex);
0f7d52f4 855 return tree_root;
39279cc3 856
0b86a832
CM
857fail_extent_root:
858 free_extent_buffer(extent_root->node);
39279cc3 859fail_tree_root:
0b86a832 860 mutex_unlock(&fs_info->fs_mutex);
5f39d397 861 free_extent_buffer(tree_root->node);
39279cc3 862fail_sb_buffer:
5f39d397 863 free_extent_buffer(fs_info->sb_buffer);
39279cc3
CM
864fail_iput:
865 iput(fs_info->btree_inode);
866fail:
8a4b83cc 867 close_all_devices(fs_info);
39279cc3
CM
868 kfree(extent_root);
869 kfree(tree_root);
870 kfree(fs_info);
871 return ERR_PTR(err);
eb60ceac
CM
872}
873
e089f05c 874int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
79154b1b 875 *root)
eb60ceac 876{
e66f709b 877 int ret;
5f39d397
CM
878 struct extent_buffer *super = root->fs_info->sb_buffer;
879 struct inode *btree_inode = root->fs_info->btree_inode;
21ad10cf 880 struct super_block *sb = root->fs_info->sb;
5f39d397 881
21ad10cf
CM
882 if (!btrfs_test_opt(root, NOBARRIER))
883 blkdev_issue_flush(sb->s_bdev, NULL);
d1310b2e 884 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
5f39d397
CM
885 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
886 super->start, super->len);
21ad10cf
CM
887 if (!btrfs_test_opt(root, NOBARRIER))
888 blkdev_issue_flush(sb->s_bdev, NULL);
5f39d397 889 return ret;
cfaa7295
CM
890}
891
5eda7b5e 892int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2619ba1f
CM
893{
894 radix_tree_delete(&fs_info->fs_roots_radix,
895 (unsigned long)root->root_key.objectid);
b99aa6cb
CM
896 if (root->in_sysfs)
897 btrfs_sysfs_del_root(root);
2619ba1f
CM
898 if (root->inode)
899 iput(root->inode);
900 if (root->node)
5f39d397 901 free_extent_buffer(root->node);
2619ba1f 902 if (root->commit_root)
5f39d397 903 free_extent_buffer(root->commit_root);
58176a96
JB
904 if (root->name)
905 kfree(root->name);
2619ba1f
CM
906 kfree(root);
907 return 0;
908}
909
35b7e476 910static int del_fs_roots(struct btrfs_fs_info *fs_info)
0f7d52f4
CM
911{
912 int ret;
913 struct btrfs_root *gang[8];
914 int i;
915
916 while(1) {
917 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
918 (void **)gang, 0,
919 ARRAY_SIZE(gang));
920 if (!ret)
921 break;
2619ba1f 922 for (i = 0; i < ret; i++)
5eda7b5e 923 btrfs_free_fs_root(fs_info, gang[i]);
0f7d52f4
CM
924 }
925 return 0;
926}
b4100d64 927
e20d96d6 928int close_ctree(struct btrfs_root *root)
cfaa7295 929{
3768f368 930 int ret;
e089f05c 931 struct btrfs_trans_handle *trans;
0f7d52f4 932 struct btrfs_fs_info *fs_info = root->fs_info;
e089f05c 933
facda1e7 934 fs_info->closing = 1;
08607c1b 935 btrfs_transaction_flush_work(root);
0f7d52f4 936 mutex_lock(&fs_info->fs_mutex);
6702ed49 937 btrfs_defrag_dirty_roots(root->fs_info);
79154b1b 938 trans = btrfs_start_transaction(root, 1);
54aa1f4d 939 ret = btrfs_commit_transaction(trans, root);
79154b1b
CM
940 /* run commit again to drop the original snapshot */
941 trans = btrfs_start_transaction(root, 1);
942 btrfs_commit_transaction(trans, root);
943 ret = btrfs_write_and_wait_transaction(NULL, root);
3768f368 944 BUG_ON(ret);
79154b1b 945 write_ctree_super(NULL, root);
0f7d52f4
CM
946 mutex_unlock(&fs_info->fs_mutex);
947
b0c68f8b
CM
948 if (fs_info->delalloc_bytes) {
949 printk("btrfs: at unmount delalloc count %Lu\n",
950 fs_info->delalloc_bytes);
951 }
0f7d52f4 952 if (fs_info->extent_root->node)
5f39d397 953 free_extent_buffer(fs_info->extent_root->node);
f510cfec 954
0f7d52f4 955 if (fs_info->tree_root->node)
5f39d397 956 free_extent_buffer(fs_info->tree_root->node);
f510cfec 957
0b86a832
CM
958 if (root->fs_info->chunk_root->node);
959 free_extent_buffer(root->fs_info->chunk_root->node);
960
961 if (root->fs_info->dev_root->node);
962 free_extent_buffer(root->fs_info->dev_root->node);
963
5f39d397 964 free_extent_buffer(fs_info->sb_buffer);
7eccb903 965
9078a3e1 966 btrfs_free_block_groups(root->fs_info);
0f7d52f4 967 del_fs_roots(fs_info);
d10c5f31
CM
968
969 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
970
d1310b2e
CM
971 extent_io_tree_empty_lru(&fs_info->free_space_cache);
972 extent_io_tree_empty_lru(&fs_info->block_group_cache);
973 extent_io_tree_empty_lru(&fs_info->pinned_extents);
974 extent_io_tree_empty_lru(&fs_info->pending_del);
975 extent_io_tree_empty_lru(&fs_info->extent_ins);
976 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
d10c5f31 977
db94535d 978 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
d10c5f31 979
db94535d 980 iput(fs_info->btree_inode);
19c00ddc
CM
981#if 0
982 while(!list_empty(&fs_info->hashers)) {
983 struct btrfs_hasher *hasher;
984 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
985 hashers);
986 list_del(&hasher->hashers);
987 crypto_free_hash(&fs_info->hash_tfm);
988 kfree(hasher);
989 }
990#endif
0b86a832
CM
991 close_all_devices(fs_info);
992 btrfs_mapping_tree_free(&fs_info->mapping_tree);
993
0f7d52f4 994 kfree(fs_info->extent_root);
0f7d52f4 995 kfree(fs_info->tree_root);
0b86a832
CM
996 kfree(fs_info->chunk_root);
997 kfree(fs_info->dev_root);
eb60ceac
CM
998 return 0;
999}
1000
5f39d397
CM
1001int btrfs_buffer_uptodate(struct extent_buffer *buf)
1002{
810191ff 1003 struct inode *btree_inode = buf->first_page->mapping->host;
d1310b2e 1004 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
5f39d397
CM
1005}
1006
1007int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
ccd467d6 1008{
810191ff 1009 struct inode *btree_inode = buf->first_page->mapping->host;
d1310b2e 1010 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
5f39d397
CM
1011 buf);
1012}
6702ed49 1013
5f39d397
CM
1014void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1015{
810191ff 1016 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
5f39d397
CM
1017 u64 transid = btrfs_header_generation(buf);
1018 struct inode *btree_inode = root->fs_info->btree_inode;
6702ed49 1019
ccd467d6
CM
1020 if (transid != root->fs_info->generation) {
1021 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
db94535d 1022 (unsigned long long)buf->start,
ccd467d6
CM
1023 transid, root->fs_info->generation);
1024 WARN_ON(1);
1025 }
d1310b2e 1026 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
eb60ceac
CM
1027}
1028
e2008b61
CM
1029void btrfs_throttle(struct btrfs_root *root)
1030{
55c69072
CM
1031 struct backing_dev_info *bdi;
1032
1033 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
04005cc7
CM
1034 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
1035#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
55c69072 1036 congestion_wait(WRITE, HZ/20);
04005cc7
CM
1037#else
1038 blk_congestion_wait(WRITE, HZ/20);
1039#endif
1040 }
e2008b61
CM
1041}
1042
d3c2fdcf 1043void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
35b7e476 1044{
d3c2fdcf 1045 balance_dirty_pages_ratelimited_nr(
d7fc640e 1046 root->fs_info->btree_inode->i_mapping, 1);
35b7e476 1047}
6b80053d
CM
1048
1049void btrfs_set_buffer_defrag(struct extent_buffer *buf)
1050{
810191ff 1051 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1052 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1053 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
6b80053d
CM
1054 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
1055}
1056
1057void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
1058{
810191ff 1059 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1060 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1061 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
6b80053d
CM
1062 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
1063 GFP_NOFS);
1064}
1065
1066int btrfs_buffer_defrag(struct extent_buffer *buf)
1067{
810191ff 1068 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1069 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1070 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
1071 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
1072}
1073
1074int btrfs_buffer_defrag_done(struct extent_buffer *buf)
1075{
810191ff 1076 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1077 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1078 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
1079 buf->start, buf->start + buf->len - 1,
1080 EXTENT_DEFRAG_DONE, 0);
1081}
1082
1083int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
1084{
810191ff 1085 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1086 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1087 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
1088 buf->start, buf->start + buf->len - 1,
1089 EXTENT_DEFRAG_DONE, GFP_NOFS);
1090}
1091
1092int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1093{
810191ff 1094 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1095 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1096 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
1097 buf->start, buf->start + buf->len - 1,
1098 EXTENT_DEFRAG, GFP_NOFS);
1099}
1100
1101int btrfs_read_buffer(struct extent_buffer *buf)
1102{
810191ff 1103 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1104 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1105 return read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
a86c12c7 1106 buf, 0, 1, btree_get_extent);
6b80053d 1107}
0da5468f 1108
d1310b2e 1109static struct extent_io_ops btree_extent_io_ops = {
0da5468f 1110 .writepage_io_hook = btree_writepage_io_hook,
0b86a832 1111 .submit_bio_hook = btree_submit_bio_hook,
239b14b3
CM
1112 /* note we're sharing with inode.c for the merge bio hook */
1113 .merge_bio_hook = btrfs_merge_bio_hook,
0da5468f 1114};