blob: a227e94b9e88d0cd07a23c2d4fe197ce2371f262 [file] [log] [blame]
Chris Masone20d96d2007-03-22 12:13:20 -04001#include <linux/module.h>
2#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -04003#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -04004#include <linux/crypto.h>
5#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -04006#include <linux/swap.h>
Chris Masoneb60cea2007-02-02 09:18:22 -05007#include "ctree.h"
8#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -04009#include "transaction.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050010
Chris Masone20d96d2007-03-22 12:13:20 -040011static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -050012{
Chris Masone20d96d2007-03-22 12:13:20 -040013 struct btrfs_node *node = btrfs_buffer_node(buf);
Chris Masond98237b2007-03-28 13:57:48 -040014 if (buf->b_blocknr != btrfs_header_blocknr(&node->header)) {
Chris Mason9a8dd152007-02-23 08:38:36 -050015 BUG();
Chris Masond98237b2007-03-28 13:57:48 -040016 }
Chris Masone20d96d2007-03-22 12:13:20 -040017 if (root->node && btrfs_header_parentid(&node->header) !=
Chris Masondf2ce342007-03-23 11:00:45 -040018 btrfs_header_parentid(btrfs_buffer_header(root->node))) {
Chris Mason7f5c1512007-03-23 15:56:19 -040019 BUG();
Chris Masondf2ce342007-03-23 11:00:45 -040020 }
Chris Mason9a8dd152007-02-23 08:38:36 -050021 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050022}
23
Chris Masond98237b2007-03-28 13:57:48 -040024struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr)
Chris Masoned2ff2c2007-03-01 18:59:40 -050025{
Chris Masond98237b2007-03-28 13:57:48 -040026 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
27 int blockbits = root->fs_info->sb->s_blocksize_bits;
28 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
29 struct page *page;
30 struct buffer_head *bh;
31 struct buffer_head *head;
32 struct buffer_head *ret = NULL;
33
Chris Mason2c90e5d2007-04-02 10:50:19 -040034
Chris Masond98237b2007-03-28 13:57:48 -040035 page = find_lock_page(mapping, index);
36 if (!page)
37 return NULL;
38
39 if (!page_has_buffers(page))
40 goto out_unlock;
41
42 head = page_buffers(page);
43 bh = head;
44 do {
45 if (buffer_mapped(bh) && bh->b_blocknr == blocknr) {
46 ret = bh;
47 get_bh(bh);
48 goto out_unlock;
49 }
50 bh = bh->b_this_page;
51 } while (bh != head);
52out_unlock:
53 unlock_page(page);
Chris Masond6025572007-03-30 14:27:56 -040054 if (ret) {
Chris Mason22b0ebd2007-03-30 08:47:31 -040055 touch_buffer(ret);
Chris Masond6025572007-03-30 14:27:56 -040056 }
Chris Masond98237b2007-03-28 13:57:48 -040057 page_cache_release(page);
58 return ret;
Chris Masoned2ff2c2007-03-01 18:59:40 -050059}
60
Chris Masond98237b2007-03-28 13:57:48 -040061struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
62 u64 blocknr)
Chris Masoneb60cea2007-02-02 09:18:22 -050063{
Chris Masond98237b2007-03-28 13:57:48 -040064 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
65 int blockbits = root->fs_info->sb->s_blocksize_bits;
66 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
67 struct page *page;
68 struct buffer_head *bh;
69 struct buffer_head *head;
70 struct buffer_head *ret = NULL;
71 u64 first_block = index << (PAGE_CACHE_SHIFT - blockbits);
Chris Mason22b0ebd2007-03-30 08:47:31 -040072
Chris Masond98237b2007-03-28 13:57:48 -040073 page = grab_cache_page(mapping, index);
74 if (!page)
75 return NULL;
76
Chris Masond98237b2007-03-28 13:57:48 -040077 if (!page_has_buffers(page))
78 create_empty_buffers(page, root->fs_info->sb->s_blocksize, 0);
79 head = page_buffers(page);
80 bh = head;
81 do {
82 if (!buffer_mapped(bh)) {
83 bh->b_bdev = root->fs_info->sb->s_bdev;
84 bh->b_blocknr = first_block;
85 set_buffer_mapped(bh);
86 }
87 if (bh->b_blocknr == blocknr) {
88 ret = bh;
89 get_bh(bh);
90 goto out_unlock;
91 }
92 bh = bh->b_this_page;
93 first_block++;
94 } while (bh != head);
95out_unlock:
96 unlock_page(page);
Chris Mason22b0ebd2007-03-30 08:47:31 -040097 if (ret)
98 touch_buffer(ret);
Chris Masond98237b2007-03-28 13:57:48 -040099 page_cache_release(page);
100 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400101}
Chris Mason123abc82007-03-14 14:14:43 -0400102
Chris Masond98237b2007-03-28 13:57:48 -0400103static sector_t max_block(struct block_device *bdev)
104{
105 sector_t retval = ~((sector_t)0);
106 loff_t sz = i_size_read(bdev->bd_inode);
107
108 if (sz) {
109 unsigned int size = block_size(bdev);
110 unsigned int sizebits = blksize_bits(size);
111 retval = (sz >> sizebits);
112 }
113 return retval;
114}
115
116static int btree_get_block(struct inode *inode, sector_t iblock,
117 struct buffer_head *bh, int create)
118{
119 if (iblock >= max_block(inode->i_sb->s_bdev)) {
120 if (create)
121 return -EIO;
122
123 /*
124 * for reads, we're just trying to fill a partial page.
125 * return a hole, they will have to call get_block again
126 * before they can fill it, and they will get -EIO at that
127 * time
128 */
129 return 0;
130 }
131 bh->b_bdev = inode->i_sb->s_bdev;
132 bh->b_blocknr = iblock;
133 set_buffer_mapped(bh);
134 return 0;
135}
136
Chris Masonf254e522007-03-29 15:15:27 -0400137int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
138 char *result)
Chris Mason87cbda52007-03-28 19:44:27 -0400139{
Chris Mason87cbda52007-03-28 19:44:27 -0400140 struct scatterlist sg;
141 struct crypto_hash *tfm = root->fs_info->hash_tfm;
142 struct hash_desc desc;
143 int ret;
Chris Mason87cbda52007-03-28 19:44:27 -0400144
145 desc.tfm = tfm;
146 desc.flags = 0;
Chris Masonf254e522007-03-29 15:15:27 -0400147 sg_init_one(&sg, data, len);
Chris Mason87cbda52007-03-28 19:44:27 -0400148 spin_lock(&root->fs_info->hash_lock);
Chris Mason22b0ebd2007-03-30 08:47:31 -0400149 ret = crypto_hash_digest(&desc, &sg, 1, result);
Chris Mason87cbda52007-03-28 19:44:27 -0400150 spin_unlock(&root->fs_info->hash_lock);
151 if (ret) {
152 printk("sha256 digest failed\n");
153 }
Chris Masonf254e522007-03-29 15:15:27 -0400154 return ret;
155}
156static int csum_tree_block(struct btrfs_root *root, struct buffer_head *bh,
157 int verify)
158{
159 char result[BTRFS_CSUM_SIZE];
160 int ret;
161 struct btrfs_node *node;
162
Chris Mason22b0ebd2007-03-30 08:47:31 -0400163 return 0;
Chris Masonf254e522007-03-29 15:15:27 -0400164 ret = btrfs_csum_data(root, bh->b_data + BTRFS_CSUM_SIZE,
165 bh->b_size - BTRFS_CSUM_SIZE, result);
166 if (ret)
167 return ret;
Chris Mason87cbda52007-03-28 19:44:27 -0400168 if (verify) {
Chris Masonf254e522007-03-29 15:15:27 -0400169 if (memcmp(bh->b_data, result, BTRFS_CSUM_SIZE)) {
170 printk("checksum verify failed on %lu\n",
171 bh->b_blocknr);
172 return 1;
173 }
174 } else {
175 node = btrfs_buffer_node(bh);
Chris Mason22b0ebd2007-03-30 08:47:31 -0400176 memcpy(node->header.csum, result, BTRFS_CSUM_SIZE);
Chris Masonf254e522007-03-29 15:15:27 -0400177 }
Chris Mason87cbda52007-03-28 19:44:27 -0400178 return 0;
179}
180
Chris Masond98237b2007-03-28 13:57:48 -0400181static int btree_writepage(struct page *page, struct writeback_control *wbc)
182{
Chris Mason87cbda52007-03-28 19:44:27 -0400183 struct buffer_head *bh;
184 struct btrfs_root *root = btrfs_sb(page->mapping->host->i_sb);
185 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400186 if (!page_has_buffers(page)) {
187 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
188 (1 << BH_Dirty)|(1 << BH_Uptodate));
189 }
190 head = page_buffers(page);
191 bh = head;
192 do {
193 if (buffer_dirty(bh))
194 csum_tree_block(root, bh, 0);
195 bh = bh->b_this_page;
196 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400197 return block_write_full_page(page, btree_get_block, wbc);
198}
199
200static int btree_readpage(struct file * file, struct page * page)
201{
202 return block_read_full_page(page, btree_get_block);
203}
204
205static struct address_space_operations btree_aops = {
206 .readpage = btree_readpage,
207 .writepage = btree_writepage,
208 .sync_page = block_sync_page,
209};
210
Chris Masone20d96d2007-03-22 12:13:20 -0400211struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
212{
Chris Masond98237b2007-03-28 13:57:48 -0400213 struct buffer_head *bh = NULL;
Chris Masone20d96d2007-03-22 12:13:20 -0400214
Chris Masond98237b2007-03-28 13:57:48 -0400215 bh = btrfs_find_create_tree_block(root, blocknr);
216 if (!bh)
217 return bh;
218 lock_buffer(bh);
219 if (!buffer_uptodate(bh)) {
220 get_bh(bh);
221 bh->b_end_io = end_buffer_read_sync;
222 submit_bh(READ, bh);
223 wait_on_buffer(bh);
224 if (!buffer_uptodate(bh))
225 goto fail;
Chris Mason87cbda52007-03-28 19:44:27 -0400226 csum_tree_block(root, bh, 1);
Chris Masond98237b2007-03-28 13:57:48 -0400227 } else {
228 unlock_buffer(bh);
229 }
230 if (check_tree_block(root, bh))
Chris Masoncfaa7292007-02-21 17:04:57 -0500231 BUG();
Chris Masond98237b2007-03-28 13:57:48 -0400232 return bh;
233fail:
234 brelse(bh);
235 return NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500236}
237
Chris Masone089f052007-03-16 16:20:31 -0400238int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400239 struct buffer_head *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500240{
Chris Masond6025572007-03-30 14:27:56 -0400241 WARN_ON(atomic_read(&buf->b_count) == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400242 mark_buffer_dirty(buf);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500243 return 0;
244}
245
Chris Masone089f052007-03-16 16:20:31 -0400246int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400247 struct buffer_head *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500248{
Chris Masond6025572007-03-30 14:27:56 -0400249 WARN_ON(atomic_read(&buf->b_count) == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400250 clear_buffer_dirty(buf);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500251 return 0;
252}
253
Chris Mason2c90e5d2007-04-02 10:50:19 -0400254static int __setup_root(int blocksize,
Chris Mason9f5fae22007-03-20 14:38:32 -0400255 struct btrfs_root *root,
256 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400257 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500258{
Chris Masoncfaa7292007-02-21 17:04:57 -0500259 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500260 root->commit_root = NULL;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400261 root->blocksize = blocksize;
Chris Mason123abc82007-03-14 14:14:43 -0400262 root->ref_cows = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400263 root->fs_info = fs_info;
Chris Mason3768f362007-03-13 16:47:54 -0400264 memset(&root->root_key, 0, sizeof(root->root_key));
265 memset(&root->root_item, 0, sizeof(root->root_item));
266 return 0;
267}
268
Chris Mason2c90e5d2007-04-02 10:50:19 -0400269static int find_and_setup_root(int blocksize,
Chris Mason9f5fae22007-03-20 14:38:32 -0400270 struct btrfs_root *tree_root,
271 struct btrfs_fs_info *fs_info,
272 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400273 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400274{
275 int ret;
276
Chris Mason2c90e5d2007-04-02 10:50:19 -0400277 __setup_root(blocksize, root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400278 ret = btrfs_find_last_root(tree_root, objectid,
279 &root->root_item, &root->root_key);
280 BUG_ON(ret);
281
282 root->node = read_tree_block(root,
283 btrfs_root_blocknr(&root->root_item));
Chris Mason3768f362007-03-13 16:47:54 -0400284 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500285 return 0;
286}
287
Chris Mason2c90e5d2007-04-02 10:50:19 -0400288struct btrfs_root *open_ctree(struct super_block *sb)
Chris Masoneb60cea2007-02-02 09:18:22 -0500289{
Chris Masone20d96d2007-03-22 12:13:20 -0400290 struct btrfs_root *root = kmalloc(sizeof(struct btrfs_root),
291 GFP_NOFS);
292 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
293 GFP_NOFS);
294 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
295 GFP_NOFS);
296 struct btrfs_root *inode_root = kmalloc(sizeof(struct btrfs_root),
297 GFP_NOFS);
298 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
299 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -0500300 int ret;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400301 struct btrfs_super_block *disk_super;
Chris Masoneb60cea2007-02-02 09:18:22 -0500302
Chris Mason8ef97622007-03-26 10:15:30 -0400303 init_bit_radix(&fs_info->pinned_radix);
304 init_bit_radix(&fs_info->pending_del_radix);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400305 sb_set_blocksize(sb, 4096);
Chris Mason9f5fae22007-03-20 14:38:32 -0400306 fs_info->running_transaction = NULL;
307 fs_info->fs_root = root;
308 fs_info->tree_root = tree_root;
309 fs_info->extent_root = extent_root;
310 fs_info->inode_root = inode_root;
311 fs_info->last_inode_alloc = 0;
312 fs_info->last_inode_alloc_dirid = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400313 fs_info->sb = sb;
Chris Masond98237b2007-03-28 13:57:48 -0400314 fs_info->btree_inode = new_inode(sb);
315 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400316 fs_info->btree_inode->i_nlink = 1;
Chris Masond98237b2007-03-28 13:57:48 -0400317 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
318 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Mason22b0ebd2007-03-30 08:47:31 -0400319 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -0400320 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason87cbda52007-03-28 19:44:27 -0400321 fs_info->hash_tfm = crypto_alloc_hash("sha256", 0, CRYPTO_ALG_ASYNC);
Chris Mason30ae8462007-03-29 09:59:15 -0400322 spin_lock_init(&fs_info->hash_lock);
Chris Mason30ae8462007-03-29 09:59:15 -0400323 if (!fs_info->hash_tfm || IS_ERR(fs_info->hash_tfm)) {
Chris Mason87cbda52007-03-28 19:44:27 -0400324 printk("failed to allocate sha256 hash\n");
325 return NULL;
326 }
Chris Mason79154b12007-03-22 15:59:16 -0400327 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -0400328 mutex_init(&fs_info->fs_mutex);
Chris Mason9f5fae22007-03-20 14:38:32 -0400329 memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
330 memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
Chris Mason3768f362007-03-13 16:47:54 -0400331
Chris Mason2c90e5d2007-04-02 10:50:19 -0400332 __setup_root(sb->s_blocksize, tree_root,
333 fs_info, BTRFS_ROOT_TREE_OBJECTID);
334 fs_info->sb_buffer = read_tree_block(tree_root,
335 BTRFS_SUPER_INFO_OFFSET /
336 sb->s_blocksize);
Chris Masond98237b2007-03-28 13:57:48 -0400337
Chris Mason87cbda52007-03-28 19:44:27 -0400338 if (!fs_info->sb_buffer) {
339printk("failed2\n");
Chris Masond98237b2007-03-28 13:57:48 -0400340 return NULL;
Chris Mason87cbda52007-03-28 19:44:27 -0400341 }
Chris Masond98237b2007-03-28 13:57:48 -0400342 disk_super = (struct btrfs_super_block *)fs_info->sb_buffer->b_data;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400343 if (!btrfs_super_root(disk_super)) {
344 return NULL;
345 }
Chris Masond98237b2007-03-28 13:57:48 -0400346 fs_info->disk_super = disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400347 tree_root->node = read_tree_block(tree_root,
348 btrfs_super_root(disk_super));
Chris Mason3768f362007-03-13 16:47:54 -0400349 BUG_ON(!tree_root->node);
350
Chris Mason2c90e5d2007-04-02 10:50:19 -0400351 mutex_lock(&fs_info->fs_mutex);
352 ret = find_and_setup_root(sb->s_blocksize, tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400353 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason3768f362007-03-13 16:47:54 -0400354 BUG_ON(ret);
355
Chris Mason2c90e5d2007-04-02 10:50:19 -0400356 ret = find_and_setup_root(sb->s_blocksize, tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400357 BTRFS_INODE_MAP_OBJECTID, inode_root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400358 BUG_ON(ret);
359
Chris Mason2c90e5d2007-04-02 10:50:19 -0400360 ret = find_and_setup_root(sb->s_blocksize, tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400361 BTRFS_FS_TREE_OBJECTID, root);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400362 mutex_unlock(&fs_info->fs_mutex);
Chris Mason3768f362007-03-13 16:47:54 -0400363 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500364 root->commit_root = root->node;
Chris Masone20d96d2007-03-22 12:13:20 -0400365 get_bh(root->node);
Chris Mason3768f362007-03-13 16:47:54 -0400366 root->ref_cows = 1;
Chris Mason293ffd52007-03-20 15:57:25 -0400367 root->fs_info->generation = root->root_key.offset + 1;
Chris Masoneb60cea2007-02-02 09:18:22 -0500368 return root;
369}
370
Chris Masone089f052007-03-16 16:20:31 -0400371int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -0400372 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -0500373{
Chris Masond5719762007-03-23 10:01:08 -0400374 struct buffer_head *bh = root->fs_info->sb_buffer;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400375
Chris Masond5719762007-03-23 10:01:08 -0400376 btrfs_set_super_root(root->fs_info->disk_super,
377 root->fs_info->tree_root->node->b_blocknr);
378 lock_buffer(bh);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400379 WARN_ON(atomic_read(&bh->b_count) < 1);
Chris Masond5719762007-03-23 10:01:08 -0400380 clear_buffer_dirty(bh);
Chris Mason87cbda52007-03-28 19:44:27 -0400381 csum_tree_block(root, bh, 0);
Chris Masond5719762007-03-23 10:01:08 -0400382 bh->b_end_io = end_buffer_write_sync;
383 get_bh(bh);
384 submit_bh(WRITE, bh);
385 wait_on_buffer(bh);
386 if (!buffer_uptodate(bh)) {
387 WARN_ON(1);
388 return -EIO;
Chris Masoncfaa7292007-02-21 17:04:57 -0500389 }
390 return 0;
391}
392
Chris Masone20d96d2007-03-22 12:13:20 -0400393int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -0500394{
Chris Mason3768f362007-03-13 16:47:54 -0400395 int ret;
Chris Masone089f052007-03-16 16:20:31 -0400396 struct btrfs_trans_handle *trans;
397
Chris Mason2c90e5d2007-04-02 10:50:19 -0400398 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400399 trans = btrfs_start_transaction(root, 1);
400 btrfs_commit_transaction(trans, root);
401 /* run commit again to drop the original snapshot */
402 trans = btrfs_start_transaction(root, 1);
403 btrfs_commit_transaction(trans, root);
404 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400405 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400406 write_ctree_super(NULL, root);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400407 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500408
Chris Masoneb60cea2007-02-02 09:18:22 -0500409 if (root->node)
Chris Mason234b63a2007-03-13 10:46:10 -0400410 btrfs_block_release(root, root->node);
Chris Mason9f5fae22007-03-20 14:38:32 -0400411 if (root->fs_info->extent_root->node)
412 btrfs_block_release(root->fs_info->extent_root,
413 root->fs_info->extent_root->node);
414 if (root->fs_info->inode_root->node)
415 btrfs_block_release(root->fs_info->inode_root,
416 root->fs_info->inode_root->node);
417 if (root->fs_info->tree_root->node)
418 btrfs_block_release(root->fs_info->tree_root,
419 root->fs_info->tree_root->node);
Chris Mason234b63a2007-03-13 10:46:10 -0400420 btrfs_block_release(root, root->commit_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400421 btrfs_block_release(root, root->fs_info->sb_buffer);
Chris Mason87cbda52007-03-28 19:44:27 -0400422 crypto_free_hash(root->fs_info->hash_tfm);
Chris Mason7cfcc172007-04-02 14:53:59 -0400423 truncate_inode_pages(root->fs_info->btree_inode->i_mapping, 0);
424 iput(root->fs_info->btree_inode);
Chris Masone20d96d2007-03-22 12:13:20 -0400425 kfree(root->fs_info->extent_root);
426 kfree(root->fs_info->inode_root);
427 kfree(root->fs_info->tree_root);
428 kfree(root->fs_info);
429 kfree(root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500430 return 0;
431}
432
Chris Masone20d96d2007-03-22 12:13:20 -0400433void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -0500434{
Chris Mason7cfcc172007-04-02 14:53:59 -0400435 brelse(buf);
Chris Masoneb60cea2007-02-02 09:18:22 -0500436}
437