blob: b7b22c344b662d61bc4859874363a1af127c8d10 [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>
Chris Mason34088782007-06-12 11:36:58 -040020#include <linux/sched.h>
Chris Masond3c2fdcf2007-09-17 10:58:06 -040021#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040022#include <linux/pagemap.h>
Chris Mason5f2cc082008-11-07 18:22:45 -050023#include <linux/blkdev.h>
Chris Mason79154b12007-03-22 15:59:16 -040024#include "ctree.h"
25#include "disk-io.h"
26#include "transaction.h"
Chris Mason925baed2008-06-25 16:01:30 -040027#include "locking.h"
Chris Masone02119d2008-09-05 16:13:11 -040028#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040029
Chris Mason0f7d52f2007-04-09 10:42:37 -040030#define BTRFS_ROOT_TRANS_TAG 0
31
Chris Mason80b67942008-02-01 16:35:04 -050032static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040033{
Chris Mason2c90e5d2007-04-02 10:50:19 -040034 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040035 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040036 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040037 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 memset(transaction, 0, sizeof(*transaction));
39 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040040 }
Chris Mason79154b12007-03-22 15:59:16 -040041}
42
Josef Bacik817d52f2009-07-13 21:29:25 -040043static noinline void switch_commit_root(struct btrfs_root *root)
44{
Josef Bacik817d52f2009-07-13 21:29:25 -040045 free_extent_buffer(root->commit_root);
46 root->commit_root = btrfs_root_node(root);
Josef Bacik817d52f2009-07-13 21:29:25 -040047}
48
Chris Masond352ac62008-09-29 15:18:18 -040049/*
50 * either allocate a new transaction or hop into the existing one
51 */
Chris Mason80b67942008-02-01 16:35:04 -050052static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040053{
54 struct btrfs_transaction *cur_trans;
55 cur_trans = root->fs_info->running_transaction;
56 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040057 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
58 GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040059 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040060 root->fs_info->generation++;
Josef Bacik15ee9bc2007-08-10 16:22:09 -040061 cur_trans->num_writers = 1;
62 cur_trans->num_joined = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040063 cur_trans->transid = root->fs_info->generation;
Chris Mason79154b12007-03-22 15:59:16 -040064 init_waitqueue_head(&cur_trans->writer_wait);
65 init_waitqueue_head(&cur_trans->commit_wait);
66 cur_trans->in_commit = 0;
Chris Masonf9295742008-07-17 12:54:14 -040067 cur_trans->blocked = 0;
Chris Masond5719762007-03-23 10:01:08 -040068 cur_trans->use_count = 1;
Chris Mason79154b12007-03-22 15:59:16 -040069 cur_trans->commit_done = 0;
Chris Mason08607c12007-06-08 15:33:54 -040070 cur_trans->start_time = get_seconds();
Chris Mason56bec292009-03-13 10:10:06 -040071
72 cur_trans->delayed_refs.root.rb_node = NULL;
73 cur_trans->delayed_refs.num_entries = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040074 cur_trans->delayed_refs.num_heads_ready = 0;
75 cur_trans->delayed_refs.num_heads = 0;
Chris Mason56bec292009-03-13 10:10:06 -040076 cur_trans->delayed_refs.flushing = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -040077 cur_trans->delayed_refs.run_delayed_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -040078 spin_lock_init(&cur_trans->delayed_refs.lock);
79
Chris Mason3063d292008-01-08 15:46:30 -050080 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040081 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050082 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040083 root->fs_info->btree_inode->i_mapping,
84 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040085 spin_lock(&root->fs_info->new_trans_lock);
86 root->fs_info->running_transaction = cur_trans;
87 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040088 } else {
89 cur_trans->num_writers++;
90 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040091 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040092
Chris Mason79154b12007-03-22 15:59:16 -040093 return 0;
94}
95
Chris Masond352ac62008-09-29 15:18:18 -040096/*
Chris Masond3977122009-01-05 21:25:51 -050097 * this does all the record keeping required to make sure that a reference
98 * counted root is properly recorded in a given transaction. This is required
99 * to make sure the old root from before we joined the transaction is deleted
100 * when the transaction commits
Chris Masond352ac62008-09-29 15:18:18 -0400101 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400102static noinline int record_root_in_trans(struct btrfs_trans_handle *trans,
103 struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -0400104{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400105 if (root->ref_cows && root->last_trans < trans->transid) {
Chris Mason6702ed42007-08-07 16:15:09 -0400106 WARN_ON(root == root->fs_info->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400107 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400108
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
110 (unsigned long)root->root_key.objectid,
111 BTRFS_ROOT_TRANS_TAG);
112 root->last_trans = trans->transid;
113 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400114 }
115 return 0;
116}
117
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400118int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
119 struct btrfs_root *root)
120{
121 if (!root->ref_cows)
122 return 0;
123
124 mutex_lock(&root->fs_info->trans_mutex);
125 if (root->last_trans == trans->transid) {
126 mutex_unlock(&root->fs_info->trans_mutex);
127 return 0;
128 }
129
130 record_root_in_trans(trans, root);
131 mutex_unlock(&root->fs_info->trans_mutex);
132 return 0;
133}
134
Chris Masond352ac62008-09-29 15:18:18 -0400135/* wait for commit against the current transaction to become unblocked
136 * when this is done, it is safe to start a new transaction, but the current
137 * transaction might not be fully on disk.
138 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400139static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400140{
Chris Masonf9295742008-07-17 12:54:14 -0400141 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400142
Chris Masonf9295742008-07-17 12:54:14 -0400143 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400144 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400145 DEFINE_WAIT(wait);
146 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500147 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400148 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
149 TASK_UNINTERRUPTIBLE);
150 if (cur_trans->blocked) {
151 mutex_unlock(&root->fs_info->trans_mutex);
152 schedule();
153 mutex_lock(&root->fs_info->trans_mutex);
154 finish_wait(&root->fs_info->transaction_wait,
155 &wait);
156 } else {
157 finish_wait(&root->fs_info->transaction_wait,
158 &wait);
159 break;
160 }
161 }
162 put_transaction(cur_trans);
163 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400164}
165
Josef Bacik249ac1e2009-11-10 21:23:48 -0500166enum btrfs_trans_type {
167 TRANS_START,
168 TRANS_JOIN,
169 TRANS_USERSPACE,
170};
171
Chris Masone02119d2008-09-05 16:13:11 -0400172static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500173 int num_blocks, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400174{
175 struct btrfs_trans_handle *h =
176 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
177 int ret;
178
179 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400180 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500181 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
182 type == TRANS_USERSPACE))
Chris Mason37d1aee2008-07-31 10:48:37 -0400183 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400184 ret = join_transaction(root);
185 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400186
Chris Mason6702ed42007-08-07 16:15:09 -0400187 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400188 h->transaction = root->fs_info->running_transaction;
189 h->blocks_reserved = num_blocks;
190 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500191 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400192 h->alloc_exclude_nr = 0;
193 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400194 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400195
Josef Bacik249ac1e2009-11-10 21:23:48 -0500196 if (!current->journal_info && type != TRANS_USERSPACE)
Josef Bacik9ed74f22009-09-11 16:12:44 -0400197 current->journal_info = h;
198
Chris Mason79154b12007-03-22 15:59:16 -0400199 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400200 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400201 mutex_unlock(&root->fs_info->trans_mutex);
202 return h;
203}
204
Chris Masonf9295742008-07-17 12:54:14 -0400205struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
206 int num_blocks)
207{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500208 return start_transaction(root, num_blocks, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400209}
210struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
211 int num_blocks)
212{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500213 return start_transaction(root, num_blocks, TRANS_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400214}
215
Sage Weil9ca9ee02008-08-04 10:41:27 -0400216struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
217 int num_blocks)
218{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500219 return start_transaction(r, num_blocks, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400220}
221
Chris Masond352ac62008-09-29 15:18:18 -0400222/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400223static noinline int wait_for_commit(struct btrfs_root *root,
224 struct btrfs_transaction *commit)
225{
226 DEFINE_WAIT(wait);
227 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500228 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400229 prepare_to_wait(&commit->commit_wait, &wait,
230 TASK_UNINTERRUPTIBLE);
231 if (commit->commit_done)
232 break;
233 mutex_unlock(&root->fs_info->trans_mutex);
234 schedule();
235 mutex_lock(&root->fs_info->trans_mutex);
236 }
237 mutex_unlock(&root->fs_info->trans_mutex);
238 finish_wait(&commit->commit_wait, &wait);
239 return 0;
240}
241
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400242#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400243/*
Chris Masond3977122009-01-05 21:25:51 -0500244 * rate limit against the drop_snapshot code. This helps to slow down new
245 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400246 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400247static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400248{
249 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400250 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400251
Chris Mason2dd3e672008-08-04 08:20:15 -0400252harder:
Chris Masonab78c842008-07-29 16:15:18 -0400253 if (atomic_read(&info->throttles)) {
254 DEFINE_WAIT(wait);
255 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400256 thr = atomic_read(&info->throttle_gen);
257
258 do {
259 prepare_to_wait(&info->transaction_throttle,
260 &wait, TASK_UNINTERRUPTIBLE);
261 if (!atomic_read(&info->throttles)) {
262 finish_wait(&info->transaction_throttle, &wait);
263 break;
264 }
265 schedule();
266 finish_wait(&info->transaction_throttle, &wait);
267 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400268 harder_count++;
269
270 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
271 harder_count < 2)
272 goto harder;
273
274 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
275 harder_count < 10)
276 goto harder;
277
278 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
279 harder_count < 20)
280 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400281 }
282}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400283#endif
Chris Masonab78c842008-07-29 16:15:18 -0400284
Chris Mason37d1aee2008-07-31 10:48:37 -0400285void btrfs_throttle(struct btrfs_root *root)
286{
287 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400288 if (!root->fs_info->open_ioctl_trans)
289 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400290 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400291}
292
Chris Mason89ce8a62008-06-25 16:01:31 -0400293static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
294 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400295{
296 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400297 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400298 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400299
Chris Masonc3e69d52009-03-13 10:17:05 -0400300 while (count < 4) {
301 unsigned long cur = trans->delayed_ref_updates;
302 trans->delayed_ref_updates = 0;
303 if (cur &&
304 trans->transaction->delayed_refs.num_heads_ready > 64) {
305 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400306
307 /*
308 * do a full flush if the transaction is trying
309 * to close
310 */
311 if (trans->transaction->delayed_refs.flushing)
312 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400313 btrfs_run_delayed_refs(trans, root, cur);
314 } else {
315 break;
316 }
317 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400318 }
319
Chris Masonab78c842008-07-29 16:15:18 -0400320 mutex_lock(&info->trans_mutex);
321 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400322 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400323 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400324 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400325
Chris Mason79154b12007-03-22 15:59:16 -0400326 if (waitqueue_active(&cur_trans->writer_wait))
327 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400328 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400329 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400330
331 if (current->journal_info == trans)
332 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400333 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400334 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400335
Chris Mason79154b12007-03-22 15:59:16 -0400336 return 0;
337}
338
Chris Mason89ce8a62008-06-25 16:01:31 -0400339int btrfs_end_transaction(struct btrfs_trans_handle *trans,
340 struct btrfs_root *root)
341{
342 return __btrfs_end_transaction(trans, root, 0);
343}
344
345int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
346 struct btrfs_root *root)
347{
348 return __btrfs_end_transaction(trans, root, 1);
349}
350
Chris Masond352ac62008-09-29 15:18:18 -0400351/*
352 * when btree blocks are allocated, they have some corresponding bits set for
353 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400354 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400355 */
Chris Mason690587d2009-10-13 13:29:19 -0400356int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000357 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400358{
Chris Mason7c4452b2007-04-28 09:29:35 -0400359 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400360 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400361 int werr = 0;
362 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400363 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400364 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400365 u64 end;
366 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400367
Chris Masond3977122009-01-05 21:25:51 -0500368 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400369 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000370 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400371 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400372 break;
Chris Masond3977122009-01-05 21:25:51 -0500373 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400374 cond_resched();
375
Chris Mason5f39d392007-10-15 16:14:19 -0400376 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400377 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400378 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400379 if (!page)
380 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400381
382 btree_lock_page_hook(page);
383 if (!page->mapping) {
384 unlock_page(page);
385 page_cache_release(page);
386 continue;
387 }
388
Chris Mason6702ed42007-08-07 16:15:09 -0400389 if (PageWriteback(page)) {
390 if (PageDirty(page))
391 wait_on_page_writeback(page);
392 else {
393 unlock_page(page);
394 page_cache_release(page);
395 continue;
396 }
397 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400398 err = write_one_page(page, 0);
399 if (err)
400 werr = err;
401 page_cache_release(page);
402 }
403 }
Chris Mason690587d2009-10-13 13:29:19 -0400404 if (err)
405 werr = err;
406 return werr;
407}
408
409/*
410 * when btree blocks are allocated, they have some corresponding bits set for
411 * them in one of two extent_io trees. This is used to make sure all of
412 * those extents are on disk for transaction or log commit. We wait
413 * on all the pages and clear them from the dirty pages state tree
414 */
415int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000416 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400417{
418 int ret;
419 int err = 0;
420 int werr = 0;
421 struct page *page;
422 struct inode *btree_inode = root->fs_info->btree_inode;
423 u64 start = 0;
424 u64 end;
425 unsigned long index;
426
Chris Masond3977122009-01-05 21:25:51 -0500427 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000428 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
429 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400430 if (ret)
431 break;
432
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000433 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500434 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400435 index = start >> PAGE_CACHE_SHIFT;
436 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
437 page = find_get_page(btree_inode->i_mapping, index);
438 if (!page)
439 continue;
440 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400441 btree_lock_page_hook(page);
442 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400443 err = write_one_page(page, 0);
444 if (err)
445 werr = err;
446 }
Chris Mason105d9312008-11-18 12:13:12 -0500447 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400448 page_cache_release(page);
449 cond_resched();
450 }
451 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400452 if (err)
453 werr = err;
454 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400455}
456
Chris Mason690587d2009-10-13 13:29:19 -0400457/*
458 * when btree blocks are allocated, they have some corresponding bits set for
459 * them in one of two extent_io trees. This is used to make sure all of
460 * those extents are on disk for transaction or log commit
461 */
462int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000463 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400464{
465 int ret;
466 int ret2;
467
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000468 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
469 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400470 return ret || ret2;
471}
472
Chris Masond0c803c2008-09-11 16:17:57 -0400473int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
474 struct btrfs_root *root)
475{
476 if (!trans || !trans->transaction) {
477 struct inode *btree_inode;
478 btree_inode = root->fs_info->btree_inode;
479 return filemap_write_and_wait(btree_inode->i_mapping);
480 }
481 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000482 &trans->transaction->dirty_pages,
483 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400484}
485
Chris Masond352ac62008-09-29 15:18:18 -0400486/*
487 * this is used to update the root pointer in the tree of tree roots.
488 *
489 * But, in the case of the extent allocation tree, updating the root
490 * pointer may allocate blocks which may change the root of the extent
491 * allocation tree.
492 *
493 * So, this loops and repeats and makes sure the cowonly root didn't
494 * change while the root pointer was being updated in the metadata.
495 */
Chris Mason0b86a832008-03-24 15:01:56 -0400496static int update_cowonly_root(struct btrfs_trans_handle *trans,
497 struct btrfs_root *root)
498{
499 int ret;
500 u64 old_root_bytenr;
501 struct btrfs_root *tree_root = root->fs_info->tree_root;
502
503 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400504
Chris Masond3977122009-01-05 21:25:51 -0500505 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400506 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
507 if (old_root_bytenr == root->node->start)
508 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400509
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400510 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400511 ret = btrfs_update_root(trans, tree_root,
512 &root->root_key,
513 &root->root_item);
514 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400515
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400516 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400517 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400518 }
Yan Zheng276e6802009-07-30 09:40:40 -0400519
520 if (root != root->fs_info->extent_root)
521 switch_commit_root(root);
522
Chris Mason0b86a832008-03-24 15:01:56 -0400523 return 0;
524}
525
Chris Masond352ac62008-09-29 15:18:18 -0400526/*
527 * update all the cowonly tree roots on disk
528 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400529static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
530 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400531{
Chris Mason79154b12007-03-22 15:59:16 -0400532 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400533 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400534 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400535 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400536
Chris Mason56bec292009-03-13 10:10:06 -0400537 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
538 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400539
Yan Zheng84234f32008-10-29 14:49:05 -0400540 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400541 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400542 btrfs_tree_unlock(eb);
543 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -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
Chris Masond3977122009-01-05 21:25:51 -0500548 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400549 next = fs_info->dirty_cowonly_roots.next;
550 list_del_init(next);
551 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400552
Chris Mason0b86a832008-03-24 15:01:56 -0400553 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400554 }
Yan Zheng276e6802009-07-30 09:40:40 -0400555
556 down_write(&fs_info->extent_commit_sem);
557 switch_commit_root(fs_info->extent_root);
558 up_write(&fs_info->extent_commit_sem);
559
Chris Mason79154b12007-03-22 15:59:16 -0400560 return 0;
561}
562
Chris Masond352ac62008-09-29 15:18:18 -0400563/*
564 * dead roots are old snapshots that need to be deleted. This allocates
565 * a dirty root struct and adds it into the list of dead roots that need to
566 * be deleted
567 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400568int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400569{
Yan Zhengb48652c2008-08-04 23:23:47 -0400570 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400571 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400572 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400573 return 0;
574}
575
Chris Masond352ac62008-09-29 15:18:18 -0400576/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400577 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400578 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400579static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
580 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400581{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400582 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400583 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400584 int i;
585 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400586 int err = 0;
587
Chris Masond3977122009-01-05 21:25:51 -0500588 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400589 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
590 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400591 ARRAY_SIZE(gang),
592 BTRFS_ROOT_TRANS_TAG);
593 if (ret == 0)
594 break;
595 for (i = 0; i < ret; i++) {
596 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400597 radix_tree_tag_clear(&fs_info->fs_roots_radix,
598 (unsigned long)root->root_key.objectid,
599 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400600
Chris Masone02119d2008-09-05 16:13:11 -0400601 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400602 btrfs_update_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400603
Yan Zheng978d9102009-06-15 20:01:02 -0400604 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400605 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400606 btrfs_set_root_node(&root->root_item,
607 root->node);
608 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400609
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400610 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400611 &root->root_key,
612 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400613 if (err)
614 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400615 }
616 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400617 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400618}
619
Chris Masond352ac62008-09-29 15:18:18 -0400620/*
621 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
622 * otherwise every leaf in the btree is read and defragged.
623 */
Chris Masone9d0b132007-08-10 14:06:19 -0400624int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
625{
626 struct btrfs_fs_info *info = root->fs_info;
627 int ret;
628 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400629 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400630
Chris Masona2135012008-06-25 16:01:30 -0400631 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400632 if (root->defrag_running)
633 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400634 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400635 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400636 root->defrag_running = 1;
637 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400638 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400639 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400640 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400641 cond_resched();
642
Chris Masone9d0b132007-08-10 14:06:19 -0400643 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400644 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400645 break;
646 }
647 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400648 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400649 btrfs_end_transaction(trans, root);
650 return 0;
651}
652
Yan Zheng2c47e6052009-06-27 21:07:35 -0400653#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400654/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400655 * when dropping snapshots, we generate a ton of delayed refs, and it makes
656 * sense not to join the transaction while it is trying to flush the current
657 * queue of delayed refs out.
658 *
659 * This is used by the drop snapshot code only
660 */
661static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
662{
663 DEFINE_WAIT(wait);
664
665 mutex_lock(&info->trans_mutex);
666 while (info->running_transaction &&
667 info->running_transaction->delayed_refs.flushing) {
668 prepare_to_wait(&info->transaction_wait, &wait,
669 TASK_UNINTERRUPTIBLE);
670 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400671
Chris Masonb7ec40d2009-03-12 20:12:45 -0400672 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400673
Chris Masonb7ec40d2009-03-12 20:12:45 -0400674 mutex_lock(&info->trans_mutex);
675 finish_wait(&info->transaction_wait, &wait);
676 }
677 mutex_unlock(&info->trans_mutex);
678 return 0;
679}
680
681/*
Chris Masond352ac62008-09-29 15:18:18 -0400682 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
683 * all of them
684 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400685int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400686{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400687 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400688 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400689 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400690 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400691
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400692 while (1) {
693 /*
694 * we don't want to jump in and create a bunch of
695 * delayed refs if the transaction is starting to close
696 */
697 wait_transaction_pre_flush(tree_root->fs_info);
698 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400699
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400700 /*
701 * we've joined a transaction, make sure it isn't
702 * closing right now
703 */
704 if (trans->transaction->delayed_refs.flushing) {
705 btrfs_end_transaction(trans, tree_root);
706 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400707 }
Chris Masona2135012008-06-25 16:01:30 -0400708
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400709 ret = btrfs_drop_snapshot(trans, root);
710 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400711 break;
Chris Masona2135012008-06-25 16:01:30 -0400712
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400713 ret = btrfs_update_root(trans, tree_root,
714 &root->root_key,
715 &root->root_item);
716 if (ret)
717 break;
Yanbcc63ab2008-07-30 16:29:20 -0400718
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400719 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400720 ret = btrfs_end_transaction(trans, tree_root);
721 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400722
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400723 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400724 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400725 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400726 BUG_ON(ret);
727
728 ret = btrfs_del_root(trans, tree_root, &root->root_key);
729 BUG_ON(ret);
730
731 nr = trans->blocks_used;
732 ret = btrfs_end_transaction(trans, tree_root);
733 BUG_ON(ret);
734
735 free_extent_buffer(root->node);
736 free_extent_buffer(root->commit_root);
737 kfree(root);
738
739 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400740 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400741}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400742#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400743
Chris Masond352ac62008-09-29 15:18:18 -0400744/*
745 * new snapshots need to be created at a very specific time in the
746 * transaction commit. This does the actual creation
747 */
Chris Mason80b67942008-02-01 16:35:04 -0500748static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500749 struct btrfs_fs_info *fs_info,
750 struct btrfs_pending_snapshot *pending)
751{
752 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500753 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500754 struct btrfs_root *tree_root = fs_info->tree_root;
755 struct btrfs_root *root = pending->root;
756 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400757 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500758 int ret;
759 u64 objectid;
760
Chris Mason80b67942008-02-01 16:35:04 -0500761 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
762 if (!new_root_item) {
763 ret = -ENOMEM;
764 goto fail;
765 }
Chris Mason3063d292008-01-08 15:46:30 -0500766 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
767 if (ret)
768 goto fail;
769
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400770 record_root_in_trans(trans, root);
Yan Zheng80ff3852008-10-30 14:20:02 -0400771 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500772 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500773
774 key.objectid = objectid;
Yan, Zheng1c4850e2009-09-21 15:55:59 -0400775 /* record when the snapshot was created in key.offset */
776 key.offset = trans->transid;
Chris Mason3063d292008-01-08 15:46:30 -0500777 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
778
Chris Mason925baed2008-06-25 16:01:30 -0400779 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400780 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400781 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500782
Chris Mason925baed2008-06-25 16:01:30 -0400783 btrfs_copy_root(trans, root, old, &tmp, objectid);
784 btrfs_tree_unlock(old);
785 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500786
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400787 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500788 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500789 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400790 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500791 free_extent_buffer(tmp);
792 if (ret)
793 goto fail;
794
Chris Mason3de45862008-11-17 21:02:50 -0500795 key.offset = (u64)-1;
796 memcpy(&pending->root_key, &key, sizeof(key));
797fail:
798 kfree(new_root_item);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400799 btrfs_unreserve_metadata_space(root, 6);
Chris Mason3de45862008-11-17 21:02:50 -0500800 return ret;
801}
802
803static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
804 struct btrfs_pending_snapshot *pending)
805{
806 int ret;
807 int namelen;
808 u64 index = 0;
809 struct btrfs_trans_handle *trans;
810 struct inode *parent_inode;
811 struct inode *inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500812 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500813
Chris Mason3394e162008-11-17 20:42:26 -0500814 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500815 parent_root = BTRFS_I(parent_inode)->root;
Yan Zheng180591b2009-01-06 09:58:06 -0500816 trans = btrfs_join_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500817
Chris Mason3063d292008-01-08 15:46:30 -0500818 /*
819 * insert the directory item
820 */
Sven Wegener3b963622008-06-09 21:57:42 -0400821 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500822 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500823 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500824 pending->name, namelen,
825 parent_inode->i_ino,
826 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500827
828 if (ret)
829 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500830
Yan Zheng52c26172009-01-05 15:43:43 -0500831 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
832 ret = btrfs_update_inode(trans, parent_root, parent_inode);
833 BUG_ON(ret);
834
Chris Mason0660b5a2008-11-17 20:37:39 -0500835 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
836 pending->root_key.objectid,
Chris Mason0660b5a2008-11-17 20:37:39 -0500837 parent_root->root_key.objectid,
838 parent_inode->i_ino, index, pending->name,
839 namelen);
840
841 BUG_ON(ret);
842
Chris Mason3de45862008-11-17 21:02:50 -0500843 inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
844 d_instantiate(pending->dentry, inode);
Chris Mason3063d292008-01-08 15:46:30 -0500845fail:
Chris Mason3de45862008-11-17 21:02:50 -0500846 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500847 return ret;
848}
849
Chris Masond352ac62008-09-29 15:18:18 -0400850/*
851 * create all the snapshots we've scheduled for creation
852 */
Chris Mason80b67942008-02-01 16:35:04 -0500853static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
854 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500855{
856 struct btrfs_pending_snapshot *pending;
857 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500858 int ret;
859
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500860 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500861 ret = create_pending_snapshot(trans, fs_info, pending);
862 BUG_ON(ret);
863 }
864 return 0;
865}
866
867static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
868 struct btrfs_fs_info *fs_info)
869{
870 struct btrfs_pending_snapshot *pending;
871 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500872 int ret;
873
Chris Masond3977122009-01-05 21:25:51 -0500874 while (!list_empty(head)) {
Chris Mason3063d292008-01-08 15:46:30 -0500875 pending = list_entry(head->next,
876 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500877 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500878 BUG_ON(ret);
879 list_del(&pending->list);
880 kfree(pending->name);
881 kfree(pending);
882 }
Chris Masondc17ff82008-01-08 15:46:30 -0500883 return 0;
884}
885
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400886static void update_super_roots(struct btrfs_root *root)
887{
888 struct btrfs_root_item *root_item;
889 struct btrfs_super_block *super;
890
891 super = &root->fs_info->super_copy;
892
893 root_item = &root->fs_info->chunk_root->root_item;
894 super->chunk_root = root_item->bytenr;
895 super->chunk_root_generation = root_item->generation;
896 super->chunk_root_level = root_item->level;
897
898 root_item = &root->fs_info->tree_root->root_item;
899 super->root = root_item->bytenr;
900 super->generation = root_item->generation;
901 super->root_level = root_item->level;
902}
903
Chris Masonf36f3042009-07-30 10:04:48 -0400904int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
905{
906 int ret = 0;
907 spin_lock(&info->new_trans_lock);
908 if (info->running_transaction)
909 ret = info->running_transaction->in_commit;
910 spin_unlock(&info->new_trans_lock);
911 return ret;
912}
913
Chris Mason79154b12007-03-22 15:59:16 -0400914int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
915 struct btrfs_root *root)
916{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400917 unsigned long joined = 0;
918 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400919 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400920 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400921 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400922 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400923 int should_grow = 0;
924 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400925 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400926
Chris Mason5a3f23d2009-03-31 13:27:11 -0400927 btrfs_run_ordered_operations(root, 0);
928
Chris Mason56bec292009-03-13 10:10:06 -0400929 /* make a pass through all the delayed refs we have so far
930 * any runnings procs may add more while we are here
931 */
932 ret = btrfs_run_delayed_refs(trans, root, 0);
933 BUG_ON(ret);
934
Chris Masonb7ec40d2009-03-12 20:12:45 -0400935 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400936 /*
937 * set the flushing flag so procs in this transaction have to
938 * start sending their work down.
939 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400940 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400941
Chris Masonc3e69d52009-03-13 10:17:05 -0400942 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400943 BUG_ON(ret);
944
Chris Mason79154b12007-03-22 15:59:16 -0400945 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400946 if (cur_trans->in_commit) {
947 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400948 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400949 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400950
Chris Mason79154b12007-03-22 15:59:16 -0400951 ret = wait_for_commit(root, cur_trans);
952 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400953
954 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400955 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400956 mutex_unlock(&root->fs_info->trans_mutex);
957
Chris Mason79154b12007-03-22 15:59:16 -0400958 return 0;
959 }
Chris Mason4313b392008-01-03 09:08:48 -0500960
Chris Mason2c90e5d2007-04-02 10:50:19 -0400961 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400962 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400963 if (cur_trans->list.prev != &root->fs_info->trans_list) {
964 prev_trans = list_entry(cur_trans->list.prev,
965 struct btrfs_transaction, list);
966 if (!prev_trans->commit_done) {
967 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400968 mutex_unlock(&root->fs_info->trans_mutex);
969
970 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400971
Chris Masonccd467d2007-06-28 15:57:36 -0400972 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400973 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400974 }
975 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400976
Chris Mason89573b92009-03-12 20:12:45 -0400977 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
978 should_grow = 1;
979
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400980 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400981 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400982 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400983 if (!list_empty(&trans->transaction->pending_snapshots))
984 snap_pending = 1;
985
Chris Mason2c90e5d2007-04-02 10:50:19 -0400986 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400987 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400988 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400989
990 if (cur_trans->num_writers > 1)
991 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400992 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400993 timeout = 1;
994
Chris Mason79154b12007-03-22 15:59:16 -0400995 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400996
Sage Weilebecd3d92009-07-24 13:17:44 -0400997 if (flush_on_commit) {
998 btrfs_start_delalloc_inodes(root);
999 ret = btrfs_wait_ordered_extents(root, 0);
1000 BUG_ON(ret);
1001 } else if (snap_pending) {
Yan Zheng7ea394f2008-08-05 13:05:02 -04001002 ret = btrfs_wait_ordered_extents(root, 1);
1003 BUG_ON(ret);
1004 }
1005
Chris Mason5a3f23d2009-03-31 13:27:11 -04001006 /*
1007 * rename don't use btrfs_join_transaction, so, once we
1008 * set the transaction to blocked above, we aren't going
1009 * to get any new ordered operations. We can safely run
1010 * it here and no for sure that nothing new will be added
1011 * to the list
1012 */
1013 btrfs_run_ordered_operations(root, 1);
1014
Chris Mason89573b92009-03-12 20:12:45 -04001015 smp_mb();
1016 if (cur_trans->num_writers > 1 || should_grow)
1017 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001018
Chris Mason79154b12007-03-22 15:59:16 -04001019 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001020 finish_wait(&cur_trans->writer_wait, &wait);
1021 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -04001022 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001023
Chris Mason3063d292008-01-08 15:46:30 -05001024 ret = create_pending_snapshots(trans, root->fs_info);
1025 BUG_ON(ret);
1026
Chris Mason56bec292009-03-13 10:10:06 -04001027 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
1028 BUG_ON(ret);
1029
Chris Mason2c90e5d2007-04-02 10:50:19 -04001030 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -05001031
Chris Masone02119d2008-09-05 16:13:11 -04001032 /* btrfs_commit_tree_roots is responsible for getting the
1033 * various roots consistent with each other. Every pointer
1034 * in the tree of tree roots has to point to the most up to date
1035 * root for every subvolume and other tree. So, we have to keep
1036 * the tree logging code from jumping in and changing any
1037 * of the trees.
1038 *
1039 * At this point in the commit, there can't be any tree-log
1040 * writers, but a little lower down we drop the trans mutex
1041 * and let new people in. By holding the tree_log_mutex
1042 * from now until after the super is written, we avoid races
1043 * with the tree-log code.
1044 */
1045 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001046
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001048 BUG_ON(ret);
1049
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001050 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001051 * safe to free the root of tree log roots
1052 */
1053 btrfs_free_log_root_tree(trans, root->fs_info);
1054
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001055 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001056 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001057
Yan Zheng11833d62009-09-11 16:11:19 -04001058 btrfs_prepare_extent_commit(trans, root);
1059
Chris Mason78fae272007-03-25 11:35:08 -04001060 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001061 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001062 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001063 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001065 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1066 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001067 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068
1069 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1070 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001071 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072
1073 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001074
1075 if (!root->fs_info->log_root_recovering) {
1076 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1077 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1078 }
1079
Chris Masona061fc82008-05-07 11:43:44 -04001080 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1081 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001082
Chris Masonf9295742008-07-17 12:54:14 -04001083 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001084
Chris Masonf9295742008-07-17 12:54:14 -04001085 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001086
Chris Mason78fae272007-03-25 11:35:08 -04001087 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001088 ret = btrfs_write_and_wait_transaction(trans, root);
1089 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001090 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001091
Chris Masone02119d2008-09-05 16:13:11 -04001092 /*
1093 * the super is written, we can safely allow the tree-loggers
1094 * to go about their business
1095 */
1096 mutex_unlock(&root->fs_info->tree_log_mutex);
1097
Yan Zheng11833d62009-09-11 16:11:19 -04001098 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001099
Chris Mason3de45862008-11-17 21:02:50 -05001100 /* do the directory inserts of any pending snapshot creations */
1101 finish_pending_snapshots(trans, root->fs_info);
1102
Zheng Yan1a40e232008-09-26 10:09:34 -04001103 mutex_lock(&root->fs_info->trans_mutex);
1104
Chris Mason2c90e5d2007-04-02 10:50:19 -04001105 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001106
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001107 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001108
Chris Mason2c90e5d2007-04-02 10:50:19 -04001109 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001110
Chris Mason79154b12007-03-22 15:59:16 -04001111 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001112 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001113
Chris Mason78fae272007-03-25 11:35:08 -04001114 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001115
Josef Bacik9ed74f22009-09-11 16:12:44 -04001116 if (current->journal_info == trans)
1117 current->journal_info = NULL;
1118
Chris Mason2c90e5d2007-04-02 10:50:19 -04001119 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -04001120 return ret;
1121}
1122
Chris Masond352ac62008-09-29 15:18:18 -04001123/*
1124 * interface function to delete all the snapshots we have scheduled for deletion
1125 */
Chris Masone9d0b132007-08-10 14:06:19 -04001126int btrfs_clean_old_snapshots(struct btrfs_root *root)
1127{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001128 LIST_HEAD(list);
1129 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001130
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131 mutex_lock(&fs_info->trans_mutex);
1132 list_splice_init(&fs_info->dead_roots, &list);
1133 mutex_unlock(&fs_info->trans_mutex);
1134
1135 while (!list_empty(&list)) {
1136 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001137 list_del(&root->root_list);
1138
1139 if (btrfs_header_backref_rev(root->node) <
1140 BTRFS_MIXED_BACKREF_REV)
1141 btrfs_drop_snapshot(root, 0);
1142 else
1143 btrfs_drop_snapshot(root, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001144 }
1145 return 0;
1146}