blob: 5547607681f4147c44e8faf94511a0d8bd012d5b [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 Mason11bd1432007-06-22 14:16:24 -040021#include <linux/crc32c.h>
Chris Mason87cbda52007-03-28 19:44:27 -040022#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040023#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040024#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040025#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040026#include <linux/buffer_head.h> // for block_sync_page
Chris Masoneb60cea2007-02-02 09:18:22 -050027#include "ctree.h"
28#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040029#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040030#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040031#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040032#include "print-tree.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050033
Chris Mason5f39d392007-10-15 16:14:19 -040034#if 0
35static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040036{
Chris Mason5f39d392007-10-15 16:14:19 -040037 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));
Chris Mason39279cc2007-06-12 06:35:45 -040041 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040042 }
Chris Mason9a8dd152007-02-23 08:38:36 -050043 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050044}
Chris Mason5f39d392007-10-15 16:14:19 -040045#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050046
Chris Masond1310b22008-01-24 16:13:08 -050047static struct extent_io_ops btree_extent_io_ops;
Chris Mason0da54682007-11-07 21:08:01 -050048
Chris Mason5f39d392007-10-15 16:14:19 -040049struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -040050 u64 bytenr, u32 blocksize)
Chris Masoned2ff2c2007-03-01 18:59:40 -050051{
Chris Mason5f39d392007-10-15 16:14:19 -040052 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonf510cfe2007-10-15 16:14:48 -040053 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -050054 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
Chris Masondb945352007-10-15 16:15:53 -040055 bytenr, blocksize, GFP_NOFS);
Chris Masonf510cfe2007-10-15 16:14:48 -040056 return eb;
Chris Masoned2ff2c2007-03-01 18:59:40 -050057}
58
Chris Mason5f39d392007-10-15 16:14:19 -040059struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -040060 u64 bytenr, u32 blocksize)
Chris Masoneb60cea2007-02-02 09:18:22 -050061{
Chris Mason5f39d392007-10-15 16:14:19 -040062 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonf510cfe2007-10-15 16:14:48 -040063 struct extent_buffer *eb;
Chris Masondb945352007-10-15 16:15:53 -040064
Chris Masond1310b22008-01-24 16:13:08 -050065 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -040066 bytenr, blocksize, NULL, GFP_NOFS);
Chris Masonf510cfe2007-10-15 16:14:48 -040067 return eb;
Chris Mason5f39d392007-10-15 16:14:19 -040068}
Chris Mason22b0ebd2007-03-30 08:47:31 -040069
Chris Mason5f39d392007-10-15 16:14:19 -040070struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050071 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040072 int create)
73{
74 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
75 struct extent_map *em;
76 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040077
Chris Mason5f39d392007-10-15 16:14:19 -040078again:
Chris Masond1310b22008-01-24 16:13:08 -050079 spin_lock(&em_tree->lock);
80 em = lookup_extent_mapping(em_tree, start, len);
81 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040082 if (em) {
83 goto out;
84 }
85 em = alloc_extent_map(GFP_NOFS);
86 if (!em) {
87 em = ERR_PTR(-ENOMEM);
88 goto out;
89 }
90 em->start = 0;
Chris Masond1310b22008-01-24 16:13:08 -050091 em->len = i_size_read(inode);
Chris Mason5f39d392007-10-15 16:14:19 -040092 em->block_start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -040093 em->bdev = inode->i_sb->s_bdev;
Chris Masond1310b22008-01-24 16:13:08 -050094
95 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040096 ret = add_extent_mapping(em_tree, em);
Chris Masond1310b22008-01-24 16:13:08 -050097 spin_unlock(&em_tree->lock);
98
Chris Mason5f39d392007-10-15 16:14:19 -040099 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;
108}
109
Chris Mason19c00dd2007-10-15 16:19:22 -0400110u32 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) {
Chris Masone4204de2008-01-08 15:46:27 -0500154 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 */
Chris Mason63b10fc2008-04-01 11:21:32 -0400162 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
Chris Masone4204de2008-01-08 15:46:27 -0500163 u32 val;
164 u32 found = 0;
165 memcpy(&found, result, BTRFS_CRC32_SIZE);
166
167 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
Chris Mason63b10fc2008-04-01 11:21:32 -0400168 WARN_ON(1);
Chris Masone4204de2008-01-08 15:46:27 -0500169 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
183
184int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
185{
Chris Masond1310b22008-01-24 16:13:08 -0500186 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400187 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400188 u64 found_start;
189 int found_level;
190 unsigned long len;
191 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -0500192 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400193
194 if (page->private == EXTENT_PAGE_PRIVATE)
195 goto out;
196 if (!page->private)
197 goto out;
198 len = page->private >> 2;
199 if (len == 0) {
200 WARN_ON(1);
201 }
202 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masona86c12c2008-02-07 10:50:54 -0500203 read_extent_buffer_pages(tree, eb, start + PAGE_CACHE_SIZE, 1,
204 btree_get_extent);
Chris Masone18e4802008-01-18 10:54:22 -0500205 btrfs_clear_buffer_defrag(eb);
Chris Mason19c00dd2007-10-15 16:19:22 -0400206 found_start = btrfs_header_bytenr(eb);
207 if (found_start != start) {
208 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
209 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500210 WARN_ON(1);
211 goto err;
212 }
213 if (eb->first_page != page) {
214 printk("bad first page %lu %lu\n", eb->first_page->index,
215 page->index);
216 WARN_ON(1);
217 goto err;
218 }
219 if (!PageUptodate(page)) {
220 printk("csum not up to date page %lu\n", page->index);
221 WARN_ON(1);
222 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400223 }
224 found_level = btrfs_header_level(eb);
Chris Mason63b10fc2008-04-01 11:21:32 -0400225 spin_lock(&root->fs_info->hash_lock);
226 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
227 spin_unlock(&root->fs_info->hash_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400228 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500229err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400230 free_extent_buffer(eb);
231out:
232 return 0;
233}
234
Chris Mason0da54682007-11-07 21:08:01 -0500235static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
236{
237 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
238
239 csum_dirty_buffer(root, page);
240 return 0;
241}
242
Chris Mason0b86a832008-03-24 15:01:56 -0400243static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio)
244{
245 struct btrfs_root *root = BTRFS_I(inode)->root;
246 u64 offset;
247 offset = bio->bi_sector << 9;
248 if (offset == BTRFS_SUPER_INFO_OFFSET) {
249 bio->bi_bdev = root->fs_info->sb->s_bdev;
250 submit_bio(rw, bio);
251 return 0;
252 }
253 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio);
254}
255
Chris Mason5f39d392007-10-15 16:14:19 -0400256static int btree_writepage(struct page *page, struct writeback_control *wbc)
257{
Chris Masond1310b22008-01-24 16:13:08 -0500258 struct extent_io_tree *tree;
259 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400260 return extent_write_full_page(tree, page, btree_get_extent, wbc);
261}
Chris Mason0da54682007-11-07 21:08:01 -0500262
263static int btree_writepages(struct address_space *mapping,
264 struct writeback_control *wbc)
265{
Chris Masond1310b22008-01-24 16:13:08 -0500266 struct extent_io_tree *tree;
267 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500268 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800269 u64 num_dirty;
270 u64 start = 0;
271 unsigned long thresh = 96 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800272
273 if (wbc->for_kupdate)
274 return 0;
275
Chris Masonca664622007-11-27 11:16:35 -0500276 if (current_is_pdflush()) {
277 thresh = 96 * 1024 * 1024;
278 } else {
279 thresh = 8 * 1024 * 1024;
280 }
Chris Mason1832a6d2007-12-21 16:27:21 -0500281 num_dirty = count_range_bits(tree, &start, (u64)-1,
282 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800283 if (num_dirty < thresh) {
284 return 0;
285 }
286 }
Chris Mason0da54682007-11-07 21:08:01 -0500287 return extent_writepages(tree, mapping, btree_get_extent, wbc);
288}
289
Chris Mason5f39d392007-10-15 16:14:19 -0400290int btree_readpage(struct file *file, struct page *page)
291{
Chris Masond1310b22008-01-24 16:13:08 -0500292 struct extent_io_tree *tree;
293 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400294 return extent_read_full_page(tree, page, btree_get_extent);
295}
296
Chris Mason70dec802008-01-29 09:59:12 -0500297static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400298{
Chris Masond1310b22008-01-24 16:13:08 -0500299 struct extent_io_tree *tree;
300 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400301 int ret;
302
Chris Masond1310b22008-01-24 16:13:08 -0500303 tree = &BTRFS_I(page->mapping->host)->io_tree;
304 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -0500305 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400306 if (ret == 1) {
307 ClearPagePrivate(page);
308 set_page_private(page, 0);
309 page_cache_release(page);
310 }
Chris Masond98237b2007-03-28 13:57:48 -0400311 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400312}
Chris Mason123abc82007-03-14 14:14:43 -0400313
Chris Mason5f39d392007-10-15 16:14:19 -0400314static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400315{
Chris Masond1310b22008-01-24 16:13:08 -0500316 struct extent_io_tree *tree;
317 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400318 extent_invalidatepage(tree, page, offset);
319 btree_releasepage(page, GFP_NOFS);
Chris Masond98237b2007-03-28 13:57:48 -0400320}
321
Chris Mason5f39d392007-10-15 16:14:19 -0400322#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400323static int btree_writepage(struct page *page, struct writeback_control *wbc)
324{
Chris Mason87cbda52007-03-28 19:44:27 -0400325 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400326 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400327 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400328 if (!page_has_buffers(page)) {
329 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
330 (1 << BH_Dirty)|(1 << BH_Uptodate));
331 }
332 head = page_buffers(page);
333 bh = head;
334 do {
335 if (buffer_dirty(bh))
336 csum_tree_block(root, bh, 0);
337 bh = bh->b_this_page;
338 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400339 return block_write_full_page(page, btree_get_block, wbc);
340}
Chris Mason5f39d392007-10-15 16:14:19 -0400341#endif
Chris Masond98237b2007-03-28 13:57:48 -0400342
343static struct address_space_operations btree_aops = {
344 .readpage = btree_readpage,
345 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500346 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400347 .releasepage = btree_releasepage,
348 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400349 .sync_page = block_sync_page,
350};
351
Chris Masondb945352007-10-15 16:15:53 -0400352int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
Chris Mason090d1872007-05-01 08:53:32 -0400353{
Chris Mason5f39d392007-10-15 16:14:19 -0400354 struct extent_buffer *buf = NULL;
355 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400356 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400357
Chris Masondb945352007-10-15 16:15:53 -0400358 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400359 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400360 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500361 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masona86c12c2008-02-07 10:50:54 -0500362 buf, 0, 0, btree_get_extent);
Chris Mason5f39d392007-10-15 16:14:19 -0400363 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400364 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400365}
366
Chris Mason0b86a832008-03-24 15:01:56 -0400367static int close_all_devices(struct btrfs_fs_info *fs_info)
368{
369 struct list_head *list;
370 struct list_head *next;
371 struct btrfs_device *device;
372
Chris Mason8a4b83c2008-03-24 15:02:07 -0400373 list = &fs_info->fs_devices->devices;
374 list_for_each(next, list) {
Chris Mason0b86a832008-03-24 15:01:56 -0400375 device = list_entry(next, struct btrfs_device, dev_list);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400376 if (device->bdev && device->bdev != fs_info->sb->s_bdev)
377 close_bdev_excl(device->bdev);
378 device->bdev = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400379 }
380 return 0;
381}
382
Chris Masondb945352007-10-15 16:15:53 -0400383struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
384 u32 blocksize)
Chris Masone20d96d2007-03-22 12:13:20 -0400385{
Chris Mason5f39d392007-10-15 16:14:19 -0400386 struct extent_buffer *buf = NULL;
387 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500388 struct extent_io_tree *io_tree;
Chris Masone4204de2008-01-08 15:46:27 -0500389 u64 end;
Chris Mason19c00dd2007-10-15 16:19:22 -0400390 int ret;
391
Chris Masond1310b22008-01-24 16:13:08 -0500392 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400393
Chris Masondb945352007-10-15 16:15:53 -0400394 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400395 if (!buf)
396 return NULL;
Chris Masona86c12c2008-02-07 10:50:54 -0500397 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, 0, 1,
398 btree_get_extent);
Chris Masone4204de2008-01-08 15:46:27 -0500399
400 if (buf->flags & EXTENT_CSUM)
Chris Mason19c00dd2007-10-15 16:19:22 -0400401 return buf;
Chris Masone4204de2008-01-08 15:46:27 -0500402
403 end = buf->start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500404 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400405 buf->flags |= EXTENT_CSUM;
406 return buf;
407 }
Chris Masone4204de2008-01-08 15:46:27 -0500408
Chris Masond1310b22008-01-24 16:13:08 -0500409 lock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Masone4204de2008-01-08 15:46:27 -0500410
Chris Masond1310b22008-01-24 16:13:08 -0500411 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Masone4204de2008-01-08 15:46:27 -0500412 buf->flags |= EXTENT_CSUM;
413 goto out_unlock;
414 }
415
Chris Mason19c00dd2007-10-15 16:19:22 -0400416 ret = csum_tree_block(root, buf, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500417 set_extent_bits(io_tree, buf->start, end, EXTENT_CSUM, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -0400418 buf->flags |= EXTENT_CSUM;
Chris Masone4204de2008-01-08 15:46:27 -0500419
420out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500421 unlock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -0400422 return buf;
Chris Masoneb60cea2007-02-02 09:18:22 -0500423}
424
Chris Masone089f052007-03-16 16:20:31 -0400425int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400426 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500427{
Chris Mason5f39d392007-10-15 16:14:19 -0400428 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500429 if (btrfs_header_generation(buf) ==
430 root->fs_info->running_transaction->transid)
Chris Masond1310b22008-01-24 16:13:08 -0500431 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500432 buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400433 return 0;
434}
435
436int wait_on_tree_block_writeback(struct btrfs_root *root,
437 struct extent_buffer *buf)
438{
439 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500440 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400441 buf);
442 return 0;
443}
444
Chris Masondb945352007-10-15 16:15:53 -0400445static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500446 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400447 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400448 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500449{
Chris Masoncfaa7292007-02-21 17:04:57 -0500450 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400451 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500452 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400453 root->sectorsize = sectorsize;
454 root->nodesize = nodesize;
455 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500456 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400457 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400458 root->track_dirty = 0;
459
Chris Mason9f5fae22007-03-20 14:38:32 -0400460 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400461 root->objectid = objectid;
462 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400463 root->highest_inode = 0;
464 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400465 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500466 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400467
468 INIT_LIST_HEAD(&root->dirty_list);
Chris Mason3768f362007-03-13 16:47:54 -0400469 memset(&root->root_key, 0, sizeof(root->root_key));
470 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400471 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400472 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
473 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400474 root->defrag_running = 0;
475 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400476 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400477 return 0;
478}
479
Chris Masondb945352007-10-15 16:15:53 -0400480static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400481 struct btrfs_fs_info *fs_info,
482 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400483 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400484{
485 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400486 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400487
Chris Masondb945352007-10-15 16:15:53 -0400488 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500489 tree_root->sectorsize, tree_root->stripesize,
490 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400491 ret = btrfs_find_last_root(tree_root, objectid,
492 &root->root_item, &root->root_key);
493 BUG_ON(ret);
494
Chris Masondb945352007-10-15 16:15:53 -0400495 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
496 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
497 blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400498 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500499 return 0;
500}
501
Chris Mason5eda7b52007-06-22 14:16:25 -0400502struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
503 struct btrfs_key *location)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400504{
505 struct btrfs_root *root;
506 struct btrfs_root *tree_root = fs_info->tree_root;
507 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400508 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400509 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400510 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400511 int ret = 0;
512
Chris Mason5eda7b52007-06-22 14:16:25 -0400513 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400514 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400515 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400516 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400517 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400518 location->objectid, root);
519 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400520 kfree(root);
521 return ERR_PTR(ret);
522 }
523 goto insert;
524 }
525
Chris Masondb945352007-10-15 16:15:53 -0400526 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500527 tree_root->sectorsize, tree_root->stripesize,
528 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400529
530 path = btrfs_alloc_path();
531 BUG_ON(!path);
532 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
533 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400534 if (ret > 0)
535 ret = -ENOENT;
536 goto out;
537 }
Chris Mason5f39d392007-10-15 16:14:19 -0400538 l = path->nodes[0];
539 read_extent_buffer(l, &root->root_item,
540 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400541 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400542 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400543 ret = 0;
544out:
545 btrfs_release_path(root, path);
546 btrfs_free_path(path);
547 if (ret) {
548 kfree(root);
549 return ERR_PTR(ret);
550 }
Chris Masondb945352007-10-15 16:15:53 -0400551 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
552 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
553 blocksize);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400554 BUG_ON(!root->node);
555insert:
Chris Mason0f7d52f2007-04-09 10:42:37 -0400556 root->ref_cows = 1;
Chris Mason5eda7b52007-06-22 14:16:25 -0400557 ret = btrfs_find_highest_inode(root, &highest_inode);
558 if (ret == 0) {
559 root->highest_inode = highest_inode;
560 root->last_inode_alloc = highest_inode;
561 }
562 return root;
563}
564
Chris Masondc17ff82008-01-08 15:46:30 -0500565struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
566 u64 root_objectid)
567{
568 struct btrfs_root *root;
569
570 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
571 return fs_info->tree_root;
572 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
573 return fs_info->extent_root;
574
575 root = radix_tree_lookup(&fs_info->fs_roots_radix,
576 (unsigned long)root_objectid);
577 return root;
578}
579
Chris Masonedbd8d42007-12-21 16:27:24 -0500580struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
581 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400582{
583 struct btrfs_root *root;
584 int ret;
585
Chris Masonedbd8d42007-12-21 16:27:24 -0500586 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
587 return fs_info->tree_root;
588 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
589 return fs_info->extent_root;
590
Chris Mason5eda7b52007-06-22 14:16:25 -0400591 root = radix_tree_lookup(&fs_info->fs_roots_radix,
592 (unsigned long)location->objectid);
593 if (root)
594 return root;
595
596 root = btrfs_read_fs_root_no_radix(fs_info, location);
597 if (IS_ERR(root))
598 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400599 ret = radix_tree_insert(&fs_info->fs_roots_radix,
600 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400601 root);
602 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400603 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400604 kfree(root);
605 return ERR_PTR(ret);
606 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500607 ret = btrfs_find_dead_roots(fs_info->tree_root,
608 root->root_key.objectid, root);
609 BUG_ON(ret);
610
611 return root;
612}
613
614struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
615 struct btrfs_key *location,
616 const char *name, int namelen)
617{
618 struct btrfs_root *root;
619 int ret;
620
621 root = btrfs_read_fs_root_no_name(fs_info, location);
622 if (!root)
623 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400624
Chris Mason4313b392008-01-03 09:08:48 -0500625 if (root->in_sysfs)
626 return root;
627
Josef Bacik58176a92007-08-29 15:47:34 -0400628 ret = btrfs_set_root_name(root, name, namelen);
629 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400630 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400631 kfree(root);
632 return ERR_PTR(ret);
633 }
634
635 ret = btrfs_sysfs_add_root(root);
636 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400637 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400638 kfree(root->name);
639 kfree(root);
640 return ERR_PTR(ret);
641 }
Chris Mason4313b392008-01-03 09:08:48 -0500642 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400643 return root;
644}
Chris Mason19c00dd2007-10-15 16:19:22 -0400645#if 0
646static int add_hasher(struct btrfs_fs_info *info, char *type) {
647 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400648
Chris Mason19c00dd2007-10-15 16:19:22 -0400649 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
650 if (!hasher)
651 return -ENOMEM;
652 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
653 if (!hasher->hash_tfm) {
654 kfree(hasher);
655 return -EINVAL;
656 }
657 spin_lock(&info->hash_lock);
658 list_add(&hasher->list, &info->hashers);
659 spin_unlock(&info->hash_lock);
660 return 0;
661}
662#endif
Chris Mason04160082008-03-26 10:28:07 -0400663
664static int btrfs_congested_fn(void *congested_data, int bdi_bits)
665{
666 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
667 int ret = 0;
668 struct list_head *cur;
669 struct btrfs_device *device;
670 struct backing_dev_info *bdi;
671
672 list_for_each(cur, &info->fs_devices->devices) {
673 device = list_entry(cur, struct btrfs_device, dev_list);
674 bdi = blk_get_backing_dev_info(device->bdev);
675 if (bdi && bdi_congested(bdi, bdi_bits)) {
676 ret = 1;
677 break;
678 }
679 }
680 return ret;
681}
682
683void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
684{
685 struct list_head *cur;
686 struct btrfs_device *device;
687 struct btrfs_fs_info *info;
688
689 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
690 list_for_each(cur, &info->fs_devices->devices) {
691 device = list_entry(cur, struct btrfs_device, dev_list);
692 bdi = blk_get_backing_dev_info(device->bdev);
693 if (bdi->unplug_io_fn) {
694 bdi->unplug_io_fn(bdi, page);
695 }
696 }
697}
698
699static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
700{
701 bdi_init(bdi);
Chris Mason83041ad2008-03-26 12:02:55 -0400702 bdi->ra_pages = default_backing_dev_info.ra_pages * 4;
Chris Mason04160082008-03-26 10:28:07 -0400703 bdi->state = 0;
704 bdi->capabilities = default_backing_dev_info.capabilities;
705 bdi->unplug_io_fn = btrfs_unplug_io_fn;
706 bdi->unplug_io_data = info;
707 bdi->congested_fn = btrfs_congested_fn;
708 bdi->congested_data = info;
709 return 0;
710}
711
Chris Mason8a4b83c2008-03-24 15:02:07 -0400712struct btrfs_root *open_ctree(struct super_block *sb,
713 struct btrfs_fs_devices *fs_devices)
Chris Masoneb60cea2007-02-02 09:18:22 -0500714{
Chris Masondb945352007-10-15 16:15:53 -0400715 u32 sectorsize;
716 u32 nodesize;
717 u32 leafsize;
718 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500719 u32 stripesize;
Chris Masone20d96d2007-03-22 12:13:20 -0400720 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
721 GFP_NOFS);
722 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
723 GFP_NOFS);
Chris Masone20d96d2007-03-22 12:13:20 -0400724 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
725 GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -0400726 struct btrfs_root *chunk_root = kmalloc(sizeof(struct btrfs_root),
727 GFP_NOFS);
728 struct btrfs_root *dev_root = kmalloc(sizeof(struct btrfs_root),
729 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -0500730 int ret;
Yane58ca022008-04-01 11:21:34 -0400731 int err = -EINVAL;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400732 struct btrfs_super_block *disk_super;
Chris Mason39279cc2007-06-12 06:35:45 -0400733 if (!extent_root || !tree_root || !fs_info) {
734 err = -ENOMEM;
735 goto fail;
736 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400737 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -0400738 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -0400739 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -0400740 INIT_LIST_HEAD(&fs_info->hashers);
741 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -0500742 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -0500743 spin_lock_init(&fs_info->new_trans_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400744
Josef Bacik58176a92007-08-29 15:47:34 -0400745 memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
746 init_completion(&fs_info->kobj_unregister);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400747 sb_set_blocksize(sb, 4096);
Chris Mason9f5fae22007-03-20 14:38:32 -0400748 fs_info->running_transaction = NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400749 fs_info->last_trans_committed = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400750 fs_info->tree_root = tree_root;
751 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -0400752 fs_info->chunk_root = chunk_root;
753 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400754 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -0400755 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -0400756 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -0400757 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masone20d96d2007-03-22 12:13:20 -0400758 fs_info->sb = sb;
Chris Masone2008b62008-01-08 15:46:30 -0500759 fs_info->throttles = 0;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500760 fs_info->mount_opt = 0;
Chris Masonc59f8952007-12-17 20:14:04 -0500761 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -0500762 fs_info->max_inline = 8192 * 1024;
Chris Mason1832a6d2007-12-21 16:27:21 -0500763 fs_info->delalloc_bytes = 0;
Chris Mason04160082008-03-26 10:28:07 -0400764 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -0400765 fs_info->btree_inode = new_inode(sb);
766 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400767 fs_info->btree_inode->i_nlink = 1;
Chris Masond98237b2007-03-28 13:57:48 -0400768 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
769 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -0400770 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
771
Chris Masond1310b22008-01-24 16:13:08 -0500772 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400773 fs_info->btree_inode->i_mapping,
774 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500775 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
776 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -0500777
Chris Masond1310b22008-01-24 16:13:08 -0500778 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
779
780 extent_io_tree_init(&fs_info->free_space_cache,
Chris Masonf510cfe2007-10-15 16:14:48 -0400781 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500782 extent_io_tree_init(&fs_info->block_group_cache,
Chris Mason96b51792007-10-15 16:15:19 -0400783 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500784 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -0400785 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500786 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -0400787 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500788 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -0400789 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -0400790 fs_info->do_barriers = 1;
Chris Masonfacda1e2007-06-08 18:11:48 -0400791 fs_info->closing = 0;
Yan324ae4d2007-11-16 14:57:08 -0500792 fs_info->total_pinned = 0;
Chris Masone18e4802008-01-18 10:54:22 -0500793 fs_info->last_alloc = 0;
Chris Mason4529ba42008-01-31 16:45:07 -0500794 fs_info->last_data_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -0400795 fs_info->extra_alloc_bits = 0;
796 fs_info->extra_data_alloc_bits = 0;
Chris Masone18e4802008-01-18 10:54:22 -0500797
Chris Mason6da6aba2007-12-18 16:15:09 -0500798#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
799 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
800#else
Chris Mason08607c12007-06-08 15:33:54 -0400801 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
Chris Mason6da6aba2007-12-18 16:15:09 -0500802#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400803 BTRFS_I(fs_info->btree_inode)->root = tree_root;
804 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
805 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -0400806 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -0400807 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400808
Chris Mason79154b12007-03-22 15:59:16 -0400809 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -0400810 mutex_init(&fs_info->fs_mutex);
Chris Mason3768f362007-03-13 16:47:54 -0400811
Chris Mason19c00dd2007-10-15 16:19:22 -0400812#if 0
813 ret = add_hasher(fs_info, "crc32c");
814 if (ret) {
815 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
816 err = -ENOMEM;
817 goto fail_iput;
818 }
819#endif
Chris Mason0b86a832008-03-24 15:01:56 -0400820 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400821 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -0400822
Chris Mason2c90e5d2007-04-02 10:50:19 -0400823 fs_info->sb_buffer = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400824 BTRFS_SUPER_INFO_OFFSET,
Chris Mason0b86a832008-03-24 15:01:56 -0400825 4096);
Chris Masond98237b2007-03-28 13:57:48 -0400826
Chris Mason0f7d52f2007-04-09 10:42:37 -0400827 if (!fs_info->sb_buffer)
Chris Mason39279cc2007-06-12 06:35:45 -0400828 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -0400829
Chris Mason5f39d392007-10-15 16:14:19 -0400830 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
831 sizeof(fs_info->super_copy));
832
833 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
834 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
835 BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -0400836
Chris Mason5f39d392007-10-15 16:14:19 -0400837 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400838 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -0400839 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400840
Chris Mason8a4b83c2008-03-24 15:02:07 -0400841 if (btrfs_super_num_devices(disk_super) != fs_devices->num_devices) {
842 printk("Btrfs: wanted %llu devices, but found %llu\n",
843 (unsigned long long)btrfs_super_num_devices(disk_super),
844 (unsigned long long)fs_devices->num_devices);
845 goto fail_sb_buffer;
846 }
Chris Masondb945352007-10-15 16:15:53 -0400847 nodesize = btrfs_super_nodesize(disk_super);
848 leafsize = btrfs_super_leafsize(disk_super);
849 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -0500850 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -0400851 tree_root->nodesize = nodesize;
852 tree_root->leafsize = leafsize;
853 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500854 tree_root->stripesize = stripesize;
Chris Masonff79f812007-10-15 16:22:25 -0400855 sb_set_blocksize(sb, sectorsize);
Chris Masondb945352007-10-15 16:15:53 -0400856
Chris Mason8352d8a2007-04-12 10:43:05 -0400857 i_size_write(fs_info->btree_inode,
Chris Masondb945352007-10-15 16:15:53 -0400858 btrfs_super_total_bytes(disk_super));
Chris Mason8352d8a2007-04-12 10:43:05 -0400859
Chris Mason39279cc2007-06-12 06:35:45 -0400860 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
861 sizeof(disk_super->magic))) {
862 printk("btrfs: valid FS not found on %s\n", sb->s_id);
863 goto fail_sb_buffer;
864 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400865
Chris Mason0b86a832008-03-24 15:01:56 -0400866 mutex_lock(&fs_info->fs_mutex);
Chris Mason0d81ba52008-03-24 15:02:07 -0400867
Chris Mason0b86a832008-03-24 15:01:56 -0400868 ret = btrfs_read_sys_array(tree_root);
869 BUG_ON(ret);
870
871 blocksize = btrfs_level_size(tree_root,
872 btrfs_super_chunk_root_level(disk_super));
873
874 __setup_root(nodesize, leafsize, sectorsize, stripesize,
875 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
876
877 chunk_root->node = read_tree_block(chunk_root,
878 btrfs_super_chunk_root(disk_super),
879 blocksize);
880 BUG_ON(!chunk_root->node);
881
882 ret = btrfs_read_chunk_tree(chunk_root);
883 BUG_ON(ret);
884
Chris Masondb945352007-10-15 16:15:53 -0400885 blocksize = btrfs_level_size(tree_root,
886 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -0400887
Chris Mason0b86a832008-03-24 15:01:56 -0400888
Chris Masone20d96d2007-03-22 12:13:20 -0400889 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400890 btrfs_super_root(disk_super),
891 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -0400892 if (!tree_root->node)
893 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -0400894
Chris Masondb945352007-10-15 16:15:53 -0400895
896 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400897 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -0400898 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400899 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -0400900 extent_root->track_dirty = 1;
901
902 ret = find_and_setup_root(tree_root, fs_info,
903 BTRFS_DEV_TREE_OBJECTID, dev_root);
904 dev_root->track_dirty = 1;
905
906 if (ret)
907 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -0400908
Chris Mason9078a3e2007-04-26 16:46:15 -0400909 btrfs_read_block_groups(extent_root);
910
Chris Mason0f7d52f2007-04-09 10:42:37 -0400911 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400912 mutex_unlock(&fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400913 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -0400914
Chris Mason0b86a832008-03-24 15:01:56 -0400915fail_extent_root:
916 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -0400917fail_tree_root:
Chris Mason0b86a832008-03-24 15:01:56 -0400918 mutex_unlock(&fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -0400919 free_extent_buffer(tree_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -0400920fail_sb_buffer:
Chris Mason5f39d392007-10-15 16:14:19 -0400921 free_extent_buffer(fs_info->sb_buffer);
Chris Mason2d2ae542008-03-26 16:24:23 -0400922 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400923fail_iput:
924 iput(fs_info->btree_inode);
925fail:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400926 close_all_devices(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -0400927 kfree(extent_root);
928 kfree(tree_root);
Chris Mason2d2ae542008-03-26 16:24:23 -0400929 bdi_destroy(&fs_info->bdi);
Chris Mason39279cc2007-06-12 06:35:45 -0400930 kfree(fs_info);
931 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -0500932}
933
Chris Masone089f052007-03-16 16:20:31 -0400934int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -0400935 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -0500936{
Chris Masone66f7092007-04-20 13:16:02 -0400937 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -0400938 struct extent_buffer *super = root->fs_info->sb_buffer;
939 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason21ad10c2008-01-09 09:23:21 -0500940 struct super_block *sb = root->fs_info->sb;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400941
Chris Mason21ad10c2008-01-09 09:23:21 -0500942 if (!btrfs_test_opt(root, NOBARRIER))
943 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500944 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
Chris Mason5f39d392007-10-15 16:14:19 -0400945 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
946 super->start, super->len);
Chris Mason21ad10c2008-01-09 09:23:21 -0500947 if (!btrfs_test_opt(root, NOBARRIER))
948 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Mason5f39d392007-10-15 16:14:19 -0400949 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -0500950}
951
Chris Mason5eda7b52007-06-22 14:16:25 -0400952int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -0400953{
954 radix_tree_delete(&fs_info->fs_roots_radix,
955 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -0500956 if (root->in_sysfs)
957 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -0400958 if (root->inode)
959 iput(root->inode);
960 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400961 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -0400962 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -0400963 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -0400964 if (root->name)
965 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -0400966 kfree(root);
967 return 0;
968}
969
Chris Mason35b7e472007-05-02 15:53:43 -0400970static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400971{
972 int ret;
973 struct btrfs_root *gang[8];
974 int i;
975
976 while(1) {
977 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
978 (void **)gang, 0,
979 ARRAY_SIZE(gang));
980 if (!ret)
981 break;
Chris Mason2619ba12007-04-10 16:58:11 -0400982 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -0400983 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400984 }
985 return 0;
986}
Chris Masonb4100d62007-04-12 12:14:00 -0400987
Chris Masone20d96d2007-03-22 12:13:20 -0400988int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -0500989{
Chris Mason3768f362007-03-13 16:47:54 -0400990 int ret;
Chris Masone089f052007-03-16 16:20:31 -0400991 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400992 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -0400993
Chris Masonfacda1e2007-06-08 18:11:48 -0400994 fs_info->closing = 1;
Chris Mason08607c12007-06-08 15:33:54 -0400995 btrfs_transaction_flush_work(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400996 mutex_lock(&fs_info->fs_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400997 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason79154b12007-03-22 15:59:16 -0400998 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400999 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001000 /* run commit again to drop the original snapshot */
1001 trans = btrfs_start_transaction(root, 1);
1002 btrfs_commit_transaction(trans, root);
1003 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001004 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -04001005 write_ctree_super(NULL, root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001006 mutex_unlock(&fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001007
Chris Masonb0c68f82008-01-31 11:05:37 -05001008 if (fs_info->delalloc_bytes) {
1009 printk("btrfs: at unmount delalloc count %Lu\n",
1010 fs_info->delalloc_bytes);
1011 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001012 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001013 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001014
Chris Mason0f7d52f2007-04-09 10:42:37 -04001015 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001016 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001017
Chris Mason0b86a832008-03-24 15:01:56 -04001018 if (root->fs_info->chunk_root->node);
1019 free_extent_buffer(root->fs_info->chunk_root->node);
1020
1021 if (root->fs_info->dev_root->node);
1022 free_extent_buffer(root->fs_info->dev_root->node);
1023
Chris Mason5f39d392007-10-15 16:14:19 -04001024 free_extent_buffer(fs_info->sb_buffer);
Chris Mason7eccb902007-04-11 15:53:25 -04001025
Chris Mason9078a3e2007-04-26 16:46:15 -04001026 btrfs_free_block_groups(root->fs_info);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001027 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001028
1029 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1030
Chris Masond1310b22008-01-24 16:13:08 -05001031 extent_io_tree_empty_lru(&fs_info->free_space_cache);
1032 extent_io_tree_empty_lru(&fs_info->block_group_cache);
1033 extent_io_tree_empty_lru(&fs_info->pinned_extents);
1034 extent_io_tree_empty_lru(&fs_info->pending_del);
1035 extent_io_tree_empty_lru(&fs_info->extent_ins);
1036 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Masond10c5f32007-12-17 20:14:04 -05001037
Chris Masondb945352007-10-15 16:15:53 -04001038 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Masond10c5f32007-12-17 20:14:04 -05001039
Chris Masondb945352007-10-15 16:15:53 -04001040 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001041#if 0
1042 while(!list_empty(&fs_info->hashers)) {
1043 struct btrfs_hasher *hasher;
1044 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1045 hashers);
1046 list_del(&hasher->hashers);
1047 crypto_free_hash(&fs_info->hash_tfm);
1048 kfree(hasher);
1049 }
1050#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001051 close_all_devices(fs_info);
1052 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Mason04160082008-03-26 10:28:07 -04001053 bdi_destroy(&fs_info->bdi);
Chris Mason0b86a832008-03-24 15:01:56 -04001054
Chris Mason0f7d52f2007-04-09 10:42:37 -04001055 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001056 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001057 kfree(fs_info->chunk_root);
1058 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001059 return 0;
1060}
1061
Chris Mason5f39d392007-10-15 16:14:19 -04001062int btrfs_buffer_uptodate(struct extent_buffer *buf)
Chris Masonccd467d2007-06-28 15:57:36 -04001063{
Chris Mason810191f2007-10-15 16:18:55 -04001064 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001065 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001066}
Chris Mason6702ed42007-08-07 16:15:09 -04001067
Chris Mason5f39d392007-10-15 16:14:19 -04001068int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1069{
Chris Mason810191f2007-10-15 16:18:55 -04001070 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001071 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001072 buf);
1073}
1074
1075void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1076{
Chris Mason810191f2007-10-15 16:18:55 -04001077 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001078 u64 transid = btrfs_header_generation(buf);
1079 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001080
Chris Masonccd467d2007-06-28 15:57:36 -04001081 if (transid != root->fs_info->generation) {
1082 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001083 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001084 transid, root->fs_info->generation);
1085 WARN_ON(1);
1086 }
Chris Masond1310b22008-01-24 16:13:08 -05001087 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001088}
1089
Chris Masone2008b62008-01-08 15:46:30 -05001090void btrfs_throttle(struct btrfs_root *root)
1091{
Chris Mason55c69072008-01-09 15:55:33 -05001092 struct backing_dev_info *bdi;
1093
1094 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
Chris Mason04005cc2008-01-17 12:01:41 -05001095 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
1096#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
Chris Mason55c69072008-01-09 15:55:33 -05001097 congestion_wait(WRITE, HZ/20);
Chris Mason04005cc2008-01-17 12:01:41 -05001098#else
1099 blk_congestion_wait(WRITE, HZ/20);
1100#endif
1101 }
Chris Masone2008b62008-01-08 15:46:30 -05001102}
1103
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001104void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001105{
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001106 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05001107 root->fs_info->btree_inode->i_mapping, 1);
Chris Mason35b7e472007-05-02 15:53:43 -04001108}
Chris Mason6b800532007-10-15 16:17:34 -04001109
1110void btrfs_set_buffer_defrag(struct extent_buffer *buf)
1111{
Chris Mason810191f2007-10-15 16:18:55 -04001112 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001113 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001114 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001115 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
1116}
1117
1118void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
1119{
Chris Mason810191f2007-10-15 16:18:55 -04001120 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001121 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001122 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -04001123 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
1124 GFP_NOFS);
1125}
1126
1127int btrfs_buffer_defrag(struct extent_buffer *buf)
1128{
Chris Mason810191f2007-10-15 16:18:55 -04001129 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001130 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001131 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001132 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
1133}
1134
1135int btrfs_buffer_defrag_done(struct extent_buffer *buf)
1136{
Chris Mason810191f2007-10-15 16:18:55 -04001137 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001138 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001139 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001140 buf->start, buf->start + buf->len - 1,
1141 EXTENT_DEFRAG_DONE, 0);
1142}
1143
1144int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
1145{
Chris Mason810191f2007-10-15 16:18:55 -04001146 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001147 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001148 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001149 buf->start, buf->start + buf->len - 1,
1150 EXTENT_DEFRAG_DONE, GFP_NOFS);
1151}
1152
1153int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1154{
Chris Mason810191f2007-10-15 16:18:55 -04001155 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001156 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001157 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001158 buf->start, buf->start + buf->len - 1,
1159 EXTENT_DEFRAG, GFP_NOFS);
1160}
1161
1162int btrfs_read_buffer(struct extent_buffer *buf)
1163{
Chris Mason810191f2007-10-15 16:18:55 -04001164 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001165 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001166 return read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masona86c12c2008-02-07 10:50:54 -05001167 buf, 0, 1, btree_get_extent);
Chris Mason6b800532007-10-15 16:17:34 -04001168}
Chris Mason0da54682007-11-07 21:08:01 -05001169
Chris Masond1310b22008-01-24 16:13:08 -05001170static struct extent_io_ops btree_extent_io_ops = {
Chris Mason0da54682007-11-07 21:08:01 -05001171 .writepage_io_hook = btree_writepage_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04001172 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04001173 /* note we're sharing with inode.c for the merge bio hook */
1174 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05001175};