blob: 498626470a049d57fa9cd269bb9e697ea852e8b4 [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 Mason79154b12007-03-22 15:59:16 -040021#include "ctree.h"
22#include "disk-io.h"
23#include "transaction.h"
24
Chris Mason78fae272007-03-25 11:35:08 -040025static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040026extern struct kmem_cache *btrfs_trans_handle_cachep;
27extern struct kmem_cache *btrfs_transaction_cachep;
28
Chris Mason08607c12007-06-08 15:33:54 -040029static struct workqueue_struct *trans_wq;
30
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason79154b12007-03-22 15:59:16 -040033static void put_transaction(struct btrfs_transaction *transaction)
34{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
38 WARN_ON(total_trans == 0);
39 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040040 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040041 memset(transaction, 0, sizeof(*transaction));
42 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040043 }
Chris Mason79154b12007-03-22 15:59:16 -040044}
45
46static int join_transaction(struct btrfs_root *root)
47{
48 struct btrfs_transaction *cur_trans;
49 cur_trans = root->fs_info->running_transaction;
50 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040051 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
52 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040053 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040054 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040055 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040056 root->fs_info->running_transaction = cur_trans;
57 cur_trans->num_writers = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040058 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040059 init_waitqueue_head(&cur_trans->writer_wait);
60 init_waitqueue_head(&cur_trans->commit_wait);
61 cur_trans->in_commit = 0;
Chris Masond5719762007-03-23 10:01:08 -040062 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040063 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040064 cur_trans->start_time = get_seconds();
Chris Mason8fd17792007-04-19 21:01:03 -040065 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Mason7c4452b2007-04-28 09:29:35 -040066 init_bit_radix(&cur_trans->dirty_pages);
Chris Mason79154b12007-03-22 15:59:16 -040067 }
68 cur_trans->num_writers++;
69 return 0;
70}
71
72struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
73 int num_blocks)
74{
Chris Mason2c90e5d2007-04-02 10:50:19 -040075 struct btrfs_trans_handle *h =
76 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040077 int ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -040078 u64 running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040079
80 mutex_lock(&root->fs_info->trans_mutex);
81 ret = join_transaction(root);
82 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -040083 running_trans_id = root->fs_info->running_transaction->transid;
84
85 if (root != root->fs_info->tree_root && root->last_trans <
86 running_trans_id) {
Chris Masonccd467d2007-06-28 15:57:36 -040087 WARN_ON(root == root->fs_info->extent_root);
88 WARN_ON(root->ref_cows != 1);
Chris Mason5eda7b52007-06-22 14:16:25 -040089 if (root->root_item.refs != 0) {
90 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
91 (unsigned long)root->root_key.objectid,
92 BTRFS_ROOT_TRANS_TAG);
93 root->commit_root = root->node;
94 get_bh(root->node);
95 } else {
96 WARN_ON(1);
97 }
Chris Mason0f7d52f2007-04-09 10:42:37 -040098 }
99 root->last_trans = running_trans_id;
100 h->transid = running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -0400101 h->transaction = root->fs_info->running_transaction;
102 h->blocks_reserved = num_blocks;
103 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400104 h->block_group = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400105 root->fs_info->running_transaction->use_count++;
106 mutex_unlock(&root->fs_info->trans_mutex);
107 return h;
108}
109
110int btrfs_end_transaction(struct btrfs_trans_handle *trans,
111 struct btrfs_root *root)
112{
113 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400114
Chris Mason79154b12007-03-22 15:59:16 -0400115 mutex_lock(&root->fs_info->trans_mutex);
116 cur_trans = root->fs_info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400117 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400118 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400119 cur_trans->num_writers--;
Chris Mason79154b12007-03-22 15:59:16 -0400120 if (waitqueue_active(&cur_trans->writer_wait))
121 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400122 put_transaction(cur_trans);
123 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400124 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400125 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400126 return 0;
127}
128
129
130int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
131 struct btrfs_root *root)
132{
Chris Mason7c4452b2007-04-28 09:29:35 -0400133 unsigned long gang[16];
134 int ret;
135 int i;
136 int err;
137 int werr = 0;
138 struct page *page;
139 struct radix_tree_root *dirty_pages;
140 struct inode *btree_inode = root->fs_info->btree_inode;
141
142 if (!trans || !trans->transaction) {
143 return filemap_write_and_wait(btree_inode->i_mapping);
144 }
145 dirty_pages = &trans->transaction->dirty_pages;
146 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400147 ret = find_first_radix_bit(dirty_pages, gang,
148 0, ARRAY_SIZE(gang));
Chris Mason7c4452b2007-04-28 09:29:35 -0400149 if (!ret)
150 break;
151 for (i = 0; i < ret; i++) {
152 /* FIXME EIO */
153 clear_radix_bit(dirty_pages, gang[i]);
154 page = find_lock_page(btree_inode->i_mapping,
155 gang[i]);
156 if (!page)
157 continue;
158 err = write_one_page(page, 0);
159 if (err)
160 werr = err;
161 page_cache_release(page);
162 }
163 }
164 err = filemap_fdatawait(btree_inode->i_mapping);
165 if (err)
166 werr = err;
167 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400168}
169
170int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
171 struct btrfs_root *root)
172{
173 int ret;
174 u64 old_extent_block;
175 struct btrfs_fs_info *fs_info = root->fs_info;
176 struct btrfs_root *tree_root = fs_info->tree_root;
177 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason79154b12007-03-22 15:59:16 -0400178
Chris Mason9078a3e2007-04-26 16:46:15 -0400179 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400180 while(1) {
181 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
Chris Mason7eccb902007-04-11 15:53:25 -0400182 if (old_extent_block == bh_blocknr(extent_root->node))
Chris Mason79154b12007-03-22 15:59:16 -0400183 break;
184 btrfs_set_root_blocknr(&extent_root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400185 bh_blocknr(extent_root->node));
Chris Mason79154b12007-03-22 15:59:16 -0400186 ret = btrfs_update_root(trans, tree_root,
187 &extent_root->root_key,
188 &extent_root->root_item);
189 BUG_ON(ret);
Chris Mason9078a3e2007-04-26 16:46:15 -0400190 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400191 }
192 return 0;
193}
194
195static int wait_for_commit(struct btrfs_root *root,
196 struct btrfs_transaction *commit)
197{
198 DEFINE_WAIT(wait);
Chris Masonccd467d2007-06-28 15:57:36 -0400199 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400200 while(!commit->commit_done) {
201 prepare_to_wait(&commit->commit_wait, &wait,
202 TASK_UNINTERRUPTIBLE);
203 if (commit->commit_done)
204 break;
205 mutex_unlock(&root->fs_info->trans_mutex);
206 schedule();
207 mutex_lock(&root->fs_info->trans_mutex);
208 }
Chris Masonccd467d2007-06-28 15:57:36 -0400209 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400210 finish_wait(&commit->commit_wait, &wait);
211 return 0;
212}
213
Chris Mason0f7d52f2007-04-09 10:42:37 -0400214struct dirty_root {
215 struct list_head list;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400216 struct btrfs_root *root;
217};
218
Chris Mason5eda7b52007-06-22 14:16:25 -0400219int btrfs_add_dead_root(struct btrfs_root *root, struct list_head *dead_list)
220{
221 struct dirty_root *dirty;
222
223 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
224 if (!dirty)
225 return -ENOMEM;
Chris Mason5eda7b52007-06-22 14:16:25 -0400226 dirty->root = root;
Chris Mason5eda7b52007-06-22 14:16:25 -0400227 list_add(&dirty->list, dead_list);
228 return 0;
229}
230
Chris Mason35b7e472007-05-02 15:53:43 -0400231static int add_dirty_roots(struct btrfs_trans_handle *trans,
232 struct radix_tree_root *radix,
233 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400234{
235 struct dirty_root *dirty;
236 struct btrfs_root *gang[8];
237 struct btrfs_root *root;
238 int i;
239 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400240 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400241 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400242
Chris Mason0f7d52f2007-04-09 10:42:37 -0400243 while(1) {
244 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
245 ARRAY_SIZE(gang),
246 BTRFS_ROOT_TRANS_TAG);
247 if (ret == 0)
248 break;
249 for (i = 0; i < ret; i++) {
250 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400251 radix_tree_tag_clear(radix,
252 (unsigned long)root->root_key.objectid,
253 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400254 if (root->commit_root == root->node) {
Chris Mason7eccb902007-04-11 15:53:25 -0400255 WARN_ON(bh_blocknr(root->node) !=
Chris Mason0f7d52f2007-04-09 10:42:37 -0400256 btrfs_root_blocknr(&root->root_item));
257 brelse(root->commit_root);
258 root->commit_root = NULL;
259 continue;
260 }
261 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
262 BUG_ON(!dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400263 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
264 BUG_ON(!dirty->root);
265
266 memset(&root->root_item.drop_progress, 0,
267 sizeof(struct btrfs_disk_key));
268 root->root_item.drop_level = 0;
269
270 memcpy(dirty->root, root, sizeof(*root));
271 dirty->root->node = root->commit_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400272 root->commit_root = NULL;
Chris Mason5eda7b52007-06-22 14:16:25 -0400273
Chris Mason0f7d52f2007-04-09 10:42:37 -0400274 root->root_key.offset = root->fs_info->generation;
275 btrfs_set_root_blocknr(&root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400276 bh_blocknr(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400277 err = btrfs_insert_root(trans, root->fs_info->tree_root,
278 &root->root_key,
279 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400280 if (err)
281 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400282
283 refs = btrfs_root_refs(&dirty->root->root_item);
284 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400285 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400286 &dirty->root->root_key,
287 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400288
289 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400290 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400291 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400292 } else {
293 WARN_ON(1);
294 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400295 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400296 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400297 }
298 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400299 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400300}
301
Chris Mason35b7e472007-05-02 15:53:43 -0400302static int drop_dirty_roots(struct btrfs_root *tree_root,
303 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400304{
305 struct dirty_root *dirty;
306 struct btrfs_trans_handle *trans;
Chris Mason54aa1f42007-06-22 14:16:25 -0400307 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400308 int err;
309
Chris Mason0f7d52f2007-04-09 10:42:37 -0400310 while(!list_empty(list)) {
Chris Masonfacda1e2007-06-08 18:11:48 -0400311 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400312 dirty = list_entry(list->next, struct dirty_root, list);
313 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400314
Chris Mason9f3a7422007-08-07 15:52:19 -0400315 while(1) {
316 trans = btrfs_start_transaction(tree_root, 1);
317 ret = btrfs_drop_snapshot(trans, dirty->root);
318 if (ret != -EAGAIN) {
319 break;
320 }
321 err = btrfs_update_root(trans,
322 tree_root,
323 &dirty->root->root_key,
324 &dirty->root->root_item);
325 if (err)
326 ret = err;
327 ret = btrfs_end_transaction(trans, tree_root);
328 BUG_ON(ret);
329 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400330 BUG_ON(ret);
Chris Mason9f3a7422007-08-07 15:52:19 -0400331 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Chris Mason54aa1f42007-06-22 14:16:25 -0400332 if (ret)
333 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400334 ret = btrfs_end_transaction(trans, tree_root);
335 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400336
Chris Mason9f3a7422007-08-07 15:52:19 -0400337 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400338 kfree(dirty);
Chris Masonfacda1e2007-06-08 18:11:48 -0400339 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Mason8c2383c2007-06-18 09:57:58 -0400340 btrfs_btree_balance_dirty(tree_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400341 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400342 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400343}
344
Chris Mason79154b12007-03-22 15:59:16 -0400345int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
346 struct btrfs_root *root)
347{
348 int ret = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400349 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400350 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400351 struct list_head dirty_fs_roots;
Chris Masonccd467d2007-06-28 15:57:36 -0400352 struct radix_tree_root pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400353 DEFINE_WAIT(wait);
354
Chris Masonccd467d2007-06-28 15:57:36 -0400355 init_bit_radix(&pinned_copy);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400356 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400357
Chris Mason79154b12007-03-22 15:59:16 -0400358 mutex_lock(&root->fs_info->trans_mutex);
359 if (trans->transaction->in_commit) {
360 cur_trans = trans->transaction;
361 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400362 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400363 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400364
365 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400366 ret = wait_for_commit(root, cur_trans);
367 BUG_ON(ret);
368 put_transaction(cur_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400369 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400370 return 0;
371 }
Chris Mason2c90e5d2007-04-02 10:50:19 -0400372 trans->transaction->in_commit = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400373 cur_trans = trans->transaction;
374 if (cur_trans->list.prev != &root->fs_info->trans_list) {
375 prev_trans = list_entry(cur_trans->list.prev,
376 struct btrfs_transaction, list);
377 if (!prev_trans->commit_done) {
378 prev_trans->use_count++;
379 mutex_unlock(&root->fs_info->fs_mutex);
380 mutex_unlock(&root->fs_info->trans_mutex);
381
382 wait_for_commit(root, prev_trans);
383 put_transaction(prev_trans);
384
385 mutex_lock(&root->fs_info->fs_mutex);
386 mutex_lock(&root->fs_info->trans_mutex);
387 }
388 }
Chris Mason79154b12007-03-22 15:59:16 -0400389 while (trans->transaction->num_writers > 1) {
Chris Mason2c90e5d2007-04-02 10:50:19 -0400390 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -0400391 prepare_to_wait(&trans->transaction->writer_wait, &wait,
392 TASK_UNINTERRUPTIBLE);
393 if (trans->transaction->num_writers <= 1)
394 break;
Chris Masonccd467d2007-06-28 15:57:36 -0400395 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400396 mutex_unlock(&root->fs_info->trans_mutex);
397 schedule();
Chris Masonccd467d2007-06-28 15:57:36 -0400398 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400399 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400400 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason79154b12007-03-22 15:59:16 -0400401 }
402 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400403 WARN_ON(cur_trans != trans->transaction);
Chris Mason54aa1f42007-06-22 14:16:25 -0400404 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
405 &dirty_fs_roots);
406 BUG_ON(ret);
407
Chris Mason79154b12007-03-22 15:59:16 -0400408 ret = btrfs_commit_tree_roots(trans, root);
409 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400410
Chris Mason78fae272007-03-25 11:35:08 -0400411 cur_trans = root->fs_info->running_transaction;
412 root->fs_info->running_transaction = NULL;
Chris Mason4b52dff2007-06-26 10:06:50 -0400413 btrfs_set_super_generation(&root->fs_info->super_copy,
414 cur_trans->transid);
415 btrfs_set_super_root(&root->fs_info->super_copy,
416 bh_blocknr(root->fs_info->tree_root->node));
417 memcpy(root->fs_info->disk_super, &root->fs_info->super_copy,
418 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -0400419
420 btrfs_copy_pinned(root, &pinned_copy);
421
Chris Mason78fae272007-03-25 11:35:08 -0400422 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason8fd17792007-04-19 21:01:03 -0400423 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400424 ret = btrfs_write_and_wait_transaction(trans, root);
425 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400426 write_ctree_super(trans, root);
Chris Mason8fd17792007-04-19 21:01:03 -0400427 mutex_lock(&root->fs_info->fs_mutex);
Chris Masonccd467d2007-06-28 15:57:36 -0400428 btrfs_finish_extent_commit(trans, root, &pinned_copy);
Chris Mason78fae272007-03-25 11:35:08 -0400429 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400430 cur_trans->commit_done = 1;
431 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400432 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400433 put_transaction(cur_trans);
Chris Masonfacda1e2007-06-08 18:11:48 -0400434 if (root->fs_info->closing)
435 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
436 else
437 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Chris Mason78fae272007-03-25 11:35:08 -0400438 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400439 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400440
Chris Masonfacda1e2007-06-08 18:11:48 -0400441 if (root->fs_info->closing) {
442 mutex_unlock(&root->fs_info->fs_mutex);
443 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
444 mutex_lock(&root->fs_info->fs_mutex);
445 }
Chris Mason79154b12007-03-22 15:59:16 -0400446 return ret;
447}
448
Chris Mason08607c12007-06-08 15:33:54 -0400449void btrfs_transaction_cleaner(struct work_struct *work)
450{
451 struct btrfs_fs_info *fs_info = container_of(work,
452 struct btrfs_fs_info,
453 trans_work.work);
454
455 struct btrfs_root *root = fs_info->tree_root;
456 struct btrfs_transaction *cur;
457 struct btrfs_trans_handle *trans;
Chris Masonfacda1e2007-06-08 18:11:48 -0400458 struct list_head dirty_roots;
Chris Mason08607c12007-06-08 15:33:54 -0400459 unsigned long now;
460 unsigned long delay = HZ * 30;
461 int ret;
462
Chris Masonfacda1e2007-06-08 18:11:48 -0400463 INIT_LIST_HEAD(&dirty_roots);
Chris Mason08607c12007-06-08 15:33:54 -0400464 mutex_lock(&root->fs_info->fs_mutex);
465 mutex_lock(&root->fs_info->trans_mutex);
466 cur = root->fs_info->running_transaction;
467 if (!cur) {
468 mutex_unlock(&root->fs_info->trans_mutex);
469 goto out;
470 }
471 now = get_seconds();
472 if (now < cur->start_time || now - cur->start_time < 30) {
473 mutex_unlock(&root->fs_info->trans_mutex);
474 delay = HZ * 5;
475 goto out;
476 }
477 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason08607c12007-06-08 15:33:54 -0400478 trans = btrfs_start_transaction(root, 1);
479 ret = btrfs_commit_transaction(trans, root);
480out:
481 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonad693af2007-06-09 08:19:57 -0400482
483 mutex_lock(&root->fs_info->trans_mutex);
484 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
485 mutex_unlock(&root->fs_info->trans_mutex);
486
487 if (!list_empty(&dirty_roots)) {
488 drop_dirty_roots(root, &dirty_roots);
489 }
Chris Mason08607c12007-06-08 15:33:54 -0400490 btrfs_transaction_queue_work(root, delay);
491}
492
493void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
494{
495 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
496}
497
498void btrfs_transaction_flush_work(struct btrfs_root *root)
499{
500 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
501 flush_workqueue(trans_wq);
502}
503
504void __init btrfs_init_transaction_sys(void)
505{
506 trans_wq = create_workqueue("btrfs");
507}
508
509void __exit btrfs_exit_transaction_sys(void)
510{
511 destroy_workqueue(trans_wq);
512}
513