blob: c0d0e3e7bc63b7768557748b6fe4d1cf13c6d9b4 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason79154b12007-03-22 15:59:16 -040019#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason34088782007-06-12 11:36:58 -040021#include <linux/sched.h>
Chris Masond3c2fdc2007-09-17 10:58:06 -040022#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040023#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050024#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason0f7d52f2007-04-09 10:42:37 -040031#define BTRFS_ROOT_TRANS_TAG 0
32
Chris Mason80b67942008-02-01 16:35:04 -050033static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040034{
Chris Mason2c90e5d2007-04-02 10:50:19 -040035 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040036 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040037 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040038 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040039 memset(transaction, 0, sizeof(*transaction));
40 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040041 }
Chris Mason79154b12007-03-22 15:59:16 -040042}
43
Josef Bacik817d52f2009-07-13 21:29:25 -040044static noinline void switch_commit_root(struct btrfs_root *root)
45{
Josef Bacik817d52f2009-07-13 21:29:25 -040046 free_extent_buffer(root->commit_root);
47 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040048}
49
Chris Masond352ac62008-09-29 15:18:18 -040050/*
51 * either allocate a new transaction or hop into the existing one
52 */
Chris Mason80b67942008-02-01 16:35:04 -050053static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040054{
55 struct btrfs_transaction *cur_trans;
56 cur_trans = root->fs_info->running_transaction;
57 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040058 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
59 GFP_NOFS);
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);
151 if (cur_trans->blocked) {
152 mutex_unlock(&root->fs_info->trans_mutex);
153 schedule();
154 mutex_lock(&root->fs_info->trans_mutex);
155 finish_wait(&root->fs_info->transaction_wait,
156 &wait);
157 } else {
158 finish_wait(&root->fs_info->transaction_wait,
159 &wait);
160 break;
161 }
162 }
163 put_transaction(cur_trans);
164 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400165}
166
Josef Bacik249ac1e2009-11-10 21:23:48 -0500167enum btrfs_trans_type {
168 TRANS_START,
169 TRANS_JOIN,
170 TRANS_USERSPACE,
171};
172
Chris Masone02119d2008-09-05 16:13:11 -0400173static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500174 int num_blocks, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400175{
176 struct btrfs_trans_handle *h =
177 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
178 int ret;
179
180 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400181 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500182 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
183 type == TRANS_USERSPACE))
Chris Mason37d1aee2008-07-31 10:48:37 -0400184 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400185 ret = join_transaction(root);
186 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400187
Chris Mason6702ed42007-08-07 16:15:09 -0400188 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400189 h->transaction = root->fs_info->running_transaction;
190 h->blocks_reserved = num_blocks;
191 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500192 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400193 h->alloc_exclude_nr = 0;
194 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400195 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400196
Josef Bacik249ac1e2009-11-10 21:23:48 -0500197 if (!current->journal_info && type != TRANS_USERSPACE)
Josef Bacik9ed74f22009-09-11 16:12:44 -0400198 current->journal_info = h;
199
Chris Mason79154b12007-03-22 15:59:16 -0400200 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400201 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400202 mutex_unlock(&root->fs_info->trans_mutex);
203 return h;
204}
205
Chris Masonf9295742008-07-17 12:54:14 -0400206struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
207 int num_blocks)
208{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500209 return start_transaction(root, num_blocks, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400210}
211struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
212 int num_blocks)
213{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500214 return start_transaction(root, num_blocks, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400215}
216
Sage Weil9ca9ee02008-08-04 10:41:27 -0400217struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
218 int num_blocks)
219{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500220 return start_transaction(r, num_blocks, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400221}
222
Chris Masond352ac62008-09-29 15:18:18 -0400223/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400224static noinline int wait_for_commit(struct btrfs_root *root,
225 struct btrfs_transaction *commit)
226{
227 DEFINE_WAIT(wait);
228 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500229 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400230 prepare_to_wait(&commit->commit_wait, &wait,
231 TASK_UNINTERRUPTIBLE);
232 if (commit->commit_done)
233 break;
234 mutex_unlock(&root->fs_info->trans_mutex);
235 schedule();
236 mutex_lock(&root->fs_info->trans_mutex);
237 }
238 mutex_unlock(&root->fs_info->trans_mutex);
239 finish_wait(&commit->commit_wait, &wait);
240 return 0;
241}
242
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400243#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400244/*
Chris Masond3977122009-01-05 21:25:51 -0500245 * rate limit against the drop_snapshot code. This helps to slow down new
246 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400247 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400248static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400249{
250 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400251 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400252
Chris Mason2dd3e672008-08-04 08:20:15 -0400253harder:
Chris Masonab78c842008-07-29 16:15:18 -0400254 if (atomic_read(&info->throttles)) {
255 DEFINE_WAIT(wait);
256 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400257 thr = atomic_read(&info->throttle_gen);
258
259 do {
260 prepare_to_wait(&info->transaction_throttle,
261 &wait, TASK_UNINTERRUPTIBLE);
262 if (!atomic_read(&info->throttles)) {
263 finish_wait(&info->transaction_throttle, &wait);
264 break;
265 }
266 schedule();
267 finish_wait(&info->transaction_throttle, &wait);
268 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400269 harder_count++;
270
271 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
272 harder_count < 2)
273 goto harder;
274
275 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
276 harder_count < 10)
277 goto harder;
278
279 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
280 harder_count < 20)
281 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400282 }
283}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400284#endif
Chris Masonab78c842008-07-29 16:15:18 -0400285
Chris Mason37d1aee2008-07-31 10:48:37 -0400286void btrfs_throttle(struct btrfs_root *root)
287{
288 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400289 if (!root->fs_info->open_ioctl_trans)
290 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400291 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400292}
293
Chris Mason89ce8a62008-06-25 16:01:31 -0400294static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
295 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400296{
297 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400298 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400299 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400300
Chris Masonc3e69d52009-03-13 10:17:05 -0400301 while (count < 4) {
302 unsigned long cur = trans->delayed_ref_updates;
303 trans->delayed_ref_updates = 0;
304 if (cur &&
305 trans->transaction->delayed_refs.num_heads_ready > 64) {
306 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400307
308 /*
309 * do a full flush if the transaction is trying
310 * to close
311 */
312 if (trans->transaction->delayed_refs.flushing)
313 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400314 btrfs_run_delayed_refs(trans, root, cur);
315 } else {
316 break;
317 }
318 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400319 }
320
Chris Masonab78c842008-07-29 16:15:18 -0400321 mutex_lock(&info->trans_mutex);
322 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400323 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400324 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400325 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400326
Chris Mason79154b12007-03-22 15:59:16 -0400327 if (waitqueue_active(&cur_trans->writer_wait))
328 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400329 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400330 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400331
332 if (current->journal_info == trans)
333 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400334 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400335 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400336
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000337 if (throttle)
338 btrfs_run_delayed_iputs(root);
339
Chris Mason79154b12007-03-22 15:59:16 -0400340 return 0;
341}
342
Chris Mason89ce8a62008-06-25 16:01:31 -0400343int btrfs_end_transaction(struct btrfs_trans_handle *trans,
344 struct btrfs_root *root)
345{
346 return __btrfs_end_transaction(trans, root, 0);
347}
348
349int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
350 struct btrfs_root *root)
351{
352 return __btrfs_end_transaction(trans, root, 1);
353}
354
Chris Masond352ac62008-09-29 15:18:18 -0400355/*
356 * when btree blocks are allocated, they have some corresponding bits set for
357 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400358 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400359 */
Chris Mason690587d2009-10-13 13:29:19 -0400360int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000361 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400362{
Chris Mason7c4452b2007-04-28 09:29:35 -0400363 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400364 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400365 int werr = 0;
366 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400367 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400368 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400369 u64 end;
370 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400371
Chris Masond3977122009-01-05 21:25:51 -0500372 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400373 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000374 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400375 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400376 break;
Chris Masond3977122009-01-05 21:25:51 -0500377 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400378 cond_resched();
379
Chris Mason5f39d392007-10-15 16:14:19 -0400380 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400381 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400382 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400383 if (!page)
384 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400385
386 btree_lock_page_hook(page);
387 if (!page->mapping) {
388 unlock_page(page);
389 page_cache_release(page);
390 continue;
391 }
392
Chris Mason6702ed42007-08-07 16:15:09 -0400393 if (PageWriteback(page)) {
394 if (PageDirty(page))
395 wait_on_page_writeback(page);
396 else {
397 unlock_page(page);
398 page_cache_release(page);
399 continue;
400 }
401 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400402 err = write_one_page(page, 0);
403 if (err)
404 werr = err;
405 page_cache_release(page);
406 }
407 }
Chris Mason690587d2009-10-13 13:29:19 -0400408 if (err)
409 werr = err;
410 return werr;
411}
412
413/*
414 * when btree blocks are allocated, they have some corresponding bits set for
415 * them in one of two extent_io trees. This is used to make sure all of
416 * those extents are on disk for transaction or log commit. We wait
417 * on all the pages and clear them from the dirty pages state tree
418 */
419int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000420 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400421{
422 int ret;
423 int err = 0;
424 int werr = 0;
425 struct page *page;
426 struct inode *btree_inode = root->fs_info->btree_inode;
427 u64 start = 0;
428 u64 end;
429 unsigned long index;
430
Chris Masond3977122009-01-05 21:25:51 -0500431 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000432 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
433 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400434 if (ret)
435 break;
436
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000437 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500438 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400439 index = start >> PAGE_CACHE_SHIFT;
440 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
441 page = find_get_page(btree_inode->i_mapping, index);
442 if (!page)
443 continue;
444 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400445 btree_lock_page_hook(page);
446 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400447 err = write_one_page(page, 0);
448 if (err)
449 werr = err;
450 }
Chris Mason105d9312008-11-18 12:13:12 -0500451 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400452 page_cache_release(page);
453 cond_resched();
454 }
455 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400456 if (err)
457 werr = err;
458 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400459}
460
Chris Mason690587d2009-10-13 13:29:19 -0400461/*
462 * when btree blocks are allocated, they have some corresponding bits set for
463 * them in one of two extent_io trees. This is used to make sure all of
464 * those extents are on disk for transaction or log commit
465 */
466int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000467 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400468{
469 int ret;
470 int ret2;
471
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000472 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
473 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400474 return ret || ret2;
475}
476
Chris Masond0c803c2008-09-11 16:17:57 -0400477int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
478 struct btrfs_root *root)
479{
480 if (!trans || !trans->transaction) {
481 struct inode *btree_inode;
482 btree_inode = root->fs_info->btree_inode;
483 return filemap_write_and_wait(btree_inode->i_mapping);
484 }
485 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000486 &trans->transaction->dirty_pages,
487 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400488}
489
Chris Masond352ac62008-09-29 15:18:18 -0400490/*
491 * this is used to update the root pointer in the tree of tree roots.
492 *
493 * But, in the case of the extent allocation tree, updating the root
494 * pointer may allocate blocks which may change the root of the extent
495 * allocation tree.
496 *
497 * So, this loops and repeats and makes sure the cowonly root didn't
498 * change while the root pointer was being updated in the metadata.
499 */
Chris Mason0b86a832008-03-24 15:01:56 -0400500static int update_cowonly_root(struct btrfs_trans_handle *trans,
501 struct btrfs_root *root)
502{
503 int ret;
504 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000505 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400506 struct btrfs_root *tree_root = root->fs_info->tree_root;
507
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000508 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400509 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400510
Chris Masond3977122009-01-05 21:25:51 -0500511 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400512 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000513 if (old_root_bytenr == root->node->start &&
514 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400515 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400516
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400517 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400518 ret = btrfs_update_root(trans, tree_root,
519 &root->root_key,
520 &root->root_item);
521 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400522
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000523 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400524 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400525 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400526 }
Yan Zheng276e6802009-07-30 09:40:40 -0400527
528 if (root != root->fs_info->extent_root)
529 switch_commit_root(root);
530
Chris Mason0b86a832008-03-24 15:01:56 -0400531 return 0;
532}
533
Chris Masond352ac62008-09-29 15:18:18 -0400534/*
535 * update all the cowonly tree roots on disk
536 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400537static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
538 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400539{
Chris Mason79154b12007-03-22 15:59:16 -0400540 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400541 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400542 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400543 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400544
Chris Mason56bec292009-03-13 10:10:06 -0400545 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
546 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400547
Yan Zheng84234f32008-10-29 14:49:05 -0400548 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400549 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400550 btrfs_tree_unlock(eb);
551 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400552
Chris Mason56bec292009-03-13 10:10:06 -0400553 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
554 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400555
Chris Masond3977122009-01-05 21:25:51 -0500556 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400557 next = fs_info->dirty_cowonly_roots.next;
558 list_del_init(next);
559 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400560
Chris Mason0b86a832008-03-24 15:01:56 -0400561 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400562 }
Yan Zheng276e6802009-07-30 09:40:40 -0400563
564 down_write(&fs_info->extent_commit_sem);
565 switch_commit_root(fs_info->extent_root);
566 up_write(&fs_info->extent_commit_sem);
567
Chris Mason79154b12007-03-22 15:59:16 -0400568 return 0;
569}
570
Chris Masond352ac62008-09-29 15:18:18 -0400571/*
572 * dead roots are old snapshots that need to be deleted. This allocates
573 * a dirty root struct and adds it into the list of dead roots that need to
574 * be deleted
575 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400576int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400577{
Yan Zhengb48652c2008-08-04 23:23:47 -0400578 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400579 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400580 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400581 return 0;
582}
583
Chris Masond352ac62008-09-29 15:18:18 -0400584/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400585 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400586 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400587static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
588 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400589{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400590 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400591 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400592 int i;
593 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400594 int err = 0;
595
Chris Masond3977122009-01-05 21:25:51 -0500596 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400597 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
598 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400599 ARRAY_SIZE(gang),
600 BTRFS_ROOT_TRANS_TAG);
601 if (ret == 0)
602 break;
603 for (i = 0; i < ret; i++) {
604 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400605 radix_tree_tag_clear(&fs_info->fs_roots_radix,
606 (unsigned long)root->root_key.objectid,
607 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400608
Chris Masone02119d2008-09-05 16:13:11 -0400609 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400610 btrfs_update_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400611
Yan Zheng978d9102009-06-15 20:01:02 -0400612 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400613 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400614 btrfs_set_root_node(&root->root_item,
615 root->node);
616 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400617
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400618 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400619 &root->root_key,
620 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400621 if (err)
622 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400623 }
624 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400625 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400626}
627
Chris Masond352ac62008-09-29 15:18:18 -0400628/*
629 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
630 * otherwise every leaf in the btree is read and defragged.
631 */
Chris Masone9d0b132007-08-10 14:06:19 -0400632int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
633{
634 struct btrfs_fs_info *info = root->fs_info;
635 int ret;
636 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400637 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400638
Chris Masona2135012008-06-25 16:01:30 -0400639 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400640 if (root->defrag_running)
641 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400642 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400643 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400644 root->defrag_running = 1;
645 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400646 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400647 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400648 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400649 cond_resched();
650
Chris Masone9d0b132007-08-10 14:06:19 -0400651 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400652 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400653 break;
654 }
655 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400656 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400657 btrfs_end_transaction(trans, root);
658 return 0;
659}
660
Yan Zheng2c47e6052009-06-27 21:07:35 -0400661#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400662/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400663 * when dropping snapshots, we generate a ton of delayed refs, and it makes
664 * sense not to join the transaction while it is trying to flush the current
665 * queue of delayed refs out.
666 *
667 * This is used by the drop snapshot code only
668 */
669static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
670{
671 DEFINE_WAIT(wait);
672
673 mutex_lock(&info->trans_mutex);
674 while (info->running_transaction &&
675 info->running_transaction->delayed_refs.flushing) {
676 prepare_to_wait(&info->transaction_wait, &wait,
677 TASK_UNINTERRUPTIBLE);
678 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400679
Chris Masonb7ec40d2009-03-12 20:12:45 -0400680 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400681
Chris Masonb7ec40d2009-03-12 20:12:45 -0400682 mutex_lock(&info->trans_mutex);
683 finish_wait(&info->transaction_wait, &wait);
684 }
685 mutex_unlock(&info->trans_mutex);
686 return 0;
687}
688
689/*
Chris Masond352ac62008-09-29 15:18:18 -0400690 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
691 * all of them
692 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400693int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400694{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400695 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400696 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400697 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400698 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400699
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400700 while (1) {
701 /*
702 * we don't want to jump in and create a bunch of
703 * delayed refs if the transaction is starting to close
704 */
705 wait_transaction_pre_flush(tree_root->fs_info);
706 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400707
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400708 /*
709 * we've joined a transaction, make sure it isn't
710 * closing right now
711 */
712 if (trans->transaction->delayed_refs.flushing) {
713 btrfs_end_transaction(trans, tree_root);
714 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400715 }
Chris Masona2135012008-06-25 16:01:30 -0400716
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717 ret = btrfs_drop_snapshot(trans, root);
718 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400719 break;
Chris Masona2135012008-06-25 16:01:30 -0400720
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400721 ret = btrfs_update_root(trans, tree_root,
722 &root->root_key,
723 &root->root_item);
724 if (ret)
725 break;
Yanbcc63ab2008-07-30 16:29:20 -0400726
Chris Masond3c2fdc2007-09-17 10:58:06 -0400727 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400728 ret = btrfs_end_transaction(trans, tree_root);
729 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400730
Chris Masond3c2fdc2007-09-17 10:58:06 -0400731 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc11902007-10-15 16:18:14 -0400732 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400733 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400734 BUG_ON(ret);
735
736 ret = btrfs_del_root(trans, tree_root, &root->root_key);
737 BUG_ON(ret);
738
739 nr = trans->blocks_used;
740 ret = btrfs_end_transaction(trans, tree_root);
741 BUG_ON(ret);
742
743 free_extent_buffer(root->node);
744 free_extent_buffer(root->commit_root);
745 kfree(root);
746
747 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400748 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400749}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400750#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400751
Chris Masond352ac62008-09-29 15:18:18 -0400752/*
753 * new snapshots need to be created at a very specific time in the
754 * transaction commit. This does the actual creation
755 */
Chris Mason80b67942008-02-01 16:35:04 -0500756static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500757 struct btrfs_fs_info *fs_info,
758 struct btrfs_pending_snapshot *pending)
759{
760 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500761 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500762 struct btrfs_root *tree_root = fs_info->tree_root;
763 struct btrfs_root *root = pending->root;
764 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400765 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500766 int ret;
767 u64 objectid;
768
Chris Mason80b67942008-02-01 16:35:04 -0500769 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
770 if (!new_root_item) {
771 ret = -ENOMEM;
772 goto fail;
773 }
Chris Mason3063d292008-01-08 15:46:30 -0500774 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
775 if (ret)
776 goto fail;
777
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400778 record_root_in_trans(trans, root);
Yan Zheng80ff3852008-10-30 14:20:02 -0400779 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500780 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500781
782 key.objectid = objectid;
Yan, Zheng1c4850e2009-09-21 15:55:59 -0400783 /* record when the snapshot was created in key.offset */
784 key.offset = trans->transid;
Chris Mason3063d292008-01-08 15:46:30 -0500785 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
786
Chris Mason925baed2008-06-25 16:01:30 -0400787 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400788 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400789 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500790
Chris Mason925baed2008-06-25 16:01:30 -0400791 btrfs_copy_root(trans, root, old, &tmp, objectid);
792 btrfs_tree_unlock(old);
793 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500794
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400795 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500796 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500797 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400798 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500799 free_extent_buffer(tmp);
800 if (ret)
801 goto fail;
802
Chris Mason3de45862008-11-17 21:02:50 -0500803 key.offset = (u64)-1;
804 memcpy(&pending->root_key, &key, sizeof(key));
805fail:
806 kfree(new_root_item);
807 return ret;
808}
809
810static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
811 struct btrfs_pending_snapshot *pending)
812{
813 int ret;
814 int namelen;
815 u64 index = 0;
816 struct btrfs_trans_handle *trans;
817 struct inode *parent_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500818 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500819
Chris Mason3394e162008-11-17 20:42:26 -0500820 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500821 parent_root = BTRFS_I(parent_inode)->root;
Yan Zheng180591b2009-01-06 09:58:06 -0500822 trans = btrfs_join_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500823
Chris Mason3063d292008-01-08 15:46:30 -0500824 /*
825 * insert the directory item
826 */
Sven Wegener3b963622008-06-09 21:57:42 -0400827 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500828 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500829 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500830 pending->name, namelen,
831 parent_inode->i_ino,
832 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500833
834 if (ret)
835 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500836
Yan Zheng52c26172009-01-05 15:43:43 -0500837 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
838 ret = btrfs_update_inode(trans, parent_root, parent_inode);
839 BUG_ON(ret);
840
Chris Mason0660b5a2008-11-17 20:37:39 -0500841 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
842 pending->root_key.objectid,
Chris Mason0660b5a2008-11-17 20:37:39 -0500843 parent_root->root_key.objectid,
844 parent_inode->i_ino, index, pending->name,
845 namelen);
846
847 BUG_ON(ret);
848
Chris Mason3063d292008-01-08 15:46:30 -0500849fail:
Chris Mason3de45862008-11-17 21:02:50 -0500850 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500851 return ret;
852}
853
Chris Masond352ac62008-09-29 15:18:18 -0400854/*
855 * create all the snapshots we've scheduled for creation
856 */
Chris Mason80b67942008-02-01 16:35:04 -0500857static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
858 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500859{
860 struct btrfs_pending_snapshot *pending;
861 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500862 int ret;
863
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500864 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500865 ret = create_pending_snapshot(trans, fs_info, pending);
866 BUG_ON(ret);
867 }
868 return 0;
869}
870
871static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
872 struct btrfs_fs_info *fs_info)
873{
874 struct btrfs_pending_snapshot *pending;
875 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500876 int ret;
877
Chris Masond3977122009-01-05 21:25:51 -0500878 while (!list_empty(head)) {
Chris Mason3063d292008-01-08 15:46:30 -0500879 pending = list_entry(head->next,
880 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500881 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500882 BUG_ON(ret);
883 list_del(&pending->list);
884 kfree(pending->name);
885 kfree(pending);
886 }
Chris Masondc17ff82008-01-08 15:46:30 -0500887 return 0;
888}
889
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400890static void update_super_roots(struct btrfs_root *root)
891{
892 struct btrfs_root_item *root_item;
893 struct btrfs_super_block *super;
894
895 super = &root->fs_info->super_copy;
896
897 root_item = &root->fs_info->chunk_root->root_item;
898 super->chunk_root = root_item->bytenr;
899 super->chunk_root_generation = root_item->generation;
900 super->chunk_root_level = root_item->level;
901
902 root_item = &root->fs_info->tree_root->root_item;
903 super->root = root_item->bytenr;
904 super->generation = root_item->generation;
905 super->root_level = root_item->level;
906}
907
Chris Masonf36f3042009-07-30 10:04:48 -0400908int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
909{
910 int ret = 0;
911 spin_lock(&info->new_trans_lock);
912 if (info->running_transaction)
913 ret = info->running_transaction->in_commit;
914 spin_unlock(&info->new_trans_lock);
915 return ret;
916}
917
Chris Mason79154b12007-03-22 15:59:16 -0400918int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
919 struct btrfs_root *root)
920{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400921 unsigned long joined = 0;
922 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400923 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400924 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400925 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400926 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400927 int should_grow = 0;
928 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400929 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400930
Chris Mason5a3f23d2009-03-31 13:27:11 -0400931 btrfs_run_ordered_operations(root, 0);
932
Chris Mason56bec292009-03-13 10:10:06 -0400933 /* make a pass through all the delayed refs we have so far
934 * any runnings procs may add more while we are here
935 */
936 ret = btrfs_run_delayed_refs(trans, root, 0);
937 BUG_ON(ret);
938
Chris Masonb7ec40d2009-03-12 20:12:45 -0400939 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400940 /*
941 * set the flushing flag so procs in this transaction have to
942 * start sending their work down.
943 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400944 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400945
Chris Masonc3e69d52009-03-13 10:17:05 -0400946 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400947 BUG_ON(ret);
948
Chris Mason79154b12007-03-22 15:59:16 -0400949 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400950 if (cur_trans->in_commit) {
951 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400952 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400953 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400954
Chris Mason79154b12007-03-22 15:59:16 -0400955 ret = wait_for_commit(root, cur_trans);
956 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400957
958 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400959 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400960 mutex_unlock(&root->fs_info->trans_mutex);
961
Chris Mason79154b12007-03-22 15:59:16 -0400962 return 0;
963 }
Chris Mason4313b392008-01-03 09:08:48 -0500964
Chris Mason2c90e5d2007-04-02 10:50:19 -0400965 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400966 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400967 if (cur_trans->list.prev != &root->fs_info->trans_list) {
968 prev_trans = list_entry(cur_trans->list.prev,
969 struct btrfs_transaction, list);
970 if (!prev_trans->commit_done) {
971 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400972 mutex_unlock(&root->fs_info->trans_mutex);
973
974 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400975
Chris Masonccd467d2007-06-28 15:57:36 -0400976 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400977 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400978 }
979 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400980
Chris Mason89573b92009-03-12 20:12:45 -0400981 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
982 should_grow = 1;
983
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400984 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400985 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400986 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400987 if (!list_empty(&trans->transaction->pending_snapshots))
988 snap_pending = 1;
989
Chris Mason2c90e5d2007-04-02 10:50:19 -0400990 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400991 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400992 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400993
994 if (cur_trans->num_writers > 1)
995 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400996 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400997 timeout = 1;
998
Chris Mason79154b12007-03-22 15:59:16 -0400999 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001000
Sage Weil0bdb1db2010-02-19 14:13:50 -08001001 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001002 btrfs_start_delalloc_inodes(root, 1);
1003 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -04001004 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001005 }
1006
Chris Mason5a3f23d2009-03-31 13:27:11 -04001007 /*
1008 * rename don't use btrfs_join_transaction, so, once we
1009 * set the transaction to blocked above, we aren't going
1010 * to get any new ordered operations. We can safely run
1011 * it here and no for sure that nothing new will be added
1012 * to the list
1013 */
1014 btrfs_run_ordered_operations(root, 1);
1015
Chris Mason89573b92009-03-12 20:12:45 -04001016 smp_mb();
1017 if (cur_trans->num_writers > 1 || should_grow)
1018 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001019
Chris Mason79154b12007-03-22 15:59:16 -04001020 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001021 finish_wait(&cur_trans->writer_wait, &wait);
1022 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001023 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001024
Chris Mason3063d292008-01-08 15:46:30 -05001025 ret = create_pending_snapshots(trans, root->fs_info);
1026 BUG_ON(ret);
1027
Chris Mason56bec292009-03-13 10:10:06 -04001028 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1029 BUG_ON(ret);
1030
Chris Mason2c90e5d2007-04-02 10:50:19 -04001031 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001032
Chris Masone02119d2008-09-05 16:13:11 -04001033 /* btrfs_commit_tree_roots is responsible for getting the
1034 * various roots consistent with each other. Every pointer
1035 * in the tree of tree roots has to point to the most up to date
1036 * root for every subvolume and other tree. So, we have to keep
1037 * the tree logging code from jumping in and changing any
1038 * of the trees.
1039 *
1040 * At this point in the commit, there can't be any tree-log
1041 * writers, but a little lower down we drop the trans mutex
1042 * and let new people in. By holding the tree_log_mutex
1043 * from now until after the super is written, we avoid races
1044 * with the tree-log code.
1045 */
1046 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001047
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001048 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001049 BUG_ON(ret);
1050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001051 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001052 * safe to free the root of tree log roots
1053 */
1054 btrfs_free_log_root_tree(trans, root->fs_info);
1055
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001056 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001057 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001058
Yan Zheng11833d62009-09-11 16:11:19 -04001059 btrfs_prepare_extent_commit(trans, root);
1060
Chris Mason78fae272007-03-25 11:35:08 -04001061 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001062 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001063 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001064 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001065
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001066 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1067 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001068 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001069
1070 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1071 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001072 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073
1074 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001075
1076 if (!root->fs_info->log_root_recovering) {
1077 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1078 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1079 }
1080
Chris Masona061fc82008-05-07 11:43:44 -04001081 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1082 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001083
Chris Masonf9295742008-07-17 12:54:14 -04001084 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001085
Chris Masonf9295742008-07-17 12:54:14 -04001086 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001087
Chris Mason78fae272007-03-25 11:35:08 -04001088 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001089 ret = btrfs_write_and_wait_transaction(trans, root);
1090 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001091 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001092
Chris Masone02119d2008-09-05 16:13:11 -04001093 /*
1094 * the super is written, we can safely allow the tree-loggers
1095 * to go about their business
1096 */
1097 mutex_unlock(&root->fs_info->tree_log_mutex);
1098
Yan Zheng11833d62009-09-11 16:11:19 -04001099 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001100
Chris Mason3de45862008-11-17 21:02:50 -05001101 /* do the directory inserts of any pending snapshot creations */
1102 finish_pending_snapshots(trans, root->fs_info);
1103
Zheng Yan1a40e232008-09-26 10:09:34 -04001104 mutex_lock(&root->fs_info->trans_mutex);
1105
Chris Mason2c90e5d2007-04-02 10:50:19 -04001106 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001107
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001108 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001109
Chris Mason2c90e5d2007-04-02 10:50:19 -04001110 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001111
Chris Mason79154b12007-03-22 15:59:16 -04001112 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001113 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001114
Chris Mason78fae272007-03-25 11:35:08 -04001115 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001116
Josef Bacik9ed74f22009-09-11 16:12:44 -04001117 if (current->journal_info == trans)
1118 current->journal_info = NULL;
1119
Chris Mason2c90e5d2007-04-02 10:50:19 -04001120 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001121
1122 if (current != root->fs_info->transaction_kthread)
1123 btrfs_run_delayed_iputs(root);
1124
Chris Mason79154b12007-03-22 15:59:16 -04001125 return ret;
1126}
1127
Chris Masond352ac62008-09-29 15:18:18 -04001128/*
1129 * interface function to delete all the snapshots we have scheduled for deletion
1130 */
Chris Masone9d0b132007-08-10 14:06:19 -04001131int btrfs_clean_old_snapshots(struct btrfs_root *root)
1132{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001133 LIST_HEAD(list);
1134 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001135
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001136 mutex_lock(&fs_info->trans_mutex);
1137 list_splice_init(&fs_info->dead_roots, &list);
1138 mutex_unlock(&fs_info->trans_mutex);
1139
1140 while (!list_empty(&list)) {
1141 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001142 list_del(&root->root_list);
1143
1144 if (btrfs_header_backref_rev(root->node) <
1145 BTRFS_MIXED_BACKREF_REV)
1146 btrfs_drop_snapshot(root, 0);
1147 else
1148 btrfs_drop_snapshot(root, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001149 }
1150 return 0;
1151}