blob: 1fffbc017bdfe0451cc2e67ccf5fd85623a12aee [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 Masond3c2fdcf2007-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
Sage Weil46204592010-10-29 15:41:32 -0400282int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
283{
284 struct btrfs_transaction *cur_trans = NULL, *t;
285 int ret;
286
287 mutex_lock(&root->fs_info->trans_mutex);
288
289 ret = 0;
290 if (transid) {
291 if (transid <= root->fs_info->last_trans_committed)
292 goto out_unlock;
293
294 /* find specified transaction */
295 list_for_each_entry(t, &root->fs_info->trans_list, list) {
296 if (t->transid == transid) {
297 cur_trans = t;
298 break;
299 }
300 if (t->transid > transid)
301 break;
302 }
303 ret = -EINVAL;
304 if (!cur_trans)
305 goto out_unlock; /* bad transid */
306 } else {
307 /* find newest transaction that is committing | committed */
308 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
309 list) {
310 if (t->in_commit) {
311 if (t->commit_done)
312 goto out_unlock;
313 cur_trans = t;
314 break;
315 }
316 }
317 if (!cur_trans)
318 goto out_unlock; /* nothing committing|committed */
319 }
320
321 cur_trans->use_count++;
322 mutex_unlock(&root->fs_info->trans_mutex);
323
324 wait_for_commit(root, cur_trans);
325
326 mutex_lock(&root->fs_info->trans_mutex);
327 put_transaction(cur_trans);
328 ret = 0;
329out_unlock:
330 mutex_unlock(&root->fs_info->trans_mutex);
331 return ret;
332}
333
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400334#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400335/*
Chris Masond3977122009-01-05 21:25:51 -0500336 * rate limit against the drop_snapshot code. This helps to slow down new
337 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400338 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400339static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400340{
341 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400342 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400343
Chris Mason2dd3e672008-08-04 08:20:15 -0400344harder:
Chris Masonab78c842008-07-29 16:15:18 -0400345 if (atomic_read(&info->throttles)) {
346 DEFINE_WAIT(wait);
347 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400348 thr = atomic_read(&info->throttle_gen);
349
350 do {
351 prepare_to_wait(&info->transaction_throttle,
352 &wait, TASK_UNINTERRUPTIBLE);
353 if (!atomic_read(&info->throttles)) {
354 finish_wait(&info->transaction_throttle, &wait);
355 break;
356 }
357 schedule();
358 finish_wait(&info->transaction_throttle, &wait);
359 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400360 harder_count++;
361
362 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
363 harder_count < 2)
364 goto harder;
365
366 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
367 harder_count < 10)
368 goto harder;
369
370 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
371 harder_count < 20)
372 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400373 }
374}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400375#endif
Chris Masonab78c842008-07-29 16:15:18 -0400376
Chris Mason37d1aee2008-07-31 10:48:37 -0400377void btrfs_throttle(struct btrfs_root *root)
378{
379 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400380 if (!root->fs_info->open_ioctl_trans)
381 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400382 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400383}
384
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400385static int should_end_transaction(struct btrfs_trans_handle *trans,
386 struct btrfs_root *root)
387{
388 int ret;
389 ret = btrfs_block_rsv_check(trans, root,
390 &root->fs_info->global_block_rsv, 0, 5);
391 return ret ? 1 : 0;
392}
393
394int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
395 struct btrfs_root *root)
396{
397 struct btrfs_transaction *cur_trans = trans->transaction;
398 int updates;
399
400 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
401 return 1;
402
403 updates = trans->delayed_ref_updates;
404 trans->delayed_ref_updates = 0;
405 if (updates)
406 btrfs_run_delayed_refs(trans, root, updates);
407
408 return should_end_transaction(trans, root);
409}
410
Chris Mason89ce8a62008-06-25 16:01:31 -0400411static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400412 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400413{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400414 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400415 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400416 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400417
Chris Masonc3e69d52009-03-13 10:17:05 -0400418 while (count < 4) {
419 unsigned long cur = trans->delayed_ref_updates;
420 trans->delayed_ref_updates = 0;
421 if (cur &&
422 trans->transaction->delayed_refs.num_heads_ready > 64) {
423 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400424
425 /*
426 * do a full flush if the transaction is trying
427 * to close
428 */
429 if (trans->transaction->delayed_refs.flushing)
430 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400431 btrfs_run_delayed_refs(trans, root, cur);
432 } else {
433 break;
434 }
435 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400436 }
437
Yan, Zhenga22285a2010-05-16 10:48:46 -0400438 btrfs_trans_release_metadata(trans, root);
439
Josef Bacik0af3d002010-06-21 14:48:16 -0400440 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400441 should_end_transaction(trans, root))
442 trans->transaction->blocked = 1;
443
Josef Bacik0af3d002010-06-21 14:48:16 -0400444 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400445 if (throttle)
446 return btrfs_commit_transaction(trans, root);
447 else
448 wake_up_process(info->transaction_kthread);
449 }
450
Josef Bacik0af3d002010-06-21 14:48:16 -0400451 if (lock)
452 mutex_lock(&info->trans_mutex);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400453 WARN_ON(cur_trans != info->running_transaction);
Chris Masond5719762007-03-23 10:01:08 -0400454 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400455 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400456
Sage Weil99d16cb2010-10-29 15:37:34 -0400457 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400458 if (waitqueue_active(&cur_trans->writer_wait))
459 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400460 put_transaction(cur_trans);
Josef Bacik0af3d002010-06-21 14:48:16 -0400461 if (lock)
462 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400463
464 if (current->journal_info == trans)
465 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400466 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400467 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400468
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000469 if (throttle)
470 btrfs_run_delayed_iputs(root);
471
Chris Mason79154b12007-03-22 15:59:16 -0400472 return 0;
473}
474
Chris Mason89ce8a62008-06-25 16:01:31 -0400475int btrfs_end_transaction(struct btrfs_trans_handle *trans,
476 struct btrfs_root *root)
477{
Josef Bacik0af3d002010-06-21 14:48:16 -0400478 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400479}
480
481int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
482 struct btrfs_root *root)
483{
Josef Bacik0af3d002010-06-21 14:48:16 -0400484 return __btrfs_end_transaction(trans, root, 1, 1);
485}
486
487int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
488 struct btrfs_root *root)
489{
490 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400491}
492
Chris Masond352ac62008-09-29 15:18:18 -0400493/*
494 * when btree blocks are allocated, they have some corresponding bits set for
495 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400496 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400497 */
Chris Mason690587d2009-10-13 13:29:19 -0400498int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000499 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400500{
Chris Mason7c4452b2007-04-28 09:29:35 -0400501 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400502 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400503 int werr = 0;
504 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400505 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400506 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400507 u64 end;
508 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400509
Chris Masond3977122009-01-05 21:25:51 -0500510 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400511 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000512 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400513 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400514 break;
Chris Masond3977122009-01-05 21:25:51 -0500515 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400516 cond_resched();
517
Chris Mason5f39d392007-10-15 16:14:19 -0400518 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400519 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400520 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400521 if (!page)
522 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400523
524 btree_lock_page_hook(page);
525 if (!page->mapping) {
526 unlock_page(page);
527 page_cache_release(page);
528 continue;
529 }
530
Chris Mason6702ed42007-08-07 16:15:09 -0400531 if (PageWriteback(page)) {
532 if (PageDirty(page))
533 wait_on_page_writeback(page);
534 else {
535 unlock_page(page);
536 page_cache_release(page);
537 continue;
538 }
539 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400540 err = write_one_page(page, 0);
541 if (err)
542 werr = err;
543 page_cache_release(page);
544 }
545 }
Chris Mason690587d2009-10-13 13:29:19 -0400546 if (err)
547 werr = err;
548 return werr;
549}
550
551/*
552 * when btree blocks are allocated, they have some corresponding bits set for
553 * them in one of two extent_io trees. This is used to make sure all of
554 * those extents are on disk for transaction or log commit. We wait
555 * on all the pages and clear them from the dirty pages state tree
556 */
557int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000558 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400559{
560 int ret;
561 int err = 0;
562 int werr = 0;
563 struct page *page;
564 struct inode *btree_inode = root->fs_info->btree_inode;
565 u64 start = 0;
566 u64 end;
567 unsigned long index;
568
Chris Masond3977122009-01-05 21:25:51 -0500569 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000570 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
571 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400572 if (ret)
573 break;
574
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000575 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500576 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400577 index = start >> PAGE_CACHE_SHIFT;
578 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
579 page = find_get_page(btree_inode->i_mapping, index);
580 if (!page)
581 continue;
582 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400583 btree_lock_page_hook(page);
584 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400585 err = write_one_page(page, 0);
586 if (err)
587 werr = err;
588 }
Chris Mason105d9312008-11-18 12:13:12 -0500589 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400590 page_cache_release(page);
591 cond_resched();
592 }
593 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400594 if (err)
595 werr = err;
596 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400597}
598
Chris Mason690587d2009-10-13 13:29:19 -0400599/*
600 * when btree blocks are allocated, they have some corresponding bits set for
601 * them in one of two extent_io trees. This is used to make sure all of
602 * those extents are on disk for transaction or log commit
603 */
604int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000605 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400606{
607 int ret;
608 int ret2;
609
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000610 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
611 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400612 return ret || ret2;
613}
614
Chris Masond0c803c2008-09-11 16:17:57 -0400615int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
616 struct btrfs_root *root)
617{
618 if (!trans || !trans->transaction) {
619 struct inode *btree_inode;
620 btree_inode = root->fs_info->btree_inode;
621 return filemap_write_and_wait(btree_inode->i_mapping);
622 }
623 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000624 &trans->transaction->dirty_pages,
625 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400626}
627
Chris Masond352ac62008-09-29 15:18:18 -0400628/*
629 * this is used to update the root pointer in the tree of tree roots.
630 *
631 * But, in the case of the extent allocation tree, updating the root
632 * pointer may allocate blocks which may change the root of the extent
633 * allocation tree.
634 *
635 * So, this loops and repeats and makes sure the cowonly root didn't
636 * change while the root pointer was being updated in the metadata.
637 */
Chris Mason0b86a832008-03-24 15:01:56 -0400638static int update_cowonly_root(struct btrfs_trans_handle *trans,
639 struct btrfs_root *root)
640{
641 int ret;
642 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000643 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400644 struct btrfs_root *tree_root = root->fs_info->tree_root;
645
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000646 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400647 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400648
Chris Masond3977122009-01-05 21:25:51 -0500649 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400650 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000651 if (old_root_bytenr == root->node->start &&
652 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400653 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400654
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400655 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400656 ret = btrfs_update_root(trans, tree_root,
657 &root->root_key,
658 &root->root_item);
659 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400660
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000661 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400662 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400663 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400664 }
Yan Zheng276e6802009-07-30 09:40:40 -0400665
666 if (root != root->fs_info->extent_root)
667 switch_commit_root(root);
668
Chris Mason0b86a832008-03-24 15:01:56 -0400669 return 0;
670}
671
Chris Masond352ac62008-09-29 15:18:18 -0400672/*
673 * update all the cowonly tree roots on disk
674 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400675static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
676 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400677{
Chris Mason79154b12007-03-22 15:59:16 -0400678 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400679 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400680 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400681 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400682
Chris Mason56bec292009-03-13 10:10:06 -0400683 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
684 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400685
Yan Zheng84234f32008-10-29 14:49:05 -0400686 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400687 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400688 btrfs_tree_unlock(eb);
689 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400690
Chris Mason56bec292009-03-13 10:10:06 -0400691 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
692 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400693
Chris Masond3977122009-01-05 21:25:51 -0500694 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400695 next = fs_info->dirty_cowonly_roots.next;
696 list_del_init(next);
697 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400698
Chris Mason0b86a832008-03-24 15:01:56 -0400699 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400700 }
Yan Zheng276e6802009-07-30 09:40:40 -0400701
702 down_write(&fs_info->extent_commit_sem);
703 switch_commit_root(fs_info->extent_root);
704 up_write(&fs_info->extent_commit_sem);
705
Chris Mason79154b12007-03-22 15:59:16 -0400706 return 0;
707}
708
Chris Masond352ac62008-09-29 15:18:18 -0400709/*
710 * dead roots are old snapshots that need to be deleted. This allocates
711 * a dirty root struct and adds it into the list of dead roots that need to
712 * be deleted
713 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400714int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400715{
Yan Zhengb48652c2008-08-04 23:23:47 -0400716 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400718 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400719 return 0;
720}
721
Chris Masond352ac62008-09-29 15:18:18 -0400722/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400724 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400725static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
726 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400727{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400728 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400729 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400730 int i;
731 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400732 int err = 0;
733
Chris Masond3977122009-01-05 21:25:51 -0500734 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400735 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
736 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400737 ARRAY_SIZE(gang),
738 BTRFS_ROOT_TRANS_TAG);
739 if (ret == 0)
740 break;
741 for (i = 0; i < ret; i++) {
742 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400743 radix_tree_tag_clear(&fs_info->fs_roots_radix,
744 (unsigned long)root->root_key.objectid,
745 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400746
Chris Masone02119d2008-09-05 16:13:11 -0400747 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400748 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400749 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400750
Yan Zheng978d9102009-06-15 20:01:02 -0400751 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400752 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400753 btrfs_set_root_node(&root->root_item,
754 root->node);
755 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400756
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400757 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400758 &root->root_key,
759 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400760 if (err)
761 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400762 }
763 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400764 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400765}
766
Chris Masond352ac62008-09-29 15:18:18 -0400767/*
768 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
769 * otherwise every leaf in the btree is read and defragged.
770 */
Chris Masone9d0b132007-08-10 14:06:19 -0400771int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
772{
773 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400774 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400775 int ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400776 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400777
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400778 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400779 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400780
Chris Mason6b800532007-10-15 16:17:34 -0400781 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400782 trans = btrfs_start_transaction(root, 0);
783 if (IS_ERR(trans))
784 return PTR_ERR(trans);
785
Chris Masone9d0b132007-08-10 14:06:19 -0400786 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400787
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400788 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400789 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400790 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400791 cond_resched();
792
Chris Mason3f157a22008-06-25 16:01:31 -0400793 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400794 break;
795 }
796 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400797 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400798}
799
Yan Zheng2c47e6052009-06-27 21:07:35 -0400800#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400801/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400802 * when dropping snapshots, we generate a ton of delayed refs, and it makes
803 * sense not to join the transaction while it is trying to flush the current
804 * queue of delayed refs out.
805 *
806 * This is used by the drop snapshot code only
807 */
808static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
809{
810 DEFINE_WAIT(wait);
811
812 mutex_lock(&info->trans_mutex);
813 while (info->running_transaction &&
814 info->running_transaction->delayed_refs.flushing) {
815 prepare_to_wait(&info->transaction_wait, &wait,
816 TASK_UNINTERRUPTIBLE);
817 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400818
Chris Masonb7ec40d2009-03-12 20:12:45 -0400819 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400820
Chris Masonb7ec40d2009-03-12 20:12:45 -0400821 mutex_lock(&info->trans_mutex);
822 finish_wait(&info->transaction_wait, &wait);
823 }
824 mutex_unlock(&info->trans_mutex);
825 return 0;
826}
827
828/*
Chris Masond352ac62008-09-29 15:18:18 -0400829 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
830 * all of them
831 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400832int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400833{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400834 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400835 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400836 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400837 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400838
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400839 while (1) {
840 /*
841 * we don't want to jump in and create a bunch of
842 * delayed refs if the transaction is starting to close
843 */
844 wait_transaction_pre_flush(tree_root->fs_info);
845 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400846
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400847 /*
848 * we've joined a transaction, make sure it isn't
849 * closing right now
850 */
851 if (trans->transaction->delayed_refs.flushing) {
852 btrfs_end_transaction(trans, tree_root);
853 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400854 }
Chris Masona2135012008-06-25 16:01:30 -0400855
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400856 ret = btrfs_drop_snapshot(trans, root);
857 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400858 break;
Chris Masona2135012008-06-25 16:01:30 -0400859
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400860 ret = btrfs_update_root(trans, tree_root,
861 &root->root_key,
862 &root->root_item);
863 if (ret)
864 break;
Yanbcc63ab2008-07-30 16:29:20 -0400865
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400866 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400867 ret = btrfs_end_transaction(trans, tree_root);
868 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400869
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400870 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400871 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400872 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873 BUG_ON(ret);
874
875 ret = btrfs_del_root(trans, tree_root, &root->root_key);
876 BUG_ON(ret);
877
878 nr = trans->blocks_used;
879 ret = btrfs_end_transaction(trans, tree_root);
880 BUG_ON(ret);
881
882 free_extent_buffer(root->node);
883 free_extent_buffer(root->commit_root);
884 kfree(root);
885
886 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400887 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400888}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400889#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400890
Chris Masond352ac62008-09-29 15:18:18 -0400891/*
892 * new snapshots need to be created at a very specific time in the
893 * transaction commit. This does the actual creation
894 */
Chris Mason80b67942008-02-01 16:35:04 -0500895static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500896 struct btrfs_fs_info *fs_info,
897 struct btrfs_pending_snapshot *pending)
898{
899 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500900 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500901 struct btrfs_root *tree_root = fs_info->tree_root;
902 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000903 struct btrfs_root *parent_root;
904 struct inode *parent_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400905 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500906 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400907 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500908 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400909 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000910 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400911 u64 objectid;
Chris Mason3063d292008-01-08 15:46:30 -0500912
Chris Mason80b67942008-02-01 16:35:04 -0500913 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
914 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400915 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500916 goto fail;
917 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400918
Chris Mason3063d292008-01-08 15:46:30 -0500919 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400920 if (ret) {
921 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500922 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400923 }
Chris Mason3063d292008-01-08 15:46:30 -0500924
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400925 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400926 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
927
928 if (to_reserve > 0) {
929 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400930 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400931 if (ret) {
932 pending->error = ret;
933 goto fail;
934 }
935 }
936
Chris Mason3063d292008-01-08 15:46:30 -0500937 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400938 key.offset = (u64)-1;
939 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500940
Yan, Zhenga22285a2010-05-16 10:48:46 -0400941 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000942
Yan, Zhenga22285a2010-05-16 10:48:46 -0400943 dentry = pending->dentry;
944 parent_inode = dentry->d_parent->d_inode;
945 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000946 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400947
Sage Weil6bdb72d2010-03-15 17:27:13 +0000948 /*
949 * insert the directory item
950 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000951 ret = btrfs_set_inode_index(parent_inode, &index);
952 BUG_ON(ret);
953 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400954 dentry->d_name.name, dentry->d_name.len,
955 parent_inode->i_ino, &key,
956 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000957 BUG_ON(ret);
958
Yan, Zhenga22285a2010-05-16 10:48:46 -0400959 btrfs_i_size_write(parent_inode, parent_inode->i_size +
960 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000961 ret = btrfs_update_inode(trans, parent_root, parent_inode);
962 BUG_ON(ret);
963
964 record_root_in_trans(trans, root);
965 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
966 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
967
Chris Mason925baed2008-06-25 16:01:30 -0400968 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400969 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400970 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500971
Chris Mason925baed2008-06-25 16:01:30 -0400972 btrfs_copy_root(trans, root, old, &tmp, objectid);
973 btrfs_tree_unlock(old);
974 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500975
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400976 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400977 /* record when the snapshot was created in key.offset */
978 key.offset = trans->transid;
979 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400980 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500981 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -0500982 BUG_ON(ret);
983
Yan, Zhenga22285a2010-05-16 10:48:46 -0400984 /*
985 * insert root back/forward references
986 */
987 ret = btrfs_add_root_ref(trans, tree_root, objectid,
988 parent_root->root_key.objectid,
989 parent_inode->i_ino, index,
990 dentry->d_name.name, dentry->d_name.len);
991 BUG_ON(ret);
992
993 key.offset = (u64)-1;
994 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
995 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -0400996
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400997 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400998 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500999fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +00001000 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001001 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
1002 return 0;
Chris Mason3063d292008-01-08 15:46:30 -05001003}
1004
Chris Masond352ac62008-09-29 15:18:18 -04001005/*
1006 * create all the snapshots we've scheduled for creation
1007 */
Chris Mason80b67942008-02-01 16:35:04 -05001008static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1009 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -05001010{
1011 struct btrfs_pending_snapshot *pending;
1012 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -05001013 int ret;
1014
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001015 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -05001016 ret = create_pending_snapshot(trans, fs_info, pending);
1017 BUG_ON(ret);
1018 }
1019 return 0;
1020}
1021
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001022static void update_super_roots(struct btrfs_root *root)
1023{
1024 struct btrfs_root_item *root_item;
1025 struct btrfs_super_block *super;
1026
1027 super = &root->fs_info->super_copy;
1028
1029 root_item = &root->fs_info->chunk_root->root_item;
1030 super->chunk_root = root_item->bytenr;
1031 super->chunk_root_generation = root_item->generation;
1032 super->chunk_root_level = root_item->level;
1033
1034 root_item = &root->fs_info->tree_root->root_item;
1035 super->root = root_item->bytenr;
1036 super->generation = root_item->generation;
1037 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -04001038 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
1039 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040}
1041
Chris Masonf36f3042009-07-30 10:04:48 -04001042int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1043{
1044 int ret = 0;
1045 spin_lock(&info->new_trans_lock);
1046 if (info->running_transaction)
1047 ret = info->running_transaction->in_commit;
1048 spin_unlock(&info->new_trans_lock);
1049 return ret;
1050}
1051
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001052int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1053{
1054 int ret = 0;
1055 spin_lock(&info->new_trans_lock);
1056 if (info->running_transaction)
1057 ret = info->running_transaction->blocked;
1058 spin_unlock(&info->new_trans_lock);
1059 return ret;
1060}
1061
Sage Weilbb9c12c2010-10-29 15:37:34 -04001062/*
1063 * wait for the current transaction commit to start and block subsequent
1064 * transaction joins
1065 */
1066static void wait_current_trans_commit_start(struct btrfs_root *root,
1067 struct btrfs_transaction *trans)
1068{
1069 DEFINE_WAIT(wait);
1070
1071 if (trans->in_commit)
1072 return;
1073
1074 while (1) {
1075 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1076 TASK_UNINTERRUPTIBLE);
1077 if (trans->in_commit) {
1078 finish_wait(&root->fs_info->transaction_blocked_wait,
1079 &wait);
1080 break;
1081 }
1082 mutex_unlock(&root->fs_info->trans_mutex);
1083 schedule();
1084 mutex_lock(&root->fs_info->trans_mutex);
1085 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1086 }
1087}
1088
1089/*
1090 * wait for the current transaction to start and then become unblocked.
1091 * caller holds ref.
1092 */
1093static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1094 struct btrfs_transaction *trans)
1095{
1096 DEFINE_WAIT(wait);
1097
1098 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1099 return;
1100
1101 while (1) {
1102 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1103 TASK_UNINTERRUPTIBLE);
1104 if (trans->commit_done ||
1105 (trans->in_commit && !trans->blocked)) {
1106 finish_wait(&root->fs_info->transaction_wait,
1107 &wait);
1108 break;
1109 }
1110 mutex_unlock(&root->fs_info->trans_mutex);
1111 schedule();
1112 mutex_lock(&root->fs_info->trans_mutex);
1113 finish_wait(&root->fs_info->transaction_wait,
1114 &wait);
1115 }
1116}
1117
1118/*
1119 * commit transactions asynchronously. once btrfs_commit_transaction_async
1120 * returns, any subsequent transaction will not be allowed to join.
1121 */
1122struct btrfs_async_commit {
1123 struct btrfs_trans_handle *newtrans;
1124 struct btrfs_root *root;
1125 struct delayed_work work;
1126};
1127
1128static void do_async_commit(struct work_struct *work)
1129{
1130 struct btrfs_async_commit *ac =
1131 container_of(work, struct btrfs_async_commit, work.work);
1132
1133 btrfs_commit_transaction(ac->newtrans, ac->root);
1134 kfree(ac);
1135}
1136
1137int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1138 struct btrfs_root *root,
1139 int wait_for_unblock)
1140{
1141 struct btrfs_async_commit *ac;
1142 struct btrfs_transaction *cur_trans;
1143
1144 ac = kmalloc(sizeof(*ac), GFP_NOFS);
1145 BUG_ON(!ac);
1146
1147 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1148 ac->root = root;
1149 ac->newtrans = btrfs_join_transaction(root, 0);
1150
1151 /* take transaction reference */
1152 mutex_lock(&root->fs_info->trans_mutex);
1153 cur_trans = trans->transaction;
1154 cur_trans->use_count++;
1155 mutex_unlock(&root->fs_info->trans_mutex);
1156
1157 btrfs_end_transaction(trans, root);
1158 schedule_delayed_work(&ac->work, 0);
1159
1160 /* wait for transaction to start and unblock */
1161 mutex_lock(&root->fs_info->trans_mutex);
1162 if (wait_for_unblock)
1163 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1164 else
1165 wait_current_trans_commit_start(root, cur_trans);
1166 put_transaction(cur_trans);
1167 mutex_unlock(&root->fs_info->trans_mutex);
1168
1169 return 0;
1170}
1171
1172/*
1173 * btrfs_transaction state sequence:
1174 * in_commit = 0, blocked = 0 (initial)
1175 * in_commit = 1, blocked = 1
1176 * blocked = 0
1177 * commit_done = 1
1178 */
Chris Mason79154b12007-03-22 15:59:16 -04001179int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1180 struct btrfs_root *root)
1181{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001182 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001183 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001184 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001185 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001186 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001187 int should_grow = 0;
1188 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001189 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001190
Chris Mason5a3f23d2009-03-31 13:27:11 -04001191 btrfs_run_ordered_operations(root, 0);
1192
Chris Mason56bec292009-03-13 10:10:06 -04001193 /* make a pass through all the delayed refs we have so far
1194 * any runnings procs may add more while we are here
1195 */
1196 ret = btrfs_run_delayed_refs(trans, root, 0);
1197 BUG_ON(ret);
1198
Yan, Zhenga22285a2010-05-16 10:48:46 -04001199 btrfs_trans_release_metadata(trans, root);
1200
Chris Masonb7ec40d2009-03-12 20:12:45 -04001201 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001202 /*
1203 * set the flushing flag so procs in this transaction have to
1204 * start sending their work down.
1205 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001206 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001207
Chris Masonc3e69d52009-03-13 10:17:05 -04001208 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001209 BUG_ON(ret);
1210
Chris Mason79154b12007-03-22 15:59:16 -04001211 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001212 if (cur_trans->in_commit) {
1213 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001214 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001215 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001216
Chris Mason79154b12007-03-22 15:59:16 -04001217 ret = wait_for_commit(root, cur_trans);
1218 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001219
1220 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001221 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001222 mutex_unlock(&root->fs_info->trans_mutex);
1223
Chris Mason79154b12007-03-22 15:59:16 -04001224 return 0;
1225 }
Chris Mason4313b392008-01-03 09:08:48 -05001226
Chris Mason2c90e5d2007-04-02 10:50:19 -04001227 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001228 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001229 wake_up(&root->fs_info->transaction_blocked_wait);
1230
Chris Masonccd467d2007-06-28 15:57:36 -04001231 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1232 prev_trans = list_entry(cur_trans->list.prev,
1233 struct btrfs_transaction, list);
1234 if (!prev_trans->commit_done) {
1235 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001236 mutex_unlock(&root->fs_info->trans_mutex);
1237
1238 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001239
Chris Masonccd467d2007-06-28 15:57:36 -04001240 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001241 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001242 }
1243 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001244
Chris Mason89573b92009-03-12 20:12:45 -04001245 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1246 should_grow = 1;
1247
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001248 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001249 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001250 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001251 if (!list_empty(&trans->transaction->pending_snapshots))
1252 snap_pending = 1;
1253
Chris Mason2c90e5d2007-04-02 10:50:19 -04001254 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001255 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001256
Sage Weil0bdb1db2010-02-19 14:13:50 -08001257 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001258 btrfs_start_delalloc_inodes(root, 1);
1259 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001260 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001261 }
1262
Chris Mason5a3f23d2009-03-31 13:27:11 -04001263 /*
1264 * rename don't use btrfs_join_transaction, so, once we
1265 * set the transaction to blocked above, we aren't going
1266 * to get any new ordered operations. We can safely run
1267 * it here and no for sure that nothing new will be added
1268 * to the list
1269 */
1270 btrfs_run_ordered_operations(root, 1);
1271
Chris Masoned3b3d3142010-05-25 10:12:41 -04001272 prepare_to_wait(&cur_trans->writer_wait, &wait,
1273 TASK_UNINTERRUPTIBLE);
1274
Chris Mason89573b92009-03-12 20:12:45 -04001275 smp_mb();
Sage Weil99d16cb2010-10-29 15:37:34 -04001276 if (cur_trans->num_writers > 1)
1277 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1278 else if (should_grow)
1279 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001280
Chris Mason79154b12007-03-22 15:59:16 -04001281 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001282 finish_wait(&cur_trans->writer_wait, &wait);
1283 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001284 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001285
Chris Mason3063d292008-01-08 15:46:30 -05001286 ret = create_pending_snapshots(trans, root->fs_info);
1287 BUG_ON(ret);
1288
Chris Mason56bec292009-03-13 10:10:06 -04001289 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1290 BUG_ON(ret);
1291
Chris Mason2c90e5d2007-04-02 10:50:19 -04001292 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001293
Chris Masone02119d2008-09-05 16:13:11 -04001294 /* btrfs_commit_tree_roots is responsible for getting the
1295 * various roots consistent with each other. Every pointer
1296 * in the tree of tree roots has to point to the most up to date
1297 * root for every subvolume and other tree. So, we have to keep
1298 * the tree logging code from jumping in and changing any
1299 * of the trees.
1300 *
1301 * At this point in the commit, there can't be any tree-log
1302 * writers, but a little lower down we drop the trans mutex
1303 * and let new people in. By holding the tree_log_mutex
1304 * from now until after the super is written, we avoid races
1305 * with the tree-log code.
1306 */
1307 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001308
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001309 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001310 BUG_ON(ret);
1311
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001312 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001313 * safe to free the root of tree log roots
1314 */
1315 btrfs_free_log_root_tree(trans, root->fs_info);
1316
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001317 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001318 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001319
Yan Zheng11833d62009-09-11 16:11:19 -04001320 btrfs_prepare_extent_commit(trans, root);
1321
Chris Mason78fae272007-03-25 11:35:08 -04001322 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001323 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001324 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001325 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001326
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001327 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1328 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001329 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330
1331 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1332 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001333 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001334
1335 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001336
1337 if (!root->fs_info->log_root_recovering) {
1338 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1339 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1340 }
1341
Chris Masona061fc82008-05-07 11:43:44 -04001342 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1343 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001344
Chris Masonf9295742008-07-17 12:54:14 -04001345 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001346
Chris Masonf9295742008-07-17 12:54:14 -04001347 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001348
Chris Mason78fae272007-03-25 11:35:08 -04001349 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001350 ret = btrfs_write_and_wait_transaction(trans, root);
1351 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001352 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001353
Chris Masone02119d2008-09-05 16:13:11 -04001354 /*
1355 * the super is written, we can safely allow the tree-loggers
1356 * to go about their business
1357 */
1358 mutex_unlock(&root->fs_info->tree_log_mutex);
1359
Yan Zheng11833d62009-09-11 16:11:19 -04001360 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001361
Zheng Yan1a40e232008-09-26 10:09:34 -04001362 mutex_lock(&root->fs_info->trans_mutex);
1363
Chris Mason2c90e5d2007-04-02 10:50:19 -04001364 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001365
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001366 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001367
Chris Mason2c90e5d2007-04-02 10:50:19 -04001368 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001369
Chris Mason79154b12007-03-22 15:59:16 -04001370 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001371 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001372
Chris Mason78fae272007-03-25 11:35:08 -04001373 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001374
Josef Bacik9ed74f22009-09-11 16:12:44 -04001375 if (current->journal_info == trans)
1376 current->journal_info = NULL;
1377
Chris Mason2c90e5d2007-04-02 10:50:19 -04001378 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001379
1380 if (current != root->fs_info->transaction_kthread)
1381 btrfs_run_delayed_iputs(root);
1382
Chris Mason79154b12007-03-22 15:59:16 -04001383 return ret;
1384}
1385
Chris Masond352ac62008-09-29 15:18:18 -04001386/*
1387 * interface function to delete all the snapshots we have scheduled for deletion
1388 */
Chris Masone9d0b132007-08-10 14:06:19 -04001389int btrfs_clean_old_snapshots(struct btrfs_root *root)
1390{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001391 LIST_HEAD(list);
1392 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001393
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001394 mutex_lock(&fs_info->trans_mutex);
1395 list_splice_init(&fs_info->dead_roots, &list);
1396 mutex_unlock(&fs_info->trans_mutex);
1397
1398 while (!list_empty(&list)) {
1399 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001400 list_del(&root->root_list);
1401
1402 if (btrfs_header_backref_rev(root->node) <
1403 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001404 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001405 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001406 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001407 }
1408 return 0;
1409}