blob: f64c1729b0e1d391328a2bea723342073a097a77 [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 Mason0f7d52f2007-04-09 10:42:37 -040011#define BTRFS_ROOT_TRANS_TAG 0
12
Chris Mason2c90e5d2007-04-02 10:50:19 -040013#define TRANS_MAGIC 0xE1E10E
Chris Mason79154b12007-03-22 15:59:16 -040014static void put_transaction(struct btrfs_transaction *transaction)
15{
Chris Mason2c90e5d2007-04-02 10:50:19 -040016 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040017 transaction->use_count--;
Chris Mason2c90e5d2007-04-02 10:50:19 -040018 WARN_ON(transaction->magic != TRANS_MAGIC);
Chris Mason78fae272007-03-25 11:35:08 -040019 if (transaction->use_count == 0) {
20 WARN_ON(total_trans == 0);
21 total_trans--;
Chris Mason2c90e5d2007-04-02 10:50:19 -040022 memset(transaction, 0, sizeof(*transaction));
23 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040024 }
Chris Mason79154b12007-03-22 15:59:16 -040025}
26
27static int join_transaction(struct btrfs_root *root)
28{
29 struct btrfs_transaction *cur_trans;
30 cur_trans = root->fs_info->running_transaction;
31 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040032 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
33 GFP_NOFS);
Chris Mason78fae272007-03-25 11:35:08 -040034 total_trans++;
Chris Mason79154b12007-03-22 15:59:16 -040035 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040036 root->fs_info->generation++;
Chris Mason79154b12007-03-22 15:59:16 -040037 root->fs_info->running_transaction = cur_trans;
38 cur_trans->num_writers = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040039 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040040 init_waitqueue_head(&cur_trans->writer_wait);
41 init_waitqueue_head(&cur_trans->commit_wait);
Chris Mason2c90e5d2007-04-02 10:50:19 -040042 cur_trans->magic = TRANS_MAGIC;
Chris Mason79154b12007-03-22 15:59:16 -040043 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;
46 }
47 cur_trans->num_writers++;
48 return 0;
49}
50
51struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
52 int num_blocks)
53{
Chris Mason2c90e5d2007-04-02 10:50:19 -040054 struct btrfs_trans_handle *h =
55 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040056 int ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -040057 u64 running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040058
59 mutex_lock(&root->fs_info->trans_mutex);
60 ret = join_transaction(root);
61 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 running_trans_id = root->fs_info->running_transaction->transid;
63
64 if (root != root->fs_info->tree_root && root->last_trans <
65 running_trans_id) {
66 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
67 (unsigned long)root, BTRFS_ROOT_TRANS_TAG);
68 root->commit_root = root->node;
69 get_bh(root->node);
70 }
71 root->last_trans = running_trans_id;
72 h->transid = running_trans_id;
Chris Mason79154b12007-03-22 15:59:16 -040073 h->transaction = root->fs_info->running_transaction;
74 h->blocks_reserved = num_blocks;
75 h->blocks_used = 0;
76 root->fs_info->running_transaction->use_count++;
77 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -040078 h->magic = h->magic2 = TRANS_MAGIC;
Chris Mason79154b12007-03-22 15:59:16 -040079 return h;
80}
81
82int btrfs_end_transaction(struct btrfs_trans_handle *trans,
83 struct btrfs_root *root)
84{
85 struct btrfs_transaction *cur_trans;
Chris Masond6e4a422007-04-06 15:37:36 -040086
Chris Mason2c90e5d2007-04-02 10:50:19 -040087 WARN_ON(trans->magic != TRANS_MAGIC);
88 WARN_ON(trans->magic2 != TRANS_MAGIC);
Chris Mason79154b12007-03-22 15:59:16 -040089 mutex_lock(&root->fs_info->trans_mutex);
90 cur_trans = root->fs_info->running_transaction;
Chris Masond5719762007-03-23 10:01:08 -040091 WARN_ON(cur_trans->num_writers < 1);
Chris Mason79154b12007-03-22 15:59:16 -040092 if (waitqueue_active(&cur_trans->writer_wait))
93 wake_up(&cur_trans->writer_wait);
94 cur_trans->num_writers--;
95 put_transaction(cur_trans);
96 mutex_unlock(&root->fs_info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -040097 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -040098 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -040099 return 0;
100}
101
102
103int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
105{
Chris Mason7cfcc172007-04-02 14:53:59 -0400106 filemap_write_and_wait(root->fs_info->btree_inode->i_mapping);
Chris Mason79154b12007-03-22 15:59:16 -0400107 return 0;
108}
109
110int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
111 struct btrfs_root *root)
112{
113 int ret;
114 u64 old_extent_block;
115 struct btrfs_fs_info *fs_info = root->fs_info;
116 struct btrfs_root *tree_root = fs_info->tree_root;
117 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason79154b12007-03-22 15:59:16 -0400118
Chris Mason79154b12007-03-22 15:59:16 -0400119 while(1) {
120 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
121 if (old_extent_block == extent_root->node->b_blocknr)
122 break;
123 btrfs_set_root_blocknr(&extent_root->root_item,
124 extent_root->node->b_blocknr);
125 ret = btrfs_update_root(trans, tree_root,
126 &extent_root->root_key,
127 &extent_root->root_item);
128 BUG_ON(ret);
129 }
130 return 0;
131}
132
133static int wait_for_commit(struct btrfs_root *root,
134 struct btrfs_transaction *commit)
135{
136 DEFINE_WAIT(wait);
Chris Mason79154b12007-03-22 15:59:16 -0400137 while(!commit->commit_done) {
138 prepare_to_wait(&commit->commit_wait, &wait,
139 TASK_UNINTERRUPTIBLE);
140 if (commit->commit_done)
141 break;
142 mutex_unlock(&root->fs_info->trans_mutex);
143 schedule();
144 mutex_lock(&root->fs_info->trans_mutex);
145 }
146 finish_wait(&commit->commit_wait, &wait);
147 return 0;
148}
149
Chris Mason0f7d52f2007-04-09 10:42:37 -0400150struct dirty_root {
151 struct list_head list;
152 struct btrfs_key snap_key;
153 struct buffer_head *commit_root;
154 struct btrfs_root *root;
155};
156
157int add_dirty_roots(struct btrfs_trans_handle *trans,
158 struct radix_tree_root *radix, struct list_head *list)
159{
160 struct dirty_root *dirty;
161 struct btrfs_root *gang[8];
162 struct btrfs_root *root;
163 int i;
164 int ret;
165 int err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400166 while(1) {
167 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
168 ARRAY_SIZE(gang),
169 BTRFS_ROOT_TRANS_TAG);
170 if (ret == 0)
171 break;
172 for (i = 0; i < ret; i++) {
173 root = gang[i];
174 radix_tree_tag_clear(radix, (unsigned long)root,
175 BTRFS_ROOT_TRANS_TAG);
176 if (root->commit_root == root->node) {
177 WARN_ON(root->node->b_blocknr !=
178 btrfs_root_blocknr(&root->root_item));
179 brelse(root->commit_root);
180 root->commit_root = NULL;
181 continue;
182 }
183 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
184 BUG_ON(!dirty);
185 memcpy(&dirty->snap_key, &root->root_key,
186 sizeof(root->root_key));
187 dirty->commit_root = root->commit_root;
188 root->commit_root = NULL;
189 dirty->root = root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400190 root->root_key.offset = root->fs_info->generation;
191 btrfs_set_root_blocknr(&root->root_item,
192 root->node->b_blocknr);
193 err = btrfs_insert_root(trans, root->fs_info->tree_root,
194 &root->root_key,
195 &root->root_item);
196 BUG_ON(err);
197 list_add(&dirty->list, list);
198 }
199 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400200 return 0;
201}
202
203int drop_dirty_roots(struct btrfs_root *tree_root, struct list_head *list)
204{
205 struct dirty_root *dirty;
206 struct btrfs_trans_handle *trans;
207 int ret;
208
209 while(!list_empty(list)) {
210 dirty = list_entry(list->next, struct dirty_root, list);
211 list_del_init(&dirty->list);
212 trans = btrfs_start_transaction(tree_root, 1);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400213 ret = btrfs_drop_snapshot(trans, dirty->root,
214 dirty->commit_root);
215 BUG_ON(ret);
216
Chris Mason0f7d52f2007-04-09 10:42:37 -0400217 ret = btrfs_del_root(trans, tree_root, &dirty->snap_key);
218 BUG_ON(ret);
219 ret = btrfs_end_transaction(trans, tree_root);
220 BUG_ON(ret);
221 kfree(dirty);
222 }
223 return 0;
224}
225
Chris Mason79154b12007-03-22 15:59:16 -0400226int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
227 struct btrfs_root *root)
228{
229 int ret = 0;
Chris Mason79154b12007-03-22 15:59:16 -0400230 struct btrfs_transaction *cur_trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400231 struct list_head dirty_fs_roots;
Chris Mason79154b12007-03-22 15:59:16 -0400232 DEFINE_WAIT(wait);
233
Chris Mason0f7d52f2007-04-09 10:42:37 -0400234 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Masond6e4a422007-04-06 15:37:36 -0400235
Chris Mason79154b12007-03-22 15:59:16 -0400236 mutex_lock(&root->fs_info->trans_mutex);
237 if (trans->transaction->in_commit) {
238 cur_trans = trans->transaction;
239 trans->transaction->use_count++;
240 btrfs_end_transaction(trans, root);
241 ret = wait_for_commit(root, cur_trans);
242 BUG_ON(ret);
243 put_transaction(cur_trans);
244 mutex_unlock(&root->fs_info->trans_mutex);
245 return 0;
246 }
Chris Mason2c90e5d2007-04-02 10:50:19 -0400247 cur_trans = trans->transaction;
248 trans->transaction->in_commit = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400249 while (trans->transaction->num_writers > 1) {
Chris Mason2c90e5d2007-04-02 10:50:19 -0400250 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -0400251 prepare_to_wait(&trans->transaction->writer_wait, &wait,
252 TASK_UNINTERRUPTIBLE);
253 if (trans->transaction->num_writers <= 1)
254 break;
255 mutex_unlock(&root->fs_info->trans_mutex);
256 schedule();
257 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400258 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason79154b12007-03-22 15:59:16 -0400259 }
260 finish_wait(&trans->transaction->writer_wait, &wait);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400261 WARN_ON(cur_trans != trans->transaction);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400262 add_dirty_roots(trans, &root->fs_info->fs_roots_radix, &dirty_fs_roots);
Chris Mason79154b12007-03-22 15:59:16 -0400263 ret = btrfs_commit_tree_roots(trans, root);
264 BUG_ON(ret);
Chris Mason78fae272007-03-25 11:35:08 -0400265 cur_trans = root->fs_info->running_transaction;
266 root->fs_info->running_transaction = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400267 btrfs_set_super_generation(root->fs_info->disk_super,
268 root->fs_info->generation + 1);
Chris Mason78fae272007-03-25 11:35:08 -0400269 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400270 ret = btrfs_write_and_wait_transaction(trans, root);
271 BUG_ON(ret);
272
273 write_ctree_super(trans, root);
Chris Mason78fae272007-03-25 11:35:08 -0400274 btrfs_finish_extent_commit(trans, root);
275 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400276 cur_trans->commit_done = 1;
277 wake_up(&cur_trans->commit_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400278 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -0400279 put_transaction(cur_trans);
280 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400281 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -0400282
Chris Mason0f7d52f2007-04-09 10:42:37 -0400283 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
Chris Mason79154b12007-03-22 15:59:16 -0400284 return ret;
285}
286