blob: 94f816cb6e35d88116987e31059ce60d82de1e62 [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 Masond3c2fdc2007-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->root_item.refs == 0);
108 WARN_ON(root->commit_root != root->node);
Yan Zheng31153d82008-07-28 15:32:19 -0400109
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400110 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
111 (unsigned long)root->root_key.objectid,
112 BTRFS_ROOT_TRANS_TAG);
113 root->last_trans = trans->transid;
114 btrfs_init_reloc_root(trans, root);
Chris Mason6702ed42007-08-07 16:15:09 -0400115 }
116 return 0;
117}
118
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400119int btrfs_record_root_in_trans(struct btrfs_trans_handle *trans,
120 struct btrfs_root *root)
121{
122 if (!root->ref_cows)
123 return 0;
124
125 mutex_lock(&root->fs_info->trans_mutex);
126 if (root->last_trans == trans->transid) {
127 mutex_unlock(&root->fs_info->trans_mutex);
128 return 0;
129 }
130
131 record_root_in_trans(trans, root);
132 mutex_unlock(&root->fs_info->trans_mutex);
133 return 0;
134}
135
Chris Masond352ac62008-09-29 15:18:18 -0400136/* wait for commit against the current transaction to become unblocked
137 * when this is done, it is safe to start a new transaction, but the current
138 * transaction might not be fully on disk.
139 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400140static void wait_current_trans(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400141{
Chris Masonf9295742008-07-17 12:54:14 -0400142 struct btrfs_transaction *cur_trans;
Chris Mason79154b12007-03-22 15:59:16 -0400143
Chris Masonf9295742008-07-17 12:54:14 -0400144 cur_trans = root->fs_info->running_transaction;
Chris Mason37d1aee2008-07-31 10:48:37 -0400145 if (cur_trans && cur_trans->blocked) {
Chris Masonf9295742008-07-17 12:54:14 -0400146 DEFINE_WAIT(wait);
147 cur_trans->use_count++;
Chris Masond3977122009-01-05 21:25:51 -0500148 while (1) {
Chris Masonf9295742008-07-17 12:54:14 -0400149 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
150 TASK_UNINTERRUPTIBLE);
151 if (cur_trans->blocked) {
152 mutex_unlock(&root->fs_info->trans_mutex);
153 schedule();
154 mutex_lock(&root->fs_info->trans_mutex);
155 finish_wait(&root->fs_info->transaction_wait,
156 &wait);
157 } else {
158 finish_wait(&root->fs_info->transaction_wait,
159 &wait);
160 break;
161 }
162 }
163 put_transaction(cur_trans);
164 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400165}
166
Chris Masone02119d2008-09-05 16:13:11 -0400167static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Sage Weil9ca9ee02008-08-04 10:41:27 -0400168 int num_blocks, int wait)
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 &&
176 ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
Chris Mason37d1aee2008-07-31 10:48:37 -0400177 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400178 ret = join_transaction(root);
179 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400180
Chris Mason6702ed42007-08-07 16:15:09 -0400181 h->transid = root->fs_info->running_transaction->transid;
Chris Mason79154b12007-03-22 15:59:16 -0400182 h->transaction = root->fs_info->running_transaction;
183 h->blocks_reserved = num_blocks;
184 h->blocks_used = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500185 h->block_group = 0;
Chris Mason26b80032007-08-08 20:17:12 -0400186 h->alloc_exclude_nr = 0;
187 h->alloc_exclude_start = 0;
Chris Mason56bec292009-03-13 10:10:06 -0400188 h->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400189
Chris Mason79154b12007-03-22 15:59:16 -0400190 root->fs_info->running_transaction->use_count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400191 record_root_in_trans(h, root);
Chris Mason79154b12007-03-22 15:59:16 -0400192 mutex_unlock(&root->fs_info->trans_mutex);
193 return h;
194}
195
Chris Masonf9295742008-07-17 12:54:14 -0400196struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
197 int num_blocks)
198{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400199 return start_transaction(root, num_blocks, 1);
Chris Masonf9295742008-07-17 12:54:14 -0400200}
201struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
202 int num_blocks)
203{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400204 return start_transaction(root, num_blocks, 0);
Chris Masonf9295742008-07-17 12:54:14 -0400205}
206
Sage Weil9ca9ee02008-08-04 10:41:27 -0400207struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
208 int num_blocks)
209{
210 return start_transaction(r, num_blocks, 2);
211}
212
Chris Masond352ac62008-09-29 15:18:18 -0400213/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400214static noinline int wait_for_commit(struct btrfs_root *root,
215 struct btrfs_transaction *commit)
216{
217 DEFINE_WAIT(wait);
218 mutex_lock(&root->fs_info->trans_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500219 while (!commit->commit_done) {
Chris Mason89ce8a62008-06-25 16:01:31 -0400220 prepare_to_wait(&commit->commit_wait, &wait,
221 TASK_UNINTERRUPTIBLE);
222 if (commit->commit_done)
223 break;
224 mutex_unlock(&root->fs_info->trans_mutex);
225 schedule();
226 mutex_lock(&root->fs_info->trans_mutex);
227 }
228 mutex_unlock(&root->fs_info->trans_mutex);
229 finish_wait(&commit->commit_wait, &wait);
230 return 0;
231}
232
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400233#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400234/*
Chris Masond3977122009-01-05 21:25:51 -0500235 * rate limit against the drop_snapshot code. This helps to slow down new
236 * operations if the drop_snapshot code isn't able to keep up.
Chris Masond352ac62008-09-29 15:18:18 -0400237 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400238static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400239{
240 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400241 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400242
Chris Mason2dd3e672008-08-04 08:20:15 -0400243harder:
Chris Masonab78c842008-07-29 16:15:18 -0400244 if (atomic_read(&info->throttles)) {
245 DEFINE_WAIT(wait);
246 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400247 thr = atomic_read(&info->throttle_gen);
248
249 do {
250 prepare_to_wait(&info->transaction_throttle,
251 &wait, TASK_UNINTERRUPTIBLE);
252 if (!atomic_read(&info->throttles)) {
253 finish_wait(&info->transaction_throttle, &wait);
254 break;
255 }
256 schedule();
257 finish_wait(&info->transaction_throttle, &wait);
258 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400259 harder_count++;
260
261 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
262 harder_count < 2)
263 goto harder;
264
265 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
266 harder_count < 10)
267 goto harder;
268
269 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
270 harder_count < 20)
271 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400272 }
273}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400274#endif
Chris Masonab78c842008-07-29 16:15:18 -0400275
Chris Mason37d1aee2008-07-31 10:48:37 -0400276void btrfs_throttle(struct btrfs_root *root)
277{
278 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400279 if (!root->fs_info->open_ioctl_trans)
280 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400281 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason37d1aee2008-07-31 10:48:37 -0400282}
283
Chris Mason89ce8a62008-06-25 16:01:31 -0400284static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
285 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400286{
287 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400288 struct btrfs_fs_info *info = root->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -0400289 int count = 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400290
Chris Masonc3e69d52009-03-13 10:17:05 -0400291 while (count < 4) {
292 unsigned long cur = trans->delayed_ref_updates;
293 trans->delayed_ref_updates = 0;
294 if (cur &&
295 trans->transaction->delayed_refs.num_heads_ready > 64) {
296 trans->delayed_ref_updates = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -0400297
298 /*
299 * do a full flush if the transaction is trying
300 * to close
301 */
302 if (trans->transaction->delayed_refs.flushing)
303 cur = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -0400304 btrfs_run_delayed_refs(trans, root, cur);
305 } else {
306 break;
307 }
308 count++;
Chris Mason56bec292009-03-13 10:10:06 -0400309 }
310
Chris Masonab78c842008-07-29 16:15:18 -0400311 mutex_lock(&info->trans_mutex);
312 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400313 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400314 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400315 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400316
Chris Mason79154b12007-03-22 15:59:16 -0400317 if (waitqueue_active(&cur_trans->writer_wait))
318 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400319 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400320 mutex_unlock(&info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400321 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400322 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400323
Chris Mason79154b12007-03-22 15:59:16 -0400324 return 0;
325}
326
Chris Mason89ce8a62008-06-25 16:01:31 -0400327int btrfs_end_transaction(struct btrfs_trans_handle *trans,
328 struct btrfs_root *root)
329{
330 return __btrfs_end_transaction(trans, root, 0);
331}
332
333int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
334 struct btrfs_root *root)
335{
336 return __btrfs_end_transaction(trans, root, 1);
337}
338
Chris Masond352ac62008-09-29 15:18:18 -0400339/*
340 * when btree blocks are allocated, they have some corresponding bits set for
341 * them in one of two extent_io trees. This is used to make sure all of
342 * those extents are on disk for transaction or log commit
343 */
Chris Masond0c803c2008-09-11 16:17:57 -0400344int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
345 struct extent_io_tree *dirty_pages)
Chris Mason79154b12007-03-22 15:59:16 -0400346{
Chris Mason7c4452b2007-04-28 09:29:35 -0400347 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400348 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400349 int werr = 0;
350 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400351 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400352 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400353 u64 end;
354 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400355
Chris Masond3977122009-01-05 21:25:51 -0500356 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400357 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Chris Mason5f39d392007-10-15 16:14:19 -0400358 EXTENT_DIRTY);
359 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400360 break;
Chris Masond3977122009-01-05 21:25:51 -0500361 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400362 cond_resched();
363
Chris Mason5f39d392007-10-15 16:14:19 -0400364 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400365 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400366 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400367 if (!page)
368 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400369
370 btree_lock_page_hook(page);
371 if (!page->mapping) {
372 unlock_page(page);
373 page_cache_release(page);
374 continue;
375 }
376
Chris Mason6702ed42007-08-07 16:15:09 -0400377 if (PageWriteback(page)) {
378 if (PageDirty(page))
379 wait_on_page_writeback(page);
380 else {
381 unlock_page(page);
382 page_cache_release(page);
383 continue;
384 }
385 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400386 err = write_one_page(page, 0);
387 if (err)
388 werr = err;
389 page_cache_release(page);
390 }
391 }
Chris Masond3977122009-01-05 21:25:51 -0500392 while (1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400393 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
394 EXTENT_DIRTY);
395 if (ret)
396 break;
397
398 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500399 while (start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400400 index = start >> PAGE_CACHE_SHIFT;
401 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
402 page = find_get_page(btree_inode->i_mapping, index);
403 if (!page)
404 continue;
405 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400406 btree_lock_page_hook(page);
407 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400408 err = write_one_page(page, 0);
409 if (err)
410 werr = err;
411 }
Chris Mason105d9312008-11-18 12:13:12 -0500412 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400413 page_cache_release(page);
414 cond_resched();
415 }
416 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400417 if (err)
418 werr = err;
419 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400420}
421
Chris Masond0c803c2008-09-11 16:17:57 -0400422int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
423 struct btrfs_root *root)
424{
425 if (!trans || !trans->transaction) {
426 struct inode *btree_inode;
427 btree_inode = root->fs_info->btree_inode;
428 return filemap_write_and_wait(btree_inode->i_mapping);
429 }
430 return btrfs_write_and_wait_marked_extents(root,
431 &trans->transaction->dirty_pages);
432}
433
Chris Masond352ac62008-09-29 15:18:18 -0400434/*
435 * this is used to update the root pointer in the tree of tree roots.
436 *
437 * But, in the case of the extent allocation tree, updating the root
438 * pointer may allocate blocks which may change the root of the extent
439 * allocation tree.
440 *
441 * So, this loops and repeats and makes sure the cowonly root didn't
442 * change while the root pointer was being updated in the metadata.
443 */
Chris Mason0b86a832008-03-24 15:01:56 -0400444static int update_cowonly_root(struct btrfs_trans_handle *trans,
445 struct btrfs_root *root)
446{
447 int ret;
448 u64 old_root_bytenr;
449 struct btrfs_root *tree_root = root->fs_info->tree_root;
450
451 btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400452
Chris Masond3977122009-01-05 21:25:51 -0500453 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -0400454 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
455 if (old_root_bytenr == root->node->start)
456 break;
Chris Mason87ef2bb2008-10-30 11:23:27 -0400457
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400458 btrfs_set_root_node(&root->root_item, root->node);
Chris Mason0b86a832008-03-24 15:01:56 -0400459 ret = btrfs_update_root(trans, tree_root,
460 &root->root_key,
461 &root->root_item);
462 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -0400463
Yan Zheng4a8c9a62009-07-22 10:07:05 -0400464 ret = btrfs_write_dirty_block_groups(trans, root);
Chris Mason56bec292009-03-13 10:10:06 -0400465 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400466 }
Yan Zheng276e6802009-07-30 09:40:40 -0400467
468 if (root != root->fs_info->extent_root)
469 switch_commit_root(root);
470
Chris Mason0b86a832008-03-24 15:01:56 -0400471 return 0;
472}
473
Chris Masond352ac62008-09-29 15:18:18 -0400474/*
475 * update all the cowonly tree roots on disk
476 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400477static noinline int commit_cowonly_roots(struct btrfs_trans_handle *trans,
478 struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -0400479{
Chris Mason79154b12007-03-22 15:59:16 -0400480 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400481 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400482 struct extent_buffer *eb;
Chris Mason56bec292009-03-13 10:10:06 -0400483 int ret;
Yan Zheng84234f32008-10-29 14:49:05 -0400484
Chris Mason56bec292009-03-13 10:10:06 -0400485 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
486 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400487
Yan Zheng84234f32008-10-29 14:49:05 -0400488 eb = btrfs_lock_root_node(fs_info->tree_root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400489 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
Yan Zheng84234f32008-10-29 14:49:05 -0400490 btrfs_tree_unlock(eb);
491 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400492
Chris Mason56bec292009-03-13 10:10:06 -0400493 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
494 BUG_ON(ret);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400495
Chris Masond3977122009-01-05 21:25:51 -0500496 while (!list_empty(&fs_info->dirty_cowonly_roots)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400497 next = fs_info->dirty_cowonly_roots.next;
498 list_del_init(next);
499 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400500
Chris Mason0b86a832008-03-24 15:01:56 -0400501 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400502 }
Yan Zheng276e6802009-07-30 09:40:40 -0400503
504 down_write(&fs_info->extent_commit_sem);
505 switch_commit_root(fs_info->extent_root);
506 up_write(&fs_info->extent_commit_sem);
507
Chris Mason79154b12007-03-22 15:59:16 -0400508 return 0;
509}
510
Chris Masond352ac62008-09-29 15:18:18 -0400511/*
512 * dead roots are old snapshots that need to be deleted. This allocates
513 * a dirty root struct and adds it into the list of dead roots that need to
514 * be deleted
515 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400516int btrfs_add_dead_root(struct btrfs_root *root)
Chris Mason5eda7b52007-06-22 14:16:25 -0400517{
Yan Zhengb48652c2008-08-04 23:23:47 -0400518 mutex_lock(&root->fs_info->trans_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400519 list_add(&root->root_list, &root->fs_info->dead_roots);
Yan Zhengb48652c2008-08-04 23:23:47 -0400520 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400521 return 0;
522}
523
Chris Masond352ac62008-09-29 15:18:18 -0400524/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400525 * update all the cowonly tree roots on disk
Chris Masond352ac62008-09-29 15:18:18 -0400526 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400527static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
528 struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400529{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400530 struct btrfs_root *gang[8];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400531 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400532 int i;
533 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400534 int err = 0;
535
Chris Masond3977122009-01-05 21:25:51 -0500536 while (1) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400537 ret = radix_tree_gang_lookup_tag(&fs_info->fs_roots_radix,
538 (void **)gang, 0,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400539 ARRAY_SIZE(gang),
540 BTRFS_ROOT_TRANS_TAG);
541 if (ret == 0)
542 break;
543 for (i = 0; i < ret; i++) {
544 root = gang[i];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400545 radix_tree_tag_clear(&fs_info->fs_roots_radix,
546 (unsigned long)root->root_key.objectid,
547 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400548
Chris Masone02119d2008-09-05 16:13:11 -0400549 btrfs_free_log(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400550 btrfs_update_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400551
Yan Zheng978d9102009-06-15 20:01:02 -0400552 if (root->commit_root != root->node) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400553 switch_commit_root(root);
Yan Zheng978d9102009-06-15 20:01:02 -0400554 btrfs_set_root_node(&root->root_item,
555 root->node);
556 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400557
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400558 err = btrfs_update_root(trans, fs_info->tree_root,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400559 &root->root_key,
560 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400561 if (err)
562 break;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400563 }
564 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400565 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400566}
567
Chris Masond352ac62008-09-29 15:18:18 -0400568/*
569 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
570 * otherwise every leaf in the btree is read and defragged.
571 */
Chris Masone9d0b132007-08-10 14:06:19 -0400572int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
573{
574 struct btrfs_fs_info *info = root->fs_info;
575 int ret;
576 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400577 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400578
Chris Masona2135012008-06-25 16:01:30 -0400579 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400580 if (root->defrag_running)
581 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400582 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400583 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400584 root->defrag_running = 1;
585 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400586 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400587 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400588 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400589 cond_resched();
590
Chris Masone9d0b132007-08-10 14:06:19 -0400591 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400592 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400593 break;
594 }
595 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400596 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400597 btrfs_end_transaction(trans, root);
598 return 0;
599}
600
Yan Zheng2c47e6052009-06-27 21:07:35 -0400601#if 0
Chris Masond352ac62008-09-29 15:18:18 -0400602/*
Chris Masonb7ec40d2009-03-12 20:12:45 -0400603 * when dropping snapshots, we generate a ton of delayed refs, and it makes
604 * sense not to join the transaction while it is trying to flush the current
605 * queue of delayed refs out.
606 *
607 * This is used by the drop snapshot code only
608 */
609static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info)
610{
611 DEFINE_WAIT(wait);
612
613 mutex_lock(&info->trans_mutex);
614 while (info->running_transaction &&
615 info->running_transaction->delayed_refs.flushing) {
616 prepare_to_wait(&info->transaction_wait, &wait,
617 TASK_UNINTERRUPTIBLE);
618 mutex_unlock(&info->trans_mutex);
Chris Mason59bc5c72009-04-24 14:39:25 -0400619
Chris Masonb7ec40d2009-03-12 20:12:45 -0400620 schedule();
Chris Mason59bc5c72009-04-24 14:39:25 -0400621
Chris Masonb7ec40d2009-03-12 20:12:45 -0400622 mutex_lock(&info->trans_mutex);
623 finish_wait(&info->transaction_wait, &wait);
624 }
625 mutex_unlock(&info->trans_mutex);
626 return 0;
627}
628
629/*
Chris Masond352ac62008-09-29 15:18:18 -0400630 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
631 * all of them
632 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400633int btrfs_drop_dead_root(struct btrfs_root *root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400634{
Chris Mason0f7d52f2007-04-09 10:42:37 -0400635 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400636 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Masond3c2fdc2007-09-17 10:58:06 -0400637 unsigned long nr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400638 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -0400639
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400640 while (1) {
641 /*
642 * we don't want to jump in and create a bunch of
643 * delayed refs if the transaction is starting to close
644 */
645 wait_transaction_pre_flush(tree_root->fs_info);
646 trans = btrfs_start_transaction(tree_root, 1);
Josef Bacik58176a92007-08-29 15:47:34 -0400647
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400648 /*
649 * we've joined a transaction, make sure it isn't
650 * closing right now
651 */
652 if (trans->transaction->delayed_refs.flushing) {
653 btrfs_end_transaction(trans, tree_root);
654 continue;
Josef Bacik58176a92007-08-29 15:47:34 -0400655 }
Chris Masona2135012008-06-25 16:01:30 -0400656
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400657 ret = btrfs_drop_snapshot(trans, root);
658 if (ret != -EAGAIN)
Chris Mason54aa1f42007-06-22 14:16:25 -0400659 break;
Chris Masona2135012008-06-25 16:01:30 -0400660
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400661 ret = btrfs_update_root(trans, tree_root,
662 &root->root_key,
663 &root->root_item);
664 if (ret)
665 break;
Yanbcc63ab2008-07-30 16:29:20 -0400666
Chris Masond3c2fdc2007-09-17 10:58:06 -0400667 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400668 ret = btrfs_end_transaction(trans, tree_root);
669 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400670
Chris Masond3c2fdc2007-09-17 10:58:06 -0400671 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc11902007-10-15 16:18:14 -0400672 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400673 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400674 BUG_ON(ret);
675
676 ret = btrfs_del_root(trans, tree_root, &root->root_key);
677 BUG_ON(ret);
678
679 nr = trans->blocks_used;
680 ret = btrfs_end_transaction(trans, tree_root);
681 BUG_ON(ret);
682
683 free_extent_buffer(root->node);
684 free_extent_buffer(root->commit_root);
685 kfree(root);
686
687 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -0400688 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400689}
Yan Zheng2c47e6052009-06-27 21:07:35 -0400690#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400691
Chris Masond352ac62008-09-29 15:18:18 -0400692/*
693 * new snapshots need to be created at a very specific time in the
694 * transaction commit. This does the actual creation
695 */
Chris Mason80b67942008-02-01 16:35:04 -0500696static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500697 struct btrfs_fs_info *fs_info,
698 struct btrfs_pending_snapshot *pending)
699{
700 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500701 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500702 struct btrfs_root *tree_root = fs_info->tree_root;
703 struct btrfs_root *root = pending->root;
704 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400705 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500706 int ret;
707 u64 objectid;
708
Chris Mason80b67942008-02-01 16:35:04 -0500709 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
710 if (!new_root_item) {
711 ret = -ENOMEM;
712 goto fail;
713 }
Chris Mason3063d292008-01-08 15:46:30 -0500714 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
715 if (ret)
716 goto fail;
717
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400718 record_root_in_trans(trans, root);
Yan Zheng80ff3852008-10-30 14:20:02 -0400719 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500720 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500721
722 key.objectid = objectid;
Yan, Zheng1c4850e2009-09-21 15:55:59 -0400723 /* record when the snapshot was created in key.offset */
724 key.offset = trans->transid;
Chris Mason3063d292008-01-08 15:46:30 -0500725 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
726
Chris Mason925baed2008-06-25 16:01:30 -0400727 old = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400728 btrfs_cow_block(trans, root, old, NULL, 0, &old);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400729 btrfs_set_lock_blocking(old);
Chris Mason3063d292008-01-08 15:46:30 -0500730
Chris Mason925baed2008-06-25 16:01:30 -0400731 btrfs_copy_root(trans, root, old, &tmp, objectid);
732 btrfs_tree_unlock(old);
733 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500734
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400735 btrfs_set_root_node(new_root_item, tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500736 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500737 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400738 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500739 free_extent_buffer(tmp);
740 if (ret)
741 goto fail;
742
Chris Mason3de45862008-11-17 21:02:50 -0500743 key.offset = (u64)-1;
744 memcpy(&pending->root_key, &key, sizeof(key));
745fail:
746 kfree(new_root_item);
747 return ret;
748}
749
750static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
751 struct btrfs_pending_snapshot *pending)
752{
753 int ret;
754 int namelen;
755 u64 index = 0;
756 struct btrfs_trans_handle *trans;
757 struct inode *parent_inode;
758 struct inode *inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500759 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500760
Chris Mason3394e162008-11-17 20:42:26 -0500761 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500762 parent_root = BTRFS_I(parent_inode)->root;
Yan Zheng180591b2009-01-06 09:58:06 -0500763 trans = btrfs_join_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500764
Chris Mason3063d292008-01-08 15:46:30 -0500765 /*
766 * insert the directory item
767 */
Sven Wegener3b963622008-06-09 21:57:42 -0400768 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500769 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500770 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500771 pending->name, namelen,
772 parent_inode->i_ino,
773 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500774
775 if (ret)
776 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500777
Yan Zheng52c26172009-01-05 15:43:43 -0500778 btrfs_i_size_write(parent_inode, parent_inode->i_size + namelen * 2);
779 ret = btrfs_update_inode(trans, parent_root, parent_inode);
780 BUG_ON(ret);
781
Chris Mason0660b5a2008-11-17 20:37:39 -0500782 /* add the backref first */
783 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
784 pending->root_key.objectid,
785 BTRFS_ROOT_BACKREF_KEY,
786 parent_root->root_key.objectid,
787 parent_inode->i_ino, index, pending->name,
788 namelen);
789
790 BUG_ON(ret);
791
792 /* now add the forward ref */
793 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
794 parent_root->root_key.objectid,
795 BTRFS_ROOT_REF_KEY,
796 pending->root_key.objectid,
797 parent_inode->i_ino, index, pending->name,
798 namelen);
799
Chris Mason3de45862008-11-17 21:02:50 -0500800 inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
801 d_instantiate(pending->dentry, inode);
Chris Mason3063d292008-01-08 15:46:30 -0500802fail:
Chris Mason3de45862008-11-17 21:02:50 -0500803 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500804 return ret;
805}
806
Chris Masond352ac62008-09-29 15:18:18 -0400807/*
808 * create all the snapshots we've scheduled for creation
809 */
Chris Mason80b67942008-02-01 16:35:04 -0500810static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
811 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500812{
813 struct btrfs_pending_snapshot *pending;
814 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500815 int ret;
816
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500817 list_for_each_entry(pending, head, list) {
Chris Mason3de45862008-11-17 21:02:50 -0500818 ret = create_pending_snapshot(trans, fs_info, pending);
819 BUG_ON(ret);
820 }
821 return 0;
822}
823
824static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
825 struct btrfs_fs_info *fs_info)
826{
827 struct btrfs_pending_snapshot *pending;
828 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500829 int ret;
830
Chris Masond3977122009-01-05 21:25:51 -0500831 while (!list_empty(head)) {
Chris Mason3063d292008-01-08 15:46:30 -0500832 pending = list_entry(head->next,
833 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500834 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500835 BUG_ON(ret);
836 list_del(&pending->list);
837 kfree(pending->name);
838 kfree(pending);
839 }
Chris Masondc17ff82008-01-08 15:46:30 -0500840 return 0;
841}
842
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400843static void update_super_roots(struct btrfs_root *root)
844{
845 struct btrfs_root_item *root_item;
846 struct btrfs_super_block *super;
847
848 super = &root->fs_info->super_copy;
849
850 root_item = &root->fs_info->chunk_root->root_item;
851 super->chunk_root = root_item->bytenr;
852 super->chunk_root_generation = root_item->generation;
853 super->chunk_root_level = root_item->level;
854
855 root_item = &root->fs_info->tree_root->root_item;
856 super->root = root_item->bytenr;
857 super->generation = root_item->generation;
858 super->root_level = root_item->level;
859}
860
Chris Masonf36f3042009-07-30 10:04:48 -0400861int btrfs_transaction_in_commit(struct btrfs_fs_info *info)
862{
863 int ret = 0;
864 spin_lock(&info->new_trans_lock);
865 if (info->running_transaction)
866 ret = info->running_transaction->in_commit;
867 spin_unlock(&info->new_trans_lock);
868 return ret;
869}
870
Chris Mason79154b12007-03-22 15:59:16 -0400871int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
872 struct btrfs_root *root)
873{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400874 unsigned long joined = 0;
875 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400876 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400877 struct btrfs_transaction *prev_trans = NULL;
Chris Mason79154b12007-03-22 15:59:16 -0400878 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400879 int ret;
Chris Mason89573b92009-03-12 20:12:45 -0400880 int should_grow = 0;
881 unsigned long now = get_seconds();
Sage Weildccae992009-04-02 16:59:01 -0400882 int flush_on_commit = btrfs_test_opt(root, FLUSHONCOMMIT);
Chris Mason79154b12007-03-22 15:59:16 -0400883
Chris Mason5a3f23d2009-03-31 13:27:11 -0400884 btrfs_run_ordered_operations(root, 0);
885
Chris Mason56bec292009-03-13 10:10:06 -0400886 /* make a pass through all the delayed refs we have so far
887 * any runnings procs may add more while we are here
888 */
889 ret = btrfs_run_delayed_refs(trans, root, 0);
890 BUG_ON(ret);
891
Chris Masonb7ec40d2009-03-12 20:12:45 -0400892 cur_trans = trans->transaction;
Chris Mason56bec292009-03-13 10:10:06 -0400893 /*
894 * set the flushing flag so procs in this transaction have to
895 * start sending their work down.
896 */
Chris Masonb7ec40d2009-03-12 20:12:45 -0400897 cur_trans->delayed_refs.flushing = 1;
Chris Mason56bec292009-03-13 10:10:06 -0400898
Chris Masonc3e69d52009-03-13 10:17:05 -0400899 ret = btrfs_run_delayed_refs(trans, root, 0);
Chris Mason56bec292009-03-13 10:10:06 -0400900 BUG_ON(ret);
901
Chris Mason79154b12007-03-22 15:59:16 -0400902 mutex_lock(&root->fs_info->trans_mutex);
Chris Masonb7ec40d2009-03-12 20:12:45 -0400903 if (cur_trans->in_commit) {
904 cur_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400905 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400906 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400907
Chris Mason79154b12007-03-22 15:59:16 -0400908 ret = wait_for_commit(root, cur_trans);
909 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400910
911 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400912 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400913 mutex_unlock(&root->fs_info->trans_mutex);
914
Chris Mason79154b12007-03-22 15:59:16 -0400915 return 0;
916 }
Chris Mason4313b392008-01-03 09:08:48 -0500917
Chris Mason2c90e5d2007-04-02 10:50:19 -0400918 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400919 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400920 if (cur_trans->list.prev != &root->fs_info->trans_list) {
921 prev_trans = list_entry(cur_trans->list.prev,
922 struct btrfs_transaction, list);
923 if (!prev_trans->commit_done) {
924 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400925 mutex_unlock(&root->fs_info->trans_mutex);
926
927 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400928
Chris Masonccd467d2007-06-28 15:57:36 -0400929 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400930 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400931 }
932 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400933
Chris Mason89573b92009-03-12 20:12:45 -0400934 if (now < cur_trans->start_time || now - cur_trans->start_time < 1)
935 should_grow = 1;
936
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400937 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400938 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400939 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400940 if (!list_empty(&trans->transaction->pending_snapshots))
941 snap_pending = 1;
942
Chris Mason2c90e5d2007-04-02 10:50:19 -0400943 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400944 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400945 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400946
947 if (cur_trans->num_writers > 1)
948 timeout = MAX_SCHEDULE_TIMEOUT;
Chris Mason89573b92009-03-12 20:12:45 -0400949 else if (should_grow)
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400950 timeout = 1;
951
Chris Mason79154b12007-03-22 15:59:16 -0400952 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400953
Sage Weilebecd3d2009-07-24 13:17:44 -0400954 if (flush_on_commit) {
955 btrfs_start_delalloc_inodes(root);
956 ret = btrfs_wait_ordered_extents(root, 0);
957 BUG_ON(ret);
958 } else if (snap_pending) {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400959 ret = btrfs_wait_ordered_extents(root, 1);
960 BUG_ON(ret);
961 }
962
Chris Mason5a3f23d2009-03-31 13:27:11 -0400963 /*
964 * rename don't use btrfs_join_transaction, so, once we
965 * set the transaction to blocked above, we aren't going
966 * to get any new ordered operations. We can safely run
967 * it here and no for sure that nothing new will be added
968 * to the list
969 */
970 btrfs_run_ordered_operations(root, 1);
971
Chris Mason89573b92009-03-12 20:12:45 -0400972 smp_mb();
973 if (cur_trans->num_writers > 1 || should_grow)
974 schedule_timeout(timeout);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400975
Chris Mason79154b12007-03-22 15:59:16 -0400976 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400977 finish_wait(&cur_trans->writer_wait, &wait);
978 } while (cur_trans->num_writers > 1 ||
Chris Mason89573b92009-03-12 20:12:45 -0400979 (should_grow && cur_trans->num_joined != joined));
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400980
Chris Mason3063d292008-01-08 15:46:30 -0500981 ret = create_pending_snapshots(trans, root->fs_info);
982 BUG_ON(ret);
983
Chris Mason56bec292009-03-13 10:10:06 -0400984 ret = btrfs_run_delayed_refs(trans, root, (unsigned long)-1);
985 BUG_ON(ret);
986
Chris Mason2c90e5d2007-04-02 10:50:19 -0400987 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500988
Chris Masone02119d2008-09-05 16:13:11 -0400989 /* btrfs_commit_tree_roots is responsible for getting the
990 * various roots consistent with each other. Every pointer
991 * in the tree of tree roots has to point to the most up to date
992 * root for every subvolume and other tree. So, we have to keep
993 * the tree logging code from jumping in and changing any
994 * of the trees.
995 *
996 * At this point in the commit, there can't be any tree-log
997 * writers, but a little lower down we drop the trans mutex
998 * and let new people in. By holding the tree_log_mutex
999 * from now until after the super is written, we avoid races
1000 * with the tree-log code.
1001 */
1002 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04001003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 ret = commit_fs_roots(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001005 BUG_ON(ret);
1006
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001007 /* commit_fs_roots gets rid of all the tree log roots, it is now
Chris Masone02119d2008-09-05 16:13:11 -04001008 * safe to free the root of tree log roots
1009 */
1010 btrfs_free_log_root_tree(trans, root->fs_info);
1011
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012 ret = commit_cowonly_roots(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -04001013 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001014
Yan Zheng11833d62009-09-11 16:11:19 -04001015 btrfs_prepare_extent_commit(trans, root);
1016
Chris Mason78fae272007-03-25 11:35:08 -04001017 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001018 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001019 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001020 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04001021
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001022 btrfs_set_root_node(&root->fs_info->tree_root->root_item,
1023 root->fs_info->tree_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001024 switch_commit_root(root->fs_info->tree_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001025
1026 btrfs_set_root_node(&root->fs_info->chunk_root->root_item,
1027 root->fs_info->chunk_root->node);
Josef Bacik817d52f2009-07-13 21:29:25 -04001028 switch_commit_root(root->fs_info->chunk_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029
1030 update_super_roots(root);
Chris Masone02119d2008-09-05 16:13:11 -04001031
1032 if (!root->fs_info->log_root_recovering) {
1033 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1034 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1035 }
1036
Chris Masona061fc82008-05-07 11:43:44 -04001037 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1038 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001039
Chris Masonf9295742008-07-17 12:54:14 -04001040 trans->transaction->blocked = 0;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001041
Chris Masonf9295742008-07-17 12:54:14 -04001042 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001043
Chris Mason78fae272007-03-25 11:35:08 -04001044 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001045 ret = btrfs_write_and_wait_transaction(trans, root);
1046 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001047 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001048
Chris Masone02119d2008-09-05 16:13:11 -04001049 /*
1050 * the super is written, we can safely allow the tree-loggers
1051 * to go about their business
1052 */
1053 mutex_unlock(&root->fs_info->tree_log_mutex);
1054
Yan Zheng11833d62009-09-11 16:11:19 -04001055 btrfs_finish_extent_commit(trans, root);
Chris Mason4313b392008-01-03 09:08:48 -05001056
Chris Mason3de45862008-11-17 21:02:50 -05001057 /* do the directory inserts of any pending snapshot creations */
1058 finish_pending_snapshots(trans, root->fs_info);
1059
Zheng Yan1a40e232008-09-26 10:09:34 -04001060 mutex_lock(&root->fs_info->trans_mutex);
1061
Chris Mason2c90e5d2007-04-02 10:50:19 -04001062 cur_trans->commit_done = 1;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001063
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001064 root->fs_info->last_trans_committed = cur_trans->transid;
Josef Bacik817d52f2009-07-13 21:29:25 -04001065
Chris Mason2c90e5d2007-04-02 10:50:19 -04001066 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001067
Chris Mason79154b12007-03-22 15:59:16 -04001068 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001069 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001070
Chris Mason78fae272007-03-25 11:35:08 -04001071 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason3de45862008-11-17 21:02:50 -05001072
Chris Mason2c90e5d2007-04-02 10:50:19 -04001073 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Mason79154b12007-03-22 15:59:16 -04001074 return ret;
1075}
1076
Chris Masond352ac62008-09-29 15:18:18 -04001077/*
1078 * interface function to delete all the snapshots we have scheduled for deletion
1079 */
Chris Masone9d0b132007-08-10 14:06:19 -04001080int btrfs_clean_old_snapshots(struct btrfs_root *root)
1081{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001082 LIST_HEAD(list);
1083 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone9d0b132007-08-10 14:06:19 -04001084
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001085 mutex_lock(&fs_info->trans_mutex);
1086 list_splice_init(&fs_info->dead_roots, &list);
1087 mutex_unlock(&fs_info->trans_mutex);
1088
1089 while (!list_empty(&list)) {
1090 root = list_entry(list.next, struct btrfs_root, root_list);
1091 list_del_init(&root->root_list);
Yan Zheng2c47e6052009-06-27 21:07:35 -04001092 btrfs_drop_snapshot(root, 0);
Chris Masone9d0b132007-08-10 14:06:19 -04001093 }
1094 return 0;
1095}