Fix compiler warning in volumes.c
[btrfs-progs-unstable/devel.git] / disk-io.c
blob23c9aa89fc06d8c437fbb240ec71b51e2f5cc386
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #define _XOPEN_SOURCE 600
20 #define __USE_XOPEN2K
21 #define _GNU_SOURCE 1
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28 #include "kerncompat.h"
29 #include "radix-tree.h"
30 #include "ctree.h"
31 #include "disk-io.h"
32 #include "volumes.h"
33 #include "transaction.h"
34 #include "crc32c.h"
35 #include "utils.h"
36 #include "print-tree.h"
38 static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
40 if (buf->start != btrfs_header_bytenr(buf))
41 return 1;
43 if (memcmp_extent_buffer(buf, root->fs_info->fsid,
44 (unsigned long)btrfs_header_fsid(buf),
45 BTRFS_FSID_SIZE))
46 return 1;
47 return 0;
50 u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
52 return crc32c(seed, data, len);
55 void btrfs_csum_final(u32 crc, char *result)
57 *(__le32 *)result = ~cpu_to_le32(crc);
60 int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
61 int verify)
63 char result[BTRFS_CRC32_SIZE];
64 u32 len;
65 u32 crc = ~(u32)0;
67 len = buf->len - BTRFS_CSUM_SIZE;
68 crc = crc32c(crc, buf->data + BTRFS_CSUM_SIZE, len);
69 btrfs_csum_final(crc, result);
71 if (verify) {
72 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
73 printk("checksum verify failed on %llu wanted %X "
74 "found %X\n", (unsigned long long)buf->start,
75 *((int *)result), *((int *)buf));
76 return 1;
78 } else {
79 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
81 return 0;
84 struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
85 u64 bytenr, u32 blocksize)
87 return find_extent_buffer(&root->fs_info->extent_cache,
88 bytenr, blocksize);
91 struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
92 u64 bytenr, u32 blocksize)
94 return alloc_extent_buffer(&root->fs_info->extent_cache, bytenr,
95 blocksize);
98 int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
100 int ret;
101 int dev_nr;
102 struct extent_buffer *eb;
103 u64 length;
104 struct btrfs_multi_bio *multi = NULL;
105 struct btrfs_device *device;
107 eb = btrfs_find_tree_block(root, bytenr, blocksize);
108 if (eb && btrfs_buffer_uptodate(eb)) {
109 free_extent_buffer(eb);
110 return 0;
113 dev_nr = 0;
114 length = blocksize;
115 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
116 bytenr, &length, &multi, 0);
117 BUG_ON(ret);
118 device = multi->stripes[0].dev;
119 device->total_ios++;
120 blocksize = min(blocksize, (u32)(64 * 1024));
121 readahead(device->fd, multi->stripes[0].physical, blocksize);
122 kfree(multi);
123 return 0;
126 struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
127 u32 blocksize)
129 int ret;
130 int dev_nr;
131 struct extent_buffer *eb;
132 u64 length;
133 struct btrfs_multi_bio *multi = NULL;
134 struct btrfs_device *device;
135 int mirror_num = 0;
136 int num_copies;
138 eb = btrfs_find_create_tree_block(root, bytenr, blocksize);
139 if (!eb)
140 return NULL;
142 if (btrfs_buffer_uptodate(eb))
143 return eb;
145 dev_nr = 0;
146 length = blocksize;
147 while (1) {
148 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
149 eb->start, &length, &multi, mirror_num);
150 BUG_ON(ret);
151 device = multi->stripes[0].dev;
152 eb->fd = device->fd;
153 device->total_ios++;
154 eb->dev_bytenr = multi->stripes[0].physical;
155 kfree(multi);
156 ret = read_extent_from_disk(eb);
157 if (ret == 0 && check_tree_block(root, eb) == 0 &&
158 csum_tree_block(root, eb, 1) == 0) {
159 btrfs_set_buffer_uptodate(eb);
160 return eb;
162 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
163 eb->start, eb->len);
164 if (num_copies == 1) {
165 printk("reading %Lu failed only one copy\n", eb->start);
166 break;
168 mirror_num++;
169 if (mirror_num > num_copies) {
170 printk("bailing at mirror %d of %d\n", mirror_num, num_copies);
171 break;
174 free_extent_buffer(eb);
175 return NULL;
178 int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
179 struct extent_buffer *eb)
181 int ret;
182 int dev_nr;
183 u64 length;
184 struct btrfs_multi_bio *multi = NULL;
186 if (check_tree_block(root, eb))
187 BUG();
188 if (!btrfs_buffer_uptodate(eb))
189 BUG();
191 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
192 csum_tree_block(root, eb, 0);
194 dev_nr = 0;
195 length = eb->len;
196 ret = btrfs_map_block(&root->fs_info->mapping_tree, WRITE,
197 eb->start, &length, &multi, 0);
199 while(dev_nr < multi->num_stripes) {
200 BUG_ON(ret);
201 eb->fd = multi->stripes[dev_nr].dev->fd;
202 eb->dev_bytenr = multi->stripes[dev_nr].physical;
203 multi->stripes[dev_nr].dev->total_ios++;
204 dev_nr++;
205 ret = write_extent_to_disk(eb);
206 BUG_ON(ret);
208 kfree(multi);
209 return 0;
212 static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
213 u32 stripesize, struct btrfs_root *root,
214 struct btrfs_fs_info *fs_info, u64 objectid)
216 root->node = NULL;
217 root->commit_root = NULL;
218 root->sectorsize = sectorsize;
219 root->nodesize = nodesize;
220 root->leafsize = leafsize;
221 root->stripesize = stripesize;
222 root->ref_cows = 0;
223 root->track_dirty = 0;
225 root->fs_info = fs_info;
226 root->objectid = objectid;
227 root->last_trans = 0;
228 root->highest_inode = 0;
229 root->last_inode_alloc = 0;
231 INIT_LIST_HEAD(&root->dirty_list);
232 memset(&root->root_key, 0, sizeof(root->root_key));
233 memset(&root->root_item, 0, sizeof(root->root_item));
234 root->root_key.objectid = objectid;
235 return 0;
238 static int update_cowonly_root(struct btrfs_trans_handle *trans,
239 struct btrfs_root *root)
241 int ret;
242 u64 old_root_bytenr;
243 struct btrfs_root *tree_root = root->fs_info->tree_root;
245 btrfs_write_dirty_block_groups(trans, root);
246 while(1) {
247 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
248 if (old_root_bytenr == root->node->start)
249 break;
250 btrfs_set_root_bytenr(&root->root_item,
251 root->node->start);
252 root->root_item.level = btrfs_header_level(root->node);
253 ret = btrfs_update_root(trans, tree_root,
254 &root->root_key,
255 &root->root_item);
256 BUG_ON(ret);
257 btrfs_write_dirty_block_groups(trans, root);
259 return 0;
262 static int commit_tree_roots(struct btrfs_trans_handle *trans,
263 struct btrfs_fs_info *fs_info)
265 struct btrfs_root *root;
266 struct list_head *next;
268 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
269 next = fs_info->dirty_cowonly_roots.next;
270 list_del_init(next);
271 root = list_entry(next, struct btrfs_root, dirty_list);
272 update_cowonly_root(trans, root);
274 return 0;
277 static int __commit_transaction(struct btrfs_trans_handle *trans,
278 struct btrfs_root *root)
280 u64 start;
281 u64 end;
282 struct extent_buffer *eb;
283 struct extent_io_tree *tree = &root->fs_info->extent_cache;
284 int ret;
286 while(1) {
287 ret = find_first_extent_bit(tree, 0, &start, &end,
288 EXTENT_DIRTY);
289 if (ret)
290 break;
291 while(start <= end) {
292 eb = find_first_extent_buffer(tree, start);
293 BUG_ON(!eb || eb->start != start);
294 ret = write_tree_block(trans, root, eb);
295 BUG_ON(ret);
296 start += eb->len;
297 clear_extent_buffer_dirty(eb);
298 free_extent_buffer(eb);
301 return 0;
304 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
305 struct btrfs_root *root)
307 int ret = 0;
308 struct btrfs_root *new_root = NULL;
309 struct btrfs_fs_info *fs_info = root->fs_info;
311 if (root->commit_root == root->node)
312 goto commit_tree;
314 new_root = malloc(sizeof(*new_root));
315 if (!new_root)
316 return -ENOMEM;
317 memcpy(new_root, root, sizeof(*new_root));
318 new_root->node = root->commit_root;
319 root->commit_root = NULL;
321 root->root_key.offset = trans->transid;
322 btrfs_set_root_bytenr(&root->root_item, root->node->start);
323 root->root_item.level = btrfs_header_level(root->node);
324 ret = btrfs_insert_root(trans, fs_info->tree_root,
325 &root->root_key, &root->root_item);
326 BUG_ON(ret);
328 btrfs_set_root_refs(&new_root->root_item, 0);
329 ret = btrfs_update_root(trans, root->fs_info->tree_root,
330 &new_root->root_key, &new_root->root_item);
331 BUG_ON(ret);
333 ret = commit_tree_roots(trans, fs_info);
334 BUG_ON(ret);
335 ret = __commit_transaction(trans, root);
336 BUG_ON(ret);
337 write_ctree_super(trans, root);
338 btrfs_finish_extent_commit(trans, fs_info->extent_root,
339 &fs_info->pinned_extents);
340 btrfs_free_transaction(root, trans);
341 fs_info->running_transaction = NULL;
343 trans = btrfs_start_transaction(root, 1);
344 ret = btrfs_drop_snapshot(trans, new_root);
345 BUG_ON(ret);
346 ret = btrfs_del_root(trans, fs_info->tree_root, &new_root->root_key);
347 BUG_ON(ret);
348 commit_tree:
349 ret = commit_tree_roots(trans, fs_info);
350 BUG_ON(ret);
351 ret = __commit_transaction(trans, root);
352 BUG_ON(ret);
353 write_ctree_super(trans, root);
354 btrfs_finish_extent_commit(trans, fs_info->extent_root,
355 &fs_info->pinned_extents);
356 btrfs_free_transaction(root, trans);
357 free_extent_buffer(root->commit_root);
358 root->commit_root = NULL;
359 fs_info->running_transaction = NULL;
360 if (new_root) {
361 free_extent_buffer(new_root->node);
362 free(new_root);
364 return 0;
367 static int find_and_setup_root(struct btrfs_root *tree_root,
368 struct btrfs_fs_info *fs_info,
369 u64 objectid, struct btrfs_root *root)
371 int ret;
372 u32 blocksize;
374 __setup_root(tree_root->nodesize, tree_root->leafsize,
375 tree_root->sectorsize, tree_root->stripesize,
376 root, fs_info, objectid);
377 ret = btrfs_find_last_root(tree_root, objectid,
378 &root->root_item, &root->root_key);
379 BUG_ON(ret);
381 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
382 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
383 blocksize);
384 BUG_ON(!root->node);
385 return 0;
388 int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
390 if (root->node)
391 free_extent_buffer(root->node);
392 if (root->commit_root)
393 free_extent_buffer(root->commit_root);
395 free(root);
396 return 0;
399 struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
400 struct btrfs_key *location)
402 struct btrfs_root *root;
403 struct btrfs_root *tree_root = fs_info->tree_root;
404 struct btrfs_path *path;
405 struct extent_buffer *l;
406 u32 blocksize;
407 int ret = 0;
409 root = malloc(sizeof(*root));
410 if (!root)
411 return ERR_PTR(-ENOMEM);
412 memset(root, 0, sizeof(*root));
413 if (location->offset == (u64)-1) {
414 ret = find_and_setup_root(tree_root, fs_info,
415 location->objectid, root);
416 if (ret) {
417 free(root);
418 return ERR_PTR(ret);
420 goto insert;
423 __setup_root(tree_root->nodesize, tree_root->leafsize,
424 tree_root->sectorsize, tree_root->stripesize,
425 root, fs_info, location->objectid);
427 path = btrfs_alloc_path();
428 BUG_ON(!path);
429 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
430 if (ret != 0) {
431 if (ret > 0)
432 ret = -ENOENT;
433 goto out;
435 l = path->nodes[0];
436 read_extent_buffer(l, &root->root_item,
437 btrfs_item_ptr_offset(l, path->slots[0]),
438 sizeof(root->root_item));
439 memcpy(&root->root_key, location, sizeof(*location));
440 ret = 0;
441 out:
442 btrfs_release_path(root, path);
443 btrfs_free_path(path);
444 if (ret) {
445 free(root);
446 return ERR_PTR(ret);
448 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
449 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
450 blocksize);
451 BUG_ON(!root->node);
452 insert:
453 root->ref_cows = 1;
454 return root;
457 struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr)
459 int fp;
460 struct btrfs_root *root;
462 fp = open(filename, O_CREAT | O_RDWR, 0600);
463 if (fp < 0) {
464 return NULL;
466 root = open_ctree_fd(fp, filename, sb_bytenr);
467 close(fp);
469 return root;
472 struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr)
474 u32 sectorsize;
475 u32 nodesize;
476 u32 leafsize;
477 u32 blocksize;
478 u32 stripesize;
479 struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
480 struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
481 struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
482 struct btrfs_root *chunk_root = malloc(sizeof(struct btrfs_root));
483 struct btrfs_root *dev_root = malloc(sizeof(struct btrfs_root));
484 struct btrfs_fs_info *fs_info = malloc(sizeof(*fs_info));
485 int ret;
486 struct btrfs_super_block *disk_super;
487 struct btrfs_fs_devices *fs_devices = NULL;
488 u64 total_devs;
490 if (sb_bytenr == 0)
491 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
493 ret = btrfs_scan_one_device(fp, path, &fs_devices,
494 &total_devs, sb_bytenr);
496 if (ret) {
497 fprintf(stderr, "No valid Btrfs found on %s\n", path);
498 return NULL;
501 if (total_devs != 1) {
502 ret = btrfs_scan_for_fsid(fs_devices, total_devs, 1);
503 BUG_ON(ret);
506 memset(fs_info, 0, sizeof(*fs_info));
507 fs_info->fs_root = root;
508 fs_info->tree_root = tree_root;
509 fs_info->extent_root = extent_root;
510 fs_info->chunk_root = chunk_root;
511 fs_info->dev_root = dev_root;
513 extent_io_tree_init(&fs_info->extent_cache);
514 extent_io_tree_init(&fs_info->free_space_cache);
515 extent_io_tree_init(&fs_info->block_group_cache);
516 extent_io_tree_init(&fs_info->pinned_extents);
517 extent_io_tree_init(&fs_info->pending_del);
518 extent_io_tree_init(&fs_info->extent_ins);
520 cache_tree_init(&fs_info->mapping_tree.cache_tree);
522 mutex_init(&fs_info->fs_mutex);
523 fs_info->fs_devices = fs_devices;
524 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
525 INIT_LIST_HEAD(&fs_info->space_info);
527 __setup_root(4096, 4096, 4096, 4096, tree_root,
528 fs_info, BTRFS_ROOT_TREE_OBJECTID);
530 ret = btrfs_open_devices(fs_devices, O_RDWR);
531 BUG_ON(ret);
533 ret = btrfs_bootstrap_super_map(&fs_info->mapping_tree, fs_devices);
534 BUG_ON(ret);
535 fs_info->sb_buffer = btrfs_find_create_tree_block(tree_root, sb_bytenr,
536 4096);
537 BUG_ON(!fs_info->sb_buffer);
538 fs_info->sb_buffer->fd = fs_devices->latest_bdev;
539 fs_info->sb_buffer->dev_bytenr = sb_bytenr;
540 ret = read_extent_from_disk(fs_info->sb_buffer);
541 BUG_ON(ret);
542 btrfs_set_buffer_uptodate(fs_info->sb_buffer);
544 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
545 sizeof(fs_info->super_copy));
546 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
547 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
548 BTRFS_FSID_SIZE);
550 disk_super = &fs_info->super_copy;
551 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
552 sizeof(disk_super->magic))) {
553 printk("No valid btrfs found\n");
554 BUG_ON(1);
556 nodesize = btrfs_super_nodesize(disk_super);
557 leafsize = btrfs_super_leafsize(disk_super);
558 sectorsize = btrfs_super_sectorsize(disk_super);
559 stripesize = btrfs_super_stripesize(disk_super);
560 tree_root->nodesize = nodesize;
561 tree_root->leafsize = leafsize;
562 tree_root->sectorsize = sectorsize;
563 tree_root->stripesize = stripesize;
565 ret = btrfs_read_super_device(tree_root, fs_info->sb_buffer);
566 BUG_ON(ret);
567 ret = btrfs_read_sys_array(tree_root);
568 BUG_ON(ret);
569 blocksize = btrfs_level_size(tree_root,
570 btrfs_super_chunk_root_level(disk_super));
572 __setup_root(nodesize, leafsize, sectorsize, stripesize,
573 chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
575 chunk_root->node = read_tree_block(chunk_root,
576 btrfs_super_chunk_root(disk_super),
577 blocksize);
579 BUG_ON(!chunk_root->node);
581 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
582 (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
583 BTRFS_UUID_SIZE);
585 ret = btrfs_read_chunk_tree(chunk_root);
586 BUG_ON(ret);
588 blocksize = btrfs_level_size(tree_root,
589 btrfs_super_root_level(disk_super));
591 tree_root->node = read_tree_block(tree_root,
592 btrfs_super_root(disk_super),
593 blocksize);
594 BUG_ON(!tree_root->node);
595 ret = find_and_setup_root(tree_root, fs_info,
596 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
597 BUG_ON(ret);
598 extent_root->track_dirty = 1;
600 ret = find_and_setup_root(tree_root, fs_info,
601 BTRFS_DEV_TREE_OBJECTID, dev_root);
602 BUG_ON(ret);
603 dev_root->track_dirty = 1;
605 ret = find_and_setup_root(tree_root, fs_info,
606 BTRFS_FS_TREE_OBJECTID, root);
607 BUG_ON(ret);
608 root->ref_cows = 1;
609 fs_info->generation = btrfs_super_generation(disk_super) + 1;
610 btrfs_read_block_groups(root);
612 fs_info->data_alloc_profile = (u64)-1;
613 fs_info->metadata_alloc_profile = (u64)-1;
614 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
616 return root;
619 int write_all_supers(struct btrfs_root *root)
621 struct list_head *cur;
622 struct list_head *head = &root->fs_info->fs_devices->devices;
623 struct btrfs_device *dev;
624 struct extent_buffer *sb;
625 struct btrfs_dev_item *dev_item;
626 int ret;
628 sb = root->fs_info->sb_buffer;
629 dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
630 dev_item);
631 list_for_each(cur, head) {
632 dev = list_entry(cur, struct btrfs_device, dev_list);
633 btrfs_set_device_type(sb, dev_item, dev->type);
634 btrfs_set_device_id(sb, dev_item, dev->devid);
635 btrfs_set_device_total_bytes(sb, dev_item, dev->total_bytes);
636 btrfs_set_device_bytes_used(sb, dev_item, dev->bytes_used);
637 btrfs_set_device_io_align(sb, dev_item, dev->io_align);
638 btrfs_set_device_io_width(sb, dev_item, dev->io_width);
639 btrfs_set_device_sector_size(sb, dev_item, dev->sector_size);
640 write_extent_buffer(sb, dev->uuid,
641 (unsigned long)btrfs_device_uuid(dev_item),
642 BTRFS_UUID_SIZE);
643 sb->fd = dev->fd;
644 sb->dev_bytenr = sb->start;
645 btrfs_set_header_flag(sb, BTRFS_HEADER_FLAG_WRITTEN);
646 csum_tree_block(root, sb, 0);
647 ret = write_extent_to_disk(sb);
648 BUG_ON(ret);
650 return 0;
653 int write_ctree_super(struct btrfs_trans_handle *trans,
654 struct btrfs_root *root)
656 int ret;
657 struct btrfs_root *tree_root = root->fs_info->tree_root;
658 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
659 btrfs_set_super_generation(&root->fs_info->super_copy,
660 trans->transid);
661 btrfs_set_super_root(&root->fs_info->super_copy,
662 tree_root->node->start);
663 btrfs_set_super_root_level(&root->fs_info->super_copy,
664 btrfs_header_level(tree_root->node));
665 btrfs_set_super_chunk_root(&root->fs_info->super_copy,
666 chunk_root->node->start);
667 btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
668 btrfs_header_level(chunk_root->node));
669 write_extent_buffer(root->fs_info->sb_buffer,
670 &root->fs_info->super_copy, 0,
671 sizeof(root->fs_info->super_copy));
672 ret = write_all_supers(root);
673 if (ret)
674 fprintf(stderr, "failed to write new super block err %d\n", ret);
675 return ret;
678 static int close_all_devices(struct btrfs_fs_info *fs_info)
680 struct list_head *list;
681 struct list_head *next;
682 struct btrfs_device *device;
684 return 0;
686 list = &fs_info->fs_devices->devices;
687 list_for_each(next, list) {
688 device = list_entry(next, struct btrfs_device, dev_list);
689 close(device->fd);
691 return 0;
694 int close_ctree(struct btrfs_root *root)
696 int ret;
697 struct btrfs_trans_handle *trans;
698 struct btrfs_fs_info *fs_info = root->fs_info;
700 trans = btrfs_start_transaction(root, 1);
701 btrfs_commit_transaction(trans, root);
702 trans = btrfs_start_transaction(root, 1);
703 ret = commit_tree_roots(trans, root->fs_info);
704 BUG_ON(ret);
705 ret = __commit_transaction(trans, root);
706 BUG_ON(ret);
707 write_ctree_super(trans, root);
708 btrfs_free_transaction(root, trans);
709 btrfs_free_block_groups(root->fs_info);
710 if (root->node)
711 free_extent_buffer(root->node);
712 if (root->fs_info->extent_root->node)
713 free_extent_buffer(root->fs_info->extent_root->node);
714 if (root->fs_info->tree_root->node)
715 free_extent_buffer(root->fs_info->tree_root->node);
716 free_extent_buffer(root->commit_root);
717 free_extent_buffer(root->fs_info->sb_buffer);
719 if (root->fs_info->chunk_root->node);
720 free_extent_buffer(root->fs_info->chunk_root->node);
722 if (root->fs_info->dev_root->node);
723 free_extent_buffer(root->fs_info->dev_root->node);
725 close_all_devices(root->fs_info);
726 extent_io_tree_cleanup(&fs_info->extent_cache);
727 extent_io_tree_cleanup(&fs_info->free_space_cache);
728 extent_io_tree_cleanup(&fs_info->block_group_cache);
729 extent_io_tree_cleanup(&fs_info->pinned_extents);
730 extent_io_tree_cleanup(&fs_info->pending_del);
731 extent_io_tree_cleanup(&fs_info->extent_ins);
733 free(fs_info->tree_root);
734 free(fs_info->extent_root);
735 free(fs_info->fs_root);
736 free(fs_info->chunk_root);
737 free(fs_info->dev_root);
738 free(fs_info);
740 return 0;
743 int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
744 struct extent_buffer *eb)
746 return clear_extent_buffer_dirty(eb);
749 int wait_on_tree_block_writeback(struct btrfs_root *root,
750 struct extent_buffer *eb)
752 return 0;
755 void btrfs_mark_buffer_dirty(struct extent_buffer *eb)
757 set_extent_buffer_dirty(eb);
760 int btrfs_buffer_uptodate(struct extent_buffer *eb)
762 return extent_buffer_uptodate(eb);
765 int btrfs_set_buffer_uptodate(struct extent_buffer *eb)
767 return set_extent_buffer_uptodate(eb);