Subject: Rework btrfs_file_write to only allocate while page locks are held
[firefly-linux-kernel-4.4.55.git] / fs / btrfs / transaction.c
1 /*
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
19 #include <linux/module.h>
20 #include <linux/fs.h>
21 #include <linux/sched.h>
22 #include "ctree.h"
23 #include "disk-io.h"
24 #include "transaction.h"
25
26 static int total_trans = 0;
27 extern struct kmem_cache *btrfs_trans_handle_cachep;
28 extern struct kmem_cache *btrfs_transaction_cachep;
29
30 static struct workqueue_struct *trans_wq;
31
32 #define BTRFS_ROOT_TRANS_TAG 0
33
34 static void put_transaction(struct btrfs_transaction *transaction)
35 {
36         WARN_ON(transaction->use_count == 0);
37         transaction->use_count--;
38         if (transaction->use_count == 0) {
39                 WARN_ON(total_trans == 0);
40                 total_trans--;
41                 list_del_init(&transaction->list);
42                 memset(transaction, 0, sizeof(*transaction));
43                 kmem_cache_free(btrfs_transaction_cachep, transaction);
44         }
45 }
46
47 static 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) {
52                 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
53                                              GFP_NOFS);
54                 total_trans++;
55                 BUG_ON(!cur_trans);
56                 root->fs_info->generation++;
57                 root->fs_info->running_transaction = cur_trans;
58                 cur_trans->num_writers = 0;
59                 cur_trans->transid = root->fs_info->generation;
60                 init_waitqueue_head(&cur_trans->writer_wait);
61                 init_waitqueue_head(&cur_trans->commit_wait);
62                 cur_trans->in_commit = 0;
63                 cur_trans->use_count = 1;
64                 cur_trans->commit_done = 0;
65                 cur_trans->start_time = get_seconds();
66                 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
67                 init_bit_radix(&cur_trans->dirty_pages);
68         }
69         cur_trans->num_writers++;
70         return 0;
71 }
72
73 struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
74                                                    int num_blocks)
75 {
76         struct btrfs_trans_handle *h =
77                 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
78         int ret;
79         u64 running_trans_id;
80
81         mutex_lock(&root->fs_info->trans_mutex);
82         ret = join_transaction(root);
83         BUG_ON(ret);
84         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,
89                                    (unsigned long)root->root_key.objectid,
90                                    BTRFS_ROOT_TRANS_TAG);
91                 root->commit_root = root->node;
92                 get_bh(root->node);
93         }
94         root->last_trans = running_trans_id;
95         h->transid = running_trans_id;
96         h->transaction = root->fs_info->running_transaction;
97         h->blocks_reserved = num_blocks;
98         h->blocks_used = 0;
99         h->block_group = NULL;
100         root->fs_info->running_transaction->use_count++;
101         mutex_unlock(&root->fs_info->trans_mutex);
102         return h;
103 }
104
105 int btrfs_end_transaction(struct btrfs_trans_handle *trans,
106                           struct btrfs_root *root)
107 {
108         struct btrfs_transaction *cur_trans;
109
110         mutex_lock(&root->fs_info->trans_mutex);
111         cur_trans = root->fs_info->running_transaction;
112         WARN_ON(cur_trans->num_writers < 1);
113         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);
118         memset(trans, 0, sizeof(*trans));
119         kmem_cache_free(btrfs_trans_handle_cachep, trans);
120         return 0;
121 }
122
123
124 int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
125                                      struct btrfs_root *root)
126 {
127         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) {
141                 ret = find_first_radix_bit(dirty_pages, gang,
142                                            0, ARRAY_SIZE(gang));
143                 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;
162 }
163
164 int 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;
172
173         btrfs_write_dirty_block_groups(trans, extent_root);
174         while(1) {
175                 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
176                 if (old_extent_block == bh_blocknr(extent_root->node))
177                         break;
178                 btrfs_set_root_blocknr(&extent_root->root_item,
179                                        bh_blocknr(extent_root->node));
180                 ret = btrfs_update_root(trans, tree_root,
181                                         &extent_root->root_key,
182                                         &extent_root->root_item);
183                 BUG_ON(ret);
184                 btrfs_write_dirty_block_groups(trans, extent_root);
185         }
186         return 0;
187 }
188
189 static int wait_for_commit(struct btrfs_root *root,
190                            struct btrfs_transaction *commit)
191 {
192         DEFINE_WAIT(wait);
193         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
206 struct 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
213 static int add_dirty_roots(struct btrfs_trans_handle *trans,
214                            struct radix_tree_root *radix,
215                            struct list_head *list)
216 {
217         struct dirty_root *dirty;
218         struct btrfs_root *gang[8];
219         struct btrfs_root *root;
220         int i;
221         int ret;
222         int err;
223         while(1) {
224                 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
225                                                  ARRAY_SIZE(gang),
226                                                  BTRFS_ROOT_TRANS_TAG);
227                 if (ret == 0)
228                         break;
229                 for (i = 0; i < ret; i++) {
230                         root = gang[i];
231                         radix_tree_tag_clear(radix,
232                                      (unsigned long)root->root_key.objectid,
233                                      BTRFS_ROOT_TRANS_TAG);
234                         if (root->commit_root == root->node) {
235                                 WARN_ON(bh_blocknr(root->node) !=
236                                         btrfs_root_blocknr(&root->root_item));
237                                 brelse(root->commit_root);
238                                 root->commit_root = NULL;
239                                 continue;
240                         }
241                         dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
242                         BUG_ON(!dirty);
243                         memcpy(&dirty->snap_key, &root->root_key,
244                                sizeof(root->root_key));
245                         dirty->commit_root = root->commit_root;
246                         root->commit_root = NULL;
247                         dirty->root = root;
248                         root->root_key.offset = root->fs_info->generation;
249                         btrfs_set_root_blocknr(&root->root_item,
250                                                bh_blocknr(root->node));
251                         err = btrfs_insert_root(trans, root->fs_info->tree_root,
252                                                 &root->root_key,
253                                                 &root->root_item);
254                         BUG_ON(err);
255                         list_add(&dirty->list, list);
256                 }
257         }
258         return 0;
259 }
260
261 static int drop_dirty_roots(struct btrfs_root *tree_root,
262                             struct list_head *list)
263 {
264         struct dirty_root *dirty;
265         struct btrfs_trans_handle *trans;
266         int ret;
267         while(!list_empty(list)) {
268                 mutex_lock(&tree_root->fs_info->fs_mutex);
269                 dirty = list_entry(list->next, struct dirty_root, list);
270                 list_del_init(&dirty->list);
271                 trans = btrfs_start_transaction(tree_root, 1);
272                 ret = btrfs_drop_snapshot(trans, dirty->root,
273                                           dirty->commit_root);
274                 BUG_ON(ret);
275
276                 ret = btrfs_del_root(trans, tree_root, &dirty->snap_key);
277                 BUG_ON(ret);
278                 ret = btrfs_end_transaction(trans, tree_root);
279                 BUG_ON(ret);
280                 kfree(dirty);
281                 mutex_unlock(&tree_root->fs_info->fs_mutex);
282                 btrfs_btree_balance_dirty(tree_root);
283         }
284         return 0;
285 }
286
287 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
288                              struct btrfs_root *root)
289 {
290         int ret = 0;
291         struct btrfs_transaction *cur_trans;
292         struct btrfs_transaction *prev_trans = NULL;
293         struct list_head dirty_fs_roots;
294         DEFINE_WAIT(wait);
295
296         INIT_LIST_HEAD(&dirty_fs_roots);
297
298         mutex_lock(&root->fs_info->trans_mutex);
299         if (trans->transaction->in_commit) {
300                 cur_trans = trans->transaction;
301                 trans->transaction->use_count++;
302                 btrfs_end_transaction(trans, root);
303                 ret = wait_for_commit(root, cur_trans);
304                 BUG_ON(ret);
305                 put_transaction(cur_trans);
306                 mutex_unlock(&root->fs_info->trans_mutex);
307                 return 0;
308         }
309         cur_trans = trans->transaction;
310         trans->transaction->in_commit = 1;
311         while (trans->transaction->num_writers > 1) {
312                 WARN_ON(cur_trans != trans->transaction);
313                 prepare_to_wait(&trans->transaction->writer_wait, &wait,
314                                 TASK_UNINTERRUPTIBLE);
315                 if (trans->transaction->num_writers <= 1)
316                         break;
317                 mutex_unlock(&root->fs_info->trans_mutex);
318                 schedule();
319                 mutex_lock(&root->fs_info->trans_mutex);
320                 finish_wait(&trans->transaction->writer_wait, &wait);
321         }
322         finish_wait(&trans->transaction->writer_wait, &wait);
323         WARN_ON(cur_trans != trans->transaction);
324         add_dirty_roots(trans, &root->fs_info->fs_roots_radix, &dirty_fs_roots);
325         ret = btrfs_commit_tree_roots(trans, root);
326         BUG_ON(ret);
327         cur_trans = root->fs_info->running_transaction;
328         root->fs_info->running_transaction = NULL;
329         if (cur_trans->list.prev != &root->fs_info->trans_list) {
330                 prev_trans = list_entry(cur_trans->list.prev,
331                                         struct btrfs_transaction, list);
332                 if (prev_trans->commit_done)
333                         prev_trans = NULL;
334                 else
335                         prev_trans->use_count++;
336         }
337         mutex_unlock(&root->fs_info->trans_mutex);
338         mutex_unlock(&root->fs_info->fs_mutex);
339         ret = btrfs_write_and_wait_transaction(trans, root);
340         if (prev_trans) {
341                 mutex_lock(&root->fs_info->trans_mutex);
342                 wait_for_commit(root, prev_trans);
343                 put_transaction(prev_trans);
344                 mutex_unlock(&root->fs_info->trans_mutex);
345         }
346         btrfs_set_super_generation(root->fs_info->disk_super,
347                                    cur_trans->transid);
348         BUG_ON(ret);
349         write_ctree_super(trans, root);
350
351         mutex_lock(&root->fs_info->fs_mutex);
352         btrfs_finish_extent_commit(trans, root);
353         mutex_lock(&root->fs_info->trans_mutex);
354         cur_trans->commit_done = 1;
355         wake_up(&cur_trans->commit_wait);
356         put_transaction(cur_trans);
357         put_transaction(cur_trans);
358         if (root->fs_info->closing)
359                 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
360         else
361                 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
362         mutex_unlock(&root->fs_info->trans_mutex);
363         kmem_cache_free(btrfs_trans_handle_cachep, trans);
364
365         if (root->fs_info->closing) {
366                 mutex_unlock(&root->fs_info->fs_mutex);
367                 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
368                 mutex_lock(&root->fs_info->fs_mutex);
369         }
370         return ret;
371 }
372
373 void btrfs_transaction_cleaner(struct work_struct *work)
374 {
375         struct btrfs_fs_info *fs_info = container_of(work,
376                                                      struct btrfs_fs_info,
377                                                      trans_work.work);
378
379         struct btrfs_root *root = fs_info->tree_root;
380         struct btrfs_transaction *cur;
381         struct btrfs_trans_handle *trans;
382         struct list_head dirty_roots;
383         unsigned long now;
384         unsigned long delay = HZ * 30;
385         int ret;
386
387         INIT_LIST_HEAD(&dirty_roots);
388         mutex_lock(&root->fs_info->fs_mutex);
389         mutex_lock(&root->fs_info->trans_mutex);
390         cur = root->fs_info->running_transaction;
391         if (!cur) {
392                 mutex_unlock(&root->fs_info->trans_mutex);
393                 goto out;
394         }
395         now = get_seconds();
396         if (now < cur->start_time || now - cur->start_time < 30) {
397                 mutex_unlock(&root->fs_info->trans_mutex);
398                 delay = HZ * 5;
399                 goto out;
400         }
401         mutex_unlock(&root->fs_info->trans_mutex);
402         trans = btrfs_start_transaction(root, 1);
403         ret = btrfs_commit_transaction(trans, root);
404 out:
405         mutex_unlock(&root->fs_info->fs_mutex);
406
407         mutex_lock(&root->fs_info->trans_mutex);
408         list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
409         mutex_unlock(&root->fs_info->trans_mutex);
410
411         if (!list_empty(&dirty_roots)) {
412                 drop_dirty_roots(root, &dirty_roots);
413         }
414         btrfs_transaction_queue_work(root, delay);
415 }
416
417 void btrfs_transaction_queue_work(struct btrfs_root *root, int delay)
418 {
419         queue_delayed_work(trans_wq, &root->fs_info->trans_work, delay);
420 }
421
422 void btrfs_transaction_flush_work(struct btrfs_root *root)
423 {
424         cancel_rearming_delayed_workqueue(trans_wq, &root->fs_info->trans_work);
425         flush_workqueue(trans_wq);
426 }
427
428 void __init btrfs_init_transaction_sys(void)
429 {
430         trans_wq = create_workqueue("btrfs");
431 }
432
433 void __exit btrfs_exit_transaction_sys(void)
434 {
435         destroy_workqueue(trans_wq);
436 }
437