blob: 2dbf1c1f56ee41b73068c54ee7c345a969b7f38e [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 Masond3c2fdc2007-09-17 10:58:06 -040021#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040022#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050023#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040024#include "ctree.h"
25#include "disk-io.h"
26#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040027#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040028#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040029
Chris Mason0f7d52f2007-04-09 10:42:37 -040030#define BTRFS_ROOT_TRANS_TAG 0
31
Chris Mason80b67942008-02-01 16:35:04 -050032static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040033{
Chris Mason2c90e5d2007-04-02 10:50:19 -040034 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040035 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040036 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040037 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 memset(transaction, 0, sizeof(*transaction));
39 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040040 }
Chris Mason79154b12007-03-22 15:59:16 -040041}
42
Chris Masond352ac62008-09-29 15:18:18 -040043/*
44 * either allocate a new transaction or hop into the existing one
45 */
Chris Mason80b67942008-02-01 16:35:04 -050046static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040047{
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 Mason79154b12007-03-22 15:59:16 -040053 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040054 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040055 cur_trans->num_writers = 1;
56 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040057 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040058 init_waitqueue_head(&cur_trans->writer_wait);
59 init_waitqueue_head(&cur_trans->commit_wait);
60 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040061 cur_trans->blocked = 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 Mason56bec292009-03-13 10:10:06 -040065
66 cur_trans->delayed_refs.root.rb_node = NULL;
67 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040068 cur_trans->delayed_refs.num_heads_ready = 0;
69 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040070 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040071 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040072 spin_lock_init(&cur_trans->delayed_refs.lock);
73
Chris Mason3063d292008-01-08 15:46:30 -050074 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040075 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050076 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040077 root->fs_info->btree_inode->i_mapping,
78 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040079 spin_lock(&root->fs_info->new_trans_lock);
80 root->fs_info->running_transaction = cur_trans;
81 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040082 } else {
83 cur_trans->num_writers++;
84 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040085 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040086
Chris Mason79154b12007-03-22 15:59:16 -040087 return 0;
88}
89
Chris Masond352ac62008-09-29 15:18:18 -040090/*
Chris Masond3977122009-01-05 21:25:51 -050091 * this does all the record keeping required to make sure that a reference
92 * counted root is properly recorded in a given transaction. This is required
93 * to make sure the old root from before we joined the transaction is deleted
94 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -040095 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040096static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
97 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -040098{
Yan Zheng5d4f98a2009-06-10 10:45:14 -040099 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400100 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400101 WARN_ON(root->root_item.refs == 0);
102 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400103
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400104 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
105 (unsigned long)root->root_key.objectid,
106 BTRFS_ROOT_TRANS_TAG);
107 root->last_trans = trans->transid;
108 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400109 }
110 return 0;
111}
112
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400113int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
114 struct btrfs_root *root)
115{
116 if (!root->ref_cows)
117 return 0;
118
119 mutex_lock(&root->fs_info->trans_mutex);
120 if (root->last_trans == trans->transid) {
121 mutex_unlock(&root->fs_info->trans_mutex);
122 return 0;
123 }
124
125 record_root_in_trans(trans, root);
126 mutex_unlock(&root->fs_info->trans_mutex);
127 return 0;
128}
129
Chris Masond352ac62008-09-29 15:18:18 -0400130/* wait for commit against the current transaction to become unblocked
131 * when this is done, it is safe to start a new transaction, but the current
132 * transaction might not be fully on disk.
133 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400134static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400135{
Chris Masonf9295742008-07-17 12:54:14 -0400136 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400137
Chris Masonf9295742008-07-17 12:54:14 -0400138 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400139 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400140 DEFINE_WAIT(wait);
141 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500142 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400143 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
144 TASK_UNINTERRUPTIBLE);
145 if (cur_trans->blocked) {
146 mutex_unlock(&root->fs_info->trans_mutex);
147 schedule();
148 mutex_lock(&root->fs_info->trans_mutex);
149 finish_wait(&root->fs_info->transaction_wait,
150 &wait);
151 } else {
152 finish_wait(&root->fs_info->transaction_wait,
153 &wait);
154 break;
155 }
156 }
157 put_transaction(cur_trans);
158 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400159}
160
Chris Masone02119d2008-09-05 16:13:11 -0400161static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Sage Weil9ca9ee02008-08-04 10:41:27 -0400162 int num_blocks, int wait)
Chris Mason37d1aee2008-07-31 10:48:37 -0400163{
164 struct btrfs_trans_handle *h =
165 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
166 int ret;
167
168 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400169 if (!root->fs_info->log_root_recovering &&
170 ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
Chris Mason37d1aee2008-07-31 10:48:37 -0400171 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400172 ret = join_transaction(root);
173 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400174
Chris Mason6702ed42007-08-07 16:15:09 -0400175 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400176 h->transaction = root->fs_info->running_transaction;
177 h->blocks_reserved = num_blocks;
178 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500179 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400180 h->alloc_exclude_nr = 0;
181 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400182 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400183
Chris Mason79154b12007-03-22 15:59:16 -0400184 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400185 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400186 mutex_unlock(&root->fs_info->trans_mutex);
187 return h;
188}
189
Chris Masonf9295742008-07-17 12:54:14 -0400190struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
191 int num_blocks)
192{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400193 return start_transaction(root, num_blocks, 1);
Chris Masonf9295742008-07-17 12:54:14 -0400194}
195struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
196 int num_blocks)
197{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400198 return start_transaction(root, num_blocks, 0);
Chris Masonf9295742008-07-17 12:54:14 -0400199}
200
Sage Weil9ca9ee02008-08-04 10:41:27 -0400201struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
202 int num_blocks)
203{
204 return start_transaction(r, num_blocks, 2);
205}
206
Chris Masond352ac62008-09-29 15:18:18 -0400207/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400208static noinline int wait_for_commit(struct btrfs_root *root,
209 struct btrfs_transaction *commit)
210{
211 DEFINE_WAIT(wait);
212 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500213 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400214 prepare_to_wait(&commit->commit_wait, &wait,
215 TASK_UNINTERRUPTIBLE);
216 if (commit->commit_done)
217 break;
218 mutex_unlock(&root->fs_info->trans_mutex);
219 schedule();
220 mutex_lock(&root->fs_info->trans_mutex);
221 }
222 mutex_unlock(&root->fs_info->trans_mutex);
223 finish_wait(&commit->commit_wait, &wait);
224 return 0;
225}
226
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400227#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400228/*
Chris Masond3977122009-01-05 21:25:51 -0500229 * rate limit against the drop_snapshot code. This helps to slow down new
230 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400231 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400232static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400233{
234 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400235 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400236
Chris Mason2dd3e672008-08-04 08:20:15 -0400237harder:
Chris Masonab78c842008-07-29 16:15:18 -0400238 if (atomic_read(&info->throttles)) {
239 DEFINE_WAIT(wait);
240 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400241 thr = atomic_read(&info->throttle_gen);
242
243 do {
244 prepare_to_wait(&info->transaction_throttle,
245 &wait, TASK_UNINTERRUPTIBLE);
246 if (!atomic_read(&info->throttles)) {
247 finish_wait(&info->transaction_throttle, &wait);
248 break;
249 }
250 schedule();
251 finish_wait(&info->transaction_throttle, &wait);
252 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400253 harder_count++;
254
255 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
256 harder_count < 2)
257 goto harder;
258
259 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
260 harder_count < 10)
261 goto harder;
262
263 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
264 harder_count < 20)
265 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400266 }
267}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400268#endif
Chris Masonab78c842008-07-29 16:15:18 -0400269
Chris Mason37d1aee2008-07-31 10:48:37 -0400270void btrfs_throttle(struct btrfs_root *root)
271{
272 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400273 if (!root->fs_info->open_ioctl_trans)
274 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400275 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400276}
277
Chris Mason89ce8a62008-06-25 16:01:31 -0400278static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
279 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400280{
281 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400282 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400283 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400284
Chris Masonc3e69d52009-03-13 10:17:05 -0400285 while (count < 4) {
286 unsigned long cur = trans->delayed_ref_updates;
287 trans->delayed_ref_updates = 0;
288 if (cur &&
289 trans->transaction->delayed_refs.num_heads_ready > 64) {
290 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400291
292 /*
293 * do a full flush if the transaction is trying
294 * to close
295 */
296 if (trans->transaction->delayed_refs.flushing)
297 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400298 btrfs_run_delayed_refs(trans, root, cur);
299 } else {
300 break;
301 }
302 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400303 }
304
Chris Masonab78c842008-07-29 16:15:18 -0400305 mutex_lock(&info->trans_mutex);
306 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400307 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400308 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400309 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400310
Chris Mason79154b12007-03-22 15:59:16 -0400311 if (waitqueue_active(&cur_trans->writer_wait))
312 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400313 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400314 mutex_unlock(&info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400315 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400316 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400317
Chris Mason79154b12007-03-22 15:59:16 -0400318 return 0;
319}
320
Chris Mason89ce8a62008-06-25 16:01:31 -0400321int btrfs_end_transaction(struct btrfs_trans_handle *trans,
322 struct btrfs_root *root)
323{
324 return __btrfs_end_transaction(trans, root, 0);
325}
326
327int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
328 struct btrfs_root *root)
329{
330 return __btrfs_end_transaction(trans, root, 1);
331}
332
Chris Masond352ac62008-09-29 15:18:18 -0400333/*
334 * when btree blocks are allocated, they have some corresponding bits set for
335 * them in one of two extent_io trees. This is used to make sure all of
336 * those extents are on disk for transaction or log commit
337 */
Chris Masond0c803c2008-09-11 16:17:57 -0400338int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
339 struct extent_io_tree *dirty_pages)
Chris Mason79154b12007-03-22 15:59:16 -0400340{
Chris Mason7c4452b2007-04-28 09:29:35 -0400341 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400342 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400343 int werr = 0;
344 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400345 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400346 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400347 u64 end;
348 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400349
Chris Masond3977122009-01-05 21:25:51 -0500350 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400351 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Chris Mason5f39d392007-10-15 16:14:19 -0400352 EXTENT_DIRTY);
353 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400354 break;
Chris Masond3977122009-01-05 21:25:51 -0500355 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400356 cond_resched();
357
Chris Mason5f39d392007-10-15 16:14:19 -0400358 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400359 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400360 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400361 if (!page)
362 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400363
364 btree_lock_page_hook(page);
365 if (!page->mapping) {
366 unlock_page(page);
367 page_cache_release(page);
368 continue;
369 }
370
Chris Mason6702ed42007-08-07 16:15:09 -0400371 if (PageWriteback(page)) {
372 if (PageDirty(page))
373 wait_on_page_writeback(page);
374 else {
375 unlock_page(page);
376 page_cache_release(page);
377 continue;
378 }
379 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400380 err = write_one_page(page, 0);
381 if (err)
382 werr = err;
383 page_cache_release(page);
384 }
385 }
Chris Masond3977122009-01-05 21:25:51 -0500386 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400387 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
388 EXTENT_DIRTY);
389 if (ret)
390 break;
391
392 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500393 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400394 index = start >> PAGE_CACHE_SHIFT;
395 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
396 page = find_get_page(btree_inode->i_mapping, index);
397 if (!page)
398 continue;
399 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400400 btree_lock_page_hook(page);
401 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400402 err = write_one_page(page, 0);
403 if (err)
404 werr = err;
405 }
Chris Mason105d9312008-11-18 12:13:12 -0500406 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400407 page_cache_release(page);
408 cond_resched();
409 }
410 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400411 if (err)
412 werr = err;
413 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400414}
415
Chris Masond0c803c2008-09-11 16:17:57 -0400416int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
417 struct btrfs_root *root)
418{
419 if (!trans || !trans->transaction) {
420 struct inode *btree_inode;
421 btree_inode = root->fs_info->btree_inode;
422 return filemap_write_and_wait(btree_inode->i_mapping);
423 }
424 return btrfs_write_and_wait_marked_extents(root,
425 &trans->transaction->dirty_pages);
426}
427
Chris Masond352ac62008-09-29 15:18:18 -0400428/*
429 * this is used to update the root pointer in the tree of tree roots.
430 *
431 * But, in the case of the extent allocation tree, updating the root
432 * pointer may allocate blocks which may change the root of the extent
433 * allocation tree.
434 *
435 * So, this loops and repeats and makes sure the cowonly root didn't
436 * change while the root pointer was being updated in the metadata.
437 */
Chris Mason0b86a832008-03-24 15:01:56 -0400438static int update_cowonly_root(struct btrfs_trans_handle *trans,
439 struct btrfs_root *root)
440{
441 int ret;
442 u64 old_root_bytenr;
443 struct btrfs_root *tree_root = root->fs_info->tree_root;
444
445 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400446
447 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
448 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400449
Chris Masond3977122009-01-05 21:25:51 -0500450 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400451 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
452 if (old_root_bytenr == root->node->start)
453 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400454
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400455 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400456 ret = btrfs_update_root(trans, tree_root,
457 &root->root_key,
458 &root->root_item);
459 BUG_ON(ret);
460 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400461
462 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
463 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400464 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400465 free_extent_buffer(root->commit_root);
466 root->commit_root = btrfs_root_node(root);
Chris Mason0b86a832008-03-24 15:01:56 -0400467 return 0;
468}
469
Chris Masond352ac62008-09-29 15:18:18 -0400470/*
471 * update all the cowonly tree roots on disk
472 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400473static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
474 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400475{
Chris Mason79154b12007-03-22 15:59:16 -0400476 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400477 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400478 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400479 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400480
Chris Mason56bec292009-03-13 10:10:06 -0400481 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
482 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400483
Yan Zheng84234f32008-10-29 14:49:05 -0400484 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400485 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400486 btrfs_tree_unlock(eb);
487 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400488
Chris Mason56bec292009-03-13 10:10:06 -0400489 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
490 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400491
Chris Masond3977122009-01-05 21:25:51 -0500492 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400493 next = fs_info->dirty_cowonly_roots.next;
494 list_del_init(next);
495 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400496
Chris Mason0b86a832008-03-24 15:01:56 -0400497 update_cowonly_root(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400498
499 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
500 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400501 }
502 return 0;
503}
504
Chris Masond352ac62008-09-29 15:18:18 -0400505/*
506 * dead roots are old snapshots that need to be deleted. This allocates
507 * a dirty root struct and adds it into the list of dead roots that need to
508 * be deleted
509 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400510int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400511{
Yan Zhengb48652c2008-08-04 23:23:47 -0400512 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400513 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400514 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400515 return 0;
516}
517
Chris Masond352ac62008-09-29 15:18:18 -0400518/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400519 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400520 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400521static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
522 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400523{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400524 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400525 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400526 int i;
527 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400528 int err = 0;
529
Chris Masond3977122009-01-05 21:25:51 -0500530 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400531 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
532 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400533 ARRAY_SIZE(gang),
534 BTRFS_ROOT_TRANS_TAG);
535 if (ret == 0)
536 break;
537 for (i = 0; i < ret; i++) {
538 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400539 radix_tree_tag_clear(&fs_info->fs_roots_radix,
540 (unsigned long)root->root_key.objectid,
541 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400542
Chris Masone02119d2008-09-05 16:13:11 -0400543 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400544 btrfs_update_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400545
Yan Zheng978d9102009-06-15 20:01:02 -0400546 if (root->commit_root != root->node) {
547 free_extent_buffer(root->commit_root);
548 root->commit_root = btrfs_root_node(root);
549 btrfs_set_root_node(&root->root_item,
550 root->node);
551 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400552
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400553 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400554 &root->root_key,
555 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400556 if (err)
557 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400558 }
559 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400560 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400561}
562
Chris Masond352ac62008-09-29 15:18:18 -0400563/*
564 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
565 * otherwise every leaf in the btree is read and defragged.
566 */
Chris Masone9d0b132007-08-10 14:06:19 -0400567int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
568{
569 struct btrfs_fs_info *info = root->fs_info;
570 int ret;
571 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400572 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400573
Chris Masona2135012008-06-25 16:01:30 -0400574 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400575 if (root->defrag_running)
576 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400577 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400578 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400579 root->defrag_running = 1;
580 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400581 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400582 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400583 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400584 cond_resched();
585
Chris Masone9d0b132007-08-10 14:06:19 -0400586 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400587 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400588 break;
589 }
590 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400591 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400592 btrfs_end_transaction(trans, root);
593 return 0;
594}
595
Yan Zheng2c47e6052009-06-27 21:07:35 -0400596#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400597/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400598 * when dropping snapshots, we generate a ton of delayed refs, and it makes
599 * sense not to join the transaction while it is trying to flush the current
600 * queue of delayed refs out.
601 *
602 * This is used by the drop snapshot code only
603 */
604static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
605{
606 DEFINE_WAIT(wait);
607
608 mutex_lock(&info->trans_mutex);
609 while (info->running_transaction &&
610 info->running_transaction->delayed_refs.flushing) {
611 prepare_to_wait(&info->transaction_wait, &wait,
612 TASK_UNINTERRUPTIBLE);
613 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400614
Chris Masonb7ec40d2009-03-12 20:12:45 -0400615 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400616
Chris Masonb7ec40d2009-03-12 20:12:45 -0400617 mutex_lock(&info->trans_mutex);
618 finish_wait(&info->transaction_wait, &wait);
619 }
620 mutex_unlock(&info->trans_mutex);
621 return 0;
622}
623
624/*
Chris Masond352ac62008-09-29 15:18:18 -0400625 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
626 * all of them
627 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400628int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400629{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400630 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400631 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400632 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400633 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400634
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400635 while (1) {
636 /*
637 * we don't want to jump in and create a bunch of
638 * delayed refs if the transaction is starting to close
639 */
640 wait_transaction_pre_flush(tree_root->fs_info);
641 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400642
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400643 /*
644 * we've joined a transaction, make sure it isn't
645 * closing right now
646 */
647 if (trans->transaction->delayed_refs.flushing) {
648 btrfs_end_transaction(trans, tree_root);
649 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400650 }
Chris Masona2135012008-06-25 16:01:30 -0400651
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400652 ret = btrfs_drop_snapshot(trans, root);
653 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400654 break;
Chris Masona2135012008-06-25 16:01:30 -0400655
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400656 ret = btrfs_update_root(trans, tree_root,
657 &root->root_key,
658 &root->root_item);
659 if (ret)
660 break;
Yanbcc63ab2008-07-30 16:29:20 -0400661
Chris Masond3c2fdc2007-09-17 10:58:06 -0400662 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400663 ret = btrfs_end_transaction(trans, tree_root);
664 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400665
Chris Masond3c2fdc2007-09-17 10:58:06 -0400666 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc11902007-10-15 16:18:14 -0400667 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400668 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400669 BUG_ON(ret);
670
671 ret = btrfs_del_root(trans, tree_root, &root->root_key);
672 BUG_ON(ret);
673
674 nr = trans->blocks_used;
675 ret = btrfs_end_transaction(trans, tree_root);
676 BUG_ON(ret);
677
678 free_extent_buffer(root->node);
679 free_extent_buffer(root->commit_root);
680 kfree(root);
681
682 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400683 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400684}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400685#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400686
Chris Masond352ac62008-09-29 15:18:18 -0400687/*
688 * new snapshots need to be created at a very specific time in the
689 * transaction commit. This does the actual creation
690 */
Chris Mason80b67942008-02-01 16:35:04 -0500691static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500692 struct btrfs_fs_info *fs_info,
693 struct btrfs_pending_snapshot *pending)
694{
695 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500696 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500697 struct btrfs_root *tree_root = fs_info->tree_root;
698 struct btrfs_root *root = pending->root;
699 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400700 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500701 int ret;
702 u64 objectid;
703
Chris Mason80b67942008-02-01 16:35:04 -0500704 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
705 if (!new_root_item) {
706 ret = -ENOMEM;
707 goto fail;
708 }
Chris Mason3063d292008-01-08 15:46:30 -0500709 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
710 if (ret)
711 goto fail;
712
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400713 record_root_in_trans(trans, root);
Yan Zheng80ff3852008-10-30 14:20:02 -0400714 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500715 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500716
717 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400718 key.offset = 0;
Chris Mason3063d292008-01-08 15:46:30 -0500719 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
720
Chris Mason925baed2008-06-25 16:01:30 -0400721 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400722 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500724
Chris Mason925baed2008-06-25 16:01:30 -0400725 btrfs_copy_root(trans, root, old, &tmp, objectid);
726 btrfs_tree_unlock(old);
727 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500728
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400729 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500730 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500731 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400732 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500733 free_extent_buffer(tmp);
734 if (ret)
735 goto fail;
736
Chris Mason3de45862008-11-17 21:02:50 -0500737 key.offset = (u64)-1;
738 memcpy(&pending->root_key, &key, sizeof(key));
739fail:
740 kfree(new_root_item);
741 return ret;
742}
743
744static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
745 struct btrfs_pending_snapshot *pending)
746{
747 int ret;
748 int namelen;
749 u64 index = 0;
750 struct btrfs_trans_handle *trans;
751 struct inode *parent_inode;
752 struct inode *inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500753 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500754
Chris Mason3394e162008-11-17 20:42:26 -0500755 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500756 parent_root = BTRFS_I(parent_inode)->root;
Yan Zheng180591b2009-01-06 09:58:06 -0500757 trans = btrfs_join_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500758
Chris Mason3063d292008-01-08 15:46:30 -0500759 /*
760 * insert the directory item
761 */
Sven Wegener3b963622008-06-09 21:57:42 -0400762 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500763 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500764 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500765 pending->name, namelen,
766 parent_inode->i_ino,
767 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500768
769 if (ret)
770 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500771
Yan Zheng52c26172009-01-05 15:43:43 -0500772 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
773 ret = btrfs_update_inode(trans, parent_root, parent_inode);
774 BUG_ON(ret);
775
Chris Mason0660b5a2008-11-17 20:37:39 -0500776 /* add the backref first */
777 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
778 pending->root_key.objectid,
779 BTRFS_ROOT_BACKREF_KEY,
780 parent_root->root_key.objectid,
781 parent_inode->i_ino, index, pending->name,
782 namelen);
783
784 BUG_ON(ret);
785
786 /* now add the forward ref */
787 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
788 parent_root->root_key.objectid,
789 BTRFS_ROOT_REF_KEY,
790 pending->root_key.objectid,
791 parent_inode->i_ino, index, pending->name,
792 namelen);
793
Chris Mason3de45862008-11-17 21:02:50 -0500794 inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
795 d_instantiate(pending->dentry, inode);
Chris Mason3063d292008-01-08 15:46:30 -0500796fail:
Chris Mason3de45862008-11-17 21:02:50 -0500797 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500798 return ret;
799}
800
Chris Masond352ac62008-09-29 15:18:18 -0400801/*
802 * create all the snapshots we've scheduled for creation
803 */
Chris Mason80b67942008-02-01 16:35:04 -0500804static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
805 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500806{
807 struct btrfs_pending_snapshot *pending;
808 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500809 int ret;
810
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500811 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500812 ret = create_pending_snapshot(trans, fs_info, pending);
813 BUG_ON(ret);
814 }
815 return 0;
816}
817
818static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
819 struct btrfs_fs_info *fs_info)
820{
821 struct btrfs_pending_snapshot *pending;
822 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500823 int ret;
824
Chris Masond3977122009-01-05 21:25:51 -0500825 while (!list_empty(head)) {
Chris Mason3063d292008-01-08 15:46:30 -0500826 pending = list_entry(head->next,
827 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500828 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500829 BUG_ON(ret);
830 list_del(&pending->list);
831 kfree(pending->name);
832 kfree(pending);
833 }
Chris Masondc17ff82008-01-08 15:46:30 -0500834 return 0;
835}
836
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400837static void update_super_roots(struct btrfs_root *root)
838{
839 struct btrfs_root_item *root_item;
840 struct btrfs_super_block *super;
841
842 super = &root->fs_info->super_copy;
843
844 root_item = &root->fs_info->chunk_root->root_item;
845 super->chunk_root = root_item->bytenr;
846 super->chunk_root_generation = root_item->generation;
847 super->chunk_root_level = root_item->level;
848
849 root_item = &root->fs_info->tree_root->root_item;
850 super->root = root_item->bytenr;
851 super->generation = root_item->generation;
852 super->root_level = root_item->level;
853}
854
Chris Mason79154b12007-03-22 15:59:16 -0400855int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
856 struct btrfs_root *root)
857{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400858 unsigned long joined = 0;
859 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400860 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400861 struct btrfs_transaction *prev_trans = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500862 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400863 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400864 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400865 int should_grow = 0;
866 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400867 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400868
Chris Mason5a3f23d2009-03-31 13:27:11 -0400869 btrfs_run_ordered_operations(root, 0);
870
Chris Mason56bec292009-03-13 10:10:06 -0400871 /* make a pass through all the delayed refs we have so far
872 * any runnings procs may add more while we are here
873 */
874 ret = btrfs_run_delayed_refs(trans, root, 0);
875 BUG_ON(ret);
876
Chris Masonb7ec40d2009-03-12 20:12:45 -0400877 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400878 /*
879 * set the flushing flag so procs in this transaction have to
880 * start sending their work down.
881 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400882 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400883
Chris Masonc3e69d52009-03-13 10:17:05 -0400884 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400885 BUG_ON(ret);
886
Chris Mason79154b12007-03-22 15:59:16 -0400887 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400888 if (cur_trans->in_commit) {
889 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400890 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400891 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400892
Chris Mason79154b12007-03-22 15:59:16 -0400893 ret = wait_for_commit(root, cur_trans);
894 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400895
896 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400897 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400898 mutex_unlock(&root->fs_info->trans_mutex);
899
Chris Mason79154b12007-03-22 15:59:16 -0400900 return 0;
901 }
Chris Mason4313b392008-01-03 09:08:48 -0500902
903 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
904 if (!pinned_copy)
905 return -ENOMEM;
906
Chris Masond1310b22008-01-24 16:13:08 -0500907 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500908 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
909
Chris Mason2c90e5d2007-04-02 10:50:19 -0400910 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400911 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400912 if (cur_trans->list.prev != &root->fs_info->trans_list) {
913 prev_trans = list_entry(cur_trans->list.prev,
914 struct btrfs_transaction, list);
915 if (!prev_trans->commit_done) {
916 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400917 mutex_unlock(&root->fs_info->trans_mutex);
918
919 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400920
Chris Masonccd467d2007-06-28 15:57:36 -0400921 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400922 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400923 }
924 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400925
Chris Mason89573b92009-03-12 20:12:45 -0400926 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
927 should_grow = 1;
928
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400929 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400930 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400931 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400932 if (!list_empty(&trans->transaction->pending_snapshots))
933 snap_pending = 1;
934
Chris Mason2c90e5d2007-04-02 10:50:19 -0400935 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400936 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400937 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400938
939 if (cur_trans->num_writers > 1)
940 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400941 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400942 timeout = 1;
943
Chris Mason79154b12007-03-22 15:59:16 -0400944 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400945
Sage Weildccae992009-04-02 16:59:01 -0400946 if (flush_on_commit || snap_pending) {
947 if (flush_on_commit)
948 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400949 ret = btrfs_wait_ordered_extents(root, 1);
950 BUG_ON(ret);
951 }
952
Chris Mason5a3f23d2009-03-31 13:27:11 -0400953 /*
954 * rename don't use btrfs_join_transaction, so, once we
955 * set the transaction to blocked above, we aren't going
956 * to get any new ordered operations. We can safely run
957 * it here and no for sure that nothing new will be added
958 * to the list
959 */
960 btrfs_run_ordered_operations(root, 1);
961
Chris Mason89573b92009-03-12 20:12:45 -0400962 smp_mb();
963 if (cur_trans->num_writers > 1 || should_grow)
964 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400965
Chris Mason79154b12007-03-22 15:59:16 -0400966 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400967 finish_wait(&cur_trans->writer_wait, &wait);
968 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -0400969 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400970
Chris Mason3063d292008-01-08 15:46:30 -0500971 ret = create_pending_snapshots(trans, root->fs_info);
972 BUG_ON(ret);
973
Chris Mason56bec292009-03-13 10:10:06 -0400974 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
975 BUG_ON(ret);
976
Chris Mason2c90e5d2007-04-02 10:50:19 -0400977 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500978
Chris Masone02119d2008-09-05 16:13:11 -0400979 /* btrfs_commit_tree_roots is responsible for getting the
980 * various roots consistent with each other. Every pointer
981 * in the tree of tree roots has to point to the most up to date
982 * root for every subvolume and other tree. So, we have to keep
983 * the tree logging code from jumping in and changing any
984 * of the trees.
985 *
986 * At this point in the commit, there can't be any tree-log
987 * writers, but a little lower down we drop the trans mutex
988 * and let new people in. By holding the tree_log_mutex
989 * from now until after the super is written, we avoid races
990 * with the tree-log code.
991 */
992 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -0400993
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400994 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400995 BUG_ON(ret);
996
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400997 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -0400998 * safe to free the root of tree log roots
999 */
1000 btrfs_free_log_root_tree(trans, root->fs_info);
1001
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001002 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001003 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001004
Chris Mason78fae272007-03-25 11:35:08 -04001005 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001006 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001007 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001008 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001009
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001010 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1011 root->fs_info->tree_root->node);
1012 free_extent_buffer(root->fs_info->tree_root->commit_root);
1013 root->fs_info->tree_root->commit_root =
1014 btrfs_root_node(root->fs_info->tree_root);
1015
1016 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1017 root->fs_info->chunk_root->node);
1018 free_extent_buffer(root->fs_info->chunk_root->commit_root);
1019 root->fs_info->chunk_root->commit_root =
1020 btrfs_root_node(root->fs_info->chunk_root);
1021
1022 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001023
1024 if (!root->fs_info->log_root_recovering) {
1025 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1026 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1027 }
1028
Chris Masona061fc82008-05-07 11:43:44 -04001029 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1030 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001031
Chris Mason4313b392008-01-03 09:08:48 -05001032 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -04001033
Chris Masonf9295742008-07-17 12:54:14 -04001034 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001035
Chris Masonf9295742008-07-17 12:54:14 -04001036 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001037
Chris Mason78fae272007-03-25 11:35:08 -04001038 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001039 ret = btrfs_write_and_wait_transaction(trans, root);
1040 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001041 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001042
Chris Masone02119d2008-09-05 16:13:11 -04001043 /*
1044 * the super is written, we can safely allow the tree-loggers
1045 * to go about their business
1046 */
1047 mutex_unlock(&root->fs_info->tree_log_mutex);
1048
Chris Mason4313b392008-01-03 09:08:48 -05001049 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason4313b392008-01-03 09:08:48 -05001050 kfree(pinned_copy);
1051
Chris Mason3de45862008-11-17 21:02:50 -05001052 /* do the directory inserts of any pending snapshot creations */
1053 finish_pending_snapshots(trans, root->fs_info);
1054
Zheng Yan1a40e232008-09-26 10:09:34 -04001055 mutex_lock(&root->fs_info->trans_mutex);
1056
Chris Mason2c90e5d2007-04-02 10:50:19 -04001057 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001058
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001059 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001060 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001061
Chris Mason79154b12007-03-22 15:59:16 -04001062 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001063 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001064
Chris Mason78fae272007-03-25 11:35:08 -04001065 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001066
Chris Mason2c90e5d2007-04-02 10:50:19 -04001067 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -04001068 return ret;
1069}
1070
Chris Masond352ac62008-09-29 15:18:18 -04001071/*
1072 * interface function to delete all the snapshots we have scheduled for deletion
1073 */
Chris Masone9d0b132007-08-10 14:06:19 -04001074int btrfs_clean_old_snapshots(struct btrfs_root *root)
1075{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001076 LIST_HEAD(list);
1077 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001078
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079 mutex_lock(&fs_info->trans_mutex);
1080 list_splice_init(&fs_info->dead_roots, &list);
1081 mutex_unlock(&fs_info->trans_mutex);
1082
1083 while (!list_empty(&list)) {
1084 root = list_entry(list.next, struct btrfs_root, root_list);
1085 list_del_init(&root->root_list);
Yan Zheng2c47e6052009-06-27 21:07:35 -04001086 btrfs_drop_snapshot(root, 0);
Chris Masone9d0b132007-08-10 14:06:19 -04001087 }
1088 return 0;
1089}