blob: 256af1870eef3696c167b450c7c2cdab42c87fe8 [file] [log] [blame]
Chris Mason6702ed42007-08-07 16:15:09 -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
19#include <linux/sched.h>
20#include "ctree.h"
21#include "disk-io.h"
22#include "print-tree.h"
23#include "transaction.h"
24
25static void reada_defrag(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -040026 struct extent_buffer *node)
Chris Mason6702ed42007-08-07 16:15:09 -040027{
28 int i;
29 u32 nritems;
Chris Masondb945352007-10-15 16:15:53 -040030 u64 bytenr;
31 u32 blocksize;
Chris Mason6702ed42007-08-07 16:15:09 -040032 int ret;
33
Chris Masondb945352007-10-15 16:15:53 -040034 blocksize = btrfs_level_size(root, btrfs_header_level(node) - 1);
Chris Mason5f39d392007-10-15 16:14:19 -040035 nritems = btrfs_header_nritems(node);
Chris Mason6702ed42007-08-07 16:15:09 -040036 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -040037 bytenr = btrfs_node_blockptr(node, i);
38 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -040039 if (ret)
40 break;
41 }
42}
43
44static int defrag_walk_down(struct btrfs_trans_handle *trans,
45 struct btrfs_root *root,
46 struct btrfs_path *path, int *level,
Chris Masone9d0b132007-08-10 14:06:19 -040047 int cache_only, u64 *last_ret)
Chris Mason6702ed42007-08-07 16:15:09 -040048{
Chris Mason5f39d392007-10-15 16:14:19 -040049 struct extent_buffer *next;
50 struct extent_buffer *cur;
Chris Masondb945352007-10-15 16:15:53 -040051 u64 bytenr;
Chris Mason6702ed42007-08-07 16:15:09 -040052 int ret = 0;
Chris Masone9d0b132007-08-10 14:06:19 -040053 int is_extent = 0;
Chris Mason6702ed42007-08-07 16:15:09 -040054
55 WARN_ON(*level < 0);
56 WARN_ON(*level >= BTRFS_MAX_LEVEL);
57
Chris Masone9d0b132007-08-10 14:06:19 -040058 if (root->fs_info->extent_root == root)
59 is_extent = 1;
60
Chris Masonf84a8b32007-11-06 10:26:29 -050061 if (*level == 1 && cache_only && path->nodes[1] &&
62 !btrfs_buffer_defrag(path->nodes[1])) {
63 goto out;
64 }
Chris Mason6702ed42007-08-07 16:15:09 -040065 while(*level > 0) {
66 WARN_ON(*level < 0);
67 WARN_ON(*level >= BTRFS_MAX_LEVEL);
68 cur = path->nodes[*level];
69
70 if (!cache_only && *level > 1 && path->slots[*level] == 0)
Chris Mason5f39d392007-10-15 16:14:19 -040071 reada_defrag(root, cur);
Chris Mason6702ed42007-08-07 16:15:09 -040072
Chris Mason5f39d392007-10-15 16:14:19 -040073 if (btrfs_header_level(cur) != *level)
Chris Mason6702ed42007-08-07 16:15:09 -040074 WARN_ON(1);
75
76 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -040077 btrfs_header_nritems(cur))
Chris Mason6702ed42007-08-07 16:15:09 -040078 break;
79
80 if (*level == 1) {
Chris Mason7bb86312007-12-11 09:25:06 -050081 WARN_ON(btrfs_header_generation(path->nodes[*level]) !=
82 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -040083 ret = btrfs_realloc_node(trans, root,
84 path->nodes[*level],
Chris Masona6b6e752007-10-15 16:22:39 -040085 path->slots[*level],
86 cache_only, last_ret,
87 &root->defrag_progress);
Chris Masone9d0b132007-08-10 14:06:19 -040088 if (is_extent)
89 btrfs_extent_post_op(trans, root);
90
Chris Mason6702ed42007-08-07 16:15:09 -040091 break;
92 }
Chris Masondb945352007-10-15 16:15:53 -040093 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Mason6702ed42007-08-07 16:15:09 -040094
95 if (cache_only) {
Chris Masondb945352007-10-15 16:15:53 -040096 next = btrfs_find_tree_block(root, bytenr,
97 btrfs_level_size(root, *level - 1));
Chris Masoncf786e72007-10-15 16:22:11 -040098 if (!next || !btrfs_buffer_uptodate(next) ||
99 !btrfs_buffer_defrag(next)) {
Chris Mason5f39d392007-10-15 16:14:19 -0400100 free_extent_buffer(next);
Chris Mason6702ed42007-08-07 16:15:09 -0400101 path->slots[*level]++;
102 continue;
103 }
Chris Mason0999df52008-04-01 13:48:14 -0400104 btrfs_verify_block_csum(root, next);
Chris Mason6702ed42007-08-07 16:15:09 -0400105 } else {
Chris Masondb945352007-10-15 16:15:53 -0400106 next = read_tree_block(root, bytenr,
107 btrfs_level_size(root, *level - 1));
Chris Mason6702ed42007-08-07 16:15:09 -0400108 }
109 ret = btrfs_cow_block(trans, root, next, path->nodes[*level],
110 path->slots[*level], &next);
111 BUG_ON(ret);
Chris Masone9d0b132007-08-10 14:06:19 -0400112 if (is_extent)
113 btrfs_extent_post_op(trans, root);
114
Chris Mason6702ed42007-08-07 16:15:09 -0400115 WARN_ON(*level <= 0);
116 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -0400117 free_extent_buffer(path->nodes[*level-1]);
Chris Mason6702ed42007-08-07 16:15:09 -0400118 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -0400119 *level = btrfs_header_level(next);
Chris Mason6702ed42007-08-07 16:15:09 -0400120 path->slots[*level] = 0;
121 }
122 WARN_ON(*level < 0);
123 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason6b800532007-10-15 16:17:34 -0400124
125 btrfs_clear_buffer_defrag(path->nodes[*level]);
Chris Masonf84a8b32007-11-06 10:26:29 -0500126out:
Chris Mason5f39d392007-10-15 16:14:19 -0400127 free_extent_buffer(path->nodes[*level]);
Chris Mason6702ed42007-08-07 16:15:09 -0400128 path->nodes[*level] = NULL;
129 *level += 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400130 WARN_ON(ret && ret != -EAGAIN);
131 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400132}
133
134static int defrag_walk_up(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, int *level,
137 int cache_only)
138{
139 int i;
140 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -0400141 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -0400142
143 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
144 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -0400145 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
Chris Mason6702ed42007-08-07 16:15:09 -0400146 path->slots[i]++;
147 *level = i;
Chris Mason5f39d392007-10-15 16:14:19 -0400148 node = path->nodes[i];
Chris Mason6702ed42007-08-07 16:15:09 -0400149 WARN_ON(i == 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400150 btrfs_node_key_to_cpu(node, &root->defrag_progress,
151 path->slots[i]);
Chris Mason6702ed42007-08-07 16:15:09 -0400152 root->defrag_level = i;
153 return 0;
154 } else {
Chris Mason6b800532007-10-15 16:17:34 -0400155 btrfs_clear_buffer_defrag(path->nodes[*level]);
Chris Mason5f39d392007-10-15 16:14:19 -0400156 free_extent_buffer(path->nodes[*level]);
Chris Mason6702ed42007-08-07 16:15:09 -0400157 path->nodes[*level] = NULL;
158 *level = i + 1;
159 }
160 }
161 return 1;
162}
163
164int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
165 struct btrfs_root *root, int cache_only)
166{
167 struct btrfs_path *path = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400168 struct extent_buffer *tmp;
Chris Mason6702ed42007-08-07 16:15:09 -0400169 int ret = 0;
170 int wret;
171 int level;
172 int orig_level;
173 int i;
Chris Masone9d0b132007-08-10 14:06:19 -0400174 int is_extent = 0;
175 u64 last_ret = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400176
Chris Masone9d0b132007-08-10 14:06:19 -0400177 if (root->fs_info->extent_root == root)
178 is_extent = 1;
179
180 if (root->ref_cows == 0 && !is_extent)
Chris Mason6702ed42007-08-07 16:15:09 -0400181 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400182
Chris Mason9afbb0b2008-02-15 13:19:35 -0500183 if (btrfs_test_opt(root, SSD))
184 goto out;
185
Chris Mason6702ed42007-08-07 16:15:09 -0400186 path = btrfs_alloc_path();
187 if (!path)
188 return -ENOMEM;
189
Chris Mason5f39d392007-10-15 16:14:19 -0400190 level = btrfs_header_level(root->node);
Chris Mason6702ed42007-08-07 16:15:09 -0400191 orig_level = level;
Chris Mason0f1ebbd2007-10-15 16:19:46 -0400192
Chris Mason6702ed42007-08-07 16:15:09 -0400193 if (level == 0) {
194 goto out;
195 }
196 if (root->defrag_progress.objectid == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400197 extent_buffer_get(root->node);
Chris Mason6702ed42007-08-07 16:15:09 -0400198 ret = btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
199 BUG_ON(ret);
Chris Mason6702ed42007-08-07 16:15:09 -0400200 path->nodes[level] = root->node;
201 path->slots[level] = 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400202 if (is_extent)
203 btrfs_extent_post_op(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400204 } else {
205 level = root->defrag_level;
206 path->lowest_level = level;
207 wret = btrfs_search_slot(trans, root, &root->defrag_progress,
208 path, 0, 1);
209
Chris Masone9d0b132007-08-10 14:06:19 -0400210 if (is_extent)
211 btrfs_extent_post_op(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -0400212
Chris Mason6702ed42007-08-07 16:15:09 -0400213 if (wret < 0) {
214 ret = wret;
215 goto out;
216 }
Chris Mason5f39d392007-10-15 16:14:19 -0400217
Chris Mason6702ed42007-08-07 16:15:09 -0400218 while(level > 0 && !path->nodes[level])
219 level--;
Chris Mason5f39d392007-10-15 16:14:19 -0400220
Chris Mason6702ed42007-08-07 16:15:09 -0400221 if (!path->nodes[level]) {
222 ret = 0;
223 goto out;
224 }
225 }
226
227 while(1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400228 wret = defrag_walk_down(trans, root, path, &level, cache_only,
229 &last_ret);
Chris Mason6702ed42007-08-07 16:15:09 -0400230 if (wret > 0)
231 break;
232 if (wret < 0)
233 ret = wret;
234
235 wret = defrag_walk_up(trans, root, path, &level, cache_only);
236 if (wret > 0)
237 break;
238 if (wret < 0)
239 ret = wret;
Chris Mason081e9572007-11-06 10:26:24 -0500240 else
241 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -0400242 break;
Chris Mason6702ed42007-08-07 16:15:09 -0400243 }
244 for (i = 0; i <= orig_level; i++) {
245 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -0400246 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -0400247 path->nodes[i] = NULL;
Chris Mason6702ed42007-08-07 16:15:09 -0400248 }
249 }
250out:
251 if (path)
252 btrfs_free_path(path);
253 if (ret != -EAGAIN) {
254 memset(&root->defrag_progress, 0,
255 sizeof(root->defrag_progress));
256 }
257 return ret;
258}