blob: 70bfb26df967f93af0fa044abe89ba97344c2d60 [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{
Josef Bacik13c5a932011-04-11 15:45:29 -040035 WARN_ON(atomic_read(&transaction->use_count) == 0);
36 if (atomic_dec_and_test(&transaction->use_count)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040037 memset(transaction, 0, sizeof(*transaction));
38 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040039 }
Chris Mason79154b12007-03-22 15:59:16 -040040}
41
Josef Bacik817d52f2009-07-13 21:29:25 -040042static noinline void switch_commit_root(struct btrfs_root *root)
43{
Josef Bacik817d52f2009-07-13 21:29:25 -040044 free_extent_buffer(root->commit_root);
45 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040046}
47
Chris Masond352ac62008-09-29 15:18:18 -040048/*
49 * either allocate a new transaction or hop into the existing one
50 */
Chris Mason80b67942008-02-01 16:35:04 -050051static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040052{
53 struct btrfs_transaction *cur_trans;
54 cur_trans = root->fs_info->running_transaction;
55 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040056 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
57 GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000058 if (!cur_trans)
59 return -ENOMEM;
Chris Mason0f7d52f2007-04-09 10:42:37 -040060 root->fs_info->generation++;
Josef Bacik13c5a932011-04-11 15:45:29 -040061 atomic_set(&cur_trans->num_writers, 1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040062 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040063 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040064 init_waitqueue_head(&cur_trans->writer_wait);
65 init_waitqueue_head(&cur_trans->commit_wait);
66 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040067 cur_trans->blocked = 0;
Josef Bacik13c5a932011-04-11 15:45:29 -040068 atomic_set(&cur_trans->use_count, 1);
Chris Mason79154b12007-03-22 15:59:16 -040069 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040070 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040071
Eric Paris6bef4d32010-02-23 19:43:04 +000072 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040073 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040074 cur_trans->delayed_refs.num_heads_ready = 0;
75 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040076 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040077 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040078 spin_lock_init(&cur_trans->delayed_refs.lock);
79
Chris Mason3063d292008-01-08 15:46:30 -050080 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040081 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050082 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040083 root->fs_info->btree_inode->i_mapping,
84 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040085 spin_lock(&root->fs_info->new_trans_lock);
86 root->fs_info->running_transaction = cur_trans;
87 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040088 } else {
Josef Bacik13c5a932011-04-11 15:45:29 -040089 atomic_inc(&cur_trans->num_writers);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040090 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040091 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040092
Chris Mason79154b12007-03-22 15:59:16 -040093 return 0;
94}
95
Chris Masond352ac62008-09-29 15:18:18 -040096/*
Chris Masond3977122009-01-05 21:25:51 -050097 * this does all the record keeping required to make sure that a reference
98 * counted root is properly recorded in a given transaction. This is required
99 * to make sure the old root from before we joined the transaction is deleted
100 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400101 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400102static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
103 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400104{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400105 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400106 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400107 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400108
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
110 (unsigned long)root->root_key.objectid,
111 BTRFS_ROOT_TRANS_TAG);
112 root->last_trans = trans->transid;
113 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400114 }
115 return 0;
116}
117
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400118int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
119 struct btrfs_root *root)
120{
121 if (!root->ref_cows)
122 return 0;
123
124 mutex_lock(&root->fs_info->trans_mutex);
125 if (root->last_trans == trans->transid) {
126 mutex_unlock(&root->fs_info->trans_mutex);
127 return 0;
128 }
129
130 record_root_in_trans(trans, root);
131 mutex_unlock(&root->fs_info->trans_mutex);
132 return 0;
133}
134
Chris Masond352ac62008-09-29 15:18:18 -0400135/* wait for commit against the current transaction to become unblocked
136 * when this is done, it is safe to start a new transaction, but the current
137 * transaction might not be fully on disk.
138 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400139static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400140{
Chris Masonf9295742008-07-17 12:54:14 -0400141 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400142
Chris Masonf9295742008-07-17 12:54:14 -0400143 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400144 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400145 DEFINE_WAIT(wait);
Josef Bacik13c5a932011-04-11 15:45:29 -0400146 atomic_inc(&cur_trans->use_count);
Chris Masond3977122009-01-05 21:25:51 -0500147 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400148 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
149 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000150 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400151 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000152 mutex_unlock(&root->fs_info->trans_mutex);
153 schedule();
154 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400155 }
Zhao Lei471fa172010-03-25 12:35:14 +0000156 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400157 put_transaction(cur_trans);
158 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400159}
160
Josef Bacik249ac1e2009-11-10 21:23:48 -0500161enum btrfs_trans_type {
162 TRANS_START,
163 TRANS_JOIN,
164 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500166};
167
Yan, Zhenga22285a2010-05-16 10:48:46 -0400168static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400169{
Chris Mason4bef0842008-09-08 11:18:08 -0400170 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500171 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
172 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400173 return 1;
174 return 0;
175}
176
177static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
178 u64 num_items, int type)
179{
180 struct btrfs_trans_handle *h;
181 struct btrfs_transaction *cur_trans;
Josef Bacik06d5a582011-04-05 11:57:27 -0400182 int retries = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400183 int ret;
liuboacce9522011-01-06 19:30:25 +0800184
185 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
186 return ERR_PTR(-EROFS);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400187again:
188 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
189 if (!h)
190 return ERR_PTR(-ENOMEM);
191
Josef Bacik0af3d002010-06-21 14:48:16 -0400192 if (type != TRANS_JOIN_NOLOCK)
193 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400194 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400195 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400196
Chris Mason79154b12007-03-22 15:59:16 -0400197 ret = join_transaction(root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000198 if (ret < 0) {
Yoshinori Sano6e8df2a2011-04-03 12:31:28 +0000199 kmem_cache_free(btrfs_trans_handle_cachep, h);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000200 if (type != TRANS_JOIN_NOLOCK)
201 mutex_unlock(&root->fs_info->trans_mutex);
202 return ERR_PTR(ret);
203 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400204
Yan, Zhenga22285a2010-05-16 10:48:46 -0400205 cur_trans = root->fs_info->running_transaction;
Josef Bacik13c5a932011-04-11 15:45:29 -0400206 atomic_inc(&cur_trans->use_count);
Josef Bacik0af3d002010-06-21 14:48:16 -0400207 if (type != TRANS_JOIN_NOLOCK)
208 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400209
210 h->transid = cur_trans->transid;
211 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400212 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500213 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400214 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400215 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400216 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400217
Yan, Zhenga22285a2010-05-16 10:48:46 -0400218 smp_mb();
219 if (cur_trans->blocked && may_wait_transaction(root, type)) {
220 btrfs_commit_transaction(h, root);
221 goto again;
222 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400223
Yan, Zhenga22285a2010-05-16 10:48:46 -0400224 if (num_items > 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400225 ret = btrfs_trans_reserve_metadata(h, root, num_items);
Josef Bacik06d5a582011-04-05 11:57:27 -0400226 if (ret == -EAGAIN && !retries) {
227 retries++;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400228 btrfs_commit_transaction(h, root);
229 goto again;
Josef Bacik06d5a582011-04-05 11:57:27 -0400230 } else if (ret == -EAGAIN) {
231 /*
232 * We have already retried and got EAGAIN, so really we
233 * don't have space, so set ret to -ENOSPC.
234 */
235 ret = -ENOSPC;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400236 }
Josef Bacik06d5a582011-04-05 11:57:27 -0400237
Yan, Zhenga22285a2010-05-16 10:48:46 -0400238 if (ret < 0) {
239 btrfs_end_transaction(h, root);
240 return ERR_PTR(ret);
241 }
242 }
243
Josef Bacik0af3d002010-06-21 14:48:16 -0400244 if (type != TRANS_JOIN_NOLOCK)
245 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400246 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400247 if (type != TRANS_JOIN_NOLOCK)
248 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400249
250 if (!current->journal_info && type != TRANS_USERSPACE)
251 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400252 return h;
253}
254
Chris Masonf9295742008-07-17 12:54:14 -0400255struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400256 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400257{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400258 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400259}
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400260struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root)
Chris Masonf9295742008-07-17 12:54:14 -0400261{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400262 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400263}
264
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400265struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root)
Josef Bacik0af3d002010-06-21 14:48:16 -0400266{
267 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
268}
269
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400270struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root)
Sage Weil9ca9ee02008-08-04 10:41:27 -0400271{
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400272 return start_transaction(root, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400273}
274
Chris Masond352ac62008-09-29 15:18:18 -0400275/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400276static noinline int wait_for_commit(struct btrfs_root *root,
277 struct btrfs_transaction *commit)
278{
279 DEFINE_WAIT(wait);
280 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500281 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400282 prepare_to_wait(&commit->commit_wait, &wait,
283 TASK_UNINTERRUPTIBLE);
284 if (commit->commit_done)
285 break;
286 mutex_unlock(&root->fs_info->trans_mutex);
287 schedule();
288 mutex_lock(&root->fs_info->trans_mutex);
289 }
290 mutex_unlock(&root->fs_info->trans_mutex);
291 finish_wait(&commit->commit_wait, &wait);
292 return 0;
293}
294
Sage Weil46204592010-10-29 15:41:32 -0400295int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
296{
297 struct btrfs_transaction *cur_trans = NULL, *t;
298 int ret;
299
300 mutex_lock(&root->fs_info->trans_mutex);
301
302 ret = 0;
303 if (transid) {
304 if (transid <= root->fs_info->last_trans_committed)
305 goto out_unlock;
306
307 /* find specified transaction */
308 list_for_each_entry(t, &root->fs_info->trans_list, list) {
309 if (t->transid == transid) {
310 cur_trans = t;
311 break;
312 }
313 if (t->transid > transid)
314 break;
315 }
316 ret = -EINVAL;
317 if (!cur_trans)
318 goto out_unlock; /* bad transid */
319 } else {
320 /* find newest transaction that is committing | committed */
321 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
322 list) {
323 if (t->in_commit) {
324 if (t->commit_done)
325 goto out_unlock;
326 cur_trans = t;
327 break;
328 }
329 }
330 if (!cur_trans)
331 goto out_unlock; /* nothing committing|committed */
332 }
333
Josef Bacik13c5a932011-04-11 15:45:29 -0400334 atomic_inc(&cur_trans->use_count);
Sage Weil46204592010-10-29 15:41:32 -0400335 mutex_unlock(&root->fs_info->trans_mutex);
336
337 wait_for_commit(root, cur_trans);
338
339 mutex_lock(&root->fs_info->trans_mutex);
340 put_transaction(cur_trans);
341 ret = 0;
342out_unlock:
343 mutex_unlock(&root->fs_info->trans_mutex);
344 return ret;
345}
346
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400347#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400348/*
Chris Masond3977122009-01-05 21:25:51 -0500349 * rate limit against the drop_snapshot code. This helps to slow down new
350 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400351 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400352static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400353{
354 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400355 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400356
Chris Mason2dd3e672008-08-04 08:20:15 -0400357harder:
Chris Masonab78c842008-07-29 16:15:18 -0400358 if (atomic_read(&info->throttles)) {
359 DEFINE_WAIT(wait);
360 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400361 thr = atomic_read(&info->throttle_gen);
362
363 do {
364 prepare_to_wait(&info->transaction_throttle,
365 &wait, TASK_UNINTERRUPTIBLE);
366 if (!atomic_read(&info->throttles)) {
367 finish_wait(&info->transaction_throttle, &wait);
368 break;
369 }
370 schedule();
371 finish_wait(&info->transaction_throttle, &wait);
372 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400373 harder_count++;
374
375 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
376 harder_count < 2)
377 goto harder;
378
379 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
380 harder_count < 10)
381 goto harder;
382
383 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
384 harder_count < 20)
385 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400386 }
387}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400388#endif
Chris Masonab78c842008-07-29 16:15:18 -0400389
Chris Mason37d1aee2008-07-31 10:48:37 -0400390void btrfs_throttle(struct btrfs_root *root)
391{
392 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400393 if (!root->fs_info->open_ioctl_trans)
394 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400395 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400396}
397
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400398static int should_end_transaction(struct btrfs_trans_handle *trans,
399 struct btrfs_root *root)
400{
401 int ret;
402 ret = btrfs_block_rsv_check(trans, root,
403 &root->fs_info->global_block_rsv, 0, 5);
404 return ret ? 1 : 0;
405}
406
407int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
408 struct btrfs_root *root)
409{
410 struct btrfs_transaction *cur_trans = trans->transaction;
411 int updates;
412
413 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
414 return 1;
415
416 updates = trans->delayed_ref_updates;
417 trans->delayed_ref_updates = 0;
418 if (updates)
419 btrfs_run_delayed_refs(trans, root, updates);
420
421 return should_end_transaction(trans, root);
422}
423
Chris Mason89ce8a62008-06-25 16:01:31 -0400424static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400425 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400426{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400427 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400428 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400429 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400430
Chris Masonc3e69d52009-03-13 10:17:05 -0400431 while (count < 4) {
432 unsigned long cur = trans->delayed_ref_updates;
433 trans->delayed_ref_updates = 0;
434 if (cur &&
435 trans->transaction->delayed_refs.num_heads_ready > 64) {
436 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400437
438 /*
439 * do a full flush if the transaction is trying
440 * to close
441 */
442 if (trans->transaction->delayed_refs.flushing)
443 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400444 btrfs_run_delayed_refs(trans, root, cur);
445 } else {
446 break;
447 }
448 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400449 }
450
Yan, Zhenga22285a2010-05-16 10:48:46 -0400451 btrfs_trans_release_metadata(trans, root);
452
Josef Bacik0af3d002010-06-21 14:48:16 -0400453 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400454 should_end_transaction(trans, root))
455 trans->transaction->blocked = 1;
456
Josef Bacik0af3d002010-06-21 14:48:16 -0400457 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400458 if (throttle)
459 return btrfs_commit_transaction(trans, root);
460 else
461 wake_up_process(info->transaction_kthread);
462 }
463
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400464 WARN_ON(cur_trans != info->running_transaction);
Josef Bacik13c5a932011-04-11 15:45:29 -0400465 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
466 atomic_dec(&cur_trans->num_writers);
Chris Mason89ce8a62008-06-25 16:01:31 -0400467
Sage Weil99d16cb2010-10-29 15:37:34 -0400468 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400469 if (waitqueue_active(&cur_trans->writer_wait))
470 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400471 put_transaction(cur_trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400472
473 if (current->journal_info == trans)
474 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400475 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400476 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400477
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000478 if (throttle)
479 btrfs_run_delayed_iputs(root);
480
Chris Mason79154b12007-03-22 15:59:16 -0400481 return 0;
482}
483
Chris Mason89ce8a62008-06-25 16:01:31 -0400484int btrfs_end_transaction(struct btrfs_trans_handle *trans,
485 struct btrfs_root *root)
486{
Josef Bacik0af3d002010-06-21 14:48:16 -0400487 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400488}
489
490int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
491 struct btrfs_root *root)
492{
Josef Bacik0af3d002010-06-21 14:48:16 -0400493 return __btrfs_end_transaction(trans, root, 1, 1);
494}
495
496int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
497 struct btrfs_root *root)
498{
499 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400500}
501
Chris Masond352ac62008-09-29 15:18:18 -0400502/*
503 * when btree blocks are allocated, they have some corresponding bits set for
504 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400505 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400506 */
Chris Mason690587d2009-10-13 13:29:19 -0400507int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000508 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400509{
Chris Mason7c4452b2007-04-28 09:29:35 -0400510 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400511 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400512 int werr = 0;
513 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400514 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400515 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400516 u64 end;
517 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400518
Chris Masond3977122009-01-05 21:25:51 -0500519 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400520 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000521 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400522 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400523 break;
Chris Masond3977122009-01-05 21:25:51 -0500524 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400525 cond_resched();
526
Chris Mason5f39d392007-10-15 16:14:19 -0400527 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400528 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400529 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400530 if (!page)
531 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400532
533 btree_lock_page_hook(page);
534 if (!page->mapping) {
535 unlock_page(page);
536 page_cache_release(page);
537 continue;
538 }
539
Chris Mason6702ed42007-08-07 16:15:09 -0400540 if (PageWriteback(page)) {
541 if (PageDirty(page))
542 wait_on_page_writeback(page);
543 else {
544 unlock_page(page);
545 page_cache_release(page);
546 continue;
547 }
548 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400549 err = write_one_page(page, 0);
550 if (err)
551 werr = err;
552 page_cache_release(page);
553 }
554 }
Chris Mason690587d2009-10-13 13:29:19 -0400555 if (err)
556 werr = err;
557 return werr;
558}
559
560/*
561 * when btree blocks are allocated, they have some corresponding bits set for
562 * them in one of two extent_io trees. This is used to make sure all of
563 * those extents are on disk for transaction or log commit. We wait
564 * on all the pages and clear them from the dirty pages state tree
565 */
566int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000567 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400568{
569 int ret;
570 int err = 0;
571 int werr = 0;
572 struct page *page;
573 struct inode *btree_inode = root->fs_info->btree_inode;
574 u64 start = 0;
575 u64 end;
576 unsigned long index;
577
Chris Masond3977122009-01-05 21:25:51 -0500578 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000579 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
580 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400581 if (ret)
582 break;
583
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000584 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500585 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400586 index = start >> PAGE_CACHE_SHIFT;
587 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
588 page = find_get_page(btree_inode->i_mapping, index);
589 if (!page)
590 continue;
591 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400592 btree_lock_page_hook(page);
593 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400594 err = write_one_page(page, 0);
595 if (err)
596 werr = err;
597 }
Chris Mason105d9312008-11-18 12:13:12 -0500598 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400599 page_cache_release(page);
600 cond_resched();
601 }
602 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400603 if (err)
604 werr = err;
605 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400606}
607
Chris Mason690587d2009-10-13 13:29:19 -0400608/*
609 * when btree blocks are allocated, they have some corresponding bits set for
610 * them in one of two extent_io trees. This is used to make sure all of
611 * those extents are on disk for transaction or log commit
612 */
613int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000614 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400615{
616 int ret;
617 int ret2;
618
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000619 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
620 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400621 return ret || ret2;
622}
623
Chris Masond0c803c2008-09-11 16:17:57 -0400624int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
625 struct btrfs_root *root)
626{
627 if (!trans || !trans->transaction) {
628 struct inode *btree_inode;
629 btree_inode = root->fs_info->btree_inode;
630 return filemap_write_and_wait(btree_inode->i_mapping);
631 }
632 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000633 &trans->transaction->dirty_pages,
634 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400635}
636
Chris Masond352ac62008-09-29 15:18:18 -0400637/*
638 * this is used to update the root pointer in the tree of tree roots.
639 *
640 * But, in the case of the extent allocation tree, updating the root
641 * pointer may allocate blocks which may change the root of the extent
642 * allocation tree.
643 *
644 * So, this loops and repeats and makes sure the cowonly root didn't
645 * change while the root pointer was being updated in the metadata.
646 */
Chris Mason0b86a832008-03-24 15:01:56 -0400647static int update_cowonly_root(struct btrfs_trans_handle *trans,
648 struct btrfs_root *root)
649{
650 int ret;
651 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000652 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400653 struct btrfs_root *tree_root = root->fs_info->tree_root;
654
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000655 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400656 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400657
Chris Masond3977122009-01-05 21:25:51 -0500658 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400659 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000660 if (old_root_bytenr == root->node->start &&
661 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400662 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400663
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400664 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400665 ret = btrfs_update_root(trans, tree_root,
666 &root->root_key,
667 &root->root_item);
668 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400669
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000670 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400671 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400672 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400673 }
Yan Zheng276e6802009-07-30 09:40:40 -0400674
675 if (root != root->fs_info->extent_root)
676 switch_commit_root(root);
677
Chris Mason0b86a832008-03-24 15:01:56 -0400678 return 0;
679}
680
Chris Masond352ac62008-09-29 15:18:18 -0400681/*
682 * update all the cowonly tree roots on disk
683 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400684static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
685 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400686{
Chris Mason79154b12007-03-22 15:59:16 -0400687 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400688 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400689 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400690 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400691
Chris Mason56bec292009-03-13 10:10:06 -0400692 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
693 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400694
Yan Zheng84234f32008-10-29 14:49:05 -0400695 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400696 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400697 btrfs_tree_unlock(eb);
698 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400699
Chris Mason56bec292009-03-13 10:10:06 -0400700 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
701 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400702
Chris Masond3977122009-01-05 21:25:51 -0500703 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400704 next = fs_info->dirty_cowonly_roots.next;
705 list_del_init(next);
706 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400707
Chris Mason0b86a832008-03-24 15:01:56 -0400708 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400709 }
Yan Zheng276e6802009-07-30 09:40:40 -0400710
711 down_write(&fs_info->extent_commit_sem);
712 switch_commit_root(fs_info->extent_root);
713 up_write(&fs_info->extent_commit_sem);
714
Chris Mason79154b12007-03-22 15:59:16 -0400715 return 0;
716}
717
Chris Masond352ac62008-09-29 15:18:18 -0400718/*
719 * dead roots are old snapshots that need to be deleted. This allocates
720 * a dirty root struct and adds it into the list of dead roots that need to
721 * be deleted
722 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400724{
Yan Zhengb48652c2008-08-04 23:23:47 -0400725 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400726 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400727 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400728 return 0;
729}
730
Chris Masond352ac62008-09-29 15:18:18 -0400731/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400732 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400733 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400734static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
735 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400736{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400737 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400738 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400739 int i;
740 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400741 int err = 0;
742
Chris Masond3977122009-01-05 21:25:51 -0500743 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400744 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
745 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400746 ARRAY_SIZE(gang),
747 BTRFS_ROOT_TRANS_TAG);
748 if (ret == 0)
749 break;
750 for (i = 0; i < ret; i++) {
751 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400752 radix_tree_tag_clear(&fs_info->fs_roots_radix,
753 (unsigned long)root->root_key.objectid,
754 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400755
Chris Masone02119d2008-09-05 16:13:11 -0400756 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400757 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400758 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400759
Yan Zheng978d9102009-06-15 20:01:02 -0400760 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400761 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400762 btrfs_set_root_node(&root->root_item,
763 root->node);
764 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400765
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400766 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400767 &root->root_key,
768 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400769 if (err)
770 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400771 }
772 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400773 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400774}
775
Chris Masond352ac62008-09-29 15:18:18 -0400776/*
777 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
778 * otherwise every leaf in the btree is read and defragged.
779 */
Chris Masone9d0b132007-08-10 14:06:19 -0400780int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
781{
782 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400783 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400784 int ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400785 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400786
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400787 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400788 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400789
Chris Mason6b800532007-10-15 16:17:34 -0400790 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400791 trans = btrfs_start_transaction(root, 0);
792 if (IS_ERR(trans))
793 return PTR_ERR(trans);
794
Chris Masone9d0b132007-08-10 14:06:19 -0400795 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400796
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400797 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400798 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400799 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400800 cond_resched();
801
Chris Mason3f157a22008-06-25 16:01:31 -0400802 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400803 break;
804 }
805 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400806 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400807}
808
Yan Zheng2c47e6052009-06-27 21:07:35 -0400809#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400810/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400811 * when dropping snapshots, we generate a ton of delayed refs, and it makes
812 * sense not to join the transaction while it is trying to flush the current
813 * queue of delayed refs out.
814 *
815 * This is used by the drop snapshot code only
816 */
817static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
818{
819 DEFINE_WAIT(wait);
820
821 mutex_lock(&info->trans_mutex);
822 while (info->running_transaction &&
823 info->running_transaction->delayed_refs.flushing) {
824 prepare_to_wait(&info->transaction_wait, &wait,
825 TASK_UNINTERRUPTIBLE);
826 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400827
Chris Masonb7ec40d2009-03-12 20:12:45 -0400828 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400829
Chris Masonb7ec40d2009-03-12 20:12:45 -0400830 mutex_lock(&info->trans_mutex);
831 finish_wait(&info->transaction_wait, &wait);
832 }
833 mutex_unlock(&info->trans_mutex);
834 return 0;
835}
836
837/*
Chris Masond352ac62008-09-29 15:18:18 -0400838 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
839 * all of them
840 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400841int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400842{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400843 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400844 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400845 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400846 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400847
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400848 while (1) {
849 /*
850 * we don't want to jump in and create a bunch of
851 * delayed refs if the transaction is starting to close
852 */
853 wait_transaction_pre_flush(tree_root->fs_info);
854 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400855
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400856 /*
857 * we've joined a transaction, make sure it isn't
858 * closing right now
859 */
860 if (trans->transaction->delayed_refs.flushing) {
861 btrfs_end_transaction(trans, tree_root);
862 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400863 }
Chris Masona2135012008-06-25 16:01:30 -0400864
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400865 ret = btrfs_drop_snapshot(trans, root);
866 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400867 break;
Chris Masona2135012008-06-25 16:01:30 -0400868
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400869 ret = btrfs_update_root(trans, tree_root,
870 &root->root_key,
871 &root->root_item);
872 if (ret)
873 break;
Yanbcc63ab2008-07-30 16:29:20 -0400874
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400875 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400876 ret = btrfs_end_transaction(trans, tree_root);
877 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400878
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400879 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400880 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400881 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400882 BUG_ON(ret);
883
884 ret = btrfs_del_root(trans, tree_root, &root->root_key);
885 BUG_ON(ret);
886
887 nr = trans->blocks_used;
888 ret = btrfs_end_transaction(trans, tree_root);
889 BUG_ON(ret);
890
891 free_extent_buffer(root->node);
892 free_extent_buffer(root->commit_root);
893 kfree(root);
894
895 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400896 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400897}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400898#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400899
Chris Masond352ac62008-09-29 15:18:18 -0400900/*
901 * new snapshots need to be created at a very specific time in the
902 * transaction commit. This does the actual creation
903 */
Chris Mason80b67942008-02-01 16:35:04 -0500904static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500905 struct btrfs_fs_info *fs_info,
906 struct btrfs_pending_snapshot *pending)
907{
908 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500909 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500910 struct btrfs_root *tree_root = fs_info->tree_root;
911 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000912 struct btrfs_root *parent_root;
913 struct inode *parent_inode;
Josef Bacik6a912212010-11-20 09:48:00 +0000914 struct dentry *parent;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400915 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500916 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400917 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500918 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400919 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000920 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400921 u64 objectid;
Li Zefanb83cc962010-12-20 16:04:08 +0800922 u64 root_flags;
Chris Mason3063d292008-01-08 15:46:30 -0500923
Chris Mason80b67942008-02-01 16:35:04 -0500924 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
925 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400926 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500927 goto fail;
928 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929
Chris Mason3063d292008-01-08 15:46:30 -0500930 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400931 if (ret) {
932 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500933 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400934 }
Chris Mason3063d292008-01-08 15:46:30 -0500935
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400936 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400937 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
938
939 if (to_reserve > 0) {
940 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400941 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400942 if (ret) {
943 pending->error = ret;
944 goto fail;
945 }
946 }
947
Chris Mason3063d292008-01-08 15:46:30 -0500948 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400949 key.offset = (u64)-1;
950 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500951
Yan, Zhenga22285a2010-05-16 10:48:46 -0400952 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000953
Yan, Zhenga22285a2010-05-16 10:48:46 -0400954 dentry = pending->dentry;
Josef Bacik6a912212010-11-20 09:48:00 +0000955 parent = dget_parent(dentry);
956 parent_inode = parent->d_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400957 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000958 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400959
Sage Weil6bdb72d2010-03-15 17:27:13 +0000960 /*
961 * insert the directory item
962 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000963 ret = btrfs_set_inode_index(parent_inode, &index);
964 BUG_ON(ret);
965 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400966 dentry->d_name.name, dentry->d_name.len,
967 parent_inode->i_ino, &key,
968 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000969 BUG_ON(ret);
970
Yan, Zhenga22285a2010-05-16 10:48:46 -0400971 btrfs_i_size_write(parent_inode, parent_inode->i_size +
972 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000973 ret = btrfs_update_inode(trans, parent_root, parent_inode);
974 BUG_ON(ret);
975
976 record_root_in_trans(trans, root);
977 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
978 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Li Zefan08fe4db2011-03-28 02:01:25 +0000979 btrfs_check_and_init_root_item(new_root_item);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000980
Li Zefanb83cc962010-12-20 16:04:08 +0800981 root_flags = btrfs_root_flags(new_root_item);
982 if (pending->readonly)
983 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
984 else
985 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
986 btrfs_set_root_flags(new_root_item, root_flags);
987
Chris Mason925baed2008-06-25 16:01:30 -0400988 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400989 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400990 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500991
Chris Mason925baed2008-06-25 16:01:30 -0400992 btrfs_copy_root(trans, root, old, &tmp, objectid);
993 btrfs_tree_unlock(old);
994 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500995
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400996 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400997 /* record when the snapshot was created in key.offset */
998 key.offset = trans->transid;
999 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -04001000 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -05001001 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -05001002 BUG_ON(ret);
1003
Yan, Zhenga22285a2010-05-16 10:48:46 -04001004 /*
1005 * insert root back/forward references
1006 */
1007 ret = btrfs_add_root_ref(trans, tree_root, objectid,
1008 parent_root->root_key.objectid,
1009 parent_inode->i_ino, index,
1010 dentry->d_name.name, dentry->d_name.len);
1011 BUG_ON(ret);
Josef Bacik6a912212010-11-20 09:48:00 +00001012 dput(parent);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001013
1014 key.offset = (u64)-1;
1015 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
1016 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -04001017
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001018 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001019 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -05001020fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +00001021 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001022 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
1023 return 0;
Chris Mason3063d292008-01-08 15:46:30 -05001024}
1025
Chris Masond352ac62008-09-29 15:18:18 -04001026/*
1027 * create all the snapshots we've scheduled for creation
1028 */
Chris Mason80b67942008-02-01 16:35:04 -05001029static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1030 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -05001031{
1032 struct btrfs_pending_snapshot *pending;
1033 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -05001034 int ret;
1035
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001036 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -05001037 ret = create_pending_snapshot(trans, fs_info, pending);
1038 BUG_ON(ret);
1039 }
1040 return 0;
1041}
1042
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043static void update_super_roots(struct btrfs_root *root)
1044{
1045 struct btrfs_root_item *root_item;
1046 struct btrfs_super_block *super;
1047
1048 super = &root->fs_info->super_copy;
1049
1050 root_item = &root->fs_info->chunk_root->root_item;
1051 super->chunk_root = root_item->bytenr;
1052 super->chunk_root_generation = root_item->generation;
1053 super->chunk_root_level = root_item->level;
1054
1055 root_item = &root->fs_info->tree_root->root_item;
1056 super->root = root_item->bytenr;
1057 super->generation = root_item->generation;
1058 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -04001059 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
1060 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061}
1062
Chris Masonf36f3042009-07-30 10:04:48 -04001063int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1064{
1065 int ret = 0;
1066 spin_lock(&info->new_trans_lock);
1067 if (info->running_transaction)
1068 ret = info->running_transaction->in_commit;
1069 spin_unlock(&info->new_trans_lock);
1070 return ret;
1071}
1072
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001073int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1074{
1075 int ret = 0;
1076 spin_lock(&info->new_trans_lock);
1077 if (info->running_transaction)
1078 ret = info->running_transaction->blocked;
1079 spin_unlock(&info->new_trans_lock);
1080 return ret;
1081}
1082
Sage Weilbb9c12c2010-10-29 15:37:34 -04001083/*
1084 * wait for the current transaction commit to start and block subsequent
1085 * transaction joins
1086 */
1087static void wait_current_trans_commit_start(struct btrfs_root *root,
1088 struct btrfs_transaction *trans)
1089{
1090 DEFINE_WAIT(wait);
1091
1092 if (trans->in_commit)
1093 return;
1094
1095 while (1) {
1096 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1097 TASK_UNINTERRUPTIBLE);
1098 if (trans->in_commit) {
1099 finish_wait(&root->fs_info->transaction_blocked_wait,
1100 &wait);
1101 break;
1102 }
1103 mutex_unlock(&root->fs_info->trans_mutex);
1104 schedule();
1105 mutex_lock(&root->fs_info->trans_mutex);
1106 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1107 }
1108}
1109
1110/*
1111 * wait for the current transaction to start and then become unblocked.
1112 * caller holds ref.
1113 */
1114static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1115 struct btrfs_transaction *trans)
1116{
1117 DEFINE_WAIT(wait);
1118
1119 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1120 return;
1121
1122 while (1) {
1123 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1124 TASK_UNINTERRUPTIBLE);
1125 if (trans->commit_done ||
1126 (trans->in_commit && !trans->blocked)) {
1127 finish_wait(&root->fs_info->transaction_wait,
1128 &wait);
1129 break;
1130 }
1131 mutex_unlock(&root->fs_info->trans_mutex);
1132 schedule();
1133 mutex_lock(&root->fs_info->trans_mutex);
1134 finish_wait(&root->fs_info->transaction_wait,
1135 &wait);
1136 }
1137}
1138
1139/*
1140 * commit transactions asynchronously. once btrfs_commit_transaction_async
1141 * returns, any subsequent transaction will not be allowed to join.
1142 */
1143struct btrfs_async_commit {
1144 struct btrfs_trans_handle *newtrans;
1145 struct btrfs_root *root;
1146 struct delayed_work work;
1147};
1148
1149static void do_async_commit(struct work_struct *work)
1150{
1151 struct btrfs_async_commit *ac =
1152 container_of(work, struct btrfs_async_commit, work.work);
1153
1154 btrfs_commit_transaction(ac->newtrans, ac->root);
1155 kfree(ac);
1156}
1157
1158int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1159 struct btrfs_root *root,
1160 int wait_for_unblock)
1161{
1162 struct btrfs_async_commit *ac;
1163 struct btrfs_transaction *cur_trans;
1164
1165 ac = kmalloc(sizeof(*ac), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001166 if (!ac)
1167 return -ENOMEM;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001168
1169 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1170 ac->root = root;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001171 ac->newtrans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001172 if (IS_ERR(ac->newtrans)) {
1173 int err = PTR_ERR(ac->newtrans);
1174 kfree(ac);
1175 return err;
1176 }
Sage Weilbb9c12c2010-10-29 15:37:34 -04001177
1178 /* take transaction reference */
1179 mutex_lock(&root->fs_info->trans_mutex);
1180 cur_trans = trans->transaction;
Josef Bacik13c5a932011-04-11 15:45:29 -04001181 atomic_inc(&cur_trans->use_count);
Sage Weilbb9c12c2010-10-29 15:37:34 -04001182 mutex_unlock(&root->fs_info->trans_mutex);
1183
1184 btrfs_end_transaction(trans, root);
1185 schedule_delayed_work(&ac->work, 0);
1186
1187 /* wait for transaction to start and unblock */
1188 mutex_lock(&root->fs_info->trans_mutex);
1189 if (wait_for_unblock)
1190 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1191 else
1192 wait_current_trans_commit_start(root, cur_trans);
1193 put_transaction(cur_trans);
1194 mutex_unlock(&root->fs_info->trans_mutex);
1195
1196 return 0;
1197}
1198
1199/*
1200 * btrfs_transaction state sequence:
1201 * in_commit = 0, blocked = 0 (initial)
1202 * in_commit = 1, blocked = 1
1203 * blocked = 0
1204 * commit_done = 1
1205 */
Chris Mason79154b12007-03-22 15:59:16 -04001206int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1207 struct btrfs_root *root)
1208{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001209 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001210 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001211 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001212 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001213 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001214 int should_grow = 0;
1215 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001216 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001217
Chris Mason5a3f23d2009-03-31 13:27:11 -04001218 btrfs_run_ordered_operations(root, 0);
1219
Chris Mason56bec292009-03-13 10:10:06 -04001220 /* make a pass through all the delayed refs we have so far
1221 * any runnings procs may add more while we are here
1222 */
1223 ret = btrfs_run_delayed_refs(trans, root, 0);
1224 BUG_ON(ret);
1225
Yan, Zhenga22285a2010-05-16 10:48:46 -04001226 btrfs_trans_release_metadata(trans, root);
1227
Chris Masonb7ec40d2009-03-12 20:12:45 -04001228 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001229 /*
1230 * set the flushing flag so procs in this transaction have to
1231 * start sending their work down.
1232 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001233 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001234
Chris Masonc3e69d52009-03-13 10:17:05 -04001235 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001236 BUG_ON(ret);
1237
Chris Mason79154b12007-03-22 15:59:16 -04001238 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001239 if (cur_trans->in_commit) {
Josef Bacik13c5a932011-04-11 15:45:29 -04001240 atomic_inc(&cur_trans->use_count);
Chris Masonccd467d2007-06-28 15:57:36 -04001241 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001242 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001243
Chris Mason79154b12007-03-22 15:59:16 -04001244 ret = wait_for_commit(root, cur_trans);
1245 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001246
1247 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001248 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001249 mutex_unlock(&root->fs_info->trans_mutex);
1250
Chris Mason79154b12007-03-22 15:59:16 -04001251 return 0;
1252 }
Chris Mason4313b392008-01-03 09:08:48 -05001253
Chris Mason2c90e5d2007-04-02 10:50:19 -04001254 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001255 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001256 wake_up(&root->fs_info->transaction_blocked_wait);
1257
Chris Masonccd467d2007-06-28 15:57:36 -04001258 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1259 prev_trans = list_entry(cur_trans->list.prev,
1260 struct btrfs_transaction, list);
1261 if (!prev_trans->commit_done) {
Josef Bacik13c5a932011-04-11 15:45:29 -04001262 atomic_inc(&prev_trans->use_count);
Chris Masonccd467d2007-06-28 15:57:36 -04001263 mutex_unlock(&root->fs_info->trans_mutex);
1264
1265 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001266
Chris Masonccd467d2007-06-28 15:57:36 -04001267 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001268 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001269 }
1270 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001271
Chris Mason89573b92009-03-12 20:12:45 -04001272 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1273 should_grow = 1;
1274
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001275 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001276 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001277 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001278 if (!list_empty(&trans->transaction->pending_snapshots))
1279 snap_pending = 1;
1280
Chris Mason2c90e5d2007-04-02 10:50:19 -04001281 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001282 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001283
Sage Weil0bdb1db2010-02-19 14:13:50 -08001284 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001285 btrfs_start_delalloc_inodes(root, 1);
1286 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d92009-07-24 13:17:44 -04001287 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001288 }
1289
Chris Mason5a3f23d2009-03-31 13:27:11 -04001290 /*
1291 * rename don't use btrfs_join_transaction, so, once we
1292 * set the transaction to blocked above, we aren't going
1293 * to get any new ordered operations. We can safely run
1294 * it here and no for sure that nothing new will be added
1295 * to the list
1296 */
1297 btrfs_run_ordered_operations(root, 1);
1298
Chris Masoned3b3d3142010-05-25 10:12:41 -04001299 prepare_to_wait(&cur_trans->writer_wait, &wait,
1300 TASK_UNINTERRUPTIBLE);
1301
Chris Mason89573b92009-03-12 20:12:45 -04001302 smp_mb();
Josef Bacik13c5a932011-04-11 15:45:29 -04001303 if (atomic_read(&cur_trans->num_writers) > 1)
Sage Weil99d16cb2010-10-29 15:37:34 -04001304 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1305 else if (should_grow)
1306 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001307
Chris Mason79154b12007-03-22 15:59:16 -04001308 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001309 finish_wait(&cur_trans->writer_wait, &wait);
Josef Bacik13c5a932011-04-11 15:45:29 -04001310 } while (atomic_read(&cur_trans->num_writers) > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001311 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001312
Chris Mason3063d292008-01-08 15:46:30 -05001313 ret = create_pending_snapshots(trans, root->fs_info);
1314 BUG_ON(ret);
1315
Chris Mason56bec292009-03-13 10:10:06 -04001316 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1317 BUG_ON(ret);
1318
Chris Mason2c90e5d2007-04-02 10:50:19 -04001319 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001320
Chris Masone02119d2008-09-05 16:13:11 -04001321 /* btrfs_commit_tree_roots is responsible for getting the
1322 * various roots consistent with each other. Every pointer
1323 * in the tree of tree roots has to point to the most up to date
1324 * root for every subvolume and other tree. So, we have to keep
1325 * the tree logging code from jumping in and changing any
1326 * of the trees.
1327 *
1328 * At this point in the commit, there can't be any tree-log
1329 * writers, but a little lower down we drop the trans mutex
1330 * and let new people in. By holding the tree_log_mutex
1331 * from now until after the super is written, we avoid races
1332 * with the tree-log code.
1333 */
1334 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001335
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001337 BUG_ON(ret);
1338
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001339 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001340 * safe to free the root of tree log roots
1341 */
1342 btrfs_free_log_root_tree(trans, root->fs_info);
1343
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001344 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001345 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001346
Yan Zheng11833d62009-09-11 16:11:19 -04001347 btrfs_prepare_extent_commit(trans, root);
1348
Chris Mason78fae272007-03-25 11:35:08 -04001349 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001350 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001351 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001352 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001353
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001354 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1355 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001356 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001357
1358 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1359 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001360 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001361
1362 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001363
1364 if (!root->fs_info->log_root_recovering) {
1365 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1366 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1367 }
1368
Chris Masona061fc82008-05-07 11:43:44 -04001369 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1370 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001371
Chris Masonf9295742008-07-17 12:54:14 -04001372 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001373
Chris Masonf9295742008-07-17 12:54:14 -04001374 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001375
Chris Mason78fae272007-03-25 11:35:08 -04001376 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001377 ret = btrfs_write_and_wait_transaction(trans, root);
1378 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001379 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001380
Chris Masone02119d2008-09-05 16:13:11 -04001381 /*
1382 * the super is written, we can safely allow the tree-loggers
1383 * to go about their business
1384 */
1385 mutex_unlock(&root->fs_info->tree_log_mutex);
1386
Yan Zheng11833d62009-09-11 16:11:19 -04001387 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001388
Zheng Yan1a40e232008-09-26 10:09:34 -04001389 mutex_lock(&root->fs_info->trans_mutex);
1390
Chris Mason2c90e5d2007-04-02 10:50:19 -04001391 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001392
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001393 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001394
Chris Mason2c90e5d2007-04-02 10:50:19 -04001395 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001396
Josef Bacik13c5a932011-04-11 15:45:29 -04001397 list_del_init(&cur_trans->list);
Chris Mason79154b12007-03-22 15:59:16 -04001398 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001399 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001400
liubo1abe9b82011-03-24 11:18:59 +00001401 trace_btrfs_transaction_commit(root);
1402
Chris Mason78fae272007-03-25 11:35:08 -04001403 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001404
Josef Bacik9ed74f22009-09-11 16:12:44 -04001405 if (current->journal_info == trans)
1406 current->journal_info = NULL;
1407
Chris Mason2c90e5d2007-04-02 10:50:19 -04001408 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001409
1410 if (current != root->fs_info->transaction_kthread)
1411 btrfs_run_delayed_iputs(root);
1412
Chris Mason79154b12007-03-22 15:59:16 -04001413 return ret;
1414}
1415
Chris Masond352ac62008-09-29 15:18:18 -04001416/*
1417 * interface function to delete all the snapshots we have scheduled for deletion
1418 */
Chris Masone9d0b132007-08-10 14:06:19 -04001419int btrfs_clean_old_snapshots(struct btrfs_root *root)
1420{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001421 LIST_HEAD(list);
1422 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001423
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001424 mutex_lock(&fs_info->trans_mutex);
1425 list_splice_init(&fs_info->dead_roots, &list);
1426 mutex_unlock(&fs_info->trans_mutex);
1427
1428 while (!list_empty(&list)) {
1429 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001430 list_del(&root->root_list);
1431
1432 if (btrfs_header_backref_rev(root->node) <
1433 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001434 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001435 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001436 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001437 }
1438 return 0;
1439}