blob: b859db395fd56d941a9a982890c24642fad6d022 [file] [log] [blame]
Chris Mason79154b12007-03-22 15:59:16 -04001#include <linux/module.h>
2#include <linux/fs.h>
3#include "ctree.h"
4#include "disk-io.h"
5#include "transaction.h"
6
Chris Mason78fae272007-03-25 11:35:08 -04007static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04008extern struct kmem_cache *btrfs_trans_handle_cachep;
9extern struct kmem_cache *btrfs_transaction_cachep;
10
Chris Mason08607c12007-06-08 15:33:54 -040011static struct workqueue_struct *trans_wq;
12
Chris Mason0f7d52f2007-04-09 10:42:37 -040013#define BTRFS_ROOT_TRANS_TAG 0
14
Chris Mason79154b12007-03-22 15:59:16 -040015static void put_transaction(struct btrfs_transaction *transaction)
16{
Chris Mason2c90e5d2007-04-02 10:50:19 -040017 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040018 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040019 if (transaction->use_count == 0) {
20 WARN_ON(total_trans == 0);
21 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040022 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040023 memset(transaction, 0, sizeof(*transaction));
24 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040025 }
Chris Mason79154b12007-03-22 15:59:16 -040026}
27
28static int join_transaction(struct btrfs_root *root)
29{
30 struct btrfs_transaction *cur_trans;
31 cur_trans = root->fs_info->running_transaction;
32 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040033 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
34 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040035 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040036 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040037 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040038 root->fs_info->running_transaction = cur_trans;
39 cur_trans->num_writers = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040040 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040041 init_waitqueue_head(&cur_trans->writer_wait);
42 init_waitqueue_head(&cur_trans->commit_wait);
43 cur_trans->in_commit = 0;
Chris Masond5719762007-03-23 10:01:08 -040044 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040045 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040046 cur_trans->start_time = get_seconds();
Chris Mason8fd17792007-04-19 21:01:03 -040047 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Mason7c4452b2007-04-28 09:29:35 -040048 init_bit_radix(&cur_trans->dirty_pages);
Chris Mason79154b12007-03-22 15:59:16 -040049 }
50 cur_trans->num_writers++;
51 return 0;
52}
53
54struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
55 int num_blocks)
56{
Chris Mason2c90e5d2007-04-02 10:50:19 -040057 struct btrfs_trans_handle *h =
58 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040059 int ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -040060 u64 running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040061
62 mutex_lock(&root->fs_info->trans_mutex);
63 ret = join_transaction(root);
64 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -040065 running_trans_id = root->fs_info->running_transaction->transid;
66
67 if (root != root->fs_info->tree_root && root->last_trans <
68 running_trans_id) {
69 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
Chris Mason2619ba12007-04-10 16:58:11 -040070 (unsigned long)root->root_key.objectid,
71 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -040072 root->commit_root = root->node;
73 get_bh(root->node);
74 }
75 root->last_trans = running_trans_id;
76 h->transid = running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040077 h->transaction = root->fs_info->running_transaction;
78 h->blocks_reserved = num_blocks;
79 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -040080 h->block_group = NULL;
Chris Mason79154b12007-03-22 15:59:16 -040081 root->fs_info->running_transaction->use_count++;
82 mutex_unlock(&root->fs_info->trans_mutex);
83 return h;
84}
85
86int btrfs_end_transaction(struct btrfs_trans_handle *trans,
87 struct btrfs_root *root)
88{
89 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -040090
Chris Mason79154b12007-03-22 15:59:16 -040091 mutex_lock(&root->fs_info->trans_mutex);
92 cur_trans = root->fs_info->running_transaction;
Chris Masond5719762007-03-23 10:01:08 -040093 WARN_ON(cur_trans->num_writers < 1);
Chris Mason79154b12007-03-22 15:59:16 -040094 if (waitqueue_active(&cur_trans->writer_wait))
95 wake_up(&cur_trans->writer_wait);
96 cur_trans->num_writers--;
97 put_transaction(cur_trans);
98 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -040099 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400100 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400101 return 0;
102}
103
104
105int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
106 struct btrfs_root *root)
107{
Chris Mason7c4452b2007-04-28 09:29:35 -0400108 unsigned long gang[16];
109 int ret;
110 int i;
111 int err;
112 int werr = 0;
113 struct page *page;
114 struct radix_tree_root *dirty_pages;
115 struct inode *btree_inode = root->fs_info->btree_inode;
116
117 if (!trans || !trans->transaction) {
118 return filemap_write_and_wait(btree_inode->i_mapping);
119 }
120 dirty_pages = &trans->transaction->dirty_pages;
121 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400122 ret = find_first_radix_bit(dirty_pages, gang,
123 0, ARRAY_SIZE(gang));
Chris Mason7c4452b2007-04-28 09:29:35 -0400124 if (!ret)
125 break;
126 for (i = 0; i < ret; i++) {
127 /* FIXME EIO */
128 clear_radix_bit(dirty_pages, gang[i]);
129 page = find_lock_page(btree_inode->i_mapping,
130 gang[i]);
131 if (!page)
132 continue;
133 err = write_one_page(page, 0);
134 if (err)
135 werr = err;
136 page_cache_release(page);
137 }
138 }
139 err = filemap_fdatawait(btree_inode->i_mapping);
140 if (err)
141 werr = err;
142 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400143}
144
145int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
146 struct btrfs_root *root)
147{
148 int ret;
149 u64 old_extent_block;
150 struct btrfs_fs_info *fs_info = root->fs_info;
151 struct btrfs_root *tree_root = fs_info->tree_root;
152 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason8352d8a2007-04-12 10:43:05 -0400153 struct btrfs_root *dev_root = fs_info->dev_root;
Chris Mason79154b12007-03-22 15:59:16 -0400154
Chris Mason8352d8a2007-04-12 10:43:05 -0400155 if (btrfs_super_device_root(fs_info->disk_super) !=
156 bh_blocknr(dev_root->node)) {
157 btrfs_set_super_device_root(fs_info->disk_super,
158 bh_blocknr(dev_root->node));
159 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400160 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400161 while(1) {
162 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
Chris Mason7eccb902007-04-11 15:53:25 -0400163 if (old_extent_block == bh_blocknr(extent_root->node))
Chris Mason79154b12007-03-22 15:59:16 -0400164 break;
165 btrfs_set_root_blocknr(&extent_root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400166 bh_blocknr(extent_root->node));
Chris Mason79154b12007-03-22 15:59:16 -0400167 ret = btrfs_update_root(trans, tree_root,
168 &extent_root->root_key,
169 &extent_root->root_item);
170 BUG_ON(ret);
Chris Mason9078a3e2007-04-26 16:46:15 -0400171 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400172 }
173 return 0;
174}
175
176static int wait_for_commit(struct btrfs_root *root,
177 struct btrfs_transaction *commit)
178{
179 DEFINE_WAIT(wait);
Chris Mason79154b12007-03-22 15:59:16 -0400180 while(!commit->commit_done) {
181 prepare_to_wait(&commit->commit_wait, &wait,
182 TASK_UNINTERRUPTIBLE);
183 if (commit->commit_done)
184 break;
185 mutex_unlock(&root->fs_info->trans_mutex);
186 schedule();
187 mutex_lock(&root->fs_info->trans_mutex);
188 }
189 finish_wait(&commit->commit_wait, &wait);
190 return 0;
191}
192
Chris Mason0f7d52f2007-04-09 10:42:37 -0400193struct dirty_root {
194 struct list_head list;
195 struct btrfs_key snap_key;
196 struct buffer_head *commit_root;
197 struct btrfs_root *root;
198};
199
Chris Mason35b7e472007-05-02 15:53:43 -0400200static int add_dirty_roots(struct btrfs_trans_handle *trans,
201 struct radix_tree_root *radix,
202 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400203{
204 struct dirty_root *dirty;
205 struct btrfs_root *gang[8];
206 struct btrfs_root *root;
207 int i;
208 int ret;
209 int err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400210 while(1) {
211 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
212 ARRAY_SIZE(gang),
213 BTRFS_ROOT_TRANS_TAG);
214 if (ret == 0)
215 break;
216 for (i = 0; i < ret; i++) {
217 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400218 radix_tree_tag_clear(radix,
219 (unsigned long)root->root_key.objectid,
220 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400221 if (root->commit_root == root->node) {
Chris Mason7eccb902007-04-11 15:53:25 -0400222 WARN_ON(bh_blocknr(root->node) !=
Chris Mason0f7d52f2007-04-09 10:42:37 -0400223 btrfs_root_blocknr(&root->root_item));
224 brelse(root->commit_root);
225 root->commit_root = NULL;
226 continue;
227 }
228 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
229 BUG_ON(!dirty);
230 memcpy(&dirty->snap_key, &root->root_key,
231 sizeof(root->root_key));
232 dirty->commit_root = root->commit_root;
233 root->commit_root = NULL;
234 dirty->root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400235 root->root_key.offset = root->fs_info->generation;
236 btrfs_set_root_blocknr(&root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400237 bh_blocknr(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400238 err = btrfs_insert_root(trans, root->fs_info->tree_root,
239 &root->root_key,
240 &root->root_item);
241 BUG_ON(err);
242 list_add(&dirty->list, list);
243 }
244 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400245 return 0;
246}
247
Chris Mason35b7e472007-05-02 15:53:43 -0400248static int drop_dirty_roots(struct btrfs_root *tree_root,
249 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400250{
251 struct dirty_root *dirty;
252 struct btrfs_trans_handle *trans;
253 int ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400254 while(!list_empty(list)) {
Chris Masonfacda1e2007-06-08 18:11:48 -0400255 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400256 dirty = list_entry(list->next, struct dirty_root, list);
257 list_del_init(&dirty->list);
258 trans = btrfs_start_transaction(tree_root, 1);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400259 ret = btrfs_drop_snapshot(trans, dirty->root,
260 dirty->commit_root);
261 BUG_ON(ret);
262
Chris Mason0f7d52f2007-04-09 10:42:37 -0400263 ret = btrfs_del_root(trans, tree_root, &dirty->snap_key);
264 BUG_ON(ret);
265 ret = btrfs_end_transaction(trans, tree_root);
266 BUG_ON(ret);
267 kfree(dirty);
Chris Masonfacda1e2007-06-08 18:11:48 -0400268 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400269 }
270 return 0;
271}
272
Chris Mason79154b12007-03-22 15:59:16 -0400273int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
274 struct btrfs_root *root)
275{
276 int ret = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400277 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400278 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400279 struct list_head dirty_fs_roots;
Chris Mason79154b12007-03-22 15:59:16 -0400280 DEFINE_WAIT(wait);
281
Chris Mason0f7d52f2007-04-09 10:42:37 -0400282 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400283
Chris Mason79154b12007-03-22 15:59:16 -0400284 mutex_lock(&root->fs_info->trans_mutex);
285 if (trans->transaction->in_commit) {
286 cur_trans = trans->transaction;
287 trans->transaction->use_count++;
288 btrfs_end_transaction(trans, root);
289 ret = wait_for_commit(root, cur_trans);
290 BUG_ON(ret);
291 put_transaction(cur_trans);
292 mutex_unlock(&root->fs_info->trans_mutex);
293 return 0;
294 }
Chris Mason2c90e5d2007-04-02 10:50:19 -0400295 cur_trans = trans->transaction;
296 trans->transaction->in_commit = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400297 while (trans->transaction->num_writers > 1) {
Chris Mason2c90e5d2007-04-02 10:50:19 -0400298 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -0400299 prepare_to_wait(&trans->transaction->writer_wait, &wait,
300 TASK_UNINTERRUPTIBLE);
301 if (trans->transaction->num_writers <= 1)
302 break;
303 mutex_unlock(&root->fs_info->trans_mutex);
304 schedule();
305 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400306 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason79154b12007-03-22 15:59:16 -0400307 }
308 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400309 WARN_ON(cur_trans != trans->transaction);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400310 add_dirty_roots(trans, &root->fs_info->fs_roots_radix, &dirty_fs_roots);
Chris Mason79154b12007-03-22 15:59:16 -0400311 ret = btrfs_commit_tree_roots(trans, root);
312 BUG_ON(ret);
Chris Mason78fae272007-03-25 11:35:08 -0400313 cur_trans = root->fs_info->running_transaction;
314 root->fs_info->running_transaction = NULL;
Chris Mason8fd17792007-04-19 21:01:03 -0400315 if (cur_trans->list.prev != &root->fs_info->trans_list) {
316 prev_trans = list_entry(cur_trans->list.prev,
317 struct btrfs_transaction, list);
318 if (prev_trans->commit_done)
319 prev_trans = NULL;
320 else
321 prev_trans->use_count++;
322 }
Chris Mason78fae272007-03-25 11:35:08 -0400323 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason8fd17792007-04-19 21:01:03 -0400324 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400325 ret = btrfs_write_and_wait_transaction(trans, root);
Chris Mason8fd17792007-04-19 21:01:03 -0400326 if (prev_trans) {
327 mutex_lock(&root->fs_info->trans_mutex);
328 wait_for_commit(root, prev_trans);
329 put_transaction(prev_trans);
330 mutex_unlock(&root->fs_info->trans_mutex);
331 }
332 btrfs_set_super_generation(root->fs_info->disk_super,
333 cur_trans->transid);
Chris Mason79154b12007-03-22 15:59:16 -0400334 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400335 write_ctree_super(trans, root);
Chris Mason8fd17792007-04-19 21:01:03 -0400336
337 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason78fae272007-03-25 11:35:08 -0400338 btrfs_finish_extent_commit(trans, root);
339 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400340 cur_trans->commit_done = 1;
341 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400342 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400343 put_transaction(cur_trans);
Chris Masonfacda1e2007-06-08 18:11:48 -0400344 if (root->fs_info->closing)
345 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
346 else
347 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Chris Mason78fae272007-03-25 11:35:08 -0400348 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400349 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400350
Chris Masonfacda1e2007-06-08 18:11:48 -0400351 if (root->fs_info->closing) {
352 mutex_unlock(&root->fs_info->fs_mutex);
353 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
354 mutex_lock(&root->fs_info->fs_mutex);
355 }
Chris Mason79154b12007-03-22 15:59:16 -0400356 return ret;
357}
358
Chris Mason08607c12007-06-08 15:33:54 -0400359void btrfs_transaction_cleaner(struct work_struct *work)
360{
361 struct btrfs_fs_info *fs_info = container_of(work,
362 struct btrfs_fs_info,
363 trans_work.work);
364
365 struct btrfs_root *root = fs_info->tree_root;
366 struct btrfs_transaction *cur;
367 struct btrfs_trans_handle *trans;
Chris Masonfacda1e2007-06-08 18:11:48 -0400368 struct list_head dirty_roots;
Chris Mason08607c12007-06-08 15:33:54 -0400369 unsigned long now;
370 unsigned long delay = HZ * 30;
371 int ret;
372
Chris Masonfacda1e2007-06-08 18:11:48 -0400373 INIT_LIST_HEAD(&dirty_roots);
374 mutex_lock(&root->fs_info->trans_mutex);
375 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
376 mutex_unlock(&root->fs_info->trans_mutex);
377
378 if (!list_empty(&dirty_roots)) {
379 drop_dirty_roots(root, &dirty_roots);
380 }
Chris Mason08607c12007-06-08 15:33:54 -0400381 mutex_lock(&root->fs_info->fs_mutex);
382 mutex_lock(&root->fs_info->trans_mutex);
383 cur = root->fs_info->running_transaction;
384 if (!cur) {
385 mutex_unlock(&root->fs_info->trans_mutex);
386 goto out;
387 }
388 now = get_seconds();
389 if (now < cur->start_time || now - cur->start_time < 30) {
390 mutex_unlock(&root->fs_info->trans_mutex);
391 delay = HZ * 5;
392 goto out;
393 }
394 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason08607c12007-06-08 15:33:54 -0400395 trans = btrfs_start_transaction(root, 1);
396 ret = btrfs_commit_transaction(trans, root);
397out:
398 mutex_unlock(&root->fs_info->fs_mutex);
399 btrfs_transaction_queue_work(root, delay);
400}
401
402void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
403{
404 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
405}
406
407void btrfs_transaction_flush_work(struct btrfs_root *root)
408{
409 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
410 flush_workqueue(trans_wq);
411}
412
413void __init btrfs_init_transaction_sys(void)
414{
415 trans_wq = create_workqueue("btrfs");
416}
417
418void __exit btrfs_exit_transaction_sys(void)
419{
420 destroy_workqueue(trans_wq);
421}
422