tree-defrag.c 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

#include <linux/sched.h>
#include "ctree.h"
#include "disk-io.h"
#include "print-tree.h"
#include "transaction.h"

static void reada_defrag(struct btrfs_root *root,
26
			 struct extent_buffer *node)
27 28 29
{
	int i;
	u32 nritems;
30 31
	u64 bytenr;
	u32 blocksize;
32 33
	int ret;

34
	blocksize = btrfs_level_size(root, btrfs_header_level(node) - 1);
35
	nritems = btrfs_header_nritems(node);
36
	for (i = 0; i < nritems; i++) {
37 38
		bytenr = btrfs_node_blockptr(node, i);
		ret = readahead_tree_block(root, bytenr, blocksize);
39 40 41 42 43 44 45 46
		if (ret)
			break;
	}
}

static int defrag_walk_down(struct btrfs_trans_handle *trans,
			    struct btrfs_root *root,
			    struct btrfs_path *path, int *level,
47
			    int cache_only, u64 *last_ret)
48
{
49 50
	struct extent_buffer *next;
	struct extent_buffer *cur;
51
	u64 bytenr;
52
	int ret = 0;
53
	int is_extent = 0;
54 55 56 57

	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);

58 59 60
	if (root->fs_info->extent_root == root)
		is_extent = 1;

61 62 63 64 65 66
	while(*level > 0) {
		WARN_ON(*level < 0);
		WARN_ON(*level >= BTRFS_MAX_LEVEL);
		cur = path->nodes[*level];

		if (!cache_only && *level > 1 && path->slots[*level] == 0)
67
			reada_defrag(root, cur);
68

69
		if (btrfs_header_level(cur) != *level)
70 71 72
			WARN_ON(1);

		if (path->slots[*level] >=
73
		    btrfs_header_nritems(cur))
74 75 76 77 78
			break;

		if (*level == 1) {
			ret = btrfs_realloc_node(trans, root,
						 path->nodes[*level],
79 80 81 82
						 cache_only, last_ret);
			if (is_extent)
				btrfs_extent_post_op(trans, root);

83 84
			break;
		}
85
		bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
86 87

		if (cache_only) {
88 89
			next = btrfs_find_tree_block(root, bytenr,
					   btrfs_level_size(root, *level - 1));
90 91 92
			/* FIXME, test for defrag */
			if (!next || !btrfs_buffer_uptodate(next)) {
				free_extent_buffer(next);
93 94 95 96
				path->slots[*level]++;
				continue;
			}
		} else {
97 98
			next = read_tree_block(root, bytenr,
				       btrfs_level_size(root, *level - 1));
99 100 101 102
		}
		ret = btrfs_cow_block(trans, root, next, path->nodes[*level],
				      path->slots[*level], &next);
		BUG_ON(ret);
103 104
		ret = btrfs_realloc_node(trans, root, next, cache_only,
					 last_ret);
105
		BUG_ON(ret);
106 107 108 109

		if (is_extent)
			btrfs_extent_post_op(trans, root);

110 111
		WARN_ON(*level <= 0);
		if (path->nodes[*level-1])
112
			free_extent_buffer(path->nodes[*level-1]);
113
		path->nodes[*level-1] = next;
114
		*level = btrfs_header_level(next);
115 116 117 118
		path->slots[*level] = 0;
	}
	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);
119 120 121

	btrfs_clear_buffer_defrag(path->nodes[*level]);

122
	free_extent_buffer(path->nodes[*level]);
123 124 125 126 127 128 129 130 131 132 133 134 135
	path->nodes[*level] = NULL;
	*level += 1;
	WARN_ON(ret);
	return 0;
}

