disk-io.c 5.6 KB
Newer Older
C
Chris Mason 已提交
1 2
#include <linux/module.h>
#include <linux/fs.h>
3 4
#include "ctree.h"
#include "disk-io.h"
5
#include "transaction.h"
6

C
Chris Mason 已提交
7
static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
8
{
C
Chris Mason 已提交
9 10
	struct btrfs_node *node = btrfs_buffer_node(buf);
	if (buf->b_blocknr != btrfs_header_blocknr(&node->header))
11
		BUG();
C
Chris Mason 已提交
12
	if (root->node && btrfs_header_parentid(&node->header) !=
13
	    btrfs_header_parentid(btrfs_buffer_header(root->node))) {
14
		BUG();
15
	}
16
	return 0;
17 18
}

C
Chris Mason 已提交
19
struct buffer_head *alloc_tree_block(struct btrfs_root *root, u64 blocknr)
20
{
C
Chris Mason 已提交
21
	return sb_getblk(root->fs_info->sb, blocknr);
22 23
}

C
Chris Mason 已提交
24
struct buffer_head *find_tree_block(struct btrfs_root *root, u64 blocknr)
25
{
C
Chris Mason 已提交
26
	return sb_getblk(root->fs_info->sb, blocknr);
27 28
}

C
Chris Mason 已提交
29
struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
30
{
C
Chris Mason 已提交
31
	struct buffer_head *buf = sb_bread(root->fs_info->sb, blocknr);
32

C
Chris Mason 已提交
33 34
	if (!buf)
		return buf;
35
	if (check_tree_block(root, buf))
C
Chris Mason 已提交
36
		BUG();
37 38 39
	return buf;
}

40
int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
41
		     struct buffer_head *buf)
42
{
C
Chris Mason 已提交
43
	mark_buffer_dirty(buf);
44 45 46
	return 0;
}

47
int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
48
		     struct buffer_head *buf)
49
{
C
Chris Mason 已提交
50
	clear_buffer_dirty(buf);
51 52 53
	return 0;
}

C
Chris Mason 已提交
54
static int __setup_root(struct btrfs_super_block *super,
55 56
			struct btrfs_root *root,
			struct btrfs_fs_info *fs_info,
C
Chris Mason 已提交
57
			u64 objectid)
58
{
C
Chris Mason 已提交
59
	root->node = NULL;
60
	root->commit_root = NULL;
C
Chris Mason 已提交
61 62
	root->blocksize = btrfs_super_blocksize(super);
	root->ref_cows = 0;
63
	root->fs_info = fs_info;
64 65 66 67 68
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
	return 0;
}

C
Chris Mason 已提交
69
static int find_and_setup_root(struct btrfs_super_block *super,
70 71 72
			       struct btrfs_root *tree_root,
			       struct btrfs_fs_info *fs_info,
			       u64 objectid,
C
Chris Mason 已提交
73
			       struct btrfs_root *root)
74 75 76
{
	int ret;

C
Chris Mason 已提交
77
	__setup_root(super, root, fs_info, objectid);
78 79 80 81 82 83 84
	ret = btrfs_find_last_root(tree_root, objectid,
				   &root->root_item, &root->root_key);
	BUG_ON(ret);

	root->node = read_tree_block(root,
				     btrfs_root_blocknr(&root->root_item));
	BUG_ON(!root->node);
85 86 87
	return 0;
}

C
Chris Mason 已提交
88 89 90
struct btrfs_root *open_ctree(struct super_block *sb,
			      struct buffer_head *sb_buffer,
			      struct btrfs_super_block *disk_super)
91
{
C
Chris Mason 已提交
92 93 94 95 96 97 98 99 100 101
	struct btrfs_root *root = kmalloc(sizeof(struct btrfs_root),
					  GFP_NOFS);
	struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
						 GFP_NOFS);
	struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
					       GFP_NOFS);
	struct btrfs_root *inode_root = kmalloc(sizeof(struct btrfs_root),
						GFP_NOFS);
	struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
						GFP_NOFS);
102 103
	int ret;

C
Chris Mason 已提交
104 105 106
	/* FIXME: don't be stupid */
	if (!btrfs_super_root(disk_super))
		return NULL;
