blob: 4d1dbcbbaf41e5f3f166852473be5c5507868796 [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"
Li Zefan581bb052011-04-20 10:06:11 +080030#include "inode-map.h"
Chris Mason79154b12007-03-22 15:59:16 -040031
Chris Mason0f7d52f2007-04-09 10:42:37 -040032#define BTRFS_ROOT_TRANS_TAG 0
33
Chris Mason80b67942008-02-01 16:35:04 -050034static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040035{
Josef Bacik13c5a932011-04-11 15:45:29 -040036 WARN_ON(atomic_read(&transaction->use_count) == 0);
37 if (atomic_dec_and_test(&transaction->use_count)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 memset(transaction, 0, sizeof(*transaction));
39 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040040 }
Chris Mason79154b12007-03-22 15:59:16 -040041}
42
Josef Bacik817d52f2009-07-13 21:29:25 -040043static noinline void switch_commit_root(struct btrfs_root *root)
44{
Josef Bacik817d52f2009-07-13 21:29:25 -040045 free_extent_buffer(root->commit_root);
46 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040047}
48
Chris Masond352ac62008-09-29 15:18:18 -040049/*
50 * either allocate a new transaction or hop into the existing one
51 */
Chris Mason80b67942008-02-01 16:35:04 -050052static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040053{
54 struct btrfs_transaction *cur_trans;
55 cur_trans = root->fs_info->running_transaction;
56 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040057 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
58 GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000059 if (!cur_trans)
60 return -ENOMEM;
Chris Mason0f7d52f2007-04-09 10:42:37 -040061 root->fs_info->generation++;
Josef Bacik13c5a932011-04-11 15:45:29 -040062 atomic_set(&cur_trans->num_writers, 1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040063 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040064 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040065 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040068 cur_trans->blocked = 0;
Josef Bacik13c5a932011-04-11 15:45:29 -040069 atomic_set(&cur_trans->use_count, 1);
Chris Mason79154b12007-03-22 15:59:16 -040070 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040071 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040072
Eric Paris6bef4d32010-02-23 19:43:04 +000073 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040074 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040075 cur_trans->delayed_refs.num_heads_ready = 0;
76 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040077 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040078 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040079 spin_lock_init(&cur_trans->delayed_refs.lock);
80
Chris Mason3063d292008-01-08 15:46:30 -050081 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040082 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050083 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040084 root->fs_info->btree_inode->i_mapping,
85 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040086 spin_lock(&root->fs_info->new_trans_lock);
87 root->fs_info->running_transaction = cur_trans;
88 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040089 } else {
Josef Bacik13c5a932011-04-11 15:45:29 -040090 atomic_inc(&cur_trans->num_writers);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040091 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040092 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040093
Chris Mason79154b12007-03-22 15:59:16 -040094 return 0;
95}
96
Chris Masond352ac62008-09-29 15:18:18 -040097/*
Chris Masond3977122009-01-05 21:25:51 -050098 * this does all the record keeping required to make sure that a reference
99 * counted root is properly recorded in a given transaction. This is required
100 * to make sure the old root from before we joined the transaction is deleted
101 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400102 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400103static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400105{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400106 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400107 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400108 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400109
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400115 }
116 return 0;
117}
118
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
124
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
129 }
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
133 return 0;
134}
135
Chris Masond352ac62008-09-29 15:18:18 -0400136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400140static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400141{
Chris Masonf9295742008-07-17 12:54:14 -0400142 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400143
Chris Masonf9295742008-07-17 12:54:14 -0400144 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400145 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400146 DEFINE_WAIT(wait);
Josef Bacik13c5a932011-04-11 15:45:29 -0400147 atomic_inc(&cur_trans->use_count);
Chris Masond3977122009-01-05 21:25:51 -0500148 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000151 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400152 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000153 mutex_unlock(&root->fs_info->trans_mutex);
154 schedule();
155 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400156 }
Zhao Lei471fa172010-03-25 12:35:14 +0000157 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400158 put_transaction(cur_trans);
159 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400160}
161
Josef Bacik249ac1e2009-11-10 21:23:48 -0500162enum btrfs_trans_type {
163 TRANS_START,
164 TRANS_JOIN,
165 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400166 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500167};
168
Yan, Zhenga22285a2010-05-16 10:48:46 -0400169static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400170{
Chris Mason4bef0842008-09-08 11:18:08 -0400171 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500172 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
173 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400174 return 1;
175 return 0;
176}
177
178static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
179 u64 num_items, int type)
180{
181 struct btrfs_trans_handle *h;
182 struct btrfs_transaction *cur_trans;
Josef Bacik06d5a582011-04-05 11:57:27 -0400183 int retries = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400184 int ret;
liuboacce9522011-01-06 19:30:25 +0800185
186 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR)
187 return ERR_PTR(-EROFS);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400188again:
189 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
190 if (!h)
191 return ERR_PTR(-ENOMEM);
192
Josef Bacik0af3d002010-06-21 14:48:16 -0400193 if (type != TRANS_JOIN_NOLOCK)
194 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400195 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400196 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400197
Chris Mason79154b12007-03-22 15:59:16 -0400198 ret = join_transaction(root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000199 if (ret < 0) {
Yoshinori Sano6e8df2a2011-04-03 12:31:28 +0000200 kmem_cache_free(btrfs_trans_handle_cachep, h);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000201 if (type != TRANS_JOIN_NOLOCK)
202 mutex_unlock(&root->fs_info->trans_mutex);
203 return ERR_PTR(ret);
204 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400205
Yan, Zhenga22285a2010-05-16 10:48:46 -0400206 cur_trans = root->fs_info->running_transaction;
Josef Bacik13c5a932011-04-11 15:45:29 -0400207 atomic_inc(&cur_trans->use_count);
Josef Bacik0af3d002010-06-21 14:48:16 -0400208 if (type != TRANS_JOIN_NOLOCK)
209 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400210
211 h->transid = cur_trans->transid;
212 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400213 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500214 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400215 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400216 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400217 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400218
Yan, Zhenga22285a2010-05-16 10:48:46 -0400219 smp_mb();
220 if (cur_trans->blocked && may_wait_transaction(root, type)) {
221 btrfs_commit_transaction(h, root);
222 goto again;
223 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400224
Yan, Zhenga22285a2010-05-16 10:48:46 -0400225 if (num_items > 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400226 ret = btrfs_trans_reserve_metadata(h, root, num_items);
Josef Bacik06d5a582011-04-05 11:57:27 -0400227 if (ret == -EAGAIN && !retries) {
228 retries++;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400229 btrfs_commit_transaction(h, root);
230 goto again;
Josef Bacik06d5a582011-04-05 11:57:27 -0400231 } else if (ret == -EAGAIN) {
232 /*
233 * We have already retried and got EAGAIN, so really we
234 * don't have space, so set ret to -ENOSPC.
235 */
236 ret = -ENOSPC;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400237 }
Josef Bacik06d5a582011-04-05 11:57:27 -0400238
Yan, Zhenga22285a2010-05-16 10:48:46 -0400239 if (ret < 0) {
240 btrfs_end_transaction(h, root);
241 return ERR_PTR(ret);
242 }
243 }
244
Josef Bacik0af3d002010-06-21 14:48:16 -0400245 if (type != TRANS_JOIN_NOLOCK)
246 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400247 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400248 if (type != TRANS_JOIN_NOLOCK)
249 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400250
251 if (!current->journal_info && type != TRANS_USERSPACE)
252 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400253 return h;
254}
255
Chris Masonf9295742008-07-17 12:54:14 -0400256struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400257 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400258{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400259 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400260}
261struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
262 int num_blocks)
263{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400264 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400265}
266
Josef Bacik0af3d002010-06-21 14:48:16 -0400267struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root,
268 int num_blocks)
269{
270 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
271}
272
Sage Weil9ca9ee02008-08-04 10:41:27 -0400273struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
274 int num_blocks)
275{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400276 return start_transaction(r, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400277}
278
Chris Masond352ac62008-09-29 15:18:18 -0400279/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400280static noinline int wait_for_commit(struct btrfs_root *root,
281 struct btrfs_transaction *commit)
282{
283 DEFINE_WAIT(wait);
284 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500285 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400286 prepare_to_wait(&commit->commit_wait, &wait,
287 TASK_UNINTERRUPTIBLE);
288 if (commit->commit_done)
289 break;
290 mutex_unlock(&root->fs_info->trans_mutex);
291 schedule();
292 mutex_lock(&root->fs_info->trans_mutex);
293 }
294 mutex_unlock(&root->fs_info->trans_mutex);
295 finish_wait(&commit->commit_wait, &wait);
296 return 0;
297}
298
Sage Weil46204592010-10-29 15:41:32 -0400299int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid)
300{
301 struct btrfs_transaction *cur_trans = NULL, *t;
302 int ret;
303
304 mutex_lock(&root->fs_info->trans_mutex);
305
306 ret = 0;
307 if (transid) {
308 if (transid <= root->fs_info->last_trans_committed)
309 goto out_unlock;
310
311 /* find specified transaction */
312 list_for_each_entry(t, &root->fs_info->trans_list, list) {
313 if (t->transid == transid) {
314 cur_trans = t;
315 break;
316 }
317 if (t->transid > transid)
318 break;
319 }
320 ret = -EINVAL;
321 if (!cur_trans)
322 goto out_unlock; /* bad transid */
323 } else {
324 /* find newest transaction that is committing | committed */
325 list_for_each_entry_reverse(t, &root->fs_info->trans_list,
326 list) {
327 if (t->in_commit) {
328 if (t->commit_done)
329 goto out_unlock;
330 cur_trans = t;
331 break;
332 }
333 }
334 if (!cur_trans)
335 goto out_unlock; /* nothing committing|committed */
336 }
337
Josef Bacik13c5a932011-04-11 15:45:29 -0400338 atomic_inc(&cur_trans->use_count);
Sage Weil46204592010-10-29 15:41:32 -0400339 mutex_unlock(&root->fs_info->trans_mutex);
340
341 wait_for_commit(root, cur_trans);
342
343 mutex_lock(&root->fs_info->trans_mutex);
344 put_transaction(cur_trans);
345 ret = 0;
346out_unlock:
347 mutex_unlock(&root->fs_info->trans_mutex);
348 return ret;
349}
350
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400351#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400352/*
Chris Masond3977122009-01-05 21:25:51 -0500353 * rate limit against the drop_snapshot code. This helps to slow down new
354 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400355 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400356static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400357{
358 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400359 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400360
Chris Mason2dd3e672008-08-04 08:20:15 -0400361harder:
Chris Masonab78c842008-07-29 16:15:18 -0400362 if (atomic_read(&info->throttles)) {
363 DEFINE_WAIT(wait);
364 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400365 thr = atomic_read(&info->throttle_gen);
366
367 do {
368 prepare_to_wait(&info->transaction_throttle,
369 &wait, TASK_UNINTERRUPTIBLE);
370 if (!atomic_read(&info->throttles)) {
371 finish_wait(&info->transaction_throttle, &wait);
372 break;
373 }
374 schedule();
375 finish_wait(&info->transaction_throttle, &wait);
376 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400377 harder_count++;
378
379 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
380 harder_count < 2)
381 goto harder;
382
383 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
384 harder_count < 10)
385 goto harder;
386
387 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
388 harder_count < 20)
389 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400390 }
391}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400392#endif
Chris Masonab78c842008-07-29 16:15:18 -0400393
Chris Mason37d1aee2008-07-31 10:48:37 -0400394void btrfs_throttle(struct btrfs_root *root)
395{
396 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400397 if (!root->fs_info->open_ioctl_trans)
398 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400399 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400400}
401
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400402static int should_end_transaction(struct btrfs_trans_handle *trans,
403 struct btrfs_root *root)
404{
405 int ret;
406 ret = btrfs_block_rsv_check(trans, root,
407 &root->fs_info->global_block_rsv, 0, 5);
408 return ret ? 1 : 0;
409}
410
411int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
412 struct btrfs_root *root)
413{
414 struct btrfs_transaction *cur_trans = trans->transaction;
415 int updates;
416
417 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
418 return 1;
419
420 updates = trans->delayed_ref_updates;
421 trans->delayed_ref_updates = 0;
422 if (updates)
423 btrfs_run_delayed_refs(trans, root, updates);
424
425 return should_end_transaction(trans, root);
426}
427
Chris Mason89ce8a62008-06-25 16:01:31 -0400428static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400429 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400430{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400431 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400432 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400433 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400434
Chris Masonc3e69d52009-03-13 10:17:05 -0400435 while (count < 4) {
436 unsigned long cur = trans->delayed_ref_updates;
437 trans->delayed_ref_updates = 0;
438 if (cur &&
439 trans->transaction->delayed_refs.num_heads_ready > 64) {
440 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400441
442 /*
443 * do a full flush if the transaction is trying
444 * to close
445 */
446 if (trans->transaction->delayed_refs.flushing)
447 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400448 btrfs_run_delayed_refs(trans, root, cur);
449 } else {
450 break;
451 }
452 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400453 }
454
Yan, Zhenga22285a2010-05-16 10:48:46 -0400455 btrfs_trans_release_metadata(trans, root);
456
Josef Bacik0af3d002010-06-21 14:48:16 -0400457 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400458 should_end_transaction(trans, root))
459 trans->transaction->blocked = 1;
460
Josef Bacik0af3d002010-06-21 14:48:16 -0400461 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400462 if (throttle)
463 return btrfs_commit_transaction(trans, root);
464 else
465 wake_up_process(info->transaction_kthread);
466 }
467
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400468 WARN_ON(cur_trans != info->running_transaction);
Josef Bacik13c5a932011-04-11 15:45:29 -0400469 WARN_ON(atomic_read(&cur_trans->num_writers) < 1);
470 atomic_dec(&cur_trans->num_writers);
Chris Mason89ce8a62008-06-25 16:01:31 -0400471
Sage Weil99d16cb2010-10-29 15:37:34 -0400472 smp_mb();
Chris Mason79154b12007-03-22 15:59:16 -0400473 if (waitqueue_active(&cur_trans->writer_wait))
474 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400475 put_transaction(cur_trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400476
477 if (current->journal_info == trans)
478 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400479 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400480 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400481
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000482 if (throttle)
483 btrfs_run_delayed_iputs(root);
484
Chris Mason79154b12007-03-22 15:59:16 -0400485 return 0;
486}
487
Chris Mason89ce8a62008-06-25 16:01:31 -0400488int btrfs_end_transaction(struct btrfs_trans_handle *trans,
489 struct btrfs_root *root)
490{
Josef Bacik0af3d002010-06-21 14:48:16 -0400491 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400492}
493
494int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
495 struct btrfs_root *root)
496{
Josef Bacik0af3d002010-06-21 14:48:16 -0400497 return __btrfs_end_transaction(trans, root, 1, 1);
498}
499
500int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
501 struct btrfs_root *root)
502{
503 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400504}
505
Chris Masond352ac62008-09-29 15:18:18 -0400506/*
507 * when btree blocks are allocated, they have some corresponding bits set for
508 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400509 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400510 */
Chris Mason690587d2009-10-13 13:29:19 -0400511int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000512 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400513{
Chris Mason7c4452b2007-04-28 09:29:35 -0400514 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400515 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400516 int werr = 0;
517 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400518 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400519 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400520 u64 end;
521 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400522
Chris Masond3977122009-01-05 21:25:51 -0500523 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400524 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000525 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400526 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400527 break;
Chris Masond3977122009-01-05 21:25:51 -0500528 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400529 cond_resched();
530
Chris Mason5f39d392007-10-15 16:14:19 -0400531 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400532 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400533 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400534 if (!page)
535 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400536
537 btree_lock_page_hook(page);
538 if (!page->mapping) {
539 unlock_page(page);
540 page_cache_release(page);
541 continue;
542 }
543
Chris Mason6702ed42007-08-07 16:15:09 -0400544 if (PageWriteback(page)) {
545 if (PageDirty(page))
546 wait_on_page_writeback(page);
547 else {
548 unlock_page(page);
549 page_cache_release(page);
550 continue;
551 }
552 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400553 err = write_one_page(page, 0);
554 if (err)
555 werr = err;
556 page_cache_release(page);
557 }
558 }
Chris Mason690587d2009-10-13 13:29:19 -0400559 if (err)
560 werr = err;
561 return werr;
562}
563
564/*
565 * when btree blocks are allocated, they have some corresponding bits set for
566 * them in one of two extent_io trees. This is used to make sure all of
567 * those extents are on disk for transaction or log commit. We wait
568 * on all the pages and clear them from the dirty pages state tree
569 */
570int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000571 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400572{
573 int ret;
574 int err = 0;
575 int werr = 0;
576 struct page *page;
577 struct inode *btree_inode = root->fs_info->btree_inode;
578 u64 start = 0;
579 u64 end;
580 unsigned long index;
581
Chris Masond3977122009-01-05 21:25:51 -0500582 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000583 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
584 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400585 if (ret)
586 break;
587
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000588 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500589 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400590 index = start >> PAGE_CACHE_SHIFT;
591 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
592 page = find_get_page(btree_inode->i_mapping, index);
593 if (!page)
594 continue;
595 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400596 btree_lock_page_hook(page);
597 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400598 err = write_one_page(page, 0);
599 if (err)
600 werr = err;
601 }
Chris Mason105d9312008-11-18 12:13:12 -0500602 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400603 page_cache_release(page);
604 cond_resched();
605 }
606 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400607 if (err)
608 werr = err;
609 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400610}
611
Chris Mason690587d2009-10-13 13:29:19 -0400612/*
613 * when btree blocks are allocated, they have some corresponding bits set for
614 * them in one of two extent_io trees. This is used to make sure all of
615 * those extents are on disk for transaction or log commit
616 */
617int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000618 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400619{
620 int ret;
621 int ret2;
622
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000623 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
624 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400625 return ret || ret2;
626}
627
Chris Masond0c803c2008-09-11 16:17:57 -0400628int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
629 struct btrfs_root *root)
630{
631 if (!trans || !trans->transaction) {
632 struct inode *btree_inode;
633 btree_inode = root->fs_info->btree_inode;
634 return filemap_write_and_wait(btree_inode->i_mapping);
635 }
636 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000637 &trans->transaction->dirty_pages,
638 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400639}
640
Chris Masond352ac62008-09-29 15:18:18 -0400641/*
642 * this is used to update the root pointer in the tree of tree roots.
643 *
644 * But, in the case of the extent allocation tree, updating the root
645 * pointer may allocate blocks which may change the root of the extent
646 * allocation tree.
647 *
648 * So, this loops and repeats and makes sure the cowonly root didn't
649 * change while the root pointer was being updated in the metadata.
650 */
Chris Mason0b86a832008-03-24 15:01:56 -0400651static int update_cowonly_root(struct btrfs_trans_handle *trans,
652 struct btrfs_root *root)
653{
654 int ret;
655 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000656 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400657 struct btrfs_root *tree_root = root->fs_info->tree_root;
658
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000659 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400660 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400661
Chris Masond3977122009-01-05 21:25:51 -0500662 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400663 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000664 if (old_root_bytenr == root->node->start &&
665 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400666 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400667
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400668 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400669 ret = btrfs_update_root(trans, tree_root,
670 &root->root_key,
671 &root->root_item);
672 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400673
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000674 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400675 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400676 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400677 }
Yan Zheng276e6802009-07-30 09:40:40 -0400678
679 if (root != root->fs_info->extent_root)
680 switch_commit_root(root);
681
Chris Mason0b86a832008-03-24 15:01:56 -0400682 return 0;
683}
684
Chris Masond352ac62008-09-29 15:18:18 -0400685/*
686 * update all the cowonly tree roots on disk
687 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400688static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
689 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400690{
Chris Mason79154b12007-03-22 15:59:16 -0400691 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400692 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400693 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400694 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400695
Chris Mason56bec292009-03-13 10:10:06 -0400696 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
697 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400698
Yan Zheng84234f32008-10-29 14:49:05 -0400699 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400700 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400701 btrfs_tree_unlock(eb);
702 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400703
Chris Mason56bec292009-03-13 10:10:06 -0400704 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
705 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400706
Chris Masond3977122009-01-05 21:25:51 -0500707 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400708 next = fs_info->dirty_cowonly_roots.next;
709 list_del_init(next);
710 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400711
Chris Mason0b86a832008-03-24 15:01:56 -0400712 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400713 }
Yan Zheng276e6802009-07-30 09:40:40 -0400714
715 down_write(&fs_info->extent_commit_sem);
716 switch_commit_root(fs_info->extent_root);
717 up_write(&fs_info->extent_commit_sem);
718
Chris Mason79154b12007-03-22 15:59:16 -0400719 return 0;
720}
721
Chris Masond352ac62008-09-29 15:18:18 -0400722/*
723 * dead roots are old snapshots that need to be deleted. This allocates
724 * a dirty root struct and adds it into the list of dead roots that need to
725 * be deleted
726 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400727int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400728{
Yan Zhengb48652c2008-08-04 23:23:47 -0400729 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400730 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400731 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400732 return 0;
733}
734
Chris Masond352ac62008-09-29 15:18:18 -0400735/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400736 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400737 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400738static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
739 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400740{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400741 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400742 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400743 int i;
744 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400745 int err = 0;
746
Chris Masond3977122009-01-05 21:25:51 -0500747 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400748 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
749 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400750 ARRAY_SIZE(gang),
751 BTRFS_ROOT_TRANS_TAG);
752 if (ret == 0)
753 break;
754 for (i = 0; i < ret; i++) {
755 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400756 radix_tree_tag_clear(&fs_info->fs_roots_radix,
757 (unsigned long)root->root_key.objectid,
758 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400759
Chris Masone02119d2008-09-05 16:13:11 -0400760 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400761 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400762 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400763
Li Zefan82d59022011-04-20 10:33:24 +0800764 btrfs_save_ino_cache(root, trans);
765
Yan Zheng978d9102009-06-15 20:01:02 -0400766 if (root->commit_root != root->node) {
Li Zefan581bb052011-04-20 10:06:11 +0800767 mutex_lock(&root->fs_commit_mutex);
Josef Bacik817d52f2009-07-13 21:29:25 -0400768 switch_commit_root(root);
Li Zefan581bb052011-04-20 10:06:11 +0800769 btrfs_unpin_free_ino(root);
770 mutex_unlock(&root->fs_commit_mutex);
771
Yan Zheng978d9102009-06-15 20:01:02 -0400772 btrfs_set_root_node(&root->root_item,
773 root->node);
774 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400775
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400776 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400777 &root->root_key,
778 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400779 if (err)
780 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400781 }
782 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400783 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400784}
785
Chris Masond352ac62008-09-29 15:18:18 -0400786/*
787 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
788 * otherwise every leaf in the btree is read and defragged.
789 */
Chris Masone9d0b132007-08-10 14:06:19 -0400790int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
791{
792 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400793 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400794 int ret;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400795 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400796
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400797 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400798 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400799
Chris Mason6b800532007-10-15 16:17:34 -0400800 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400801 trans = btrfs_start_transaction(root, 0);
802 if (IS_ERR(trans))
803 return PTR_ERR(trans);
804
Chris Masone9d0b132007-08-10 14:06:19 -0400805 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400806
Chris Masond3c2fdc2007-09-17 10:58:06 -0400807 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400808 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400809 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400810 cond_resched();
811
Chris Mason3f157a22008-06-25 16:01:31 -0400812 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400813 break;
814 }
815 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400816 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400817}
818
Yan Zheng2c47e6052009-06-27 21:07:35 -0400819#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400820/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400821 * when dropping snapshots, we generate a ton of delayed refs, and it makes
822 * sense not to join the transaction while it is trying to flush the current
823 * queue of delayed refs out.
824 *
825 * This is used by the drop snapshot code only
826 */
827static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
828{
829 DEFINE_WAIT(wait);
830
831 mutex_lock(&info->trans_mutex);
832 while (info->running_transaction &&
833 info->running_transaction->delayed_refs.flushing) {
834 prepare_to_wait(&info->transaction_wait, &wait,
835 TASK_UNINTERRUPTIBLE);
836 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400837
Chris Masonb7ec40d2009-03-12 20:12:45 -0400838 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400839
Chris Masonb7ec40d2009-03-12 20:12:45 -0400840 mutex_lock(&info->trans_mutex);
841 finish_wait(&info->transaction_wait, &wait);
842 }
843 mutex_unlock(&info->trans_mutex);
844 return 0;
845}
846
847/*
Chris Masond352ac62008-09-29 15:18:18 -0400848 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
849 * all of them
850 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400851int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400852{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400853 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400854 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400855 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400856 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400857
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400858 while (1) {
859 /*
860 * we don't want to jump in and create a bunch of
861 * delayed refs if the transaction is starting to close
862 */
863 wait_transaction_pre_flush(tree_root->fs_info);
864 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400865
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400866 /*
867 * we've joined a transaction, make sure it isn't
868 * closing right now
869 */
870 if (trans->transaction->delayed_refs.flushing) {
871 btrfs_end_transaction(trans, tree_root);
872 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400873 }
Chris Masona2135012008-06-25 16:01:30 -0400874
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400875 ret = btrfs_drop_snapshot(trans, root);
876 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400877 break;
Chris Masona2135012008-06-25 16:01:30 -0400878
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400879 ret = btrfs_update_root(trans, tree_root,
880 &root->root_key,
881 &root->root_item);
882 if (ret)
883 break;
Yanbcc63ab2008-07-30 16:29:20 -0400884
Chris Masond3c2fdc2007-09-17 10:58:06 -0400885 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400886 ret = btrfs_end_transaction(trans, tree_root);
887 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400888
Chris Masond3c2fdc2007-09-17 10:58:06 -0400889 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc11902007-10-15 16:18:14 -0400890 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400891 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400892 BUG_ON(ret);
893
894 ret = btrfs_del_root(trans, tree_root, &root->root_key);
895 BUG_ON(ret);
896
897 nr = trans->blocks_used;
898 ret = btrfs_end_transaction(trans, tree_root);
899 BUG_ON(ret);
900
901 free_extent_buffer(root->node);
902 free_extent_buffer(root->commit_root);
903 kfree(root);
904
905 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400906 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400907}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400908#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400909
Chris Masond352ac62008-09-29 15:18:18 -0400910/*
911 * new snapshots need to be created at a very specific time in the
912 * transaction commit. This does the actual creation
913 */
Chris Mason80b67942008-02-01 16:35:04 -0500914static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500915 struct btrfs_fs_info *fs_info,
916 struct btrfs_pending_snapshot *pending)
917{
918 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500919 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500920 struct btrfs_root *tree_root = fs_info->tree_root;
921 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000922 struct btrfs_root *parent_root;
923 struct inode *parent_inode;
Josef Bacik6a912212010-11-20 09:48:00 +0000924 struct dentry *parent;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400925 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500926 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400927 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500928 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400929 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000930 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400931 u64 objectid;
Li Zefanb83cc962010-12-20 16:04:08 +0800932 u64 root_flags;
Chris Mason3063d292008-01-08 15:46:30 -0500933
Chris Mason80b67942008-02-01 16:35:04 -0500934 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
935 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400936 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500937 goto fail;
938 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400939
Li Zefan581bb052011-04-20 10:06:11 +0800940 ret = btrfs_find_free_objectid(tree_root, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400941 if (ret) {
942 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500943 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400944 }
Chris Mason3063d292008-01-08 15:46:30 -0500945
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400946 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400947 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
948
949 if (to_reserve > 0) {
950 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -0400951 to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400952 if (ret) {
953 pending->error = ret;
954 goto fail;
955 }
956 }
957
Chris Mason3063d292008-01-08 15:46:30 -0500958 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400959 key.offset = (u64)-1;
960 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500961
Yan, Zhenga22285a2010-05-16 10:48:46 -0400962 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000963
Yan, Zhenga22285a2010-05-16 10:48:46 -0400964 dentry = pending->dentry;
Josef Bacik6a912212010-11-20 09:48:00 +0000965 parent = dget_parent(dentry);
966 parent_inode = parent->d_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400967 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000968 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400969
Sage Weil6bdb72d2010-03-15 17:27:13 +0000970 /*
971 * insert the directory item
972 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000973 ret = btrfs_set_inode_index(parent_inode, &index);
974 BUG_ON(ret);
975 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400976 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +0800977 btrfs_ino(parent_inode), &key,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400978 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000979 BUG_ON(ret);
980
Yan, Zhenga22285a2010-05-16 10:48:46 -0400981 btrfs_i_size_write(parent_inode, parent_inode->i_size +
982 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000983 ret = btrfs_update_inode(trans, parent_root, parent_inode);
984 BUG_ON(ret);
985
986 record_root_in_trans(trans, root);
987 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
988 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Li Zefan08fe4db2011-03-28 02:01:25 +0000989 btrfs_check_and_init_root_item(new_root_item);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000990
Li Zefanb83cc962010-12-20 16:04:08 +0800991 root_flags = btrfs_root_flags(new_root_item);
992 if (pending->readonly)
993 root_flags |= BTRFS_ROOT_SUBVOL_RDONLY;
994 else
995 root_flags &= ~BTRFS_ROOT_SUBVOL_RDONLY;
996 btrfs_set_root_flags(new_root_item, root_flags);
997
Chris Mason925baed2008-06-25 16:01:30 -0400998 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400999 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001000 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -05001001
Chris Mason925baed2008-06-25 16:01:30 -04001002 btrfs_copy_root(trans, root, old, &tmp, objectid);
1003 btrfs_tree_unlock(old);
1004 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -05001005
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001006 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001007 /* record when the snapshot was created in key.offset */
1008 key.offset = trans->transid;
1009 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -04001010 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -05001011 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -05001012 BUG_ON(ret);
1013
Yan, Zhenga22285a2010-05-16 10:48:46 -04001014 /*
1015 * insert root back/forward references
1016 */
1017 ret = btrfs_add_root_ref(trans, tree_root, objectid,
1018 parent_root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001019 btrfs_ino(parent_inode), index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04001020 dentry->d_name.name, dentry->d_name.len);
1021 BUG_ON(ret);
Josef Bacik6a912212010-11-20 09:48:00 +00001022 dput(parent);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001023
1024 key.offset = (u64)-1;
1025 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
1026 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -04001027
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001028 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -04001029 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -05001030fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +00001031 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -04001032 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
1033 return 0;
Chris Mason3063d292008-01-08 15:46:30 -05001034}
1035
Chris Masond352ac62008-09-29 15:18:18 -04001036/*
1037 * create all the snapshots we've scheduled for creation
1038 */
Chris Mason80b67942008-02-01 16:35:04 -05001039static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
1040 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -05001041{
1042 struct btrfs_pending_snapshot *pending;
1043 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -05001044 int ret;
1045
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001046 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -05001047 ret = create_pending_snapshot(trans, fs_info, pending);
1048 BUG_ON(ret);
1049 }
1050 return 0;
1051}
1052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053static void update_super_roots(struct btrfs_root *root)
1054{
1055 struct btrfs_root_item *root_item;
1056 struct btrfs_super_block *super;
1057
1058 super = &root->fs_info->super_copy;
1059
1060 root_item = &root->fs_info->chunk_root->root_item;
1061 super->chunk_root = root_item->bytenr;
1062 super->chunk_root_generation = root_item->generation;
1063 super->chunk_root_level = root_item->level;
1064
1065 root_item = &root->fs_info->tree_root->root_item;
1066 super->root = root_item->bytenr;
1067 super->generation = root_item->generation;
1068 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -04001069 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
1070 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001071}
1072
Chris Masonf36f3042009-07-30 10:04:48 -04001073int btrfs_transaction_in_commit(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->in_commit;
1079 spin_unlock(&info->new_trans_lock);
1080 return ret;
1081}
1082
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001083int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1084{
1085 int ret = 0;
1086 spin_lock(&info->new_trans_lock);
1087 if (info->running_transaction)
1088 ret = info->running_transaction->blocked;
1089 spin_unlock(&info->new_trans_lock);
1090 return ret;
1091}
1092
Sage Weilbb9c12c2010-10-29 15:37:34 -04001093/*
1094 * wait for the current transaction commit to start and block subsequent
1095 * transaction joins
1096 */
1097static void wait_current_trans_commit_start(struct btrfs_root *root,
1098 struct btrfs_transaction *trans)
1099{
1100 DEFINE_WAIT(wait);
1101
1102 if (trans->in_commit)
1103 return;
1104
1105 while (1) {
1106 prepare_to_wait(&root->fs_info->transaction_blocked_wait, &wait,
1107 TASK_UNINTERRUPTIBLE);
1108 if (trans->in_commit) {
1109 finish_wait(&root->fs_info->transaction_blocked_wait,
1110 &wait);
1111 break;
1112 }
1113 mutex_unlock(&root->fs_info->trans_mutex);
1114 schedule();
1115 mutex_lock(&root->fs_info->trans_mutex);
1116 finish_wait(&root->fs_info->transaction_blocked_wait, &wait);
1117 }
1118}
1119
1120/*
1121 * wait for the current transaction to start and then become unblocked.
1122 * caller holds ref.
1123 */
1124static void wait_current_trans_commit_start_and_unblock(struct btrfs_root *root,
1125 struct btrfs_transaction *trans)
1126{
1127 DEFINE_WAIT(wait);
1128
1129 if (trans->commit_done || (trans->in_commit && !trans->blocked))
1130 return;
1131
1132 while (1) {
1133 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
1134 TASK_UNINTERRUPTIBLE);
1135 if (trans->commit_done ||
1136 (trans->in_commit && !trans->blocked)) {
1137 finish_wait(&root->fs_info->transaction_wait,
1138 &wait);
1139 break;
1140 }
1141 mutex_unlock(&root->fs_info->trans_mutex);
1142 schedule();
1143 mutex_lock(&root->fs_info->trans_mutex);
1144 finish_wait(&root->fs_info->transaction_wait,
1145 &wait);
1146 }
1147}
1148
1149/*
1150 * commit transactions asynchronously. once btrfs_commit_transaction_async
1151 * returns, any subsequent transaction will not be allowed to join.
1152 */
1153struct btrfs_async_commit {
1154 struct btrfs_trans_handle *newtrans;
1155 struct btrfs_root *root;
1156 struct delayed_work work;
1157};
1158
1159static void do_async_commit(struct work_struct *work)
1160{
1161 struct btrfs_async_commit *ac =
1162 container_of(work, struct btrfs_async_commit, work.work);
1163
1164 btrfs_commit_transaction(ac->newtrans, ac->root);
1165 kfree(ac);
1166}
1167
1168int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
1169 struct btrfs_root *root,
1170 int wait_for_unblock)
1171{
1172 struct btrfs_async_commit *ac;
1173 struct btrfs_transaction *cur_trans;
1174
1175 ac = kmalloc(sizeof(*ac), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001176 if (!ac)
1177 return -ENOMEM;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001178
1179 INIT_DELAYED_WORK(&ac->work, do_async_commit);
1180 ac->root = root;
1181 ac->newtrans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001182 if (IS_ERR(ac->newtrans)) {
1183 int err = PTR_ERR(ac->newtrans);
1184 kfree(ac);
1185 return err;
1186 }
Sage Weilbb9c12c2010-10-29 15:37:34 -04001187
1188 /* take transaction reference */
1189 mutex_lock(&root->fs_info->trans_mutex);
1190 cur_trans = trans->transaction;
Josef Bacik13c5a932011-04-11 15:45:29 -04001191 atomic_inc(&cur_trans->use_count);
Sage Weilbb9c12c2010-10-29 15:37:34 -04001192 mutex_unlock(&root->fs_info->trans_mutex);
1193
1194 btrfs_end_transaction(trans, root);
1195 schedule_delayed_work(&ac->work, 0);
1196
1197 /* wait for transaction to start and unblock */
1198 mutex_lock(&root->fs_info->trans_mutex);
1199 if (wait_for_unblock)
1200 wait_current_trans_commit_start_and_unblock(root, cur_trans);
1201 else
1202 wait_current_trans_commit_start(root, cur_trans);
1203 put_transaction(cur_trans);
1204 mutex_unlock(&root->fs_info->trans_mutex);
1205
1206 return 0;
1207}
1208
1209/*
1210 * btrfs_transaction state sequence:
1211 * in_commit = 0, blocked = 0 (initial)
1212 * in_commit = 1, blocked = 1
1213 * blocked = 0
1214 * commit_done = 1
1215 */
Chris Mason79154b12007-03-22 15:59:16 -04001216int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1217 struct btrfs_root *root)
1218{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001219 unsigned long joined = 0;
Chris Mason79154b12007-03-22 15:59:16 -04001220 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001221 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001222 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001223 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001224 int should_grow = 0;
1225 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001226 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001227
Chris Mason5a3f23d2009-03-31 13:27:11 -04001228 btrfs_run_ordered_operations(root, 0);
1229
Chris Mason56bec292009-03-13 10:10:06 -04001230 /* make a pass through all the delayed refs we have so far
1231 * any runnings procs may add more while we are here
1232 */
1233 ret = btrfs_run_delayed_refs(trans, root, 0);
1234 BUG_ON(ret);
1235
Yan, Zhenga22285a2010-05-16 10:48:46 -04001236 btrfs_trans_release_metadata(trans, root);
1237
Chris Masonb7ec40d2009-03-12 20:12:45 -04001238 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001239 /*
1240 * set the flushing flag so procs in this transaction have to
1241 * start sending their work down.
1242 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001243 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001244
Chris Masonc3e69d52009-03-13 10:17:05 -04001245 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001246 BUG_ON(ret);
1247
Chris Mason79154b12007-03-22 15:59:16 -04001248 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001249 if (cur_trans->in_commit) {
Josef Bacik13c5a932011-04-11 15:45:29 -04001250 atomic_inc(&cur_trans->use_count);
Chris Masonccd467d2007-06-28 15:57:36 -04001251 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001252 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001253
Chris Mason79154b12007-03-22 15:59:16 -04001254 ret = wait_for_commit(root, cur_trans);
1255 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001256
1257 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001258 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001259 mutex_unlock(&root->fs_info->trans_mutex);
1260
Chris Mason79154b12007-03-22 15:59:16 -04001261 return 0;
1262 }
Chris Mason4313b392008-01-03 09:08:48 -05001263
Chris Mason2c90e5d2007-04-02 10:50:19 -04001264 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001265 trans->transaction->blocked = 1;
Sage Weilbb9c12c2010-10-29 15:37:34 -04001266 wake_up(&root->fs_info->transaction_blocked_wait);
1267
Chris Masonccd467d2007-06-28 15:57:36 -04001268 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1269 prev_trans = list_entry(cur_trans->list.prev,
1270 struct btrfs_transaction, list);
1271 if (!prev_trans->commit_done) {
Josef Bacik13c5a932011-04-11 15:45:29 -04001272 atomic_inc(&prev_trans->use_count);
Chris Masonccd467d2007-06-28 15:57:36 -04001273 mutex_unlock(&root->fs_info->trans_mutex);
1274
1275 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001276
Chris Masonccd467d2007-06-28 15:57:36 -04001277 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001278 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001279 }
1280 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001281
Chris Mason89573b92009-03-12 20:12:45 -04001282 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1283 should_grow = 1;
1284
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001285 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001286 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001287 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001288 if (!list_empty(&trans->transaction->pending_snapshots))
1289 snap_pending = 1;
1290
Chris Mason2c90e5d2007-04-02 10:50:19 -04001291 WARN_ON(cur_trans != trans->transaction);
Chris Mason79154b12007-03-22 15:59:16 -04001292 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001293
Sage Weil0bdb1db2010-02-19 14:13:50 -08001294 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001295 btrfs_start_delalloc_inodes(root, 1);
1296 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001297 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001298 }
1299
Chris Mason5a3f23d2009-03-31 13:27:11 -04001300 /*
1301 * rename don't use btrfs_join_transaction, so, once we
1302 * set the transaction to blocked above, we aren't going
1303 * to get any new ordered operations. We can safely run
1304 * it here and no for sure that nothing new will be added
1305 * to the list
1306 */
1307 btrfs_run_ordered_operations(root, 1);
1308
Chris Masoned3b3d3142010-05-25 10:12:41 -04001309 prepare_to_wait(&cur_trans->writer_wait, &wait,
1310 TASK_UNINTERRUPTIBLE);
1311
Chris Mason89573b92009-03-12 20:12:45 -04001312 smp_mb();
Josef Bacik13c5a932011-04-11 15:45:29 -04001313 if (atomic_read(&cur_trans->num_writers) > 1)
Sage Weil99d16cb2010-10-29 15:37:34 -04001314 schedule_timeout(MAX_SCHEDULE_TIMEOUT);
1315 else if (should_grow)
1316 schedule_timeout(1);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001317
Chris Mason79154b12007-03-22 15:59:16 -04001318 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001319 finish_wait(&cur_trans->writer_wait, &wait);
Josef Bacik13c5a932011-04-11 15:45:29 -04001320 } while (atomic_read(&cur_trans->num_writers) > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001321 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001322
Chris Mason3063d292008-01-08 15:46:30 -05001323 ret = create_pending_snapshots(trans, root->fs_info);
1324 BUG_ON(ret);
1325
Chris Mason56bec292009-03-13 10:10:06 -04001326 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1327 BUG_ON(ret);
1328
Chris Mason2c90e5d2007-04-02 10:50:19 -04001329 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001330
Chris Masone02119d2008-09-05 16:13:11 -04001331 /* btrfs_commit_tree_roots is responsible for getting the
1332 * various roots consistent with each other. Every pointer
1333 * in the tree of tree roots has to point to the most up to date
1334 * root for every subvolume and other tree. So, we have to keep
1335 * the tree logging code from jumping in and changing any
1336 * of the trees.
1337 *
1338 * At this point in the commit, there can't be any tree-log
1339 * writers, but a little lower down we drop the trans mutex
1340 * and let new people in. By holding the tree_log_mutex
1341 * from now until after the super is written, we avoid races
1342 * with the tree-log code.
1343 */
1344 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001345
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001347 BUG_ON(ret);
1348
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001349 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001350 * safe to free the root of tree log roots
1351 */
1352 btrfs_free_log_root_tree(trans, root->fs_info);
1353
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001354 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001355 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001356
Yan Zheng11833d62009-09-11 16:11:19 -04001357 btrfs_prepare_extent_commit(trans, root);
1358
Chris Mason78fae272007-03-25 11:35:08 -04001359 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001360 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001361 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001362 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001363
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001364 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1365 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001366 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001367
1368 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1369 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001370 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001371
1372 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001373
1374 if (!root->fs_info->log_root_recovering) {
1375 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1376 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1377 }
1378
Chris Masona061fc82008-05-07 11:43:44 -04001379 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1380 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001381
Chris Masonf9295742008-07-17 12:54:14 -04001382 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001383
Chris Masonf9295742008-07-17 12:54:14 -04001384 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001385
Chris Mason78fae272007-03-25 11:35:08 -04001386 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001387 ret = btrfs_write_and_wait_transaction(trans, root);
1388 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001389 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001390
Chris Masone02119d2008-09-05 16:13:11 -04001391 /*
1392 * the super is written, we can safely allow the tree-loggers
1393 * to go about their business
1394 */
1395 mutex_unlock(&root->fs_info->tree_log_mutex);
1396
Yan Zheng11833d62009-09-11 16:11:19 -04001397 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001398
Zheng Yan1a40e232008-09-26 10:09:34 -04001399 mutex_lock(&root->fs_info->trans_mutex);
1400
Chris Mason2c90e5d2007-04-02 10:50:19 -04001401 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001402
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001403 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001404
Chris Mason2c90e5d2007-04-02 10:50:19 -04001405 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001406
Josef Bacik13c5a932011-04-11 15:45:29 -04001407 list_del_init(&cur_trans->list);
Chris Mason79154b12007-03-22 15:59:16 -04001408 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001409 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001410
liubo1abe9b82011-03-24 11:18:59 +00001411 trace_btrfs_transaction_commit(root);
1412
Chris Mason78fae272007-03-25 11:35:08 -04001413 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001414
Josef Bacik9ed74f22009-09-11 16:12:44 -04001415 if (current->journal_info == trans)
1416 current->journal_info = NULL;
1417
Chris Mason2c90e5d2007-04-02 10:50:19 -04001418 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001419
1420 if (current != root->fs_info->transaction_kthread)
1421 btrfs_run_delayed_iputs(root);
1422
Chris Mason79154b12007-03-22 15:59:16 -04001423 return ret;
1424}
1425
Chris Masond352ac62008-09-29 15:18:18 -04001426/*
1427 * interface function to delete all the snapshots we have scheduled for deletion
1428 */
Chris Masone9d0b132007-08-10 14:06:19 -04001429int btrfs_clean_old_snapshots(struct btrfs_root *root)
1430{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001431 LIST_HEAD(list);
1432 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001433
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001434 mutex_lock(&fs_info->trans_mutex);
1435 list_splice_init(&fs_info->dead_roots, &list);
1436 mutex_unlock(&fs_info->trans_mutex);
1437
1438 while (!list_empty(&list)) {
1439 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001440 list_del(&root->root_list);
1441
1442 if (btrfs_header_backref_rev(root->node) <
1443 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001444 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001445 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001446 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001447 }
1448 return 0;
1449}