blob: 8969fee23318c0a2fb4043dce54d7f3eacf01a1a [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona74a4b92008-06-25 16:01:31 -040019#include <linux/version.h>
Chris Masone20d96d2007-03-22 12:13:20 -040020#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -040021#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -040022#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040023#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040024#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040025#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040026#include <linux/buffer_head.h> // for block_sync_page
Chris Masonce9adaa2008-04-09 16:28:12 -040027#include <linux/workqueue.h>
Chris Masona74a4b92008-06-25 16:01:31 -040028#include <linux/kthread.h>
Chris Masona74a4b92008-06-25 16:01:31 -040029# include <linux/freezer.h>
Miguela5eb62e2008-04-11 15:45:51 -040030#include "crc32c.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050031#include "ctree.h"
32#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040033#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040034#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040035#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040036#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040037#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040038#include "locking.h"
Chris Mason017e5362008-07-28 15:32:51 -040039#include "ref-cache.h"
Chris Masone02119d2008-09-05 16:13:11 -040040#include "tree-log.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050041
Chris Mason5f39d392007-10-15 16:14:19 -040042#if 0
43static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040044{
Chris Mason5f39d392007-10-15 16:14:19 -040045 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
46 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
47 (unsigned long long)extent_buffer_blocknr(buf),
48 (unsigned long long)btrfs_header_blocknr(buf));
Chris Mason39279cc2007-06-12 06:35:45 -040049 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040050 }
Chris Mason9a8dd152007-02-23 08:38:36 -050051 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050052}
Chris Mason5f39d392007-10-15 16:14:19 -040053#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050054
Chris Masond1310b22008-01-24 16:13:08 -050055static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040056static void end_workqueue_fn(struct btrfs_work *work);
Chris Masonce9adaa2008-04-09 16:28:12 -040057
58struct end_io_wq {
59 struct bio *bio;
60 bio_end_io_t *end_io;
61 void *private;
62 struct btrfs_fs_info *info;
63 int error;
Chris Mason22c59942008-04-09 16:28:12 -040064 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040065 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040066 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040067};
Chris Mason0da54682007-11-07 21:08:01 -050068
Chris Mason44b8bd72008-04-16 11:14:51 -040069struct async_submit_bio {
70 struct inode *inode;
71 struct bio *bio;
72 struct list_head list;
73 extent_submit_bio_hook_t *submit_bio_hook;
74 int rw;
75 int mirror_num;
Chris Mason8b712842008-06-11 16:50:36 -040076 struct btrfs_work work;
Chris Mason44b8bd72008-04-16 11:14:51 -040077};
78
Chris Mason5f39d392007-10-15 16:14:19 -040079struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050080 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040081 int create)
82{
83 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
84 struct extent_map *em;
85 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040086
Chris Masond1310b22008-01-24 16:13:08 -050087 spin_lock(&em_tree->lock);
88 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -040089 if (em) {
90 em->bdev =
91 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
92 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040093 goto out;
Chris Masona061fc82008-05-07 11:43:44 -040094 }
95 spin_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -040096
Chris Mason5f39d392007-10-15 16:14:19 -040097 em = alloc_extent_map(GFP_NOFS);
98 if (!em) {
99 em = ERR_PTR(-ENOMEM);
100 goto out;
101 }
102 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400103 em->len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400104 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400105 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500106
107 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400108 ret = add_extent_mapping(em_tree, em);
109 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400110 u64 failed_start = em->start;
111 u64 failed_len = em->len;
112
113 printk("failed to insert %Lu %Lu -> %Lu into tree\n",
114 em->start, em->len, em->block_start);
Chris Mason5f39d392007-10-15 16:14:19 -0400115 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400116 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400117 if (em) {
118 printk("after failing, found %Lu %Lu %Lu\n",
119 em->start, em->len, em->block_start);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400120 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400121 } else {
122 em = lookup_extent_mapping(em_tree, failed_start,
123 failed_len);
124 if (em) {
125 printk("double failure lookup gives us "
126 "%Lu %Lu -> %Lu\n", em->start,
127 em->len, em->block_start);
128 free_extent_map(em);
129 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400130 ret = -EIO;
Chris Mason0afbaf82008-04-18 14:17:20 -0400131 }
Chris Mason5f39d392007-10-15 16:14:19 -0400132 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400133 free_extent_map(em);
134 em = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400135 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400136 spin_unlock(&em_tree->lock);
137
138 if (ret)
139 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400140out:
141 return em;
142}
143
Chris Mason19c00dd2007-10-15 16:19:22 -0400144u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
145{
Miguela5eb62e2008-04-11 15:45:51 -0400146 return btrfs_crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400147}
148
149void btrfs_csum_final(u32 crc, char *result)
150{
151 *(__le32 *)result = ~cpu_to_le32(crc);
152}
153
154static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
155 int verify)
156{
157 char result[BTRFS_CRC32_SIZE];
158 unsigned long len;
159 unsigned long cur_len;
160 unsigned long offset = BTRFS_CSUM_SIZE;
161 char *map_token = NULL;
162 char *kaddr;
163 unsigned long map_start;
164 unsigned long map_len;
165 int err;
166 u32 crc = ~(u32)0;
167
168 len = buf->len - offset;
169 while(len > 0) {
170 err = map_private_extent_buffer(buf, offset, 32,
171 &map_token, &kaddr,
172 &map_start, &map_len, KM_USER0);
173 if (err) {
174 printk("failed to map extent buffer! %lu\n",
175 offset);
176 return 1;
177 }
178 cur_len = min(len, map_len - (offset - map_start));
179 crc = btrfs_csum_data(root, kaddr + offset - map_start,
180 crc, cur_len);
181 len -= cur_len;
182 offset += cur_len;
183 unmap_extent_buffer(buf, map_token, KM_USER0);
184 }
185 btrfs_csum_final(crc, result);
186
187 if (verify) {
Chris Masone4204de2008-01-08 15:46:27 -0500188 /* FIXME, this is not good */
Chris Mason63b10fc2008-04-01 11:21:32 -0400189 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
Chris Masone4204de2008-01-08 15:46:27 -0500190 u32 val;
191 u32 found = 0;
192 memcpy(&found, result, BTRFS_CRC32_SIZE);
193
194 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
195 printk("btrfs: %s checksum verify failed on %llu "
Chris Mason2dd3e672008-08-04 08:20:15 -0400196 "wanted %X found %X level %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400197 root->fs_info->sb->s_id,
Chris Mason2dd3e672008-08-04 08:20:15 -0400198 buf->start, val, found, btrfs_header_level(buf));
Chris Mason19c00dd2007-10-15 16:19:22 -0400199 return 1;
200 }
201 } else {
202 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
203 }
204 return 0;
205}
206
Chris Mason1259ab72008-05-12 13:39:03 -0400207static int verify_parent_transid(struct extent_io_tree *io_tree,
208 struct extent_buffer *eb, u64 parent_transid)
209{
210 int ret;
211
212 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
213 return 0;
214
215 lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
216 if (extent_buffer_uptodate(io_tree, eb) &&
217 btrfs_header_generation(eb) == parent_transid) {
218 ret = 0;
219 goto out;
220 }
221 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
222 (unsigned long long)eb->start,
223 (unsigned long long)parent_transid,
224 (unsigned long long)btrfs_header_generation(eb));
225 ret = 1;
Chris Mason1259ab72008-05-12 13:39:03 -0400226 clear_extent_buffer_uptodate(io_tree, eb);
Chris Mason33958dc2008-07-30 10:29:12 -0400227out:
Chris Mason1259ab72008-05-12 13:39:03 -0400228 unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
229 GFP_NOFS);
230 return ret;
231
232}
233
Chris Masonf1885912008-04-09 16:28:12 -0400234static int btree_read_extent_buffer_pages(struct btrfs_root *root,
235 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400236 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400237{
238 struct extent_io_tree *io_tree;
239 int ret;
240 int num_copies = 0;
241 int mirror_num = 0;
242
243 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
244 while (1) {
245 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
246 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400247 if (!ret &&
248 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400249 return ret;
Chris Masona1b32a52008-09-05 16:09:51 -0400250printk("read extent buffer pages failed with ret %d mirror no %d\n", ret, mirror_num);
Chris Masonf1885912008-04-09 16:28:12 -0400251 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
252 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400253 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400254 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400255
Chris Masonf1885912008-04-09 16:28:12 -0400256 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400257 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400258 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400259 }
Chris Masonf1885912008-04-09 16:28:12 -0400260 return -EIO;
261}
Chris Mason19c00dd2007-10-15 16:19:22 -0400262
263int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
264{
Chris Masond1310b22008-01-24 16:13:08 -0500265 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400266 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400267 u64 found_start;
268 int found_level;
269 unsigned long len;
270 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400271 int ret;
272
Chris Masond1310b22008-01-24 16:13:08 -0500273 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400274
275 if (page->private == EXTENT_PAGE_PRIVATE)
276 goto out;
277 if (!page->private)
278 goto out;
279 len = page->private >> 2;
280 if (len == 0) {
281 WARN_ON(1);
282 }
283 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -0400284 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
285 btrfs_header_generation(eb));
Chris Masonf1885912008-04-09 16:28:12 -0400286 BUG_ON(ret);
Chris Mason19c00dd2007-10-15 16:19:22 -0400287 found_start = btrfs_header_bytenr(eb);
288 if (found_start != start) {
289 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
290 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500291 WARN_ON(1);
292 goto err;
293 }
294 if (eb->first_page != page) {
295 printk("bad first page %lu %lu\n", eb->first_page->index,
296 page->index);
297 WARN_ON(1);
298 goto err;
299 }
300 if (!PageUptodate(page)) {
301 printk("csum not up to date page %lu\n", page->index);
302 WARN_ON(1);
303 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400304 }
305 found_level = btrfs_header_level(eb);
Chris Mason4bef0842008-09-08 11:18:08 -0400306
Chris Mason19c00dd2007-10-15 16:19:22 -0400307 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500308err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400309 free_extent_buffer(eb);
310out:
311 return 0;
312}
313
Chris Masonce9adaa2008-04-09 16:28:12 -0400314int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
315 struct extent_state *state)
316{
317 struct extent_io_tree *tree;
318 u64 found_start;
319 int found_level;
320 unsigned long len;
321 struct extent_buffer *eb;
322 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400323 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400324
325 tree = &BTRFS_I(page->mapping->host)->io_tree;
326 if (page->private == EXTENT_PAGE_PRIVATE)
327 goto out;
328 if (!page->private)
329 goto out;
330 len = page->private >> 2;
331 if (len == 0) {
332 WARN_ON(1);
333 }
334 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400335
Chris Masonce9adaa2008-04-09 16:28:12 -0400336 found_start = btrfs_header_bytenr(eb);
Chris Mason23a07862008-09-12 08:57:47 -0400337 if (found_start != start) {
Chris Masona1b32a52008-09-05 16:09:51 -0400338 printk("bad tree block start %llu %llu\n",
339 (unsigned long long)found_start,
340 (unsigned long long)eb->start);
Chris Masonf1885912008-04-09 16:28:12 -0400341 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400342 goto err;
343 }
344 if (eb->first_page != page) {
345 printk("bad first page %lu %lu\n", eb->first_page->index,
346 page->index);
347 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400348 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400349 goto err;
350 }
Chris Mason1259ab72008-05-12 13:39:03 -0400351 if (memcmp_extent_buffer(eb, root->fs_info->fsid,
352 (unsigned long)btrfs_header_fsid(eb),
353 BTRFS_FSID_SIZE)) {
354 printk("bad fsid on block %Lu\n", eb->start);
355 ret = -EIO;
356 goto err;
357 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400358 found_level = btrfs_header_level(eb);
359
360 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400361 if (ret)
362 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400363
364 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
365 end = eb->start + end - 1;
Chris Masonce9adaa2008-04-09 16:28:12 -0400366err:
367 free_extent_buffer(eb);
368out:
Chris Masonf1885912008-04-09 16:28:12 -0400369 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400370}
371
Chris Masonce9adaa2008-04-09 16:28:12 -0400372static void end_workqueue_bio(struct bio *bio, int err)
Chris Masonce9adaa2008-04-09 16:28:12 -0400373{
374 struct end_io_wq *end_io_wq = bio->bi_private;
375 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400376
Chris Masonce9adaa2008-04-09 16:28:12 -0400377 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400378 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400379 end_io_wq->work.func = end_workqueue_fn;
380 end_io_wq->work.flags = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400381 if (bio->bi_rw & (1 << BIO_RW))
382 btrfs_queue_worker(&fs_info->endio_write_workers,
383 &end_io_wq->work);
384 else
385 btrfs_queue_worker(&fs_info->endio_workers, &end_io_wq->work);
Chris Masonce9adaa2008-04-09 16:28:12 -0400386}
387
Chris Mason22c59942008-04-09 16:28:12 -0400388int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
389 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400390{
Chris Masonce9adaa2008-04-09 16:28:12 -0400391 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400392 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
393 if (!end_io_wq)
394 return -ENOMEM;
395
396 end_io_wq->private = bio->bi_private;
397 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400398 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400399 end_io_wq->error = 0;
400 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400401 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400402
403 bio->bi_private = end_io_wq;
404 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400405 return 0;
406}
407
Chris Masonb64a2852008-08-20 13:39:41 -0400408unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400409{
410 unsigned long limit = min_t(unsigned long,
411 info->workers.max_workers,
412 info->fs_devices->open_devices);
413 return 256 * limit;
414}
415
Chris Mason777e6bd2008-08-15 15:34:15 -0400416int btrfs_congested_async(struct btrfs_fs_info *info, int iodone)
Chris Mason0986fe9e2008-08-15 15:34:15 -0400417{
Chris Masonb64a2852008-08-20 13:39:41 -0400418 return atomic_read(&info->nr_async_bios) >
419 btrfs_async_submit_limit(info);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400420}
421
Chris Mason8b712842008-06-11 16:50:36 -0400422static void run_one_async_submit(struct btrfs_work *work)
423{
424 struct btrfs_fs_info *fs_info;
425 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400426 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400427
428 async = container_of(work, struct async_submit_bio, work);
429 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400430
Chris Masonb64a2852008-08-20 13:39:41 -0400431 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400432 limit = limit * 2 / 3;
433
Chris Mason8b712842008-06-11 16:50:36 -0400434 atomic_dec(&fs_info->nr_async_submits);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400435
Chris Masonb64a2852008-08-20 13:39:41 -0400436 if (atomic_read(&fs_info->nr_async_submits) < limit &&
437 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400438 wake_up(&fs_info->async_submit_wait);
439
Chris Mason8b712842008-06-11 16:50:36 -0400440 async->submit_bio_hook(async->inode, async->rw, async->bio,
441 async->mirror_num);
442 kfree(async);
443}
444
Chris Mason44b8bd72008-04-16 11:14:51 -0400445int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
446 int rw, struct bio *bio, int mirror_num,
447 extent_submit_bio_hook_t *submit_bio_hook)
448{
449 struct async_submit_bio *async;
Chris Masonb64a2852008-08-20 13:39:41 -0400450 int limit = btrfs_async_submit_limit(fs_info);
Chris Mason44b8bd72008-04-16 11:14:51 -0400451
452 async = kmalloc(sizeof(*async), GFP_NOFS);
453 if (!async)
454 return -ENOMEM;
455
456 async->inode = inode;
457 async->rw = rw;
458 async->bio = bio;
459 async->mirror_num = mirror_num;
460 async->submit_bio_hook = submit_bio_hook;
Chris Mason8b712842008-06-11 16:50:36 -0400461 async->work.func = run_one_async_submit;
462 async->work.flags = 0;
Chris Masoncb03c742008-05-15 16:15:45 -0400463 atomic_inc(&fs_info->nr_async_submits);
Chris Mason8b712842008-06-11 16:50:36 -0400464 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason4854ddd2008-08-15 15:34:17 -0400465
Chris Mason9473f162008-08-28 06:15:24 -0400466 if (atomic_read(&fs_info->nr_async_submits) > limit) {
467 wait_event_timeout(fs_info->async_submit_wait,
Chris Mason4854ddd2008-08-15 15:34:17 -0400468 (atomic_read(&fs_info->nr_async_submits) < limit),
469 HZ/10);
Chris Mason9473f162008-08-28 06:15:24 -0400470
471 wait_event_timeout(fs_info->async_submit_wait,
472 (atomic_read(&fs_info->nr_async_bios) < limit),
473 HZ/10);
474 }
Chris Mason44b8bd72008-04-16 11:14:51 -0400475 return 0;
476}
477
Chris Masonce3ed712008-09-23 13:14:12 -0400478static int btree_csum_one_bio(struct bio *bio)
479{
480 struct bio_vec *bvec = bio->bi_io_vec;
481 int bio_index = 0;
482 struct btrfs_root *root;
483
484 WARN_ON(bio->bi_vcnt <= 0);
485 while(bio_index < bio->bi_vcnt) {
486 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
487 csum_dirty_buffer(root, bvec->bv_page);
488 bio_index++;
489 bvec++;
490 }
491 return 0;
492}
493
Chris Mason44b8bd72008-04-16 11:14:51 -0400494static int __btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400495 int mirror_num)
Chris Mason22c59942008-04-09 16:28:12 -0400496{
497 struct btrfs_root *root = BTRFS_I(inode)->root;
498 u64 offset;
499 int ret;
500
501 offset = bio->bi_sector << 9;
502
Chris Mason8b712842008-06-11 16:50:36 -0400503 /*
504 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400505 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400506 */
Chris Mason22c59942008-04-09 16:28:12 -0400507 if (rw & (1 << BIO_RW)) {
Chris Masonce3ed712008-09-23 13:14:12 -0400508 btree_csum_one_bio(bio);
Chris Mason8b712842008-06-11 16:50:36 -0400509 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason5443be42008-08-15 15:34:16 -0400510 mirror_num, 1);
Chris Mason22c59942008-04-09 16:28:12 -0400511 }
512
Chris Mason8b712842008-06-11 16:50:36 -0400513 /*
514 * called for a read, do the setup so that checksum validation
515 * can happen in the async kernel threads
516 */
Chris Mason22c59942008-04-09 16:28:12 -0400517 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 1);
518 BUG_ON(ret);
Chris Masonce9adaa2008-04-09 16:28:12 -0400519
Chris Mason8b712842008-06-11 16:50:36 -0400520 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400521}
522
Chris Mason44b8bd72008-04-16 11:14:51 -0400523static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
524 int mirror_num)
525{
Chris Mason8b712842008-06-11 16:50:36 -0400526 /*
527 * kthread helpers are used to submit writes so that checksumming
528 * can happen in parallel across all CPUs
529 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400530 if (!(rw & (1 << BIO_RW))) {
531 return __btree_submit_bio_hook(inode, rw, bio, mirror_num);
532 }
533 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
534 inode, rw, bio, mirror_num,
535 __btree_submit_bio_hook);
536}
537
Chris Mason5f39d392007-10-15 16:14:19 -0400538static int btree_writepage(struct page *page, struct writeback_control *wbc)
539{
Chris Masond1310b22008-01-24 16:13:08 -0500540 struct extent_io_tree *tree;
541 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5443be42008-08-15 15:34:16 -0400542
543 if (current->flags & PF_MEMALLOC) {
544 redirty_page_for_writepage(wbc, page);
545 unlock_page(page);
546 return 0;
547 }
Chris Mason5f39d392007-10-15 16:14:19 -0400548 return extent_write_full_page(tree, page, btree_get_extent, wbc);
549}
Chris Mason0da54682007-11-07 21:08:01 -0500550
551static int btree_writepages(struct address_space *mapping,
552 struct writeback_control *wbc)
553{
Chris Masond1310b22008-01-24 16:13:08 -0500554 struct extent_io_tree *tree;
555 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500556 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800557 u64 num_dirty;
558 u64 start = 0;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400559 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800560
561 if (wbc->for_kupdate)
562 return 0;
563
Chris Mason1832a6d2007-12-21 16:27:21 -0500564 num_dirty = count_range_bits(tree, &start, (u64)-1,
565 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800566 if (num_dirty < thresh) {
567 return 0;
568 }
569 }
Chris Mason0da54682007-11-07 21:08:01 -0500570 return extent_writepages(tree, mapping, btree_get_extent, wbc);
571}
572
Chris Mason5f39d392007-10-15 16:14:19 -0400573int btree_readpage(struct file *file, struct page *page)
574{
Chris Masond1310b22008-01-24 16:13:08 -0500575 struct extent_io_tree *tree;
576 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400577 return extent_read_full_page(tree, page, btree_get_extent);
578}
579
Chris Mason70dec802008-01-29 09:59:12 -0500580static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400581{
Chris Masond1310b22008-01-24 16:13:08 -0500582 struct extent_io_tree *tree;
583 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400584 int ret;
585
Chris Mason98509cf2008-09-11 15:51:43 -0400586 if (PageWriteback(page) || PageDirty(page))
587 return 0;
588
Chris Masond1310b22008-01-24 16:13:08 -0500589 tree = &BTRFS_I(page->mapping->host)->io_tree;
590 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118ce2008-07-22 11:18:07 -0400591
Chris Mason7b13b7b2008-04-18 10:29:50 -0400592 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Mason6af118ce2008-07-22 11:18:07 -0400593 if (!ret) {
594 return 0;
595 }
596
597 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400598 if (ret == 1) {
599 ClearPagePrivate(page);
600 set_page_private(page, 0);
601 page_cache_release(page);
602 }
Chris Mason6af118ce2008-07-22 11:18:07 -0400603
Chris Masond98237b2007-03-28 13:57:48 -0400604 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400605}
Chris Mason123abc82007-03-14 14:14:43 -0400606
Chris Mason5f39d392007-10-15 16:14:19 -0400607static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400608{
Chris Masond1310b22008-01-24 16:13:08 -0500609 struct extent_io_tree *tree;
610 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400611 extent_invalidatepage(tree, page, offset);
612 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400613 if (PagePrivate(page)) {
Chris Mason6af118ce2008-07-22 11:18:07 -0400614 printk("warning page private not zero on page %Lu\n",
615 page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400616 ClearPagePrivate(page);
617 set_page_private(page, 0);
618 page_cache_release(page);
619 }
Chris Masond98237b2007-03-28 13:57:48 -0400620}
621
Chris Mason5f39d392007-10-15 16:14:19 -0400622#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400623static int btree_writepage(struct page *page, struct writeback_control *wbc)
624{
Chris Mason87cbda52007-03-28 19:44:27 -0400625 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400626 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400627 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400628 if (!page_has_buffers(page)) {
629 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
630 (1 << BH_Dirty)|(1 << BH_Uptodate));
631 }
632 head = page_buffers(page);
633 bh = head;
634 do {
635 if (buffer_dirty(bh))
636 csum_tree_block(root, bh, 0);
637 bh = bh->b_this_page;
638 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400639 return block_write_full_page(page, btree_get_block, wbc);
640}
Chris Mason5f39d392007-10-15 16:14:19 -0400641#endif
Chris Masond98237b2007-03-28 13:57:48 -0400642
643static struct address_space_operations btree_aops = {
644 .readpage = btree_readpage,
645 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500646 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400647 .releasepage = btree_releasepage,
648 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400649 .sync_page = block_sync_page,
650};
651
Chris Masonca7a79a2008-05-12 12:59:19 -0400652int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
653 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400654{
Chris Mason5f39d392007-10-15 16:14:19 -0400655 struct extent_buffer *buf = NULL;
656 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400657 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400658
Chris Masondb945352007-10-15 16:15:53 -0400659 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400660 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400661 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500662 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400663 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400664 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400665 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400666}
667
Chris Mason0999df52008-04-01 13:48:14 -0400668struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
669 u64 bytenr, u32 blocksize)
670{
671 struct inode *btree_inode = root->fs_info->btree_inode;
672 struct extent_buffer *eb;
673 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
674 bytenr, blocksize, GFP_NOFS);
675 return eb;
676}
677
678struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
679 u64 bytenr, u32 blocksize)
680{
681 struct inode *btree_inode = root->fs_info->btree_inode;
682 struct extent_buffer *eb;
683
684 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
685 bytenr, blocksize, NULL, GFP_NOFS);
686 return eb;
687}
688
689
Chris Masone02119d2008-09-05 16:13:11 -0400690int btrfs_write_tree_block(struct extent_buffer *buf)
691{
692 return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
Chris Mason24ab9cd2008-09-24 14:51:30 -0400693 buf->start + buf->len - 1, WB_SYNC_ALL);
Chris Masone02119d2008-09-05 16:13:11 -0400694}
695
696int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
697{
698 return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
699 buf->start, buf->start + buf->len -1);
700}
701
Chris Masondb945352007-10-15 16:15:53 -0400702struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400703 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400704{
Chris Mason5f39d392007-10-15 16:14:19 -0400705 struct extent_buffer *buf = NULL;
706 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500707 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400708 int ret;
709
Chris Masond1310b22008-01-24 16:13:08 -0500710 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400711
Chris Masondb945352007-10-15 16:15:53 -0400712 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400713 if (!buf)
714 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500715
Chris Masonca7a79a2008-05-12 12:59:19 -0400716 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400717
718 if (ret == 0) {
719 buf->flags |= EXTENT_UPTODATE;
Chris Masona1b32a52008-09-05 16:09:51 -0400720 } else {
721 WARN_ON(1);
Chris Masonce9adaa2008-04-09 16:28:12 -0400722 }
Chris Mason5f39d392007-10-15 16:14:19 -0400723 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400724
Chris Masoneb60cea2007-02-02 09:18:22 -0500725}
726
Chris Masone089f052007-03-16 16:20:31 -0400727int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400728 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500729{
Chris Mason5f39d392007-10-15 16:14:19 -0400730 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500731 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400732 root->fs_info->running_transaction->transid) {
733 WARN_ON(!btrfs_tree_locked(buf));
Chris Masond1310b22008-01-24 16:13:08 -0500734 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500735 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400736 }
Chris Mason5f39d392007-10-15 16:14:19 -0400737 return 0;
738}
739
Chris Masondb945352007-10-15 16:15:53 -0400740static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500741 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400742 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400743 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500744{
Chris Masoncfaa7292007-02-21 17:04:57 -0500745 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400746 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500747 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400748 root->ref_tree = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400749 root->sectorsize = sectorsize;
750 root->nodesize = nodesize;
751 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500752 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400753 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400754 root->track_dirty = 0;
755
Chris Mason9f5fae22007-03-20 14:38:32 -0400756 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400757 root->objectid = objectid;
758 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400759 root->highest_inode = 0;
760 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400761 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500762 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400763
764 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -0400765 INIT_LIST_HEAD(&root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400766 INIT_LIST_HEAD(&root->dead_list);
Chris Mason925baed2008-06-25 16:01:30 -0400767 spin_lock_init(&root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400768 spin_lock_init(&root->list_lock);
Chris Masona2135012008-06-25 16:01:30 -0400769 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400770 mutex_init(&root->log_mutex);
Chris Masond0c803c2008-09-11 16:17:57 -0400771 extent_io_tree_init(&root->dirty_log_pages,
772 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason017e5362008-07-28 15:32:51 -0400773
774 btrfs_leaf_ref_tree_init(&root->ref_tree_struct);
775 root->ref_tree = &root->ref_tree_struct;
776
Chris Mason3768f362007-03-13 16:47:54 -0400777 memset(&root->root_key, 0, sizeof(root->root_key));
778 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400779 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400780 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -0400781 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -0400782 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400783 root->defrag_running = 0;
784 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400785 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400786 return 0;
787}
788
Chris Masondb945352007-10-15 16:15:53 -0400789static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400790 struct btrfs_fs_info *fs_info,
791 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400792 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400793{
794 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400795 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400796
Chris Masondb945352007-10-15 16:15:53 -0400797 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500798 tree_root->sectorsize, tree_root->stripesize,
799 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400800 ret = btrfs_find_last_root(tree_root, objectid,
801 &root->root_item, &root->root_key);
802 BUG_ON(ret);
803
Chris Masondb945352007-10-15 16:15:53 -0400804 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
805 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400806 blocksize, 0);
Chris Mason3768f362007-03-13 16:47:54 -0400807 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500808 return 0;
809}
810
Chris Masone02119d2008-09-05 16:13:11 -0400811int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
812 struct btrfs_fs_info *fs_info)
813{
814 struct extent_buffer *eb;
Chris Masond0c803c2008-09-11 16:17:57 -0400815 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
816 u64 start = 0;
817 u64 end = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400818 int ret;
819
Chris Masond0c803c2008-09-11 16:17:57 -0400820 if (!log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400821 return 0;
822
Chris Masond0c803c2008-09-11 16:17:57 -0400823 while(1) {
824 ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
825 0, &start, &end, EXTENT_DIRTY);
826 if (ret)
827 break;
828
829 clear_extent_dirty(&log_root_tree->dirty_log_pages,
830 start, end, GFP_NOFS);
831 }
Chris Masone02119d2008-09-05 16:13:11 -0400832 eb = fs_info->log_root_tree->node;
833
834 WARN_ON(btrfs_header_level(eb) != 0);
835 WARN_ON(btrfs_header_nritems(eb) != 0);
836
Chris Masond00aff02008-09-11 15:54:42 -0400837 ret = btrfs_free_reserved_extent(fs_info->tree_root,
838 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400839 BUG_ON(ret);
840
841 free_extent_buffer(eb);
842 kfree(fs_info->log_root_tree);
843 fs_info->log_root_tree = NULL;
844 return 0;
845}
846
847int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
848 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400849{
850 struct btrfs_root *root;
851 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Masone02119d2008-09-05 16:13:11 -0400852
853 root = kzalloc(sizeof(*root), GFP_NOFS);
854 if (!root)
855 return -ENOMEM;
856
857 __setup_root(tree_root->nodesize, tree_root->leafsize,
858 tree_root->sectorsize, tree_root->stripesize,
859 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
860
861 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
862 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
863 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
864 root->ref_cows = 0;
865
866 root->node = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -0400867 0, BTRFS_TREE_LOG_OBJECTID,
868 trans->transid, 0, 0, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400869
870 btrfs_set_header_nritems(root->node, 0);
871 btrfs_set_header_level(root->node, 0);
872 btrfs_set_header_bytenr(root->node, root->node->start);
873 btrfs_set_header_generation(root->node, trans->transid);
874 btrfs_set_header_owner(root->node, BTRFS_TREE_LOG_OBJECTID);
875
876 write_extent_buffer(root->node, root->fs_info->fsid,
877 (unsigned long)btrfs_header_fsid(root->node),
878 BTRFS_FSID_SIZE);
879 btrfs_mark_buffer_dirty(root->node);
880 btrfs_tree_unlock(root->node);
881 fs_info->log_root_tree = root;
882 return 0;
883}
884
885struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
886 struct btrfs_key *location)
887{
888 struct btrfs_root *root;
889 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400890 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400891 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400892 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400893 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400894 int ret = 0;
895
Chris Mason5eda7b52007-06-22 14:16:25 -0400896 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400897 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400898 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400899 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400900 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400901 location->objectid, root);
902 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400903 kfree(root);
904 return ERR_PTR(ret);
905 }
906 goto insert;
907 }
908
Chris Masondb945352007-10-15 16:15:53 -0400909 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500910 tree_root->sectorsize, tree_root->stripesize,
911 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400912
913 path = btrfs_alloc_path();
914 BUG_ON(!path);
915 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
916 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400917 if (ret > 0)
918 ret = -ENOENT;
919 goto out;
920 }
Chris Mason5f39d392007-10-15 16:14:19 -0400921 l = path->nodes[0];
922 read_extent_buffer(l, &root->root_item,
923 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400924 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400925 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400926 ret = 0;
927out:
928 btrfs_release_path(root, path);
929 btrfs_free_path(path);
930 if (ret) {
931 kfree(root);
932 return ERR_PTR(ret);
933 }
Chris Masondb945352007-10-15 16:15:53 -0400934 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
935 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400936 blocksize, 0);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400937 BUG_ON(!root->node);
938insert:
Chris Masone02119d2008-09-05 16:13:11 -0400939 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
940 root->ref_cows = 1;
941 ret = btrfs_find_highest_inode(root, &highest_inode);
942 if (ret == 0) {
943 root->highest_inode = highest_inode;
944 root->last_inode_alloc = highest_inode;
945 }
Chris Mason5eda7b52007-06-22 14:16:25 -0400946 }
947 return root;
948}
949
Chris Masondc17ff82008-01-08 15:46:30 -0500950struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
951 u64 root_objectid)
952{
953 struct btrfs_root *root;
954
955 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
956 return fs_info->tree_root;
957 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
958 return fs_info->extent_root;
959
960 root = radix_tree_lookup(&fs_info->fs_roots_radix,
961 (unsigned long)root_objectid);
962 return root;
963}
964
Chris Masonedbd8d42007-12-21 16:27:24 -0500965struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
966 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400967{
968 struct btrfs_root *root;
969 int ret;
970
Chris Masonedbd8d42007-12-21 16:27:24 -0500971 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
972 return fs_info->tree_root;
973 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
974 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -0400975 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
976 return fs_info->chunk_root;
977 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
978 return fs_info->dev_root;
Chris Masonedbd8d42007-12-21 16:27:24 -0500979
Chris Mason5eda7b52007-06-22 14:16:25 -0400980 root = radix_tree_lookup(&fs_info->fs_roots_radix,
981 (unsigned long)location->objectid);
982 if (root)
983 return root;
984
Chris Masone02119d2008-09-05 16:13:11 -0400985 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -0400986 if (IS_ERR(root))
987 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400988 ret = radix_tree_insert(&fs_info->fs_roots_radix,
989 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400990 root);
991 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400992 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400993 kfree(root);
994 return ERR_PTR(ret);
995 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500996 ret = btrfs_find_dead_roots(fs_info->tree_root,
997 root->root_key.objectid, root);
998 BUG_ON(ret);
999
1000 return root;
1001}
1002
1003struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
1004 struct btrfs_key *location,
1005 const char *name, int namelen)
1006{
1007 struct btrfs_root *root;
1008 int ret;
1009
1010 root = btrfs_read_fs_root_no_name(fs_info, location);
1011 if (!root)
1012 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -04001013
Chris Mason4313b392008-01-03 09:08:48 -05001014 if (root->in_sysfs)
1015 return root;
1016
Josef Bacik58176a92007-08-29 15:47:34 -04001017 ret = btrfs_set_root_name(root, name, namelen);
1018 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001019 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001020 kfree(root);
1021 return ERR_PTR(ret);
1022 }
1023
1024 ret = btrfs_sysfs_add_root(root);
1025 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001026 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001027 kfree(root->name);
1028 kfree(root);
1029 return ERR_PTR(ret);
1030 }
Chris Mason4313b392008-01-03 09:08:48 -05001031 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001032 return root;
1033}
Chris Mason19c00dd2007-10-15 16:19:22 -04001034#if 0
1035static int add_hasher(struct btrfs_fs_info *info, char *type) {
1036 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001037
Chris Mason19c00dd2007-10-15 16:19:22 -04001038 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
1039 if (!hasher)
1040 return -ENOMEM;
1041 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
1042 if (!hasher->hash_tfm) {
1043 kfree(hasher);
1044 return -EINVAL;
1045 }
1046 spin_lock(&info->hash_lock);
1047 list_add(&hasher->list, &info->hashers);
1048 spin_unlock(&info->hash_lock);
1049 return 0;
1050}
1051#endif
Chris Mason04160082008-03-26 10:28:07 -04001052
1053static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1054{
1055 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1056 int ret = 0;
1057 struct list_head *cur;
1058 struct btrfs_device *device;
1059 struct backing_dev_info *bdi;
1060
Chris Masoncb03c742008-05-15 16:15:45 -04001061 if ((bdi_bits & (1 << BDI_write_congested)) &&
Chris Mason777e6bd2008-08-15 15:34:15 -04001062 btrfs_congested_async(info, 0))
Chris Masoncb03c742008-05-15 16:15:45 -04001063 return 1;
Chris Masoncb03c742008-05-15 16:15:45 -04001064
Chris Mason04160082008-03-26 10:28:07 -04001065 list_for_each(cur, &info->fs_devices->devices) {
1066 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001067 if (!device->bdev)
1068 continue;
Chris Mason04160082008-03-26 10:28:07 -04001069 bdi = blk_get_backing_dev_info(device->bdev);
1070 if (bdi && bdi_congested(bdi, bdi_bits)) {
1071 ret = 1;
1072 break;
1073 }
1074 }
1075 return ret;
1076}
1077
Chris Mason38b66982008-04-22 09:22:11 -04001078/*
1079 * this unplugs every device on the box, and it is only used when page
1080 * is null
1081 */
1082static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1083{
1084 struct list_head *cur;
1085 struct btrfs_device *device;
1086 struct btrfs_fs_info *info;
1087
1088 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
1089 list_for_each(cur, &info->fs_devices->devices) {
1090 device = list_entry(cur, struct btrfs_device, dev_list);
1091 bdi = blk_get_backing_dev_info(device->bdev);
1092 if (bdi->unplug_io_fn) {
1093 bdi->unplug_io_fn(bdi, page);
1094 }
1095 }
1096}
1097
Chris Mason04160082008-03-26 10:28:07 -04001098void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1099{
Chris Mason38b66982008-04-22 09:22:11 -04001100 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -04001101 struct extent_map_tree *em_tree;
1102 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -04001103 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -04001104 u64 offset;
1105
Chris Masonbcbfce82008-04-22 13:26:47 -04001106 /* the generic O_DIRECT read code does this */
Chris Mason38b66982008-04-22 09:22:11 -04001107 if (!page) {
1108 __unplug_io_fn(bdi, page);
1109 return;
1110 }
1111
Chris Masonbcbfce82008-04-22 13:26:47 -04001112 /*
1113 * page->mapping may change at any time. Get a consistent copy
1114 * and use that for everything below
1115 */
1116 smp_mb();
1117 mapping = page->mapping;
1118 if (!mapping)
1119 return;
1120
1121 inode = mapping->host;
Chris Mason38b66982008-04-22 09:22:11 -04001122 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -04001123
Chris Masonf2d8d742008-04-21 10:03:05 -04001124 em_tree = &BTRFS_I(inode)->extent_tree;
1125 spin_lock(&em_tree->lock);
1126 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1127 spin_unlock(&em_tree->lock);
Chris Mason89642222008-07-24 09:41:53 -04001128 if (!em) {
1129 __unplug_io_fn(bdi, page);
Chris Masonf2d8d742008-04-21 10:03:05 -04001130 return;
Chris Mason89642222008-07-24 09:41:53 -04001131 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001132
Chris Mason89642222008-07-24 09:41:53 -04001133 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1134 free_extent_map(em);
1135 __unplug_io_fn(bdi, page);
1136 return;
1137 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001138 offset = offset - em->start;
1139 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1140 em->block_start + offset, page);
1141 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001142}
1143
1144static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1145{
1146 bdi_init(bdi);
Chris Mason4575c9c2008-04-18 16:13:31 -04001147 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001148 bdi->state = 0;
1149 bdi->capabilities = default_backing_dev_info.capabilities;
1150 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1151 bdi->unplug_io_data = info;
1152 bdi->congested_fn = btrfs_congested_fn;
1153 bdi->congested_data = info;
1154 return 0;
1155}
1156
Chris Masonce9adaa2008-04-09 16:28:12 -04001157static int bio_ready_for_csum(struct bio *bio)
1158{
1159 u64 length = 0;
1160 u64 buf_len = 0;
1161 u64 start = 0;
1162 struct page *page;
1163 struct extent_io_tree *io_tree = NULL;
1164 struct btrfs_fs_info *info = NULL;
1165 struct bio_vec *bvec;
1166 int i;
1167 int ret;
1168
1169 bio_for_each_segment(bvec, bio, i) {
1170 page = bvec->bv_page;
1171 if (page->private == EXTENT_PAGE_PRIVATE) {
1172 length += bvec->bv_len;
1173 continue;
1174 }
1175 if (!page->private) {
1176 length += bvec->bv_len;
1177 continue;
1178 }
1179 length = bvec->bv_len;
1180 buf_len = page->private >> 2;
1181 start = page_offset(page) + bvec->bv_offset;
1182 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1183 info = BTRFS_I(page->mapping->host)->root->fs_info;
1184 }
1185 /* are we fully contained in this bio? */
1186 if (buf_len <= length)
1187 return 1;
1188
1189 ret = extent_range_uptodate(io_tree, start + length,
1190 start + buf_len - 1);
1191 if (ret == 1)
1192 return ret;
1193 return ret;
1194}
1195
Chris Mason8b712842008-06-11 16:50:36 -04001196/*
1197 * called by the kthread helper functions to finally call the bio end_io
1198 * functions. This is where read checksum verification actually happens
1199 */
1200static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001201{
Chris Masonce9adaa2008-04-09 16:28:12 -04001202 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001203 struct end_io_wq *end_io_wq;
1204 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001205 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001206
Chris Mason8b712842008-06-11 16:50:36 -04001207 end_io_wq = container_of(work, struct end_io_wq, work);
1208 bio = end_io_wq->bio;
1209 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001210
Chris Mason8b712842008-06-11 16:50:36 -04001211 /* metadata bios are special because the whole tree block must
1212 * be checksummed at once. This makes sure the entire block is in
1213 * ram and up to date before trying to verify things. For
1214 * blocksize <= pagesize, it is basically a noop
1215 */
1216 if (end_io_wq->metadata && !bio_ready_for_csum(bio)) {
1217 btrfs_queue_worker(&fs_info->endio_workers,
1218 &end_io_wq->work);
1219 return;
1220 }
1221 error = end_io_wq->error;
1222 bio->bi_private = end_io_wq->private;
1223 bio->bi_end_io = end_io_wq->end_io;
1224 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001225 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001226}
1227
Chris Masona74a4b92008-06-25 16:01:31 -04001228static int cleaner_kthread(void *arg)
1229{
1230 struct btrfs_root *root = arg;
1231
1232 do {
1233 smp_mb();
1234 if (root->fs_info->closing)
1235 break;
1236
1237 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1238 mutex_lock(&root->fs_info->cleaner_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001239 btrfs_clean_old_snapshots(root);
Chris Masona74a4b92008-06-25 16:01:31 -04001240 mutex_unlock(&root->fs_info->cleaner_mutex);
1241
1242 if (freezing(current)) {
1243 refrigerator();
1244 } else {
1245 smp_mb();
1246 if (root->fs_info->closing)
1247 break;
1248 set_current_state(TASK_INTERRUPTIBLE);
1249 schedule();
1250 __set_current_state(TASK_RUNNING);
1251 }
1252 } while (!kthread_should_stop());
1253 return 0;
1254}
1255
1256static int transaction_kthread(void *arg)
1257{
1258 struct btrfs_root *root = arg;
1259 struct btrfs_trans_handle *trans;
1260 struct btrfs_transaction *cur;
1261 unsigned long now;
1262 unsigned long delay;
1263 int ret;
1264
1265 do {
1266 smp_mb();
1267 if (root->fs_info->closing)
1268 break;
1269
1270 delay = HZ * 30;
1271 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1272 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1273
Chris Masonab78c842008-07-29 16:15:18 -04001274 if (root->fs_info->total_ref_cache_size > 20 * 1024 * 1024) {
1275 printk("btrfs: total reference cache size %Lu\n",
1276 root->fs_info->total_ref_cache_size);
1277 }
Yan Zheng31153d82008-07-28 15:32:19 -04001278
Chris Masona74a4b92008-06-25 16:01:31 -04001279 mutex_lock(&root->fs_info->trans_mutex);
1280 cur = root->fs_info->running_transaction;
1281 if (!cur) {
1282 mutex_unlock(&root->fs_info->trans_mutex);
1283 goto sleep;
1284 }
Yan Zheng31153d82008-07-28 15:32:19 -04001285
Chris Masona74a4b92008-06-25 16:01:31 -04001286 now = get_seconds();
1287 if (now < cur->start_time || now - cur->start_time < 30) {
1288 mutex_unlock(&root->fs_info->trans_mutex);
1289 delay = HZ * 5;
1290 goto sleep;
1291 }
1292 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001293 trans = btrfs_start_transaction(root, 1);
1294 ret = btrfs_commit_transaction(trans, root);
1295sleep:
1296 wake_up_process(root->fs_info->cleaner_kthread);
1297 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1298
1299 if (freezing(current)) {
1300 refrigerator();
1301 } else {
1302 if (root->fs_info->closing)
1303 break;
1304 set_current_state(TASK_INTERRUPTIBLE);
1305 schedule_timeout(delay);
1306 __set_current_state(TASK_RUNNING);
1307 }
1308 } while (!kthread_should_stop());
1309 return 0;
1310}
1311
Chris Mason8a4b83c2008-03-24 15:02:07 -04001312struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001313 struct btrfs_fs_devices *fs_devices,
1314 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001315{
Chris Masondb945352007-10-15 16:15:53 -04001316 u32 sectorsize;
1317 u32 nodesize;
1318 u32 leafsize;
1319 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001320 u32 stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001321 struct buffer_head *bh;
Chris Masone02119d2008-09-05 16:13:11 -04001322 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001323 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001324 struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001325 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001326 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001327 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001328 struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001329 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001330 struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001331 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001332 struct btrfs_root *log_tree_root;
1333
Chris Masoneb60cea2007-02-02 09:18:22 -05001334 int ret;
Yane58ca022008-04-01 11:21:34 -04001335 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001336
Chris Mason2c90e5d2007-04-02 10:50:19 -04001337 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001338
Chris Mason39279cc2007-06-12 06:35:45 -04001339 if (!extent_root || !tree_root || !fs_info) {
1340 err = -ENOMEM;
1341 goto fail;
1342 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001343 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001344 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001345 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001346 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001347 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason19c00dd2007-10-15 16:19:22 -04001348 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001349 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001350 spin_lock_init(&fs_info->new_trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001351 spin_lock_init(&fs_info->ref_cache_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001352
Josef Bacik58176a92007-08-29 15:47:34 -04001353 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001354 fs_info->tree_root = tree_root;
1355 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001356 fs_info->chunk_root = chunk_root;
1357 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001358 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001359 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001360 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001361 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001362 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04001363 atomic_set(&fs_info->nr_async_bios, 0);
Chris Masona2135012008-06-25 16:01:30 -04001364 atomic_set(&fs_info->throttles, 0);
Chris Masonab78c842008-07-29 16:15:18 -04001365 atomic_set(&fs_info->throttle_gen, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001366 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001367 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001368 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001369 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001370 fs_info->btree_inode = new_inode(sb);
1371 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001372 fs_info->btree_inode->i_nlink = 1;
Chris Mason4543df72008-06-11 21:47:56 -04001373 fs_info->thread_pool_size = min(num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001374
Chris Mason3eaa2882008-07-24 11:57:52 -04001375 INIT_LIST_HEAD(&fs_info->ordered_extents);
1376 spin_lock_init(&fs_info->ordered_extent_lock);
1377
Chris Masona061fc82008-05-07 11:43:44 -04001378 sb->s_blocksize = 4096;
1379 sb->s_blocksize_bits = blksize_bits(4096);
1380
Chris Mason0afbaf82008-04-18 14:17:20 -04001381 /*
1382 * we set the i_size on the btree inode to the max possible int.
1383 * the real end of the address space is determined by all of
1384 * the devices in the system
1385 */
1386 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001387 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001388 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1389
Chris Masond1310b22008-01-24 16:13:08 -05001390 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001391 fs_info->btree_inode->i_mapping,
1392 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001393 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1394 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001395
Chris Masond1310b22008-01-24 16:13:08 -05001396 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1397
Josef Bacik0f9dd462008-09-23 13:14:11 -04001398 spin_lock_init(&fs_info->block_group_cache_lock);
1399 fs_info->block_group_cache_tree.rb_node = NULL;
1400
Chris Masond1310b22008-01-24 16:13:08 -05001401 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001402 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001403 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -04001404 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001405 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -04001406 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001407 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001408
Zheng Yane4657682008-09-26 10:04:53 -04001409 btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree);
1410
Chris Mason0f7d52f2007-04-09 10:42:37 -04001411 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1412 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1413 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001414 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001415
Chris Mason79154b12007-03-22 15:59:16 -04001416 mutex_init(&fs_info->trans_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001417 mutex_init(&fs_info->tree_log_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001418 mutex_init(&fs_info->drop_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001419 mutex_init(&fs_info->alloc_mutex);
1420 mutex_init(&fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001421 mutex_init(&fs_info->transaction_kthread_mutex);
1422 mutex_init(&fs_info->cleaner_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001423 mutex_init(&fs_info->volume_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001424 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001425 init_waitqueue_head(&fs_info->transaction_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04001426 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Masone02119d2008-09-05 16:13:11 -04001427 init_waitqueue_head(&fs_info->tree_log_wait);
1428 atomic_set(&fs_info->tree_log_commit, 0);
1429 atomic_set(&fs_info->tree_log_writers, 0);
1430 fs_info->tree_log_transid = 0;
Chris Mason3768f362007-03-13 16:47:54 -04001431
Chris Mason19c00dd2007-10-15 16:19:22 -04001432#if 0
1433 ret = add_hasher(fs_info, "crc32c");
1434 if (ret) {
1435 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
1436 err = -ENOMEM;
1437 goto fail_iput;
1438 }
1439#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001440 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001441 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001442
Chris Masond98237b2007-03-28 13:57:48 -04001443
Chris Masona061fc82008-05-07 11:43:44 -04001444 bh = __bread(fs_devices->latest_bdev,
1445 BTRFS_SUPER_INFO_OFFSET / 4096, 4096);
1446 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001447 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001448
Chris Masona061fc82008-05-07 11:43:44 -04001449 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
1450 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001451
Chris Masona061fc82008-05-07 11:43:44 -04001452 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001453
Chris Mason5f39d392007-10-15 16:14:19 -04001454 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001455 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -04001456 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001457
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001458 err = btrfs_parse_options(tree_root, options);
1459 if (err)
1460 goto fail_sb_buffer;
Chris Masondfe25022008-05-13 13:46:40 -04001461
Chris Mason4543df72008-06-11 21:47:56 -04001462 /*
1463 * we need to start all the end_io workers up front because the
1464 * queue work function gets called at interrupt time, and so it
1465 * cannot dynamically grow.
1466 */
Chris Mason5443be42008-08-15 15:34:16 -04001467 btrfs_init_workers(&fs_info->workers, "worker",
1468 fs_info->thread_pool_size);
1469 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04001470 min_t(u64, fs_devices->num_devices,
1471 fs_info->thread_pool_size));
Chris Mason61b49442008-07-31 15:42:53 -04001472
1473 /* a higher idle thresh on the submit workers makes it much more
1474 * likely that bios will be send down in a sane order to the
1475 * devices
1476 */
1477 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04001478
1479 /* fs_info->workers is responsible for checksumming file data
1480 * blocks and metadata. Using a larger idle thresh allows each
1481 * worker thread to operate on things in roughly the order they
1482 * were sent by the writeback daemons, improving overall locality
1483 * of the IO going down the pipe.
1484 */
1485 fs_info->workers.idle_thresh = 128;
Chris Mason61b49442008-07-31 15:42:53 -04001486
Chris Mason5443be42008-08-15 15:34:16 -04001487 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1);
1488 btrfs_init_workers(&fs_info->endio_workers, "endio",
1489 fs_info->thread_pool_size);
1490 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Masone6dcd2d2008-07-17 12:53:50 -04001491 fs_info->thread_pool_size);
Chris Mason61b49442008-07-31 15:42:53 -04001492
1493 /*
1494 * endios are largely parallel and should have a very
1495 * low idle thresh
1496 */
1497 fs_info->endio_workers.idle_thresh = 4;
Chris Mason3a5f1d42008-09-11 15:53:37 -04001498 fs_info->endio_write_workers.idle_thresh = 64;
Chris Mason61b49442008-07-31 15:42:53 -04001499
Chris Mason4543df72008-06-11 21:47:56 -04001500 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001501 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason247e7432008-07-17 12:53:51 -04001502 btrfs_start_workers(&fs_info->fixup_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001503 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001504 btrfs_start_workers(&fs_info->endio_write_workers,
1505 fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001506
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001507 err = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001508 if (btrfs_super_num_devices(disk_super) > fs_devices->open_devices) {
Chris Mason8a4b83c2008-03-24 15:02:07 -04001509 printk("Btrfs: wanted %llu devices, but found %llu\n",
1510 (unsigned long long)btrfs_super_num_devices(disk_super),
Chris Masona0af4692008-05-13 16:03:06 -04001511 (unsigned long long)fs_devices->open_devices);
Chris Masondfe25022008-05-13 13:46:40 -04001512 if (btrfs_test_opt(tree_root, DEGRADED))
1513 printk("continuing in degraded mode\n");
1514 else {
1515 goto fail_sb_buffer;
1516 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001517 }
Chris Masondfe25022008-05-13 13:46:40 -04001518
Chris Mason4575c9c2008-04-18 16:13:31 -04001519 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
1520
Chris Masondb945352007-10-15 16:15:53 -04001521 nodesize = btrfs_super_nodesize(disk_super);
1522 leafsize = btrfs_super_leafsize(disk_super);
1523 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001524 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001525 tree_root->nodesize = nodesize;
1526 tree_root->leafsize = leafsize;
1527 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001528 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001529
1530 sb->s_blocksize = sectorsize;
1531 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001532
Chris Mason39279cc2007-06-12 06:35:45 -04001533 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1534 sizeof(disk_super->magic))) {
1535 printk("btrfs: valid FS not found on %s\n", sb->s_id);
1536 goto fail_sb_buffer;
1537 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001538
Chris Mason925baed2008-06-25 16:01:30 -04001539 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001540 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001541 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001542 if (ret) {
1543 printk("btrfs: failed to read the system array on %s\n",
1544 sb->s_id);
1545 goto fail_sys_array;
1546 }
Chris Mason0b86a832008-03-24 15:01:56 -04001547
1548 blocksize = btrfs_level_size(tree_root,
1549 btrfs_super_chunk_root_level(disk_super));
1550
1551 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1552 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1553
1554 chunk_root->node = read_tree_block(chunk_root,
1555 btrfs_super_chunk_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001556 blocksize, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001557 BUG_ON(!chunk_root->node);
1558
Chris Masone17cade2008-04-15 15:41:47 -04001559 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
1560 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1561 BTRFS_UUID_SIZE);
1562
Chris Mason925baed2008-06-25 16:01:30 -04001563 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001564 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001565 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001566 BUG_ON(ret);
1567
Chris Masondfe25022008-05-13 13:46:40 -04001568 btrfs_close_extra_devices(fs_devices);
1569
Chris Masondb945352007-10-15 16:15:53 -04001570 blocksize = btrfs_level_size(tree_root,
1571 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -04001572
Chris Mason0b86a832008-03-24 15:01:56 -04001573
Chris Masone20d96d2007-03-22 12:13:20 -04001574 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001575 btrfs_super_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001576 blocksize, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001577 if (!tree_root->node)
1578 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -04001579
Chris Masondb945352007-10-15 16:15:53 -04001580
1581 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001582 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001583 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001584 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001585 extent_root->track_dirty = 1;
1586
1587 ret = find_and_setup_root(tree_root, fs_info,
1588 BTRFS_DEV_TREE_OBJECTID, dev_root);
1589 dev_root->track_dirty = 1;
1590
1591 if (ret)
1592 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001593
Chris Mason9078a3e2007-04-26 16:46:15 -04001594 btrfs_read_block_groups(extent_root);
1595
Chris Mason0f7d52f2007-04-09 10:42:37 -04001596 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Masond18a2c42008-04-04 15:40:00 -04001597 fs_info->data_alloc_profile = (u64)-1;
1598 fs_info->metadata_alloc_profile = (u64)-1;
1599 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
Chris Masona74a4b92008-06-25 16:01:31 -04001600 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
1601 "btrfs-cleaner");
1602 if (!fs_info->cleaner_kthread)
1603 goto fail_extent_root;
1604
1605 fs_info->transaction_kthread = kthread_run(transaction_kthread,
1606 tree_root,
1607 "btrfs-transaction");
1608 if (!fs_info->transaction_kthread)
Chris Mason3f157a22008-06-25 16:01:31 -04001609 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04001610
Chris Masone02119d2008-09-05 16:13:11 -04001611 if (btrfs_super_log_root(disk_super) != 0) {
1612 u32 blocksize;
1613 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04001614
Chris Masone02119d2008-09-05 16:13:11 -04001615 blocksize =
1616 btrfs_level_size(tree_root,
1617 btrfs_super_log_root_level(disk_super));
1618
1619 log_tree_root = kzalloc(sizeof(struct btrfs_root),
1620 GFP_NOFS);
1621
1622 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1623 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1624
1625 log_tree_root->node = read_tree_block(tree_root, bytenr,
1626 blocksize, 0);
1627 ret = btrfs_recover_log_trees(log_tree_root);
1628 BUG_ON(ret);
1629 }
1630 fs_info->last_trans_committed = btrfs_super_generation(disk_super);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001631 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001632
Chris Mason3f157a22008-06-25 16:01:31 -04001633fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04001634 kthread_stop(fs_info->cleaner_kthread);
Chris Mason0b86a832008-03-24 15:01:56 -04001635fail_extent_root:
1636 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001637fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001638 free_extent_buffer(tree_root->node);
Chris Mason84eed902008-04-25 09:04:37 -04001639fail_sys_array:
Chris Mason39279cc2007-06-12 06:35:45 -04001640fail_sb_buffer:
Chris Mason247e7432008-07-17 12:53:51 -04001641 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001642 btrfs_stop_workers(&fs_info->workers);
1643 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001644 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001645 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001646fail_iput:
1647 iput(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001648fail:
Chris Masondfe25022008-05-13 13:46:40 -04001649 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001650 btrfs_mapping_tree_free(&fs_info->mapping_tree);
1651
Chris Mason39279cc2007-06-12 06:35:45 -04001652 kfree(extent_root);
1653 kfree(tree_root);
Chris Mason2d2ae542008-03-26 16:24:23 -04001654 bdi_destroy(&fs_info->bdi);
Chris Mason39279cc2007-06-12 06:35:45 -04001655 kfree(fs_info);
1656 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001657}
1658
Chris Masonf2984462008-04-10 16:19:33 -04001659static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1660{
1661 char b[BDEVNAME_SIZE];
1662
1663 if (uptodate) {
1664 set_buffer_uptodate(bh);
1665 } else {
1666 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1667 printk(KERN_WARNING "lost page write due to "
1668 "I/O error on %s\n",
1669 bdevname(bh->b_bdev, b));
1670 }
Chris Mason1259ab72008-05-12 13:39:03 -04001671 /* note, we dont' set_buffer_write_io_error because we have
1672 * our own ways of dealing with the IO errors
1673 */
Chris Masonf2984462008-04-10 16:19:33 -04001674 clear_buffer_uptodate(bh);
1675 }
1676 unlock_buffer(bh);
1677 put_bh(bh);
1678}
1679
1680int write_all_supers(struct btrfs_root *root)
1681{
1682 struct list_head *cur;
1683 struct list_head *head = &root->fs_info->fs_devices->devices;
1684 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04001685 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04001686 struct btrfs_dev_item *dev_item;
1687 struct buffer_head *bh;
1688 int ret;
1689 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04001690 int max_errors;
1691 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001692 u32 crc;
1693 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04001694
Chris Masona236aed2008-04-29 09:38:00 -04001695 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04001696 do_barriers = !btrfs_test_opt(root, NOBARRIER);
1697
Chris Masona061fc82008-05-07 11:43:44 -04001698 sb = &root->fs_info->super_for_commit;
1699 dev_item = &sb->dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04001700 list_for_each(cur, head) {
1701 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001702 if (!dev->bdev) {
1703 total_errors++;
1704 continue;
1705 }
1706 if (!dev->in_fs_metadata)
1707 continue;
1708
Chris Masona061fc82008-05-07 11:43:44 -04001709 btrfs_set_stack_device_type(dev_item, dev->type);
1710 btrfs_set_stack_device_id(dev_item, dev->devid);
1711 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1712 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1713 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1714 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1715 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1716 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1717 flags = btrfs_super_flags(sb);
1718 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04001719
Chris Masonf2984462008-04-10 16:19:33 -04001720
Chris Masona061fc82008-05-07 11:43:44 -04001721 crc = ~(u32)0;
1722 crc = btrfs_csum_data(root, (char *)sb + BTRFS_CSUM_SIZE, crc,
1723 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1724 btrfs_csum_final(crc, sb->csum);
1725
1726 bh = __getblk(dev->bdev, BTRFS_SUPER_INFO_OFFSET / 4096,
Chris Masonf2984462008-04-10 16:19:33 -04001727 BTRFS_SUPER_INFO_SIZE);
1728
Chris Masona061fc82008-05-07 11:43:44 -04001729 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -04001730 dev->pending_io = bh;
1731
1732 get_bh(bh);
1733 set_buffer_uptodate(bh);
1734 lock_buffer(bh);
1735 bh->b_end_io = btrfs_end_buffer_write_sync;
1736
1737 if (do_barriers && dev->barriers) {
1738 ret = submit_bh(WRITE_BARRIER, bh);
1739 if (ret == -EOPNOTSUPP) {
1740 printk("btrfs: disabling barriers on dev %s\n",
1741 dev->name);
1742 set_buffer_uptodate(bh);
1743 dev->barriers = 0;
1744 get_bh(bh);
1745 lock_buffer(bh);
1746 ret = submit_bh(WRITE, bh);
1747 }
1748 } else {
1749 ret = submit_bh(WRITE, bh);
1750 }
Chris Masona236aed2008-04-29 09:38:00 -04001751 if (ret)
1752 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001753 }
Chris Masona236aed2008-04-29 09:38:00 -04001754 if (total_errors > max_errors) {
1755 printk("btrfs: %d errors while writing supers\n", total_errors);
1756 BUG();
1757 }
1758 total_errors = 0;
Chris Masonf2984462008-04-10 16:19:33 -04001759
1760 list_for_each(cur, head) {
1761 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001762 if (!dev->bdev)
1763 continue;
1764 if (!dev->in_fs_metadata)
1765 continue;
1766
Chris Masonf2984462008-04-10 16:19:33 -04001767 BUG_ON(!dev->pending_io);
1768 bh = dev->pending_io;
1769 wait_on_buffer(bh);
1770 if (!buffer_uptodate(dev->pending_io)) {
1771 if (do_barriers && dev->barriers) {
1772 printk("btrfs: disabling barriers on dev %s\n",
1773 dev->name);
1774 set_buffer_uptodate(bh);
1775 get_bh(bh);
1776 lock_buffer(bh);
1777 dev->barriers = 0;
1778 ret = submit_bh(WRITE, bh);
1779 BUG_ON(ret);
1780 wait_on_buffer(bh);
Chris Mason1259ab72008-05-12 13:39:03 -04001781 if (!buffer_uptodate(bh))
1782 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001783 } else {
Chris Masona236aed2008-04-29 09:38:00 -04001784 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001785 }
1786
1787 }
1788 dev->pending_io = NULL;
1789 brelse(bh);
1790 }
Chris Masona236aed2008-04-29 09:38:00 -04001791 if (total_errors > max_errors) {
1792 printk("btrfs: %d errors while writing supers\n", total_errors);
1793 BUG();
1794 }
Chris Masonf2984462008-04-10 16:19:33 -04001795 return 0;
1796}
1797
Chris Masone089f052007-03-16 16:20:31 -04001798int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -04001799 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -05001800{
Chris Masone66f7092007-04-20 13:16:02 -04001801 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001802
Chris Masonf2984462008-04-10 16:19:33 -04001803 ret = write_all_supers(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001804 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05001805}
1806
Chris Mason5eda7b52007-06-22 14:16:25 -04001807int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04001808{
1809 radix_tree_delete(&fs_info->fs_roots_radix,
1810 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -05001811 if (root->in_sysfs)
1812 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -04001813 if (root->inode)
1814 iput(root->inode);
1815 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001816 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04001817 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04001818 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -04001819 if (root->name)
1820 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04001821 kfree(root);
1822 return 0;
1823}
1824
Chris Mason35b7e472007-05-02 15:53:43 -04001825static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001826{
1827 int ret;
1828 struct btrfs_root *gang[8];
1829 int i;
1830
1831 while(1) {
1832 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
1833 (void **)gang, 0,
1834 ARRAY_SIZE(gang));
1835 if (!ret)
1836 break;
Chris Mason2619ba12007-04-10 16:58:11 -04001837 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04001838 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001839 }
1840 return 0;
1841}
Chris Masonb4100d62007-04-12 12:14:00 -04001842
Chris Masone20d96d2007-03-22 12:13:20 -04001843int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05001844{
Chris Mason3768f362007-03-13 16:47:54 -04001845 int ret;
Chris Masone089f052007-03-16 16:20:31 -04001846 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001847 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -04001848
Chris Masonfacda1e2007-06-08 18:11:48 -04001849 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04001850 smp_mb();
1851
Chris Masona74a4b92008-06-25 16:01:31 -04001852 kthread_stop(root->fs_info->transaction_kthread);
1853 kthread_stop(root->fs_info->cleaner_kthread);
1854
Chris Masona74a4b92008-06-25 16:01:31 -04001855 btrfs_clean_old_snapshots(root);
Chris Mason79154b12007-03-22 15:59:16 -04001856 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001857 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001858 /* run commit again to drop the original snapshot */
1859 trans = btrfs_start_transaction(root, 1);
1860 btrfs_commit_transaction(trans, root);
1861 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001862 BUG_ON(ret);
Chris Masond6bfde82008-04-30 13:59:35 -04001863
Chris Mason79154b12007-03-22 15:59:16 -04001864 write_ctree_super(NULL, root);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001865
Chris Masonb0c68f82008-01-31 11:05:37 -05001866 if (fs_info->delalloc_bytes) {
1867 printk("btrfs: at unmount delalloc count %Lu\n",
1868 fs_info->delalloc_bytes);
1869 }
Yan Zheng31153d82008-07-28 15:32:19 -04001870 if (fs_info->total_ref_cache_size) {
1871 printk("btrfs: at umount reference cache size %Lu\n",
1872 fs_info->total_ref_cache_size);
1873 }
Yanbcc63ab2008-07-30 16:29:20 -04001874
Chris Mason0f7d52f2007-04-09 10:42:37 -04001875 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001876 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001877
Chris Mason0f7d52f2007-04-09 10:42:37 -04001878 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001879 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001880
Chris Mason0b86a832008-03-24 15:01:56 -04001881 if (root->fs_info->chunk_root->node);
1882 free_extent_buffer(root->fs_info->chunk_root->node);
1883
1884 if (root->fs_info->dev_root->node);
1885 free_extent_buffer(root->fs_info->dev_root->node);
1886
Chris Mason9078a3e2007-04-26 16:46:15 -04001887 btrfs_free_block_groups(root->fs_info);
Chris Mason4ca8b412008-08-05 13:30:48 -04001888 fs_info->closing = 2;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001889 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001890
1891 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1892
Chris Masondb945352007-10-15 16:15:53 -04001893 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001894
Chris Mason247e7432008-07-17 12:53:51 -04001895 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001896 btrfs_stop_workers(&fs_info->workers);
1897 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001898 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001899 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04001900
Chris Masondb945352007-10-15 16:15:53 -04001901 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001902#if 0
1903 while(!list_empty(&fs_info->hashers)) {
1904 struct btrfs_hasher *hasher;
1905 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1906 hashers);
1907 list_del(&hasher->hashers);
1908 crypto_free_hash(&fs_info->hash_tfm);
1909 kfree(hasher);
1910 }
1911#endif
Chris Masondfe25022008-05-13 13:46:40 -04001912 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04001913 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04001914
Chris Mason04160082008-03-26 10:28:07 -04001915 bdi_destroy(&fs_info->bdi);
Chris Mason0b86a832008-03-24 15:01:56 -04001916
Chris Mason0f7d52f2007-04-09 10:42:37 -04001917 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001918 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001919 kfree(fs_info->chunk_root);
1920 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001921 return 0;
1922}
1923
Chris Mason1259ab72008-05-12 13:39:03 -04001924int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04001925{
Chris Mason1259ab72008-05-12 13:39:03 -04001926 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04001927 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04001928
1929 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
1930 if (!ret)
1931 return ret;
1932
1933 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
1934 parent_transid);
1935 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001936}
Chris Mason6702ed42007-08-07 16:15:09 -04001937
Chris Mason5f39d392007-10-15 16:14:19 -04001938int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1939{
Chris Mason810191f2007-10-15 16:18:55 -04001940 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001941 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001942 buf);
1943}
1944
1945void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1946{
Chris Mason810191f2007-10-15 16:18:55 -04001947 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001948 u64 transid = btrfs_header_generation(buf);
1949 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001950
Chris Mason925baed2008-06-25 16:01:30 -04001951 WARN_ON(!btrfs_tree_locked(buf));
Chris Masonccd467d2007-06-28 15:57:36 -04001952 if (transid != root->fs_info->generation) {
1953 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001954 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001955 transid, root->fs_info->generation);
1956 WARN_ON(1);
1957 }
Chris Masond1310b22008-01-24 16:13:08 -05001958 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001959}
1960
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001961void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001962{
Chris Mason188de642008-05-09 11:52:25 -04001963 /*
1964 * looks as though older kernels can get into trouble with
1965 * this code, they end up stuck in balance_dirty_pages forever
1966 */
Chris Masond6bfde82008-04-30 13:59:35 -04001967 struct extent_io_tree *tree;
1968 u64 num_dirty;
1969 u64 start = 0;
Chris Masonb64a2852008-08-20 13:39:41 -04001970 unsigned long thresh = 96 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04001971 tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
1972
Chris Masonb64a2852008-08-20 13:39:41 -04001973 if (current_is_pdflush() || current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04001974 return;
1975
1976 num_dirty = count_range_bits(tree, &start, (u64)-1,
1977 thresh, EXTENT_DIRTY);
1978 if (num_dirty > thresh) {
1979 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05001980 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04001981 }
Chris Mason188de642008-05-09 11:52:25 -04001982 return;
Chris Mason35b7e472007-05-02 15:53:43 -04001983}
Chris Mason6b800532007-10-15 16:17:34 -04001984
Chris Masonca7a79a2008-05-12 12:59:19 -04001985int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04001986{
Chris Mason810191f2007-10-15 16:18:55 -04001987 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04001988 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04001989 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -04001990 if (ret == 0) {
1991 buf->flags |= EXTENT_UPTODATE;
1992 }
1993 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04001994}
Chris Mason0da54682007-11-07 21:08:01 -05001995
Chris Mason4bef0842008-09-08 11:18:08 -04001996int btree_lock_page_hook(struct page *page)
1997{
1998 struct inode *inode = page->mapping->host;
1999 struct btrfs_root *root = BTRFS_I(inode)->root;
2000 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2001 struct extent_buffer *eb;
2002 unsigned long len;
2003 u64 bytenr = page_offset(page);
2004
2005 if (page->private == EXTENT_PAGE_PRIVATE)
2006 goto out;
2007
2008 len = page->private >> 2;
2009 eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
2010 if (!eb)
2011 goto out;
2012
2013 btrfs_tree_lock(eb);
2014 spin_lock(&root->fs_info->hash_lock);
2015 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
2016 spin_unlock(&root->fs_info->hash_lock);
2017 btrfs_tree_unlock(eb);
2018 free_extent_buffer(eb);
2019out:
2020 lock_page(page);
2021 return 0;
2022}
2023
Chris Masond1310b22008-01-24 16:13:08 -05002024static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04002025 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04002026 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04002027 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04002028 /* note we're sharing with inode.c for the merge bio hook */
2029 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05002030};