C
Chris Mason 已提交
107 108
	init_bit_radix(&fs_info->pinned_radix);
	init_bit_radix(&fs_info->pending_del_radix);
109 110 111 112 113 114 115
	fs_info->running_transaction = NULL;
	fs_info->fs_root = root;
	fs_info->tree_root = tree_root;
	fs_info->extent_root = extent_root;
	fs_info->inode_root = inode_root;
	fs_info->last_inode_alloc = 0;
	fs_info->last_inode_alloc_dirid = 0;
C
Chris Mason 已提交
116 117 118
	fs_info->disk_super = disk_super;
	fs_info->sb_buffer = sb_buffer;
	fs_info->sb = sb;
C
Chris Mason 已提交
119
	mutex_init(&fs_info->trans_mutex);
C
Chris Mason 已提交
120
	mutex_init(&fs_info->fs_mutex);
121 122
	memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
	memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
123

C
Chris Mason 已提交
124 125 126
	__setup_root(disk_super, tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
	tree_root->node = read_tree_block(tree_root,
					  btrfs_super_root(disk_super));
127 128
	BUG_ON(!tree_root->node);

C
Chris Mason 已提交
129 130
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_EXTENT_TREE_OBJECTID, extent_root);
131 132
	BUG_ON(ret);

C
Chris Mason 已提交
133 134
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_INODE_MAP_OBJECTID, inode_root);
135 136
	BUG_ON(ret);

C
Chris Mason 已提交
137 138
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_FS_TREE_OBJECTID, root);
139 140
	BUG_ON(ret);

141
	root->commit_root = root->node;
C
Chris Mason 已提交
142
	get_bh(root->node);
143
	root->ref_cows = 1;
144
	root->fs_info->generation = root->root_key.offset + 1;
145 146 147
	return root;
}

148
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
149
		      *root)
150
{
151 152 153 154 155 156 157 158 159 160 161 162
	struct buffer_head *bh = root->fs_info->sb_buffer;
	btrfs_set_super_root(root->fs_info->disk_super,
			     root->fs_info->tree_root->node->b_blocknr);
	lock_buffer(bh);
	clear_buffer_dirty(bh);
	bh->b_end_io = end_buffer_write_sync;
	get_bh(bh);
	submit_bh(WRITE, bh);
	wait_on_buffer(bh);
	if (!buffer_uptodate(bh)) {
		WARN_ON(1);
		return -EIO;
C
Chris Mason 已提交
163 164 165 166
	}
	return 0;
}

C
Chris Mason 已提交
167
int close_ctree(struct btrfs_root *root)
C
Chris Mason 已提交
168
{
169
	int ret;
170 171
	struct btrfs_trans_handle *trans;

C
Chris Mason 已提交
172 173 174 175 176 177
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	/* run commit again to  drop the original snapshot */
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	ret = btrfs_write_and_wait_transaction(NULL, root);
178
	BUG_ON(ret);
C
Chris Mason 已提交
179
	write_ctree_super(NULL, root);
180

C
Chris Mason 已提交
181
	if (root->node)
C
Chris Mason 已提交
182
		btrfs_block_release(root, root->node);
183 184 185 186 187 188 189 190 191
	if (root->fs_info->extent_root->node)
		btrfs_block_release(root->fs_info->extent_root,
				    root->fs_info->extent_root->node);
	if (root->fs_info->inode_root->node)
		btrfs_block_release(root->fs_info->inode_root,
				    root->fs_info->inode_root->node);
	if (root->fs_info->tree_root->node)
		btrfs_block_release(root->fs_info->tree_root,
				    root->fs_info->tree_root->node);
C
Chris Mason 已提交
192
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
193 194 195 196 197 198
	btrfs_block_release(root, root->fs_info->sb_buffer);
	kfree(root->fs_info->extent_root);
	kfree(root->fs_info->inode_root);
	kfree(root->fs_info->tree_root);
	kfree(root->fs_info);
	kfree(root);
199 200 201
	return 0;
}

C
Chris Mason 已提交
202
void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
203
{
C
Chris Mason 已提交
204
	brelse(buf);
205 206
}