blob: 9f40bfc9c45c3e0056b168db527de212114d0179 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Masond3c2fdc2007-09-17 10:58:06 -040022#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040023#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050024#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason80b67942008-02-01 16:35:04 -050033static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040034{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040038 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040041 }
Chris Mason79154b12007-03-22 15:59:16 -040042}
43
Josef Bacik817d52f2009-07-13 21:29:25 -040044static noinline void switch_commit_root(struct btrfs_root *root)
45{
Josef Bacik817d52f2009-07-13 21:29:25 -040046 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040048}
49
Chris Masond352ac62008-09-29 15:18:18 -040050/*
51 * either allocate a new transaction or hop into the existing one
52 */
Chris Mason80b67942008-02-01 16:35:04 -050053static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040054{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040058 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040060 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040061 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040062 cur_trans->num_writers = 1;
63 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040064 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040065 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040068 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040069 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040070 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040071 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040072
Eric Paris6bef4d32010-02-23 19:43:04 +000073 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040074 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040075 cur_trans->delayed_refs.num_heads_ready = 0;
76 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040077 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040078 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040079 spin_lock_init(&cur_trans->delayed_refs.lock);
80
Chris Mason3063d292008-01-08 15:46:30 -050081 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040082 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050083 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040084 root->fs_info->btree_inode->i_mapping,
85 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040086 spin_lock(&root->fs_info->new_trans_lock);
87 root->fs_info->running_transaction = cur_trans;
88 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040089 } else {
90 cur_trans->num_writers++;
91 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040092 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040093
Chris Mason79154b12007-03-22 15:59:16 -040094 return 0;
95}
96
Chris Masond352ac62008-09-29 15:18:18 -040097/*
Chris Masond3977122009-01-05 21:25:51 -050098 * this does all the record keeping required to make sure that a reference
99 * counted root is properly recorded in a given transaction. This is required
100 * to make sure the old root from before we joined the transaction is deleted
101 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400102 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400103static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400105{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400106 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400107 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400108 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400109
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400115 }
116 return 0;
117}
118
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
124
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
129 }
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
133 return 0;
134}
135
Chris Masond352ac62008-09-29 15:18:18 -0400136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400140static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400141{
Chris Masonf9295742008-07-17 12:54:14 -0400142 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400143
Chris Masonf9295742008-07-17 12:54:14 -0400144 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400145 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400146 DEFINE_WAIT(wait);
147 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500148 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000151 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400152 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000153 mutex_unlock(&root->fs_info->trans_mutex);
154 schedule();
155 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400156 }
Zhao Lei471fa172010-03-25 12:35:14 +0000157 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400158 put_transaction(cur_trans);
159 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400160}
161
Josef Bacik249ac1e2009-11-10 21:23:48 -0500162enum btrfs_trans_type {
163 TRANS_START,
164 TRANS_JOIN,
165 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400166 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500167};
168
Yan, Zhenga22285a2010-05-16 10:48:46 -0400169static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400170{
Chris Mason4bef0842008-09-08 11:18:08 -0400171 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500172 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
173 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400174 return 1;
175 return 0;
176}
177
178static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
179 u64 num_items, int type)
180{
181 struct btrfs_trans_handle *h;
182 struct btrfs_transaction *cur_trans;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400183 int ret;
184again:
185 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
186 if (!h)
187 return ERR_PTR(-ENOMEM);
188
Josef Bacik0af3d002010-06-21 14:48:16 -0400189 if (type != TRANS_JOIN_NOLOCK)
190 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400191 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400192 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400193
Chris Mason79154b12007-03-22 15:59:16 -0400194 ret = join_transaction(root);
195 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400196
Yan, Zhenga22285a2010-05-16 10:48:46 -0400197 cur_trans = root->fs_info->running_transaction;
198 cur_trans->use_count++;
Josef Bacik0af3d002010-06-21 14:48:16 -0400199 if (type != TRANS_JOIN_NOLOCK)
200 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400201
202 h->transid = cur_trans->transid;
203 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400204 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500205 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400206 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400207 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400208 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400209
Yan, Zhenga22285a2010-05-16 10:48:46 -0400210 smp_mb();
211 if (cur_trans->blocked && may_wait_transaction(root, type)) {
212 btrfs_commit_transaction(h, root);
213 goto again;
214 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400215
Yan, Zhenga22285a2010-05-16 10:48:46 -0400216 if (num_items > 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400217 ret = btrfs_trans_reserve_metadata(h, root, num_items);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400218 if (ret == -EAGAIN) {
219 btrfs_commit_transaction(h, root);
220 goto again;
221 }
222 if (ret < 0) {
223 btrfs_end_transaction(h, root);
224 return ERR_PTR(ret);
225 }
226 }
227
Josef Bacik0af3d002010-06-21 14:48:16 -0400228 if (type != TRANS_JOIN_NOLOCK)
229 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400230 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400231 if (type != TRANS_JOIN_NOLOCK)
232 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400233
234 if (!current->journal_info && type != TRANS_USERSPACE)
235 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400236 return h;
237}
238
Chris Masonf9295742008-07-17 12:54:14 -0400239struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400240 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400241{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400242 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400243}
244struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
245 int num_blocks)
246{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400247 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400248}
249
Josef Bacik0af3d002010-06-21 14:48:16 -0400250struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root,
251 int num_blocks)
252{
253 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
254}
255
Sage Weil9ca9ee02008-08-04 10:41:27 -0400256struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
257 int num_blocks)
258{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400259 return start_transaction(r, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400260}
261
Chris Masond352ac62008-09-29 15:18:18 -0400262/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400263static noinline int wait_for_commit(struct btrfs_root *root,
264 struct btrfs_transaction *commit)
265{
266 DEFINE_WAIT(wait);
267 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500268 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400269 prepare_to_wait(&commit->commit_wait, &wait,
270 TASK_UNINTERRUPTIBLE);
271 if (commit->commit_done)
272 break;
273 mutex_unlock(&root->fs_info->trans_mutex);
274 schedule();
275 mutex_lock(&root->fs_info->trans_mutex);
276 }
277 mutex_unlock(&root->fs_info->trans_mutex);
278 finish_wait(&commit->commit_wait, &wait);
279 return 0;
280}
281
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400282#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400283/*
Chris Masond3977122009-01-05 21:25:51 -0500284 * rate limit against the drop_snapshot code. This helps to slow down new
285 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400286 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400287static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400288{
289 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400290 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400291
Chris Mason2dd3e672008-08-04 08:20:15 -0400292harder:
Chris Masonab78c842008-07-29 16:15:18 -0400293 if (atomic_read(&info->throttles)) {
294 DEFINE_WAIT(wait);
295 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400296 thr = atomic_read(&info->throttle_gen);
297
298 do {
299 prepare_to_wait(&info->transaction_throttle,
300 &wait, TASK_UNINTERRUPTIBLE);
301 if (!atomic_read(&info->throttles)) {
302 finish_wait(&info->transaction_throttle, &wait);
303 break;
304 }
305 schedule();
306 finish_wait(&info->transaction_throttle, &wait);
307 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400308 harder_count++;
309
310 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
311 harder_count < 2)
312 goto harder;
313
314 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
315 harder_count < 10)
316 goto harder;
317
318 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
319 harder_count < 20)
320 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400321 }
322}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400323#endif
Chris Masonab78c842008-07-29 16:15:18 -0400324
Chris Mason37d1aee2008-07-31 10:48:37 -0400325void btrfs_throttle(struct btrfs_root *root)
326{
327 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400328 if (!root->fs_info->open_ioctl_trans)
329 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400330 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400331}
332
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400333static int should_end_transaction(struct btrfs_trans_handle *trans,
334 struct btrfs_root *root)
335{
336 int ret;
337 ret = btrfs_block_rsv_check(trans, root,
338 &root->fs_info->global_block_rsv, 0, 5);
339 return ret ? 1 : 0;
340}
341
342int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
343 struct btrfs_root *root)
344{
345 struct btrfs_transaction *cur_trans = trans->transaction;
346 int updates;
347
348 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
349 return 1;
350
351 updates = trans->delayed_ref_updates;
352 trans->delayed_ref_updates = 0;
353 if (updates)
354 btrfs_run_delayed_refs(trans, root, updates);
355
356 return should_end_transaction(trans, root);
357}
358
Chris Mason89ce8a62008-06-25 16:01:31 -0400359static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400360 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400361{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400362 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400363 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400364 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400365
Chris Masonc3e69d52009-03-13 10:17:05 -0400366 while (count < 4) {
367 unsigned long cur = trans->delayed_ref_updates;
368 trans->delayed_ref_updates = 0;
369 if (cur &&
370 trans->transaction->delayed_refs.num_heads_ready > 64) {
371 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400372
373 /*
374 * do a full flush if the transaction is trying
375 * to close
376 */
377 if (trans->transaction->delayed_refs.flushing)
378 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400379 btrfs_run_delayed_refs(trans, root, cur);
380 } else {
381 break;
382 }
383 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400384 }
385
Yan, Zhenga22285a2010-05-16 10:48:46 -0400386 btrfs_trans_release_metadata(trans, root);
387
Josef Bacik0af3d002010-06-21 14:48:16 -0400388 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400389 should_end_transaction(trans, root))
390 trans->transaction->blocked = 1;
391
Josef Bacik0af3d002010-06-21 14:48:16 -0400392 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400393 if (throttle)
394 return btrfs_commit_transaction(trans, root);
395 else
396 wake_up_process(info->transaction_kthread);
397 }
398
Josef Bacik0af3d002010-06-21 14:48:16 -0400399 if (lock)
400 mutex_lock(&info->trans_mutex);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400401 WARN_ON(cur_trans != info->running_transaction);
Chris Masond5719762007-03-23 10:01:08 -0400402 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400403 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400404
Sage Weil99d16cb2010-10-29 15:37:34 -0400405 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400406 if (waitqueue_active(&cur_trans->writer_wait))
407 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400408 put_transaction(cur_trans);
Josef Bacik0af3d002010-06-21 14:48:16 -0400409 if (lock)
410 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400411
412 if (current->journal_info == trans)
413 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400414 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400415 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400416
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000417 if (throttle)
418 btrfs_run_delayed_iputs(root);
419
Chris Mason79154b12007-03-22 15:59:16 -0400420 return 0;
421}
422
Chris Mason89ce8a62008-06-25 16:01:31 -0400423int btrfs_end_transaction(struct btrfs_trans_handle *trans,
424 struct btrfs_root *root)
425{
Josef Bacik0af3d002010-06-21 14:48:16 -0400426 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400427}
428
429int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
430 struct btrfs_root *root)
431{
Josef Bacik0af3d002010-06-21 14:48:16 -0400432 return __btrfs_end_transaction(trans, root, 1, 1);
433}
434
435int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
436 struct btrfs_root *root)
437{
438 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400439}
440
Chris Masond352ac62008-09-29 15:18:18 -0400441/*
442 * when btree blocks are allocated, they have some corresponding bits set for
443 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400444 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400445 */
Chris Mason690587d2009-10-13 13:29:19 -0400446int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000447 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400448{
Chris Mason7c4452b2007-04-28 09:29:35 -0400449 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400450 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400451 int werr = 0;
452 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400453 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400454 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400455 u64 end;
456 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400457
Chris Masond3977122009-01-05 21:25:51 -0500458 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400459 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000460 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400461 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400462 break;
Chris Masond3977122009-01-05 21:25:51 -0500463 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400464 cond_resched();
465
Chris Mason5f39d392007-10-15 16:14:19 -0400466 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400467 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400468 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400469 if (!page)
470 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400471
472 btree_lock_page_hook(page);
473 if (!page->mapping) {
474 unlock_page(page);
475 page_cache_release(page);
476 continue;
477 }
478
Chris Mason6702ed42007-08-07 16:15:09 -0400479 if (PageWriteback(page)) {
480 if (PageDirty(page))
481 wait_on_page_writeback(page);
482 else {
483 unlock_page(page);
484 page_cache_release(page);
485 continue;
486 }
487 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400488 err = write_one_page(page, 0);
489 if (err)
490 werr = err;
491 page_cache_release(page);
492 }
493 }
Chris Mason690587d2009-10-13 13:29:19 -0400494 if (err)
495 werr = err;
496 return werr;
497}
498
499/*
500 * when btree blocks are allocated, they have some corresponding bits set for
501 * them in one of two extent_io trees. This is used to make sure all of
502 * those extents are on disk for transaction or log commit. We wait
503 * on all the pages and clear them from the dirty pages state tree
504 */
505int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000506 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400507{
508 int ret;
509 int err = 0;
510 int werr = 0;
511 struct page *page;
512 struct inode *btree_inode = root->fs_info->btree_inode;
513 u64 start = 0;
514 u64 end;
515 unsigned long index;
516
Chris Masond3977122009-01-05 21:25:51 -0500517 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000518 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
519 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400520 if (ret)
521 break;
522
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000523 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500524 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400525 index = start >> PAGE_CACHE_SHIFT;
526 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
527 page = find_get_page(btree_inode->i_mapping, index);
528 if (!page)
529 continue;
530 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400531 btree_lock_page_hook(page);
532 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400533 err = write_one_page(page, 0);
534 if (err)
535 werr = err;
536 }
Chris Mason105d9312008-11-18 12:13:12 -0500537 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400538 page_cache_release(page);
539 cond_resched();
540 }
541 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400542 if (err)
543 werr = err;
544 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400545}
546
Chris Mason690587d2009-10-13 13:29:19 -0400547/*
548 * when btree blocks are allocated, they have some corresponding bits set for
549 * them in one of two extent_io trees. This is used to make sure all of
550 * those extents are on disk for transaction or log commit
551 */
552int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000553 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400554{
555 int ret;
556 int ret2;
557
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000558 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
559 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400560 return ret || ret2;
561}
562
Chris Masond0c803c2008-09-11 16:17:57 -0400563int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
564 struct btrfs_root *root)
565{
566 if (!trans || !trans->transaction) {
567 struct inode *btree_inode;
568 btree_inode = root->fs_info->btree_inode;
569 return filemap_write_and_wait(btree_inode->i_mapping);
570 }
571 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000572 &trans->transaction->dirty_pages,
573 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400574}
575
Chris Masond352ac62008-09-29 15:18:18 -0400576/*
577 * this is used to update the root pointer in the tree of tree roots.
578 *
579 * But, in the case of the extent allocation tree, updating the root
580 * pointer may allocate blocks which may change the root of the extent
581 * allocation tree.
582 *
583 * So, this loops and repeats and makes sure the cowonly root didn't
584 * change while the root pointer was being updated in the metadata.
585 */
Chris Mason0b86a832008-03-24 15:01:56 -0400586static int update_cowonly_root(struct btrfs_trans_handle *trans,
587 struct btrfs_root *root)
588{
589 int ret;
590 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000591 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400592 struct btrfs_root *tree_root = root->fs_info->tree_root;
593
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000594 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400595 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400596
Chris Masond3977122009-01-05 21:25:51 -0500597 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400598 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000599 if (old_root_bytenr == root->node->start &&
600 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400601 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400602
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400603 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400604 ret = btrfs_update_root(trans, tree_root,
605 &root->root_key,
606 &root->root_item);
607 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400608
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000609 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400610 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400611 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400612 }
Yan Zheng276e6802009-07-30 09:40:40 -0400613
614 if (root != root->fs_info->extent_root)
615 switch_commit_root(root);
616
Chris Mason0b86a832008-03-24 15:01:56 -0400617 return 0;
618}
619
Chris Masond352ac62008-09-29 15:18:18 -0400620/*
621 * update all the cowonly tree roots on disk
622 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400623static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
624 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400625{
Chris Mason79154b12007-03-22 15:59:16 -0400626 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400627 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400628 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400629 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400630
Chris Mason56bec292009-03-13 10:10:06 -0400631 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
632 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400633
Yan Zheng84234f32008-10-29 14:49:05 -0400634 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400635 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400636 btrfs_tree_unlock(eb);
637 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400638
Chris Mason56bec292009-03-13 10:10:06 -0400639 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
640 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400641
Chris Masond3977122009-01-05 21:25:51 -0500642 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400643 next = fs_info->dirty_cowonly_roots.next;
644 list_del_init(next);
645 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400646
Chris Mason0b86a832008-03-24 15:01:56 -0400647 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400648 }
Yan Zheng276e6802009-07-30 09:40:40 -0400649
650 down_write(&fs_info->extent_commit_sem);
651 switch_commit_root(fs_info->extent_root);
652 up_write(&fs_info->extent_commit_sem);
653
Chris Mason79154b12007-03-22 15:59:16 -0400654 return 0;
655}
656
Chris Masond352ac62008-09-29 15:18:18 -0400657/*
658 * dead roots are old snapshots that need to be deleted. This allocates
659 * a dirty root struct and adds it into the list of dead roots that need to
660 * be deleted
661 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400662int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400663{
Yan Zhengb48652c2008-08-04 23:23:47 -0400664 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400665 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400666 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400667 return 0;
668}
669
Chris Masond352ac62008-09-29 15:18:18 -0400670/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400671 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400672 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400673static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
674 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400675{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400676 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400677 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400678 int i;
679 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400680 int err = 0;
681
Chris Masond3977122009-01-05 21:25:51 -0500682 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400683 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
684 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400685 ARRAY_SIZE(gang),
686 BTRFS_ROOT_TRANS_TAG);
687 if (ret == 0)
688 break;
689 for (i = 0; i < ret; i++) {
690 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400691 radix_tree_tag_clear(&fs_info->fs_roots_radix,
692 (unsigned long)root->root_key.objectid,
693 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400694
Chris Masone02119d2008-09-05 16:13:11 -0400695 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400696 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400697 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400698
Yan Zheng978d9102009-06-15 20:01:02 -0400699 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400700 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400701 btrfs_set_root_node(&root->root_item,
702 root->node);
703 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400704
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400705 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400706 &root->root_key,
707 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400708 if (err)
709 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400710 }
711 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400712 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400713}
714
Chris Masond352ac62008-09-29 15:18:18 -0400715/*
716 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
717 * otherwise every leaf in the btree is read and defragged.
718 */
Chris Masone9d0b132007-08-10 14:06:19 -0400719int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
720{
721 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400722 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400723 int ret;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400724 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400725
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400726 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400727 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400728
Chris Mason6b800532007-10-15 16:17:34 -0400729 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400730 trans = btrfs_start_transaction(root, 0);
731 if (IS_ERR(trans))
732 return PTR_ERR(trans);
733
Chris Masone9d0b132007-08-10 14:06:19 -0400734 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400735
Chris Masond3c2fdc2007-09-17 10:58:06 -0400736 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400737 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400738 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400739 cond_resched();
740
Chris Mason3f157a22008-06-25 16:01:31 -0400741 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400742 break;
743 }
744 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400745 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400746}
747
Yan Zheng2c47e6052009-06-27 21:07:35 -0400748#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400749/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400750 * when dropping snapshots, we generate a ton of delayed refs, and it makes
751 * sense not to join the transaction while it is trying to flush the current
752 * queue of delayed refs out.
753 *
754 * This is used by the drop snapshot code only
755 */
756static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
757{
758 DEFINE_WAIT(wait);
759
760 mutex_lock(&info->trans_mutex);
761 while (info->running_transaction &&
762 info->running_transaction->delayed_refs.flushing) {
763 prepare_to_wait(&info->transaction_wait, &wait,
764 TASK_UNINTERRUPTIBLE);
765 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400766
Chris Masonb7ec40d2009-03-12 20:12:45 -0400767 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400768
Chris Masonb7ec40d2009-03-12 20:12:45 -0400769 mutex_lock(&info->trans_mutex);
770 finish_wait(&info->transaction_wait, &wait);
771 }
772 mutex_unlock(&info->trans_mutex);
773 return 0;
774}
775
776/*
Chris Masond352ac62008-09-29 15:18:18 -0400777 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
778 * all of them
779 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400780int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400781{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400782 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400783 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400784 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400785 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400786
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400787 while (1) {
788 /*
789 * we don't want to jump in and create a bunch of
790 * delayed refs if the transaction is starting to close
791 */
792 wait_transaction_pre_flush(tree_root->fs_info);
793 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400794
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400795 /*
796 * we've joined a transaction, make sure it isn't
797 * closing right now
798 */
799 if (trans->transaction->delayed_refs.flushing) {
800 btrfs_end_transaction(trans, tree_root);
801 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400802 }
Chris Masona2135012008-06-25 16:01:30 -0400803
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400804 ret = btrfs_drop_snapshot(trans, root);
805 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400806 break;
Chris Masona2135012008-06-25 16:01:30 -0400807
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400808 ret = btrfs_update_root(trans, tree_root,
809 &root->root_key,
810 &root->root_item);
811 if (ret)
812 break;
Yanbcc63ab2008-07-30 16:29:20 -0400813
Chris Masond3c2fdc2007-09-17 10:58:06 -0400814 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400815 ret = btrfs_end_transaction(trans, tree_root);
816 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400817
Chris Masond3c2fdc2007-09-17 10:58:06 -0400818 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc11902007-10-15 16:18:14 -0400819 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400820 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400821 BUG_ON(ret);
822
823 ret = btrfs_del_root(trans, tree_root, &root->root_key);
824 BUG_ON(ret);
825
826 nr = trans->blocks_used;
827 ret = btrfs_end_transaction(trans, tree_root);
828 BUG_ON(ret);
829
830 free_extent_buffer(root->node);
831 free_extent_buffer(root->commit_root);
832 kfree(root);
833
834 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400835 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400836}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400837#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400838
Chris Masond352ac62008-09-29 15:18:18 -0400839/*
840 * new snapshots need to be created at a very specific time in the
841 * transaction commit. This does the actual creation
842 */
Chris Mason80b67942008-02-01 16:35:04 -0500843static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500844 struct btrfs_fs_info *fs_info,
845 struct btrfs_pending_snapshot *pending)
846{
847 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500848 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500849 struct btrfs_root *tree_root = fs_info->tree_root;
850 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000851 struct btrfs_root *parent_root;
852 struct inode *parent_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400853 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500854 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400855 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500856 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400857 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000858 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400859 u64 objectid;
Chris Mason3063d292008-01-08 15:46:30 -0500860
Chris Mason80b67942008-02-01 16:35:04 -0500861 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
862 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400863 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500864 goto fail;
865 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400866
Chris Mason3063d292008-01-08 15:46:30 -0500867 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400868 if (ret) {
869 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500870 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400871 }
Chris Mason3063d292008-01-08 15:46:30 -0500872
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400873 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400874 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
875
876 if (to_reserve > 0) {
877 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400878 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400879 if (ret) {
880 pending->error = ret;
881 goto fail;
882 }
883 }
884
Chris Mason3063d292008-01-08 15:46:30 -0500885 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400886 key.offset = (u64)-1;
887 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500888
Yan, Zhenga22285a2010-05-16 10:48:46 -0400889 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000890
Yan, Zhenga22285a2010-05-16 10:48:46 -0400891 dentry = pending->dentry;
892 parent_inode = dentry->d_parent->d_inode;
893 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000894 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400895
Sage Weil6bdb72d2010-03-15 17:27:13 +0000896 /*
897 * insert the directory item
898 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000899 ret = btrfs_set_inode_index(parent_inode, &index);
900 BUG_ON(ret);
901 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400902 dentry->d_name.name, dentry->d_name.len,
903 parent_inode->i_ino, &key,
904 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000905 BUG_ON(ret);
906
Yan, Zhenga22285a2010-05-16 10:48:46 -0400907 btrfs_i_size_write(parent_inode, parent_inode->i_size +
908 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000909 ret = btrfs_update_inode(trans, parent_root, parent_inode);
910 BUG_ON(ret);
911
912 record_root_in_trans(trans, root);
913 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
914 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
915
Chris Mason925baed2008-06-25 16:01:30 -0400916 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400917 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400918 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500919
Chris Mason925baed2008-06-25 16:01:30 -0400920 btrfs_copy_root(trans, root, old, &tmp, objectid);
921 btrfs_tree_unlock(old);
922 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500923
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400924 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400925 /* record when the snapshot was created in key.offset */
926 key.offset = trans->transid;
927 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400928 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500929 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -0500930 BUG_ON(ret);
931
Yan, Zhenga22285a2010-05-16 10:48:46 -0400932 /*
933 * insert root back/forward references
934 */
935 ret = btrfs_add_root_ref(trans, tree_root, objectid,
936 parent_root->root_key.objectid,
937 parent_inode->i_ino, index,
938 dentry->d_name.name, dentry->d_name.len);
939 BUG_ON(ret);
940
941 key.offset = (u64)-1;
942 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
943 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -0400944
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400945 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400946 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500947fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +0000948 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400949 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
950 return 0;
Chris Mason3063d292008-01-08 15:46:30 -0500951}
952
Chris Masond352ac62008-09-29 15:18:18 -0400953/*
954 * create all the snapshots we've scheduled for creation
955 */
Chris Mason80b67942008-02-01 16:35:04 -0500956static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
957 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500958{
959 struct btrfs_pending_snapshot *pending;
960 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500961 int ret;
962
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500963 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500964 ret = create_pending_snapshot(trans, fs_info, pending);
965 BUG_ON(ret);
966 }
967 return 0;
968}
969
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400970static void update_super_roots(struct btrfs_root *root)
971{
972 struct btrfs_root_item *root_item;
973 struct btrfs_super_block *super;
974
975 super = &root->fs_info->super_copy;
976
977 root_item = &root->fs_info->chunk_root->root_item;
978 super->chunk_root = root_item->bytenr;
979 super->chunk_root_generation = root_item->generation;
980 super->chunk_root_level = root_item->level;
981
982 root_item = &root->fs_info->tree_root->root_item;
983 super->root = root_item->bytenr;
984 super->generation = root_item->generation;
985 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -0400986 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
987 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400988}
989
Chris Masonf36f3042009-07-30 10:04:48 -0400990int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
991{
992 int ret = 0;
993 spin_lock(&info->new_trans_lock);
994 if (info->running_transaction)
995 ret = info->running_transaction->in_commit;
996 spin_unlock(&info->new_trans_lock);
997 return ret;
998}
999
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001000int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1001{
1002 int ret = 0;
1003 spin_lock(&info->new_trans_lock);
1004 if (info->running_transaction)
1005 ret = info->running_transaction->blocked;
1006 spin_unlock(&info->new_trans_lock);
1007 return ret;
1008}
1009
Sage Weilbb9c12c2010-10-29 15:37:34 -04001010/*
1011 * wait for the current transaction commit to start and block subsequent
1012 * transaction joins
1013 */
1014static void wait_current_trans_commit_start(struct btrfs_root *root,
1015 struct btrfs_transaction *trans)
1016{
1017 DEFINE_WAIT(wait);
1018
1019 if (trans->in_commit)
1020 return;
1021
1022 while (1) {
1023 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1024 TASK_UNINTERRUPTIBLE);
1025 if (trans->in_commit) {
1026 finish_wait(&root->fs_info->transaction_blocked_wait,
1027 &wait);
1028 break;
1029 }
1030 mutex_unlock(&root->fs_info->trans_mutex);
1031 schedule();
1032 mutex_lock(&root->fs_info->trans_mutex);
1033 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1034 }
1035}
1036
1037/*
1038 * wait for the current transaction to start and then become unblocked.
1039 * caller holds ref.
1040 */
1041static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1042 struct btrfs_transaction *trans)
1043{
1044 DEFINE_WAIT(wait);
1045
1046 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1047 return;
1048
1049 while (1) {
1050 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1051 TASK_UNINTERRUPTIBLE);
1052 if (trans->commit_done ||
1053 (trans->in_commit && !trans->blocked)) {
1054 finish_wait(&root->fs_info->transaction_wait,
1055 &wait);
1056 break;
1057 }
1058 mutex_unlock(&root->fs_info->trans_mutex);
1059 schedule();
1060 mutex_lock(&root->fs_info->trans_mutex);
1061 finish_wait(&root->fs_info->transaction_wait,
1062 &wait);
1063 }
1064}
1065
1066/*
1067 * commit transactions asynchronously. once btrfs_commit_transaction_async
1068 * returns, any subsequent transaction will not be allowed to join.
1069 */
1070struct btrfs_async_commit {
1071 struct btrfs_trans_handle *newtrans;
1072 struct btrfs_root *root;
1073 struct delayed_work work;
1074};
1075
1076static void do_async_commit(struct work_struct *work)
1077{
1078 struct btrfs_async_commit *ac =
1079 container_of(work, struct btrfs_async_commit, work.work);
1080
1081 btrfs_commit_transaction(ac->newtrans, ac->root);
1082 kfree(ac);
1083}
1084
1085int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1086 struct btrfs_root *root,
1087 int wait_for_unblock)
1088{
1089 struct btrfs_async_commit *ac;
1090 struct btrfs_transaction *cur_trans;
1091
1092 ac = kmalloc(sizeof(*ac), GFP_NOFS);
1093 BUG_ON(!ac);
1094
1095 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1096 ac->root = root;
1097 ac->newtrans = btrfs_join_transaction(root, 0);
1098
1099 /* take transaction reference */
1100 mutex_lock(&root->fs_info->trans_mutex);
1101 cur_trans = trans->transaction;
1102 cur_trans->use_count++;
1103 mutex_unlock(&root->fs_info->trans_mutex);
1104
1105 btrfs_end_transaction(trans, root);
1106 schedule_delayed_work(&ac->work, 0);
1107
1108 /* wait for transaction to start and unblock */
1109 mutex_lock(&root->fs_info->trans_mutex);
1110 if (wait_for_unblock)
1111 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1112 else
1113 wait_current_trans_commit_start(root, cur_trans);
1114 put_transaction(cur_trans);
1115 mutex_unlock(&root->fs_info->trans_mutex);
1116
1117 return 0;
1118}
1119
1120/*
1121 * btrfs_transaction state sequence:
1122 * in_commit = 0, blocked = 0 (initial)
1123 * in_commit = 1, blocked = 1
1124 * blocked = 0
1125 * commit_done = 1
1126 */
Chris Mason79154b12007-03-22 15:59:16 -04001127int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1128 struct btrfs_root *root)
1129{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001130 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001131 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001132 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001133 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001134 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001135 int should_grow = 0;
1136 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001137 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001138
Chris Mason5a3f23d2009-03-31 13:27:11 -04001139 btrfs_run_ordered_operations(root, 0);
1140
Chris Mason56bec292009-03-13 10:10:06 -04001141 /* make a pass through all the delayed refs we have so far
1142 * any runnings procs may add more while we are here
1143 */
1144 ret = btrfs_run_delayed_refs(trans, root, 0);
1145 BUG_ON(ret);
1146
Yan, Zhenga22285a2010-05-16 10:48:46 -04001147 btrfs_trans_release_metadata(trans, root);
1148
Chris Masonb7ec40d2009-03-12 20:12:45 -04001149 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001150 /*
1151 * set the flushing flag so procs in this transaction have to
1152 * start sending their work down.
1153 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001154 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001155
Chris Masonc3e69d52009-03-13 10:17:05 -04001156 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001157 BUG_ON(ret);
1158
Chris Mason79154b12007-03-22 15:59:16 -04001159 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001160 if (cur_trans->in_commit) {
1161 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001162 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001163 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001164
Chris Mason79154b12007-03-22 15:59:16 -04001165 ret = wait_for_commit(root, cur_trans);
1166 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001167
1168 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001169 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001170 mutex_unlock(&root->fs_info->trans_mutex);
1171
Chris Mason79154b12007-03-22 15:59:16 -04001172 return 0;
1173 }
Chris Mason4313b392008-01-03 09:08:48 -05001174
Chris Mason2c90e5d2007-04-02 10:50:19 -04001175 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001176 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001177 wake_up(&root->fs_info->transaction_blocked_wait);
1178
Chris Masonccd467d2007-06-28 15:57:36 -04001179 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1180 prev_trans = list_entry(cur_trans->list.prev,
1181 struct btrfs_transaction, list);
1182 if (!prev_trans->commit_done) {
1183 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001184 mutex_unlock(&root->fs_info->trans_mutex);
1185
1186 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001187
Chris Masonccd467d2007-06-28 15:57:36 -04001188 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001189 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001190 }
1191 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001192
Chris Mason89573b92009-03-12 20:12:45 -04001193 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1194 should_grow = 1;
1195
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001196 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001197 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001198 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001199 if (!list_empty(&trans->transaction->pending_snapshots))
1200 snap_pending = 1;
1201
Chris Mason2c90e5d2007-04-02 10:50:19 -04001202 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001203 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001204
Sage Weil0bdb1db2010-02-19 14:13:50 -08001205 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001206 btrfs_start_delalloc_inodes(root, 1);
1207 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001208 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001209 }
1210
Chris Mason5a3f23d2009-03-31 13:27:11 -04001211 /*
1212 * rename don't use btrfs_join_transaction, so, once we
1213 * set the transaction to blocked above, we aren't going
1214 * to get any new ordered operations. We can safely run
1215 * it here and no for sure that nothing new will be added
1216 * to the list
1217 */
1218 btrfs_run_ordered_operations(root, 1);
1219
Chris Masoned3b3d3142010-05-25 10:12:41 -04001220 prepare_to_wait(&cur_trans->writer_wait, &wait,
1221 TASK_UNINTERRUPTIBLE);
1222
Chris Mason89573b92009-03-12 20:12:45 -04001223 smp_mb();
Sage Weil99d16cb2010-10-29 15:37:34 -04001224 if (cur_trans->num_writers > 1)
1225 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1226 else if (should_grow)
1227 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001228
Chris Mason79154b12007-03-22 15:59:16 -04001229 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001230 finish_wait(&cur_trans->writer_wait, &wait);
1231 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001232 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001233
Chris Mason3063d292008-01-08 15:46:30 -05001234 ret = create_pending_snapshots(trans, root->fs_info);
1235 BUG_ON(ret);
1236
Chris Mason56bec292009-03-13 10:10:06 -04001237 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1238 BUG_ON(ret);
1239
Chris Mason2c90e5d2007-04-02 10:50:19 -04001240 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001241
Chris Masone02119d2008-09-05 16:13:11 -04001242 /* btrfs_commit_tree_roots is responsible for getting the
1243 * various roots consistent with each other. Every pointer
1244 * in the tree of tree roots has to point to the most up to date
1245 * root for every subvolume and other tree. So, we have to keep
1246 * the tree logging code from jumping in and changing any
1247 * of the trees.
1248 *
1249 * At this point in the commit, there can't be any tree-log
1250 * writers, but a little lower down we drop the trans mutex
1251 * and let new people in. By holding the tree_log_mutex
1252 * from now until after the super is written, we avoid races
1253 * with the tree-log code.
1254 */
1255 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001256
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001257 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001258 BUG_ON(ret);
1259
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001260 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001261 * safe to free the root of tree log roots
1262 */
1263 btrfs_free_log_root_tree(trans, root->fs_info);
1264
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001265 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001266 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001267
Yan Zheng11833d62009-09-11 16:11:19 -04001268 btrfs_prepare_extent_commit(trans, root);
1269
Chris Mason78fae272007-03-25 11:35:08 -04001270 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001271 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001272 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001273 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001274
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1276 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001277 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001278
1279 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1280 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001281 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001282
1283 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001284
1285 if (!root->fs_info->log_root_recovering) {
1286 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1287 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1288 }
1289
Chris Masona061fc82008-05-07 11:43:44 -04001290 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1291 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001292
Chris Masonf9295742008-07-17 12:54:14 -04001293 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001294
Chris Masonf9295742008-07-17 12:54:14 -04001295 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001296
Chris Mason78fae272007-03-25 11:35:08 -04001297 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001298 ret = btrfs_write_and_wait_transaction(trans, root);
1299 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001300 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001301
Chris Masone02119d2008-09-05 16:13:11 -04001302 /*
1303 * the super is written, we can safely allow the tree-loggers
1304 * to go about their business
1305 */
1306 mutex_unlock(&root->fs_info->tree_log_mutex);
1307
Yan Zheng11833d62009-09-11 16:11:19 -04001308 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001309
Zheng Yan1a40e232008-09-26 10:09:34 -04001310 mutex_lock(&root->fs_info->trans_mutex);
1311
Chris Mason2c90e5d2007-04-02 10:50:19 -04001312 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001313
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001314 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001315
Chris Mason2c90e5d2007-04-02 10:50:19 -04001316 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001317
Chris Mason79154b12007-03-22 15:59:16 -04001318 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001319 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001320
Chris Mason78fae272007-03-25 11:35:08 -04001321 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001322
Josef Bacik9ed74f22009-09-11 16:12:44 -04001323 if (current->journal_info == trans)
1324 current->journal_info = NULL;
1325
Chris Mason2c90e5d2007-04-02 10:50:19 -04001326 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001327
1328 if (current != root->fs_info->transaction_kthread)
1329 btrfs_run_delayed_iputs(root);
1330
Chris Mason79154b12007-03-22 15:59:16 -04001331 return ret;
1332}
1333
Chris Masond352ac62008-09-29 15:18:18 -04001334/*
1335 * interface function to delete all the snapshots we have scheduled for deletion
1336 */
Chris Masone9d0b132007-08-10 14:06:19 -04001337int btrfs_clean_old_snapshots(struct btrfs_root *root)
1338{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001339 LIST_HEAD(list);
1340 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001341
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 mutex_lock(&fs_info->trans_mutex);
1343 list_splice_init(&fs_info->dead_roots, &list);
1344 mutex_unlock(&fs_info->trans_mutex);
1345
1346 while (!list_empty(&list)) {
1347 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001348 list_del(&root->root_list);
1349
1350 if (btrfs_header_backref_rev(root->node) <
1351 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001352 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001353 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001354 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001355 }
1356 return 0;
1357}