blob: e7144c48ed79bc20a33e3d3753a7ba8b0ec08e86 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Masond3c2fdcf2007-09-17 10:58:06 -040022#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040023#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050024#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason80b67942008-02-01 16:35:04 -050033static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040034{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040038 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040041 }
Chris Mason79154b12007-03-22 15:59:16 -040042}
43
Josef Bacik817d52f2009-07-13 21:29:25 -040044static noinline void switch_commit_root(struct btrfs_root *root)
45{
Josef Bacik817d52f2009-07-13 21:29:25 -040046 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040048}
49
Chris Masond352ac62008-09-29 15:18:18 -040050/*
51 * either allocate a new transaction or hop into the existing one
52 */
Chris Mason80b67942008-02-01 16:35:04 -050053static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040054{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040058 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040060 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040061 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040062 cur_trans->num_writers = 1;
63 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040064 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040065 init_waitqueue_head(&cur_trans->writer_wait);
66 init_waitqueue_head(&cur_trans->commit_wait);
67 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040068 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040069 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040070 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040071 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040072
Eric Paris6bef4d32010-02-23 19:43:04 +000073 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040074 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040075 cur_trans->delayed_refs.num_heads_ready = 0;
76 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040077 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040078 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040079 spin_lock_init(&cur_trans->delayed_refs.lock);
80
Chris Mason3063d292008-01-08 15:46:30 -050081 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040082 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050083 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040084 root->fs_info->btree_inode->i_mapping,
85 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040086 spin_lock(&root->fs_info->new_trans_lock);
87 root->fs_info->running_transaction = cur_trans;
88 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040089 } else {
90 cur_trans->num_writers++;
91 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040092 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040093
Chris Mason79154b12007-03-22 15:59:16 -040094 return 0;
95}
96
Chris Masond352ac62008-09-29 15:18:18 -040097/*
Chris Masond3977122009-01-05 21:25:51 -050098 * this does all the record keeping required to make sure that a reference
99 * counted root is properly recorded in a given transaction. This is required
100 * to make sure the old root from before we joined the transaction is deleted
101 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400102 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400103static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
104 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400105{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400106 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400107 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400108 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400109
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400115 }
116 return 0;
117}
118
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
124
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
129 }
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
133 return 0;
134}
135
Chris Masond352ac62008-09-29 15:18:18 -0400136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400140static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400141{
Chris Masonf9295742008-07-17 12:54:14 -0400142 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400143
Chris Masonf9295742008-07-17 12:54:14 -0400144 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400145 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400146 DEFINE_WAIT(wait);
147 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500148 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
Zhao Lei471fa172010-03-25 12:35:14 +0000151 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400152 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000153 mutex_unlock(&root->fs_info->trans_mutex);
154 schedule();
155 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400156 }
Zhao Lei471fa172010-03-25 12:35:14 +0000157 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400158 put_transaction(cur_trans);
159 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400160}
161
Josef Bacik249ac1e2009-11-10 21:23:48 -0500162enum btrfs_trans_type {
163 TRANS_START,
164 TRANS_JOIN,
165 TRANS_USERSPACE,
Josef Bacik0af3d002010-06-21 14:48:16 -0400166 TRANS_JOIN_NOLOCK,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500167};
168
Yan, Zhenga22285a2010-05-16 10:48:46 -0400169static int may_wait_transaction(struct btrfs_root *root, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400170{
Chris Mason4bef0842008-09-08 11:18:08 -0400171 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500172 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
173 type == TRANS_USERSPACE))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400174 return 1;
175 return 0;
176}
177
178static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
179 u64 num_items, int type)
180{
181 struct btrfs_trans_handle *h;
182 struct btrfs_transaction *cur_trans;
183 int retries = 0;
184 int ret;
185again:
186 h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
187 if (!h)
188 return ERR_PTR(-ENOMEM);
189
Josef Bacik0af3d002010-06-21 14:48:16 -0400190 if (type != TRANS_JOIN_NOLOCK)
191 mutex_lock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400192 if (may_wait_transaction(root, type))
Chris Mason37d1aee2008-07-31 10:48:37 -0400193 wait_current_trans(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400194
Chris Mason79154b12007-03-22 15:59:16 -0400195 ret = join_transaction(root);
196 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400197
Yan, Zhenga22285a2010-05-16 10:48:46 -0400198 cur_trans = root->fs_info->running_transaction;
199 cur_trans->use_count++;
Josef Bacik0af3d002010-06-21 14:48:16 -0400200 if (type != TRANS_JOIN_NOLOCK)
201 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400202
203 h->transid = cur_trans->transid;
204 h->transaction = cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400205 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500206 h->block_group = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400207 h->bytes_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400208 h->delayed_ref_updates = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400209 h->block_rsv = NULL;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400210
Yan, Zhenga22285a2010-05-16 10:48:46 -0400211 smp_mb();
212 if (cur_trans->blocked && may_wait_transaction(root, type)) {
213 btrfs_commit_transaction(h, root);
214 goto again;
215 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400216
Yan, Zhenga22285a2010-05-16 10:48:46 -0400217 if (num_items > 0) {
218 ret = btrfs_trans_reserve_metadata(h, root, num_items,
219 &retries);
220 if (ret == -EAGAIN) {
221 btrfs_commit_transaction(h, root);
222 goto again;
223 }
224 if (ret < 0) {
225 btrfs_end_transaction(h, root);
226 return ERR_PTR(ret);
227 }
228 }
229
Josef Bacik0af3d002010-06-21 14:48:16 -0400230 if (type != TRANS_JOIN_NOLOCK)
231 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400232 record_root_in_trans(h, root);
Josef Bacik0af3d002010-06-21 14:48:16 -0400233 if (type != TRANS_JOIN_NOLOCK)
234 mutex_unlock(&root->fs_info->trans_mutex);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400235
236 if (!current->journal_info && type != TRANS_USERSPACE)
237 current->journal_info = h;
Chris Mason79154b12007-03-22 15:59:16 -0400238 return h;
239}
240
Chris Masonf9295742008-07-17 12:54:14 -0400241struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400242 int num_items)
Chris Masonf9295742008-07-17 12:54:14 -0400243{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400244 return start_transaction(root, num_items, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400245}
246struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
247 int num_blocks)
248{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400249 return start_transaction(root, 0, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400250}
251
Josef Bacik0af3d002010-06-21 14:48:16 -0400252struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root,
253 int num_blocks)
254{
255 return start_transaction(root, 0, TRANS_JOIN_NOLOCK);
256}
257
Sage Weil9ca9ee02008-08-04 10:41:27 -0400258struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
259 int num_blocks)
260{
Yan, Zhenga22285a2010-05-16 10:48:46 -0400261 return start_transaction(r, 0, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400262}
263
Chris Masond352ac62008-09-29 15:18:18 -0400264/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400265static noinline int wait_for_commit(struct btrfs_root *root,
266 struct btrfs_transaction *commit)
267{
268 DEFINE_WAIT(wait);
269 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500270 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400271 prepare_to_wait(&commit->commit_wait, &wait,
272 TASK_UNINTERRUPTIBLE);
273 if (commit->commit_done)
274 break;
275 mutex_unlock(&root->fs_info->trans_mutex);
276 schedule();
277 mutex_lock(&root->fs_info->trans_mutex);
278 }
279 mutex_unlock(&root->fs_info->trans_mutex);
280 finish_wait(&commit->commit_wait, &wait);
281 return 0;
282}
283
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400284#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400285/*
Chris Masond3977122009-01-05 21:25:51 -0500286 * rate limit against the drop_snapshot code. This helps to slow down new
287 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400288 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400289static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400290{
291 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400292 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400293
Chris Mason2dd3e672008-08-04 08:20:15 -0400294harder:
Chris Masonab78c842008-07-29 16:15:18 -0400295 if (atomic_read(&info->throttles)) {
296 DEFINE_WAIT(wait);
297 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400298 thr = atomic_read(&info->throttle_gen);
299
300 do {
301 prepare_to_wait(&info->transaction_throttle,
302 &wait, TASK_UNINTERRUPTIBLE);
303 if (!atomic_read(&info->throttles)) {
304 finish_wait(&info->transaction_throttle, &wait);
305 break;
306 }
307 schedule();
308 finish_wait(&info->transaction_throttle, &wait);
309 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400310 harder_count++;
311
312 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
313 harder_count < 2)
314 goto harder;
315
316 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
317 harder_count < 10)
318 goto harder;
319
320 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
321 harder_count < 20)
322 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400323 }
324}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400325#endif
Chris Masonab78c842008-07-29 16:15:18 -0400326
Chris Mason37d1aee2008-07-31 10:48:37 -0400327void btrfs_throttle(struct btrfs_root *root)
328{
329 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400330 if (!root->fs_info->open_ioctl_trans)
331 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400332 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400333}
334
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400335static int should_end_transaction(struct btrfs_trans_handle *trans,
336 struct btrfs_root *root)
337{
338 int ret;
339 ret = btrfs_block_rsv_check(trans, root,
340 &root->fs_info->global_block_rsv, 0, 5);
341 return ret ? 1 : 0;
342}
343
344int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,
345 struct btrfs_root *root)
346{
347 struct btrfs_transaction *cur_trans = trans->transaction;
348 int updates;
349
350 if (cur_trans->blocked || cur_trans->delayed_refs.flushing)
351 return 1;
352
353 updates = trans->delayed_ref_updates;
354 trans->delayed_ref_updates = 0;
355 if (updates)
356 btrfs_run_delayed_refs(trans, root, updates);
357
358 return should_end_transaction(trans, root);
359}
360
Chris Mason89ce8a62008-06-25 16:01:31 -0400361static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
Josef Bacik0af3d002010-06-21 14:48:16 -0400362 struct btrfs_root *root, int throttle, int lock)
Chris Mason79154b12007-03-22 15:59:16 -0400363{
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400364 struct btrfs_transaction *cur_trans = trans->transaction;
Chris Masonab78c842008-07-29 16:15:18 -0400365 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400366 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400367
Chris Masonc3e69d52009-03-13 10:17:05 -0400368 while (count < 4) {
369 unsigned long cur = trans->delayed_ref_updates;
370 trans->delayed_ref_updates = 0;
371 if (cur &&
372 trans->transaction->delayed_refs.num_heads_ready > 64) {
373 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400374
375 /*
376 * do a full flush if the transaction is trying
377 * to close
378 */
379 if (trans->transaction->delayed_refs.flushing)
380 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400381 btrfs_run_delayed_refs(trans, root, cur);
382 } else {
383 break;
384 }
385 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400386 }
387
Yan, Zhenga22285a2010-05-16 10:48:46 -0400388 btrfs_trans_release_metadata(trans, root);
389
Josef Bacik0af3d002010-06-21 14:48:16 -0400390 if (lock && !root->fs_info->open_ioctl_trans &&
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400391 should_end_transaction(trans, root))
392 trans->transaction->blocked = 1;
393
Josef Bacik0af3d002010-06-21 14:48:16 -0400394 if (lock && cur_trans->blocked && !cur_trans->in_commit) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400395 if (throttle)
396 return btrfs_commit_transaction(trans, root);
397 else
398 wake_up_process(info->transaction_kthread);
399 }
400
Josef Bacik0af3d002010-06-21 14:48:16 -0400401 if (lock)
402 mutex_lock(&info->trans_mutex);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400403 WARN_ON(cur_trans != info->running_transaction);
Chris Masond5719762007-03-23 10:01:08 -0400404 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400405 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400406
Chris Mason79154b12007-03-22 15:59:16 -0400407 if (waitqueue_active(&cur_trans->writer_wait))
408 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400409 put_transaction(cur_trans);
Josef Bacik0af3d002010-06-21 14:48:16 -0400410 if (lock)
411 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400412
413 if (current->journal_info == trans)
414 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400415 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400416 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400417
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000418 if (throttle)
419 btrfs_run_delayed_iputs(root);
420
Chris Mason79154b12007-03-22 15:59:16 -0400421 return 0;
422}
423
Chris Mason89ce8a62008-06-25 16:01:31 -0400424int btrfs_end_transaction(struct btrfs_trans_handle *trans,
425 struct btrfs_root *root)
426{
Josef Bacik0af3d002010-06-21 14:48:16 -0400427 return __btrfs_end_transaction(trans, root, 0, 1);
Chris Mason89ce8a62008-06-25 16:01:31 -0400428}
429
430int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
431 struct btrfs_root *root)
432{
Josef Bacik0af3d002010-06-21 14:48:16 -0400433 return __btrfs_end_transaction(trans, root, 1, 1);
434}
435
436int btrfs_end_transaction_nolock(struct btrfs_trans_handle *trans,
437 struct btrfs_root *root)
438{
439 return __btrfs_end_transaction(trans, root, 0, 0);
Chris Mason89ce8a62008-06-25 16:01:31 -0400440}
441
Chris Masond352ac62008-09-29 15:18:18 -0400442/*
443 * when btree blocks are allocated, they have some corresponding bits set for
444 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400445 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400446 */
Chris Mason690587d2009-10-13 13:29:19 -0400447int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000448 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400449{
Chris Mason7c4452b2007-04-28 09:29:35 -0400450 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400451 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400452 int werr = 0;
453 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400454 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400455 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400456 u64 end;
457 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400458
Chris Masond3977122009-01-05 21:25:51 -0500459 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400460 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000461 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400462 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400463 break;
Chris Masond3977122009-01-05 21:25:51 -0500464 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400465 cond_resched();
466
Chris Mason5f39d392007-10-15 16:14:19 -0400467 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400468 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400469 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400470 if (!page)
471 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400472
473 btree_lock_page_hook(page);
474 if (!page->mapping) {
475 unlock_page(page);
476 page_cache_release(page);
477 continue;
478 }
479
Chris Mason6702ed42007-08-07 16:15:09 -0400480 if (PageWriteback(page)) {
481 if (PageDirty(page))
482 wait_on_page_writeback(page);
483 else {
484 unlock_page(page);
485 page_cache_release(page);
486 continue;
487 }
488 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400489 err = write_one_page(page, 0);
490 if (err)
491 werr = err;
492 page_cache_release(page);
493 }
494 }
Chris Mason690587d2009-10-13 13:29:19 -0400495 if (err)
496 werr = err;
497 return werr;
498}
499
500/*
501 * when btree blocks are allocated, they have some corresponding bits set for
502 * them in one of two extent_io trees. This is used to make sure all of
503 * those extents are on disk for transaction or log commit. We wait
504 * on all the pages and clear them from the dirty pages state tree
505 */
506int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000507 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400508{
509 int ret;
510 int err = 0;
511 int werr = 0;
512 struct page *page;
513 struct inode *btree_inode = root->fs_info->btree_inode;
514 u64 start = 0;
515 u64 end;
516 unsigned long index;
517
Chris Masond3977122009-01-05 21:25:51 -0500518 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000519 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
520 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400521 if (ret)
522 break;
523
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000524 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500525 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400526 index = start >> PAGE_CACHE_SHIFT;
527 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
528 page = find_get_page(btree_inode->i_mapping, index);
529 if (!page)
530 continue;
531 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400532 btree_lock_page_hook(page);
533 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400534 err = write_one_page(page, 0);
535 if (err)
536 werr = err;
537 }
Chris Mason105d9312008-11-18 12:13:12 -0500538 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400539 page_cache_release(page);
540 cond_resched();
541 }
542 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400543 if (err)
544 werr = err;
545 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400546}
547
Chris Mason690587d2009-10-13 13:29:19 -0400548/*
549 * when btree blocks are allocated, they have some corresponding bits set for
550 * them in one of two extent_io trees. This is used to make sure all of
551 * those extents are on disk for transaction or log commit
552 */
553int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000554 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400555{
556 int ret;
557 int ret2;
558
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000559 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
560 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400561 return ret || ret2;
562}
563
Chris Masond0c803c2008-09-11 16:17:57 -0400564int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
565 struct btrfs_root *root)
566{
567 if (!trans || !trans->transaction) {
568 struct inode *btree_inode;
569 btree_inode = root->fs_info->btree_inode;
570 return filemap_write_and_wait(btree_inode->i_mapping);
571 }
572 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000573 &trans->transaction->dirty_pages,
574 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400575}
576
Chris Masond352ac62008-09-29 15:18:18 -0400577/*
578 * this is used to update the root pointer in the tree of tree roots.
579 *
580 * But, in the case of the extent allocation tree, updating the root
581 * pointer may allocate blocks which may change the root of the extent
582 * allocation tree.
583 *
584 * So, this loops and repeats and makes sure the cowonly root didn't
585 * change while the root pointer was being updated in the metadata.
586 */
Chris Mason0b86a832008-03-24 15:01:56 -0400587static int update_cowonly_root(struct btrfs_trans_handle *trans,
588 struct btrfs_root *root)
589{
590 int ret;
591 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000592 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400593 struct btrfs_root *tree_root = root->fs_info->tree_root;
594
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000595 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400596 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400597
Chris Masond3977122009-01-05 21:25:51 -0500598 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400599 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000600 if (old_root_bytenr == root->node->start &&
601 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400602 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400603
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400604 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400605 ret = btrfs_update_root(trans, tree_root,
606 &root->root_key,
607 &root->root_item);
608 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400609
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000610 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400611 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400612 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400613 }
Yan Zheng276e6802009-07-30 09:40:40 -0400614
615 if (root != root->fs_info->extent_root)
616 switch_commit_root(root);
617
Chris Mason0b86a832008-03-24 15:01:56 -0400618 return 0;
619}
620
Chris Masond352ac62008-09-29 15:18:18 -0400621/*
622 * update all the cowonly tree roots on disk
623 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400624static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
625 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400626{
Chris Mason79154b12007-03-22 15:59:16 -0400627 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400628 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400629 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400630 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400631
Chris Mason56bec292009-03-13 10:10:06 -0400632 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
633 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400634
Yan Zheng84234f32008-10-29 14:49:05 -0400635 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400636 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400637 btrfs_tree_unlock(eb);
638 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400639
Chris Mason56bec292009-03-13 10:10:06 -0400640 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
641 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400642
Chris Masond3977122009-01-05 21:25:51 -0500643 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400644 next = fs_info->dirty_cowonly_roots.next;
645 list_del_init(next);
646 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400647
Chris Mason0b86a832008-03-24 15:01:56 -0400648 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400649 }
Yan Zheng276e6802009-07-30 09:40:40 -0400650
651 down_write(&fs_info->extent_commit_sem);
652 switch_commit_root(fs_info->extent_root);
653 up_write(&fs_info->extent_commit_sem);
654
Chris Mason79154b12007-03-22 15:59:16 -0400655 return 0;
656}
657
Chris Masond352ac62008-09-29 15:18:18 -0400658/*
659 * dead roots are old snapshots that need to be deleted. This allocates
660 * a dirty root struct and adds it into the list of dead roots that need to
661 * be deleted
662 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400663int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400664{
Yan Zhengb48652c2008-08-04 23:23:47 -0400665 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400666 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400667 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400668 return 0;
669}
670
Chris Masond352ac62008-09-29 15:18:18 -0400671/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400672 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400673 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400674static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
675 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400676{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400677 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400678 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400679 int i;
680 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400681 int err = 0;
682
Chris Masond3977122009-01-05 21:25:51 -0500683 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400684 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
685 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400686 ARRAY_SIZE(gang),
687 BTRFS_ROOT_TRANS_TAG);
688 if (ret == 0)
689 break;
690 for (i = 0; i < ret; i++) {
691 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400692 radix_tree_tag_clear(&fs_info->fs_roots_radix,
693 (unsigned long)root->root_key.objectid,
694 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400695
Chris Masone02119d2008-09-05 16:13:11 -0400696 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400697 btrfs_update_reloc_root(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400698 btrfs_orphan_commit_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400699
Yan Zheng978d9102009-06-15 20:01:02 -0400700 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400701 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400702 btrfs_set_root_node(&root->root_item,
703 root->node);
704 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400705
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400706 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400707 &root->root_key,
708 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400709 if (err)
710 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400711 }
712 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400713 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400714}
715
Chris Masond352ac62008-09-29 15:18:18 -0400716/*
717 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
718 * otherwise every leaf in the btree is read and defragged.
719 */
Chris Masone9d0b132007-08-10 14:06:19 -0400720int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
721{
722 struct btrfs_fs_info *info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -0400723 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400724 int ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400725 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400726
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400727 if (xchg(&root->defrag_running, 1))
Chris Masone9d0b132007-08-10 14:06:19 -0400728 return 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400729
Chris Mason6b800532007-10-15 16:17:34 -0400730 while (1) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400731 trans = btrfs_start_transaction(root, 0);
732 if (IS_ERR(trans))
733 return PTR_ERR(trans);
734
Chris Masone9d0b132007-08-10 14:06:19 -0400735 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400736
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400737 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400738 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400739 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400740 cond_resched();
741
Chris Mason3f157a22008-06-25 16:01:31 -0400742 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400743 break;
744 }
745 root->defrag_running = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -0400746 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -0400747}
748
Yan Zheng2c47e6052009-06-27 21:07:35 -0400749#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400750/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400751 * when dropping snapshots, we generate a ton of delayed refs, and it makes
752 * sense not to join the transaction while it is trying to flush the current
753 * queue of delayed refs out.
754 *
755 * This is used by the drop snapshot code only
756 */
757static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
758{
759 DEFINE_WAIT(wait);
760
761 mutex_lock(&info->trans_mutex);
762 while (info->running_transaction &&
763 info->running_transaction->delayed_refs.flushing) {
764 prepare_to_wait(&info->transaction_wait, &wait,
765 TASK_UNINTERRUPTIBLE);
766 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400767
Chris Masonb7ec40d2009-03-12 20:12:45 -0400768 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400769
Chris Masonb7ec40d2009-03-12 20:12:45 -0400770 mutex_lock(&info->trans_mutex);
771 finish_wait(&info->transaction_wait, &wait);
772 }
773 mutex_unlock(&info->trans_mutex);
774 return 0;
775}
776
777/*
Chris Masond352ac62008-09-29 15:18:18 -0400778 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
779 * all of them
780 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400781int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400782{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400783 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400784 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400785 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400786 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400787
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400788 while (1) {
789 /*
790 * we don't want to jump in and create a bunch of
791 * delayed refs if the transaction is starting to close
792 */
793 wait_transaction_pre_flush(tree_root->fs_info);
794 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400795
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400796 /*
797 * we've joined a transaction, make sure it isn't
798 * closing right now
799 */
800 if (trans->transaction->delayed_refs.flushing) {
801 btrfs_end_transaction(trans, tree_root);
802 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400803 }
Chris Masona2135012008-06-25 16:01:30 -0400804
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400805 ret = btrfs_drop_snapshot(trans, root);
806 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400807 break;
Chris Masona2135012008-06-25 16:01:30 -0400808
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400809 ret = btrfs_update_root(trans, tree_root,
810 &root->root_key,
811 &root->root_item);
812 if (ret)
813 break;
Yanbcc63ab2008-07-30 16:29:20 -0400814
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400815 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400816 ret = btrfs_end_transaction(trans, tree_root);
817 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400818
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400819 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400820 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400821 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400822 BUG_ON(ret);
823
824 ret = btrfs_del_root(trans, tree_root, &root->root_key);
825 BUG_ON(ret);
826
827 nr = trans->blocks_used;
828 ret = btrfs_end_transaction(trans, tree_root);
829 BUG_ON(ret);
830
831 free_extent_buffer(root->node);
832 free_extent_buffer(root->commit_root);
833 kfree(root);
834
835 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400836 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400837}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400838#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400839
Chris Masond352ac62008-09-29 15:18:18 -0400840/*
841 * new snapshots need to be created at a very specific time in the
842 * transaction commit. This does the actual creation
843 */
Chris Mason80b67942008-02-01 16:35:04 -0500844static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500845 struct btrfs_fs_info *fs_info,
846 struct btrfs_pending_snapshot *pending)
847{
848 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500849 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500850 struct btrfs_root *tree_root = fs_info->tree_root;
851 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000852 struct btrfs_root *parent_root;
853 struct inode *parent_inode;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400854 struct dentry *dentry;
Chris Mason3063d292008-01-08 15:46:30 -0500855 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400856 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500857 int ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400858 int retries = 0;
859 u64 to_reserve = 0;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000860 u64 index = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400861 u64 objectid;
Chris Mason3063d292008-01-08 15:46:30 -0500862
Chris Mason80b67942008-02-01 16:35:04 -0500863 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
864 if (!new_root_item) {
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 pending->error = -ENOMEM;
Chris Mason80b67942008-02-01 16:35:04 -0500866 goto fail;
867 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400868
Chris Mason3063d292008-01-08 15:46:30 -0500869 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400870 if (ret) {
871 pending->error = ret;
Chris Mason3063d292008-01-08 15:46:30 -0500872 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400873 }
Chris Mason3063d292008-01-08 15:46:30 -0500874
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400875 btrfs_reloc_pre_snapshot(trans, pending, &to_reserve);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400876 btrfs_orphan_pre_snapshot(trans, pending, &to_reserve);
877
878 if (to_reserve > 0) {
879 ret = btrfs_block_rsv_add(trans, root, &pending->block_rsv,
880 to_reserve, &retries);
881 if (ret) {
882 pending->error = ret;
883 goto fail;
884 }
885 }
886
Chris Mason3063d292008-01-08 15:46:30 -0500887 key.objectid = objectid;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400888 key.offset = (u64)-1;
889 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Mason3063d292008-01-08 15:46:30 -0500890
Yan, Zhenga22285a2010-05-16 10:48:46 -0400891 trans->block_rsv = &pending->block_rsv;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000892
Yan, Zhenga22285a2010-05-16 10:48:46 -0400893 dentry = pending->dentry;
894 parent_inode = dentry->d_parent->d_inode;
895 parent_root = BTRFS_I(parent_inode)->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000896 record_root_in_trans(trans, parent_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400897
Sage Weil6bdb72d2010-03-15 17:27:13 +0000898 /*
899 * insert the directory item
900 */
Sage Weil6bdb72d2010-03-15 17:27:13 +0000901 ret = btrfs_set_inode_index(parent_inode, &index);
902 BUG_ON(ret);
903 ret = btrfs_insert_dir_item(trans, parent_root,
Yan, Zhenga22285a2010-05-16 10:48:46 -0400904 dentry->d_name.name, dentry->d_name.len,
905 parent_inode->i_ino, &key,
906 BTRFS_FT_DIR, index);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000907 BUG_ON(ret);
908
Yan, Zhenga22285a2010-05-16 10:48:46 -0400909 btrfs_i_size_write(parent_inode, parent_inode->i_size +
910 dentry->d_name.len * 2);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000911 ret = btrfs_update_inode(trans, parent_root, parent_inode);
912 BUG_ON(ret);
913
914 record_root_in_trans(trans, root);
915 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
916 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
917
Chris Mason925baed2008-06-25 16:01:30 -0400918 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400919 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400920 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500921
Chris Mason925baed2008-06-25 16:01:30 -0400922 btrfs_copy_root(trans, root, old, &tmp, objectid);
923 btrfs_tree_unlock(old);
924 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500925
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400926 btrfs_set_root_node(new_root_item, tmp);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400927 /* record when the snapshot was created in key.offset */
928 key.offset = trans->transid;
929 ret = btrfs_insert_root(trans, tree_root, &key, new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400930 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500931 free_extent_buffer(tmp);
Chris Mason0660b5a2008-11-17 20:37:39 -0500932 BUG_ON(ret);
933
Yan, Zhenga22285a2010-05-16 10:48:46 -0400934 /*
935 * insert root back/forward references
936 */
937 ret = btrfs_add_root_ref(trans, tree_root, objectid,
938 parent_root->root_key.objectid,
939 parent_inode->i_ino, index,
940 dentry->d_name.name, dentry->d_name.len);
941 BUG_ON(ret);
942
943 key.offset = (u64)-1;
944 pending->snap = btrfs_read_fs_root_no_name(root->fs_info, &key);
945 BUG_ON(IS_ERR(pending->snap));
Yan, Zhengd68fc572010-05-16 10:49:58 -0400946
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400947 btrfs_reloc_post_snapshot(trans, pending);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400948 btrfs_orphan_post_snapshot(trans, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500949fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +0000950 kfree(new_root_item);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400951 btrfs_block_rsv_release(root, &pending->block_rsv, (u64)-1);
952 return 0;
Chris Mason3063d292008-01-08 15:46:30 -0500953}
954
Chris Masond352ac62008-09-29 15:18:18 -0400955/*
956 * create all the snapshots we've scheduled for creation
957 */
Chris Mason80b67942008-02-01 16:35:04 -0500958static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
959 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500960{
961 struct btrfs_pending_snapshot *pending;
962 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500963 int ret;
964
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500965 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500966 ret = create_pending_snapshot(trans, fs_info, pending);
967 BUG_ON(ret);
968 }
969 return 0;
970}
971
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400972static void update_super_roots(struct btrfs_root *root)
973{
974 struct btrfs_root_item *root_item;
975 struct btrfs_super_block *super;
976
977 super = &root->fs_info->super_copy;
978
979 root_item = &root->fs_info->chunk_root->root_item;
980 super->chunk_root = root_item->bytenr;
981 super->chunk_root_generation = root_item->generation;
982 super->chunk_root_level = root_item->level;
983
984 root_item = &root->fs_info->tree_root->root_item;
985 super->root = root_item->bytenr;
986 super->generation = root_item->generation;
987 super->root_level = root_item->level;
Josef Bacik0af3d002010-06-21 14:48:16 -0400988 if (super->cache_generation != 0 || btrfs_test_opt(root, SPACE_CACHE))
989 super->cache_generation = root_item->generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400990}
991
Chris Masonf36f3042009-07-30 10:04:48 -0400992int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
993{
994 int ret = 0;
995 spin_lock(&info->new_trans_lock);
996 if (info->running_transaction)
997 ret = info->running_transaction->in_commit;
998 spin_unlock(&info->new_trans_lock);
999 return ret;
1000}
1001
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04001002int btrfs_transaction_blocked(struct btrfs_fs_info *info)
1003{
1004 int ret = 0;
1005 spin_lock(&info->new_trans_lock);
1006 if (info->running_transaction)
1007 ret = info->running_transaction->blocked;
1008 spin_unlock(&info->new_trans_lock);
1009 return ret;
1010}
1011
Chris Mason79154b12007-03-22 15:59:16 -04001012int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
1013 struct btrfs_root *root)
1014{
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001015 unsigned long joined = 0;
1016 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -04001017 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -04001018 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -04001019 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001020 int ret;
Chris Mason89573b92009-03-12 20:12:45 -04001021 int should_grow = 0;
1022 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -04001023 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -04001024
Chris Mason5a3f23d2009-03-31 13:27:11 -04001025 btrfs_run_ordered_operations(root, 0);
1026
Chris Mason56bec292009-03-13 10:10:06 -04001027 /* make a pass through all the delayed refs we have so far
1028 * any runnings procs may add more while we are here
1029 */
1030 ret = btrfs_run_delayed_refs(trans, root, 0);
1031 BUG_ON(ret);
1032
Yan, Zhenga22285a2010-05-16 10:48:46 -04001033 btrfs_trans_release_metadata(trans, root);
1034
Chris Masonb7ec40d2009-03-12 20:12:45 -04001035 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -04001036 /*
1037 * set the flushing flag so procs in this transaction have to
1038 * start sending their work down.
1039 */
Chris Masonb7ec40d2009-03-12 20:12:45 -04001040 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -04001041
Chris Masonc3e69d52009-03-13 10:17:05 -04001042 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -04001043 BUG_ON(ret);
1044
Chris Mason79154b12007-03-22 15:59:16 -04001045 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -04001046 if (cur_trans->in_commit) {
1047 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001048 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001049 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -04001050
Chris Mason79154b12007-03-22 15:59:16 -04001051 ret = wait_for_commit(root, cur_trans);
1052 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001053
1054 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001055 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001056 mutex_unlock(&root->fs_info->trans_mutex);
1057
Chris Mason79154b12007-03-22 15:59:16 -04001058 return 0;
1059 }
Chris Mason4313b392008-01-03 09:08:48 -05001060
Chris Mason2c90e5d2007-04-02 10:50:19 -04001061 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -04001062 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001063 if (cur_trans->list.prev != &root->fs_info->trans_list) {
1064 prev_trans = list_entry(cur_trans->list.prev,
1065 struct btrfs_transaction, list);
1066 if (!prev_trans->commit_done) {
1067 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -04001068 mutex_unlock(&root->fs_info->trans_mutex);
1069
1070 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001071
Chris Masonccd467d2007-06-28 15:57:36 -04001072 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001073 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -04001074 }
1075 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001076
Chris Mason89573b92009-03-12 20:12:45 -04001077 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
1078 should_grow = 1;
1079
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001080 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001081 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001082 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001083 if (!list_empty(&trans->transaction->pending_snapshots))
1084 snap_pending = 1;
1085
Chris Mason2c90e5d2007-04-02 10:50:19 -04001086 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001087 if (cur_trans->num_writers > 1)
1088 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -04001089 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001090 timeout = 1;
1091
Chris Mason79154b12007-03-22 15:59:16 -04001092 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001093
Sage Weil0bdb1db2010-02-19 14:13:50 -08001094 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001095 btrfs_start_delalloc_inodes(root, 1);
1096 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d92009-07-24 13:17:44 -04001097 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001098 }
1099
Chris Mason5a3f23d2009-03-31 13:27:11 -04001100 /*
1101 * rename don't use btrfs_join_transaction, so, once we
1102 * set the transaction to blocked above, we aren't going
1103 * to get any new ordered operations. We can safely run
1104 * it here and no for sure that nothing new will be added
1105 * to the list
1106 */
1107 btrfs_run_ordered_operations(root, 1);
1108
Chris Masoned3b3d3142010-05-25 10:12:41 -04001109 prepare_to_wait(&cur_trans->writer_wait, &wait,
1110 TASK_UNINTERRUPTIBLE);
1111
Chris Mason89573b92009-03-12 20:12:45 -04001112 smp_mb();
1113 if (cur_trans->num_writers > 1 || should_grow)
1114 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001115
Chris Mason79154b12007-03-22 15:59:16 -04001116 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001117 finish_wait(&cur_trans->writer_wait, &wait);
1118 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001119 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001120
Chris Mason3063d292008-01-08 15:46:30 -05001121 ret = create_pending_snapshots(trans, root->fs_info);
1122 BUG_ON(ret);
1123
Chris Mason56bec292009-03-13 10:10:06 -04001124 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1125 BUG_ON(ret);
1126
Chris Mason2c90e5d2007-04-02 10:50:19 -04001127 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001128
Chris Masone02119d2008-09-05 16:13:11 -04001129 /* btrfs_commit_tree_roots is responsible for getting the
1130 * various roots consistent with each other. Every pointer
1131 * in the tree of tree roots has to point to the most up to date
1132 * root for every subvolume and other tree. So, we have to keep
1133 * the tree logging code from jumping in and changing any
1134 * of the trees.
1135 *
1136 * At this point in the commit, there can't be any tree-log
1137 * writers, but a little lower down we drop the trans mutex
1138 * and let new people in. By holding the tree_log_mutex
1139 * from now until after the super is written, we avoid races
1140 * with the tree-log code.
1141 */
1142 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001143
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001144 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001145 BUG_ON(ret);
1146
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001148 * safe to free the root of tree log roots
1149 */
1150 btrfs_free_log_root_tree(trans, root->fs_info);
1151
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001152 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001153 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001154
Yan Zheng11833d62009-09-11 16:11:19 -04001155 btrfs_prepare_extent_commit(trans, root);
1156
Chris Mason78fae272007-03-25 11:35:08 -04001157 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001158 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001159 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001160 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001161
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001162 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1163 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001164 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001165
1166 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1167 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001168 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001169
1170 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001171
1172 if (!root->fs_info->log_root_recovering) {
1173 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1174 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1175 }
1176
Chris Masona061fc82008-05-07 11:43:44 -04001177 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1178 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001179
Chris Masonf9295742008-07-17 12:54:14 -04001180 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001181
Chris Masonf9295742008-07-17 12:54:14 -04001182 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001183
Chris Mason78fae272007-03-25 11:35:08 -04001184 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001185 ret = btrfs_write_and_wait_transaction(trans, root);
1186 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001187 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001188
Chris Masone02119d2008-09-05 16:13:11 -04001189 /*
1190 * the super is written, we can safely allow the tree-loggers
1191 * to go about their business
1192 */
1193 mutex_unlock(&root->fs_info->tree_log_mutex);
1194
Yan Zheng11833d62009-09-11 16:11:19 -04001195 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001196
Zheng Yan1a40e232008-09-26 10:09:34 -04001197 mutex_lock(&root->fs_info->trans_mutex);
1198
Chris Mason2c90e5d2007-04-02 10:50:19 -04001199 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001200
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001201 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001202
Chris Mason2c90e5d2007-04-02 10:50:19 -04001203 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001204
Chris Mason79154b12007-03-22 15:59:16 -04001205 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001206 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001207
Chris Mason78fae272007-03-25 11:35:08 -04001208 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001209
Josef Bacik9ed74f22009-09-11 16:12:44 -04001210 if (current->journal_info == trans)
1211 current->journal_info = NULL;
1212
Chris Mason2c90e5d2007-04-02 10:50:19 -04001213 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001214
1215 if (current != root->fs_info->transaction_kthread)
1216 btrfs_run_delayed_iputs(root);
1217
Chris Mason79154b12007-03-22 15:59:16 -04001218 return ret;
1219}
1220
Chris Masond352ac62008-09-29 15:18:18 -04001221/*
1222 * interface function to delete all the snapshots we have scheduled for deletion
1223 */
Chris Masone9d0b132007-08-10 14:06:19 -04001224int btrfs_clean_old_snapshots(struct btrfs_root *root)
1225{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001226 LIST_HEAD(list);
1227 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001228
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001229 mutex_lock(&fs_info->trans_mutex);
1230 list_splice_init(&fs_info->dead_roots, &list);
1231 mutex_unlock(&fs_info->trans_mutex);
1232
1233 while (!list_empty(&list)) {
1234 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001235 list_del(&root->root_list);
1236
1237 if (btrfs_header_backref_rev(root->node) <
1238 BTRFS_MIXED_BACKREF_REV)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001239 btrfs_drop_snapshot(root, NULL, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001240 else
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001241 btrfs_drop_snapshot(root, NULL, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001242 }
1243 return 0;
1244}