blob: 45b4f7285275dd839c81cf7bf4ac0b97b39a9b4a [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 Mason8c8bee12008-09-29 11:19:10 -0400463
464 while(atomic_read(&fs_info->async_submit_draining) &&
465 atomic_read(&fs_info->nr_async_submits)) {
466 wait_event(fs_info->async_submit_wait,
467 (atomic_read(&fs_info->nr_async_submits) == 0));
468 }
469
Chris Masoncb03c742008-05-15 16:15:45 -0400470 atomic_inc(&fs_info->nr_async_submits);
Chris Mason8b712842008-06-11 16:50:36 -0400471 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason4854ddd2008-08-15 15:34:17 -0400472
Chris Mason9473f162008-08-28 06:15:24 -0400473 if (atomic_read(&fs_info->nr_async_submits) > limit) {
474 wait_event_timeout(fs_info->async_submit_wait,
Chris Mason4854ddd2008-08-15 15:34:17 -0400475 (atomic_read(&fs_info->nr_async_submits) < limit),
476 HZ/10);
Chris Mason9473f162008-08-28 06:15:24 -0400477
478 wait_event_timeout(fs_info->async_submit_wait,
479 (atomic_read(&fs_info->nr_async_bios) < limit),
480 HZ/10);
481 }
Chris Mason44b8bd72008-04-16 11:14:51 -0400482 return 0;
483}
484
Chris Masonce3ed712008-09-23 13:14:12 -0400485static int btree_csum_one_bio(struct bio *bio)
486{
487 struct bio_vec *bvec = bio->bi_io_vec;
488 int bio_index = 0;
489 struct btrfs_root *root;
490
491 WARN_ON(bio->bi_vcnt <= 0);
492 while(bio_index < bio->bi_vcnt) {
493 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
494 csum_dirty_buffer(root, bvec->bv_page);
495 bio_index++;
496 bvec++;
497 }
498 return 0;
499}
500
Chris Mason44b8bd72008-04-16 11:14:51 -0400501static int __btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400502 int mirror_num)
Chris Mason22c59942008-04-09 16:28:12 -0400503{
504 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason22c59942008-04-09 16:28:12 -0400505 int ret;
506
Chris Mason8b712842008-06-11 16:50:36 -0400507 /*
508 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400509 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400510 */
Chris Mason22c59942008-04-09 16:28:12 -0400511 if (rw & (1 << BIO_RW)) {
Chris Masonce3ed712008-09-23 13:14:12 -0400512 btree_csum_one_bio(bio);
Chris Mason8b712842008-06-11 16:50:36 -0400513 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason5443be42008-08-15 15:34:16 -0400514 mirror_num, 1);
Chris Mason22c59942008-04-09 16:28:12 -0400515 }
516
Chris Mason8b712842008-06-11 16:50:36 -0400517 /*
518 * called for a read, do the setup so that checksum validation
519 * can happen in the async kernel threads
520 */
Chris Mason22c59942008-04-09 16:28:12 -0400521 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 1);
522 BUG_ON(ret);
Chris Masonce9adaa2008-04-09 16:28:12 -0400523
Chris Mason8b712842008-06-11 16:50:36 -0400524 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400525}
526
Chris Mason44b8bd72008-04-16 11:14:51 -0400527static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
528 int mirror_num)
529{
Chris Mason8b712842008-06-11 16:50:36 -0400530 /*
531 * kthread helpers are used to submit writes so that checksumming
532 * can happen in parallel across all CPUs
533 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400534 if (!(rw & (1 << BIO_RW))) {
535 return __btree_submit_bio_hook(inode, rw, bio, mirror_num);
536 }
537 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
538 inode, rw, bio, mirror_num,
539 __btree_submit_bio_hook);
540}
541
Chris Mason5f39d392007-10-15 16:14:19 -0400542static int btree_writepage(struct page *page, struct writeback_control *wbc)
543{
Chris Masond1310b22008-01-24 16:13:08 -0500544 struct extent_io_tree *tree;
545 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5443be42008-08-15 15:34:16 -0400546
547 if (current->flags & PF_MEMALLOC) {
548 redirty_page_for_writepage(wbc, page);
549 unlock_page(page);
550 return 0;
551 }
Chris Mason5f39d392007-10-15 16:14:19 -0400552 return extent_write_full_page(tree, page, btree_get_extent, wbc);
553}
Chris Mason0da54682007-11-07 21:08:01 -0500554
555static int btree_writepages(struct address_space *mapping,
556 struct writeback_control *wbc)
557{
Chris Masond1310b22008-01-24 16:13:08 -0500558 struct extent_io_tree *tree;
559 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500560 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800561 u64 num_dirty;
562 u64 start = 0;
Chris Mason24ab9cd2008-09-24 14:51:30 -0400563 unsigned long thresh = 32 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800564
565 if (wbc->for_kupdate)
566 return 0;
567
Chris Mason1832a6d2007-12-21 16:27:21 -0500568 num_dirty = count_range_bits(tree, &start, (u64)-1,
569 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800570 if (num_dirty < thresh) {
571 return 0;
572 }
573 }
Chris Mason0da54682007-11-07 21:08:01 -0500574 return extent_writepages(tree, mapping, btree_get_extent, wbc);
575}
576
Chris Mason5f39d392007-10-15 16:14:19 -0400577int btree_readpage(struct file *file, struct page *page)
578{
Chris Masond1310b22008-01-24 16:13:08 -0500579 struct extent_io_tree *tree;
580 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400581 return extent_read_full_page(tree, page, btree_get_extent);
582}
583
Chris Mason70dec802008-01-29 09:59:12 -0500584static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400585{
Chris Masond1310b22008-01-24 16:13:08 -0500586 struct extent_io_tree *tree;
587 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400588 int ret;
589
Chris Mason98509cf2008-09-11 15:51:43 -0400590 if (PageWriteback(page) || PageDirty(page))
591 return 0;
592
Chris Masond1310b22008-01-24 16:13:08 -0500593 tree = &BTRFS_I(page->mapping->host)->io_tree;
594 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118ce2008-07-22 11:18:07 -0400595
Chris Mason7b13b7b2008-04-18 10:29:50 -0400596 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Mason6af118ce2008-07-22 11:18:07 -0400597 if (!ret) {
598 return 0;
599 }
600
601 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400602 if (ret == 1) {
603 ClearPagePrivate(page);
604 set_page_private(page, 0);
605 page_cache_release(page);
606 }
Chris Mason6af118ce2008-07-22 11:18:07 -0400607
Chris Masond98237b2007-03-28 13:57:48 -0400608 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400609}
Chris Mason123abc82007-03-14 14:14:43 -0400610
Chris Mason5f39d392007-10-15 16:14:19 -0400611static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400612{
Chris Masond1310b22008-01-24 16:13:08 -0500613 struct extent_io_tree *tree;
614 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400615 extent_invalidatepage(tree, page, offset);
616 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400617 if (PagePrivate(page)) {
Chris Mason6af118ce2008-07-22 11:18:07 -0400618 printk("warning page private not zero on page %Lu\n",
619 page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400620 ClearPagePrivate(page);
621 set_page_private(page, 0);
622 page_cache_release(page);
623 }
Chris Masond98237b2007-03-28 13:57:48 -0400624}
625
Chris Mason5f39d392007-10-15 16:14:19 -0400626#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400627static int btree_writepage(struct page *page, struct writeback_control *wbc)
628{
Chris Mason87cbda52007-03-28 19:44:27 -0400629 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400630 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400631 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400632 if (!page_has_buffers(page)) {
633 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
634 (1 << BH_Dirty)|(1 << BH_Uptodate));
635 }
636 head = page_buffers(page);
637 bh = head;
638 do {
639 if (buffer_dirty(bh))
640 csum_tree_block(root, bh, 0);
641 bh = bh->b_this_page;
642 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400643 return block_write_full_page(page, btree_get_block, wbc);
644}
Chris Mason5f39d392007-10-15 16:14:19 -0400645#endif
Chris Masond98237b2007-03-28 13:57:48 -0400646
647static struct address_space_operations btree_aops = {
648 .readpage = btree_readpage,
649 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500650 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400651 .releasepage = btree_releasepage,
652 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400653 .sync_page = block_sync_page,
654};
655
Chris Masonca7a79a2008-05-12 12:59:19 -0400656int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
657 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400658{
Chris Mason5f39d392007-10-15 16:14:19 -0400659 struct extent_buffer *buf = NULL;
660 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400661 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400662
Chris Masondb945352007-10-15 16:15:53 -0400663 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400664 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400665 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500666 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400667 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400668 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400669 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400670}
671
Chris Mason0999df52008-04-01 13:48:14 -0400672struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
673 u64 bytenr, u32 blocksize)
674{
675 struct inode *btree_inode = root->fs_info->btree_inode;
676 struct extent_buffer *eb;
677 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
678 bytenr, blocksize, GFP_NOFS);
679 return eb;
680}
681
682struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
683 u64 bytenr, u32 blocksize)
684{
685 struct inode *btree_inode = root->fs_info->btree_inode;
686 struct extent_buffer *eb;
687
688 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
689 bytenr, blocksize, NULL, GFP_NOFS);
690 return eb;
691}
692
693
Chris Masone02119d2008-09-05 16:13:11 -0400694int btrfs_write_tree_block(struct extent_buffer *buf)
695{
696 return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
Chris Mason24ab9cd2008-09-24 14:51:30 -0400697 buf->start + buf->len - 1, WB_SYNC_ALL);
Chris Masone02119d2008-09-05 16:13:11 -0400698}
699
700int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
701{
702 return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
703 buf->start, buf->start + buf->len -1);
704}
705
Chris Masondb945352007-10-15 16:15:53 -0400706struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400707 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400708{
Chris Mason5f39d392007-10-15 16:14:19 -0400709 struct extent_buffer *buf = NULL;
710 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500711 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400712 int ret;
713
Chris Masond1310b22008-01-24 16:13:08 -0500714 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400715
Chris Masondb945352007-10-15 16:15:53 -0400716 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400717 if (!buf)
718 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500719
Chris Masonca7a79a2008-05-12 12:59:19 -0400720 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400721
722 if (ret == 0) {
723 buf->flags |= EXTENT_UPTODATE;
Chris Masona1b32a52008-09-05 16:09:51 -0400724 } else {
725 WARN_ON(1);
Chris Masonce9adaa2008-04-09 16:28:12 -0400726 }
Chris Mason5f39d392007-10-15 16:14:19 -0400727 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400728
Chris Masoneb60cea2007-02-02 09:18:22 -0500729}
730
Chris Masone089f052007-03-16 16:20:31 -0400731int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400732 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500733{
Chris Mason5f39d392007-10-15 16:14:19 -0400734 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500735 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400736 root->fs_info->running_transaction->transid) {
737 WARN_ON(!btrfs_tree_locked(buf));
Chris Masond1310b22008-01-24 16:13:08 -0500738 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500739 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400740 }
Chris Mason5f39d392007-10-15 16:14:19 -0400741 return 0;
742}
743
Chris Masondb945352007-10-15 16:15:53 -0400744static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500745 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400746 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400747 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500748{
Chris Masoncfaa7292007-02-21 17:04:57 -0500749 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400750 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500751 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400752 root->ref_tree = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400753 root->sectorsize = sectorsize;
754 root->nodesize = nodesize;
755 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500756 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400757 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400758 root->track_dirty = 0;
759
Chris Mason9f5fae22007-03-20 14:38:32 -0400760 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400761 root->objectid = objectid;
762 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400763 root->highest_inode = 0;
764 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400765 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500766 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400767
768 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -0400769 INIT_LIST_HEAD(&root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400770 INIT_LIST_HEAD(&root->dead_list);
Chris Mason925baed2008-06-25 16:01:30 -0400771 spin_lock_init(&root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400772 spin_lock_init(&root->list_lock);
Chris Masona2135012008-06-25 16:01:30 -0400773 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400774 mutex_init(&root->log_mutex);
Chris Masond0c803c2008-09-11 16:17:57 -0400775 extent_io_tree_init(&root->dirty_log_pages,
776 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason017e5362008-07-28 15:32:51 -0400777
778 btrfs_leaf_ref_tree_init(&root->ref_tree_struct);
779 root->ref_tree = &root->ref_tree_struct;
780
Chris Mason3768f362007-03-13 16:47:54 -0400781 memset(&root->root_key, 0, sizeof(root->root_key));
782 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400783 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400784 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -0400785 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -0400786 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400787 root->defrag_running = 0;
788 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400789 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400790 return 0;
791}
792
Chris Masondb945352007-10-15 16:15:53 -0400793static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400794 struct btrfs_fs_info *fs_info,
795 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400796 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400797{
798 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400799 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400800
Chris Masondb945352007-10-15 16:15:53 -0400801 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500802 tree_root->sectorsize, tree_root->stripesize,
803 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400804 ret = btrfs_find_last_root(tree_root, objectid,
805 &root->root_item, &root->root_key);
806 BUG_ON(ret);
807
Chris Masondb945352007-10-15 16:15:53 -0400808 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
809 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400810 blocksize, 0);
Chris Mason3768f362007-03-13 16:47:54 -0400811 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500812 return 0;
813}
814
Chris Masone02119d2008-09-05 16:13:11 -0400815int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
816 struct btrfs_fs_info *fs_info)
817{
818 struct extent_buffer *eb;
Chris Masond0c803c2008-09-11 16:17:57 -0400819 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
820 u64 start = 0;
821 u64 end = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400822 int ret;
823
Chris Masond0c803c2008-09-11 16:17:57 -0400824 if (!log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400825 return 0;
826
Chris Masond0c803c2008-09-11 16:17:57 -0400827 while(1) {
828 ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
829 0, &start, &end, EXTENT_DIRTY);
830 if (ret)
831 break;
832
833 clear_extent_dirty(&log_root_tree->dirty_log_pages,
834 start, end, GFP_NOFS);
835 }
Chris Masone02119d2008-09-05 16:13:11 -0400836 eb = fs_info->log_root_tree->node;
837
838 WARN_ON(btrfs_header_level(eb) != 0);
839 WARN_ON(btrfs_header_nritems(eb) != 0);
840
Chris Masond00aff02008-09-11 15:54:42 -0400841 ret = btrfs_free_reserved_extent(fs_info->tree_root,
842 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400843 BUG_ON(ret);
844
845 free_extent_buffer(eb);
846 kfree(fs_info->log_root_tree);
847 fs_info->log_root_tree = NULL;
848 return 0;
849}
850
851int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
852 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400853{
854 struct btrfs_root *root;
855 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Masone02119d2008-09-05 16:13:11 -0400856
857 root = kzalloc(sizeof(*root), GFP_NOFS);
858 if (!root)
859 return -ENOMEM;
860
861 __setup_root(tree_root->nodesize, tree_root->leafsize,
862 tree_root->sectorsize, tree_root->stripesize,
863 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
864
865 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
866 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
867 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
868 root->ref_cows = 0;
869
870 root->node = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -0400871 0, BTRFS_TREE_LOG_OBJECTID,
872 trans->transid, 0, 0, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400873
874 btrfs_set_header_nritems(root->node, 0);
875 btrfs_set_header_level(root->node, 0);
876 btrfs_set_header_bytenr(root->node, root->node->start);
877 btrfs_set_header_generation(root->node, trans->transid);
878 btrfs_set_header_owner(root->node, BTRFS_TREE_LOG_OBJECTID);
879
880 write_extent_buffer(root->node, root->fs_info->fsid,
881 (unsigned long)btrfs_header_fsid(root->node),
882 BTRFS_FSID_SIZE);
883 btrfs_mark_buffer_dirty(root->node);
884 btrfs_tree_unlock(root->node);
885 fs_info->log_root_tree = root;
886 return 0;
887}
888
889struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
890 struct btrfs_key *location)
891{
892 struct btrfs_root *root;
893 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400894 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400895 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400896 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400897 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400898 int ret = 0;
899
Chris Mason5eda7b52007-06-22 14:16:25 -0400900 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400901 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400902 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400903 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400904 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400905 location->objectid, root);
906 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400907 kfree(root);
908 return ERR_PTR(ret);
909 }
910 goto insert;
911 }
912
Chris Masondb945352007-10-15 16:15:53 -0400913 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500914 tree_root->sectorsize, tree_root->stripesize,
915 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400916
917 path = btrfs_alloc_path();
918 BUG_ON(!path);
919 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
920 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400921 if (ret > 0)
922 ret = -ENOENT;
923 goto out;
924 }
Chris Mason5f39d392007-10-15 16:14:19 -0400925 l = path->nodes[0];
926 read_extent_buffer(l, &root->root_item,
927 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400928 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400929 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400930 ret = 0;
931out:
932 btrfs_release_path(root, path);
933 btrfs_free_path(path);
934 if (ret) {
935 kfree(root);
936 return ERR_PTR(ret);
937 }
Chris Masondb945352007-10-15 16:15:53 -0400938 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
939 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400940 blocksize, 0);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400941 BUG_ON(!root->node);
942insert:
Chris Masone02119d2008-09-05 16:13:11 -0400943 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
944 root->ref_cows = 1;
945 ret = btrfs_find_highest_inode(root, &highest_inode);
946 if (ret == 0) {
947 root->highest_inode = highest_inode;
948 root->last_inode_alloc = highest_inode;
949 }
Chris Mason5eda7b52007-06-22 14:16:25 -0400950 }
951 return root;
952}
953
Chris Masondc17ff82008-01-08 15:46:30 -0500954struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
955 u64 root_objectid)
956{
957 struct btrfs_root *root;
958
959 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
960 return fs_info->tree_root;
961 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
962 return fs_info->extent_root;
963
964 root = radix_tree_lookup(&fs_info->fs_roots_radix,
965 (unsigned long)root_objectid);
966 return root;
967}
968
Chris Masonedbd8d42007-12-21 16:27:24 -0500969struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
970 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400971{
972 struct btrfs_root *root;
973 int ret;
974
Chris Masonedbd8d42007-12-21 16:27:24 -0500975 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
976 return fs_info->tree_root;
977 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
978 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -0400979 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
980 return fs_info->chunk_root;
981 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
982 return fs_info->dev_root;
Chris Masonedbd8d42007-12-21 16:27:24 -0500983
Chris Mason5eda7b52007-06-22 14:16:25 -0400984 root = radix_tree_lookup(&fs_info->fs_roots_radix,
985 (unsigned long)location->objectid);
986 if (root)
987 return root;
988
Chris Masone02119d2008-09-05 16:13:11 -0400989 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -0400990 if (IS_ERR(root))
991 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400992 ret = radix_tree_insert(&fs_info->fs_roots_radix,
993 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400994 root);
995 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400996 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400997 kfree(root);
998 return ERR_PTR(ret);
999 }
Chris Masonedbd8d42007-12-21 16:27:24 -05001000 ret = btrfs_find_dead_roots(fs_info->tree_root,
1001 root->root_key.objectid, root);
1002 BUG_ON(ret);
1003
1004 return root;
1005}
1006
1007struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
1008 struct btrfs_key *location,
1009 const char *name, int namelen)
1010{
1011 struct btrfs_root *root;
1012 int ret;
1013
1014 root = btrfs_read_fs_root_no_name(fs_info, location);
1015 if (!root)
1016 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -04001017
Chris Mason4313b392008-01-03 09:08:48 -05001018 if (root->in_sysfs)
1019 return root;
1020
Josef Bacik58176a92007-08-29 15:47:34 -04001021 ret = btrfs_set_root_name(root, name, namelen);
1022 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001023 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001024 kfree(root);
1025 return ERR_PTR(ret);
1026 }
1027
1028 ret = btrfs_sysfs_add_root(root);
1029 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001030 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001031 kfree(root->name);
1032 kfree(root);
1033 return ERR_PTR(ret);
1034 }
Chris Mason4313b392008-01-03 09:08:48 -05001035 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001036 return root;
1037}
Chris Mason19c00dd2007-10-15 16:19:22 -04001038#if 0
1039static int add_hasher(struct btrfs_fs_info *info, char *type) {
1040 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001041
Chris Mason19c00dd2007-10-15 16:19:22 -04001042 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
1043 if (!hasher)
1044 return -ENOMEM;
1045 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
1046 if (!hasher->hash_tfm) {
1047 kfree(hasher);
1048 return -EINVAL;
1049 }
1050 spin_lock(&info->hash_lock);
1051 list_add(&hasher->list, &info->hashers);
1052 spin_unlock(&info->hash_lock);
1053 return 0;
1054}
1055#endif
Chris Mason04160082008-03-26 10:28:07 -04001056
1057static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1058{
1059 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1060 int ret = 0;
1061 struct list_head *cur;
1062 struct btrfs_device *device;
1063 struct backing_dev_info *bdi;
1064
Chris Masoncb03c742008-05-15 16:15:45 -04001065 if ((bdi_bits & (1 << BDI_write_congested)) &&
Chris Mason777e6bd2008-08-15 15:34:15 -04001066 btrfs_congested_async(info, 0))
Chris Masoncb03c742008-05-15 16:15:45 -04001067 return 1;
Chris Masoncb03c742008-05-15 16:15:45 -04001068
Chris Mason04160082008-03-26 10:28:07 -04001069 list_for_each(cur, &info->fs_devices->devices) {
1070 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001071 if (!device->bdev)
1072 continue;
Chris Mason04160082008-03-26 10:28:07 -04001073 bdi = blk_get_backing_dev_info(device->bdev);
1074 if (bdi && bdi_congested(bdi, bdi_bits)) {
1075 ret = 1;
1076 break;
1077 }
1078 }
1079 return ret;
1080}
1081
Chris Mason38b66982008-04-22 09:22:11 -04001082/*
1083 * this unplugs every device on the box, and it is only used when page
1084 * is null
1085 */
1086static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1087{
1088 struct list_head *cur;
1089 struct btrfs_device *device;
1090 struct btrfs_fs_info *info;
1091
1092 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
1093 list_for_each(cur, &info->fs_devices->devices) {
1094 device = list_entry(cur, struct btrfs_device, dev_list);
1095 bdi = blk_get_backing_dev_info(device->bdev);
1096 if (bdi->unplug_io_fn) {
1097 bdi->unplug_io_fn(bdi, page);
1098 }
1099 }
1100}
1101
Chris Mason04160082008-03-26 10:28:07 -04001102void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1103{
Chris Mason38b66982008-04-22 09:22:11 -04001104 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -04001105 struct extent_map_tree *em_tree;
1106 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -04001107 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -04001108 u64 offset;
1109
Chris Masonbcbfce82008-04-22 13:26:47 -04001110 /* the generic O_DIRECT read code does this */
Chris Mason38b66982008-04-22 09:22:11 -04001111 if (!page) {
1112 __unplug_io_fn(bdi, page);
1113 return;
1114 }
1115
Chris Masonbcbfce82008-04-22 13:26:47 -04001116 /*
1117 * page->mapping may change at any time. Get a consistent copy
1118 * and use that for everything below
1119 */
1120 smp_mb();
1121 mapping = page->mapping;
1122 if (!mapping)
1123 return;
1124
1125 inode = mapping->host;
Chris Mason38b66982008-04-22 09:22:11 -04001126 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -04001127
Chris Masonf2d8d742008-04-21 10:03:05 -04001128 em_tree = &BTRFS_I(inode)->extent_tree;
1129 spin_lock(&em_tree->lock);
1130 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1131 spin_unlock(&em_tree->lock);
Chris Mason89642222008-07-24 09:41:53 -04001132 if (!em) {
1133 __unplug_io_fn(bdi, page);
Chris Masonf2d8d742008-04-21 10:03:05 -04001134 return;
Chris Mason89642222008-07-24 09:41:53 -04001135 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001136
Chris Mason89642222008-07-24 09:41:53 -04001137 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1138 free_extent_map(em);
1139 __unplug_io_fn(bdi, page);
1140 return;
1141 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001142 offset = offset - em->start;
1143 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1144 em->block_start + offset, page);
1145 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001146}
1147
1148static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1149{
1150 bdi_init(bdi);
Chris Mason4575c9c2008-04-18 16:13:31 -04001151 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001152 bdi->state = 0;
1153 bdi->capabilities = default_backing_dev_info.capabilities;
1154 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1155 bdi->unplug_io_data = info;
1156 bdi->congested_fn = btrfs_congested_fn;
1157 bdi->congested_data = info;
1158 return 0;
1159}
1160
Chris Masonce9adaa2008-04-09 16:28:12 -04001161static int bio_ready_for_csum(struct bio *bio)
1162{
1163 u64 length = 0;
1164 u64 buf_len = 0;
1165 u64 start = 0;
1166 struct page *page;
1167 struct extent_io_tree *io_tree = NULL;
1168 struct btrfs_fs_info *info = NULL;
1169 struct bio_vec *bvec;
1170 int i;
1171 int ret;
1172
1173 bio_for_each_segment(bvec, bio, i) {
1174 page = bvec->bv_page;
1175 if (page->private == EXTENT_PAGE_PRIVATE) {
1176 length += bvec->bv_len;
1177 continue;
1178 }
1179 if (!page->private) {
1180 length += bvec->bv_len;
1181 continue;
1182 }
1183 length = bvec->bv_len;
1184 buf_len = page->private >> 2;
1185 start = page_offset(page) + bvec->bv_offset;
1186 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1187 info = BTRFS_I(page->mapping->host)->root->fs_info;
1188 }
1189 /* are we fully contained in this bio? */
1190 if (buf_len <= length)
1191 return 1;
1192
1193 ret = extent_range_uptodate(io_tree, start + length,
1194 start + buf_len - 1);
1195 if (ret == 1)
1196 return ret;
1197 return ret;
1198}
1199
Chris Mason8b712842008-06-11 16:50:36 -04001200/*
1201 * called by the kthread helper functions to finally call the bio end_io
1202 * functions. This is where read checksum verification actually happens
1203 */
1204static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001205{
Chris Masonce9adaa2008-04-09 16:28:12 -04001206 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001207 struct end_io_wq *end_io_wq;
1208 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001209 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001210
Chris Mason8b712842008-06-11 16:50:36 -04001211 end_io_wq = container_of(work, struct end_io_wq, work);
1212 bio = end_io_wq->bio;
1213 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001214
Chris Mason8b712842008-06-11 16:50:36 -04001215 /* metadata bios are special because the whole tree block must
1216 * be checksummed at once. This makes sure the entire block is in
1217 * ram and up to date before trying to verify things. For
1218 * blocksize <= pagesize, it is basically a noop
1219 */
1220 if (end_io_wq->metadata && !bio_ready_for_csum(bio)) {
1221 btrfs_queue_worker(&fs_info->endio_workers,
1222 &end_io_wq->work);
1223 return;
1224 }
1225 error = end_io_wq->error;
1226 bio->bi_private = end_io_wq->private;
1227 bio->bi_end_io = end_io_wq->end_io;
1228 kfree(end_io_wq);
Chris Mason8b712842008-06-11 16:50:36 -04001229 bio_endio(bio, error);
Chris Mason44b8bd72008-04-16 11:14:51 -04001230}
1231
Chris Masona74a4b92008-06-25 16:01:31 -04001232static int cleaner_kthread(void *arg)
1233{
1234 struct btrfs_root *root = arg;
1235
1236 do {
1237 smp_mb();
1238 if (root->fs_info->closing)
1239 break;
1240
1241 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1242 mutex_lock(&root->fs_info->cleaner_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001243 btrfs_clean_old_snapshots(root);
Chris Masona74a4b92008-06-25 16:01:31 -04001244 mutex_unlock(&root->fs_info->cleaner_mutex);
1245
1246 if (freezing(current)) {
1247 refrigerator();
1248 } else {
1249 smp_mb();
1250 if (root->fs_info->closing)
1251 break;
1252 set_current_state(TASK_INTERRUPTIBLE);
1253 schedule();
1254 __set_current_state(TASK_RUNNING);
1255 }
1256 } while (!kthread_should_stop());
1257 return 0;
1258}
1259
1260static int transaction_kthread(void *arg)
1261{
1262 struct btrfs_root *root = arg;
1263 struct btrfs_trans_handle *trans;
1264 struct btrfs_transaction *cur;
1265 unsigned long now;
1266 unsigned long delay;
1267 int ret;
1268
1269 do {
1270 smp_mb();
1271 if (root->fs_info->closing)
1272 break;
1273
1274 delay = HZ * 30;
1275 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1276 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1277
Chris Masonab78c842008-07-29 16:15:18 -04001278 if (root->fs_info->total_ref_cache_size > 20 * 1024 * 1024) {
1279 printk("btrfs: total reference cache size %Lu\n",
1280 root->fs_info->total_ref_cache_size);
1281 }
Yan Zheng31153d82008-07-28 15:32:19 -04001282
Chris Masona74a4b92008-06-25 16:01:31 -04001283 mutex_lock(&root->fs_info->trans_mutex);
1284 cur = root->fs_info->running_transaction;
1285 if (!cur) {
1286 mutex_unlock(&root->fs_info->trans_mutex);
1287 goto sleep;
1288 }
Yan Zheng31153d82008-07-28 15:32:19 -04001289
Chris Masona74a4b92008-06-25 16:01:31 -04001290 now = get_seconds();
1291 if (now < cur->start_time || now - cur->start_time < 30) {
1292 mutex_unlock(&root->fs_info->trans_mutex);
1293 delay = HZ * 5;
1294 goto sleep;
1295 }
1296 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001297 trans = btrfs_start_transaction(root, 1);
1298 ret = btrfs_commit_transaction(trans, root);
1299sleep:
1300 wake_up_process(root->fs_info->cleaner_kthread);
1301 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1302
1303 if (freezing(current)) {
1304 refrigerator();
1305 } else {
1306 if (root->fs_info->closing)
1307 break;
1308 set_current_state(TASK_INTERRUPTIBLE);
1309 schedule_timeout(delay);
1310 __set_current_state(TASK_RUNNING);
1311 }
1312 } while (!kthread_should_stop());
1313 return 0;
1314}
1315
Chris Mason8a4b83c2008-03-24 15:02:07 -04001316struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001317 struct btrfs_fs_devices *fs_devices,
1318 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001319{
Chris Masondb945352007-10-15 16:15:53 -04001320 u32 sectorsize;
1321 u32 nodesize;
1322 u32 leafsize;
1323 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001324 u32 stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001325 struct buffer_head *bh;
Chris Masone02119d2008-09-05 16:13:11 -04001326 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001327 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001328 struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001329 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001330 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001331 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001332 struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001333 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001334 struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001335 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001336 struct btrfs_root *log_tree_root;
1337
Chris Masoneb60cea2007-02-02 09:18:22 -05001338 int ret;
Yane58ca022008-04-01 11:21:34 -04001339 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001340
Chris Mason2c90e5d2007-04-02 10:50:19 -04001341 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001342
Chris Mason39279cc2007-06-12 06:35:45 -04001343 if (!extent_root || !tree_root || !fs_info) {
1344 err = -ENOMEM;
1345 goto fail;
1346 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001347 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001348 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001349 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001350 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001351 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason19c00dd2007-10-15 16:19:22 -04001352 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001353 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001354 spin_lock_init(&fs_info->new_trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001355 spin_lock_init(&fs_info->ref_cache_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001356
Josef Bacik58176a92007-08-29 15:47:34 -04001357 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001358 fs_info->tree_root = tree_root;
1359 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001360 fs_info->chunk_root = chunk_root;
1361 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001362 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001363 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001364 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001365 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001366 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason8c8bee12008-09-29 11:19:10 -04001367 atomic_set(&fs_info->async_submit_draining, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04001368 atomic_set(&fs_info->nr_async_bios, 0);
Chris Masona2135012008-06-25 16:01:30 -04001369 atomic_set(&fs_info->throttles, 0);
Chris Masonab78c842008-07-29 16:15:18 -04001370 atomic_set(&fs_info->throttle_gen, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001371 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001372 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001373 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001374 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001375 fs_info->btree_inode = new_inode(sb);
1376 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001377 fs_info->btree_inode->i_nlink = 1;
Chris Mason4543df72008-06-11 21:47:56 -04001378 fs_info->thread_pool_size = min(num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001379
Chris Mason3eaa2882008-07-24 11:57:52 -04001380 INIT_LIST_HEAD(&fs_info->ordered_extents);
1381 spin_lock_init(&fs_info->ordered_extent_lock);
1382
Chris Masona061fc82008-05-07 11:43:44 -04001383 sb->s_blocksize = 4096;
1384 sb->s_blocksize_bits = blksize_bits(4096);
1385
Chris Mason0afbaf82008-04-18 14:17:20 -04001386 /*
1387 * we set the i_size on the btree inode to the max possible int.
1388 * the real end of the address space is determined by all of
1389 * the devices in the system
1390 */
1391 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001392 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001393 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1394
Chris Masond1310b22008-01-24 16:13:08 -05001395 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001396 fs_info->btree_inode->i_mapping,
1397 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001398 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1399 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001400
Chris Masond1310b22008-01-24 16:13:08 -05001401 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1402
Josef Bacik0f9dd462008-09-23 13:14:11 -04001403 spin_lock_init(&fs_info->block_group_cache_lock);
1404 fs_info->block_group_cache_tree.rb_node = NULL;
1405
Chris Masond1310b22008-01-24 16:13:08 -05001406 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001407 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001408 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -04001409 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001410 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -04001411 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001412 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001413
Zheng Yan1a40e232008-09-26 10:09:34 -04001414 extent_io_tree_init(&fs_info->reloc_mapping_tree,
1415 fs_info->btree_inode->i_mapping, GFP_NOFS);
1416 INIT_LIST_HEAD(&fs_info->dead_reloc_roots);
1417 btrfs_leaf_ref_tree_init(&fs_info->reloc_ref_tree);
Zheng Yane4657682008-09-26 10:04:53 -04001418 btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree);
1419
Chris Mason0f7d52f2007-04-09 10:42:37 -04001420 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1421 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1422 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001423 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001424
Chris Mason79154b12007-03-22 15:59:16 -04001425 mutex_init(&fs_info->trans_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001426 mutex_init(&fs_info->tree_log_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001427 mutex_init(&fs_info->drop_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001428 mutex_init(&fs_info->alloc_mutex);
1429 mutex_init(&fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001430 mutex_init(&fs_info->transaction_kthread_mutex);
1431 mutex_init(&fs_info->cleaner_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001432 mutex_init(&fs_info->volume_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001433 mutex_init(&fs_info->tree_reloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001434 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001435 init_waitqueue_head(&fs_info->transaction_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04001436 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Masone02119d2008-09-05 16:13:11 -04001437 init_waitqueue_head(&fs_info->tree_log_wait);
1438 atomic_set(&fs_info->tree_log_commit, 0);
1439 atomic_set(&fs_info->tree_log_writers, 0);
1440 fs_info->tree_log_transid = 0;
Chris Mason3768f362007-03-13 16:47:54 -04001441
Chris Mason19c00dd2007-10-15 16:19:22 -04001442#if 0
1443 ret = add_hasher(fs_info, "crc32c");
1444 if (ret) {
1445 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
1446 err = -ENOMEM;
1447 goto fail_iput;
1448 }
1449#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001450 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001451 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001452
Chris Masond98237b2007-03-28 13:57:48 -04001453
Chris Masona061fc82008-05-07 11:43:44 -04001454 bh = __bread(fs_devices->latest_bdev,
1455 BTRFS_SUPER_INFO_OFFSET / 4096, 4096);
1456 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001457 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001458
Chris Masona061fc82008-05-07 11:43:44 -04001459 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
1460 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001461
Chris Masona061fc82008-05-07 11:43:44 -04001462 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001463
Chris Mason5f39d392007-10-15 16:14:19 -04001464 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001465 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -04001466 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001467
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001468 err = btrfs_parse_options(tree_root, options);
1469 if (err)
1470 goto fail_sb_buffer;
Chris Masondfe25022008-05-13 13:46:40 -04001471
Chris Mason4543df72008-06-11 21:47:56 -04001472 /*
1473 * we need to start all the end_io workers up front because the
1474 * queue work function gets called at interrupt time, and so it
1475 * cannot dynamically grow.
1476 */
Chris Mason5443be42008-08-15 15:34:16 -04001477 btrfs_init_workers(&fs_info->workers, "worker",
1478 fs_info->thread_pool_size);
1479 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04001480 min_t(u64, fs_devices->num_devices,
1481 fs_info->thread_pool_size));
Chris Mason61b49442008-07-31 15:42:53 -04001482
1483 /* a higher idle thresh on the submit workers makes it much more
1484 * likely that bios will be send down in a sane order to the
1485 * devices
1486 */
1487 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04001488
1489 /* fs_info->workers is responsible for checksumming file data
1490 * blocks and metadata. Using a larger idle thresh allows each
1491 * worker thread to operate on things in roughly the order they
1492 * were sent by the writeback daemons, improving overall locality
1493 * of the IO going down the pipe.
1494 */
1495 fs_info->workers.idle_thresh = 128;
Chris Mason61b49442008-07-31 15:42:53 -04001496
Chris Mason5443be42008-08-15 15:34:16 -04001497 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1);
1498 btrfs_init_workers(&fs_info->endio_workers, "endio",
1499 fs_info->thread_pool_size);
1500 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Masone6dcd2d2008-07-17 12:53:50 -04001501 fs_info->thread_pool_size);
Chris Mason61b49442008-07-31 15:42:53 -04001502
1503 /*
1504 * endios are largely parallel and should have a very
1505 * low idle thresh
1506 */
1507 fs_info->endio_workers.idle_thresh = 4;
Chris Mason3a5f1d42008-09-11 15:53:37 -04001508 fs_info->endio_write_workers.idle_thresh = 64;
Chris Mason61b49442008-07-31 15:42:53 -04001509
Chris Mason4543df72008-06-11 21:47:56 -04001510 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001511 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason247e7432008-07-17 12:53:51 -04001512 btrfs_start_workers(&fs_info->fixup_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001513 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001514 btrfs_start_workers(&fs_info->endio_write_workers,
1515 fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001516
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001517 err = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001518 if (btrfs_super_num_devices(disk_super) > fs_devices->open_devices) {
Chris Mason8a4b83c2008-03-24 15:02:07 -04001519 printk("Btrfs: wanted %llu devices, but found %llu\n",
1520 (unsigned long long)btrfs_super_num_devices(disk_super),
Chris Masona0af4692008-05-13 16:03:06 -04001521 (unsigned long long)fs_devices->open_devices);
Chris Masondfe25022008-05-13 13:46:40 -04001522 if (btrfs_test_opt(tree_root, DEGRADED))
1523 printk("continuing in degraded mode\n");
1524 else {
1525 goto fail_sb_buffer;
1526 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001527 }
Chris Masondfe25022008-05-13 13:46:40 -04001528
Chris Mason4575c9c2008-04-18 16:13:31 -04001529 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
1530
Chris Masondb945352007-10-15 16:15:53 -04001531 nodesize = btrfs_super_nodesize(disk_super);
1532 leafsize = btrfs_super_leafsize(disk_super);
1533 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001534 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001535 tree_root->nodesize = nodesize;
1536 tree_root->leafsize = leafsize;
1537 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001538 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001539
1540 sb->s_blocksize = sectorsize;
1541 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001542
Chris Mason39279cc2007-06-12 06:35:45 -04001543 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1544 sizeof(disk_super->magic))) {
1545 printk("btrfs: valid FS not found on %s\n", sb->s_id);
1546 goto fail_sb_buffer;
1547 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001548
Chris Mason925baed2008-06-25 16:01:30 -04001549 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001550 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001551 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001552 if (ret) {
1553 printk("btrfs: failed to read the system array on %s\n",
1554 sb->s_id);
1555 goto fail_sys_array;
1556 }
Chris Mason0b86a832008-03-24 15:01:56 -04001557
1558 blocksize = btrfs_level_size(tree_root,
1559 btrfs_super_chunk_root_level(disk_super));
1560
1561 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1562 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1563
1564 chunk_root->node = read_tree_block(chunk_root,
1565 btrfs_super_chunk_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001566 blocksize, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001567 BUG_ON(!chunk_root->node);
1568
Chris Masone17cade2008-04-15 15:41:47 -04001569 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
1570 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1571 BTRFS_UUID_SIZE);
1572
Chris Mason925baed2008-06-25 16:01:30 -04001573 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001574 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001575 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001576 BUG_ON(ret);
1577
Chris Masondfe25022008-05-13 13:46:40 -04001578 btrfs_close_extra_devices(fs_devices);
1579
Chris Masondb945352007-10-15 16:15:53 -04001580 blocksize = btrfs_level_size(tree_root,
1581 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -04001582
Chris Mason0b86a832008-03-24 15:01:56 -04001583
Chris Masone20d96d2007-03-22 12:13:20 -04001584 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001585 btrfs_super_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001586 blocksize, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001587 if (!tree_root->node)
1588 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -04001589
Chris Masondb945352007-10-15 16:15:53 -04001590
1591 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001592 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001593 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001594 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001595 extent_root->track_dirty = 1;
1596
1597 ret = find_and_setup_root(tree_root, fs_info,
1598 BTRFS_DEV_TREE_OBJECTID, dev_root);
1599 dev_root->track_dirty = 1;
1600
1601 if (ret)
1602 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001603
Chris Mason9078a3e2007-04-26 16:46:15 -04001604 btrfs_read_block_groups(extent_root);
1605
Chris Mason0f7d52f2007-04-09 10:42:37 -04001606 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Masond18a2c42008-04-04 15:40:00 -04001607 fs_info->data_alloc_profile = (u64)-1;
1608 fs_info->metadata_alloc_profile = (u64)-1;
1609 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
Chris Masona74a4b92008-06-25 16:01:31 -04001610 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
1611 "btrfs-cleaner");
1612 if (!fs_info->cleaner_kthread)
1613 goto fail_extent_root;
1614
1615 fs_info->transaction_kthread = kthread_run(transaction_kthread,
1616 tree_root,
1617 "btrfs-transaction");
1618 if (!fs_info->transaction_kthread)
Chris Mason3f157a22008-06-25 16:01:31 -04001619 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04001620
Chris Masone02119d2008-09-05 16:13:11 -04001621 if (btrfs_super_log_root(disk_super) != 0) {
1622 u32 blocksize;
1623 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04001624
Chris Masone02119d2008-09-05 16:13:11 -04001625 blocksize =
1626 btrfs_level_size(tree_root,
1627 btrfs_super_log_root_level(disk_super));
1628
1629 log_tree_root = kzalloc(sizeof(struct btrfs_root),
1630 GFP_NOFS);
1631
1632 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1633 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1634
1635 log_tree_root->node = read_tree_block(tree_root, bytenr,
1636 blocksize, 0);
1637 ret = btrfs_recover_log_trees(log_tree_root);
1638 BUG_ON(ret);
1639 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001640
1641 ret = btrfs_cleanup_reloc_trees(tree_root);
1642 BUG_ON(ret);
1643
Chris Masone02119d2008-09-05 16:13:11 -04001644 fs_info->last_trans_committed = btrfs_super_generation(disk_super);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001645 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001646
Chris Mason3f157a22008-06-25 16:01:31 -04001647fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04001648 kthread_stop(fs_info->cleaner_kthread);
Chris Mason0b86a832008-03-24 15:01:56 -04001649fail_extent_root:
1650 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001651fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001652 free_extent_buffer(tree_root->node);
Chris Mason84eed902008-04-25 09:04:37 -04001653fail_sys_array:
Chris Mason39279cc2007-06-12 06:35:45 -04001654fail_sb_buffer:
Chris Mason247e7432008-07-17 12:53:51 -04001655 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001656 btrfs_stop_workers(&fs_info->workers);
1657 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001658 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001659 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001660fail_iput:
1661 iput(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001662fail:
Chris Masondfe25022008-05-13 13:46:40 -04001663 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001664 btrfs_mapping_tree_free(&fs_info->mapping_tree);
1665
Chris Mason39279cc2007-06-12 06:35:45 -04001666 kfree(extent_root);
1667 kfree(tree_root);
Chris Mason2d2ae542008-03-26 16:24:23 -04001668 bdi_destroy(&fs_info->bdi);
Chris Mason39279cc2007-06-12 06:35:45 -04001669 kfree(fs_info);
1670 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001671}
1672
Chris Masonf2984462008-04-10 16:19:33 -04001673static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1674{
1675 char b[BDEVNAME_SIZE];
1676
1677 if (uptodate) {
1678 set_buffer_uptodate(bh);
1679 } else {
1680 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1681 printk(KERN_WARNING "lost page write due to "
1682 "I/O error on %s\n",
1683 bdevname(bh->b_bdev, b));
1684 }
Chris Mason1259ab72008-05-12 13:39:03 -04001685 /* note, we dont' set_buffer_write_io_error because we have
1686 * our own ways of dealing with the IO errors
1687 */
Chris Masonf2984462008-04-10 16:19:33 -04001688 clear_buffer_uptodate(bh);
1689 }
1690 unlock_buffer(bh);
1691 put_bh(bh);
1692}
1693
1694int write_all_supers(struct btrfs_root *root)
1695{
1696 struct list_head *cur;
1697 struct list_head *head = &root->fs_info->fs_devices->devices;
1698 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04001699 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04001700 struct btrfs_dev_item *dev_item;
1701 struct buffer_head *bh;
1702 int ret;
1703 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04001704 int max_errors;
1705 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001706 u32 crc;
1707 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04001708
Chris Masona236aed2008-04-29 09:38:00 -04001709 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04001710 do_barriers = !btrfs_test_opt(root, NOBARRIER);
1711
Chris Masona061fc82008-05-07 11:43:44 -04001712 sb = &root->fs_info->super_for_commit;
1713 dev_item = &sb->dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04001714 list_for_each(cur, head) {
1715 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001716 if (!dev->bdev) {
1717 total_errors++;
1718 continue;
1719 }
1720 if (!dev->in_fs_metadata)
1721 continue;
1722
Chris Masona061fc82008-05-07 11:43:44 -04001723 btrfs_set_stack_device_type(dev_item, dev->type);
1724 btrfs_set_stack_device_id(dev_item, dev->devid);
1725 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1726 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1727 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1728 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1729 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1730 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1731 flags = btrfs_super_flags(sb);
1732 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04001733
Chris Masonf2984462008-04-10 16:19:33 -04001734
Chris Masona061fc82008-05-07 11:43:44 -04001735 crc = ~(u32)0;
1736 crc = btrfs_csum_data(root, (char *)sb + BTRFS_CSUM_SIZE, crc,
1737 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1738 btrfs_csum_final(crc, sb->csum);
1739
1740 bh = __getblk(dev->bdev, BTRFS_SUPER_INFO_OFFSET / 4096,
Chris Masonf2984462008-04-10 16:19:33 -04001741 BTRFS_SUPER_INFO_SIZE);
1742
Chris Masona061fc82008-05-07 11:43:44 -04001743 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -04001744 dev->pending_io = bh;
1745
1746 get_bh(bh);
1747 set_buffer_uptodate(bh);
1748 lock_buffer(bh);
1749 bh->b_end_io = btrfs_end_buffer_write_sync;
1750
1751 if (do_barriers && dev->barriers) {
1752 ret = submit_bh(WRITE_BARRIER, bh);
1753 if (ret == -EOPNOTSUPP) {
1754 printk("btrfs: disabling barriers on dev %s\n",
1755 dev->name);
1756 set_buffer_uptodate(bh);
1757 dev->barriers = 0;
1758 get_bh(bh);
1759 lock_buffer(bh);
1760 ret = submit_bh(WRITE, bh);
1761 }
1762 } else {
1763 ret = submit_bh(WRITE, bh);
1764 }
Chris Masona236aed2008-04-29 09:38:00 -04001765 if (ret)
1766 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001767 }
Chris Masona236aed2008-04-29 09:38:00 -04001768 if (total_errors > max_errors) {
1769 printk("btrfs: %d errors while writing supers\n", total_errors);
1770 BUG();
1771 }
1772 total_errors = 0;
Chris Masonf2984462008-04-10 16:19:33 -04001773
1774 list_for_each(cur, head) {
1775 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001776 if (!dev->bdev)
1777 continue;
1778 if (!dev->in_fs_metadata)
1779 continue;
1780
Chris Masonf2984462008-04-10 16:19:33 -04001781 BUG_ON(!dev->pending_io);
1782 bh = dev->pending_io;
1783 wait_on_buffer(bh);
1784 if (!buffer_uptodate(dev->pending_io)) {
1785 if (do_barriers && dev->barriers) {
1786 printk("btrfs: disabling barriers on dev %s\n",
1787 dev->name);
1788 set_buffer_uptodate(bh);
1789 get_bh(bh);
1790 lock_buffer(bh);
1791 dev->barriers = 0;
1792 ret = submit_bh(WRITE, bh);
1793 BUG_ON(ret);
1794 wait_on_buffer(bh);
Chris Mason1259ab72008-05-12 13:39:03 -04001795 if (!buffer_uptodate(bh))
1796 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001797 } else {
Chris Masona236aed2008-04-29 09:38:00 -04001798 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001799 }
1800
1801 }
1802 dev->pending_io = NULL;
1803 brelse(bh);
1804 }
Chris Masona236aed2008-04-29 09:38:00 -04001805 if (total_errors > max_errors) {
1806 printk("btrfs: %d errors while writing supers\n", total_errors);
1807 BUG();
1808 }
Chris Masonf2984462008-04-10 16:19:33 -04001809 return 0;
1810}
1811
Chris Masone089f052007-03-16 16:20:31 -04001812int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -04001813 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -05001814{
Chris Masone66f7092007-04-20 13:16:02 -04001815 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001816
Chris Masonf2984462008-04-10 16:19:33 -04001817 ret = write_all_supers(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001818 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05001819}
1820
Chris Mason5eda7b52007-06-22 14:16:25 -04001821int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04001822{
1823 radix_tree_delete(&fs_info->fs_roots_radix,
1824 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -05001825 if (root->in_sysfs)
1826 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -04001827 if (root->inode)
1828 iput(root->inode);
1829 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001830 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04001831 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04001832 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -04001833 if (root->name)
1834 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04001835 kfree(root);
1836 return 0;
1837}
1838
Chris Mason35b7e472007-05-02 15:53:43 -04001839static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001840{
1841 int ret;
1842 struct btrfs_root *gang[8];
1843 int i;
1844
1845 while(1) {
1846 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
1847 (void **)gang, 0,
1848 ARRAY_SIZE(gang));
1849 if (!ret)
1850 break;
Chris Mason2619ba12007-04-10 16:58:11 -04001851 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04001852 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001853 }
1854 return 0;
1855}
Chris Masonb4100d62007-04-12 12:14:00 -04001856
Chris Masone20d96d2007-03-22 12:13:20 -04001857int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05001858{
Chris Mason3768f362007-03-13 16:47:54 -04001859 int ret;
Chris Masone089f052007-03-16 16:20:31 -04001860 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001861 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -04001862
Chris Masonfacda1e2007-06-08 18:11:48 -04001863 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04001864 smp_mb();
1865
Chris Masona74a4b92008-06-25 16:01:31 -04001866 kthread_stop(root->fs_info->transaction_kthread);
1867 kthread_stop(root->fs_info->cleaner_kthread);
1868
Chris Masona74a4b92008-06-25 16:01:31 -04001869 btrfs_clean_old_snapshots(root);
Chris Mason79154b12007-03-22 15:59:16 -04001870 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001871 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001872 /* run commit again to drop the original snapshot */
1873 trans = btrfs_start_transaction(root, 1);
1874 btrfs_commit_transaction(trans, root);
1875 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001876 BUG_ON(ret);
Chris Masond6bfde82008-04-30 13:59:35 -04001877
Chris Mason79154b12007-03-22 15:59:16 -04001878 write_ctree_super(NULL, root);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001879
Chris Masonb0c68f82008-01-31 11:05:37 -05001880 if (fs_info->delalloc_bytes) {
1881 printk("btrfs: at unmount delalloc count %Lu\n",
1882 fs_info->delalloc_bytes);
1883 }
Yan Zheng31153d82008-07-28 15:32:19 -04001884 if (fs_info->total_ref_cache_size) {
1885 printk("btrfs: at umount reference cache size %Lu\n",
1886 fs_info->total_ref_cache_size);
1887 }
Yanbcc63ab2008-07-30 16:29:20 -04001888
Chris Mason0f7d52f2007-04-09 10:42:37 -04001889 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001890 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001891
Chris Mason0f7d52f2007-04-09 10:42:37 -04001892 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001893 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001894
Chris Mason0b86a832008-03-24 15:01:56 -04001895 if (root->fs_info->chunk_root->node);
1896 free_extent_buffer(root->fs_info->chunk_root->node);
1897
1898 if (root->fs_info->dev_root->node);
1899 free_extent_buffer(root->fs_info->dev_root->node);
1900
Chris Mason9078a3e2007-04-26 16:46:15 -04001901 btrfs_free_block_groups(root->fs_info);
Chris Mason4ca8b412008-08-05 13:30:48 -04001902 fs_info->closing = 2;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001903 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001904
1905 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1906
Chris Masondb945352007-10-15 16:15:53 -04001907 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001908
Chris Mason247e7432008-07-17 12:53:51 -04001909 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001910 btrfs_stop_workers(&fs_info->workers);
1911 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001912 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001913 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04001914
Chris Masondb945352007-10-15 16:15:53 -04001915 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001916#if 0
1917 while(!list_empty(&fs_info->hashers)) {
1918 struct btrfs_hasher *hasher;
1919 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1920 hashers);
1921 list_del(&hasher->hashers);
1922 crypto_free_hash(&fs_info->hash_tfm);
1923 kfree(hasher);
1924 }
1925#endif
Chris Masondfe25022008-05-13 13:46:40 -04001926 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04001927 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04001928
Chris Mason04160082008-03-26 10:28:07 -04001929 bdi_destroy(&fs_info->bdi);
Chris Mason0b86a832008-03-24 15:01:56 -04001930
Chris Mason0f7d52f2007-04-09 10:42:37 -04001931 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001932 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001933 kfree(fs_info->chunk_root);
1934 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001935 return 0;
1936}
1937
Chris Mason1259ab72008-05-12 13:39:03 -04001938int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04001939{
Chris Mason1259ab72008-05-12 13:39:03 -04001940 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04001941 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04001942
1943 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
1944 if (!ret)
1945 return ret;
1946
1947 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
1948 parent_transid);
1949 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001950}
Chris Mason6702ed42007-08-07 16:15:09 -04001951
Chris Mason5f39d392007-10-15 16:14:19 -04001952int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1953{
Chris Mason810191f2007-10-15 16:18:55 -04001954 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001955 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001956 buf);
1957}
1958
1959void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1960{
Chris Mason810191f2007-10-15 16:18:55 -04001961 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001962 u64 transid = btrfs_header_generation(buf);
1963 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001964
Chris Mason925baed2008-06-25 16:01:30 -04001965 WARN_ON(!btrfs_tree_locked(buf));
Chris Masonccd467d2007-06-28 15:57:36 -04001966 if (transid != root->fs_info->generation) {
1967 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001968 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001969 transid, root->fs_info->generation);
1970 WARN_ON(1);
1971 }
Chris Masond1310b22008-01-24 16:13:08 -05001972 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001973}
1974
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001975void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001976{
Chris Mason188de642008-05-09 11:52:25 -04001977 /*
1978 * looks as though older kernels can get into trouble with
1979 * this code, they end up stuck in balance_dirty_pages forever
1980 */
Chris Masond6bfde82008-04-30 13:59:35 -04001981 struct extent_io_tree *tree;
1982 u64 num_dirty;
1983 u64 start = 0;
Chris Masonb64a2852008-08-20 13:39:41 -04001984 unsigned long thresh = 96 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04001985 tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
1986
Chris Masonb64a2852008-08-20 13:39:41 -04001987 if (current_is_pdflush() || current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04001988 return;
1989
1990 num_dirty = count_range_bits(tree, &start, (u64)-1,
1991 thresh, EXTENT_DIRTY);
1992 if (num_dirty > thresh) {
1993 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05001994 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04001995 }
Chris Mason188de642008-05-09 11:52:25 -04001996 return;
Chris Mason35b7e472007-05-02 15:53:43 -04001997}
Chris Mason6b800532007-10-15 16:17:34 -04001998
Chris Masonca7a79a2008-05-12 12:59:19 -04001999int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04002000{
Chris Mason810191f2007-10-15 16:18:55 -04002001 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04002002 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04002003 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -04002004 if (ret == 0) {
2005 buf->flags |= EXTENT_UPTODATE;
2006 }
2007 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04002008}
Chris Mason0da54682007-11-07 21:08:01 -05002009
Chris Mason4bef0842008-09-08 11:18:08 -04002010int btree_lock_page_hook(struct page *page)
2011{
2012 struct inode *inode = page->mapping->host;
2013 struct btrfs_root *root = BTRFS_I(inode)->root;
2014 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2015 struct extent_buffer *eb;
2016 unsigned long len;
2017 u64 bytenr = page_offset(page);
2018
2019 if (page->private == EXTENT_PAGE_PRIVATE)
2020 goto out;
2021
2022 len = page->private >> 2;
2023 eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
2024 if (!eb)
2025 goto out;
2026
2027 btrfs_tree_lock(eb);
2028 spin_lock(&root->fs_info->hash_lock);
2029 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
2030 spin_unlock(&root->fs_info->hash_lock);
2031 btrfs_tree_unlock(eb);
2032 free_extent_buffer(eb);
2033out:
2034 lock_page(page);
2035 return 0;
2036}
2037
Chris Masond1310b22008-01-24 16:13:08 -05002038static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04002039 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04002040 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04002041 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04002042 /* note we're sharing with inode.c for the merge bio hook */
2043 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05002044};