blob: 01cebd661997c0c7475008650aac31d6d0a47347 [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
Eric Paris6bef4d32010-02-23 19:43:04 +000072 cur_trans->delayed_refs.root = RB_ROOT;
Chris Mason56bec292009-03-13 10:10:06 -040073 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);
Zhao Lei471fa172010-03-25 12:35:14 +0000150 if (!cur_trans->blocked)
Chris Masonf9295742008-07-17 12:54:14 -0400151 break;
Zhao Lei471fa172010-03-25 12:35:14 +0000152 mutex_unlock(&root->fs_info->trans_mutex);
153 schedule();
154 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonf9295742008-07-17 12:54:14 -0400155 }
Zhao Lei471fa172010-03-25 12:35:14 +0000156 finish_wait(&root->fs_info->transaction_wait, &wait);
Chris Masonf9295742008-07-17 12:54:14 -0400157 put_transaction(cur_trans);
158 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400159}
160
Josef Bacik249ac1e2009-11-10 21:23:48 -0500161enum btrfs_trans_type {
162 TRANS_START,
163 TRANS_JOIN,
164 TRANS_USERSPACE,
165};
166
Chris Masone02119d2008-09-05 16:13:11 -0400167static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Josef Bacik249ac1e2009-11-10 21:23:48 -0500168 int num_blocks, int type)
Chris Mason37d1aee2008-07-31 10:48:37 -0400169{
170 struct btrfs_trans_handle *h =
171 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
172 int ret;
173
174 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400175 if (!root->fs_info->log_root_recovering &&
Josef Bacik249ac1e2009-11-10 21:23:48 -0500176 ((type == TRANS_START && !root->fs_info->open_ioctl_trans) ||
177 type == TRANS_USERSPACE))
Chris Mason37d1aee2008-07-31 10:48:37 -0400178 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400179 ret = join_transaction(root);
180 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400181
Chris Mason6702ed42007-08-07 16:15:09 -0400182 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400183 h->transaction = root->fs_info->running_transaction;
184 h->blocks_reserved = num_blocks;
185 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500186 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400187 h->alloc_exclude_nr = 0;
188 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400189 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400190
Josef Bacik249ac1e2009-11-10 21:23:48 -0500191 if (!current->journal_info && type != TRANS_USERSPACE)
Josef Bacik9ed74f22009-09-11 16:12:44 -0400192 current->journal_info = h;
193
Chris Mason79154b12007-03-22 15:59:16 -0400194 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400195 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400196 mutex_unlock(&root->fs_info->trans_mutex);
197 return h;
198}
199
Chris Masonf9295742008-07-17 12:54:14 -0400200struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
201 int num_blocks)
202{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500203 return start_transaction(root, num_blocks, TRANS_START);
Chris Masonf9295742008-07-17 12:54:14 -0400204}
205struct btrfs_trans_handle *btrfs_join_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_JOIN);
Chris Masonf9295742008-07-17 12:54:14 -0400209}
210
Sage Weil9ca9ee02008-08-04 10:41:27 -0400211struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
212 int num_blocks)
213{
Josef Bacik249ac1e2009-11-10 21:23:48 -0500214 return start_transaction(r, num_blocks, TRANS_USERSPACE);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400215}
216
Chris Masond352ac62008-09-29 15:18:18 -0400217/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400218static noinline int wait_for_commit(struct btrfs_root *root,
219 struct btrfs_transaction *commit)
220{
221 DEFINE_WAIT(wait);
222 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500223 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400224 prepare_to_wait(&commit->commit_wait, &wait,
225 TASK_UNINTERRUPTIBLE);
226 if (commit->commit_done)
227 break;
228 mutex_unlock(&root->fs_info->trans_mutex);
229 schedule();
230 mutex_lock(&root->fs_info->trans_mutex);
231 }
232 mutex_unlock(&root->fs_info->trans_mutex);
233 finish_wait(&commit->commit_wait, &wait);
234 return 0;
235}
236
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400237#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400238/*
Chris Masond3977122009-01-05 21:25:51 -0500239 * rate limit against the drop_snapshot code. This helps to slow down new
240 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400241 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400242static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400243{
244 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400245 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400246
Chris Mason2dd3e672008-08-04 08:20:15 -0400247harder:
Chris Masonab78c842008-07-29 16:15:18 -0400248 if (atomic_read(&info->throttles)) {
249 DEFINE_WAIT(wait);
250 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400251 thr = atomic_read(&info->throttle_gen);
252
253 do {
254 prepare_to_wait(&info->transaction_throttle,
255 &wait, TASK_UNINTERRUPTIBLE);
256 if (!atomic_read(&info->throttles)) {
257 finish_wait(&info->transaction_throttle, &wait);
258 break;
259 }
260 schedule();
261 finish_wait(&info->transaction_throttle, &wait);
262 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400263 harder_count++;
264
265 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
266 harder_count < 2)
267 goto harder;
268
269 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
270 harder_count < 10)
271 goto harder;
272
273 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
274 harder_count < 20)
275 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400276 }
277}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400278#endif
Chris Masonab78c842008-07-29 16:15:18 -0400279
Chris Mason37d1aee2008-07-31 10:48:37 -0400280void btrfs_throttle(struct btrfs_root *root)
281{
282 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400283 if (!root->fs_info->open_ioctl_trans)
284 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400285 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400286}
287
Chris Mason89ce8a62008-06-25 16:01:31 -0400288static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
289 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400290{
291 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400292 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400293 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400294
Chris Masonc3e69d52009-03-13 10:17:05 -0400295 while (count < 4) {
296 unsigned long cur = trans->delayed_ref_updates;
297 trans->delayed_ref_updates = 0;
298 if (cur &&
299 trans->transaction->delayed_refs.num_heads_ready > 64) {
300 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400301
302 /*
303 * do a full flush if the transaction is trying
304 * to close
305 */
306 if (trans->transaction->delayed_refs.flushing)
307 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400308 btrfs_run_delayed_refs(trans, root, cur);
309 } else {
310 break;
311 }
312 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400313 }
314
Chris Masonab78c842008-07-29 16:15:18 -0400315 mutex_lock(&info->trans_mutex);
316 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400317 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400318 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400319 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400320
Chris Mason79154b12007-03-22 15:59:16 -0400321 if (waitqueue_active(&cur_trans->writer_wait))
322 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400323 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400324 mutex_unlock(&info->trans_mutex);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400325
326 if (current->journal_info == trans)
327 current->journal_info = NULL;
Chris Masond6025572007-03-30 14:27:56 -0400328 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400329 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400330
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000331 if (throttle)
332 btrfs_run_delayed_iputs(root);
333
Chris Mason79154b12007-03-22 15:59:16 -0400334 return 0;
335}
336
Chris Mason89ce8a62008-06-25 16:01:31 -0400337int btrfs_end_transaction(struct btrfs_trans_handle *trans,
338 struct btrfs_root *root)
339{
340 return __btrfs_end_transaction(trans, root, 0);
341}
342
343int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
344 struct btrfs_root *root)
345{
346 return __btrfs_end_transaction(trans, root, 1);
347}
348
Chris Masond352ac62008-09-29 15:18:18 -0400349/*
350 * when btree blocks are allocated, they have some corresponding bits set for
351 * them in one of two extent_io trees. This is used to make sure all of
Chris Mason690587d2009-10-13 13:29:19 -0400352 * those extents are sent to disk but does not wait on them
Chris Masond352ac62008-09-29 15:18:18 -0400353 */
Chris Mason690587d2009-10-13 13:29:19 -0400354int btrfs_write_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000355 struct extent_io_tree *dirty_pages, int mark)
Chris Mason79154b12007-03-22 15:59:16 -0400356{
Chris Mason7c4452b2007-04-28 09:29:35 -0400357 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400358 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400359 int werr = 0;
360 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400361 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400362 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400363 u64 end;
364 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400365
Chris Masond3977122009-01-05 21:25:51 -0500366 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400367 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000368 mark);
Chris Mason5f39d392007-10-15 16:14:19 -0400369 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400370 break;
Chris Masond3977122009-01-05 21:25:51 -0500371 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400372 cond_resched();
373
Chris Mason5f39d392007-10-15 16:14:19 -0400374 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400375 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400376 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400377 if (!page)
378 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400379
380 btree_lock_page_hook(page);
381 if (!page->mapping) {
382 unlock_page(page);
383 page_cache_release(page);
384 continue;
385 }
386
Chris Mason6702ed42007-08-07 16:15:09 -0400387 if (PageWriteback(page)) {
388 if (PageDirty(page))
389 wait_on_page_writeback(page);
390 else {
391 unlock_page(page);
392 page_cache_release(page);
393 continue;
394 }
395 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400396 err = write_one_page(page, 0);
397 if (err)
398 werr = err;
399 page_cache_release(page);
400 }
401 }
Chris Mason690587d2009-10-13 13:29:19 -0400402 if (err)
403 werr = err;
404 return werr;
405}
406
407/*
408 * when btree blocks are allocated, they have some corresponding bits set for
409 * them in one of two extent_io trees. This is used to make sure all of
410 * those extents are on disk for transaction or log commit. We wait
411 * on all the pages and clear them from the dirty pages state tree
412 */
413int btrfs_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000414 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400415{
416 int ret;
417 int err = 0;
418 int werr = 0;
419 struct page *page;
420 struct inode *btree_inode = root->fs_info->btree_inode;
421 u64 start = 0;
422 u64 end;
423 unsigned long index;
424
Chris Masond3977122009-01-05 21:25:51 -0500425 while (1) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000426 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
427 mark);
Chris Mason777e6bd2008-08-15 15:34:15 -0400428 if (ret)
429 break;
430
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000431 clear_extent_bits(dirty_pages, start, end, mark, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500432 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400433 index = start >> PAGE_CACHE_SHIFT;
434 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
435 page = find_get_page(btree_inode->i_mapping, index);
436 if (!page)
437 continue;
438 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400439 btree_lock_page_hook(page);
440 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400441 err = write_one_page(page, 0);
442 if (err)
443 werr = err;
444 }
Chris Mason105d9312008-11-18 12:13:12 -0500445 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400446 page_cache_release(page);
447 cond_resched();
448 }
449 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400450 if (err)
451 werr = err;
452 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400453}
454
Chris Mason690587d2009-10-13 13:29:19 -0400455/*
456 * when btree blocks are allocated, they have some corresponding bits set for
457 * them in one of two extent_io trees. This is used to make sure all of
458 * those extents are on disk for transaction or log commit
459 */
460int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000461 struct extent_io_tree *dirty_pages, int mark)
Chris Mason690587d2009-10-13 13:29:19 -0400462{
463 int ret;
464 int ret2;
465
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000466 ret = btrfs_write_marked_extents(root, dirty_pages, mark);
467 ret2 = btrfs_wait_marked_extents(root, dirty_pages, mark);
Chris Mason690587d2009-10-13 13:29:19 -0400468 return ret || ret2;
469}
470
Chris Masond0c803c2008-09-11 16:17:57 -0400471int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
472 struct btrfs_root *root)
473{
474 if (!trans || !trans->transaction) {
475 struct inode *btree_inode;
476 btree_inode = root->fs_info->btree_inode;
477 return filemap_write_and_wait(btree_inode->i_mapping);
478 }
479 return btrfs_write_and_wait_marked_extents(root,
Yan, Zheng8cef4e12009-11-12 09:33:26 +0000480 &trans->transaction->dirty_pages,
481 EXTENT_DIRTY);
Chris Masond0c803c2008-09-11 16:17:57 -0400482}
483
Chris Masond352ac62008-09-29 15:18:18 -0400484/*
485 * this is used to update the root pointer in the tree of tree roots.
486 *
487 * But, in the case of the extent allocation tree, updating the root
488 * pointer may allocate blocks which may change the root of the extent
489 * allocation tree.
490 *
491 * So, this loops and repeats and makes sure the cowonly root didn't
492 * change while the root pointer was being updated in the metadata.
493 */
Chris Mason0b86a832008-03-24 15:01:56 -0400494static int update_cowonly_root(struct btrfs_trans_handle *trans,
495 struct btrfs_root *root)
496{
497 int ret;
498 u64 old_root_bytenr;
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000499 u64 old_root_used;
Chris Mason0b86a832008-03-24 15:01:56 -0400500 struct btrfs_root *tree_root = root->fs_info->tree_root;
501
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000502 old_root_used = btrfs_root_used(&root->root_item);
Chris Mason0b86a832008-03-24 15:01:56 -0400503 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);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000507 if (old_root_bytenr == root->node->start &&
508 old_root_used == btrfs_root_used(&root->root_item))
Chris Mason0b86a832008-03-24 15:01:56 -0400509 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400510
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400511 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400512 ret = btrfs_update_root(trans, tree_root,
513 &root->root_key,
514 &root->root_item);
515 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400516
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000517 old_root_used = btrfs_root_used(&root->root_item);
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400518 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400519 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400520 }
Yan Zheng276e6802009-07-30 09:40:40 -0400521
522 if (root != root->fs_info->extent_root)
523 switch_commit_root(root);
524
Chris Mason0b86a832008-03-24 15:01:56 -0400525 return 0;
526}
527
Chris Masond352ac62008-09-29 15:18:18 -0400528/*
529 * update all the cowonly tree roots on disk
530 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400531static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
532 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400533{
Chris Mason79154b12007-03-22 15:59:16 -0400534 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400535 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400536 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400537 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400538
Chris Mason56bec292009-03-13 10:10:06 -0400539 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
540 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400541
Yan Zheng84234f32008-10-29 14:49:05 -0400542 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400543 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400544 btrfs_tree_unlock(eb);
545 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400546
Chris Mason56bec292009-03-13 10:10:06 -0400547 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
548 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400549
Chris Masond3977122009-01-05 21:25:51 -0500550 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400551 next = fs_info->dirty_cowonly_roots.next;
552 list_del_init(next);
553 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400554
Chris Mason0b86a832008-03-24 15:01:56 -0400555 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400556 }
Yan Zheng276e6802009-07-30 09:40:40 -0400557
558 down_write(&fs_info->extent_commit_sem);
559 switch_commit_root(fs_info->extent_root);
560 up_write(&fs_info->extent_commit_sem);
561
Chris Mason79154b12007-03-22 15:59:16 -0400562 return 0;
563}
564
Chris Masond352ac62008-09-29 15:18:18 -0400565/*
566 * dead roots are old snapshots that need to be deleted. This allocates
567 * a dirty root struct and adds it into the list of dead roots that need to
568 * be deleted
569 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400570int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400571{
Yan Zhengb48652c2008-08-04 23:23:47 -0400572 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400573 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400574 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400575 return 0;
576}
577
Chris Masond352ac62008-09-29 15:18:18 -0400578/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400579 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400580 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400581static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
582 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400583{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400584 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400585 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400586 int i;
587 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400588 int err = 0;
589
Chris Masond3977122009-01-05 21:25:51 -0500590 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400591 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
592 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400593 ARRAY_SIZE(gang),
594 BTRFS_ROOT_TRANS_TAG);
595 if (ret == 0)
596 break;
597 for (i = 0; i < ret; i++) {
598 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400599 radix_tree_tag_clear(&fs_info->fs_roots_radix,
600 (unsigned long)root->root_key.objectid,
601 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400602
Chris Masone02119d2008-09-05 16:13:11 -0400603 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400604 btrfs_update_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400605
Yan Zheng978d9102009-06-15 20:01:02 -0400606 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400607 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400608 btrfs_set_root_node(&root->root_item,
609 root->node);
610 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400611
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400612 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400613 &root->root_key,
614 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400615 if (err)
616 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400617 }
618 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400619 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400620}
621
Chris Masond352ac62008-09-29 15:18:18 -0400622/*
623 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
624 * otherwise every leaf in the btree is read and defragged.
625 */
Chris Masone9d0b132007-08-10 14:06:19 -0400626int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
627{
628 struct btrfs_fs_info *info = root->fs_info;
629 int ret;
630 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400631 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400632
Chris Masona2135012008-06-25 16:01:30 -0400633 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400634 if (root->defrag_running)
635 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400636 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400637 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400638 root->defrag_running = 1;
639 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400640 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400641 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400642 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400643 cond_resched();
644
Chris Masone9d0b132007-08-10 14:06:19 -0400645 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400646 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400647 break;
648 }
649 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400650 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400651 btrfs_end_transaction(trans, root);
652 return 0;
653}
654
Yan Zheng2c47e6052009-06-27 21:07:35 -0400655#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400656/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400657 * when dropping snapshots, we generate a ton of delayed refs, and it makes
658 * sense not to join the transaction while it is trying to flush the current
659 * queue of delayed refs out.
660 *
661 * This is used by the drop snapshot code only
662 */
663static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
664{
665 DEFINE_WAIT(wait);
666
667 mutex_lock(&info->trans_mutex);
668 while (info->running_transaction &&
669 info->running_transaction->delayed_refs.flushing) {
670 prepare_to_wait(&info->transaction_wait, &wait,
671 TASK_UNINTERRUPTIBLE);
672 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400673
Chris Masonb7ec40d2009-03-12 20:12:45 -0400674 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400675
Chris Masonb7ec40d2009-03-12 20:12:45 -0400676 mutex_lock(&info->trans_mutex);
677 finish_wait(&info->transaction_wait, &wait);
678 }
679 mutex_unlock(&info->trans_mutex);
680 return 0;
681}
682
683/*
Chris Masond352ac62008-09-29 15:18:18 -0400684 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
685 * all of them
686 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400687int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400688{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400689 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400690 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400691 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400692 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400693
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400694 while (1) {
695 /*
696 * we don't want to jump in and create a bunch of
697 * delayed refs if the transaction is starting to close
698 */
699 wait_transaction_pre_flush(tree_root->fs_info);
700 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400701
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400702 /*
703 * we've joined a transaction, make sure it isn't
704 * closing right now
705 */
706 if (trans->transaction->delayed_refs.flushing) {
707 btrfs_end_transaction(trans, tree_root);
708 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400709 }
Chris Masona2135012008-06-25 16:01:30 -0400710
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400711 ret = btrfs_drop_snapshot(trans, root);
712 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400713 break;
Chris Masona2135012008-06-25 16:01:30 -0400714
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400715 ret = btrfs_update_root(trans, tree_root,
716 &root->root_key,
717 &root->root_item);
718 if (ret)
719 break;
Yanbcc63ab2008-07-30 16:29:20 -0400720
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400721 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400722 ret = btrfs_end_transaction(trans, tree_root);
723 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400724
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400725 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400726 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400727 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400728 BUG_ON(ret);
729
730 ret = btrfs_del_root(trans, tree_root, &root->root_key);
731 BUG_ON(ret);
732
733 nr = trans->blocks_used;
734 ret = btrfs_end_transaction(trans, tree_root);
735 BUG_ON(ret);
736
737 free_extent_buffer(root->node);
738 free_extent_buffer(root->commit_root);
739 kfree(root);
740
741 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400742 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400743}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400744#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400745
Chris Masond352ac62008-09-29 15:18:18 -0400746/*
747 * new snapshots need to be created at a very specific time in the
748 * transaction commit. This does the actual creation
749 */
Chris Mason80b67942008-02-01 16:35:04 -0500750static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500751 struct btrfs_fs_info *fs_info,
752 struct btrfs_pending_snapshot *pending)
753{
754 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500755 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500756 struct btrfs_root *tree_root = fs_info->tree_root;
757 struct btrfs_root *root = pending->root;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000758 struct btrfs_root *parent_root;
759 struct inode *parent_inode;
Chris Mason3063d292008-01-08 15:46:30 -0500760 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400761 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500762 int ret;
763 u64 objectid;
Sage Weil6bdb72d2010-03-15 17:27:13 +0000764 int namelen;
765 u64 index = 0;
766
767 parent_inode = pending->dentry->d_parent->d_inode;
768 parent_root = BTRFS_I(parent_inode)->root;
Chris Mason3063d292008-01-08 15:46:30 -0500769
Chris Mason80b67942008-02-01 16:35:04 -0500770 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
771 if (!new_root_item) {
772 ret = -ENOMEM;
773 goto fail;
774 }
Chris Mason3063d292008-01-08 15:46:30 -0500775 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
776 if (ret)
777 goto fail;
778
Chris Mason3063d292008-01-08 15:46:30 -0500779 key.objectid = objectid;
Yan, Zheng1c4850e2009-09-21 15:55:59 -0400780 /* record when the snapshot was created in key.offset */
781 key.offset = trans->transid;
Chris Mason3063d292008-01-08 15:46:30 -0500782 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
783
Sage Weil6bdb72d2010-03-15 17:27:13 +0000784 memcpy(&pending->root_key, &key, sizeof(key));
785 pending->root_key.offset = (u64)-1;
786
787 record_root_in_trans(trans, parent_root);
788 /*
789 * insert the directory item
790 */
791 namelen = strlen(pending->name);
792 ret = btrfs_set_inode_index(parent_inode, &index);
793 BUG_ON(ret);
794 ret = btrfs_insert_dir_item(trans, parent_root,
795 pending->name, namelen,
796 parent_inode->i_ino,
797 &pending->root_key, BTRFS_FT_DIR, index);
798 BUG_ON(ret);
799
800 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
801 ret = btrfs_update_inode(trans, parent_root, parent_inode);
802 BUG_ON(ret);
803
804 record_root_in_trans(trans, root);
805 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
806 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
807
Chris Mason925baed2008-06-25 16:01:30 -0400808 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400809 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400810 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500811
Chris Mason925baed2008-06-25 16:01:30 -0400812 btrfs_copy_root(trans, root, old, &tmp, objectid);
813 btrfs_tree_unlock(old);
814 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500815
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400816 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500817 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500818 new_root_item);
Sage Weil6bdb72d2010-03-15 17:27:13 +0000819 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -0400820 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500821 free_extent_buffer(tmp);
Yan Zheng52c26172009-01-05 15:43:43 -0500822
Chris Mason0660b5a2008-11-17 20:37:39 -0500823 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
824 pending->root_key.objectid,
Chris Mason0660b5a2008-11-17 20:37:39 -0500825 parent_root->root_key.objectid,
826 parent_inode->i_ino, index, pending->name,
827 namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500828 BUG_ON(ret);
829
Chris Mason3063d292008-01-08 15:46:30 -0500830fail:
Sage Weil6bdb72d2010-03-15 17:27:13 +0000831 kfree(new_root_item);
Chris Mason3063d292008-01-08 15:46:30 -0500832 return ret;
833}
834
Chris Masond352ac62008-09-29 15:18:18 -0400835/*
836 * create all the snapshots we've scheduled for creation
837 */
Chris Mason80b67942008-02-01 16:35:04 -0500838static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
839 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500840{
841 struct btrfs_pending_snapshot *pending;
842 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500843 int ret;
844
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500845 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500846 ret = create_pending_snapshot(trans, fs_info, pending);
847 BUG_ON(ret);
848 }
849 return 0;
850}
851
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400852static void update_super_roots(struct btrfs_root *root)
853{
854 struct btrfs_root_item *root_item;
855 struct btrfs_super_block *super;
856
857 super = &root->fs_info->super_copy;
858
859 root_item = &root->fs_info->chunk_root->root_item;
860 super->chunk_root = root_item->bytenr;
861 super->chunk_root_generation = root_item->generation;
862 super->chunk_root_level = root_item->level;
863
864 root_item = &root->fs_info->tree_root->root_item;
865 super->root = root_item->bytenr;
866 super->generation = root_item->generation;
867 super->root_level = root_item->level;
868}
869
Chris Masonf36f3042009-07-30 10:04:48 -0400870int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
871{
872 int ret = 0;
873 spin_lock(&info->new_trans_lock);
874 if (info->running_transaction)
875 ret = info->running_transaction->in_commit;
876 spin_unlock(&info->new_trans_lock);
877 return ret;
878}
879
Chris Mason79154b12007-03-22 15:59:16 -0400880int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
881 struct btrfs_root *root)
882{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400883 unsigned long joined = 0;
884 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400885 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400886 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400887 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400888 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400889 int should_grow = 0;
890 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400891 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400892
Chris Mason5a3f23d2009-03-31 13:27:11 -0400893 btrfs_run_ordered_operations(root, 0);
894
Chris Mason56bec292009-03-13 10:10:06 -0400895 /* make a pass through all the delayed refs we have so far
896 * any runnings procs may add more while we are here
897 */
898 ret = btrfs_run_delayed_refs(trans, root, 0);
899 BUG_ON(ret);
900
Chris Masonb7ec40d2009-03-12 20:12:45 -0400901 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400902 /*
903 * set the flushing flag so procs in this transaction have to
904 * start sending their work down.
905 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400906 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400907
Chris Masonc3e69d52009-03-13 10:17:05 -0400908 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400909 BUG_ON(ret);
910
Chris Mason79154b12007-03-22 15:59:16 -0400911 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400912 if (cur_trans->in_commit) {
913 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400914 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400915 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400916
Chris Mason79154b12007-03-22 15:59:16 -0400917 ret = wait_for_commit(root, cur_trans);
918 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400919
920 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400921 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400922 mutex_unlock(&root->fs_info->trans_mutex);
923
Chris Mason79154b12007-03-22 15:59:16 -0400924 return 0;
925 }
Chris Mason4313b392008-01-03 09:08:48 -0500926
Chris Mason2c90e5d2007-04-02 10:50:19 -0400927 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400928 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400929 if (cur_trans->list.prev != &root->fs_info->trans_list) {
930 prev_trans = list_entry(cur_trans->list.prev,
931 struct btrfs_transaction, list);
932 if (!prev_trans->commit_done) {
933 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400934 mutex_unlock(&root->fs_info->trans_mutex);
935
936 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400937
Chris Masonccd467d2007-06-28 15:57:36 -0400938 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400939 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400940 }
941 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400942
Chris Mason89573b92009-03-12 20:12:45 -0400943 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
944 should_grow = 1;
945
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400946 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400947 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400948 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400949 if (!list_empty(&trans->transaction->pending_snapshots))
950 snap_pending = 1;
951
Chris Mason2c90e5d2007-04-02 10:50:19 -0400952 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400953 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400954 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400955
956 if (cur_trans->num_writers > 1)
957 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400958 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400959 timeout = 1;
960
Chris Mason79154b12007-03-22 15:59:16 -0400961 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400962
Sage Weil0bdb1db2010-02-19 14:13:50 -0800963 if (flush_on_commit || snap_pending) {
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000964 btrfs_start_delalloc_inodes(root, 1);
965 ret = btrfs_wait_ordered_extents(root, 0, 1);
Sage Weilebecd3d2009-07-24 13:17:44 -0400966 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400967 }
968
Chris Mason5a3f23d2009-03-31 13:27:11 -0400969 /*
970 * rename don't use btrfs_join_transaction, so, once we
971 * set the transaction to blocked above, we aren't going
972 * to get any new ordered operations. We can safely run
973 * it here and no for sure that nothing new will be added
974 * to the list
975 */
976 btrfs_run_ordered_operations(root, 1);
977
Chris Mason89573b92009-03-12 20:12:45 -0400978 smp_mb();
979 if (cur_trans->num_writers > 1 || should_grow)
980 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400981
Chris Mason79154b12007-03-22 15:59:16 -0400982 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400983 finish_wait(&cur_trans->writer_wait, &wait);
984 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -0400985 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400986
Chris Mason3063d292008-01-08 15:46:30 -0500987 ret = create_pending_snapshots(trans, root->fs_info);
988 BUG_ON(ret);
989
Chris Mason56bec292009-03-13 10:10:06 -0400990 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
991 BUG_ON(ret);
992
Chris Mason2c90e5d2007-04-02 10:50:19 -0400993 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500994
Chris Masone02119d2008-09-05 16:13:11 -0400995 /* btrfs_commit_tree_roots is responsible for getting the
996 * various roots consistent with each other. Every pointer
997 * in the tree of tree roots has to point to the most up to date
998 * root for every subvolume and other tree. So, we have to keep
999 * the tree logging code from jumping in and changing any
1000 * of the trees.
1001 *
1002 * At this point in the commit, there can't be any tree-log
1003 * writers, but a little lower down we drop the trans mutex
1004 * and let new people in. By holding the tree_log_mutex
1005 * from now until after the super is written, we avoid races
1006 * with the tree-log code.
1007 */
1008 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001009
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001010 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001011 BUG_ON(ret);
1012
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001013 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001014 * safe to free the root of tree log roots
1015 */
1016 btrfs_free_log_root_tree(trans, root->fs_info);
1017
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001018 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001019 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001020
Yan Zheng11833d62009-09-11 16:11:19 -04001021 btrfs_prepare_extent_commit(trans, root);
1022
Chris Mason78fae272007-03-25 11:35:08 -04001023 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001024 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001025 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001026 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001027
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001028 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1029 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001030 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001031
1032 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1033 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001034 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035
1036 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001037
1038 if (!root->fs_info->log_root_recovering) {
1039 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1040 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1041 }
1042
Chris Masona061fc82008-05-07 11:43:44 -04001043 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1044 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001045
Chris Masonf9295742008-07-17 12:54:14 -04001046 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001047
Chris Masonf9295742008-07-17 12:54:14 -04001048 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001049
Chris Mason78fae272007-03-25 11:35:08 -04001050 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001051 ret = btrfs_write_and_wait_transaction(trans, root);
1052 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001053 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001054
Chris Masone02119d2008-09-05 16:13:11 -04001055 /*
1056 * the super is written, we can safely allow the tree-loggers
1057 * to go about their business
1058 */
1059 mutex_unlock(&root->fs_info->tree_log_mutex);
1060
Yan Zheng11833d62009-09-11 16:11:19 -04001061 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001062
Zheng Yan1a40e232008-09-26 10:09:34 -04001063 mutex_lock(&root->fs_info->trans_mutex);
1064
Chris Mason2c90e5d2007-04-02 10:50:19 -04001065 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001066
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001067 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001068
Chris Mason2c90e5d2007-04-02 10:50:19 -04001069 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001070
Chris Mason79154b12007-03-22 15:59:16 -04001071 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001072 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001073
Chris Mason78fae272007-03-25 11:35:08 -04001074 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001075
Josef Bacik9ed74f22009-09-11 16:12:44 -04001076 if (current->journal_info == trans)
1077 current->journal_info = NULL;
1078
Chris Mason2c90e5d2007-04-02 10:50:19 -04001079 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001080
1081 if (current != root->fs_info->transaction_kthread)
1082 btrfs_run_delayed_iputs(root);
1083
Chris Mason79154b12007-03-22 15:59:16 -04001084 return ret;
1085}
1086
Chris Masond352ac62008-09-29 15:18:18 -04001087/*
1088 * interface function to delete all the snapshots we have scheduled for deletion
1089 */
Chris Masone9d0b132007-08-10 14:06:19 -04001090int btrfs_clean_old_snapshots(struct btrfs_root *root)
1091{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001092 LIST_HEAD(list);
1093 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001094
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001095 mutex_lock(&fs_info->trans_mutex);
1096 list_splice_init(&fs_info->dead_roots, &list);
1097 mutex_unlock(&fs_info->trans_mutex);
1098
1099 while (!list_empty(&list)) {
1100 root = list_entry(list.next, struct btrfs_root, root_list);
Yan, Zheng76dda932009-09-21 16:00:26 -04001101 list_del(&root->root_list);
1102
1103 if (btrfs_header_backref_rev(root->node) <
1104 BTRFS_MIXED_BACKREF_REV)
1105 btrfs_drop_snapshot(root, 0);
1106 else
1107 btrfs_drop_snapshot(root, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001108 }
1109 return 0;
1110}