blob: 321f8852755b53d402c3fa8991a6759d3e28696e [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/module.h>
20#include <linux/fs.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Mason79154b12007-03-22 15:59:16 -040022#include "ctree.h"
23#include "disk-io.h"
24#include "transaction.h"
25
Chris Mason78fae272007-03-25 11:35:08 -040026static int total_trans = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -040027extern struct kmem_cache *btrfs_trans_handle_cachep;
28extern struct kmem_cache *btrfs_transaction_cachep;
29
Chris Mason08607c12007-06-08 15:33:54 -040030static struct workqueue_struct *trans_wq;
31
Chris Mason0f7d52f2007-04-09 10:42:37 -040032#define BTRFS_ROOT_TRANS_TAG 0
33
Chris Mason79154b12007-03-22 15:59:16 -040034static void put_transaction(struct btrfs_transaction *transaction)
35{
Chris Mason2c90e5d2007-04-02 10:50:19 -040036 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040037 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040038 if (transaction->use_count == 0) {
39 WARN_ON(total_trans == 0);
40 total_trans--;
Chris Mason8fd17792007-04-19 21:01:03 -040041 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040042 memset(transaction, 0, sizeof(*transaction));
43 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040044 }
Chris Mason79154b12007-03-22 15:59:16 -040045}
46
47static int join_transaction(struct btrfs_root *root)
48{
49 struct btrfs_transaction *cur_trans;
50 cur_trans = root->fs_info->running_transaction;
51 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040052 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
53 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040054 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040055 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040056 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040057 root->fs_info->running_transaction = cur_trans;
58 cur_trans->num_writers = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040059 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040060 init_waitqueue_head(&cur_trans->writer_wait);
61 init_waitqueue_head(&cur_trans->commit_wait);
62 cur_trans->in_commit = 0;
Chris Masond5719762007-03-23 10:01:08 -040063 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040064 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040065 cur_trans->start_time = get_seconds();
Chris Mason8fd17792007-04-19 21:01:03 -040066 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Mason7c4452b2007-04-28 09:29:35 -040067 init_bit_radix(&cur_trans->dirty_pages);
Chris Mason79154b12007-03-22 15:59:16 -040068 }
69 cur_trans->num_writers++;
70 return 0;
71}
72
73struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
74 int num_blocks)
75{
Chris Mason2c90e5d2007-04-02 10:50:19 -040076 struct btrfs_trans_handle *h =
77 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040078 int ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -040079 u64 running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040080
81 mutex_lock(&root->fs_info->trans_mutex);
82 ret = join_transaction(root);
83 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -040084 running_trans_id = root->fs_info->running_transaction->transid;
85
86 if (root != root->fs_info->tree_root && root->last_trans <
87 running_trans_id) {
88 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
Chris Mason2619ba12007-04-10 16:58:11 -040089 (unsigned long)root->root_key.objectid,
90 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -040091 root->commit_root = root->node;
92 get_bh(root->node);
93 }
94 root->last_trans = running_trans_id;
95 h->transid = running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040096 h->transaction = root->fs_info->running_transaction;
97 h->blocks_reserved = num_blocks;
98 h->blocks_used = 0;
Chris Mason31f3c992007-04-30 15:25:45 -040099 h->block_group = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400100 root->fs_info->running_transaction->use_count++;
101 mutex_unlock(&root->fs_info->trans_mutex);
102 return h;
103}
104
105int btrfs_end_transaction(struct btrfs_trans_handle *trans,
106 struct btrfs_root *root)
107{
108 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -0400109
Chris Mason79154b12007-03-22 15:59:16 -0400110 mutex_lock(&root->fs_info->trans_mutex);
111 cur_trans = root->fs_info->running_transaction;
Chris Masond5719762007-03-23 10:01:08 -0400112 WARN_ON(cur_trans->num_writers < 1);
Chris Mason79154b12007-03-22 15:59:16 -0400113 if (waitqueue_active(&cur_trans->writer_wait))
114 wake_up(&cur_trans->writer_wait);
115 cur_trans->num_writers--;
116 put_transaction(cur_trans);
117 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400118 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400119 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400120 return 0;
121}
122
123
124int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
125 struct btrfs_root *root)
126{
Chris Mason7c4452b2007-04-28 09:29:35 -0400127 unsigned long gang[16];
128 int ret;
129 int i;
130 int err;
131 int werr = 0;
132 struct page *page;
133 struct radix_tree_root *dirty_pages;
134 struct inode *btree_inode = root->fs_info->btree_inode;
135
136 if (!trans || !trans->transaction) {
137 return filemap_write_and_wait(btree_inode->i_mapping);
138 }
139 dirty_pages = &trans->transaction->dirty_pages;
140 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400141 ret = find_first_radix_bit(dirty_pages, gang,
142 0, ARRAY_SIZE(gang));
Chris Mason7c4452b2007-04-28 09:29:35 -0400143 if (!ret)
144 break;
145 for (i = 0; i < ret; i++) {
146 /* FIXME EIO */
147 clear_radix_bit(dirty_pages, gang[i]);
148 page = find_lock_page(btree_inode->i_mapping,
149 gang[i]);
150 if (!page)
151 continue;
152 err = write_one_page(page, 0);
153 if (err)
154 werr = err;
155 page_cache_release(page);
156 }
157 }
158 err = filemap_fdatawait(btree_inode->i_mapping);
159 if (err)
160 werr = err;
161 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400162}
163
164int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
165 struct btrfs_root *root)
166{
167 int ret;
168 u64 old_extent_block;
169 struct btrfs_fs_info *fs_info = root->fs_info;
170 struct btrfs_root *tree_root = fs_info->tree_root;
171 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason79154b12007-03-22 15:59:16 -0400172
Chris Mason9078a3e2007-04-26 16:46:15 -0400173 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400174 while(1) {
175 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
Chris Mason7eccb902007-04-11 15:53:25 -0400176 if (old_extent_block == bh_blocknr(extent_root->node))
Chris Mason79154b12007-03-22 15:59:16 -0400177 break;
178 btrfs_set_root_blocknr(&extent_root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400179 bh_blocknr(extent_root->node));
Chris Mason79154b12007-03-22 15:59:16 -0400180 ret = btrfs_update_root(trans, tree_root,
181 &extent_root->root_key,
182 &extent_root->root_item);
183 BUG_ON(ret);
Chris Mason9078a3e2007-04-26 16:46:15 -0400184 btrfs_write_dirty_block_groups(trans, extent_root);
Chris Mason79154b12007-03-22 15:59:16 -0400185 }
186 return 0;
187}
188
189static int wait_for_commit(struct btrfs_root *root,
190 struct btrfs_transaction *commit)
191{
192 DEFINE_WAIT(wait);
Chris Mason79154b12007-03-22 15:59:16 -0400193 while(!commit->commit_done) {
194 prepare_to_wait(&commit->commit_wait, &wait,
195 TASK_UNINTERRUPTIBLE);
196 if (commit->commit_done)
197 break;
198 mutex_unlock(&root->fs_info->trans_mutex);
199 schedule();
200 mutex_lock(&root->fs_info->trans_mutex);
201 }
202 finish_wait(&commit->commit_wait, &wait);
203 return 0;
204}
205
Chris Mason0f7d52f2007-04-09 10:42:37 -0400206struct dirty_root {
207 struct list_head list;
208 struct btrfs_key snap_key;
209 struct buffer_head *commit_root;
210 struct btrfs_root *root;
211};
212
Chris Mason35b7e472007-05-02 15:53:43 -0400213static int add_dirty_roots(struct btrfs_trans_handle *trans,
214 struct radix_tree_root *radix,
215 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400216{
217 struct dirty_root *dirty;
218 struct btrfs_root *gang[8];
219 struct btrfs_root *root;
220 int i;
221 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400222 int err = 0;
223
Chris Mason0f7d52f2007-04-09 10:42:37 -0400224 while(1) {
225 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
226 ARRAY_SIZE(gang),
227 BTRFS_ROOT_TRANS_TAG);
228 if (ret == 0)
229 break;
230 for (i = 0; i < ret; i++) {
231 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400232 radix_tree_tag_clear(radix,
233 (unsigned long)root->root_key.objectid,
234 BTRFS_ROOT_TRANS_TAG);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400235 if (root->commit_root == root->node) {
Chris Mason7eccb902007-04-11 15:53:25 -0400236 WARN_ON(bh_blocknr(root->node) !=
Chris Mason0f7d52f2007-04-09 10:42:37 -0400237 btrfs_root_blocknr(&root->root_item));
238 brelse(root->commit_root);
239 root->commit_root = NULL;
240 continue;
241 }
242 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
243 BUG_ON(!dirty);
244 memcpy(&dirty->snap_key, &root->root_key,
245 sizeof(root->root_key));
246 dirty->commit_root = root->commit_root;
247 root->commit_root = NULL;
248 dirty->root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400249 root->root_key.offset = root->fs_info->generation;
250 btrfs_set_root_blocknr(&root->root_item,
Chris Mason7eccb902007-04-11 15:53:25 -0400251 bh_blocknr(root->node));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400252 err = btrfs_insert_root(trans, root->fs_info->tree_root,
253 &root->root_key,
254 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400255 if (err)
256 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400257 list_add(&dirty->list, list);
258 }
259 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400260 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400261}
262
Chris Mason35b7e472007-05-02 15:53:43 -0400263static int drop_dirty_roots(struct btrfs_root *tree_root,
264 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400265{
266 struct dirty_root *dirty;
267 struct btrfs_trans_handle *trans;
Chris Mason54aa1f42007-06-22 14:16:25 -0400268 int ret = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400269 while(!list_empty(list)) {
Chris Masonfacda1e2007-06-08 18:11:48 -0400270 mutex_lock(&tree_root->fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400271 dirty = list_entry(list->next, struct dirty_root, list);
272 list_del_init(&dirty->list);
273 trans = btrfs_start_transaction(tree_root, 1);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400274 ret = btrfs_drop_snapshot(trans, dirty->root,
275 dirty->commit_root);
276 BUG_ON(ret);
277
Chris Mason0f7d52f2007-04-09 10:42:37 -0400278 ret = btrfs_del_root(trans, tree_root, &dirty->snap_key);
Chris Mason54aa1f42007-06-22 14:16:25 -0400279 if (ret)
280 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400281 ret = btrfs_end_transaction(trans, tree_root);
282 BUG_ON(ret);
283 kfree(dirty);
Chris Masonfacda1e2007-06-08 18:11:48 -0400284 mutex_unlock(&tree_root->fs_info->fs_mutex);
Chris Mason8c2383c2007-06-18 09:57:58 -0400285 btrfs_btree_balance_dirty(tree_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400286 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400287 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400288}
289
Chris Mason79154b12007-03-22 15:59:16 -0400290int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
291 struct btrfs_root *root)
292{
293 int ret = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400294 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400295 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400296 struct list_head dirty_fs_roots;
Chris Mason79154b12007-03-22 15:59:16 -0400297 DEFINE_WAIT(wait);
298
Chris Mason0f7d52f2007-04-09 10:42:37 -0400299 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400300
Chris Mason79154b12007-03-22 15:59:16 -0400301 mutex_lock(&root->fs_info->trans_mutex);
302 if (trans->transaction->in_commit) {
303 cur_trans = trans->transaction;
304 trans->transaction->use_count++;
305 btrfs_end_transaction(trans, root);
306 ret = wait_for_commit(root, cur_trans);
307 BUG_ON(ret);
308 put_transaction(cur_trans);
309 mutex_unlock(&root->fs_info->trans_mutex);
310 return 0;
311 }
Chris Mason2c90e5d2007-04-02 10:50:19 -0400312 cur_trans = trans->transaction;
313 trans->transaction->in_commit = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400314 while (trans->transaction->num_writers > 1) {
Chris Mason2c90e5d2007-04-02 10:50:19 -0400315 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -0400316 prepare_to_wait(&trans->transaction->writer_wait, &wait,
317 TASK_UNINTERRUPTIBLE);
318 if (trans->transaction->num_writers <= 1)
319 break;
320 mutex_unlock(&root->fs_info->trans_mutex);
321 schedule();
322 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400323 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason79154b12007-03-22 15:59:16 -0400324 }
325 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400326 WARN_ON(cur_trans != trans->transaction);
Chris Mason54aa1f42007-06-22 14:16:25 -0400327 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
328 &dirty_fs_roots);
329 BUG_ON(ret);
330
Chris Mason79154b12007-03-22 15:59:16 -0400331 ret = btrfs_commit_tree_roots(trans, root);
332 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -0400333
Chris Mason78fae272007-03-25 11:35:08 -0400334 cur_trans = root->fs_info->running_transaction;
335 root->fs_info->running_transaction = NULL;
Chris Mason8fd17792007-04-19 21:01:03 -0400336 if (cur_trans->list.prev != &root->fs_info->trans_list) {
337 prev_trans = list_entry(cur_trans->list.prev,
338 struct btrfs_transaction, list);
339 if (prev_trans->commit_done)
340 prev_trans = NULL;
341 else
342 prev_trans->use_count++;
343 }
Chris Mason78fae272007-03-25 11:35:08 -0400344 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason8fd17792007-04-19 21:01:03 -0400345 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400346 ret = btrfs_write_and_wait_transaction(trans, root);
Chris Mason8fd17792007-04-19 21:01:03 -0400347 if (prev_trans) {
348 mutex_lock(&root->fs_info->trans_mutex);
349 wait_for_commit(root, prev_trans);
350 put_transaction(prev_trans);
351 mutex_unlock(&root->fs_info->trans_mutex);
352 }
353 btrfs_set_super_generation(root->fs_info->disk_super,
354 cur_trans->transid);
Chris Mason79154b12007-03-22 15:59:16 -0400355 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400356 write_ctree_super(trans, root);
Chris Mason8fd17792007-04-19 21:01:03 -0400357
358 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason78fae272007-03-25 11:35:08 -0400359 btrfs_finish_extent_commit(trans, root);
360 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400361 cur_trans->commit_done = 1;
362 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400363 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400364 put_transaction(cur_trans);
Chris Masonfacda1e2007-06-08 18:11:48 -0400365 if (root->fs_info->closing)
366 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
367 else
368 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Chris Mason78fae272007-03-25 11:35:08 -0400369 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400370 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400371
Chris Masonfacda1e2007-06-08 18:11:48 -0400372 if (root->fs_info->closing) {
373 mutex_unlock(&root->fs_info->fs_mutex);
374 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
375 mutex_lock(&root->fs_info->fs_mutex);
376 }
Chris Mason79154b12007-03-22 15:59:16 -0400377 return ret;
378}
379
Chris Mason08607c12007-06-08 15:33:54 -0400380void btrfs_transaction_cleaner(struct work_struct *work)
381{
382 struct btrfs_fs_info *fs_info = container_of(work,
383 struct btrfs_fs_info,
384 trans_work.work);
385
386 struct btrfs_root *root = fs_info->tree_root;
387 struct btrfs_transaction *cur;
388 struct btrfs_trans_handle *trans;
Chris Masonfacda1e2007-06-08 18:11:48 -0400389 struct list_head dirty_roots;
Chris Mason08607c12007-06-08 15:33:54 -0400390 unsigned long now;
391 unsigned long delay = HZ * 30;
392 int ret;
393
Chris Masonfacda1e2007-06-08 18:11:48 -0400394 INIT_LIST_HEAD(&dirty_roots);
Chris Mason08607c12007-06-08 15:33:54 -0400395 mutex_lock(&root->fs_info->fs_mutex);
396 mutex_lock(&root->fs_info->trans_mutex);
397 cur = root->fs_info->running_transaction;
398 if (!cur) {
399 mutex_unlock(&root->fs_info->trans_mutex);
400 goto out;
401 }
402 now = get_seconds();
403 if (now < cur->start_time || now - cur->start_time < 30) {
404 mutex_unlock(&root->fs_info->trans_mutex);
405 delay = HZ * 5;
406 goto out;
407 }
408 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason08607c12007-06-08 15:33:54 -0400409 trans = btrfs_start_transaction(root, 1);
410 ret = btrfs_commit_transaction(trans, root);
411out:
412 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonad693af2007-06-09 08:19:57 -0400413
414 mutex_lock(&root->fs_info->trans_mutex);
415 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
416 mutex_unlock(&root->fs_info->trans_mutex);
417
418 if (!list_empty(&dirty_roots)) {
419 drop_dirty_roots(root, &dirty_roots);
420 }
Chris Mason08607c12007-06-08 15:33:54 -0400421 btrfs_transaction_queue_work(root, delay);
422}
423
424void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
425{
426 queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
427}
428
429void btrfs_transaction_flush_work(struct btrfs_root *root)
430{
431 cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
432 flush_workqueue(trans_wq);
433}
434
435void __init btrfs_init_transaction_sys(void)
436{
437 trans_wq = create_workqueue("btrfs");
438}
439
440void __exit btrfs_exit_transaction_sys(void)
441{
442 destroy_workqueue(trans_wq);
443}
444