blob: 4604178a43a9d829bd02b36fdae5679f43da9887 [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"
Yan Zheng31153d82008-07-28 15:32:19 -040028#include "ref-cache.h"
Chris Masone02119d2008-09-05 16:13:11 -040029#include "tree-log.h"
Chris Mason79154b12007-03-22 15:59:16 -040030
Chris Mason2c90e5d2007-04-02 10:50:19 -040031extern struct kmem_cache *btrfs_trans_handle_cachep;
32extern struct kmem_cache *btrfs_transaction_cachep;
33
Chris Mason0f7d52f2007-04-09 10:42:37 -040034#define BTRFS_ROOT_TRANS_TAG 0
35
Chris Mason80b67942008-02-01 16:35:04 -050036static noinline void put_transaction(struct btrfs_transaction *transaction)
Chris Mason79154b12007-03-22 15:59:16 -040037{
Chris Mason2c90e5d2007-04-02 10:50:19 -040038 WARN_ON(transaction->use_count == 0);
Chris Mason79154b12007-03-22 15:59:16 -040039 transaction->use_count--;
Chris Mason78fae272007-03-25 11:35:08 -040040 if (transaction->use_count == 0) {
Chris Mason8fd17792007-04-19 21:01:03 -040041 list_del_init(&transaction->list);
Chris Mason2c90e5d2007-04-02 10:50:19 -040042 memset(transaction, 0, sizeof(*transaction));
43 kmem_cache_free(btrfs_transaction_cachep, transaction);
Chris Mason78fae272007-03-25 11:35:08 -040044 }
Chris Mason79154b12007-03-22 15:59:16 -040045}
46
Chris Masond352ac62008-09-29 15:18:18 -040047/*
48 * either allocate a new transaction or hop into the existing one
49 */
Chris Mason80b67942008-02-01 16:35:04 -050050static noinline int join_transaction(struct btrfs_root *root)
Chris Mason79154b12007-03-22 15:59:16 -040051{
52 struct btrfs_transaction *cur_trans;
53 cur_trans = root->fs_info->running_transaction;
54 if (!cur_trans) {
Chris Mason2c90e5d2007-04-02 10:50:19 -040055 cur_trans = kmem_cache_alloc(btrfs_transaction_cachep,
56 GFP_NOFS);
Chris Mason79154b12007-03-22 15:59:16 -040057 BUG_ON(!cur_trans);
Chris Mason0f7d52f2007-04-09 10:42:37 -040058 root->fs_info->generation++;
Chris Masone18e4802008-01-18 10:54:22 -050059 root->fs_info->last_alloc = 0;
Chris Mason4529ba42008-01-31 16:45:07 -050060 root->fs_info->last_data_alloc = 0;
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 Mason3063d292008-01-08 15:46:30 -050071 INIT_LIST_HEAD(&cur_trans->pending_snapshots);
Chris Mason8fd17792007-04-19 21:01:03 -040072 list_add_tail(&cur_trans->list, &root->fs_info->trans_list);
Chris Masond1310b22008-01-24 16:13:08 -050073 extent_io_tree_init(&cur_trans->dirty_pages,
Chris Mason5f39d392007-10-15 16:14:19 -040074 root->fs_info->btree_inode->i_mapping,
75 GFP_NOFS);
Chris Mason48ec2cf2008-06-09 09:35:50 -040076 spin_lock(&root->fs_info->new_trans_lock);
77 root->fs_info->running_transaction = cur_trans;
78 spin_unlock(&root->fs_info->new_trans_lock);
Josef Bacik15ee9bc2007-08-10 16:22:09 -040079 } else {
80 cur_trans->num_writers++;
81 cur_trans->num_joined++;
Chris Mason79154b12007-03-22 15:59:16 -040082 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -040083
Chris Mason79154b12007-03-22 15:59:16 -040084 return 0;
85}
86
Chris Masond352ac62008-09-29 15:18:18 -040087/*
88 * this does all the record keeping required to make sure that a
89 * reference counted root is properly recorded in a given transaction.
90 * This is required to make sure the old root from before we joined the transaction
91 * is deleted when the transaction commits
92 */
Chris Masone02119d2008-09-05 16:13:11 -040093noinline int btrfs_record_root_in_trans(struct btrfs_root *root)
Chris Mason6702ed42007-08-07 16:15:09 -040094{
Yan Zhengf321e492008-07-30 09:26:11 -040095 struct btrfs_dirty_root *dirty;
Chris Mason6702ed42007-08-07 16:15:09 -040096 u64 running_trans_id = root->fs_info->running_transaction->transid;
97 if (root->ref_cows && root->last_trans < running_trans_id) {
98 WARN_ON(root == root->fs_info->extent_root);
99 if (root->root_item.refs != 0) {
100 radix_tree_tag_set(&root->fs_info->fs_roots_radix,
101 (unsigned long)root->root_key.objectid,
102 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400103
104 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
105 BUG_ON(!dirty);
106 dirty->root = kmalloc(sizeof(*dirty->root), GFP_NOFS);
107 BUG_ON(!dirty->root);
Yan Zheng31153d82008-07-28 15:32:19 -0400108 dirty->latest_root = root;
109 INIT_LIST_HEAD(&dirty->list);
Yan Zheng31153d82008-07-28 15:32:19 -0400110
Chris Mason925baed2008-06-25 16:01:30 -0400111 root->commit_root = btrfs_root_node(root);
Yan Zheng31153d82008-07-28 15:32:19 -0400112
113 memcpy(dirty->root, root, sizeof(*root));
114 spin_lock_init(&dirty->root->node_lock);
Yanbcc63ab2008-07-30 16:29:20 -0400115 spin_lock_init(&dirty->root->list_lock);
Yan Zheng31153d82008-07-28 15:32:19 -0400116 mutex_init(&dirty->root->objectid_mutex);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400117 mutex_init(&dirty->root->log_mutex);
Yanbcc63ab2008-07-30 16:29:20 -0400118 INIT_LIST_HEAD(&dirty->root->dead_list);
Yan Zheng31153d82008-07-28 15:32:19 -0400119 dirty->root->node = root->commit_root;
120 dirty->root->commit_root = NULL;
Yanbcc63ab2008-07-30 16:29:20 -0400121
122 spin_lock(&root->list_lock);
123 list_add(&dirty->root->dead_list, &root->dead_list);
124 spin_unlock(&root->list_lock);
125
126 root->dirty_root = dirty;
Chris Mason6702ed42007-08-07 16:15:09 -0400127 } else {
128 WARN_ON(1);
129 }
130 root->last_trans = running_trans_id;
131 }
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++;
147 while(1) {
148 prepare_to_wait(&root->fs_info->transaction_wait, &wait,
149 TASK_UNINTERRUPTIBLE);
150 if (cur_trans->blocked) {
151 mutex_unlock(&root->fs_info->trans_mutex);
152 schedule();
153 mutex_lock(&root->fs_info->trans_mutex);
154 finish_wait(&root->fs_info->transaction_wait,
155 &wait);
156 } else {
157 finish_wait(&root->fs_info->transaction_wait,
158 &wait);
159 break;
160 }
161 }
162 put_transaction(cur_trans);
163 }
Chris Mason37d1aee2008-07-31 10:48:37 -0400164}
165
Chris Masone02119d2008-09-05 16:13:11 -0400166static struct btrfs_trans_handle *start_transaction(struct btrfs_root *root,
Sage Weil9ca9ee02008-08-04 10:41:27 -0400167 int num_blocks, int wait)
Chris Mason37d1aee2008-07-31 10:48:37 -0400168{
169 struct btrfs_trans_handle *h =
170 kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
171 int ret;
172
173 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason4bef0842008-09-08 11:18:08 -0400174 if (!root->fs_info->log_root_recovering &&
175 ((wait == 1 && !root->fs_info->open_ioctl_trans) || wait == 2))
Chris Mason37d1aee2008-07-31 10:48:37 -0400176 wait_current_trans(root);
Chris Mason79154b12007-03-22 15:59:16 -0400177 ret = join_transaction(root);
178 BUG_ON(ret);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400179
Chris Masone02119d2008-09-05 16:13:11 -0400180 btrfs_record_root_in_trans(root);
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 Mason79154b12007-03-22 15:59:16 -0400188 root->fs_info->running_transaction->use_count++;
189 mutex_unlock(&root->fs_info->trans_mutex);
190 return h;
191}
192
Chris Masonf9295742008-07-17 12:54:14 -0400193struct btrfs_trans_handle *btrfs_start_transaction(struct btrfs_root *root,
194 int num_blocks)
195{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400196 return start_transaction(root, num_blocks, 1);
Chris Masonf9295742008-07-17 12:54:14 -0400197}
198struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root,
199 int num_blocks)
200{
Sage Weil9ca9ee02008-08-04 10:41:27 -0400201 return start_transaction(root, num_blocks, 0);
Chris Masonf9295742008-07-17 12:54:14 -0400202}
203
Sage Weil9ca9ee02008-08-04 10:41:27 -0400204struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *r,
205 int num_blocks)
206{
207 return start_transaction(r, num_blocks, 2);
208}
209
Chris Masond352ac62008-09-29 15:18:18 -0400210/* wait for a transaction commit to be fully complete */
Chris Mason89ce8a62008-06-25 16:01:31 -0400211static noinline int wait_for_commit(struct btrfs_root *root,
212 struct btrfs_transaction *commit)
213{
214 DEFINE_WAIT(wait);
215 mutex_lock(&root->fs_info->trans_mutex);
216 while(!commit->commit_done) {
217 prepare_to_wait(&commit->commit_wait, &wait,
218 TASK_UNINTERRUPTIBLE);
219 if (commit->commit_done)
220 break;
221 mutex_unlock(&root->fs_info->trans_mutex);
222 schedule();
223 mutex_lock(&root->fs_info->trans_mutex);
224 }
225 mutex_unlock(&root->fs_info->trans_mutex);
226 finish_wait(&commit->commit_wait, &wait);
227 return 0;
228}
229
Chris Masond352ac62008-09-29 15:18:18 -0400230/*
231 * rate limit against the drop_snapshot code. This helps to slow down new operations
232 * if the drop_snapshot code isn't able to keep up.
233 */
Chris Mason37d1aee2008-07-31 10:48:37 -0400234static void throttle_on_drops(struct btrfs_root *root)
Chris Masonab78c842008-07-29 16:15:18 -0400235{
236 struct btrfs_fs_info *info = root->fs_info;
Chris Mason2dd3e672008-08-04 08:20:15 -0400237 int harder_count = 0;
Chris Masonab78c842008-07-29 16:15:18 -0400238
Chris Mason2dd3e672008-08-04 08:20:15 -0400239harder:
Chris Masonab78c842008-07-29 16:15:18 -0400240 if (atomic_read(&info->throttles)) {
241 DEFINE_WAIT(wait);
242 int thr;
Chris Masonab78c842008-07-29 16:15:18 -0400243 thr = atomic_read(&info->throttle_gen);
244
245 do {
246 prepare_to_wait(&info->transaction_throttle,
247 &wait, TASK_UNINTERRUPTIBLE);
248 if (!atomic_read(&info->throttles)) {
249 finish_wait(&info->transaction_throttle, &wait);
250 break;
251 }
252 schedule();
253 finish_wait(&info->transaction_throttle, &wait);
254 } while (thr == atomic_read(&info->throttle_gen));
Chris Mason2dd3e672008-08-04 08:20:15 -0400255 harder_count++;
256
257 if (root->fs_info->total_ref_cache_size > 1 * 1024 * 1024 &&
258 harder_count < 2)
259 goto harder;
260
261 if (root->fs_info->total_ref_cache_size > 5 * 1024 * 1024 &&
262 harder_count < 10)
263 goto harder;
264
265 if (root->fs_info->total_ref_cache_size > 10 * 1024 * 1024 &&
266 harder_count < 20)
267 goto harder;
Chris Masonab78c842008-07-29 16:15:18 -0400268 }
269}
270
Chris Mason37d1aee2008-07-31 10:48:37 -0400271void btrfs_throttle(struct btrfs_root *root)
272{
273 mutex_lock(&root->fs_info->trans_mutex);
Sage Weil9ca9ee02008-08-04 10:41:27 -0400274 if (!root->fs_info->open_ioctl_trans)
275 wait_current_trans(root);
Chris Mason37d1aee2008-07-31 10:48:37 -0400276 mutex_unlock(&root->fs_info->trans_mutex);
277
278 throttle_on_drops(root);
279}
280
Chris Mason89ce8a62008-06-25 16:01:31 -0400281static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
282 struct btrfs_root *root, int throttle)
Chris Mason79154b12007-03-22 15:59:16 -0400283{
284 struct btrfs_transaction *cur_trans;
Chris Masonab78c842008-07-29 16:15:18 -0400285 struct btrfs_fs_info *info = root->fs_info;
Chris Masond6e4a422007-04-06 15:37:36 -0400286
Chris Masonab78c842008-07-29 16:15:18 -0400287 mutex_lock(&info->trans_mutex);
288 cur_trans = info->running_transaction;
Chris Masonccd467d2007-06-28 15:57:36 -0400289 WARN_ON(cur_trans != trans->transaction);
Chris Masond5719762007-03-23 10:01:08 -0400290 WARN_ON(cur_trans->num_writers < 1);
Chris Masonccd467d2007-06-28 15:57:36 -0400291 cur_trans->num_writers--;
Chris Mason89ce8a62008-06-25 16:01:31 -0400292
Chris Mason79154b12007-03-22 15:59:16 -0400293 if (waitqueue_active(&cur_trans->writer_wait))
294 wake_up(&cur_trans->writer_wait);
Chris Mason79154b12007-03-22 15:59:16 -0400295 put_transaction(cur_trans);
Chris Masonab78c842008-07-29 16:15:18 -0400296 mutex_unlock(&info->trans_mutex);
Chris Masond6025572007-03-30 14:27:56 -0400297 memset(trans, 0, sizeof(*trans));
Chris Mason2c90e5d2007-04-02 10:50:19 -0400298 kmem_cache_free(btrfs_trans_handle_cachep, trans);
Chris Masonab78c842008-07-29 16:15:18 -0400299
300 if (throttle)
Chris Mason37d1aee2008-07-31 10:48:37 -0400301 throttle_on_drops(root);
Chris Masonab78c842008-07-29 16:15:18 -0400302
Chris Mason79154b12007-03-22 15:59:16 -0400303 return 0;
304}
305
Chris Mason89ce8a62008-06-25 16:01:31 -0400306int btrfs_end_transaction(struct btrfs_trans_handle *trans,
307 struct btrfs_root *root)
308{
309 return __btrfs_end_transaction(trans, root, 0);
310}
311
312int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
313 struct btrfs_root *root)
314{
315 return __btrfs_end_transaction(trans, root, 1);
316}
317
Chris Masond352ac62008-09-29 15:18:18 -0400318/*
319 * when btree blocks are allocated, they have some corresponding bits set for
320 * them in one of two extent_io trees. This is used to make sure all of
321 * those extents are on disk for transaction or log commit
322 */
Chris Masond0c803c2008-09-11 16:17:57 -0400323int btrfs_write_and_wait_marked_extents(struct btrfs_root *root,
324 struct extent_io_tree *dirty_pages)
Chris Mason79154b12007-03-22 15:59:16 -0400325{
Chris Mason7c4452b2007-04-28 09:29:35 -0400326 int ret;
Chris Mason777e6bd2008-08-15 15:34:15 -0400327 int err = 0;
Chris Mason7c4452b2007-04-28 09:29:35 -0400328 int werr = 0;
329 struct page *page;
Chris Mason7c4452b2007-04-28 09:29:35 -0400330 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason777e6bd2008-08-15 15:34:15 -0400331 u64 start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400332 u64 end;
333 unsigned long index;
Chris Mason7c4452b2007-04-28 09:29:35 -0400334
Chris Mason7c4452b2007-04-28 09:29:35 -0400335 while(1) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400336 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
Chris Mason5f39d392007-10-15 16:14:19 -0400337 EXTENT_DIRTY);
338 if (ret)
Chris Mason7c4452b2007-04-28 09:29:35 -0400339 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400340 while(start <= end) {
Chris Mason777e6bd2008-08-15 15:34:15 -0400341 cond_resched();
342
Chris Mason5f39d392007-10-15 16:14:19 -0400343 index = start >> PAGE_CACHE_SHIFT;
Chris Mason35ebb932007-10-30 16:56:53 -0400344 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
Chris Mason4bef0842008-09-08 11:18:08 -0400345 page = find_get_page(btree_inode->i_mapping, index);
Chris Mason7c4452b2007-04-28 09:29:35 -0400346 if (!page)
347 continue;
Chris Mason4bef0842008-09-08 11:18:08 -0400348
349 btree_lock_page_hook(page);
350 if (!page->mapping) {
351 unlock_page(page);
352 page_cache_release(page);
353 continue;
354 }
355
Chris Mason6702ed42007-08-07 16:15:09 -0400356 if (PageWriteback(page)) {
357 if (PageDirty(page))
358 wait_on_page_writeback(page);
359 else {
360 unlock_page(page);
361 page_cache_release(page);
362 continue;
363 }
364 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400365 err = write_one_page(page, 0);
366 if (err)
367 werr = err;
368 page_cache_release(page);
369 }
370 }
Chris Mason777e6bd2008-08-15 15:34:15 -0400371 while(1) {
372 ret = find_first_extent_bit(dirty_pages, 0, &start, &end,
373 EXTENT_DIRTY);
374 if (ret)
375 break;
376
377 clear_extent_dirty(dirty_pages, start, end, GFP_NOFS);
378 while(start <= end) {
379 index = start >> PAGE_CACHE_SHIFT;
380 start = (u64)(index + 1) << PAGE_CACHE_SHIFT;
381 page = find_get_page(btree_inode->i_mapping, index);
382 if (!page)
383 continue;
384 if (PageDirty(page)) {
Chris Mason4bef0842008-09-08 11:18:08 -0400385 btree_lock_page_hook(page);
386 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400387 err = write_one_page(page, 0);
388 if (err)
389 werr = err;
390 }
Chris Mason105d9312008-11-18 12:13:12 -0500391 wait_on_page_writeback(page);
Chris Mason777e6bd2008-08-15 15:34:15 -0400392 page_cache_release(page);
393 cond_resched();
394 }
395 }
Chris Mason7c4452b2007-04-28 09:29:35 -0400396 if (err)
397 werr = err;
398 return werr;
Chris Mason79154b12007-03-22 15:59:16 -0400399}
400
Chris Masond0c803c2008-09-11 16:17:57 -0400401int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans,
402 struct btrfs_root *root)
403{
404 if (!trans || !trans->transaction) {
405 struct inode *btree_inode;
406 btree_inode = root->fs_info->btree_inode;
407 return filemap_write_and_wait(btree_inode->i_mapping);
408 }
409 return btrfs_write_and_wait_marked_extents(root,
410 &trans->transaction->dirty_pages);
411}
412
Chris Masond352ac62008-09-29 15:18:18 -0400413/*
414 * this is used to update the root pointer in the tree of tree roots.
415 *
416 * But, in the case of the extent allocation tree, updating the root
417 * pointer may allocate blocks which may change the root of the extent
418 * allocation tree.
419 *
420 * So, this loops and repeats and makes sure the cowonly root didn't
421 * change while the root pointer was being updated in the metadata.
422 */
Chris Mason0b86a832008-03-24 15:01:56 -0400423static int update_cowonly_root(struct btrfs_trans_handle *trans,
424 struct btrfs_root *root)
425{
426 int ret;
427 u64 old_root_bytenr;
428 struct btrfs_root *tree_root = root->fs_info->tree_root;
429
Chris Mason87ef2bb2008-10-30 11:23:27 -0400430 btrfs_extent_post_op(trans, root);
Chris Mason0b86a832008-03-24 15:01:56 -0400431 btrfs_write_dirty_block_groups(trans, root);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400432 btrfs_extent_post_op(trans, root);
433
Chris Mason0b86a832008-03-24 15:01:56 -0400434 while(1) {
435 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
436 if (old_root_bytenr == root->node->start)
437 break;
438 btrfs_set_root_bytenr(&root->root_item,
439 root->node->start);
440 btrfs_set_root_level(&root->root_item,
441 btrfs_header_level(root->node));
Yan Zheng84234f32008-10-29 14:49:05 -0400442 btrfs_set_root_generation(&root->root_item, trans->transid);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400443
444 btrfs_extent_post_op(trans, root);
445
Chris Mason0b86a832008-03-24 15:01:56 -0400446 ret = btrfs_update_root(trans, tree_root,
447 &root->root_key,
448 &root->root_item);
449 BUG_ON(ret);
450 btrfs_write_dirty_block_groups(trans, root);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400451 btrfs_extent_post_op(trans, root);
Chris Mason0b86a832008-03-24 15:01:56 -0400452 }
453 return 0;
454}
455
Chris Masond352ac62008-09-29 15:18:18 -0400456/*
457 * update all the cowonly tree roots on disk
458 */
Chris Mason79154b12007-03-22 15:59:16 -0400459int btrfs_commit_tree_roots(struct btrfs_trans_handle *trans,
460 struct btrfs_root *root)
461{
Chris Mason79154b12007-03-22 15:59:16 -0400462 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason0b86a832008-03-24 15:01:56 -0400463 struct list_head *next;
Yan Zheng84234f32008-10-29 14:49:05 -0400464 struct extent_buffer *eb;
465
Chris Mason87ef2bb2008-10-30 11:23:27 -0400466 btrfs_extent_post_op(trans, fs_info->tree_root);
467
Yan Zheng84234f32008-10-29 14:49:05 -0400468 eb = btrfs_lock_root_node(fs_info->tree_root);
469 btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb, 0);
470 btrfs_tree_unlock(eb);
471 free_extent_buffer(eb);
Chris Mason79154b12007-03-22 15:59:16 -0400472
Chris Mason87ef2bb2008-10-30 11:23:27 -0400473 btrfs_extent_post_op(trans, fs_info->tree_root);
474
Chris Mason0b86a832008-03-24 15:01:56 -0400475 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
476 next = fs_info->dirty_cowonly_roots.next;
477 list_del_init(next);
478 root = list_entry(next, struct btrfs_root, dirty_list);
Chris Mason87ef2bb2008-10-30 11:23:27 -0400479
Chris Mason0b86a832008-03-24 15:01:56 -0400480 update_cowonly_root(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400481 }
482 return 0;
483}
484
Chris Masond352ac62008-09-29 15:18:18 -0400485/*
486 * dead roots are old snapshots that need to be deleted. This allocates
487 * a dirty root struct and adds it into the list of dead roots that need to
488 * be deleted
489 */
Yan Zhengb48652c2008-08-04 23:23:47 -0400490int btrfs_add_dead_root(struct btrfs_root *root, struct btrfs_root *latest)
Chris Mason5eda7b52007-06-22 14:16:25 -0400491{
Yan Zhengf321e492008-07-30 09:26:11 -0400492 struct btrfs_dirty_root *dirty;
Chris Mason5eda7b52007-06-22 14:16:25 -0400493
494 dirty = kmalloc(sizeof(*dirty), GFP_NOFS);
495 if (!dirty)
496 return -ENOMEM;
Chris Mason5eda7b52007-06-22 14:16:25 -0400497 dirty->root = root;
Chris Mason5ce14bb2007-09-11 11:15:39 -0400498 dirty->latest_root = latest;
Yan Zhengb48652c2008-08-04 23:23:47 -0400499
500 mutex_lock(&root->fs_info->trans_mutex);
501 list_add(&dirty->list, &latest->fs_info->dead_roots);
502 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason5eda7b52007-06-22 14:16:25 -0400503 return 0;
504}
505
Chris Masond352ac62008-09-29 15:18:18 -0400506/*
507 * at transaction commit time we need to schedule the old roots for
508 * deletion via btrfs_drop_snapshot. This runs through all the
509 * reference counted roots that were modified in the current
510 * transaction and puts them into the drop list
511 */
Chris Mason80b67942008-02-01 16:35:04 -0500512static noinline int add_dirty_roots(struct btrfs_trans_handle *trans,
513 struct radix_tree_root *radix,
514 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400515{
Yan Zhengf321e492008-07-30 09:26:11 -0400516 struct btrfs_dirty_root *dirty;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400517 struct btrfs_root *gang[8];
518 struct btrfs_root *root;
519 int i;
520 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400521 int err = 0;
Chris Mason5eda7b52007-06-22 14:16:25 -0400522 u32 refs;
Chris Mason54aa1f42007-06-22 14:16:25 -0400523
Chris Mason0f7d52f2007-04-09 10:42:37 -0400524 while(1) {
525 ret = radix_tree_gang_lookup_tag(radix, (void **)gang, 0,
526 ARRAY_SIZE(gang),
527 BTRFS_ROOT_TRANS_TAG);
528 if (ret == 0)
529 break;
530 for (i = 0; i < ret; i++) {
531 root = gang[i];
Chris Mason2619ba12007-04-10 16:58:11 -0400532 radix_tree_tag_clear(radix,
533 (unsigned long)root->root_key.objectid,
534 BTRFS_ROOT_TRANS_TAG);
Yan Zheng31153d82008-07-28 15:32:19 -0400535
536 BUG_ON(!root->ref_tree);
Chris Mason017e5362008-07-28 15:32:51 -0400537 dirty = root->dirty_root;
Yan Zheng31153d82008-07-28 15:32:19 -0400538
Chris Masone02119d2008-09-05 16:13:11 -0400539 btrfs_free_log(trans, root);
Yan Zhengf82d02d2008-10-29 14:49:05 -0400540 btrfs_free_reloc_root(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400541
Chris Mason0f7d52f2007-04-09 10:42:37 -0400542 if (root->commit_root == root->node) {
Chris Masondb945352007-10-15 16:15:53 -0400543 WARN_ON(root->node->start !=
544 btrfs_root_bytenr(&root->root_item));
Yan Zheng31153d82008-07-28 15:32:19 -0400545
Chris Mason5f39d392007-10-15 16:14:19 -0400546 free_extent_buffer(root->commit_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400547 root->commit_root = NULL;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400548 root->dirty_root = NULL;
Yanbcc63ab2008-07-30 16:29:20 -0400549
550 spin_lock(&root->list_lock);
551 list_del_init(&dirty->root->dead_list);
552 spin_unlock(&root->list_lock);
553
Yan Zheng31153d82008-07-28 15:32:19 -0400554 kfree(dirty->root);
555 kfree(dirty);
Josef Bacik58176a92007-08-29 15:47:34 -0400556
557 /* make sure to update the root on disk
558 * so we get any updates to the block used
559 * counts
560 */
561 err = btrfs_update_root(trans,
562 root->fs_info->tree_root,
563 &root->root_key,
564 &root->root_item);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400565 continue;
566 }
Chris Mason9f3a7422007-08-07 15:52:19 -0400567
568 memset(&root->root_item.drop_progress, 0,
569 sizeof(struct btrfs_disk_key));
570 root->root_item.drop_level = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400571 root->commit_root = NULL;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400572 root->dirty_root = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400573 root->root_key.offset = root->fs_info->generation;
Chris Masondb945352007-10-15 16:15:53 -0400574 btrfs_set_root_bytenr(&root->root_item,
575 root->node->start);
576 btrfs_set_root_level(&root->root_item,
577 btrfs_header_level(root->node));
Yan Zheng84234f32008-10-29 14:49:05 -0400578 btrfs_set_root_generation(&root->root_item,
579 root->root_key.offset);
580
Chris Mason0f7d52f2007-04-09 10:42:37 -0400581 err = btrfs_insert_root(trans, root->fs_info->tree_root,
582 &root->root_key,
583 &root->root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400584 if (err)
585 break;
Chris Mason9f3a7422007-08-07 15:52:19 -0400586
587 refs = btrfs_root_refs(&dirty->root->root_item);
588 btrfs_set_root_refs(&dirty->root->root_item, refs - 1);
Chris Mason5eda7b52007-06-22 14:16:25 -0400589 err = btrfs_update_root(trans, root->fs_info->tree_root,
Chris Mason9f3a7422007-08-07 15:52:19 -0400590 &dirty->root->root_key,
591 &dirty->root->root_item);
Chris Mason5eda7b52007-06-22 14:16:25 -0400592
593 BUG_ON(err);
Chris Mason9f3a7422007-08-07 15:52:19 -0400594 if (refs == 1) {
Chris Mason5eda7b52007-06-22 14:16:25 -0400595 list_add(&dirty->list, list);
Chris Mason9f3a7422007-08-07 15:52:19 -0400596 } else {
597 WARN_ON(1);
Yan Zheng31153d82008-07-28 15:32:19 -0400598 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400599 kfree(dirty->root);
Chris Mason5eda7b52007-06-22 14:16:25 -0400600 kfree(dirty);
Chris Mason9f3a7422007-08-07 15:52:19 -0400601 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400602 }
603 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400604 return err;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400605}
606
Chris Masond352ac62008-09-29 15:18:18 -0400607/*
608 * defrag a given btree. If cacheonly == 1, this won't read from the disk,
609 * otherwise every leaf in the btree is read and defragged.
610 */
Chris Masone9d0b132007-08-10 14:06:19 -0400611int btrfs_defrag_root(struct btrfs_root *root, int cacheonly)
612{
613 struct btrfs_fs_info *info = root->fs_info;
614 int ret;
615 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400616 unsigned long nr;
Chris Masone9d0b132007-08-10 14:06:19 -0400617
Chris Masona2135012008-06-25 16:01:30 -0400618 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400619 if (root->defrag_running)
620 return 0;
Chris Masone9d0b132007-08-10 14:06:19 -0400621 trans = btrfs_start_transaction(root, 1);
Chris Mason6b800532007-10-15 16:17:34 -0400622 while (1) {
Chris Masone9d0b132007-08-10 14:06:19 -0400623 root->defrag_running = 1;
624 ret = btrfs_defrag_leaves(trans, root, cacheonly);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400625 nr = trans->blocks_used;
Chris Masone9d0b132007-08-10 14:06:19 -0400626 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400627 btrfs_btree_balance_dirty(info->tree_root, nr);
Chris Masone9d0b132007-08-10 14:06:19 -0400628 cond_resched();
629
Chris Masone9d0b132007-08-10 14:06:19 -0400630 trans = btrfs_start_transaction(root, 1);
Chris Mason3f157a22008-06-25 16:01:31 -0400631 if (root->fs_info->closing || ret != -EAGAIN)
Chris Masone9d0b132007-08-10 14:06:19 -0400632 break;
633 }
634 root->defrag_running = 0;
Chris Masona2135012008-06-25 16:01:30 -0400635 smp_mb();
Chris Masone9d0b132007-08-10 14:06:19 -0400636 btrfs_end_transaction(trans, root);
637 return 0;
638}
639
Chris Masond352ac62008-09-29 15:18:18 -0400640/*
641 * Given a list of roots that need to be deleted, call btrfs_drop_snapshot on
642 * all of them
643 */
Chris Mason80b67942008-02-01 16:35:04 -0500644static noinline int drop_dirty_roots(struct btrfs_root *tree_root,
645 struct list_head *list)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400646{
Yan Zhengf321e492008-07-30 09:26:11 -0400647 struct btrfs_dirty_root *dirty;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400648 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400649 unsigned long nr;
Chris Masondb945352007-10-15 16:15:53 -0400650 u64 num_bytes;
651 u64 bytes_used;
Yanbcc63ab2008-07-30 16:29:20 -0400652 u64 max_useless;
Chris Mason54aa1f42007-06-22 14:16:25 -0400653 int ret = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -0400654 int err;
655
Chris Mason0f7d52f2007-04-09 10:42:37 -0400656 while(!list_empty(list)) {
Josef Bacik58176a92007-08-29 15:47:34 -0400657 struct btrfs_root *root;
658
Yan Zhengf321e492008-07-30 09:26:11 -0400659 dirty = list_entry(list->prev, struct btrfs_dirty_root, list);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400660 list_del_init(&dirty->list);
Chris Mason5eda7b52007-06-22 14:16:25 -0400661
Chris Masondb945352007-10-15 16:15:53 -0400662 num_bytes = btrfs_root_used(&dirty->root->root_item);
Josef Bacik58176a92007-08-29 15:47:34 -0400663 root = dirty->latest_root;
Chris Masona2135012008-06-25 16:01:30 -0400664 atomic_inc(&root->fs_info->throttles);
Josef Bacik58176a92007-08-29 15:47:34 -0400665
Chris Mason9f3a7422007-08-07 15:52:19 -0400666 while(1) {
667 trans = btrfs_start_transaction(tree_root, 1);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400668 mutex_lock(&root->fs_info->drop_mutex);
Chris Mason9f3a7422007-08-07 15:52:19 -0400669 ret = btrfs_drop_snapshot(trans, dirty->root);
670 if (ret != -EAGAIN) {
671 break;
672 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400673 mutex_unlock(&root->fs_info->drop_mutex);
Josef Bacik58176a92007-08-29 15:47:34 -0400674
Chris Mason9f3a7422007-08-07 15:52:19 -0400675 err = btrfs_update_root(trans,
676 tree_root,
677 &dirty->root->root_key,
678 &dirty->root->root_item);
679 if (err)
680 ret = err;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400681 nr = trans->blocks_used;
Chris Mason017e5362008-07-28 15:32:51 -0400682 ret = btrfs_end_transaction(trans, tree_root);
Chris Mason9f3a7422007-08-07 15:52:19 -0400683 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400684
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400685 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400686 cond_resched();
Chris Mason9f3a7422007-08-07 15:52:19 -0400687 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400688 BUG_ON(ret);
Chris Masona2135012008-06-25 16:01:30 -0400689 atomic_dec(&root->fs_info->throttles);
Chris Mason017e5362008-07-28 15:32:51 -0400690 wake_up(&root->fs_info->transaction_throttle);
Josef Bacik58176a92007-08-29 15:47:34 -0400691
Chris Masondb945352007-10-15 16:15:53 -0400692 num_bytes -= btrfs_root_used(&dirty->root->root_item);
693 bytes_used = btrfs_root_used(&root->root_item);
694 if (num_bytes) {
Chris Masone02119d2008-09-05 16:13:11 -0400695 btrfs_record_root_in_trans(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400696 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400697 bytes_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400698 }
Chris Masona2135012008-06-25 16:01:30 -0400699
Chris Mason9f3a7422007-08-07 15:52:19 -0400700 ret = btrfs_del_root(trans, tree_root, &dirty->root->root_key);
Josef Bacik58176a92007-08-29 15:47:34 -0400701 if (ret) {
702 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -0400703 break;
Josef Bacik58176a92007-08-29 15:47:34 -0400704 }
Chris Masona2135012008-06-25 16:01:30 -0400705 mutex_unlock(&root->fs_info->drop_mutex);
706
Yanbcc63ab2008-07-30 16:29:20 -0400707 spin_lock(&root->list_lock);
708 list_del_init(&dirty->root->dead_list);
709 if (!list_empty(&root->dead_list)) {
710 struct btrfs_root *oldest;
711 oldest = list_entry(root->dead_list.prev,
712 struct btrfs_root, dead_list);
713 max_useless = oldest->root_key.offset - 1;
714 } else {
715 max_useless = root->root_key.offset - 1;
716 }
717 spin_unlock(&root->list_lock);
718
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400719 nr = trans->blocks_used;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400720 ret = btrfs_end_transaction(trans, tree_root);
721 BUG_ON(ret);
Chris Mason5eda7b52007-06-22 14:16:25 -0400722
Zheng Yane4657682008-09-26 10:04:53 -0400723 ret = btrfs_remove_leaf_refs(root, max_useless, 0);
Yanbcc63ab2008-07-30 16:29:20 -0400724 BUG_ON(ret);
725
Chris Masonf510cfe2007-10-15 16:14:48 -0400726 free_extent_buffer(dirty->root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -0400727 kfree(dirty->root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400728 kfree(dirty);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400729
730 btrfs_btree_balance_dirty(tree_root, nr);
Chris Mason4dc119042007-10-15 16:18:14 -0400731 cond_resched();
Chris Mason0f7d52f2007-04-09 10:42:37 -0400732 }
Chris Mason54aa1f42007-06-22 14:16:25 -0400733 return ret;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400734}
735
Chris Masond352ac62008-09-29 15:18:18 -0400736/*
737 * new snapshots need to be created at a very specific time in the
738 * transaction commit. This does the actual creation
739 */
Chris Mason80b67942008-02-01 16:35:04 -0500740static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans,
Chris Mason3063d292008-01-08 15:46:30 -0500741 struct btrfs_fs_info *fs_info,
742 struct btrfs_pending_snapshot *pending)
743{
744 struct btrfs_key key;
Chris Mason80b67942008-02-01 16:35:04 -0500745 struct btrfs_root_item *new_root_item;
Chris Mason3063d292008-01-08 15:46:30 -0500746 struct btrfs_root *tree_root = fs_info->tree_root;
747 struct btrfs_root *root = pending->root;
748 struct extent_buffer *tmp;
Chris Mason925baed2008-06-25 16:01:30 -0400749 struct extent_buffer *old;
Chris Mason3063d292008-01-08 15:46:30 -0500750 int ret;
751 u64 objectid;
752
Chris Mason80b67942008-02-01 16:35:04 -0500753 new_root_item = kmalloc(sizeof(*new_root_item), GFP_NOFS);
754 if (!new_root_item) {
755 ret = -ENOMEM;
756 goto fail;
757 }
Chris Mason3063d292008-01-08 15:46:30 -0500758 ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid);
759 if (ret)
760 goto fail;
761
Yan Zheng80ff3852008-10-30 14:20:02 -0400762 btrfs_record_root_in_trans(root);
763 btrfs_set_root_last_snapshot(&root->root_item, trans->transid);
Chris Mason80b67942008-02-01 16:35:04 -0500764 memcpy(new_root_item, &root->root_item, sizeof(*new_root_item));
Chris Mason3063d292008-01-08 15:46:30 -0500765
766 key.objectid = objectid;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400767 key.offset = trans->transid;
Chris Mason3063d292008-01-08 15:46:30 -0500768 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
769
Chris Mason925baed2008-06-25 16:01:30 -0400770 old = btrfs_lock_root_node(root);
Chris Mason65b51a02008-08-01 15:11:20 -0400771 btrfs_cow_block(trans, root, old, NULL, 0, &old, 0);
Chris Mason3063d292008-01-08 15:46:30 -0500772
Chris Mason925baed2008-06-25 16:01:30 -0400773 btrfs_copy_root(trans, root, old, &tmp, objectid);
774 btrfs_tree_unlock(old);
775 free_extent_buffer(old);
Chris Mason3063d292008-01-08 15:46:30 -0500776
Chris Mason80b67942008-02-01 16:35:04 -0500777 btrfs_set_root_bytenr(new_root_item, tmp->start);
778 btrfs_set_root_level(new_root_item, btrfs_header_level(tmp));
Yan Zheng84234f32008-10-29 14:49:05 -0400779 btrfs_set_root_generation(new_root_item, trans->transid);
Chris Mason3063d292008-01-08 15:46:30 -0500780 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
Chris Mason80b67942008-02-01 16:35:04 -0500781 new_root_item);
Chris Mason925baed2008-06-25 16:01:30 -0400782 btrfs_tree_unlock(tmp);
Chris Mason3063d292008-01-08 15:46:30 -0500783 free_extent_buffer(tmp);
784 if (ret)
785 goto fail;
786
Chris Mason3de45862008-11-17 21:02:50 -0500787 key.offset = (u64)-1;
788 memcpy(&pending->root_key, &key, sizeof(key));
789fail:
790 kfree(new_root_item);
791 return ret;
792}
793
794static noinline int finish_pending_snapshot(struct btrfs_fs_info *fs_info,
795 struct btrfs_pending_snapshot *pending)
796{
797 int ret;
798 int namelen;
799 u64 index = 0;
800 struct btrfs_trans_handle *trans;
801 struct inode *parent_inode;
802 struct inode *inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500803 struct btrfs_root *parent_root;
Chris Mason3de45862008-11-17 21:02:50 -0500804
Chris Mason3394e162008-11-17 20:42:26 -0500805 parent_inode = pending->dentry->d_parent->d_inode;
Chris Mason0660b5a2008-11-17 20:37:39 -0500806 parent_root = BTRFS_I(parent_inode)->root;
807 trans = btrfs_start_transaction(parent_root, 1);
Chris Mason3de45862008-11-17 21:02:50 -0500808
Chris Mason3063d292008-01-08 15:46:30 -0500809 /*
810 * insert the directory item
811 */
Sven Wegener3b963622008-06-09 21:57:42 -0400812 namelen = strlen(pending->name);
Chris Mason3de45862008-11-17 21:02:50 -0500813 ret = btrfs_set_inode_index(parent_inode, &index);
Chris Mason0660b5a2008-11-17 20:37:39 -0500814 ret = btrfs_insert_dir_item(trans, parent_root,
Chris Mason3de45862008-11-17 21:02:50 -0500815 pending->name, namelen,
816 parent_inode->i_ino,
817 &pending->root_key, BTRFS_FT_DIR, index);
Chris Mason3063d292008-01-08 15:46:30 -0500818
819 if (ret)
820 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500821
822 /* add the backref first */
823 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
824 pending->root_key.objectid,
825 BTRFS_ROOT_BACKREF_KEY,
826 parent_root->root_key.objectid,
827 parent_inode->i_ino, index, pending->name,
828 namelen);
829
830 BUG_ON(ret);
831
832 /* now add the forward ref */
833 ret = btrfs_add_root_ref(trans, parent_root->fs_info->tree_root,
834 parent_root->root_key.objectid,
835 BTRFS_ROOT_REF_KEY,
836 pending->root_key.objectid,
837 parent_inode->i_ino, index, pending->name,
838 namelen);
839
Chris Mason3de45862008-11-17 21:02:50 -0500840 inode = btrfs_lookup_dentry(parent_inode, pending->dentry);
841 d_instantiate(pending->dentry, inode);
Chris Mason3063d292008-01-08 15:46:30 -0500842fail:
Chris Mason3de45862008-11-17 21:02:50 -0500843 btrfs_end_transaction(trans, fs_info->fs_root);
Chris Mason3063d292008-01-08 15:46:30 -0500844 return ret;
845}
846
Chris Masond352ac62008-09-29 15:18:18 -0400847/*
848 * create all the snapshots we've scheduled for creation
849 */
Chris Mason80b67942008-02-01 16:35:04 -0500850static noinline int create_pending_snapshots(struct btrfs_trans_handle *trans,
851 struct btrfs_fs_info *fs_info)
Chris Mason3063d292008-01-08 15:46:30 -0500852{
853 struct btrfs_pending_snapshot *pending;
854 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3de45862008-11-17 21:02:50 -0500855 struct list_head *cur;
856 int ret;
857
858 list_for_each(cur, head) {
859 pending = list_entry(cur, struct btrfs_pending_snapshot, list);
860 ret = create_pending_snapshot(trans, fs_info, pending);
861 BUG_ON(ret);
862 }
863 return 0;
864}
865
866static noinline int finish_pending_snapshots(struct btrfs_trans_handle *trans,
867 struct btrfs_fs_info *fs_info)
868{
869 struct btrfs_pending_snapshot *pending;
870 struct list_head *head = &trans->transaction->pending_snapshots;
Chris Mason3063d292008-01-08 15:46:30 -0500871 int ret;
872
873 while(!list_empty(head)) {
874 pending = list_entry(head->next,
875 struct btrfs_pending_snapshot, list);
Chris Mason3de45862008-11-17 21:02:50 -0500876 ret = finish_pending_snapshot(fs_info, pending);
Chris Mason3063d292008-01-08 15:46:30 -0500877 BUG_ON(ret);
878 list_del(&pending->list);
879 kfree(pending->name);
880 kfree(pending);
881 }
Chris Masondc17ff82008-01-08 15:46:30 -0500882 return 0;
883}
884
Chris Mason79154b12007-03-22 15:59:16 -0400885int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
886 struct btrfs_root *root)
887{
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400888 unsigned long joined = 0;
889 unsigned long timeout = 1;
Chris Mason79154b12007-03-22 15:59:16 -0400890 struct btrfs_transaction *cur_trans;
Chris Mason8fd17792007-04-19 21:01:03 -0400891 struct btrfs_transaction *prev_trans = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -0400892 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400893 struct list_head dirty_fs_roots;
Chris Masond1310b22008-01-24 16:13:08 -0500894 struct extent_io_tree *pinned_copy;
Chris Mason79154b12007-03-22 15:59:16 -0400895 DEFINE_WAIT(wait);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400896 int ret;
Chris Mason79154b12007-03-22 15:59:16 -0400897
Chris Mason0f7d52f2007-04-09 10:42:37 -0400898 INIT_LIST_HEAD(&dirty_fs_roots);
Chris Mason79154b12007-03-22 15:59:16 -0400899 mutex_lock(&root->fs_info->trans_mutex);
900 if (trans->transaction->in_commit) {
901 cur_trans = trans->transaction;
902 trans->transaction->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400903 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400904 btrfs_end_transaction(trans, root);
Chris Masonccd467d2007-06-28 15:57:36 -0400905
Chris Mason79154b12007-03-22 15:59:16 -0400906 ret = wait_for_commit(root, cur_trans);
907 BUG_ON(ret);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400908
909 mutex_lock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -0400910 put_transaction(cur_trans);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400911 mutex_unlock(&root->fs_info->trans_mutex);
912
Chris Mason79154b12007-03-22 15:59:16 -0400913 return 0;
914 }
Chris Mason4313b392008-01-03 09:08:48 -0500915
916 pinned_copy = kmalloc(sizeof(*pinned_copy), GFP_NOFS);
917 if (!pinned_copy)
918 return -ENOMEM;
919
Chris Masond1310b22008-01-24 16:13:08 -0500920 extent_io_tree_init(pinned_copy,
Chris Mason4313b392008-01-03 09:08:48 -0500921 root->fs_info->btree_inode->i_mapping, GFP_NOFS);
922
Chris Mason2c90e5d2007-04-02 10:50:19 -0400923 trans->transaction->in_commit = 1;
Chris Masonf9295742008-07-17 12:54:14 -0400924 trans->transaction->blocked = 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400925 cur_trans = trans->transaction;
926 if (cur_trans->list.prev != &root->fs_info->trans_list) {
927 prev_trans = list_entry(cur_trans->list.prev,
928 struct btrfs_transaction, list);
929 if (!prev_trans->commit_done) {
930 prev_trans->use_count++;
Chris Masonccd467d2007-06-28 15:57:36 -0400931 mutex_unlock(&root->fs_info->trans_mutex);
932
933 wait_for_commit(root, prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400934
Chris Masonccd467d2007-06-28 15:57:36 -0400935 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400936 put_transaction(prev_trans);
Chris Masonccd467d2007-06-28 15:57:36 -0400937 }
938 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400939
940 do {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400941 int snap_pending = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400942 joined = cur_trans->num_joined;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400943 if (!list_empty(&trans->transaction->pending_snapshots))
944 snap_pending = 1;
945
Chris Mason2c90e5d2007-04-02 10:50:19 -0400946 WARN_ON(cur_trans != trans->transaction);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400947 prepare_to_wait(&cur_trans->writer_wait, &wait,
Chris Mason79154b12007-03-22 15:59:16 -0400948 TASK_UNINTERRUPTIBLE);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400949
950 if (cur_trans->num_writers > 1)
951 timeout = MAX_SCHEDULE_TIMEOUT;
952 else
953 timeout = 1;
954
Chris Mason79154b12007-03-22 15:59:16 -0400955 mutex_unlock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400956
Yan Zheng7ea394f2008-08-05 13:05:02 -0400957 if (snap_pending) {
958 ret = btrfs_wait_ordered_extents(root, 1);
959 BUG_ON(ret);
960 }
961
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400962 schedule_timeout(timeout);
963
Chris Mason79154b12007-03-22 15:59:16 -0400964 mutex_lock(&root->fs_info->trans_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400965 finish_wait(&cur_trans->writer_wait, &wait);
966 } while (cur_trans->num_writers > 1 ||
967 (cur_trans->num_joined != joined));
968
Chris Mason3063d292008-01-08 15:46:30 -0500969 ret = create_pending_snapshots(trans, root->fs_info);
970 BUG_ON(ret);
971
Chris Mason2c90e5d2007-04-02 10:50:19 -0400972 WARN_ON(cur_trans != trans->transaction);
Chris Masondc17ff82008-01-08 15:46:30 -0500973
Chris Masone02119d2008-09-05 16:13:11 -0400974 /* btrfs_commit_tree_roots is responsible for getting the
975 * various roots consistent with each other. Every pointer
976 * in the tree of tree roots has to point to the most up to date
977 * root for every subvolume and other tree. So, we have to keep
978 * the tree logging code from jumping in and changing any
979 * of the trees.
980 *
981 * At this point in the commit, there can't be any tree-log
982 * writers, but a little lower down we drop the trans mutex
983 * and let new people in. By holding the tree_log_mutex
984 * from now until after the super is written, we avoid races
985 * with the tree-log code.
986 */
987 mutex_lock(&root->fs_info->tree_log_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -0400988 /*
989 * keep tree reloc code from adding new reloc trees
990 */
991 mutex_lock(&root->fs_info->tree_reloc_mutex);
992
Chris Masone02119d2008-09-05 16:13:11 -0400993
Chris Mason54aa1f42007-06-22 14:16:25 -0400994 ret = add_dirty_roots(trans, &root->fs_info->fs_roots_radix,
995 &dirty_fs_roots);
996 BUG_ON(ret);
997
Chris Masone02119d2008-09-05 16:13:11 -0400998 /* add_dirty_roots gets rid of all the tree log roots, it is now
999 * safe to free the root of tree log roots
1000 */
1001 btrfs_free_log_root_tree(trans, root->fs_info);
1002
Chris Mason79154b12007-03-22 15:59:16 -04001003 ret = btrfs_commit_tree_roots(trans, root);
1004 BUG_ON(ret);
Chris Mason54aa1f42007-06-22 14:16:25 -04001005
Chris Mason78fae272007-03-25 11:35:08 -04001006 cur_trans = root->fs_info->running_transaction;
Chris Masoncee36a02008-01-15 08:40:48 -05001007 spin_lock(&root->fs_info->new_trans_lock);
Chris Mason78fae272007-03-25 11:35:08 -04001008 root->fs_info->running_transaction = NULL;
Chris Masoncee36a02008-01-15 08:40:48 -05001009 spin_unlock(&root->fs_info->new_trans_lock);
Chris Mason4b52dff2007-06-26 10:06:50 -04001010 btrfs_set_super_generation(&root->fs_info->super_copy,
1011 cur_trans->transid);
1012 btrfs_set_super_root(&root->fs_info->super_copy,
Chris Masondb945352007-10-15 16:15:53 -04001013 root->fs_info->tree_root->node->start);
1014 btrfs_set_super_root_level(&root->fs_info->super_copy,
1015 btrfs_header_level(root->fs_info->tree_root->node));
Chris Mason5f39d392007-10-15 16:14:19 -04001016
Chris Mason0b86a832008-03-24 15:01:56 -04001017 btrfs_set_super_chunk_root(&root->fs_info->super_copy,
1018 chunk_root->node->start);
1019 btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
1020 btrfs_header_level(chunk_root->node));
Yan Zheng84234f32008-10-29 14:49:05 -04001021 btrfs_set_super_chunk_root_generation(&root->fs_info->super_copy,
1022 btrfs_header_generation(chunk_root->node));
Chris Masone02119d2008-09-05 16:13:11 -04001023
1024 if (!root->fs_info->log_root_recovering) {
1025 btrfs_set_super_log_root(&root->fs_info->super_copy, 0);
1026 btrfs_set_super_log_root_level(&root->fs_info->super_copy, 0);
1027 }
1028
Chris Masona061fc82008-05-07 11:43:44 -04001029 memcpy(&root->fs_info->super_for_commit, &root->fs_info->super_copy,
1030 sizeof(root->fs_info->super_copy));
Chris Masonccd467d2007-06-28 15:57:36 -04001031
Chris Mason4313b392008-01-03 09:08:48 -05001032 btrfs_copy_pinned(root, pinned_copy);
Chris Masonccd467d2007-06-28 15:57:36 -04001033
Chris Masonf9295742008-07-17 12:54:14 -04001034 trans->transaction->blocked = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001035 wake_up(&root->fs_info->transaction_throttle);
Chris Masonf9295742008-07-17 12:54:14 -04001036 wake_up(&root->fs_info->transaction_wait);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001037
Chris Mason78fae272007-03-25 11:35:08 -04001038 mutex_unlock(&root->fs_info->trans_mutex);
Chris Mason79154b12007-03-22 15:59:16 -04001039 ret = btrfs_write_and_wait_transaction(trans, root);
1040 BUG_ON(ret);
Yan Zhenga512bbf2008-12-08 16:46:26 -05001041 write_ctree_super(trans, root, 0);
Chris Mason4313b392008-01-03 09:08:48 -05001042
Chris Masone02119d2008-09-05 16:13:11 -04001043 /*
1044 * the super is written, we can safely allow the tree-loggers
1045 * to go about their business
1046 */
1047 mutex_unlock(&root->fs_info->tree_log_mutex);
1048
Chris Mason4313b392008-01-03 09:08:48 -05001049 btrfs_finish_extent_commit(trans, root, pinned_copy);
Chris Mason4313b392008-01-03 09:08:48 -05001050 kfree(pinned_copy);
1051
Zheng Yan1a40e232008-09-26 10:09:34 -04001052 btrfs_drop_dead_reloc_roots(root);
1053 mutex_unlock(&root->fs_info->tree_reloc_mutex);
1054
Chris Mason3de45862008-11-17 21:02:50 -05001055 /* do the directory inserts of any pending snapshot creations */
1056 finish_pending_snapshots(trans, root->fs_info);
1057
Zheng Yan1a40e232008-09-26 10:09:34 -04001058 mutex_lock(&root->fs_info->trans_mutex);
1059
Chris Mason2c90e5d2007-04-02 10:50:19 -04001060 cur_trans->commit_done = 1;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001061 root->fs_info->last_trans_committed = cur_trans->transid;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001062 wake_up(&cur_trans->commit_wait);
Chris Mason3de45862008-11-17 21:02:50 -05001063
Chris Mason79154b12007-03-22 15:59:16 -04001064 put_transaction(cur_trans);
Chris Mason78fae272007-03-25 11:35:08 -04001065 put_transaction(cur_trans);
Josef Bacik58176a92007-08-29 15:47:34 -04001066
Yanbcc63ab2008-07-30 16:29:20 -04001067 list_splice_init(&dirty_fs_roots, &root->fs_info->dead_roots);
Chris Masonfacda1e2007-06-08 18:11:48 -04001068 if (root->fs_info->closing)
1069 list_splice_init(&root->fs_info->dead_roots, &dirty_fs_roots);
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
Chris Masonfacda1e2007-06-08 18:11:48 -04001075 if (root->fs_info->closing) {
Chris Masonfacda1e2007-06-08 18:11:48 -04001076 drop_dirty_roots(root->fs_info->tree_root, &dirty_fs_roots);
Chris Masonfacda1e2007-06-08 18:11:48 -04001077 }
Chris Mason79154b12007-03-22 15:59:16 -04001078 return ret;
1079}
1080
Chris Masond352ac62008-09-29 15:18:18 -04001081/*
1082 * interface function to delete all the snapshots we have scheduled for deletion
1083 */
Chris Masone9d0b132007-08-10 14:06:19 -04001084int btrfs_clean_old_snapshots(struct btrfs_root *root)
1085{
1086 struct list_head dirty_roots;
1087 INIT_LIST_HEAD(&dirty_roots);
Chris Masona74a4b92008-06-25 16:01:31 -04001088again:
Chris Masone9d0b132007-08-10 14:06:19 -04001089 mutex_lock(&root->fs_info->trans_mutex);
1090 list_splice_init(&root->fs_info->dead_roots, &dirty_roots);
1091 mutex_unlock(&root->fs_info->trans_mutex);
1092
1093 if (!list_empty(&dirty_roots)) {
1094 drop_dirty_roots(root, &dirty_roots);
Chris Masona74a4b92008-06-25 16:01:31 -04001095 goto again;
Chris Masone9d0b132007-08-10 14:06:19 -04001096 }
1097 return 0;
1098}