blob: 614903f5c88444f9faaf1d13b086d384646b3e0e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -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
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Chris Mason34088782007-06-12 11:36:58 -040020#include <linux/sched.h>
Chris Masond3c2fdcf2007-09-17 10:58:06 -040021#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040022#include <linux/pagemap.h>
Chris Mason79154b12007-03-22 15:59:16 -040023#include "ctree.h"
24#include "disk-io.h"
25#include "transaction.h"
26
Chris Mason78fae272007-03-25 11:35:08 -040027static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040028extern struct kmem_cache *btrfs_trans_handle_cachep;
29extern struct kmem_cache *btrfs_transaction_cachep;
30
Chris Mason08607c12007-06-08 15:33:54 -040031static struct workqueue_struct *trans_wq;
32
Chris Mason0f7d52f2007-04-09 10:42:37 -040033#define BTRFS_ROOT_TRANS_TAG 0
Chris Mason6702ed42007-08-07 16:15:09 -040034#define BTRFS_ROOT_DEFRAG_TAG 1
Chris Mason0f7d52f2007-04-09 10:42:37 -040035
Chris Mason79154b12007-03-22 15:59:16 -040036static void put_transaction(struct btrfs_transaction *transaction)
37{
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040039 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040040 if (transaction->use_count == 0) {
41 WARN_ON(total_trans == 0);
42 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040043 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040044 memset(transaction, 0, sizeof(*transaction));
45 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040046 }
Chris Mason79154b12007-03-22 15:59:16 -040047}
48
49static int join_transaction(struct btrfs_root *root)
50{
51 struct btrfs_transaction *cur_trans;
52 cur_trans = root->fs_info->running_transaction;
53 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040054 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
55 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040056 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040057 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040058 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040059 root->fs_info->running_transaction = cur_trans;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040060 cur_trans->num_writers = 1;
61 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040063 init_waitqueue_head(&cur_trans->writer_wait);
64 init_waitqueue_head(&cur_trans->commit_wait);
65 cur_trans->in_commit = 0;
Chris Masond5719762007-03-23 10:01:08 -040066 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040067 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040068 cur_trans->start_time = get_seconds();
Chris Mason3063d292008-01-08 15:46:30 -050069 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040070 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masondc17ff82008-01-08 15:46:30 -050071 btrfs_ordered_inode_tree_init(&cur_trans->ordered_inode_tree);
Chris Mason5f39d392007-10-15 16:14:19 -040072 extent_map_tree_init(&cur_trans->dirty_pages,
73 root->fs_info->btree_inode->i_mapping,
74 GFP_NOFS);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040075 } else {
76 cur_trans->num_writers++;
77 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040078 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040079
Chris Mason79154b12007-03-22 15:59:16 -040080 return 0;
81}
82
Chris Mason6702ed42007-08-07 16:15:09 -040083static int record_root_in_trans(struct btrfs_root *root)
84{
85 u64 running_trans_id = root->fs_info->running_transaction->transid;
86 if (root->ref_cows && root->last_trans < running_trans_id) {
87 WARN_ON(root == root->fs_info->extent_root);
88 if (root->root_item.refs != 0) {
89 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
90 (unsigned long)root->root_key.objectid,
91 BTRFS_ROOT_TRANS_TAG);
92 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
93 (unsigned long)root->root_key.objectid,
94 BTRFS_ROOT_DEFRAG_TAG);
95 root->commit_root = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -040096 extent_buffer_get(root->node);
Chris Mason6702ed42007-08-07 16:15:09 -040097 } else {
98 WARN_ON(1);
99 }
100 root->last_trans = running_trans_id;
101 }
102 return 0;
103}
104
Chris Mason79154b12007-03-22 15:59:16 -0400105struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
106 int num_blocks)
107{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400108 struct btrfs_trans_handle *h =
109 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -0400110 int ret;
111
112 mutex_lock(&root->fs_info->trans_mutex);
113 ret = join_transaction(root);
114 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400115
Chris Mason6702ed42007-08-07 16:15:09 -0400116 record_root_in_trans(root);
117 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400118 h->transaction = root->fs_info->running_transaction;
119 h->blocks_reserved = num_blocks;
120 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400121 h->block_group = NULL;
Chris Mason26b80032007-08-08 20:17:12 -0400122 h->alloc_exclude_nr = 0;
123 h->alloc_exclude_start = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400124 root->fs_info->running_transaction->use_count++;
125 mutex_unlock(&root->fs_info->trans_mutex);
126 return h;
127}
128
129int btrfs_end_transaction(struct btrfs_trans_handle *trans,
130 struct btrfs_root *root)
131{
132 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400133
Chris Mason79154b12007-03-22 15:59:16 -0400134 mutex_lock(&root->fs_info->trans_mutex);
135 cur_trans = root->fs_info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400136 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400137 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400138 cur_trans->num_writers--;
Chris Mason79154b12007-03-22 15:59:16 -0400139 if (waitqueue_active(&cur_trans->writer_wait))
140 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400141 put_transaction(cur_trans);
142 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400143 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400144 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400145 return 0;
146}
147
148
149int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
150 struct btrfs_root *root)
151{
Chris Mason7c4452b2007-04-28 09:29:35 -0400152 int ret;
Chris Mason7c4452b2007-04-28 09:29:35 -0400153 int err;
154 int werr = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400155 struct extent_map_tree *dirty_pages;
Chris Mason7c4452b2007-04-28 09:29:35 -0400156 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400157 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason5f39d392007-10-15 16:14:19 -0400158 u64 start;
159 u64 end;
160 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400161
162 if (!trans || !trans->transaction) {
163 return filemap_write_and_wait(btree_inode->i_mapping);
164 }
165 dirty_pages = &trans->transaction->dirty_pages;
166 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400167 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
168 EXTENT_DIRTY);
169 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400170 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400171 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
172 while(start <= end) {
173 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400174 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason5f39d392007-10-15 16:14:19 -0400175 page = find_lock_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400176 if (!page)
177 continue;
Chris Mason6702ed42007-08-07 16:15:09 -0400178 if (PageWriteback(page)) {
179 if (PageDirty(page))
180 wait_on_page_writeback(page);
181 else {
182 unlock_page(page);
183 page_cache_release(page);
184 continue;
185 }
186 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400187 err = write_one_page(page, 0);
188 if (err)
189 werr = err;
190 page_cache_release(page);
191 }
192 }
193 err = filemap_fdatawait(btree_inode->i_mapping);
194 if (err)
195 werr = err;
196 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400197}
198
199int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
200 struct btrfs_root *root)
201{
202 int ret;
203 u64 old_extent_block;
204 struct btrfs_fs_info *fs_info = root->fs_info;
205 struct btrfs_root *tree_root = fs_info->tree_root;
206 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason79154b12007-03-22 15:59:16 -0400207
Chris Mason9078a3e2007-04-26 16:46:15 -0400208 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400209 while(1) {
Chris Masondb945352007-10-15 16:15:53 -0400210 old_extent_block = btrfs_root_bytenr(&extent_root->root_item);
211 if (old_extent_block == extent_root->node->start)
Chris Mason79154b12007-03-22 15:59:16 -0400212 break;
Chris Masondb945352007-10-15 16:15:53 -0400213 btrfs_set_root_bytenr(&extent_root->root_item,
214 extent_root->node->start);
215 btrfs_set_root_level(&extent_root->root_item,
216 btrfs_header_level(extent_root->node));
Chris Mason79154b12007-03-22 15:59:16 -0400217 ret = btrfs_update_root(trans, tree_root,
218 &extent_root->root_key,
219 &extent_root->root_item);
220 BUG_ON(ret);
Chris Mason9078a3e2007-04-26 16:46:15 -0400221 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400222 }
223 return 0;
224}
225
226static int wait_for_commit(struct btrfs_root *root,
227 struct btrfs_transaction *commit)
228{
229 DEFINE_WAIT(wait);
Chris Masonccd467d2007-06-28 15:57:36 -0400230 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400231 while(!commit->commit_done) {
232 prepare_to_wait(&commit->commit_wait, &wait,
233 TASK_UNINTERRUPTIBLE);
234 if (commit->commit_done)
235 break;
236 mutex_unlock(&root->fs_info->trans_mutex);
237 schedule();
238 mutex_lock(&root->fs_info->trans_mutex);
239 }
Chris Masonccd467d2007-06-28 15:57:36 -0400240 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400241 finish_wait(&commit->commit_wait, &wait);
242 return 0;
243}
244
Chris Mason0f7d52f2007-04-09 10:42:37 -0400245struct dirty_root {
246 struct list_head list;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400247 struct btrfs_root *root;
Josef Bacik58176a92007-08-29 15:47:34 -0400248 struct btrfs_root *latest_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400249};
250
Chris Mason5ce14bb2007-09-11 11:15:39 -0400251int btrfs_add_dead_root(struct btrfs_root *root,
252 struct btrfs_root *latest,
253 struct list_head *dead_list)
Chris Mason5eda7b52007-06-22 14:16:25 -0400254{
255 struct dirty_root *dirty;
256
257 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
258 if (!dirty)
259 return -ENOMEM;
Chris Mason5eda7b52007-06-22 14:16:25 -0400260 dirty->root = root;
Chris Mason5ce14bb2007-09-11 11:15:39 -0400261 dirty->latest_root = latest;
Chris Mason5eda7b52007-06-22 14:16:25 -0400262 list_add(&dirty->list, dead_list);
263 return 0;
264}
265
Chris Mason35b7e472007-05-02 15:53:43 -0400266static int add_dirty_roots(struct btrfs_trans_handle *trans,
267 struct radix_tree_root *radix,
268 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400269{
270 struct dirty_root *dirty;
271 struct btrfs_root *gang[8];
272 struct btrfs_root *root;
273 int i;
274 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400275 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400276 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400277
Chris Mason0f7d52f2007-04-09 10:42:37 -0400278 while(1) {
279 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
280 ARRAY_SIZE(gang),
281 BTRFS_ROOT_TRANS_TAG);
282 if (ret == 0)
283 break;
284 for (i = 0; i < ret; i++) {
285 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400286 radix_tree_tag_clear(radix,
287 (unsigned long)root->root_key.objectid,
288 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400289 if (root->commit_root == root->node) {
Chris Masondb945352007-10-15 16:15:53 -0400290 WARN_ON(root->node->start !=
291 btrfs_root_bytenr(&root->root_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400292 free_extent_buffer(root->commit_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400293 root->commit_root = NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400294
295 /* make sure to update the root on disk
296 * so we get any updates to the block used
297 * counts
298 */
299 err = btrfs_update_root(trans,
300 root->fs_info->tree_root,
301 &root->root_key,
302 &root->root_item);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400303 continue;
304 }
305 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
306 BUG_ON(!dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400307 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
308 BUG_ON(!dirty->root);
309
310 memset(&root->root_item.drop_progress, 0,
311 sizeof(struct btrfs_disk_key));
312 root->root_item.drop_level = 0;
313
314 memcpy(dirty->root, root, sizeof(*root));
315 dirty->root->node = root->commit_root;
Josef Bacik58176a92007-08-29 15:47:34 -0400316 dirty->latest_root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400317 root->commit_root = NULL;
Chris Mason5eda7b52007-06-22 14:16:25 -0400318
Chris Mason0f7d52f2007-04-09 10:42:37 -0400319 root->root_key.offset = root->fs_info->generation;
Chris Masondb945352007-10-15 16:15:53 -0400320 btrfs_set_root_bytenr(&root->root_item,
321 root->node->start);
322 btrfs_set_root_level(&root->root_item,
323 btrfs_header_level(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400324 err = btrfs_insert_root(trans, root->fs_info->tree_root,
325 &root->root_key,
326 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400327 if (err)
328 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400329
330 refs = btrfs_root_refs(&dirty->root->root_item);
331 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400332 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400333 &dirty->root->root_key,
334 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400335
336 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400337 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400338 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400339 } else {
340 WARN_ON(1);
341 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400342 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400343 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400344 }
345 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400346 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400347}
348
Chris Masone9d0b132007-08-10 14:06:19 -0400349int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
350{
351 struct btrfs_fs_info *info = root->fs_info;
352 int ret;
353 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400354 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400355
356 if (root->defrag_running)
357 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400358 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400359 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400360 root->defrag_running = 1;
361 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400362 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400363 btrfs_end_transaction(trans, root);
364 mutex_unlock(&info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400365 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400366 cond_resched();
367
368 mutex_lock(&info->fs_mutex);
369 trans = btrfs_start_transaction(root, 1);
370 if (ret != -EAGAIN)
371 break;
372 }
373 root->defrag_running = 0;
374 radix_tree_tag_clear(&info->fs_roots_radix,
375 (unsigned long)root->root_key.objectid,
376 BTRFS_ROOT_DEFRAG_TAG);
377 btrfs_end_transaction(trans, root);
378 return 0;
379}
380
Chris Mason6702ed42007-08-07 16:15:09 -0400381int btrfs_defrag_dirty_roots(struct btrfs_fs_info *info)
382{
383 struct btrfs_root *gang[1];
384 struct btrfs_root *root;
Chris Mason6702ed42007-08-07 16:15:09 -0400385 int i;
386 int ret;
387 int err = 0;
388 u64 last = 0;
389
Chris Mason6702ed42007-08-07 16:15:09 -0400390 while(1) {
391 ret = radix_tree_gang_lookup_tag(&info->fs_roots_radix,
392 (void **)gang, last,
393 ARRAY_SIZE(gang),
394 BTRFS_ROOT_DEFRAG_TAG);
395 if (ret == 0)
396 break;
397 for (i = 0; i < ret; i++) {
398 root = gang[i];
399 last = root->root_key.objectid + 1;
Chris Masonf510cfe2007-10-15 16:14:48 -0400400 btrfs_defrag_root(root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400401 }
402 }
Chris Mason6b800532007-10-15 16:17:34 -0400403 btrfs_defrag_root(info->extent_root, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400404 return err;
405}
406
Chris Mason35b7e472007-05-02 15:53:43 -0400407static int drop_dirty_roots(struct btrfs_root *tree_root,
408 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400409{
410 struct dirty_root *dirty;
411 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400412 unsigned long nr;
Chris Masondb945352007-10-15 16:15:53 -0400413 u64 num_bytes;
414 u64 bytes_used;
Chris Mason54aa1f42007-06-22 14:16:25 -0400415 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400416 int err;
417
Chris Mason0f7d52f2007-04-09 10:42:37 -0400418 while(!list_empty(list)) {
Josef Bacik58176a92007-08-29 15:47:34 -0400419 struct btrfs_root *root;
420
Chris Masonfacda1e2007-06-08 18:11:48 -0400421 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400422 dirty = list_entry(list->next, struct dirty_root, list);
423 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400424
Chris Masondb945352007-10-15 16:15:53 -0400425 num_bytes = btrfs_root_used(&dirty->root->root_item);
Josef Bacik58176a92007-08-29 15:47:34 -0400426 root = dirty->latest_root;
Chris Masone2008b62008-01-08 15:46:30 -0500427 root->fs_info->throttles++;
Josef Bacik58176a92007-08-29 15:47:34 -0400428
Chris Mason9f3a7422007-08-07 15:52:19 -0400429 while(1) {
430 trans = btrfs_start_transaction(tree_root, 1);
431 ret = btrfs_drop_snapshot(trans, dirty->root);
432 if (ret != -EAGAIN) {
433 break;
434 }
Josef Bacik58176a92007-08-29 15:47:34 -0400435
Chris Mason9f3a7422007-08-07 15:52:19 -0400436 err = btrfs_update_root(trans,
437 tree_root,
438 &dirty->root->root_key,
439 &dirty->root->root_item);
440 if (err)
441 ret = err;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400442 nr = trans->blocks_used;
Chris Mason9f3a7422007-08-07 15:52:19 -0400443 ret = btrfs_end_transaction(trans, tree_root);
444 BUG_ON(ret);
Chris Masonf4468e92007-08-08 10:08:58 -0400445 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400446 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400447 cond_resched();
Chris Masonf4468e92007-08-08 10:08:58 -0400448 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400449 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400450 BUG_ON(ret);
Chris Masone2008b62008-01-08 15:46:30 -0500451 root->fs_info->throttles--;
Josef Bacik58176a92007-08-29 15:47:34 -0400452
Chris Masondb945352007-10-15 16:15:53 -0400453 num_bytes -= btrfs_root_used(&dirty->root->root_item);
454 bytes_used = btrfs_root_used(&root->root_item);
455 if (num_bytes) {
Josef Bacik58176a92007-08-29 15:47:34 -0400456 record_root_in_trans(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400457 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400458 bytes_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400459 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400460 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Josef Bacik58176a92007-08-29 15:47:34 -0400461 if (ret) {
462 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -0400463 break;
Josef Bacik58176a92007-08-29 15:47:34 -0400464 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400465 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400466 ret = btrfs_end_transaction(trans, tree_root);
467 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400468
Chris Masonf510cfe2007-10-15 16:14:48 -0400469 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400470 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400471 kfree(dirty);
Chris Masonfacda1e2007-06-08 18:11:48 -0400472 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400473
474 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400475 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400476 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400477 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400478}
479
Chris Masondc17ff82008-01-08 15:46:30 -0500480int btrfs_write_ordered_inodes(struct btrfs_trans_handle *trans,
481 struct btrfs_root *root)
482{
483 struct btrfs_transaction *cur_trans = trans->transaction;
484 struct inode *inode;
485 u64 root_objectid = 0;
486 u64 objectid = 0;
Chris Masondc17ff82008-01-08 15:46:30 -0500487 int ret;
488
Chris Masone2008b62008-01-08 15:46:30 -0500489 root->fs_info->throttles++;
Chris Masondc17ff82008-01-08 15:46:30 -0500490 while(1) {
491 ret = btrfs_find_first_ordered_inode(
492 &cur_trans->ordered_inode_tree,
493 &root_objectid, &objectid);
494 if (!ret)
495 break;
496
497 mutex_unlock(&root->fs_info->trans_mutex);
498 mutex_unlock(&root->fs_info->fs_mutex);
499 inode = btrfs_ilookup(root->fs_info->sb, objectid,
500 root_objectid);
501 if (inode) {
502 if (S_ISREG(inode->i_mode))
503 filemap_fdatawrite(inode->i_mapping);
504 iput(inode);
505 }
506 mutex_lock(&root->fs_info->fs_mutex);
507 mutex_lock(&root->fs_info->trans_mutex);
508 }
509 while(1) {
510 root_objectid = 0;
511 objectid = 0;
512 ret = btrfs_find_del_first_ordered_inode(
513 &cur_trans->ordered_inode_tree,
514 &root_objectid, &objectid);
515 if (!ret)
516 break;
517 mutex_unlock(&root->fs_info->trans_mutex);
518 mutex_unlock(&root->fs_info->fs_mutex);
519 inode = btrfs_ilookup(root->fs_info->sb, objectid,
520 root_objectid);
521 if (inode) {
522 if (S_ISREG(inode->i_mode))
523 filemap_write_and_wait(inode->i_mapping);
524 iput(inode);
525 }
526 mutex_lock(&root->fs_info->fs_mutex);
527 mutex_lock(&root->fs_info->trans_mutex);
528 }
Chris Masone2008b62008-01-08 15:46:30 -0500529 root->fs_info->throttles--;
Chris Mason3063d292008-01-08 15:46:30 -0500530 return 0;
531}
532
533static int create_pending_snapshot(struct btrfs_trans_handle *trans,
534 struct btrfs_fs_info *fs_info,
535 struct btrfs_pending_snapshot *pending)
536{
537 struct btrfs_key key;
538 struct btrfs_root_item new_root_item;
539 struct btrfs_root *tree_root = fs_info->tree_root;
540 struct btrfs_root *root = pending->root;
541 struct extent_buffer *tmp;
542 int ret;
543 u64 objectid;
544
545 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
546 if (ret)
547 goto fail;
548
549 memcpy(&new_root_item, &root->root_item, sizeof(new_root_item));
550
551 key.objectid = objectid;
552 key.offset = 1;
553 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
554
555 extent_buffer_get(root->node);
556 btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
557 free_extent_buffer(tmp);
558
559 btrfs_copy_root(trans, root, root->node, &tmp, objectid);
560
561 btrfs_set_root_bytenr(&new_root_item, tmp->start);
562 btrfs_set_root_level(&new_root_item, btrfs_header_level(tmp));
563 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
564 &new_root_item);
565 free_extent_buffer(tmp);
566 if (ret)
567 goto fail;
568
569 /*
570 * insert the directory item
571 */
572 key.offset = (u64)-1;
573 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
574 pending->name, strlen(pending->name),
575 root->fs_info->sb->s_root->d_inode->i_ino,
576 &key, BTRFS_FT_DIR);
577
578 if (ret)
579 goto fail;
580
581 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
582 pending->name, strlen(pending->name), objectid,
583 root->fs_info->sb->s_root->d_inode->i_ino);
584fail:
585 return ret;
586}
587
588static int create_pending_snapshots(struct btrfs_trans_handle *trans,
589 struct btrfs_fs_info *fs_info)
590{
591 struct btrfs_pending_snapshot *pending;
592 struct list_head *head = &trans->transaction->pending_snapshots;
593 int ret;
594
595 while(!list_empty(head)) {
596 pending = list_entry(head->next,
597 struct btrfs_pending_snapshot, list);
598 ret = create_pending_snapshot(trans, fs_info, pending);
599 BUG_ON(ret);
600 list_del(&pending->list);
601 kfree(pending->name);
602 kfree(pending);
603 }
Chris Masondc17ff82008-01-08 15:46:30 -0500604 return 0;
605}
606
Chris Mason79154b12007-03-22 15:59:16 -0400607int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
608 struct btrfs_root *root)
609{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400610 unsigned long joined = 0;
611 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400612 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400613 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400614 struct list_head dirty_fs_roots;
Chris Mason4313b392008-01-03 09:08:48 -0500615 struct extent_map_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400616 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400617 int ret;
Chris Mason79154b12007-03-22 15:59:16 -0400618
Chris Mason0f7d52f2007-04-09 10:42:37 -0400619 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400620
Chris Mason79154b12007-03-22 15:59:16 -0400621 mutex_lock(&root->fs_info->trans_mutex);
622 if (trans->transaction->in_commit) {
623 cur_trans = trans->transaction;
624 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400625 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400626 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400627
628 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400629 ret = wait_for_commit(root, cur_trans);
630 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400631
632 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400633 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400634 mutex_unlock(&root->fs_info->trans_mutex);
635
Chris Masonccd467d2007-06-28 15:57:36 -0400636 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400637 return 0;
638 }
Chris Mason4313b392008-01-03 09:08:48 -0500639
640 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
641 if (!pinned_copy)
642 return -ENOMEM;
643
644 extent_map_tree_init(pinned_copy,
645 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
646
Chris Mason2c90e5d2007-04-02 10:50:19 -0400647 trans->transaction->in_commit = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400648 cur_trans = trans->transaction;
649 if (cur_trans->list.prev != &root->fs_info->trans_list) {
650 prev_trans = list_entry(cur_trans->list.prev,
651 struct btrfs_transaction, list);
652 if (!prev_trans->commit_done) {
653 prev_trans->use_count++;
654 mutex_unlock(&root->fs_info->fs_mutex);
655 mutex_unlock(&root->fs_info->trans_mutex);
656
657 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400658
659 mutex_lock(&root->fs_info->fs_mutex);
660 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400661 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400662 }
663 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400664
665 do {
666 joined = cur_trans->num_joined;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400667 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400668 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400669 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400670
671 if (cur_trans->num_writers > 1)
672 timeout = MAX_SCHEDULE_TIMEOUT;
673 else
674 timeout = 1;
675
Chris Masonccd467d2007-06-28 15:57:36 -0400676 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400677 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400678
679 schedule_timeout(timeout);
680
Chris Masonccd467d2007-06-28 15:57:36 -0400681 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400682 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400683 finish_wait(&cur_trans->writer_wait, &wait);
Chris Masondc17ff82008-01-08 15:46:30 -0500684 ret = btrfs_write_ordered_inodes(trans, root);
685
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400686 } while (cur_trans->num_writers > 1 ||
687 (cur_trans->num_joined != joined));
688
Chris Mason3063d292008-01-08 15:46:30 -0500689 ret = create_pending_snapshots(trans, root->fs_info);
690 BUG_ON(ret);
691
Chris Mason2c90e5d2007-04-02 10:50:19 -0400692 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500693
Chris Mason54aa1f42007-06-22 14:16:25 -0400694 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
695 &dirty_fs_roots);
696 BUG_ON(ret);
697
Chris Mason79154b12007-03-22 15:59:16 -0400698 ret = btrfs_commit_tree_roots(trans, root);
699 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400700
Chris Mason78fae272007-03-25 11:35:08 -0400701 cur_trans = root->fs_info->running_transaction;
702 root->fs_info->running_transaction = NULL;
Chris Mason4b52dff2007-06-26 10:06:50 -0400703 btrfs_set_super_generation(&root->fs_info->super_copy,
704 cur_trans->transid);
705 btrfs_set_super_root(&root->fs_info->super_copy,
Chris Masondb945352007-10-15 16:15:53 -0400706 root->fs_info->tree_root->node->start);
707 btrfs_set_super_root_level(&root->fs_info->super_copy,
708 btrfs_header_level(root->fs_info->tree_root->node));
Chris Mason5f39d392007-10-15 16:14:19 -0400709
710 write_extent_buffer(root->fs_info->sb_buffer,
711 &root->fs_info->super_copy, 0,
712 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -0400713
Chris Mason4313b392008-01-03 09:08:48 -0500714 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -0400715
Chris Mason78fae272007-03-25 11:35:08 -0400716 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason8fd17792007-04-19 21:01:03 -0400717 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400718 ret = btrfs_write_and_wait_transaction(trans, root);
719 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400720 write_ctree_super(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -0500721
Chris Mason8fd17792007-04-19 21:01:03 -0400722 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500723 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason78fae272007-03-25 11:35:08 -0400724 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4313b392008-01-03 09:08:48 -0500725
726 kfree(pinned_copy);
727
Chris Mason2c90e5d2007-04-02 10:50:19 -0400728 cur_trans->commit_done = 1;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400729 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400730 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400731 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400732 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -0400733
Chris Masonfacda1e2007-06-08 18:11:48 -0400734 if (root->fs_info->closing)
735 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
736 else
737 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Josef Bacik58176a92007-08-29 15:47:34 -0400738
Chris Mason78fae272007-03-25 11:35:08 -0400739 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400740 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400741
Chris Masonfacda1e2007-06-08 18:11:48 -0400742 if (root->fs_info->closing) {
743 mutex_unlock(&root->fs_info->fs_mutex);
744 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
745 mutex_lock(&root->fs_info->fs_mutex);
746 }
Chris Mason79154b12007-03-22 15:59:16 -0400747 return ret;
748}
749
Chris Masone9d0b132007-08-10 14:06:19 -0400750int btrfs_clean_old_snapshots(struct btrfs_root *root)
751{
752 struct list_head dirty_roots;
753 INIT_LIST_HEAD(&dirty_roots);
754
755 mutex_lock(&root->fs_info->trans_mutex);
756 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
757 mutex_unlock(&root->fs_info->trans_mutex);
758
759 if (!list_empty(&dirty_roots)) {
760 drop_dirty_roots(root, &dirty_roots);
761 }
762 return 0;
763}
Chris Mason6da6aba2007-12-18 16:15:09 -0500764#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
765void btrfs_transaction_cleaner(void *p)
766#else
Chris Mason08607c12007-06-08 15:33:54 -0400767void btrfs_transaction_cleaner(struct work_struct *work)
Chris Mason6da6aba2007-12-18 16:15:09 -0500768#endif
Chris Mason08607c12007-06-08 15:33:54 -0400769{
Chris Mason6da6aba2007-12-18 16:15:09 -0500770#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
771 struct btrfs_fs_info *fs_info = p;
772#else
Chris Mason08607c12007-06-08 15:33:54 -0400773 struct btrfs_fs_info *fs_info = container_of(work,
774 struct btrfs_fs_info,
775 trans_work.work);
776
Chris Mason6da6aba2007-12-18 16:15:09 -0500777#endif
Chris Mason08607c12007-06-08 15:33:54 -0400778 struct btrfs_root *root = fs_info->tree_root;
779 struct btrfs_transaction *cur;
780 struct btrfs_trans_handle *trans;
781 unsigned long now;
782 unsigned long delay = HZ * 30;
783 int ret;
784
Chris Mason08607c12007-06-08 15:33:54 -0400785 mutex_lock(&root->fs_info->fs_mutex);
786 mutex_lock(&root->fs_info->trans_mutex);
787 cur = root->fs_info->running_transaction;
788 if (!cur) {
789 mutex_unlock(&root->fs_info->trans_mutex);
790 goto out;
791 }
792 now = get_seconds();
793 if (now < cur->start_time || now - cur->start_time < 30) {
794 mutex_unlock(&root->fs_info->trans_mutex);
795 delay = HZ * 5;
796 goto out;
797 }
798 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400799 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason08607c12007-06-08 15:33:54 -0400800 trans = btrfs_start_transaction(root, 1);
801 ret = btrfs_commit_transaction(trans, root);
802out:
803 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400804 btrfs_clean_old_snapshots(root);
Chris Mason08607c12007-06-08 15:33:54 -0400805 btrfs_transaction_queue_work(root, delay);
806}
807
808void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
809{
810 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
811}
812
813void btrfs_transaction_flush_work(struct btrfs_root *root)
814{
815 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
816 flush_workqueue(trans_wq);
817}
818
819void __init btrfs_init_transaction_sys(void)
820{
821 trans_wq = create_workqueue("btrfs");
822}
823
Christian Hesse17636e02007-12-11 09:25:06 -0500824void btrfs_exit_transaction_sys(void)
Chris Mason08607c12007-06-08 15:33:54 -0400825{
826 destroy_workqueue(trans_wq);
827}
828