static int defrag_walk_up(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root,
			  struct btrfs_path *path, int *level,
			  int cache_only)
{
	int i;
	int slot;
136
	struct extent_buffer *node;
137 138 139

	for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
		slot = path->slots[i];
140
		if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
141 142
			path->slots[i]++;
			*level = i;
143
			node = path->nodes[i];
144
			WARN_ON(i == 0);
145 146
			btrfs_node_key_to_cpu(node, &root->defrag_progress,
					      path->slots[i]);
147 148 149
			root->defrag_level = i;
			return 0;
		} else {
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
			if (*level > 1 && path->nodes[*level] != root->node) {
				struct extent_buffer *next;
				u64 last;
				int ret;
				ret = btrfs_cow_block(trans, root,
						      path->nodes[*level],
						      path->nodes[*level + 1],
						      path->slots[*level + 1],
						      &next);
				BUG_ON(ret);
				path->nodes[*level] = next;
				last = next->start;
				ret = btrfs_realloc_node(trans, root, next,
							 cache_only, &last);
				BUG_ON(ret);

				if (root == root->fs_info->extent_root)
					btrfs_extent_post_op(trans, root);
			}

170 171
			btrfs_clear_buffer_defrag(path->nodes[*level]);
			btrfs_clear_buffer_defrag_done(path->nodes[*level]);
172
			free_extent_buffer(path->nodes[*level]);
173 174 175 176 177 178 179 180 181 182 183
			path->nodes[*level] = NULL;
			*level = i + 1;
		}
	}
	return 1;
}

int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
			struct btrfs_root *root, int cache_only)
{
	struct btrfs_path *path = NULL;
184
	struct extent_buffer *tmp;
185 186 187 188 189
	int ret = 0;
	int wret;
	int level;
	int orig_level;
	int i;
190 191 192 193 194
	int is_extent = 0;
	u64 last_ret = 0;

	if (root->fs_info->extent_root == root)
		is_extent = 1;
195

196
	if (root->ref_cows == 0 && !is_extent)
197
		goto out;
198

199 200 201 202
	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

203
	level = btrfs_header_level(root->node);
204
	orig_level = level;
205

206 207 208
	if (level == 0) {
		goto out;
	}
209

210
	if (root->defrag_progress.objectid == 0) {
211
		extent_buffer_get(root->node);
212 213
		ret = btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
		BUG_ON(ret);
214 215
		ret = btrfs_realloc_node(trans, root, root->node, cache_only,
					 &last_ret);
216 217 218
		BUG_ON(ret);
		path->nodes[level] = root->node;
		path->slots[level] = 0;
219 220
		if (is_extent)
			btrfs_extent_post_op(trans, root);
221 222 223 224 225 226
	} else {
		level = root->defrag_level;
		path->lowest_level = level;
		wret = btrfs_search_slot(trans, root, &root->defrag_progress,
					 path, 0, 1);

227 228
		if (is_extent)
			btrfs_extent_post_op(trans, root);
229

230 231 232 233
		if (wret < 0) {
			ret = wret;
			goto out;
		}
234

235 236
		while(level > 0 && !path->nodes[level])
			level--;
237

238 239 240 241 242 243 244
		if (!path->nodes[level]) {
			ret = 0;
			goto out;
		}
	}

	while(1) {
245 246
		wret = defrag_walk_down(trans, root, path, &level, cache_only,
					&last_ret);
247 248 249 250 251 252 253 254 255 256
		if (wret > 0)
			break;
		if (wret < 0)
			ret = wret;

		wret = defrag_walk_up(trans, root, path, &level, cache_only);
		if (wret > 0)
			break;
		if (wret < 0)
			ret = wret;
257 258
		ret = -EAGAIN;
		break;
259 260 261
	}
	for (i = 0; i <= orig_level; i++) {
		if (path->nodes[i]) {
262
			free_extent_buffer(path->nodes[i]);
263
			path->nodes[i] = NULL;
264 265 266 267 268 269 270 271 272 273 274
		}
	}
out:
	if (path)
		btrfs_free_path(path);
	if (ret != -EAGAIN) {
		memset(&root->defrag_progress, 0,
		       sizeof(root->defrag_progress));
	}
	return ret;
}