blob: 4583008217e61c7039658614e2641fd72ab2ce5f [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Masond3c2fdc2007-09-17 10:58:06 -040022#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040023#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050024#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason80b67942008-02-01 16:35:04 -050033static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040034{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040038 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040041 }
Chris Mason79154b12007-03-22 15:59:16 -040042}
43
Josef Bacik817d52f2009-07-13 21:29:25 -040044static noinline void switch_commit_root(struct btrfs_root *root)
45{
Josef Bacik817d52f2009-07-13 21:29:25 -040046 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040048}
49
Chris Masond352ac62008-09-29 15:18:18 -040050/*
51 * either allocate a new transaction or hop into the existing one
52 */
Chris Mason80b67942008-02-01 16:35:04 -050053static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040054{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040058 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000060 if (!cur_trans)
61 return -ENOMEM;
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040063 cur_trans->num_writers = 1;
64 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040065 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040066 init_waitqueue_head(&cur_trans->writer_wait);
67 init_waitqueue_head(&cur_trans->commit_wait);
68 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040069 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040070 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040071 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040072 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040073
Eric Paris6bef4d32010-02-23 19:43:04 +000074 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040075 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040076 cur_trans->delayed_refs.num_heads_ready = 0;
77 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040078 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040079 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040080 spin_lock_init(&cur_trans->delayed_refs.lock);
81
Chris Mason3063d292008-01-08 15:46:30 -050082 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040083 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050084 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040085 root->fs_info->btree_inode->i_mapping,
86 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040087 spin_lock(&root->fs_info->new_trans_lock);
88 root->fs_info->running_transaction = cur_trans;
89 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040090 } else {
91 cur_trans->num_writers++;
92 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040093 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040094
Chris Mason79154b12007-03-22 15:59:16 -040095 return 0;
96}
97
Chris Masond352ac62008-09-29 15:18:18 -040098/*
Chris Masond3977122009-01-05 21:25:51 -050099 * this does all the record keeping required to make sure that a reference
100 * counted root is properly recorded in a given transaction. This is required
101 * to make sure the old root from before we joined the transaction is deleted
102 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400103 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400104static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
105 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400106{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400107 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400108 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400110
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400111 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
112 (unsigned long)root->root_key.objectid,
113 BTRFS_ROOT_TRANS_TAG);
114 root->last_trans = trans->transid;
115 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400116 }
117 return 0;
118}
119
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400120int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
121 struct btrfs_root *root)
122{
123 if (!root->ref_cows)
124 return 0;
125
126 mutex_lock(&root->fs_info->trans_mutex);
127 if (root->last_trans == trans->transid) {
128 mutex_unlock(&root->fs_info->trans_mutex);
129 return 0;
130 }
131
132 record_root_in_trans(trans, root);
133 mutex_unlock(&root->fs_info->trans_mutex);
134 return 0;
135}
136
Chris Masond352ac62008-09-29 15:18:18 -0400137/* wait for commit against the current transaction to become unblocked
138 * when this is done, it is safe to start a new transaction, but the current
139 * transaction might not be fully on disk.
140 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400141static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400142{
Chris Masonf9295742008-07-17 12:54:14 -0400143 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400144
Chris Masonf9295742008-07-17 12:54:14 -0400145 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400146 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400147 DEFINE_WAIT(wait);
148 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500149 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400150 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
151 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000152 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400153 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000154 mutex_unlock(&root->fs_info->trans_mutex);
155 schedule();
156 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400157 }
Zhao Lei471fa172010-03-25 12:35:14 +0000158 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400159 put_transaction(cur_trans);
160 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400161}
162
Josef Bacik249ac1e2009-11-10 21:23:48 -0500163enum btrfs_trans_type {
164 TRANS_START,
165 TRANS_JOIN,
166 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400167 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500168};
169
Yan, Zhenga22285a2010-05-16 10:48:46 -0400170static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400171{
Chris Mason4bef0842008-09-08 11:18:08 -0400172 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500173 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
174 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400175 return 1;
176 return 0;
177}
178
179static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
180 u64 num_items, int type)
181{
182 struct btrfs_trans_handle *h;
183 struct btrfs_transaction *cur_trans;
Josef Bacik06d5a582011-04-05 11:57:27 -0400184 int retries = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400185 int ret;
liuboacce9522011-01-06 19:30:25 +0800186
187 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
188 return ERR_PTR(-EROFS);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400189again:
190 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
191 if (!h)
192 return ERR_PTR(-ENOMEM);
193
Josef Bacik0af3d002010-06-21 14:48:16 -0400194 if (type != TRANS_JOIN_NOLOCK)
195 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400196 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400197 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400198
Chris Mason79154b12007-03-22 15:59:16 -0400199 ret = join_transaction(root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000200 if (ret < 0) {
Yoshinori Sano6e8df2a2011-04-03 12:31:28 +0000201 kmem_cache_free(btrfs_trans_handle_cachep, h);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000202 if (type != TRANS_JOIN_NOLOCK)
203 mutex_unlock(&root->fs_info->trans_mutex);
204 return ERR_PTR(ret);
205 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400206
Yan, Zhenga22285a2010-05-16 10:48:46 -0400207 cur_trans = root->fs_info->running_transaction;
208 cur_trans->use_count++;
Josef Bacik0af3d002010-06-21 14:48:16 -0400209 if (type != TRANS_JOIN_NOLOCK)
210 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400211
212 h->transid = cur_trans->transid;
213 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400214 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500215 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400216 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400217 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400218 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400219
Yan, Zhenga22285a2010-05-16 10:48:46 -0400220 smp_mb();
221 if (cur_trans->blocked && may_wait_transaction(root, type)) {
222 btrfs_commit_transaction(h, root);
223 goto again;
224 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400225
Yan, Zhenga22285a2010-05-16 10:48:46 -0400226 if (num_items > 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400227 ret = btrfs_trans_reserve_metadata(h, root, num_items);
Josef Bacik06d5a582011-04-05 11:57:27 -0400228 if (ret == -EAGAIN && !retries) {
229 retries++;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400230 btrfs_commit_transaction(h, root);
231 goto again;
Josef Bacik06d5a582011-04-05 11:57:27 -0400232 } else if (ret == -EAGAIN) {
233 /*
234 * We have already retried and got EAGAIN, so really we
235 * don't have space, so set ret to -ENOSPC.
236 */
237 ret = -ENOSPC;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400238 }
Josef Bacik06d5a582011-04-05 11:57:27 -0400239
Yan, Zhenga22285a2010-05-16 10:48:46 -0400240 if (ret < 0) {
241 btrfs_end_transaction(h, root);
242 return ERR_PTR(ret);
243 }
244 }
245
Josef Bacik0af3d002010-06-21 14:48:16 -0400246 if (type != TRANS_JOIN_NOLOCK)
247 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400248 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400249 if (type != TRANS_JOIN_NOLOCK)
250 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400251
252 if (!current->journal_info && type != TRANS_USERSPACE)
253 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400254 return h;
255}
256
Chris Masonf9295742008-07-17 12:54:14 -0400257struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400258 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400259{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400260 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400261}
262struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
263 int num_blocks)
264{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400265 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400266}
267
Josef Bacik0af3d002010-06-21 14:48:16 -0400268struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root,
269 int num_blocks)
270{
271 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
272}
273
Sage Weil9ca9ee02008-08-04 10:41:27 -0400274struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
275 int num_blocks)
276{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400277 return start_transaction(r, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400278}
279
Chris Masond352ac62008-09-29 15:18:18 -0400280/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400281static noinline int wait_for_commit(struct btrfs_root *root,
282 struct btrfs_transaction *commit)
283{
284 DEFINE_WAIT(wait);
285 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500286 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400287 prepare_to_wait(&commit->commit_wait, &wait,
288 TASK_UNINTERRUPTIBLE);
289 if (commit->commit_done)
290 break;
291 mutex_unlock(&root->fs_info->trans_mutex);
292 schedule();
293 mutex_lock(&root->fs_info->trans_mutex);
294 }
295 mutex_unlock(&root->fs_info->trans_mutex);
296 finish_wait(&commit->commit_wait, &wait);
297 return 0;
298}
299
Sage Weil46204592010-10-29 15:41:32 -0400300int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
301{
302 struct btrfs_transaction *cur_trans = NULL, *t;
303 int ret;
304
305 mutex_lock(&root->fs_info->trans_mutex);
306
307 ret = 0;
308 if (transid) {
309 if (transid <= root->fs_info->last_trans_committed)
310 goto out_unlock;
311
312 /* find specified transaction */
313 list_for_each_entry(t, &root->fs_info->trans_list, list) {
314 if (t->transid == transid) {
315 cur_trans = t;
316 break;
317 }
318 if (t->transid > transid)
319 break;
320 }
321 ret = -EINVAL;
322 if (!cur_trans)
323 goto out_unlock; /* bad transid */
324 } else {
325 /* find newest transaction that is committing | committed */
326 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
327 list) {
328 if (t->in_commit) {
329 if (t->commit_done)
330 goto out_unlock;
331 cur_trans = t;
332 break;
333 }
334 }
335 if (!cur_trans)
336 goto out_unlock; /* nothing committing|committed */
337 }
338
339 cur_trans->use_count++;
340 mutex_unlock(&root->fs_info->trans_mutex);
341
342 wait_for_commit(root, cur_trans);
343
344 mutex_lock(&root->fs_info->trans_mutex);
345 put_transaction(cur_trans);
346 ret = 0;
347out_unlock:
348 mutex_unlock(&root->fs_info->trans_mutex);
349 return ret;
350}
351
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400352#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400353/*
Chris Masond3977122009-01-05 21:25:51 -0500354 * rate limit against the drop_snapshot code. This helps to slow down new
355 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400356 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400357static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400358{
359 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400360 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400361
Chris Mason2dd3e672008-08-04 08:20:15 -0400362harder:
Chris Masonab78c842008-07-29 16:15:18 -0400363 if (atomic_read(&info->throttles)) {
364 DEFINE_WAIT(wait);
365 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400366 thr = atomic_read(&info->throttle_gen);
367
368 do {
369 prepare_to_wait(&info->transaction_throttle,
370 &wait, TASK_UNINTERRUPTIBLE);
371 if (!atomic_read(&info->throttles)) {
372 finish_wait(&info->transaction_throttle, &wait);
373 break;
374 }
375 schedule();
376 finish_wait(&info->transaction_throttle, &wait);
377 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400378 harder_count++;
379
380 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
381 harder_count < 2)
382 goto harder;
383
384 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
385 harder_count < 10)
386 goto harder;
387
388 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
389 harder_count < 20)
390 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400391 }
392}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400393#endif
Chris Masonab78c842008-07-29 16:15:18 -0400394
Chris Mason37d1aee2008-07-31 10:48:37 -0400395void btrfs_throttle(struct btrfs_root *root)
396{
397 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400398 if (!root->fs_info->open_ioctl_trans)
399 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400400 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400401}
402
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400403static int should_end_transaction(struct btrfs_trans_handle *trans,
404 struct btrfs_root *root)
405{
406 int ret;
407 ret = btrfs_block_rsv_check(trans, root,
408 &root->fs_info->global_block_rsv, 0, 5);
409 return ret ? 1 : 0;
410}
411
412int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
413 struct btrfs_root *root)
414{
415 struct btrfs_transaction *cur_trans = trans->transaction;
416 int updates;
417
418 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
419 return 1;
420
421 updates = trans->delayed_ref_updates;
422 trans->delayed_ref_updates = 0;
423 if (updates)
424 btrfs_run_delayed_refs(trans, root, updates);
425
426 return should_end_transaction(trans, root);
427}
428
Chris Mason89ce8a62008-06-25 16:01:31 -0400429static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400430 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400431{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400432 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400433 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400434 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400435
Chris Masonc3e69d52009-03-13 10:17:05 -0400436 while (count < 4) {
437 unsigned long cur = trans->delayed_ref_updates;
438 trans->delayed_ref_updates = 0;
439 if (cur &&
440 trans->transaction->delayed_refs.num_heads_ready > 64) {
441 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400442
443 /*
444 * do a full flush if the transaction is trying
445 * to close
446 */
447 if (trans->transaction->delayed_refs.flushing)
448 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400449 btrfs_run_delayed_refs(trans, root, cur);
450 } else {
451 break;
452 }
453 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400454 }
455
Yan, Zhenga22285a2010-05-16 10:48:46 -0400456 btrfs_trans_release_metadata(trans, root);
457
Josef Bacik0af3d002010-06-21 14:48:16 -0400458 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400459 should_end_transaction(trans, root))
460 trans->transaction->blocked = 1;
461
Josef Bacik0af3d002010-06-21 14:48:16 -0400462 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400463 if (throttle)
464 return btrfs_commit_transaction(trans, root);
465 else
466 wake_up_process(info->transaction_kthread);
467 }
468
Josef Bacik0af3d002010-06-21 14:48:16 -0400469 if (lock)
470 mutex_lock(&info->trans_mutex);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400471 WARN_ON(cur_trans != info->running_transaction);
Chris Masond5719762007-03-23 10:01:08 -0400472 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400473 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400474
Sage Weil99d16cbc2010-10-29 15:37:34 -0400475 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400476 if (waitqueue_active(&cur_trans->writer_wait))
477 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400478 put_transaction(cur_trans);
Josef Bacik0af3d002010-06-21 14:48:16 -0400479 if (lock)
480 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400481
482 if (current->journal_info == trans)
483 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400484 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400485 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400486
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000487 if (throttle)
488 btrfs_run_delayed_iputs(root);
489
Chris Mason79154b12007-03-22 15:59:16 -0400490 return 0;
491}
492
Chris Mason89ce8a62008-06-25 16:01:31 -0400493int btrfs_end_transaction(struct btrfs_trans_handle *trans,
494 struct btrfs_root *root)
495{
Josef Bacik0af3d002010-06-21 14:48:16 -0400496 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400497}
498
499int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
500 struct btrfs_root *root)
501{
Josef Bacik0af3d002010-06-21 14:48:16 -0400502 return __btrfs_end_transaction(trans, root, 1, 1);
503}
504
505int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
506 struct btrfs_root *root)
507{
508 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400509}
510
Chris Masond352ac62008-09-29 15:18:18 -0400511/*
512 * when btree blocks are allocated, they have some corresponding bits set for
513 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400514 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400515 */
Chris Mason690587d2009-10-13 13:29:19 -0400516int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000517 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400518{
Chris Mason7c4452b2007-04-28 09:29:35 -0400519 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400520 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400521 int werr = 0;
522 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400523 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400524 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400525 u64 end;
526 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400527
Chris Masond3977122009-01-05 21:25:51 -0500528 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400529 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000530 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400531 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400532 break;
Chris Masond3977122009-01-05 21:25:51 -0500533 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400534 cond_resched();
535
Chris Mason5f39d392007-10-15 16:14:19 -0400536 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400537 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400538 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400539 if (!page)
540 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400541
542 btree_lock_page_hook(page);
543 if (!page->mapping) {
544 unlock_page(page);
545 page_cache_release(page);
546 continue;
547 }
548
Chris Mason6702ed42007-08-07 16:15:09 -0400549 if (PageWriteback(page)) {
550 if (PageDirty(page))
551 wait_on_page_writeback(page);
552 else {
553 unlock_page(page);
554 page_cache_release(page);
555 continue;
556 }
557 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400558 err = write_one_page(page, 0);
559 if (err)
560 werr = err;
561 page_cache_release(page);
562 }
563 }
Chris Mason690587d2009-10-13 13:29:19 -0400564 if (err)
565 werr = err;
566 return werr;
567}
568
569/*
570 * when btree blocks are allocated, they have some corresponding bits set for
571 * them in one of two extent_io trees. This is used to make sure all of
572 * those extents are on disk for transaction or log commit. We wait
573 * on all the pages and clear them from the dirty pages state tree
574 */
575int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000576 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400577{
578 int ret;
579 int err = 0;
580 int werr = 0;
581 struct page *page;
582 struct inode *btree_inode = root->fs_info->btree_inode;
583 u64 start = 0;
584 u64 end;
585 unsigned long index;
586
Chris Masond3977122009-01-05 21:25:51 -0500587 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000588 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
589 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400590 if (ret)
591 break;
592
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000593 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500594 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400595 index = start >> PAGE_CACHE_SHIFT;
596 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
597 page = find_get_page(btree_inode->i_mapping, index);
598 if (!page)
599 continue;
600 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400601 btree_lock_page_hook(page);
602 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400603 err = write_one_page(page, 0);
604 if (err)
605 werr = err;
606 }
Chris Mason105d9312008-11-18 12:13:12 -0500607 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400608 page_cache_release(page);
609 cond_resched();
610 }
611 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400612 if (err)
613 werr = err;
614 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400615}
616
Chris Mason690587d2009-10-13 13:29:19 -0400617/*
618 * when btree blocks are allocated, they have some corresponding bits set for
619 * them in one of two extent_io trees. This is used to make sure all of
620 * those extents are on disk for transaction or log commit
621 */
622int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000623 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400624{
625 int ret;
626 int ret2;
627
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000628 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
629 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400630 return ret || ret2;
631}
632
Chris Masond0c803c2008-09-11 16:17:57 -0400633int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
634 struct btrfs_root *root)
635{
636 if (!trans || !trans->transaction) {
637 struct inode *btree_inode;
638 btree_inode = root->fs_info->btree_inode;
639 return filemap_write_and_wait(btree_inode->i_mapping);
640 }
641 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000642 &trans->transaction->dirty_pages,
643 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400644}
645
Chris Masond352ac62008-09-29 15:18:18 -0400646/*
647 * this is used to update the root pointer in the tree of tree roots.
648 *
649 * But, in the case of the extent allocation tree, updating the root
650 * pointer may allocate blocks which may change the root of the extent
651 * allocation tree.
652 *
653 * So, this loops and repeats and makes sure the cowonly root didn't
654 * change while the root pointer was being updated in the metadata.
655 */
Chris Mason0b86a832008-03-24 15:01:56 -0400656static int update_cowonly_root(struct btrfs_trans_handle *trans,
657 struct btrfs_root *root)
658{
659 int ret;
660 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000661 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400662 struct btrfs_root *tree_root = root->fs_info->tree_root;
663
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000664 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400665 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400666
Chris Masond3977122009-01-05 21:25:51 -0500667 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400668 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000669 if (old_root_bytenr == root->node->start &&
670 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400671 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400672
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400673 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400674 ret = btrfs_update_root(trans, tree_root,
675 &root->root_key,
676 &root->root_item);
677 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400678
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000679 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400680 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400681 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400682 }
Yan Zheng276e6802009-07-30 09:40:40 -0400683
684 if (root != root->fs_info->extent_root)
685 switch_commit_root(root);
686
Chris Mason0b86a832008-03-24 15:01:56 -0400687 return 0;
688}
689
Chris Masond352ac62008-09-29 15:18:18 -0400690/*
691 * update all the cowonly tree roots on disk
692 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400693static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
694 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400695{
Chris Mason79154b12007-03-22 15:59:16 -0400696 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400697 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400698 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400699 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400700
Chris Mason56bec292009-03-13 10:10:06 -0400701 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
702 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400703
Yan Zheng84234f32008-10-29 14:49:05 -0400704 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400705 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400706 btrfs_tree_unlock(eb);
707 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400708
Chris Mason56bec292009-03-13 10:10:06 -0400709 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
710 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400711
Chris Masond3977122009-01-05 21:25:51 -0500712 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400713 next = fs_info->dirty_cowonly_roots.next;
714 list_del_init(next);
715 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400716
Chris Mason0b86a832008-03-24 15:01:56 -0400717 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400718 }
Yan Zheng276e6802009-07-30 09:40:40 -0400719
720 down_write(&fs_info->extent_commit_sem);
721 switch_commit_root(fs_info->extent_root);
722 up_write(&fs_info->extent_commit_sem);
723
Chris Mason79154b12007-03-22 15:59:16 -0400724 return 0;
725}
726
Chris Masond352ac62008-09-29 15:18:18 -0400727/*
728 * dead roots are old snapshots that need to be deleted. This allocates
729 * a dirty root struct and adds it into the list of dead roots that need to
730 * be deleted
731 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400732int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400733{
Yan Zhengb48652c2008-08-04 23:23:47 -0400734 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400735 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400736 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400737 return 0;
738}
739
Chris Masond352ac62008-09-29 15:18:18 -0400740/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400741 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400742 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400743static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
744 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400745{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400746 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400747 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400748 int i;
749 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400750 int err = 0;
751
Chris Masond3977122009-01-05 21:25:51 -0500752 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400753 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
754 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400755 ARRAY_SIZE(gang),
756 BTRFS_ROOT_TRANS_TAG);
757 if (ret == 0)
758 break;
759 for (i = 0; i < ret; i++) {
760 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400761 radix_tree_tag_clear(&fs_info->fs_roots_radix,
762 (unsigned long)root->root_key.objectid,
763 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400764
Chris Masone02119d2008-09-05 16:13:11 -0400765 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400766 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400767 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400768
Yan Zheng978d9102009-06-15 20:01:02 -0400769 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400770 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400771 btrfs_set_root_node(&root->root_item,
772 root->node);
773 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400774
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400775 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400776 &root->root_key,
777 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400778 if (err)
779 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400780 }
781 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400782 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400783}
784
Chris Masond352ac62008-09-29 15:18:18 -0400785/*
786 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
787 * otherwise every leaf in the btree is read and defragged.
788 */
Chris Masone9d0b132007-08-10 14:06:19 -0400789int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
790{
791 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400792 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400793 int ret;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400794 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400795
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400796 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400797 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400798
Chris Mason6b800532007-10-15 16:17:34 -0400799 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400800 trans = btrfs_start_transaction(root, 0);
801 if (IS_ERR(trans))
802 return PTR_ERR(trans);
803
Chris Masone9d0b132007-08-10 14:06:19 -0400804 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400805
Chris Masond3c2fdc2007-09-17 10:58:06 -0400806 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400807 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400808 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400809 cond_resched();
810
Chris Mason3f157a22008-06-25 16:01:31 -0400811 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400812 break;
813 }
814 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400815 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400816}
817
Yan Zheng2c47e6052009-06-27 21:07:35 -0400818#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400819/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400820 * when dropping snapshots, we generate a ton of delayed refs, and it makes
821 * sense not to join the transaction while it is trying to flush the current
822 * queue of delayed refs out.
823 *
824 * This is used by the drop snapshot code only
825 */
826static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
827{
828 DEFINE_WAIT(wait);
829
830 mutex_lock(&info->trans_mutex);
831 while (info->running_transaction &&
832 info->running_transaction->delayed_refs.flushing) {
833 prepare_to_wait(&info->transaction_wait, &wait,
834 TASK_UNINTERRUPTIBLE);
835 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400836
Chris Masonb7ec40d2009-03-12 20:12:45 -0400837 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400838
Chris Masonb7ec40d2009-03-12 20:12:45 -0400839 mutex_lock(&info->trans_mutex);
840 finish_wait(&info->transaction_wait, &wait);
841 }
842 mutex_unlock(&info->trans_mutex);
843 return 0;
844}
845
846/*
Chris Masond352ac62008-09-29 15:18:18 -0400847 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
848 * all of them
849 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400850int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400851{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400852 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400853 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400854 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400855 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400856
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400857 while (1) {
858 /*
859 * we don't want to jump in and create a bunch of
860 * delayed refs if the transaction is starting to close
861 */
862 wait_transaction_pre_flush(tree_root->fs_info);
863 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400864
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400865 /*
866 * we've joined a transaction, make sure it isn't
867 * closing right now
868 */
869 if (trans->transaction->delayed_refs.flushing) {
870 btrfs_end_transaction(trans, tree_root);
871 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400872 }
Chris Masona2135012008-06-25 16:01:30 -0400873
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400874 ret = btrfs_drop_snapshot(trans, root);
875 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400876 break;
Chris Masona2135012008-06-25 16:01:30 -0400877
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400878 ret = btrfs_update_root(trans, tree_root,
879 &root->root_key,
880 &root->root_item);
881 if (ret)
882 break;
Yanbcc63ab2008-07-30 16:29:20 -0400883
Chris Masond3c2fdc2007-09-17 10:58:06 -0400884 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400885 ret = btrfs_end_transaction(trans, tree_root);
886 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400887
Chris Masond3c2fdc2007-09-17 10:58:06 -0400888 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400889 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400890 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400891 BUG_ON(ret);
892
893 ret = btrfs_del_root(trans, tree_root, &root->root_key);
894 BUG_ON(ret);
895
896 nr = trans->blocks_used;
897 ret = btrfs_end_transaction(trans, tree_root);
898 BUG_ON(ret);
899
900 free_extent_buffer(root->node);
901 free_extent_buffer(root->commit_root);
902 kfree(root);
903
904 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400905 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400906}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400907#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400908
Chris Masond352ac62008-09-29 15:18:18 -0400909/*
910 * new snapshots need to be created at a very specific time in the
911 * transaction commit. This does the actual creation
912 */
Chris Mason80b67942008-02-01 16:35:04 -0500913static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500914 struct btrfs_fs_info *fs_info,
915 struct btrfs_pending_snapshot *pending)
916{
917 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500918 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500919 struct btrfs_root *tree_root = fs_info->tree_root;
920 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000921 struct btrfs_root *parent_root;
922 struct inode *parent_inode;
Josef Bacik6a912212010-11-20 09:48:00 +0000923 struct dentry *parent;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400924 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500925 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400926 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500927 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400928 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000929 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400930 u64 objectid;
Li Zefanb83cc962010-12-20 16:04:08 +0800931 u64 root_flags;
Chris Mason3063d292008-01-08 15:46:30 -0500932
Chris Mason80b67942008-02-01 16:35:04 -0500933 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
934 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400935 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500936 goto fail;
937 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400938
Chris Mason3063d292008-01-08 15:46:30 -0500939 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400940 if (ret) {
941 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500942 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400943 }
Chris Mason3063d292008-01-08 15:46:30 -0500944
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400945 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400946 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
947
948 if (to_reserve > 0) {
949 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400950 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400951 if (ret) {
952 pending->error = ret;
953 goto fail;
954 }
955 }
956
Chris Mason3063d292008-01-08 15:46:30 -0500957 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400958 key.offset = (u64)-1;
959 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500960
Yan, Zhenga22285a2010-05-16 10:48:46 -0400961 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000962
Yan, Zhenga22285a2010-05-16 10:48:46 -0400963 dentry = pending->dentry;
Josef Bacik6a912212010-11-20 09:48:00 +0000964 parent = dget_parent(dentry);
965 parent_inode = parent->d_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400966 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000967 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400968
Sage Weil6bdb72d2010-03-15 17:27:13 +0000969 /*
970 * insert the directory item
971 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000972 ret = btrfs_set_inode_index(parent_inode, &index);
973 BUG_ON(ret);
974 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400975 dentry->d_name.name, dentry->d_name.len,
976 parent_inode->i_ino, &key,
977 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000978 BUG_ON(ret);
979
Yan, Zhenga22285a2010-05-16 10:48:46 -0400980 btrfs_i_size_write(parent_inode, parent_inode->i_size +
981 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000982 ret = btrfs_update_inode(trans, parent_root, parent_inode);
983 BUG_ON(ret);
984
985 record_root_in_trans(trans, root);
986 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
987 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Li Zefan08fe4db2011-03-28 02:01:25 +0000988 btrfs_check_and_init_root_item(new_root_item);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000989
Li Zefanb83cc962010-12-20 16:04:08 +0800990 root_flags = btrfs_root_flags(new_root_item);
991 if (pending->readonly)
992 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
993 else
994 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
995 btrfs_set_root_flags(new_root_item, root_flags);
996
Chris Mason925baed2008-06-25 16:01:30 -0400997 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400998 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400999 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -05001000
Chris Mason925baed2008-06-25 16:01:30 -04001001 btrfs_copy_root(trans, root, old, &tmp, objectid);
1002 btrfs_tree_unlock(old);
1003 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -05001004
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001005 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001006 /* record when the snapshot was created in key.offset */
1007 key.offset = trans->transid;
1008 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -04001009 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -05001010 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -05001011 BUG_ON(ret);
1012
Yan, Zhenga22285a2010-05-16 10:48:46 -04001013 /*
1014 * insert root back/forward references
1015 */
1016 ret = btrfs_add_root_ref(trans, tree_root, objectid,
1017 parent_root->root_key.objectid,
1018 parent_inode->i_ino, index,
1019 dentry->d_name.name, dentry->d_name.len);
1020 BUG_ON(ret);
Josef Bacik6a912212010-11-20 09:48:00 +00001021 dput(parent);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001022
1023 key.offset = (u64)-1;
1024 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
1025 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -04001026
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001027 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001028 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -05001029fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +00001030 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001031 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
1032 return 0;
Chris Mason3063d292008-01-08 15:46:30 -05001033}
1034
Chris Masond352ac62008-09-29 15:18:18 -04001035/*
1036 * create all the snapshots we've scheduled for creation
1037 */
Chris Mason80b67942008-02-01 16:35:04 -05001038static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1039 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -05001040{
1041 struct btrfs_pending_snapshot *pending;
1042 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -05001043 int ret;
1044
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001045 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -05001046 ret = create_pending_snapshot(trans, fs_info, pending);
1047 BUG_ON(ret);
1048 }
1049 return 0;
1050}
1051
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052static void update_super_roots(struct btrfs_root *root)
1053{
1054 struct btrfs_root_item *root_item;
1055 struct btrfs_super_block *super;
1056
1057 super = &root->fs_info->super_copy;
1058
1059 root_item = &root->fs_info->chunk_root->root_item;
1060 super->chunk_root = root_item->bytenr;
1061 super->chunk_root_generation = root_item->generation;
1062 super->chunk_root_level = root_item->level;
1063
1064 root_item = &root->fs_info->tree_root->root_item;
1065 super->root = root_item->bytenr;
1066 super->generation = root_item->generation;
1067 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -04001068 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
1069 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001070}
1071
Chris Masonf36f3042009-07-30 10:04:48 -04001072int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
1073{
1074 int ret = 0;
1075 spin_lock(&info->new_trans_lock);
1076 if (info->running_transaction)
1077 ret = info->running_transaction->in_commit;
1078 spin_unlock(&info->new_trans_lock);
1079 return ret;
1080}
1081
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001082int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1083{
1084 int ret = 0;
1085 spin_lock(&info->new_trans_lock);
1086 if (info->running_transaction)
1087 ret = info->running_transaction->blocked;
1088 spin_unlock(&info->new_trans_lock);
1089 return ret;
1090}
1091
Sage Weilbb9c12c2010-10-29 15:37:34 -04001092/*
1093 * wait for the current transaction commit to start and block subsequent
1094 * transaction joins
1095 */
1096static void wait_current_trans_commit_start(struct btrfs_root *root,
1097 struct btrfs_transaction *trans)
1098{
1099 DEFINE_WAIT(wait);
1100
1101 if (trans->in_commit)
1102 return;
1103
1104 while (1) {
1105 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1106 TASK_UNINTERRUPTIBLE);
1107 if (trans->in_commit) {
1108 finish_wait(&root->fs_info->transaction_blocked_wait,
1109 &wait);
1110 break;
1111 }
1112 mutex_unlock(&root->fs_info->trans_mutex);
1113 schedule();
1114 mutex_lock(&root->fs_info->trans_mutex);
1115 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1116 }
1117}
1118
1119/*
1120 * wait for the current transaction to start and then become unblocked.
1121 * caller holds ref.
1122 */
1123static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1124 struct btrfs_transaction *trans)
1125{
1126 DEFINE_WAIT(wait);
1127
1128 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1129 return;
1130
1131 while (1) {
1132 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1133 TASK_UNINTERRUPTIBLE);
1134 if (trans->commit_done ||
1135 (trans->in_commit && !trans->blocked)) {
1136 finish_wait(&root->fs_info->transaction_wait,
1137 &wait);
1138 break;
1139 }
1140 mutex_unlock(&root->fs_info->trans_mutex);
1141 schedule();
1142 mutex_lock(&root->fs_info->trans_mutex);
1143 finish_wait(&root->fs_info->transaction_wait,
1144 &wait);
1145 }
1146}
1147
1148/*
1149 * commit transactions asynchronously. once btrfs_commit_transaction_async
1150 * returns, any subsequent transaction will not be allowed to join.
1151 */
1152struct btrfs_async_commit {
1153 struct btrfs_trans_handle *newtrans;
1154 struct btrfs_root *root;
1155 struct delayed_work work;
1156};
1157
1158static void do_async_commit(struct work_struct *work)
1159{
1160 struct btrfs_async_commit *ac =
1161 container_of(work, struct btrfs_async_commit, work.work);
1162
1163 btrfs_commit_transaction(ac->newtrans, ac->root);
1164 kfree(ac);
1165}
1166
1167int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1168 struct btrfs_root *root,
1169 int wait_for_unblock)
1170{
1171 struct btrfs_async_commit *ac;
1172 struct btrfs_transaction *cur_trans;
1173
1174 ac = kmalloc(sizeof(*ac), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001175 if (!ac)
1176 return -ENOMEM;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001177
1178 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1179 ac->root = root;
1180 ac->newtrans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001181 if (IS_ERR(ac->newtrans)) {
1182 int err = PTR_ERR(ac->newtrans);
1183 kfree(ac);
1184 return err;
1185 }
Sage Weilbb9c12c2010-10-29 15:37:34 -04001186
1187 /* take transaction reference */
1188 mutex_lock(&root->fs_info->trans_mutex);
1189 cur_trans = trans->transaction;
1190 cur_trans->use_count++;
1191 mutex_unlock(&root->fs_info->trans_mutex);
1192
1193 btrfs_end_transaction(trans, root);
1194 schedule_delayed_work(&ac->work, 0);
1195
1196 /* wait for transaction to start and unblock */
1197 mutex_lock(&root->fs_info->trans_mutex);
1198 if (wait_for_unblock)
1199 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1200 else
1201 wait_current_trans_commit_start(root, cur_trans);
1202 put_transaction(cur_trans);
1203 mutex_unlock(&root->fs_info->trans_mutex);
1204
1205 return 0;
1206}
1207
1208/*
1209 * btrfs_transaction state sequence:
1210 * in_commit = 0, blocked = 0 (initial)
1211 * in_commit = 1, blocked = 1
1212 * blocked = 0
1213 * commit_done = 1
1214 */
Chris Mason79154b12007-03-22 15:59:16 -04001215int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1216 struct btrfs_root *root)
1217{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001218 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001219 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001220 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001221 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001222 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001223 int should_grow = 0;
1224 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001225 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001226
Chris Mason5a3f23d2009-03-31 13:27:11 -04001227 btrfs_run_ordered_operations(root, 0);
1228
Chris Mason56bec292009-03-13 10:10:06 -04001229 /* make a pass through all the delayed refs we have so far
1230 * any runnings procs may add more while we are here
1231 */
1232 ret = btrfs_run_delayed_refs(trans, root, 0);
1233 BUG_ON(ret);
1234
Yan, Zhenga22285a2010-05-16 10:48:46 -04001235 btrfs_trans_release_metadata(trans, root);
1236
Chris Masonb7ec40d2009-03-12 20:12:45 -04001237 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001238 /*
1239 * set the flushing flag so procs in this transaction have to
1240 * start sending their work down.
1241 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001242 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001243
Chris Masonc3e69d52009-03-13 10:17:05 -04001244 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001245 BUG_ON(ret);
1246
Chris Mason79154b12007-03-22 15:59:16 -04001247 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001248 if (cur_trans->in_commit) {
1249 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001250 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001251 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001252
Chris Mason79154b12007-03-22 15:59:16 -04001253 ret = wait_for_commit(root, cur_trans);
1254 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001255
1256 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001257 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001258 mutex_unlock(&root->fs_info->trans_mutex);
1259
Chris Mason79154b12007-03-22 15:59:16 -04001260 return 0;
1261 }
Chris Mason4313b392008-01-03 09:08:48 -05001262
Chris Mason2c90e5d2007-04-02 10:50:19 -04001263 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001264 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001265 wake_up(&root->fs_info->transaction_blocked_wait);
1266
Chris Masonccd467d2007-06-28 15:57:36 -04001267 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1268 prev_trans = list_entry(cur_trans->list.prev,
1269 struct btrfs_transaction, list);
1270 if (!prev_trans->commit_done) {
1271 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001272 mutex_unlock(&root->fs_info->trans_mutex);
1273
1274 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001275
Chris Masonccd467d2007-06-28 15:57:36 -04001276 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001277 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001278 }
1279 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001280
Chris Mason89573b92009-03-12 20:12:45 -04001281 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1282 should_grow = 1;
1283
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001284 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001285 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001286 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001287 if (!list_empty(&trans->transaction->pending_snapshots))
1288 snap_pending = 1;
1289
Chris Mason2c90e5d2007-04-02 10:50:19 -04001290 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001291 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001292
Sage Weil0bdb1db2010-02-19 14:13:50 -08001293 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001294 btrfs_start_delalloc_inodes(root, 1);
1295 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001296 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001297 }
1298
Chris Mason5a3f23d2009-03-31 13:27:11 -04001299 /*
1300 * rename don't use btrfs_join_transaction, so, once we
1301 * set the transaction to blocked above, we aren't going
1302 * to get any new ordered operations. We can safely run
1303 * it here and no for sure that nothing new will be added
1304 * to the list
1305 */
1306 btrfs_run_ordered_operations(root, 1);
1307
Chris Masoned3b3d3142010-05-25 10:12:41 -04001308 prepare_to_wait(&cur_trans->writer_wait, &wait,
1309 TASK_UNINTERRUPTIBLE);
1310
Chris Mason89573b92009-03-12 20:12:45 -04001311 smp_mb();
Sage Weil99d16cbc2010-10-29 15:37:34 -04001312 if (cur_trans->num_writers > 1)
1313 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1314 else if (should_grow)
1315 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001316
Chris Mason79154b12007-03-22 15:59:16 -04001317 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001318 finish_wait(&cur_trans->writer_wait, &wait);
1319 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001320 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001321
Chris Mason3063d292008-01-08 15:46:30 -05001322 ret = create_pending_snapshots(trans, root->fs_info);
1323 BUG_ON(ret);
1324
Chris Mason56bec292009-03-13 10:10:06 -04001325 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1326 BUG_ON(ret);
1327
Chris Mason2c90e5d2007-04-02 10:50:19 -04001328 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001329
Chris Masone02119d2008-09-05 16:13:11 -04001330 /* btrfs_commit_tree_roots is responsible for getting the
1331 * various roots consistent with each other. Every pointer
1332 * in the tree of tree roots has to point to the most up to date
1333 * root for every subvolume and other tree. So, we have to keep
1334 * the tree logging code from jumping in and changing any
1335 * of the trees.
1336 *
1337 * At this point in the commit, there can't be any tree-log
1338 * writers, but a little lower down we drop the trans mutex
1339 * and let new people in. By holding the tree_log_mutex
1340 * from now until after the super is written, we avoid races
1341 * with the tree-log code.
1342 */
1343 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001344
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001345 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001346 BUG_ON(ret);
1347
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001348 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001349 * safe to free the root of tree log roots
1350 */
1351 btrfs_free_log_root_tree(trans, root->fs_info);
1352
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001353 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001354 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001355
Yan Zheng11833d62009-09-11 16:11:19 -04001356 btrfs_prepare_extent_commit(trans, root);
1357
Chris Mason78fae272007-03-25 11:35:08 -04001358 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001359 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001360 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001361 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001362
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001363 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1364 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001365 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001366
1367 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1368 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001369 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001370
1371 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001372
1373 if (!root->fs_info->log_root_recovering) {
1374 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1375 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1376 }
1377
Chris Masona061fc82008-05-07 11:43:44 -04001378 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1379 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001380
Chris Masonf9295742008-07-17 12:54:14 -04001381 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001382
Chris Masonf9295742008-07-17 12:54:14 -04001383 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001384
Chris Mason78fae272007-03-25 11:35:08 -04001385 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001386 ret = btrfs_write_and_wait_transaction(trans, root);
1387 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001388 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001389
Chris Masone02119d2008-09-05 16:13:11 -04001390 /*
1391 * the super is written, we can safely allow the tree-loggers
1392 * to go about their business
1393 */
1394 mutex_unlock(&root->fs_info->tree_log_mutex);
1395
Yan Zheng11833d62009-09-11 16:11:19 -04001396 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001397
Zheng Yan1a40e232008-09-26 10:09:34 -04001398 mutex_lock(&root->fs_info->trans_mutex);
1399
Chris Mason2c90e5d2007-04-02 10:50:19 -04001400 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001401
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001402 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001403
Chris Mason2c90e5d2007-04-02 10:50:19 -04001404 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001405
Chris Mason79154b12007-03-22 15:59:16 -04001406 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001407 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001408
liubo1abe9b82011-03-24 11:18:59 +00001409 trace_btrfs_transaction_commit(root);
1410
Chris Mason78fae272007-03-25 11:35:08 -04001411 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001412
Josef Bacik9ed74f22009-09-11 16:12:44 -04001413 if (current->journal_info == trans)
1414 current->journal_info = NULL;
1415
Chris Mason2c90e5d2007-04-02 10:50:19 -04001416 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001417
1418 if (current != root->fs_info->transaction_kthread)
1419 btrfs_run_delayed_iputs(root);
1420
Chris Mason79154b12007-03-22 15:59:16 -04001421 return ret;
1422}
1423
Chris Masond352ac62008-09-29 15:18:18 -04001424/*
1425 * interface function to delete all the snapshots we have scheduled for deletion
1426 */
Chris Masone9d0b132007-08-10 14:06:19 -04001427int btrfs_clean_old_snapshots(struct btrfs_root *root)
1428{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001429 LIST_HEAD(list);
1430 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001431
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001432 mutex_lock(&fs_info->trans_mutex);
1433 list_splice_init(&fs_info->dead_roots, &list);
1434 mutex_unlock(&fs_info->trans_mutex);
1435
1436 while (!list_empty(&list)) {
1437 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001438 list_del(&root->root_list);
1439
1440 if (btrfs_header_backref_rev(root->node) <
1441 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001442 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001443 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001444 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001445 }
1446 return 0;
1447}