blob: 25be96946a2faa817bdc6ec7c7016e0ed7384c0e [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>
29#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
30# include <linux/freezer.h>
31#else
32# include <linux/sched.h>
33#endif
Miguela5eb62e2008-04-11 15:45:51 -040034#include "crc32c.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050035#include "ctree.h"
36#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040037#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040038#include "btrfs_inode.h"
Chris Mason0b86a832008-03-24 15:01:56 -040039#include "volumes.h"
Chris Masondb945352007-10-15 16:15:53 -040040#include "print-tree.h"
Chris Mason8b712842008-06-11 16:50:36 -040041#include "async-thread.h"
Chris Mason925baed2008-06-25 16:01:30 -040042#include "locking.h"
Chris Mason017e5362008-07-28 15:32:51 -040043#include "ref-cache.h"
Chris Masone02119d2008-09-05 16:13:11 -040044#include "tree-log.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050045
Chris Mason5f39d392007-10-15 16:14:19 -040046#if 0
47static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040048{
Chris Mason5f39d392007-10-15 16:14:19 -040049 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
50 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
51 (unsigned long long)extent_buffer_blocknr(buf),
52 (unsigned long long)btrfs_header_blocknr(buf));
Chris Mason39279cc2007-06-12 06:35:45 -040053 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040054 }
Chris Mason9a8dd152007-02-23 08:38:36 -050055 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050056}
Chris Mason5f39d392007-10-15 16:14:19 -040057#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050058
Chris Masond1310b22008-01-24 16:13:08 -050059static struct extent_io_ops btree_extent_io_ops;
Chris Mason8b712842008-06-11 16:50:36 -040060static void end_workqueue_fn(struct btrfs_work *work);
Chris Masonce9adaa2008-04-09 16:28:12 -040061
62struct end_io_wq {
63 struct bio *bio;
64 bio_end_io_t *end_io;
65 void *private;
66 struct btrfs_fs_info *info;
67 int error;
Chris Mason22c59942008-04-09 16:28:12 -040068 int metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -040069 struct list_head list;
Chris Mason8b712842008-06-11 16:50:36 -040070 struct btrfs_work work;
Chris Masonce9adaa2008-04-09 16:28:12 -040071};
Chris Mason0da54682007-11-07 21:08:01 -050072
Chris Mason44b8bd72008-04-16 11:14:51 -040073struct async_submit_bio {
74 struct inode *inode;
75 struct bio *bio;
76 struct list_head list;
77 extent_submit_bio_hook_t *submit_bio_hook;
78 int rw;
79 int mirror_num;
Chris Mason8b712842008-06-11 16:50:36 -040080 struct btrfs_work work;
Chris Mason44b8bd72008-04-16 11:14:51 -040081};
82
Chris Mason5f39d392007-10-15 16:14:19 -040083struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050084 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040085 int create)
86{
87 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
88 struct extent_map *em;
89 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040090
Chris Masond1310b22008-01-24 16:13:08 -050091 spin_lock(&em_tree->lock);
92 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -040093 if (em) {
94 em->bdev =
95 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
96 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040097 goto out;
Chris Masona061fc82008-05-07 11:43:44 -040098 }
99 spin_unlock(&em_tree->lock);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400100
Chris Mason5f39d392007-10-15 16:14:19 -0400101 em = alloc_extent_map(GFP_NOFS);
102 if (!em) {
103 em = ERR_PTR(-ENOMEM);
104 goto out;
105 }
106 em->start = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400107 em->len = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400108 em->block_start = 0;
Chris Masona061fc82008-05-07 11:43:44 -0400109 em->bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -0500110
111 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -0400112 ret = add_extent_mapping(em_tree, em);
113 if (ret == -EEXIST) {
Chris Mason0afbaf82008-04-18 14:17:20 -0400114 u64 failed_start = em->start;
115 u64 failed_len = em->len;
116
117 printk("failed to insert %Lu %Lu -> %Lu into tree\n",
118 em->start, em->len, em->block_start);
Chris Mason5f39d392007-10-15 16:14:19 -0400119 free_extent_map(em);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400120 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason0afbaf82008-04-18 14:17:20 -0400121 if (em) {
122 printk("after failing, found %Lu %Lu %Lu\n",
123 em->start, em->len, em->block_start);
Chris Mason7b13b7b2008-04-18 10:29:50 -0400124 ret = 0;
Chris Mason0afbaf82008-04-18 14:17:20 -0400125 } else {
126 em = lookup_extent_mapping(em_tree, failed_start,
127 failed_len);
128 if (em) {
129 printk("double failure lookup gives us "
130 "%Lu %Lu -> %Lu\n", em->start,
131 em->len, em->block_start);
132 free_extent_map(em);
133 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400134 ret = -EIO;
Chris Mason0afbaf82008-04-18 14:17:20 -0400135 }
Chris Mason5f39d392007-10-15 16:14:19 -0400136 } else if (ret) {
Chris Mason7b13b7b2008-04-18 10:29:50 -0400137 free_extent_map(em);
138 em = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400139 }
Chris Mason7b13b7b2008-04-18 10:29:50 -0400140 spin_unlock(&em_tree->lock);
141
142 if (ret)
143 em = ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400144out:
145 return em;
146}
147
Chris Mason19c00dd2007-10-15 16:19:22 -0400148u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
149{
Miguela5eb62e2008-04-11 15:45:51 -0400150 return btrfs_crc32c(seed, data, len);
Chris Mason19c00dd2007-10-15 16:19:22 -0400151}
152
153void btrfs_csum_final(u32 crc, char *result)
154{
155 *(__le32 *)result = ~cpu_to_le32(crc);
156}
157
158static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
159 int verify)
160{
161 char result[BTRFS_CRC32_SIZE];
162 unsigned long len;
163 unsigned long cur_len;
164 unsigned long offset = BTRFS_CSUM_SIZE;
165 char *map_token = NULL;
166 char *kaddr;
167 unsigned long map_start;
168 unsigned long map_len;
169 int err;
170 u32 crc = ~(u32)0;
171
172 len = buf->len - offset;
173 while(len > 0) {
174 err = map_private_extent_buffer(buf, offset, 32,
175 &map_token, &kaddr,
176 &map_start, &map_len, KM_USER0);
177 if (err) {
178 printk("failed to map extent buffer! %lu\n",
179 offset);
180 return 1;
181 }
182 cur_len = min(len, map_len - (offset - map_start));
183 crc = btrfs_csum_data(root, kaddr + offset - map_start,
184 crc, cur_len);
185 len -= cur_len;
186 offset += cur_len;
187 unmap_extent_buffer(buf, map_token, KM_USER0);
188 }
189 btrfs_csum_final(crc, result);
190
191 if (verify) {
Chris Masone4204de2008-01-08 15:46:27 -0500192 /* FIXME, this is not good */
Chris Mason63b10fc2008-04-01 11:21:32 -0400193 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
Chris Masone4204de2008-01-08 15:46:27 -0500194 u32 val;
195 u32 found = 0;
196 memcpy(&found, result, BTRFS_CRC32_SIZE);
197
198 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
199 printk("btrfs: %s checksum verify failed on %llu "
Chris Mason2dd3e672008-08-04 08:20:15 -0400200 "wanted %X found %X level %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400201 root->fs_info->sb->s_id,
Chris Mason2dd3e672008-08-04 08:20:15 -0400202 buf->start, val, found, btrfs_header_level(buf));
Chris Mason19c00dd2007-10-15 16:19:22 -0400203 return 1;
204 }
205 } else {
206 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
207 }
208 return 0;
209}
210
Chris Mason1259ab72008-05-12 13:39:03 -0400211static int verify_parent_transid(struct extent_io_tree *io_tree,
212 struct extent_buffer *eb, u64 parent_transid)
213{
214 int ret;
215
216 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
217 return 0;
218
219 lock_extent(io_tree, eb->start, eb->start + eb->len - 1, GFP_NOFS);
220 if (extent_buffer_uptodate(io_tree, eb) &&
221 btrfs_header_generation(eb) == parent_transid) {
222 ret = 0;
223 goto out;
224 }
225 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
226 (unsigned long long)eb->start,
227 (unsigned long long)parent_transid,
228 (unsigned long long)btrfs_header_generation(eb));
229 ret = 1;
Chris Mason1259ab72008-05-12 13:39:03 -0400230 clear_extent_buffer_uptodate(io_tree, eb);
Chris Mason33958dc2008-07-30 10:29:12 -0400231out:
Chris Mason1259ab72008-05-12 13:39:03 -0400232 unlock_extent(io_tree, eb->start, eb->start + eb->len - 1,
233 GFP_NOFS);
234 return ret;
235
236}
237
Chris Masonf1885912008-04-09 16:28:12 -0400238static int btree_read_extent_buffer_pages(struct btrfs_root *root,
239 struct extent_buffer *eb,
Chris Masonca7a79a2008-05-12 12:59:19 -0400240 u64 start, u64 parent_transid)
Chris Masonf1885912008-04-09 16:28:12 -0400241{
242 struct extent_io_tree *io_tree;
243 int ret;
244 int num_copies = 0;
245 int mirror_num = 0;
246
247 io_tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
248 while (1) {
249 ret = read_extent_buffer_pages(io_tree, eb, start, 1,
250 btree_get_extent, mirror_num);
Chris Mason1259ab72008-05-12 13:39:03 -0400251 if (!ret &&
252 !verify_parent_transid(io_tree, eb, parent_transid))
Chris Masonf1885912008-04-09 16:28:12 -0400253 return ret;
Chris Masona1b32a52008-09-05 16:09:51 -0400254printk("read extent buffer pages failed with ret %d mirror no %d\n", ret, mirror_num);
Chris Masonf1885912008-04-09 16:28:12 -0400255 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
256 eb->start, eb->len);
Chris Mason42352982008-04-28 16:40:52 -0400257 if (num_copies == 1)
Chris Masonf1885912008-04-09 16:28:12 -0400258 return ret;
Chris Mason42352982008-04-28 16:40:52 -0400259
Chris Masonf1885912008-04-09 16:28:12 -0400260 mirror_num++;
Chris Mason42352982008-04-28 16:40:52 -0400261 if (mirror_num > num_copies)
Chris Masonf1885912008-04-09 16:28:12 -0400262 return ret;
Chris Masonf1885912008-04-09 16:28:12 -0400263 }
Chris Masonf1885912008-04-09 16:28:12 -0400264 return -EIO;
265}
Chris Mason19c00dd2007-10-15 16:19:22 -0400266
267int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
268{
Chris Masond1310b22008-01-24 16:13:08 -0500269 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400270 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400271 u64 found_start;
272 int found_level;
273 unsigned long len;
274 struct extent_buffer *eb;
Chris Masonf1885912008-04-09 16:28:12 -0400275 int ret;
276
Chris Masond1310b22008-01-24 16:13:08 -0500277 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400278
279 if (page->private == EXTENT_PAGE_PRIVATE)
280 goto out;
281 if (!page->private)
282 goto out;
283 len = page->private >> 2;
284 if (len == 0) {
285 WARN_ON(1);
286 }
287 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -0400288 ret = btree_read_extent_buffer_pages(root, eb, start + PAGE_CACHE_SIZE,
289 btrfs_header_generation(eb));
Chris Masonf1885912008-04-09 16:28:12 -0400290 BUG_ON(ret);
Chris Mason19c00dd2007-10-15 16:19:22 -0400291 found_start = btrfs_header_bytenr(eb);
292 if (found_start != start) {
293 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
294 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500295 WARN_ON(1);
296 goto err;
297 }
298 if (eb->first_page != page) {
299 printk("bad first page %lu %lu\n", eb->first_page->index,
300 page->index);
301 WARN_ON(1);
302 goto err;
303 }
304 if (!PageUptodate(page)) {
305 printk("csum not up to date page %lu\n", page->index);
306 WARN_ON(1);
307 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400308 }
309 found_level = btrfs_header_level(eb);
Chris Mason4bef0842008-09-08 11:18:08 -0400310
Chris Mason19c00dd2007-10-15 16:19:22 -0400311 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500312err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400313 free_extent_buffer(eb);
314out:
315 return 0;
316}
317
Chris Masonce9adaa2008-04-09 16:28:12 -0400318int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end,
319 struct extent_state *state)
320{
321 struct extent_io_tree *tree;
322 u64 found_start;
323 int found_level;
324 unsigned long len;
325 struct extent_buffer *eb;
326 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masonf1885912008-04-09 16:28:12 -0400327 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -0400328
329 tree = &BTRFS_I(page->mapping->host)->io_tree;
330 if (page->private == EXTENT_PAGE_PRIVATE)
331 goto out;
332 if (!page->private)
333 goto out;
334 len = page->private >> 2;
335 if (len == 0) {
336 WARN_ON(1);
337 }
338 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masonf1885912008-04-09 16:28:12 -0400339
Chris Masonce9adaa2008-04-09 16:28:12 -0400340 found_start = btrfs_header_bytenr(eb);
Chris Mason23a07862008-09-12 08:57:47 -0400341 if (found_start != start) {
Chris Masona1b32a52008-09-05 16:09:51 -0400342 printk("bad tree block start %llu %llu\n",
343 (unsigned long long)found_start,
344 (unsigned long long)eb->start);
Chris Masonf1885912008-04-09 16:28:12 -0400345 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400346 goto err;
347 }
348 if (eb->first_page != page) {
349 printk("bad first page %lu %lu\n", eb->first_page->index,
350 page->index);
351 WARN_ON(1);
Chris Masonf1885912008-04-09 16:28:12 -0400352 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400353 goto err;
354 }
Chris Mason1259ab72008-05-12 13:39:03 -0400355 if (memcmp_extent_buffer(eb, root->fs_info->fsid,
356 (unsigned long)btrfs_header_fsid(eb),
357 BTRFS_FSID_SIZE)) {
358 printk("bad fsid on block %Lu\n", eb->start);
359 ret = -EIO;
360 goto err;
361 }
Chris Masonce9adaa2008-04-09 16:28:12 -0400362 found_level = btrfs_header_level(eb);
363
364 ret = csum_tree_block(root, eb, 1);
Chris Masonf1885912008-04-09 16:28:12 -0400365 if (ret)
366 ret = -EIO;
Chris Masonce9adaa2008-04-09 16:28:12 -0400367
368 end = min_t(u64, eb->len, PAGE_CACHE_SIZE);
369 end = eb->start + end - 1;
Chris Masonce9adaa2008-04-09 16:28:12 -0400370err:
371 free_extent_buffer(eb);
372out:
Chris Masonf1885912008-04-09 16:28:12 -0400373 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -0400374}
375
376#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
377static void end_workqueue_bio(struct bio *bio, int err)
378#else
379static int end_workqueue_bio(struct bio *bio,
380 unsigned int bytes_done, int err)
381#endif
382{
383 struct end_io_wq *end_io_wq = bio->bi_private;
384 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400385
386#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
387 if (bio->bi_size)
388 return 1;
389#endif
390
391 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400392 end_io_wq->error = err;
Chris Mason8b712842008-06-11 16:50:36 -0400393 end_io_wq->work.func = end_workqueue_fn;
394 end_io_wq->work.flags = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400395 if (bio->bi_rw & (1 << BIO_RW))
396 btrfs_queue_worker(&fs_info->endio_write_workers,
397 &end_io_wq->work);
398 else
399 btrfs_queue_worker(&fs_info->endio_workers, &end_io_wq->work);
Chris Masonce9adaa2008-04-09 16:28:12 -0400400
401#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
402 return 0;
403#endif
404}
405
Chris Mason22c59942008-04-09 16:28:12 -0400406int btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
407 int metadata)
Chris Mason0b86a832008-03-24 15:01:56 -0400408{
Chris Masonce9adaa2008-04-09 16:28:12 -0400409 struct end_io_wq *end_io_wq;
Chris Masonce9adaa2008-04-09 16:28:12 -0400410 end_io_wq = kmalloc(sizeof(*end_io_wq), GFP_NOFS);
411 if (!end_io_wq)
412 return -ENOMEM;
413
414 end_io_wq->private = bio->bi_private;
415 end_io_wq->end_io = bio->bi_end_io;
Chris Mason22c59942008-04-09 16:28:12 -0400416 end_io_wq->info = info;
Chris Masonce9adaa2008-04-09 16:28:12 -0400417 end_io_wq->error = 0;
418 end_io_wq->bio = bio;
Chris Mason22c59942008-04-09 16:28:12 -0400419 end_io_wq->metadata = metadata;
Chris Masonce9adaa2008-04-09 16:28:12 -0400420
421 bio->bi_private = end_io_wq;
422 bio->bi_end_io = end_workqueue_bio;
Chris Mason22c59942008-04-09 16:28:12 -0400423 return 0;
424}
425
Chris Masonb64a2852008-08-20 13:39:41 -0400426unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
Chris Mason4854ddd2008-08-15 15:34:17 -0400427{
428 unsigned long limit = min_t(unsigned long,
429 info->workers.max_workers,
430 info->fs_devices->open_devices);
431 return 256 * limit;
432}
433
Chris Mason777e6bd2008-08-15 15:34:15 -0400434int btrfs_congested_async(struct btrfs_fs_info *info, int iodone)
Chris Mason0986fe9e2008-08-15 15:34:15 -0400435{
Chris Masonb64a2852008-08-20 13:39:41 -0400436 return atomic_read(&info->nr_async_bios) >
437 btrfs_async_submit_limit(info);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400438}
439
Chris Mason8b712842008-06-11 16:50:36 -0400440static void run_one_async_submit(struct btrfs_work *work)
441{
442 struct btrfs_fs_info *fs_info;
443 struct async_submit_bio *async;
Chris Mason4854ddd2008-08-15 15:34:17 -0400444 int limit;
Chris Mason8b712842008-06-11 16:50:36 -0400445
446 async = container_of(work, struct async_submit_bio, work);
447 fs_info = BTRFS_I(async->inode)->root->fs_info;
Chris Mason4854ddd2008-08-15 15:34:17 -0400448
Chris Masonb64a2852008-08-20 13:39:41 -0400449 limit = btrfs_async_submit_limit(fs_info);
Chris Mason4854ddd2008-08-15 15:34:17 -0400450 limit = limit * 2 / 3;
451
Chris Mason8b712842008-06-11 16:50:36 -0400452 atomic_dec(&fs_info->nr_async_submits);
Chris Mason0986fe9e2008-08-15 15:34:15 -0400453
Chris Masonb64a2852008-08-20 13:39:41 -0400454 if (atomic_read(&fs_info->nr_async_submits) < limit &&
455 waitqueue_active(&fs_info->async_submit_wait))
Chris Mason4854ddd2008-08-15 15:34:17 -0400456 wake_up(&fs_info->async_submit_wait);
457
Chris Mason8b712842008-06-11 16:50:36 -0400458 async->submit_bio_hook(async->inode, async->rw, async->bio,
459 async->mirror_num);
460 kfree(async);
461}
462
Chris Mason44b8bd72008-04-16 11:14:51 -0400463int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode,
464 int rw, struct bio *bio, int mirror_num,
465 extent_submit_bio_hook_t *submit_bio_hook)
466{
467 struct async_submit_bio *async;
Chris Masonb64a2852008-08-20 13:39:41 -0400468 int limit = btrfs_async_submit_limit(fs_info);
Chris Mason44b8bd72008-04-16 11:14:51 -0400469
470 async = kmalloc(sizeof(*async), GFP_NOFS);
471 if (!async)
472 return -ENOMEM;
473
474 async->inode = inode;
475 async->rw = rw;
476 async->bio = bio;
477 async->mirror_num = mirror_num;
478 async->submit_bio_hook = submit_bio_hook;
Chris Mason8b712842008-06-11 16:50:36 -0400479 async->work.func = run_one_async_submit;
480 async->work.flags = 0;
Chris Masoncb03c742008-05-15 16:15:45 -0400481 atomic_inc(&fs_info->nr_async_submits);
Chris Mason8b712842008-06-11 16:50:36 -0400482 btrfs_queue_worker(&fs_info->workers, &async->work);
Chris Mason4854ddd2008-08-15 15:34:17 -0400483
Chris Mason9473f162008-08-28 06:15:24 -0400484 if (atomic_read(&fs_info->nr_async_submits) > limit) {
485 wait_event_timeout(fs_info->async_submit_wait,
Chris Mason4854ddd2008-08-15 15:34:17 -0400486 (atomic_read(&fs_info->nr_async_submits) < limit),
487 HZ/10);
Chris Mason9473f162008-08-28 06:15:24 -0400488
489 wait_event_timeout(fs_info->async_submit_wait,
490 (atomic_read(&fs_info->nr_async_bios) < limit),
491 HZ/10);
492 }
Chris Mason44b8bd72008-04-16 11:14:51 -0400493 return 0;
494}
495
Chris Masonce3ed712008-09-23 13:14:12 -0400496static int btree_csum_one_bio(struct bio *bio)
497{
498 struct bio_vec *bvec = bio->bi_io_vec;
499 int bio_index = 0;
500 struct btrfs_root *root;
501
502 WARN_ON(bio->bi_vcnt <= 0);
503 while(bio_index < bio->bi_vcnt) {
504 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
505 csum_dirty_buffer(root, bvec->bv_page);
506 bio_index++;
507 bvec++;
508 }
509 return 0;
510}
511
Chris Mason44b8bd72008-04-16 11:14:51 -0400512static int __btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400513 int mirror_num)
Chris Mason22c59942008-04-09 16:28:12 -0400514{
515 struct btrfs_root *root = BTRFS_I(inode)->root;
516 u64 offset;
517 int ret;
518
519 offset = bio->bi_sector << 9;
520
Chris Mason8b712842008-06-11 16:50:36 -0400521 /*
522 * when we're called for a write, we're already in the async
Chris Mason5443be42008-08-15 15:34:16 -0400523 * submission context. Just jump into btrfs_map_bio
Chris Mason8b712842008-06-11 16:50:36 -0400524 */
Chris Mason22c59942008-04-09 16:28:12 -0400525 if (rw & (1 << BIO_RW)) {
Chris Masonce3ed712008-09-23 13:14:12 -0400526 btree_csum_one_bio(bio);
Chris Mason8b712842008-06-11 16:50:36 -0400527 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio,
Chris Mason5443be42008-08-15 15:34:16 -0400528 mirror_num, 1);
Chris Mason22c59942008-04-09 16:28:12 -0400529 }
530
Chris Mason8b712842008-06-11 16:50:36 -0400531 /*
532 * called for a read, do the setup so that checksum validation
533 * can happen in the async kernel threads
534 */
Chris Mason22c59942008-04-09 16:28:12 -0400535 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 1);
536 BUG_ON(ret);
Chris Masonce9adaa2008-04-09 16:28:12 -0400537
Chris Mason8b712842008-06-11 16:50:36 -0400538 return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, mirror_num, 1);
Chris Mason0b86a832008-03-24 15:01:56 -0400539}
540
Chris Mason44b8bd72008-04-16 11:14:51 -0400541static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
542 int mirror_num)
543{
Chris Mason8b712842008-06-11 16:50:36 -0400544 /*
545 * kthread helpers are used to submit writes so that checksumming
546 * can happen in parallel across all CPUs
547 */
Chris Mason44b8bd72008-04-16 11:14:51 -0400548 if (!(rw & (1 << BIO_RW))) {
549 return __btree_submit_bio_hook(inode, rw, bio, mirror_num);
550 }
551 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
552 inode, rw, bio, mirror_num,
553 __btree_submit_bio_hook);
554}
555
Chris Mason5f39d392007-10-15 16:14:19 -0400556static int btree_writepage(struct page *page, struct writeback_control *wbc)
557{
Chris Masond1310b22008-01-24 16:13:08 -0500558 struct extent_io_tree *tree;
559 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5443be42008-08-15 15:34:16 -0400560
561 if (current->flags & PF_MEMALLOC) {
562 redirty_page_for_writepage(wbc, page);
563 unlock_page(page);
564 return 0;
565 }
Chris Mason5f39d392007-10-15 16:14:19 -0400566 return extent_write_full_page(tree, page, btree_get_extent, wbc);
567}
Chris Mason0da54682007-11-07 21:08:01 -0500568
569static int btree_writepages(struct address_space *mapping,
570 struct writeback_control *wbc)
571{
Chris Masond1310b22008-01-24 16:13:08 -0500572 struct extent_io_tree *tree;
573 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500574 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800575 u64 num_dirty;
576 u64 start = 0;
Chris Mason4854ddd2008-08-15 15:34:17 -0400577 unsigned long thresh = 8 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800578
579 if (wbc->for_kupdate)
580 return 0;
581
Chris Mason1832a6d2007-12-21 16:27:21 -0500582 num_dirty = count_range_bits(tree, &start, (u64)-1,
583 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800584 if (num_dirty < thresh) {
585 return 0;
586 }
587 }
Chris Mason0da54682007-11-07 21:08:01 -0500588 return extent_writepages(tree, mapping, btree_get_extent, wbc);
589}
590
Chris Mason5f39d392007-10-15 16:14:19 -0400591int btree_readpage(struct file *file, struct page *page)
592{
Chris Masond1310b22008-01-24 16:13:08 -0500593 struct extent_io_tree *tree;
594 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400595 return extent_read_full_page(tree, page, btree_get_extent);
596}
597
Chris Mason70dec802008-01-29 09:59:12 -0500598static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400599{
Chris Masond1310b22008-01-24 16:13:08 -0500600 struct extent_io_tree *tree;
601 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400602 int ret;
603
Chris Mason98509cf2008-09-11 15:51:43 -0400604 if (PageWriteback(page) || PageDirty(page))
605 return 0;
606
Chris Masond1310b22008-01-24 16:13:08 -0500607 tree = &BTRFS_I(page->mapping->host)->io_tree;
608 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason6af118ce2008-07-22 11:18:07 -0400609
Chris Mason7b13b7b2008-04-18 10:29:50 -0400610 ret = try_release_extent_state(map, tree, page, gfp_flags);
Chris Mason6af118ce2008-07-22 11:18:07 -0400611 if (!ret) {
612 return 0;
613 }
614
615 ret = try_release_extent_buffer(tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400616 if (ret == 1) {
617 ClearPagePrivate(page);
618 set_page_private(page, 0);
619 page_cache_release(page);
620 }
Chris Mason6af118ce2008-07-22 11:18:07 -0400621
Chris Masond98237b2007-03-28 13:57:48 -0400622 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400623}
Chris Mason123abc82007-03-14 14:14:43 -0400624
Chris Mason5f39d392007-10-15 16:14:19 -0400625static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400626{
Chris Masond1310b22008-01-24 16:13:08 -0500627 struct extent_io_tree *tree;
628 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400629 extent_invalidatepage(tree, page, offset);
630 btree_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400631 if (PagePrivate(page)) {
Chris Mason6af118ce2008-07-22 11:18:07 -0400632 printk("warning page private not zero on page %Lu\n",
633 page_offset(page));
Chris Mason9ad6b7b2008-04-18 16:11:30 -0400634 ClearPagePrivate(page);
635 set_page_private(page, 0);
636 page_cache_release(page);
637 }
Chris Masond98237b2007-03-28 13:57:48 -0400638}
639
Chris Mason5f39d392007-10-15 16:14:19 -0400640#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400641static int btree_writepage(struct page *page, struct writeback_control *wbc)
642{
Chris Mason87cbda52007-03-28 19:44:27 -0400643 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400644 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400645 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400646 if (!page_has_buffers(page)) {
647 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
648 (1 << BH_Dirty)|(1 << BH_Uptodate));
649 }
650 head = page_buffers(page);
651 bh = head;
652 do {
653 if (buffer_dirty(bh))
654 csum_tree_block(root, bh, 0);
655 bh = bh->b_this_page;
656 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400657 return block_write_full_page(page, btree_get_block, wbc);
658}
Chris Mason5f39d392007-10-15 16:14:19 -0400659#endif
Chris Masond98237b2007-03-28 13:57:48 -0400660
661static struct address_space_operations btree_aops = {
662 .readpage = btree_readpage,
663 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500664 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400665 .releasepage = btree_releasepage,
666 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400667 .sync_page = block_sync_page,
668};
669
Chris Masonca7a79a2008-05-12 12:59:19 -0400670int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
671 u64 parent_transid)
Chris Mason090d1872007-05-01 08:53:32 -0400672{
Chris Mason5f39d392007-10-15 16:14:19 -0400673 struct extent_buffer *buf = NULL;
674 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400675 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400676
Chris Masondb945352007-10-15 16:15:53 -0400677 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400678 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400679 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500680 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masonf1885912008-04-09 16:28:12 -0400681 buf, 0, 0, btree_get_extent, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400682 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400683 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400684}
685
Chris Mason0999df52008-04-01 13:48:14 -0400686struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
687 u64 bytenr, u32 blocksize)
688{
689 struct inode *btree_inode = root->fs_info->btree_inode;
690 struct extent_buffer *eb;
691 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
692 bytenr, blocksize, GFP_NOFS);
693 return eb;
694}
695
696struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
697 u64 bytenr, u32 blocksize)
698{
699 struct inode *btree_inode = root->fs_info->btree_inode;
700 struct extent_buffer *eb;
701
702 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
703 bytenr, blocksize, NULL, GFP_NOFS);
704 return eb;
705}
706
707
Chris Masone02119d2008-09-05 16:13:11 -0400708int btrfs_write_tree_block(struct extent_buffer *buf)
709{
710 return btrfs_fdatawrite_range(buf->first_page->mapping, buf->start,
711 buf->start + buf->len - 1, WB_SYNC_NONE);
712}
713
714int btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
715{
716 return btrfs_wait_on_page_writeback_range(buf->first_page->mapping,
717 buf->start, buf->start + buf->len -1);
718}
719
Chris Masondb945352007-10-15 16:15:53 -0400720struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400721 u32 blocksize, u64 parent_transid)
Chris Masone20d96d2007-03-22 12:13:20 -0400722{
Chris Mason5f39d392007-10-15 16:14:19 -0400723 struct extent_buffer *buf = NULL;
724 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500725 struct extent_io_tree *io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400726 int ret;
727
Chris Masond1310b22008-01-24 16:13:08 -0500728 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400729
Chris Masondb945352007-10-15 16:15:53 -0400730 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400731 if (!buf)
732 return NULL;
Chris Masone4204de2008-01-08 15:46:27 -0500733
Chris Masonca7a79a2008-05-12 12:59:19 -0400734 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -0400735
736 if (ret == 0) {
737 buf->flags |= EXTENT_UPTODATE;
Chris Masona1b32a52008-09-05 16:09:51 -0400738 } else {
739 WARN_ON(1);
Chris Masonce9adaa2008-04-09 16:28:12 -0400740 }
Chris Mason5f39d392007-10-15 16:14:19 -0400741 return buf;
Chris Masonce9adaa2008-04-09 16:28:12 -0400742
Chris Masoneb60cea2007-02-02 09:18:22 -0500743}
744
Chris Masone089f052007-03-16 16:20:31 -0400745int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400746 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500747{
Chris Mason5f39d392007-10-15 16:14:19 -0400748 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500749 if (btrfs_header_generation(buf) ==
Chris Mason925baed2008-06-25 16:01:30 -0400750 root->fs_info->running_transaction->transid) {
751 WARN_ON(!btrfs_tree_locked(buf));
Chris Masond1310b22008-01-24 16:13:08 -0500752 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500753 buf);
Chris Mason925baed2008-06-25 16:01:30 -0400754 }
Chris Mason5f39d392007-10-15 16:14:19 -0400755 return 0;
756}
757
Chris Masondb945352007-10-15 16:15:53 -0400758static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500759 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400760 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400761 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500762{
Chris Masoncfaa7292007-02-21 17:04:57 -0500763 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400764 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500765 root->commit_root = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -0400766 root->ref_tree = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400767 root->sectorsize = sectorsize;
768 root->nodesize = nodesize;
769 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500770 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400771 root->ref_cows = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400772 root->track_dirty = 0;
773
Chris Mason9f5fae22007-03-20 14:38:32 -0400774 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400775 root->objectid = objectid;
776 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400777 root->highest_inode = 0;
778 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400779 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500780 root->in_sysfs = 0;
Chris Mason0b86a832008-03-24 15:01:56 -0400781
782 INIT_LIST_HEAD(&root->dirty_list);
Josef Bacik7b128762008-07-24 12:17:14 -0400783 INIT_LIST_HEAD(&root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400784 INIT_LIST_HEAD(&root->dead_list);
Chris Mason925baed2008-06-25 16:01:30 -0400785 spin_lock_init(&root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400786 spin_lock_init(&root->list_lock);
Chris Masona2135012008-06-25 16:01:30 -0400787 mutex_init(&root->objectid_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400788 mutex_init(&root->log_mutex);
Chris Masond0c803c2008-09-11 16:17:57 -0400789 extent_io_tree_init(&root->dirty_log_pages,
790 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason017e5362008-07-28 15:32:51 -0400791
792 btrfs_leaf_ref_tree_init(&root->ref_tree_struct);
793 root->ref_tree = &root->ref_tree_struct;
794
Chris Mason3768f362007-03-13 16:47:54 -0400795 memset(&root->root_key, 0, sizeof(root->root_key));
796 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400797 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400798 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
Chris Mason3f157a22008-06-25 16:01:31 -0400799 root->defrag_trans_start = fs_info->generation;
Josef Bacik58176a92007-08-29 15:47:34 -0400800 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400801 root->defrag_running = 0;
802 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400803 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400804 return 0;
805}
806
Chris Masondb945352007-10-15 16:15:53 -0400807static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400808 struct btrfs_fs_info *fs_info,
809 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400810 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400811{
812 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400813 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400814
Chris Masondb945352007-10-15 16:15:53 -0400815 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500816 tree_root->sectorsize, tree_root->stripesize,
817 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400818 ret = btrfs_find_last_root(tree_root, objectid,
819 &root->root_item, &root->root_key);
820 BUG_ON(ret);
821
Chris Masondb945352007-10-15 16:15:53 -0400822 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
823 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400824 blocksize, 0);
Chris Mason3768f362007-03-13 16:47:54 -0400825 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500826 return 0;
827}
828
Chris Masone02119d2008-09-05 16:13:11 -0400829int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
830 struct btrfs_fs_info *fs_info)
831{
832 struct extent_buffer *eb;
Chris Masond0c803c2008-09-11 16:17:57 -0400833 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
834 u64 start = 0;
835 u64 end = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400836 int ret;
837
Chris Masond0c803c2008-09-11 16:17:57 -0400838 if (!log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400839 return 0;
840
Chris Masond0c803c2008-09-11 16:17:57 -0400841 while(1) {
842 ret = find_first_extent_bit(&log_root_tree->dirty_log_pages,
843 0, &start, &end, EXTENT_DIRTY);
844 if (ret)
845 break;
846
847 clear_extent_dirty(&log_root_tree->dirty_log_pages,
848 start, end, GFP_NOFS);
849 }
Chris Masone02119d2008-09-05 16:13:11 -0400850 eb = fs_info->log_root_tree->node;
851
852 WARN_ON(btrfs_header_level(eb) != 0);
853 WARN_ON(btrfs_header_nritems(eb) != 0);
854
Chris Masond00aff02008-09-11 15:54:42 -0400855 ret = btrfs_free_reserved_extent(fs_info->tree_root,
856 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400857 BUG_ON(ret);
858
859 free_extent_buffer(eb);
860 kfree(fs_info->log_root_tree);
861 fs_info->log_root_tree = NULL;
862 return 0;
863}
864
865int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
866 struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400867{
868 struct btrfs_root *root;
869 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Masone02119d2008-09-05 16:13:11 -0400870
871 root = kzalloc(sizeof(*root), GFP_NOFS);
872 if (!root)
873 return -ENOMEM;
874
875 __setup_root(tree_root->nodesize, tree_root->leafsize,
876 tree_root->sectorsize, tree_root->stripesize,
877 root, fs_info, BTRFS_TREE_LOG_OBJECTID);
878
879 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
880 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
881 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
882 root->ref_cows = 0;
883
884 root->node = btrfs_alloc_free_block(trans, root, root->leafsize,
885 BTRFS_TREE_LOG_OBJECTID,
886 0, 0, 0, 0, 0);
887
888 btrfs_set_header_nritems(root->node, 0);
889 btrfs_set_header_level(root->node, 0);
890 btrfs_set_header_bytenr(root->node, root->node->start);
891 btrfs_set_header_generation(root->node, trans->transid);
892 btrfs_set_header_owner(root->node, BTRFS_TREE_LOG_OBJECTID);
893
894 write_extent_buffer(root->node, root->fs_info->fsid,
895 (unsigned long)btrfs_header_fsid(root->node),
896 BTRFS_FSID_SIZE);
897 btrfs_mark_buffer_dirty(root->node);
898 btrfs_tree_unlock(root->node);
899 fs_info->log_root_tree = root;
900 return 0;
901}
902
903struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
904 struct btrfs_key *location)
905{
906 struct btrfs_root *root;
907 struct btrfs_fs_info *fs_info = tree_root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400908 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400909 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400910 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400911 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400912 int ret = 0;
913
Chris Mason5eda7b52007-06-22 14:16:25 -0400914 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400915 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400916 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400917 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400918 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400919 location->objectid, root);
920 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400921 kfree(root);
922 return ERR_PTR(ret);
923 }
924 goto insert;
925 }
926
Chris Masondb945352007-10-15 16:15:53 -0400927 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500928 tree_root->sectorsize, tree_root->stripesize,
929 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400930
931 path = btrfs_alloc_path();
932 BUG_ON(!path);
933 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
934 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400935 if (ret > 0)
936 ret = -ENOENT;
937 goto out;
938 }
Chris Mason5f39d392007-10-15 16:14:19 -0400939 l = path->nodes[0];
940 read_extent_buffer(l, &root->root_item,
941 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400942 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400943 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400944 ret = 0;
945out:
946 btrfs_release_path(root, path);
947 btrfs_free_path(path);
948 if (ret) {
949 kfree(root);
950 return ERR_PTR(ret);
951 }
Chris Masondb945352007-10-15 16:15:53 -0400952 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
953 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
Chris Masonca7a79a2008-05-12 12:59:19 -0400954 blocksize, 0);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400955 BUG_ON(!root->node);
956insert:
Chris Masone02119d2008-09-05 16:13:11 -0400957 if (location->objectid != BTRFS_TREE_LOG_OBJECTID) {
958 root->ref_cows = 1;
959 ret = btrfs_find_highest_inode(root, &highest_inode);
960 if (ret == 0) {
961 root->highest_inode = highest_inode;
962 root->last_inode_alloc = highest_inode;
963 }
Chris Mason5eda7b52007-06-22 14:16:25 -0400964 }
965 return root;
966}
967
Chris Masondc17ff82008-01-08 15:46:30 -0500968struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
969 u64 root_objectid)
970{
971 struct btrfs_root *root;
972
973 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
974 return fs_info->tree_root;
975 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
976 return fs_info->extent_root;
977
978 root = radix_tree_lookup(&fs_info->fs_roots_radix,
979 (unsigned long)root_objectid);
980 return root;
981}
982
Chris Masonedbd8d42007-12-21 16:27:24 -0500983struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
984 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400985{
986 struct btrfs_root *root;
987 int ret;
988
Chris Masonedbd8d42007-12-21 16:27:24 -0500989 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
990 return fs_info->tree_root;
991 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
992 return fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -0400993 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
994 return fs_info->chunk_root;
995 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
996 return fs_info->dev_root;
Chris Masonedbd8d42007-12-21 16:27:24 -0500997
Chris Mason5eda7b52007-06-22 14:16:25 -0400998 root = radix_tree_lookup(&fs_info->fs_roots_radix,
999 (unsigned long)location->objectid);
1000 if (root)
1001 return root;
1002
Chris Masone02119d2008-09-05 16:13:11 -04001003 root = btrfs_read_fs_root_no_radix(fs_info->tree_root, location);
Chris Mason5eda7b52007-06-22 14:16:25 -04001004 if (IS_ERR(root))
1005 return root;
Chris Mason2619ba12007-04-10 16:58:11 -04001006 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1007 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -04001008 root);
1009 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001010 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001011 kfree(root);
1012 return ERR_PTR(ret);
1013 }
Chris Masonedbd8d42007-12-21 16:27:24 -05001014 ret = btrfs_find_dead_roots(fs_info->tree_root,
1015 root->root_key.objectid, root);
1016 BUG_ON(ret);
1017
1018 return root;
1019}
1020
1021struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
1022 struct btrfs_key *location,
1023 const char *name, int namelen)
1024{
1025 struct btrfs_root *root;
1026 int ret;
1027
1028 root = btrfs_read_fs_root_no_name(fs_info, location);
1029 if (!root)
1030 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -04001031
Chris Mason4313b392008-01-03 09:08:48 -05001032 if (root->in_sysfs)
1033 return root;
1034
Josef Bacik58176a92007-08-29 15:47:34 -04001035 ret = btrfs_set_root_name(root, name, namelen);
1036 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001037 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001038 kfree(root);
1039 return ERR_PTR(ret);
1040 }
1041
1042 ret = btrfs_sysfs_add_root(root);
1043 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001044 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -04001045 kfree(root->name);
1046 kfree(root);
1047 return ERR_PTR(ret);
1048 }
Chris Mason4313b392008-01-03 09:08:48 -05001049 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001050 return root;
1051}
Chris Mason19c00dd2007-10-15 16:19:22 -04001052#if 0
1053static int add_hasher(struct btrfs_fs_info *info, char *type) {
1054 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001055
Chris Mason19c00dd2007-10-15 16:19:22 -04001056 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
1057 if (!hasher)
1058 return -ENOMEM;
1059 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
1060 if (!hasher->hash_tfm) {
1061 kfree(hasher);
1062 return -EINVAL;
1063 }
1064 spin_lock(&info->hash_lock);
1065 list_add(&hasher->list, &info->hashers);
1066 spin_unlock(&info->hash_lock);
1067 return 0;
1068}
1069#endif
Chris Mason04160082008-03-26 10:28:07 -04001070
1071static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1072{
1073 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1074 int ret = 0;
1075 struct list_head *cur;
1076 struct btrfs_device *device;
1077 struct backing_dev_info *bdi;
1078
Chris Masoncb03c742008-05-15 16:15:45 -04001079 if ((bdi_bits & (1 << BDI_write_congested)) &&
Chris Mason777e6bd2008-08-15 15:34:15 -04001080 btrfs_congested_async(info, 0))
Chris Masoncb03c742008-05-15 16:15:45 -04001081 return 1;
Chris Masoncb03c742008-05-15 16:15:45 -04001082
Chris Mason04160082008-03-26 10:28:07 -04001083 list_for_each(cur, &info->fs_devices->devices) {
1084 device = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001085 if (!device->bdev)
1086 continue;
Chris Mason04160082008-03-26 10:28:07 -04001087 bdi = blk_get_backing_dev_info(device->bdev);
1088 if (bdi && bdi_congested(bdi, bdi_bits)) {
1089 ret = 1;
1090 break;
1091 }
1092 }
1093 return ret;
1094}
1095
Chris Mason38b66982008-04-22 09:22:11 -04001096/*
1097 * this unplugs every device on the box, and it is only used when page
1098 * is null
1099 */
1100static void __unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1101{
1102 struct list_head *cur;
1103 struct btrfs_device *device;
1104 struct btrfs_fs_info *info;
1105
1106 info = (struct btrfs_fs_info *)bdi->unplug_io_data;
1107 list_for_each(cur, &info->fs_devices->devices) {
1108 device = list_entry(cur, struct btrfs_device, dev_list);
1109 bdi = blk_get_backing_dev_info(device->bdev);
1110 if (bdi->unplug_io_fn) {
1111 bdi->unplug_io_fn(bdi, page);
1112 }
1113 }
1114}
1115
Chris Mason04160082008-03-26 10:28:07 -04001116void btrfs_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
1117{
Chris Mason38b66982008-04-22 09:22:11 -04001118 struct inode *inode;
Chris Masonf2d8d742008-04-21 10:03:05 -04001119 struct extent_map_tree *em_tree;
1120 struct extent_map *em;
Chris Masonbcbfce82008-04-22 13:26:47 -04001121 struct address_space *mapping;
Chris Mason38b66982008-04-22 09:22:11 -04001122 u64 offset;
1123
Chris Masonbcbfce82008-04-22 13:26:47 -04001124 /* the generic O_DIRECT read code does this */
Chris Mason38b66982008-04-22 09:22:11 -04001125 if (!page) {
1126 __unplug_io_fn(bdi, page);
1127 return;
1128 }
1129
Chris Masonbcbfce82008-04-22 13:26:47 -04001130 /*
1131 * page->mapping may change at any time. Get a consistent copy
1132 * and use that for everything below
1133 */
1134 smp_mb();
1135 mapping = page->mapping;
1136 if (!mapping)
1137 return;
1138
1139 inode = mapping->host;
Chris Mason38b66982008-04-22 09:22:11 -04001140 offset = page_offset(page);
Chris Mason04160082008-03-26 10:28:07 -04001141
Chris Masonf2d8d742008-04-21 10:03:05 -04001142 em_tree = &BTRFS_I(inode)->extent_tree;
1143 spin_lock(&em_tree->lock);
1144 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
1145 spin_unlock(&em_tree->lock);
Chris Mason89642222008-07-24 09:41:53 -04001146 if (!em) {
1147 __unplug_io_fn(bdi, page);
Chris Masonf2d8d742008-04-21 10:03:05 -04001148 return;
Chris Mason89642222008-07-24 09:41:53 -04001149 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001150
Chris Mason89642222008-07-24 09:41:53 -04001151 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1152 free_extent_map(em);
1153 __unplug_io_fn(bdi, page);
1154 return;
1155 }
Chris Masonf2d8d742008-04-21 10:03:05 -04001156 offset = offset - em->start;
1157 btrfs_unplug_page(&BTRFS_I(inode)->root->fs_info->mapping_tree,
1158 em->block_start + offset, page);
1159 free_extent_map(em);
Chris Mason04160082008-03-26 10:28:07 -04001160}
1161
1162static int setup_bdi(struct btrfs_fs_info *info, struct backing_dev_info *bdi)
1163{
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001164#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -04001165 bdi_init(bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001166#endif
Chris Mason4575c9c2008-04-18 16:13:31 -04001167 bdi->ra_pages = default_backing_dev_info.ra_pages;
Chris Mason04160082008-03-26 10:28:07 -04001168 bdi->state = 0;
1169 bdi->capabilities = default_backing_dev_info.capabilities;
1170 bdi->unplug_io_fn = btrfs_unplug_io_fn;
1171 bdi->unplug_io_data = info;
1172 bdi->congested_fn = btrfs_congested_fn;
1173 bdi->congested_data = info;
1174 return 0;
1175}
1176
Chris Masonce9adaa2008-04-09 16:28:12 -04001177static int bio_ready_for_csum(struct bio *bio)
1178{
1179 u64 length = 0;
1180 u64 buf_len = 0;
1181 u64 start = 0;
1182 struct page *page;
1183 struct extent_io_tree *io_tree = NULL;
1184 struct btrfs_fs_info *info = NULL;
1185 struct bio_vec *bvec;
1186 int i;
1187 int ret;
1188
1189 bio_for_each_segment(bvec, bio, i) {
1190 page = bvec->bv_page;
1191 if (page->private == EXTENT_PAGE_PRIVATE) {
1192 length += bvec->bv_len;
1193 continue;
1194 }
1195 if (!page->private) {
1196 length += bvec->bv_len;
1197 continue;
1198 }
1199 length = bvec->bv_len;
1200 buf_len = page->private >> 2;
1201 start = page_offset(page) + bvec->bv_offset;
1202 io_tree = &BTRFS_I(page->mapping->host)->io_tree;
1203 info = BTRFS_I(page->mapping->host)->root->fs_info;
1204 }
1205 /* are we fully contained in this bio? */
1206 if (buf_len <= length)
1207 return 1;
1208
1209 ret = extent_range_uptodate(io_tree, start + length,
1210 start + buf_len - 1);
1211 if (ret == 1)
1212 return ret;
1213 return ret;
1214}
1215
Chris Mason8b712842008-06-11 16:50:36 -04001216/*
1217 * called by the kthread helper functions to finally call the bio end_io
1218 * functions. This is where read checksum verification actually happens
1219 */
1220static void end_workqueue_fn(struct btrfs_work *work)
Chris Masonce9adaa2008-04-09 16:28:12 -04001221{
Chris Masonce9adaa2008-04-09 16:28:12 -04001222 struct bio *bio;
Chris Mason8b712842008-06-11 16:50:36 -04001223 struct end_io_wq *end_io_wq;
1224 struct btrfs_fs_info *fs_info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001225 int error;
Chris Masonce9adaa2008-04-09 16:28:12 -04001226
Chris Mason8b712842008-06-11 16:50:36 -04001227 end_io_wq = container_of(work, struct end_io_wq, work);
1228 bio = end_io_wq->bio;
1229 fs_info = end_io_wq->info;
Chris Masonce9adaa2008-04-09 16:28:12 -04001230
Chris Mason8b712842008-06-11 16:50:36 -04001231 /* metadata bios are special because the whole tree block must
1232 * be checksummed at once. This makes sure the entire block is in
1233 * ram and up to date before trying to verify things. For
1234 * blocksize <= pagesize, it is basically a noop
1235 */
1236 if (end_io_wq->metadata && !bio_ready_for_csum(bio)) {
1237 btrfs_queue_worker(&fs_info->endio_workers,
1238 &end_io_wq->work);
1239 return;
1240 }
1241 error = end_io_wq->error;
1242 bio->bi_private = end_io_wq->private;
1243 bio->bi_end_io = end_io_wq->end_io;
1244 kfree(end_io_wq);
Miguel73f61b22008-04-11 15:50:59 -04001245#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
Chris Mason8b712842008-06-11 16:50:36 -04001246 bio_endio(bio, bio->bi_size, error);
Miguel73f61b22008-04-11 15:50:59 -04001247#else
Chris Mason8b712842008-06-11 16:50:36 -04001248 bio_endio(bio, error);
Miguel73f61b22008-04-11 15:50:59 -04001249#endif
Chris Mason44b8bd72008-04-16 11:14:51 -04001250}
1251
Chris Masona74a4b92008-06-25 16:01:31 -04001252static int cleaner_kthread(void *arg)
1253{
1254 struct btrfs_root *root = arg;
1255
1256 do {
1257 smp_mb();
1258 if (root->fs_info->closing)
1259 break;
1260
1261 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1262 mutex_lock(&root->fs_info->cleaner_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001263 btrfs_clean_old_snapshots(root);
Chris Masona74a4b92008-06-25 16:01:31 -04001264 mutex_unlock(&root->fs_info->cleaner_mutex);
1265
1266 if (freezing(current)) {
1267 refrigerator();
1268 } else {
1269 smp_mb();
1270 if (root->fs_info->closing)
1271 break;
1272 set_current_state(TASK_INTERRUPTIBLE);
1273 schedule();
1274 __set_current_state(TASK_RUNNING);
1275 }
1276 } while (!kthread_should_stop());
1277 return 0;
1278}
1279
1280static int transaction_kthread(void *arg)
1281{
1282 struct btrfs_root *root = arg;
1283 struct btrfs_trans_handle *trans;
1284 struct btrfs_transaction *cur;
1285 unsigned long now;
1286 unsigned long delay;
1287 int ret;
1288
1289 do {
1290 smp_mb();
1291 if (root->fs_info->closing)
1292 break;
1293
1294 delay = HZ * 30;
1295 vfs_check_frozen(root->fs_info->sb, SB_FREEZE_WRITE);
1296 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1297
Chris Masonab78c842008-07-29 16:15:18 -04001298 if (root->fs_info->total_ref_cache_size > 20 * 1024 * 1024) {
1299 printk("btrfs: total reference cache size %Lu\n",
1300 root->fs_info->total_ref_cache_size);
1301 }
Yan Zheng31153d82008-07-28 15:32:19 -04001302
Chris Masona74a4b92008-06-25 16:01:31 -04001303 mutex_lock(&root->fs_info->trans_mutex);
1304 cur = root->fs_info->running_transaction;
1305 if (!cur) {
1306 mutex_unlock(&root->fs_info->trans_mutex);
1307 goto sleep;
1308 }
Yan Zheng31153d82008-07-28 15:32:19 -04001309
Chris Masona74a4b92008-06-25 16:01:31 -04001310 now = get_seconds();
1311 if (now < cur->start_time || now - cur->start_time < 30) {
1312 mutex_unlock(&root->fs_info->trans_mutex);
1313 delay = HZ * 5;
1314 goto sleep;
1315 }
1316 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001317 trans = btrfs_start_transaction(root, 1);
1318 ret = btrfs_commit_transaction(trans, root);
1319sleep:
1320 wake_up_process(root->fs_info->cleaner_kthread);
1321 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
1322
1323 if (freezing(current)) {
1324 refrigerator();
1325 } else {
1326 if (root->fs_info->closing)
1327 break;
1328 set_current_state(TASK_INTERRUPTIBLE);
1329 schedule_timeout(delay);
1330 __set_current_state(TASK_RUNNING);
1331 }
1332 } while (!kthread_should_stop());
1333 return 0;
1334}
1335
Chris Mason8a4b83c2008-03-24 15:02:07 -04001336struct btrfs_root *open_ctree(struct super_block *sb,
Chris Masondfe25022008-05-13 13:46:40 -04001337 struct btrfs_fs_devices *fs_devices,
1338 char *options)
Chris Masoneb60cea2007-02-02 09:18:22 -05001339{
Chris Masondb945352007-10-15 16:15:53 -04001340 u32 sectorsize;
1341 u32 nodesize;
1342 u32 leafsize;
1343 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001344 u32 stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001345 struct buffer_head *bh;
Chris Masone02119d2008-09-05 16:13:11 -04001346 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001347 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001348 struct btrfs_root *tree_root = kzalloc(sizeof(struct btrfs_root),
Chris Masone20d96d2007-03-22 12:13:20 -04001349 GFP_NOFS);
Chris Mason8790d502008-04-03 16:29:03 -04001350 struct btrfs_fs_info *fs_info = kzalloc(sizeof(*fs_info),
Chris Masone20d96d2007-03-22 12:13:20 -04001351 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001352 struct btrfs_root *chunk_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001353 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001354 struct btrfs_root *dev_root = kzalloc(sizeof(struct btrfs_root),
Chris Mason0b86a832008-03-24 15:01:56 -04001355 GFP_NOFS);
Chris Masone02119d2008-09-05 16:13:11 -04001356 struct btrfs_root *log_tree_root;
1357
Chris Masoneb60cea2007-02-02 09:18:22 -05001358 int ret;
Yane58ca022008-04-01 11:21:34 -04001359 int err = -EINVAL;
Chris Mason4543df72008-06-11 21:47:56 -04001360
Chris Mason2c90e5d2007-04-02 10:50:19 -04001361 struct btrfs_super_block *disk_super;
Chris Mason8790d502008-04-03 16:29:03 -04001362
Chris Mason39279cc2007-06-12 06:35:45 -04001363 if (!extent_root || !tree_root || !fs_info) {
1364 err = -ENOMEM;
1365 goto fail;
1366 }
Chris Mason0f7d52f2007-04-09 10:42:37 -04001367 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -04001368 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -04001369 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -04001370 INIT_LIST_HEAD(&fs_info->hashers);
Chris Masonea8c2812008-08-04 23:17:27 -04001371 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
Chris Mason19c00dd2007-10-15 16:19:22 -04001372 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05001373 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -05001374 spin_lock_init(&fs_info->new_trans_lock);
Yan Zheng31153d82008-07-28 15:32:19 -04001375 spin_lock_init(&fs_info->ref_cache_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -04001376
Josef Bacik58176a92007-08-29 15:47:34 -04001377 init_completion(&fs_info->kobj_unregister);
Chris Mason9f5fae22007-03-20 14:38:32 -04001378 fs_info->tree_root = tree_root;
1379 fs_info->extent_root = extent_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001380 fs_info->chunk_root = chunk_root;
1381 fs_info->dev_root = dev_root;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001382 fs_info->fs_devices = fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04001383 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
Chris Mason6324fbf2008-03-24 15:01:59 -04001384 INIT_LIST_HEAD(&fs_info->space_info);
Chris Mason0b86a832008-03-24 15:01:56 -04001385 btrfs_mapping_init(&fs_info->mapping_tree);
Chris Masoncb03c742008-05-15 16:15:45 -04001386 atomic_set(&fs_info->nr_async_submits, 0);
Chris Mason0986fe9e2008-08-15 15:34:15 -04001387 atomic_set(&fs_info->nr_async_bios, 0);
Chris Masona2135012008-06-25 16:01:30 -04001388 atomic_set(&fs_info->throttles, 0);
Chris Masonab78c842008-07-29 16:15:18 -04001389 atomic_set(&fs_info->throttle_gen, 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001390 fs_info->sb = sb;
Chris Masonc59f8952007-12-17 20:14:04 -05001391 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -05001392 fs_info->max_inline = 8192 * 1024;
Chris Mason04160082008-03-26 10:28:07 -04001393 setup_bdi(fs_info, &fs_info->bdi);
Chris Masond98237b2007-03-28 13:57:48 -04001394 fs_info->btree_inode = new_inode(sb);
1395 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001396 fs_info->btree_inode->i_nlink = 1;
Chris Mason4543df72008-06-11 21:47:56 -04001397 fs_info->thread_pool_size = min(num_online_cpus() + 2, 8);
Chris Mason0afbaf82008-04-18 14:17:20 -04001398
Chris Mason3eaa2882008-07-24 11:57:52 -04001399 INIT_LIST_HEAD(&fs_info->ordered_extents);
1400 spin_lock_init(&fs_info->ordered_extent_lock);
1401
Chris Masona061fc82008-05-07 11:43:44 -04001402 sb->s_blocksize = 4096;
1403 sb->s_blocksize_bits = blksize_bits(4096);
1404
Chris Mason0afbaf82008-04-18 14:17:20 -04001405 /*
1406 * we set the i_size on the btree inode to the max possible int.
1407 * the real end of the address space is determined by all of
1408 * the devices in the system
1409 */
1410 fs_info->btree_inode->i_size = OFFSET_MAX;
Chris Masond98237b2007-03-28 13:57:48 -04001411 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason04160082008-03-26 10:28:07 -04001412 fs_info->btree_inode->i_mapping->backing_dev_info = &fs_info->bdi;
1413
Chris Masond1310b22008-01-24 16:13:08 -05001414 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001415 fs_info->btree_inode->i_mapping,
1416 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001417 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
1418 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -05001419
Chris Masond1310b22008-01-24 16:13:08 -05001420 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
1421
Josef Bacik0f9dd462008-09-23 13:14:11 -04001422 spin_lock_init(&fs_info->block_group_cache_lock);
1423 fs_info->block_group_cache_tree.rb_node = NULL;
1424
Chris Masond1310b22008-01-24 16:13:08 -05001425 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -04001426 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001427 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -04001428 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001429 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -04001430 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -04001431 fs_info->do_barriers = 1;
Chris Masone18e4802008-01-18 10:54:22 -05001432
Chris Mason0f7d52f2007-04-09 10:42:37 -04001433 BTRFS_I(fs_info->btree_inode)->root = tree_root;
1434 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
1435 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -04001436 insert_inode_hash(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001437
Chris Mason79154b12007-03-22 15:59:16 -04001438 mutex_init(&fs_info->trans_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001439 mutex_init(&fs_info->tree_log_mutex);
Chris Masona2135012008-06-25 16:01:30 -04001440 mutex_init(&fs_info->drop_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001441 mutex_init(&fs_info->alloc_mutex);
1442 mutex_init(&fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001443 mutex_init(&fs_info->transaction_kthread_mutex);
1444 mutex_init(&fs_info->cleaner_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04001445 mutex_init(&fs_info->volume_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001446 init_waitqueue_head(&fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001447 init_waitqueue_head(&fs_info->transaction_wait);
Chris Mason4854ddd2008-08-15 15:34:17 -04001448 init_waitqueue_head(&fs_info->async_submit_wait);
Chris Masone02119d2008-09-05 16:13:11 -04001449 init_waitqueue_head(&fs_info->tree_log_wait);
1450 atomic_set(&fs_info->tree_log_commit, 0);
1451 atomic_set(&fs_info->tree_log_writers, 0);
1452 fs_info->tree_log_transid = 0;
Chris Mason3768f362007-03-13 16:47:54 -04001453
Chris Mason19c00dd2007-10-15 16:19:22 -04001454#if 0
1455 ret = add_hasher(fs_info, "crc32c");
1456 if (ret) {
1457 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
1458 err = -ENOMEM;
1459 goto fail_iput;
1460 }
1461#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001462 __setup_root(4096, 4096, 4096, 4096, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001463 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -04001464
Chris Masond98237b2007-03-28 13:57:48 -04001465
Chris Masona061fc82008-05-07 11:43:44 -04001466 bh = __bread(fs_devices->latest_bdev,
1467 BTRFS_SUPER_INFO_OFFSET / 4096, 4096);
1468 if (!bh)
Chris Mason39279cc2007-06-12 06:35:45 -04001469 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -04001470
Chris Masona061fc82008-05-07 11:43:44 -04001471 memcpy(&fs_info->super_copy, bh->b_data, sizeof(fs_info->super_copy));
1472 brelse(bh);
Chris Mason5f39d392007-10-15 16:14:19 -04001473
Chris Masona061fc82008-05-07 11:43:44 -04001474 memcpy(fs_info->fsid, fs_info->super_copy.fsid, BTRFS_FSID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001475
Chris Mason5f39d392007-10-15 16:14:19 -04001476 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001477 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -04001478 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001479
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001480 err = btrfs_parse_options(tree_root, options);
1481 if (err)
1482 goto fail_sb_buffer;
Chris Masondfe25022008-05-13 13:46:40 -04001483
Chris Mason4543df72008-06-11 21:47:56 -04001484 /*
1485 * we need to start all the end_io workers up front because the
1486 * queue work function gets called at interrupt time, and so it
1487 * cannot dynamically grow.
1488 */
Chris Mason5443be42008-08-15 15:34:16 -04001489 btrfs_init_workers(&fs_info->workers, "worker",
1490 fs_info->thread_pool_size);
1491 btrfs_init_workers(&fs_info->submit_workers, "submit",
Chris Masonb720d202008-08-15 15:34:14 -04001492 min_t(u64, fs_devices->num_devices,
1493 fs_info->thread_pool_size));
Chris Mason61b49442008-07-31 15:42:53 -04001494
1495 /* a higher idle thresh on the submit workers makes it much more
1496 * likely that bios will be send down in a sane order to the
1497 * devices
1498 */
1499 fs_info->submit_workers.idle_thresh = 64;
Chris Mason53863232008-08-15 15:34:18 -04001500
1501 /* fs_info->workers is responsible for checksumming file data
1502 * blocks and metadata. Using a larger idle thresh allows each
1503 * worker thread to operate on things in roughly the order they
1504 * were sent by the writeback daemons, improving overall locality
1505 * of the IO going down the pipe.
1506 */
1507 fs_info->workers.idle_thresh = 128;
Chris Mason61b49442008-07-31 15:42:53 -04001508
Chris Mason5443be42008-08-15 15:34:16 -04001509 btrfs_init_workers(&fs_info->fixup_workers, "fixup", 1);
1510 btrfs_init_workers(&fs_info->endio_workers, "endio",
1511 fs_info->thread_pool_size);
1512 btrfs_init_workers(&fs_info->endio_write_workers, "endio-write",
Chris Masone6dcd2d2008-07-17 12:53:50 -04001513 fs_info->thread_pool_size);
Chris Mason61b49442008-07-31 15:42:53 -04001514
1515 /*
1516 * endios are largely parallel and should have a very
1517 * low idle thresh
1518 */
1519 fs_info->endio_workers.idle_thresh = 4;
Chris Mason3a5f1d42008-09-11 15:53:37 -04001520 fs_info->endio_write_workers.idle_thresh = 64;
Chris Mason61b49442008-07-31 15:42:53 -04001521
Chris Mason4543df72008-06-11 21:47:56 -04001522 btrfs_start_workers(&fs_info->workers, 1);
Chris Mason1cc127b2008-06-12 14:46:17 -04001523 btrfs_start_workers(&fs_info->submit_workers, 1);
Chris Mason247e7432008-07-17 12:53:51 -04001524 btrfs_start_workers(&fs_info->fixup_workers, 1);
Chris Mason4543df72008-06-11 21:47:56 -04001525 btrfs_start_workers(&fs_info->endio_workers, fs_info->thread_pool_size);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001526 btrfs_start_workers(&fs_info->endio_write_workers,
1527 fs_info->thread_pool_size);
Chris Mason4543df72008-06-11 21:47:56 -04001528
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001529 err = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001530 if (btrfs_super_num_devices(disk_super) > fs_devices->open_devices) {
Chris Mason8a4b83c2008-03-24 15:02:07 -04001531 printk("Btrfs: wanted %llu devices, but found %llu\n",
1532 (unsigned long long)btrfs_super_num_devices(disk_super),
Chris Masona0af4692008-05-13 16:03:06 -04001533 (unsigned long long)fs_devices->open_devices);
Chris Masondfe25022008-05-13 13:46:40 -04001534 if (btrfs_test_opt(tree_root, DEGRADED))
1535 printk("continuing in degraded mode\n");
1536 else {
1537 goto fail_sb_buffer;
1538 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001539 }
Chris Masondfe25022008-05-13 13:46:40 -04001540
Chris Mason4575c9c2008-04-18 16:13:31 -04001541 fs_info->bdi.ra_pages *= btrfs_super_num_devices(disk_super);
1542
Chris Masondb945352007-10-15 16:15:53 -04001543 nodesize = btrfs_super_nodesize(disk_super);
1544 leafsize = btrfs_super_leafsize(disk_super);
1545 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -05001546 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -04001547 tree_root->nodesize = nodesize;
1548 tree_root->leafsize = leafsize;
1549 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -05001550 tree_root->stripesize = stripesize;
Chris Masona061fc82008-05-07 11:43:44 -04001551
1552 sb->s_blocksize = sectorsize;
1553 sb->s_blocksize_bits = blksize_bits(sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04001554
Chris Mason39279cc2007-06-12 06:35:45 -04001555 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
1556 sizeof(disk_super->magic))) {
1557 printk("btrfs: valid FS not found on %s\n", sb->s_id);
1558 goto fail_sb_buffer;
1559 }
Chris Mason19c00dd2007-10-15 16:19:22 -04001560
Chris Mason925baed2008-06-25 16:01:30 -04001561 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001562 ret = btrfs_read_sys_array(tree_root);
Chris Mason925baed2008-06-25 16:01:30 -04001563 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason84eed902008-04-25 09:04:37 -04001564 if (ret) {
1565 printk("btrfs: failed to read the system array on %s\n",
1566 sb->s_id);
1567 goto fail_sys_array;
1568 }
Chris Mason0b86a832008-03-24 15:01:56 -04001569
1570 blocksize = btrfs_level_size(tree_root,
1571 btrfs_super_chunk_root_level(disk_super));
1572
1573 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1574 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1575
1576 chunk_root->node = read_tree_block(chunk_root,
1577 btrfs_super_chunk_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001578 blocksize, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001579 BUG_ON(!chunk_root->node);
1580
Chris Masone17cade2008-04-15 15:41:47 -04001581 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
1582 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
1583 BTRFS_UUID_SIZE);
1584
Chris Mason925baed2008-06-25 16:01:30 -04001585 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001586 ret = btrfs_read_chunk_tree(chunk_root);
Chris Mason925baed2008-06-25 16:01:30 -04001587 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04001588 BUG_ON(ret);
1589
Chris Masondfe25022008-05-13 13:46:40 -04001590 btrfs_close_extra_devices(fs_devices);
1591
Chris Masondb945352007-10-15 16:15:53 -04001592 blocksize = btrfs_level_size(tree_root,
1593 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -04001594
Chris Mason0b86a832008-03-24 15:01:56 -04001595
Chris Masone20d96d2007-03-22 12:13:20 -04001596 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -04001597 btrfs_super_root(disk_super),
Chris Masonca7a79a2008-05-12 12:59:19 -04001598 blocksize, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001599 if (!tree_root->node)
1600 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -04001601
Chris Masondb945352007-10-15 16:15:53 -04001602
1603 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -04001604 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001605 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001606 goto fail_tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001607 extent_root->track_dirty = 1;
1608
1609 ret = find_and_setup_root(tree_root, fs_info,
1610 BTRFS_DEV_TREE_OBJECTID, dev_root);
1611 dev_root->track_dirty = 1;
1612
1613 if (ret)
1614 goto fail_extent_root;
Chris Mason3768f362007-03-13 16:47:54 -04001615
Chris Mason9078a3e2007-04-26 16:46:15 -04001616 btrfs_read_block_groups(extent_root);
1617
Chris Mason0f7d52f2007-04-09 10:42:37 -04001618 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Masond18a2c42008-04-04 15:40:00 -04001619 fs_info->data_alloc_profile = (u64)-1;
1620 fs_info->metadata_alloc_profile = (u64)-1;
1621 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
Chris Masona74a4b92008-06-25 16:01:31 -04001622 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
1623 "btrfs-cleaner");
1624 if (!fs_info->cleaner_kthread)
1625 goto fail_extent_root;
1626
1627 fs_info->transaction_kthread = kthread_run(transaction_kthread,
1628 tree_root,
1629 "btrfs-transaction");
1630 if (!fs_info->transaction_kthread)
Chris Mason3f157a22008-06-25 16:01:31 -04001631 goto fail_cleaner;
Chris Masona74a4b92008-06-25 16:01:31 -04001632
Chris Masone02119d2008-09-05 16:13:11 -04001633 if (btrfs_super_log_root(disk_super) != 0) {
1634 u32 blocksize;
1635 u64 bytenr = btrfs_super_log_root(disk_super);
Chris Masond18a2c42008-04-04 15:40:00 -04001636
Chris Masone02119d2008-09-05 16:13:11 -04001637 blocksize =
1638 btrfs_level_size(tree_root,
1639 btrfs_super_log_root_level(disk_super));
1640
1641 log_tree_root = kzalloc(sizeof(struct btrfs_root),
1642 GFP_NOFS);
1643
1644 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1645 log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
1646
1647 log_tree_root->node = read_tree_block(tree_root, bytenr,
1648 blocksize, 0);
1649 ret = btrfs_recover_log_trees(log_tree_root);
1650 BUG_ON(ret);
1651 }
1652 fs_info->last_trans_committed = btrfs_super_generation(disk_super);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001653 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -04001654
Chris Mason3f157a22008-06-25 16:01:31 -04001655fail_cleaner:
Chris Masona74a4b92008-06-25 16:01:31 -04001656 kthread_stop(fs_info->cleaner_kthread);
Chris Mason0b86a832008-03-24 15:01:56 -04001657fail_extent_root:
1658 free_extent_buffer(extent_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -04001659fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -04001660 free_extent_buffer(tree_root->node);
Chris Mason84eed902008-04-25 09:04:37 -04001661fail_sys_array:
Chris Mason39279cc2007-06-12 06:35:45 -04001662fail_sb_buffer:
Chris Mason247e7432008-07-17 12:53:51 -04001663 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001664 btrfs_stop_workers(&fs_info->workers);
1665 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001666 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001667 btrfs_stop_workers(&fs_info->submit_workers);
Chris Mason4543df72008-06-11 21:47:56 -04001668fail_iput:
1669 iput(fs_info->btree_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001670fail:
Chris Masondfe25022008-05-13 13:46:40 -04001671 btrfs_close_devices(fs_info->fs_devices);
Chris Mason84eed902008-04-25 09:04:37 -04001672 btrfs_mapping_tree_free(&fs_info->mapping_tree);
1673
Chris Mason39279cc2007-06-12 06:35:45 -04001674 kfree(extent_root);
1675 kfree(tree_root);
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001676#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason2d2ae542008-03-26 16:24:23 -04001677 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001678#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001679 kfree(fs_info);
1680 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -05001681}
1682
Chris Masonf2984462008-04-10 16:19:33 -04001683static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
1684{
1685 char b[BDEVNAME_SIZE];
1686
1687 if (uptodate) {
1688 set_buffer_uptodate(bh);
1689 } else {
1690 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
1691 printk(KERN_WARNING "lost page write due to "
1692 "I/O error on %s\n",
1693 bdevname(bh->b_bdev, b));
1694 }
Chris Mason1259ab72008-05-12 13:39:03 -04001695 /* note, we dont' set_buffer_write_io_error because we have
1696 * our own ways of dealing with the IO errors
1697 */
Chris Masonf2984462008-04-10 16:19:33 -04001698 clear_buffer_uptodate(bh);
1699 }
1700 unlock_buffer(bh);
1701 put_bh(bh);
1702}
1703
1704int write_all_supers(struct btrfs_root *root)
1705{
1706 struct list_head *cur;
1707 struct list_head *head = &root->fs_info->fs_devices->devices;
1708 struct btrfs_device *dev;
Chris Masona061fc82008-05-07 11:43:44 -04001709 struct btrfs_super_block *sb;
Chris Masonf2984462008-04-10 16:19:33 -04001710 struct btrfs_dev_item *dev_item;
1711 struct buffer_head *bh;
1712 int ret;
1713 int do_barriers;
Chris Masona236aed2008-04-29 09:38:00 -04001714 int max_errors;
1715 int total_errors = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001716 u32 crc;
1717 u64 flags;
Chris Masonf2984462008-04-10 16:19:33 -04001718
Chris Masona236aed2008-04-29 09:38:00 -04001719 max_errors = btrfs_super_num_devices(&root->fs_info->super_copy) - 1;
Chris Masonf2984462008-04-10 16:19:33 -04001720 do_barriers = !btrfs_test_opt(root, NOBARRIER);
1721
Chris Masona061fc82008-05-07 11:43:44 -04001722 sb = &root->fs_info->super_for_commit;
1723 dev_item = &sb->dev_item;
Chris Masonf2984462008-04-10 16:19:33 -04001724 list_for_each(cur, head) {
1725 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001726 if (!dev->bdev) {
1727 total_errors++;
1728 continue;
1729 }
1730 if (!dev->in_fs_metadata)
1731 continue;
1732
Chris Masona061fc82008-05-07 11:43:44 -04001733 btrfs_set_stack_device_type(dev_item, dev->type);
1734 btrfs_set_stack_device_id(dev_item, dev->devid);
1735 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1736 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1737 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1738 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1739 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1740 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1741 flags = btrfs_super_flags(sb);
1742 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonf2984462008-04-10 16:19:33 -04001743
Chris Masonf2984462008-04-10 16:19:33 -04001744
Chris Masona061fc82008-05-07 11:43:44 -04001745 crc = ~(u32)0;
1746 crc = btrfs_csum_data(root, (char *)sb + BTRFS_CSUM_SIZE, crc,
1747 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1748 btrfs_csum_final(crc, sb->csum);
1749
1750 bh = __getblk(dev->bdev, BTRFS_SUPER_INFO_OFFSET / 4096,
Chris Masonf2984462008-04-10 16:19:33 -04001751 BTRFS_SUPER_INFO_SIZE);
1752
Chris Masona061fc82008-05-07 11:43:44 -04001753 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
Chris Masonf2984462008-04-10 16:19:33 -04001754 dev->pending_io = bh;
1755
1756 get_bh(bh);
1757 set_buffer_uptodate(bh);
1758 lock_buffer(bh);
1759 bh->b_end_io = btrfs_end_buffer_write_sync;
1760
1761 if (do_barriers && dev->barriers) {
1762 ret = submit_bh(WRITE_BARRIER, bh);
1763 if (ret == -EOPNOTSUPP) {
1764 printk("btrfs: disabling barriers on dev %s\n",
1765 dev->name);
1766 set_buffer_uptodate(bh);
1767 dev->barriers = 0;
1768 get_bh(bh);
1769 lock_buffer(bh);
1770 ret = submit_bh(WRITE, bh);
1771 }
1772 } else {
1773 ret = submit_bh(WRITE, bh);
1774 }
Chris Masona236aed2008-04-29 09:38:00 -04001775 if (ret)
1776 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001777 }
Chris Masona236aed2008-04-29 09:38:00 -04001778 if (total_errors > max_errors) {
1779 printk("btrfs: %d errors while writing supers\n", total_errors);
1780 BUG();
1781 }
1782 total_errors = 0;
Chris Masonf2984462008-04-10 16:19:33 -04001783
1784 list_for_each(cur, head) {
1785 dev = list_entry(cur, struct btrfs_device, dev_list);
Chris Masondfe25022008-05-13 13:46:40 -04001786 if (!dev->bdev)
1787 continue;
1788 if (!dev->in_fs_metadata)
1789 continue;
1790
Chris Masonf2984462008-04-10 16:19:33 -04001791 BUG_ON(!dev->pending_io);
1792 bh = dev->pending_io;
1793 wait_on_buffer(bh);
1794 if (!buffer_uptodate(dev->pending_io)) {
1795 if (do_barriers && dev->barriers) {
1796 printk("btrfs: disabling barriers on dev %s\n",
1797 dev->name);
1798 set_buffer_uptodate(bh);
1799 get_bh(bh);
1800 lock_buffer(bh);
1801 dev->barriers = 0;
1802 ret = submit_bh(WRITE, bh);
1803 BUG_ON(ret);
1804 wait_on_buffer(bh);
Chris Mason1259ab72008-05-12 13:39:03 -04001805 if (!buffer_uptodate(bh))
1806 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001807 } else {
Chris Masona236aed2008-04-29 09:38:00 -04001808 total_errors++;
Chris Masonf2984462008-04-10 16:19:33 -04001809 }
1810
1811 }
1812 dev->pending_io = NULL;
1813 brelse(bh);
1814 }
Chris Masona236aed2008-04-29 09:38:00 -04001815 if (total_errors > max_errors) {
1816 printk("btrfs: %d errors while writing supers\n", total_errors);
1817 BUG();
1818 }
Chris Masonf2984462008-04-10 16:19:33 -04001819 return 0;
1820}
1821
Chris Masone089f052007-03-16 16:20:31 -04001822int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -04001823 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -05001824{
Chris Masone66f7092007-04-20 13:16:02 -04001825 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001826
Chris Masonf2984462008-04-10 16:19:33 -04001827 ret = write_all_supers(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001828 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -05001829}
1830
Chris Mason5eda7b52007-06-22 14:16:25 -04001831int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -04001832{
1833 radix_tree_delete(&fs_info->fs_roots_radix,
1834 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -05001835 if (root->in_sysfs)
1836 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -04001837 if (root->inode)
1838 iput(root->inode);
1839 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001840 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -04001841 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -04001842 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -04001843 if (root->name)
1844 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -04001845 kfree(root);
1846 return 0;
1847}
1848
Chris Mason35b7e472007-05-02 15:53:43 -04001849static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -04001850{
1851 int ret;
1852 struct btrfs_root *gang[8];
1853 int i;
1854
1855 while(1) {
1856 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
1857 (void **)gang, 0,
1858 ARRAY_SIZE(gang));
1859 if (!ret)
1860 break;
Chris Mason2619ba12007-04-10 16:58:11 -04001861 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -04001862 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001863 }
1864 return 0;
1865}
Chris Masonb4100d62007-04-12 12:14:00 -04001866
Chris Masone20d96d2007-03-22 12:13:20 -04001867int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -05001868{
Chris Mason3768f362007-03-13 16:47:54 -04001869 int ret;
Chris Masone089f052007-03-16 16:20:31 -04001870 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001871 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -04001872
Chris Masonfacda1e2007-06-08 18:11:48 -04001873 fs_info->closing = 1;
Chris Masona2135012008-06-25 16:01:30 -04001874 smp_mb();
1875
Chris Masona74a4b92008-06-25 16:01:31 -04001876 kthread_stop(root->fs_info->transaction_kthread);
1877 kthread_stop(root->fs_info->cleaner_kthread);
1878
Chris Masona74a4b92008-06-25 16:01:31 -04001879 btrfs_clean_old_snapshots(root);
Chris Mason79154b12007-03-22 15:59:16 -04001880 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001881 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001882 /* run commit again to drop the original snapshot */
1883 trans = btrfs_start_transaction(root, 1);
1884 btrfs_commit_transaction(trans, root);
1885 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -04001886 BUG_ON(ret);
Chris Masond6bfde82008-04-30 13:59:35 -04001887
Chris Mason79154b12007-03-22 15:59:16 -04001888 write_ctree_super(NULL, root);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001889
Chris Masonb0c68f82008-01-31 11:05:37 -05001890 if (fs_info->delalloc_bytes) {
1891 printk("btrfs: at unmount delalloc count %Lu\n",
1892 fs_info->delalloc_bytes);
1893 }
Yan Zheng31153d82008-07-28 15:32:19 -04001894 if (fs_info->total_ref_cache_size) {
1895 printk("btrfs: at umount reference cache size %Lu\n",
1896 fs_info->total_ref_cache_size);
1897 }
Yanbcc63ab2008-07-30 16:29:20 -04001898
Chris Mason0f7d52f2007-04-09 10:42:37 -04001899 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001900 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001901
Chris Mason0f7d52f2007-04-09 10:42:37 -04001902 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -04001903 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -04001904
Chris Mason0b86a832008-03-24 15:01:56 -04001905 if (root->fs_info->chunk_root->node);
1906 free_extent_buffer(root->fs_info->chunk_root->node);
1907
1908 if (root->fs_info->dev_root->node);
1909 free_extent_buffer(root->fs_info->dev_root->node);
1910
Chris Mason9078a3e2007-04-26 16:46:15 -04001911 btrfs_free_block_groups(root->fs_info);
Chris Mason4ca8b412008-08-05 13:30:48 -04001912 fs_info->closing = 2;
Chris Mason0f7d52f2007-04-09 10:42:37 -04001913 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -05001914
1915 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
1916
Chris Masondb945352007-10-15 16:15:53 -04001917 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04001918
Chris Mason247e7432008-07-17 12:53:51 -04001919 btrfs_stop_workers(&fs_info->fixup_workers);
Chris Mason8b712842008-06-11 16:50:36 -04001920 btrfs_stop_workers(&fs_info->workers);
1921 btrfs_stop_workers(&fs_info->endio_workers);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001922 btrfs_stop_workers(&fs_info->endio_write_workers);
Chris Mason1cc127b2008-06-12 14:46:17 -04001923 btrfs_stop_workers(&fs_info->submit_workers);
Chris Masond6bfde82008-04-30 13:59:35 -04001924
Chris Masondb945352007-10-15 16:15:53 -04001925 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -04001926#if 0
1927 while(!list_empty(&fs_info->hashers)) {
1928 struct btrfs_hasher *hasher;
1929 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
1930 hashers);
1931 list_del(&hasher->hashers);
1932 crypto_free_hash(&fs_info->hash_tfm);
1933 kfree(hasher);
1934 }
1935#endif
Chris Masondfe25022008-05-13 13:46:40 -04001936 btrfs_close_devices(fs_info->fs_devices);
Chris Mason0b86a832008-03-24 15:01:56 -04001937 btrfs_mapping_tree_free(&fs_info->mapping_tree);
Chris Masonb248a412008-04-14 09:48:18 -04001938
Jan Engelhardt51ebc0d2008-06-09 22:19:40 -04001939#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason04160082008-03-26 10:28:07 -04001940 bdi_destroy(&fs_info->bdi);
Chris Masonb248a412008-04-14 09:48:18 -04001941#endif
Chris Mason0b86a832008-03-24 15:01:56 -04001942
Chris Mason0f7d52f2007-04-09 10:42:37 -04001943 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -04001944 kfree(fs_info->tree_root);
Chris Mason0b86a832008-03-24 15:01:56 -04001945 kfree(fs_info->chunk_root);
1946 kfree(fs_info->dev_root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001947 return 0;
1948}
1949
Chris Mason1259ab72008-05-12 13:39:03 -04001950int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
Chris Masonccd467d2007-06-28 15:57:36 -04001951{
Chris Mason1259ab72008-05-12 13:39:03 -04001952 int ret;
Chris Mason810191f2007-10-15 16:18:55 -04001953 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Mason1259ab72008-05-12 13:39:03 -04001954
1955 ret = extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
1956 if (!ret)
1957 return ret;
1958
1959 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
1960 parent_transid);
1961 return !ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001962}
Chris Mason6702ed42007-08-07 16:15:09 -04001963
Chris Mason5f39d392007-10-15 16:14:19 -04001964int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
1965{
Chris Mason810191f2007-10-15 16:18:55 -04001966 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001967 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -04001968 buf);
1969}
1970
1971void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
1972{
Chris Mason810191f2007-10-15 16:18:55 -04001973 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04001974 u64 transid = btrfs_header_generation(buf);
1975 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -04001976
Chris Mason925baed2008-06-25 16:01:30 -04001977 WARN_ON(!btrfs_tree_locked(buf));
Chris Masonccd467d2007-06-28 15:57:36 -04001978 if (transid != root->fs_info->generation) {
1979 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -04001980 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -04001981 transid, root->fs_info->generation);
1982 WARN_ON(1);
1983 }
Chris Masond1310b22008-01-24 16:13:08 -05001984 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001985}
1986
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001987void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -04001988{
Chris Mason188de642008-05-09 11:52:25 -04001989 /*
1990 * looks as though older kernels can get into trouble with
1991 * this code, they end up stuck in balance_dirty_pages forever
1992 */
Chris Masond6bfde82008-04-30 13:59:35 -04001993 struct extent_io_tree *tree;
1994 u64 num_dirty;
1995 u64 start = 0;
Chris Masonb64a2852008-08-20 13:39:41 -04001996 unsigned long thresh = 96 * 1024 * 1024;
Chris Masond6bfde82008-04-30 13:59:35 -04001997 tree = &BTRFS_I(root->fs_info->btree_inode)->io_tree;
1998
Chris Masonb64a2852008-08-20 13:39:41 -04001999 if (current_is_pdflush() || current->flags & PF_MEMALLOC)
Chris Masond6bfde82008-04-30 13:59:35 -04002000 return;
2001
2002 num_dirty = count_range_bits(tree, &start, (u64)-1,
2003 thresh, EXTENT_DIRTY);
2004 if (num_dirty > thresh) {
2005 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -05002006 root->fs_info->btree_inode->i_mapping, 1);
Chris Masond6bfde82008-04-30 13:59:35 -04002007 }
Chris Mason188de642008-05-09 11:52:25 -04002008 return;
Chris Mason35b7e472007-05-02 15:53:43 -04002009}
Chris Mason6b800532007-10-15 16:17:34 -04002010
Chris Masonca7a79a2008-05-12 12:59:19 -04002011int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
Chris Mason6b800532007-10-15 16:17:34 -04002012{
Chris Mason810191f2007-10-15 16:18:55 -04002013 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Masonce9adaa2008-04-09 16:28:12 -04002014 int ret;
Chris Masonca7a79a2008-05-12 12:59:19 -04002015 ret = btree_read_extent_buffer_pages(root, buf, 0, parent_transid);
Chris Masonce9adaa2008-04-09 16:28:12 -04002016 if (ret == 0) {
2017 buf->flags |= EXTENT_UPTODATE;
2018 }
2019 return ret;
Chris Mason6b800532007-10-15 16:17:34 -04002020}
Chris Mason0da54682007-11-07 21:08:01 -05002021
Chris Mason4bef0842008-09-08 11:18:08 -04002022int btree_lock_page_hook(struct page *page)
2023{
2024 struct inode *inode = page->mapping->host;
2025 struct btrfs_root *root = BTRFS_I(inode)->root;
2026 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2027 struct extent_buffer *eb;
2028 unsigned long len;
2029 u64 bytenr = page_offset(page);
2030
2031 if (page->private == EXTENT_PAGE_PRIVATE)
2032 goto out;
2033
2034 len = page->private >> 2;
2035 eb = find_extent_buffer(io_tree, bytenr, len, GFP_NOFS);
2036 if (!eb)
2037 goto out;
2038
2039 btrfs_tree_lock(eb);
2040 spin_lock(&root->fs_info->hash_lock);
2041 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
2042 spin_unlock(&root->fs_info->hash_lock);
2043 btrfs_tree_unlock(eb);
2044 free_extent_buffer(eb);
2045out:
2046 lock_page(page);
2047 return 0;
2048}
2049
Chris Masond1310b22008-01-24 16:13:08 -05002050static struct extent_io_ops btree_extent_io_ops = {
Chris Mason4bef0842008-09-08 11:18:08 -04002051 .write_cache_pages_lock_hook = btree_lock_page_hook,
Chris Masonce9adaa2008-04-09 16:28:12 -04002052 .readpage_end_io_hook = btree_readpage_end_io_hook,
Chris Mason0b86a832008-03-24 15:01:56 -04002053 .submit_bio_hook = btree_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04002054 /* note we're sharing with inode.c for the merge bio hook */
2055 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason0da54682007-11-07 21:08:01 -05002056};