blob: 32454d1c566fbbe1d84a7fd0f0f20b6e652e64f0 [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 Masond3c2fdcf2007-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
Josef Bacik817d52f2009-07-13 21:29:25 -040043static noinline void switch_commit_root(struct btrfs_root *root)
44{
45 down_write(&root->commit_root_sem);
46 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
48 up_write(&root->commit_root_sem);
49}
50
Chris Masond352ac62008-09-29 15:18:18 -040051/*
52 * either allocate a new transaction or hop into the existing one
53 */
Chris Mason80b67942008-02-01 16:35:04 -050054static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040055{
56 struct btrfs_transaction *cur_trans;
57 cur_trans = root->fs_info->running_transaction;
58 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040059 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
60 GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040061 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040063 cur_trans->num_writers = 1;
64 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040065 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040066 init_waitqueue_head(&cur_trans->writer_wait);
67 init_waitqueue_head(&cur_trans->commit_wait);
68 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040069 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040070 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040071 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040072 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040073
74 cur_trans->delayed_refs.root.rb_node = NULL;
75 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040076 cur_trans->delayed_refs.num_heads_ready = 0;
77 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040078 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040079 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040080 spin_lock_init(&cur_trans->delayed_refs.lock);
81
Chris Mason3063d292008-01-08 15:46:30 -050082 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040083 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050084 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040085 root->fs_info->btree_inode->i_mapping,
86 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040087 spin_lock(&root->fs_info->new_trans_lock);
88 root->fs_info->running_transaction = cur_trans;
89 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040090 } else {
91 cur_trans->num_writers++;
92 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040093 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040094
Chris Mason79154b12007-03-22 15:59:16 -040095 return 0;
96}
97
Chris Masond352ac62008-09-29 15:18:18 -040098/*
Chris Masond3977122009-01-05 21:25:51 -050099 * this does all the record keeping required to make sure that a reference
100 * counted root is properly recorded in a given transaction. This is required
101 * to make sure the old root from before we joined the transaction is deleted
102 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400103 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400104static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
105 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400106{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400107 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400108 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109 WARN_ON(root->root_item.refs == 0);
110 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400111
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400112 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
113 (unsigned long)root->root_key.objectid,
114 BTRFS_ROOT_TRANS_TAG);
115 root->last_trans = trans->transid;
116 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400117 }
118 return 0;
119}
120
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400121int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
122 struct btrfs_root *root)
123{
124 if (!root->ref_cows)
125 return 0;
126
127 mutex_lock(&root->fs_info->trans_mutex);
128 if (root->last_trans == trans->transid) {
129 mutex_unlock(&root->fs_info->trans_mutex);
130 return 0;
131 }
132
133 record_root_in_trans(trans, root);
134 mutex_unlock(&root->fs_info->trans_mutex);
135 return 0;
136}
137
Chris Masond352ac62008-09-29 15:18:18 -0400138/* wait for commit against the current transaction to become unblocked
139 * when this is done, it is safe to start a new transaction, but the current
140 * transaction might not be fully on disk.
141 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400142static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400143{
Chris Masonf9295742008-07-17 12:54:14 -0400144 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400145
Chris Masonf9295742008-07-17 12:54:14 -0400146 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400147 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400148 DEFINE_WAIT(wait);
149 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500150 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400151 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
152 TASK_UNINTERRUPTIBLE);
153 if (cur_trans->blocked) {
154 mutex_unlock(&root->fs_info->trans_mutex);
155 schedule();
156 mutex_lock(&root->fs_info->trans_mutex);
157 finish_wait(&root->fs_info->transaction_wait,
158 &wait);
159 } else {
160 finish_wait(&root->fs_info->transaction_wait,
161 &wait);
162 break;
163 }
164 }
165 put_transaction(cur_trans);
166 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400167}
168
Chris Masone02119d2008-09-05 16:13:11 -0400169static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Sage Weil9ca9ee02008-08-04 10:41:27 -0400170 int num_blocks, int wait)
Chris Mason37d1aee2008-07-31 10:48:37 -0400171{
172 struct btrfs_trans_handle *h =
173 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
174 int ret;
175
176 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400177 if (!root->fs_info->log_root_recovering &&
178 ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
Chris Mason37d1aee2008-07-31 10:48:37 -0400179 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400180 ret = join_transaction(root);
181 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400182
Chris Mason6702ed42007-08-07 16:15:09 -0400183 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400184 h->transaction = root->fs_info->running_transaction;
185 h->blocks_reserved = num_blocks;
186 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500187 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400188 h->alloc_exclude_nr = 0;
189 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400190 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400191
Chris Mason79154b12007-03-22 15:59:16 -0400192 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400193 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400194 mutex_unlock(&root->fs_info->trans_mutex);
195 return h;
196}
197
Chris Masonf9295742008-07-17 12:54:14 -0400198struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
199 int num_blocks)
200{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400201 return start_transaction(root, num_blocks, 1);
Chris Masonf9295742008-07-17 12:54:14 -0400202}
203struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
204 int num_blocks)
205{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400206 return start_transaction(root, num_blocks, 0);
Chris Masonf9295742008-07-17 12:54:14 -0400207}
208
Sage Weil9ca9ee02008-08-04 10:41:27 -0400209struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
210 int num_blocks)
211{
212 return start_transaction(r, num_blocks, 2);
213}
214
Chris Masond352ac62008-09-29 15:18:18 -0400215/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400216static noinline int wait_for_commit(struct btrfs_root *root,
217 struct btrfs_transaction *commit)
218{
219 DEFINE_WAIT(wait);
220 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500221 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400222 prepare_to_wait(&commit->commit_wait, &wait,
223 TASK_UNINTERRUPTIBLE);
224 if (commit->commit_done)
225 break;
226 mutex_unlock(&root->fs_info->trans_mutex);
227 schedule();
228 mutex_lock(&root->fs_info->trans_mutex);
229 }
230 mutex_unlock(&root->fs_info->trans_mutex);
231 finish_wait(&commit->commit_wait, &wait);
232 return 0;
233}
234
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400235#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400236/*
Chris Masond3977122009-01-05 21:25:51 -0500237 * rate limit against the drop_snapshot code. This helps to slow down new
238 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400239 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400240static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400241{
242 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400243 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400244
Chris Mason2dd3e672008-08-04 08:20:15 -0400245harder:
Chris Masonab78c842008-07-29 16:15:18 -0400246 if (atomic_read(&info->throttles)) {
247 DEFINE_WAIT(wait);
248 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400249 thr = atomic_read(&info->throttle_gen);
250
251 do {
252 prepare_to_wait(&info->transaction_throttle,
253 &wait, TASK_UNINTERRUPTIBLE);
254 if (!atomic_read(&info->throttles)) {
255 finish_wait(&info->transaction_throttle, &wait);
256 break;
257 }
258 schedule();
259 finish_wait(&info->transaction_throttle, &wait);
260 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400261 harder_count++;
262
263 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
264 harder_count < 2)
265 goto harder;
266
267 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
268 harder_count < 10)
269 goto harder;
270
271 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
272 harder_count < 20)
273 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400274 }
275}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400276#endif
Chris Masonab78c842008-07-29 16:15:18 -0400277
Chris Mason37d1aee2008-07-31 10:48:37 -0400278void btrfs_throttle(struct btrfs_root *root)
279{
280 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400281 if (!root->fs_info->open_ioctl_trans)
282 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400283 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400284}
285
Chris Mason89ce8a62008-06-25 16:01:31 -0400286static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
287 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400288{
289 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400290 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400291 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400292
Chris Masonc3e69d52009-03-13 10:17:05 -0400293 while (count < 4) {
294 unsigned long cur = trans->delayed_ref_updates;
295 trans->delayed_ref_updates = 0;
296 if (cur &&
297 trans->transaction->delayed_refs.num_heads_ready > 64) {
298 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400299
300 /*
301 * do a full flush if the transaction is trying
302 * to close
303 */
304 if (trans->transaction->delayed_refs.flushing)
305 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400306 btrfs_run_delayed_refs(trans, root, cur);
307 } else {
308 break;
309 }
310 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400311 }
312
Chris Masonab78c842008-07-29 16:15:18 -0400313 mutex_lock(&info->trans_mutex);
314 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400315 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400316 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400317 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400318
Chris Mason79154b12007-03-22 15:59:16 -0400319 if (waitqueue_active(&cur_trans->writer_wait))
320 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400321 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400322 mutex_unlock(&info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400323 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400324 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400325
Chris Mason79154b12007-03-22 15:59:16 -0400326 return 0;
327}
328
Chris Mason89ce8a62008-06-25 16:01:31 -0400329int btrfs_end_transaction(struct btrfs_trans_handle *trans,
330 struct btrfs_root *root)
331{
332 return __btrfs_end_transaction(trans, root, 0);
333}
334
335int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
336 struct btrfs_root *root)
337{
338 return __btrfs_end_transaction(trans, root, 1);
339}
340
Chris Masond352ac62008-09-29 15:18:18 -0400341/*
342 * when btree blocks are allocated, they have some corresponding bits set for
343 * them in one of two extent_io trees. This is used to make sure all of
344 * those extents are on disk for transaction or log commit
345 */
Chris Masond0c803c2008-09-11 16:17:57 -0400346int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
347 struct extent_io_tree *dirty_pages)
Chris Mason79154b12007-03-22 15:59:16 -0400348{
Chris Mason7c4452b2007-04-28 09:29:35 -0400349 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400350 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400351 int werr = 0;
352 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400353 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400354 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400355 u64 end;
356 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400357
Chris Masond3977122009-01-05 21:25:51 -0500358 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400359 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Chris Mason5f39d392007-10-15 16:14:19 -0400360 EXTENT_DIRTY);
361 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400362 break;
Chris Masond3977122009-01-05 21:25:51 -0500363 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400364 cond_resched();
365
Chris Mason5f39d392007-10-15 16:14:19 -0400366 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400367 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400368 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400369 if (!page)
370 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400371
372 btree_lock_page_hook(page);
373 if (!page->mapping) {
374 unlock_page(page);
375 page_cache_release(page);
376 continue;
377 }
378
Chris Mason6702ed42007-08-07 16:15:09 -0400379 if (PageWriteback(page)) {
380 if (PageDirty(page))
381 wait_on_page_writeback(page);
382 else {
383 unlock_page(page);
384 page_cache_release(page);
385 continue;
386 }
387 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400388 err = write_one_page(page, 0);
389 if (err)
390 werr = err;
391 page_cache_release(page);
392 }
393 }
Chris Masond3977122009-01-05 21:25:51 -0500394 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400395 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
396 EXTENT_DIRTY);
397 if (ret)
398 break;
399
400 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500401 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400402 index = start >> PAGE_CACHE_SHIFT;
403 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
404 page = find_get_page(btree_inode->i_mapping, index);
405 if (!page)
406 continue;
407 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400408 btree_lock_page_hook(page);
409 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400410 err = write_one_page(page, 0);
411 if (err)
412 werr = err;
413 }
Chris Mason105d9312008-11-18 12:13:12 -0500414 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400415 page_cache_release(page);
416 cond_resched();
417 }
418 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400419 if (err)
420 werr = err;
421 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400422}
423
Chris Masond0c803c2008-09-11 16:17:57 -0400424int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
425 struct btrfs_root *root)
426{
427 if (!trans || !trans->transaction) {
428 struct inode *btree_inode;
429 btree_inode = root->fs_info->btree_inode;
430 return filemap_write_and_wait(btree_inode->i_mapping);
431 }
432 return btrfs_write_and_wait_marked_extents(root,
433 &trans->transaction->dirty_pages);
434}
435
Chris Masond352ac62008-09-29 15:18:18 -0400436/*
437 * this is used to update the root pointer in the tree of tree roots.
438 *
439 * But, in the case of the extent allocation tree, updating the root
440 * pointer may allocate blocks which may change the root of the extent
441 * allocation tree.
442 *
443 * So, this loops and repeats and makes sure the cowonly root didn't
444 * change while the root pointer was being updated in the metadata.
445 */
Chris Mason0b86a832008-03-24 15:01:56 -0400446static int update_cowonly_root(struct btrfs_trans_handle *trans,
447 struct btrfs_root *root)
448{
449 int ret;
450 u64 old_root_bytenr;
451 struct btrfs_root *tree_root = root->fs_info->tree_root;
452
453 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400454
Chris Masond3977122009-01-05 21:25:51 -0500455 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400456 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
457 if (old_root_bytenr == root->node->start)
458 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400459
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400460 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400461 ret = btrfs_update_root(trans, tree_root,
462 &root->root_key,
463 &root->root_item);
464 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400465
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400466 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400467 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400468 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400469 switch_commit_root(root);
Chris Mason0b86a832008-03-24 15:01:56 -0400470 return 0;
471}
472
Chris Masond352ac62008-09-29 15:18:18 -0400473/*
474 * update all the cowonly tree roots on disk
475 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400476static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
477 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400478{
Chris Mason79154b12007-03-22 15:59:16 -0400479 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400480 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400481 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400482 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400483
Chris Mason56bec292009-03-13 10:10:06 -0400484 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
485 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400486
Yan Zheng84234f32008-10-29 14:49:05 -0400487 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400488 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400489 btrfs_tree_unlock(eb);
490 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400491
Chris Mason56bec292009-03-13 10:10:06 -0400492 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
493 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400494
Chris Masond3977122009-01-05 21:25:51 -0500495 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400496 next = fs_info->dirty_cowonly_roots.next;
497 list_del_init(next);
498 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400499
Chris Mason0b86a832008-03-24 15:01:56 -0400500 update_cowonly_root(trans, root);
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) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400547 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400548 btrfs_set_root_node(&root->root_item,
549 root->node);
550 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400551
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400552 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400553 &root->root_key,
554 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400555 if (err)
556 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400557 }
558 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400559 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400560}
561
Chris Masond352ac62008-09-29 15:18:18 -0400562/*
563 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
564 * otherwise every leaf in the btree is read and defragged.
565 */
Chris Masone9d0b132007-08-10 14:06:19 -0400566int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
567{
568 struct btrfs_fs_info *info = root->fs_info;
569 int ret;
570 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400571 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400572
Chris Masona2135012008-06-25 16:01:30 -0400573 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400574 if (root->defrag_running)
575 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400576 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400577 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400578 root->defrag_running = 1;
579 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400580 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400581 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400582 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400583 cond_resched();
584
Chris Masone9d0b132007-08-10 14:06:19 -0400585 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400586 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400587 break;
588 }
589 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400590 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400591 btrfs_end_transaction(trans, root);
592 return 0;
593}
594
Yan Zheng2c47e6052009-06-27 21:07:35 -0400595#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400596/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400597 * when dropping snapshots, we generate a ton of delayed refs, and it makes
598 * sense not to join the transaction while it is trying to flush the current
599 * queue of delayed refs out.
600 *
601 * This is used by the drop snapshot code only
602 */
603static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
604{
605 DEFINE_WAIT(wait);
606
607 mutex_lock(&info->trans_mutex);
608 while (info->running_transaction &&
609 info->running_transaction->delayed_refs.flushing) {
610 prepare_to_wait(&info->transaction_wait, &wait,
611 TASK_UNINTERRUPTIBLE);
612 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400613
Chris Masonb7ec40d2009-03-12 20:12:45 -0400614 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400615
Chris Masonb7ec40d2009-03-12 20:12:45 -0400616 mutex_lock(&info->trans_mutex);
617 finish_wait(&info->transaction_wait, &wait);
618 }
619 mutex_unlock(&info->trans_mutex);
620 return 0;
621}
622
623/*
Chris Masond352ac62008-09-29 15:18:18 -0400624 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
625 * all of them
626 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400627int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400628{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400629 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400630 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400631 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400632 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400633
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400634 while (1) {
635 /*
636 * we don't want to jump in and create a bunch of
637 * delayed refs if the transaction is starting to close
638 */
639 wait_transaction_pre_flush(tree_root->fs_info);
640 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400641
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400642 /*
643 * we've joined a transaction, make sure it isn't
644 * closing right now
645 */
646 if (trans->transaction->delayed_refs.flushing) {
647 btrfs_end_transaction(trans, tree_root);
648 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400649 }
Chris Masona2135012008-06-25 16:01:30 -0400650
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400651 ret = btrfs_drop_snapshot(trans, root);
652 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400653 break;
Chris Masona2135012008-06-25 16:01:30 -0400654
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400655 ret = btrfs_update_root(trans, tree_root,
656 &root->root_key,
657 &root->root_item);
658 if (ret)
659 break;
Yanbcc63ab2008-07-30 16:29:20 -0400660
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400661 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400662 ret = btrfs_end_transaction(trans, tree_root);
663 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400664
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400665 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400666 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400667 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400668 BUG_ON(ret);
669
670 ret = btrfs_del_root(trans, tree_root, &root->root_key);
671 BUG_ON(ret);
672
673 nr = trans->blocks_used;
674 ret = btrfs_end_transaction(trans, tree_root);
675 BUG_ON(ret);
676
677 free_extent_buffer(root->node);
678 free_extent_buffer(root->commit_root);
679 kfree(root);
680
681 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400682 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400683}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400684#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400685
Chris Masond352ac62008-09-29 15:18:18 -0400686/*
687 * new snapshots need to be created at a very specific time in the
688 * transaction commit. This does the actual creation
689 */
Chris Mason80b67942008-02-01 16:35:04 -0500690static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500691 struct btrfs_fs_info *fs_info,
692 struct btrfs_pending_snapshot *pending)
693{
694 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500695 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500696 struct btrfs_root *tree_root = fs_info->tree_root;
697 struct btrfs_root *root = pending->root;
698 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400699 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500700 int ret;
701 u64 objectid;
702
Chris Mason80b67942008-02-01 16:35:04 -0500703 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
704 if (!new_root_item) {
705 ret = -ENOMEM;
706 goto fail;
707 }
Chris Mason3063d292008-01-08 15:46:30 -0500708 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
709 if (ret)
710 goto fail;
711
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400712 record_root_in_trans(trans, root);
Yan Zheng80ff3852008-10-30 14:20:02 -0400713 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500714 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500715
716 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717 key.offset = 0;
Chris Mason3063d292008-01-08 15:46:30 -0500718 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
719
Chris Mason925baed2008-06-25 16:01:30 -0400720 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400721 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400722 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500723
Chris Mason925baed2008-06-25 16:01:30 -0400724 btrfs_copy_root(trans, root, old, &tmp, objectid);
725 btrfs_tree_unlock(old);
726 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500727
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400728 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500729 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500730 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400731 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500732 free_extent_buffer(tmp);
733 if (ret)
734 goto fail;
735
Chris Mason3de45862008-11-17 21:02:50 -0500736 key.offset = (u64)-1;
737 memcpy(&pending->root_key, &key, sizeof(key));
738fail:
739 kfree(new_root_item);
740 return ret;
741}
742
743static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
744 struct btrfs_pending_snapshot *pending)
745{
746 int ret;
747 int namelen;
748 u64 index = 0;
749 struct btrfs_trans_handle *trans;
750 struct inode *parent_inode;
751 struct inode *inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500752 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500753
Chris Mason3394e162008-11-17 20:42:26 -0500754 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500755 parent_root = BTRFS_I(parent_inode)->root;
Yan Zheng180591b2009-01-06 09:58:06 -0500756 trans = btrfs_join_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500757
Chris Mason3063d292008-01-08 15:46:30 -0500758 /*
759 * insert the directory item
760 */
Sven Wegener3b963622008-06-09 21:57:42 -0400761 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500762 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500763 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500764 pending->name, namelen,
765 parent_inode->i_ino,
766 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500767
768 if (ret)
769 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500770
Yan Zheng52c26172009-01-05 15:43:43 -0500771 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
772 ret = btrfs_update_inode(trans, parent_root, parent_inode);
773 BUG_ON(ret);
774
Chris Mason0660b5a2008-11-17 20:37:39 -0500775 /* add the backref first */
776 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
777 pending->root_key.objectid,
778 BTRFS_ROOT_BACKREF_KEY,
779 parent_root->root_key.objectid,
780 parent_inode->i_ino, index, pending->name,
781 namelen);
782
783 BUG_ON(ret);
784
785 /* now add the forward ref */
786 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
787 parent_root->root_key.objectid,
788 BTRFS_ROOT_REF_KEY,
789 pending->root_key.objectid,
790 parent_inode->i_ino, index, pending->name,
791 namelen);
792
Chris Mason3de45862008-11-17 21:02:50 -0500793 inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
794 d_instantiate(pending->dentry, inode);
Chris Mason3063d292008-01-08 15:46:30 -0500795fail:
Chris Mason3de45862008-11-17 21:02:50 -0500796 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500797 return ret;
798}
799
Chris Masond352ac62008-09-29 15:18:18 -0400800/*
801 * create all the snapshots we've scheduled for creation
802 */
Chris Mason80b67942008-02-01 16:35:04 -0500803static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
804 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500805{
806 struct btrfs_pending_snapshot *pending;
807 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500808 int ret;
809
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500810 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500811 ret = create_pending_snapshot(trans, fs_info, pending);
812 BUG_ON(ret);
813 }
814 return 0;
815}
816
817static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
818 struct btrfs_fs_info *fs_info)
819{
820 struct btrfs_pending_snapshot *pending;
821 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500822 int ret;
823
Chris Masond3977122009-01-05 21:25:51 -0500824 while (!list_empty(head)) {
Chris Mason3063d292008-01-08 15:46:30 -0500825 pending = list_entry(head->next,
826 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500827 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500828 BUG_ON(ret);
829 list_del(&pending->list);
830 kfree(pending->name);
831 kfree(pending);
832 }
Chris Masondc17ff82008-01-08 15:46:30 -0500833 return 0;
834}
835
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400836static void update_super_roots(struct btrfs_root *root)
837{
838 struct btrfs_root_item *root_item;
839 struct btrfs_super_block *super;
840
841 super = &root->fs_info->super_copy;
842
843 root_item = &root->fs_info->chunk_root->root_item;
844 super->chunk_root = root_item->bytenr;
845 super->chunk_root_generation = root_item->generation;
846 super->chunk_root_level = root_item->level;
847
848 root_item = &root->fs_info->tree_root->root_item;
849 super->root = root_item->bytenr;
850 super->generation = root_item->generation;
851 super->root_level = root_item->level;
852}
853
Chris Mason79154b12007-03-22 15:59:16 -0400854int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
855 struct btrfs_root *root)
856{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400857 unsigned long joined = 0;
858 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400859 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400860 struct btrfs_transaction *prev_trans = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500861 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400862 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400863 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400864 int should_grow = 0;
865 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400866 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400867
Chris Mason5a3f23d2009-03-31 13:27:11 -0400868 btrfs_run_ordered_operations(root, 0);
869
Chris Mason56bec292009-03-13 10:10:06 -0400870 /* make a pass through all the delayed refs we have so far
871 * any runnings procs may add more while we are here
872 */
873 ret = btrfs_run_delayed_refs(trans, root, 0);
874 BUG_ON(ret);
875
Chris Masonb7ec40d2009-03-12 20:12:45 -0400876 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400877 /*
878 * set the flushing flag so procs in this transaction have to
879 * start sending their work down.
880 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400881 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400882
Chris Masonc3e69d52009-03-13 10:17:05 -0400883 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400884 BUG_ON(ret);
885
Chris Mason79154b12007-03-22 15:59:16 -0400886 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400887 if (cur_trans->in_commit) {
888 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400889 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400890 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400891
Chris Mason79154b12007-03-22 15:59:16 -0400892 ret = wait_for_commit(root, cur_trans);
893 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400894
895 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400896 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400897 mutex_unlock(&root->fs_info->trans_mutex);
898
Chris Mason79154b12007-03-22 15:59:16 -0400899 return 0;
900 }
Chris Mason4313b392008-01-03 09:08:48 -0500901
902 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
903 if (!pinned_copy)
904 return -ENOMEM;
905
Chris Masond1310b22008-01-24 16:13:08 -0500906 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500907 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
908
Chris Mason2c90e5d2007-04-02 10:50:19 -0400909 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400910 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400911 if (cur_trans->list.prev != &root->fs_info->trans_list) {
912 prev_trans = list_entry(cur_trans->list.prev,
913 struct btrfs_transaction, list);
914 if (!prev_trans->commit_done) {
915 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400916 mutex_unlock(&root->fs_info->trans_mutex);
917
918 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400919
Chris Masonccd467d2007-06-28 15:57:36 -0400920 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400921 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400922 }
923 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400924
Chris Mason89573b92009-03-12 20:12:45 -0400925 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
926 should_grow = 1;
927
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400928 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400929 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400930 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400931 if (!list_empty(&trans->transaction->pending_snapshots))
932 snap_pending = 1;
933
Chris Mason2c90e5d2007-04-02 10:50:19 -0400934 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400935 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400936 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400937
938 if (cur_trans->num_writers > 1)
939 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400940 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400941 timeout = 1;
942
Chris Mason79154b12007-03-22 15:59:16 -0400943 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400944
Sage Weildccae992009-04-02 16:59:01 -0400945 if (flush_on_commit || snap_pending) {
946 if (flush_on_commit)
947 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400948 ret = btrfs_wait_ordered_extents(root, 1);
949 BUG_ON(ret);
950 }
951
Chris Mason5a3f23d2009-03-31 13:27:11 -0400952 /*
953 * rename don't use btrfs_join_transaction, so, once we
954 * set the transaction to blocked above, we aren't going
955 * to get any new ordered operations. We can safely run
956 * it here and no for sure that nothing new will be added
957 * to the list
958 */
959 btrfs_run_ordered_operations(root, 1);
960
Chris Mason89573b92009-03-12 20:12:45 -0400961 smp_mb();
962 if (cur_trans->num_writers > 1 || should_grow)
963 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400964
Chris Mason79154b12007-03-22 15:59:16 -0400965 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400966 finish_wait(&cur_trans->writer_wait, &wait);
967 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -0400968 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400969
Chris Mason3063d292008-01-08 15:46:30 -0500970 ret = create_pending_snapshots(trans, root->fs_info);
971 BUG_ON(ret);
972
Chris Mason56bec292009-03-13 10:10:06 -0400973 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
974 BUG_ON(ret);
975
Chris Mason2c90e5d2007-04-02 10:50:19 -0400976 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500977
Chris Masone02119d2008-09-05 16:13:11 -0400978 /* btrfs_commit_tree_roots is responsible for getting the
979 * various roots consistent with each other. Every pointer
980 * in the tree of tree roots has to point to the most up to date
981 * root for every subvolume and other tree. So, we have to keep
982 * the tree logging code from jumping in and changing any
983 * of the trees.
984 *
985 * At this point in the commit, there can't be any tree-log
986 * writers, but a little lower down we drop the trans mutex
987 * and let new people in. By holding the tree_log_mutex
988 * from now until after the super is written, we avoid races
989 * with the tree-log code.
990 */
991 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -0400992
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400993 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400994 BUG_ON(ret);
995
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400996 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -0400997 * safe to free the root of tree log roots
998 */
999 btrfs_free_log_root_tree(trans, root->fs_info);
1000
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001001 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001002 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001003
Chris Mason78fae272007-03-25 11:35:08 -04001004 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001005 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001006 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001007 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001008
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001009 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1010 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001011 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012
1013 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1014 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001015 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016
1017 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001018
1019 if (!root->fs_info->log_root_recovering) {
1020 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1021 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1022 }
1023
Chris Masona061fc82008-05-07 11:43:44 -04001024 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1025 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001026
Chris Mason4313b392008-01-03 09:08:48 -05001027 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -04001028
Chris Masonf9295742008-07-17 12:54:14 -04001029 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001030
Chris Masonf9295742008-07-17 12:54:14 -04001031 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001032
Chris Mason78fae272007-03-25 11:35:08 -04001033 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001034 ret = btrfs_write_and_wait_transaction(trans, root);
1035 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001036 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001037
Chris Masone02119d2008-09-05 16:13:11 -04001038 /*
1039 * the super is written, we can safely allow the tree-loggers
1040 * to go about their business
1041 */
1042 mutex_unlock(&root->fs_info->tree_log_mutex);
1043
Chris Mason4313b392008-01-03 09:08:48 -05001044 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason4313b392008-01-03 09:08:48 -05001045 kfree(pinned_copy);
1046
Chris Mason3de45862008-11-17 21:02:50 -05001047 /* do the directory inserts of any pending snapshot creations */
1048 finish_pending_snapshots(trans, root->fs_info);
1049
Zheng Yan1a40e232008-09-26 10:09:34 -04001050 mutex_lock(&root->fs_info->trans_mutex);
1051
Chris Mason2c90e5d2007-04-02 10:50:19 -04001052 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001053
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001054 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001055
Chris Mason2c90e5d2007-04-02 10:50:19 -04001056 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001057
Chris Mason79154b12007-03-22 15:59:16 -04001058 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001059 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001060
Chris Mason78fae272007-03-25 11:35:08 -04001061 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001062
Chris Mason2c90e5d2007-04-02 10:50:19 -04001063 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -04001064 return ret;
1065}
1066
Chris Masond352ac62008-09-29 15:18:18 -04001067/*
1068 * interface function to delete all the snapshots we have scheduled for deletion
1069 */
Chris Masone9d0b132007-08-10 14:06:19 -04001070int btrfs_clean_old_snapshots(struct btrfs_root *root)
1071{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 LIST_HEAD(list);
1073 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001074
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001075 mutex_lock(&fs_info->trans_mutex);
1076 list_splice_init(&fs_info->dead_roots, &list);
1077 mutex_unlock(&fs_info->trans_mutex);
1078
1079 while (!list_empty(&list)) {
1080 root = list_entry(list.next, struct btrfs_root, root_list);
1081 list_del_init(&root->root_list);
Yan Zheng2c47e6052009-06-27 21:07:35 -04001082 btrfs_drop_snapshot(root, 0);
Chris Masone9d0b132007-08-10 14:06:19 -04001083 }
1084 return 0;
1085}