ordered-data.c 29.1 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

#include <linux/slab.h>
20
#include <linux/blkdev.h>
21 22
#include <linux/writeback.h>
#include <linux/pagevec.h>
C
Chris Mason 已提交
23 24 25
#include "ctree.h"
#include "transaction.h"
#include "btrfs_inode.h"
26
#include "extent_io.h"
27
#include "disk-io.h"
C
Chris Mason 已提交
28

29 30
static struct kmem_cache *btrfs_ordered_extent_cache;

31
static u64 entry_end(struct btrfs_ordered_extent *entry)
C
Chris Mason 已提交
32
{
33 34 35
	if (entry->file_offset + entry->len < entry->file_offset)
		return (u64)-1;
	return entry->file_offset + entry->len;
C
Chris Mason 已提交
36 37
}

C
Chris Mason 已提交
38 39 40
/* returns NULL if the insertion worked, or it returns the node it did find
 * in the tree
 */
41 42
static struct rb_node *tree_insert(struct rb_root *root, u64 file_offset,
				   struct rb_node *node)
C
Chris Mason 已提交
43
{
C
Chris Mason 已提交
44 45
	struct rb_node **p = &root->rb_node;
	struct rb_node *parent = NULL;
46
	struct btrfs_ordered_extent *entry;
C
Chris Mason 已提交
47

C
Chris Mason 已提交
48
	while (*p) {
C
Chris Mason 已提交
49
		parent = *p;
50
		entry = rb_entry(parent, struct btrfs_ordered_extent, rb_node);
C
Chris Mason 已提交
51

52
		if (file_offset < entry->file_offset)
C
Chris Mason 已提交
53
			p = &(*p)->rb_left;
54
		else if (file_offset >= entry_end(entry))
C
Chris Mason 已提交
55 56 57 58 59 60 61 62 63 64
			p = &(*p)->rb_right;
		else
			return parent;
	}

	rb_link_node(node, parent, p);
	rb_insert_color(node, root);
	return NULL;
}

65 66 67 68 69
static void ordered_data_tree_panic(struct inode *inode, int errno,
					       u64 offset)
{
	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
	btrfs_panic(fs_info, errno, "Inconsistency in ordered tree at offset "
70
		    "%llu", offset);
71 72
}

C
Chris Mason 已提交
73 74 75 76
/*
 * look for a given offset in the tree, and if it can't be found return the
 * first lesser offset
 */
77 78
static struct rb_node *__tree_search(struct rb_root *root, u64 file_offset,
				     struct rb_node **prev_ret)
C
Chris Mason 已提交
79
{
C
Chris Mason 已提交
80
	struct rb_node *n = root->rb_node;
C
Chris Mason 已提交
81
	struct rb_node *prev = NULL;
82 83 84
	struct rb_node *test;
	struct btrfs_ordered_extent *entry;
	struct btrfs_ordered_extent *prev_entry = NULL;
C
Chris Mason 已提交
85

C
Chris Mason 已提交
86
	while (n) {
87
		entry = rb_entry(n, struct btrfs_ordered_extent, rb_node);
C
Chris Mason 已提交
88 89 90
		prev = n;
		prev_entry = entry;

91
		if (file_offset < entry->file_offset)
C
Chris Mason 已提交
92
			n = n->rb_left;
93
		else if (file_offset >= entry_end(entry))
C
Chris Mason 已提交
94 95 96 97 98 99 100
			n = n->rb_right;
		else
			return n;
	}
	if (!prev_ret)
		return NULL;

C
Chris Mason 已提交
101
	while (prev && file_offset >= entry_end(prev_entry)) {
102 103 104 105 106 107 108 109 110 111 112 113 114
		test = rb_next(prev);
		if (!test)
			break;
		prev_entry = rb_entry(test, struct btrfs_ordered_extent,
				      rb_node);
		if (file_offset < entry_end(prev_entry))
			break;

		prev = test;
	}
	if (prev)
		prev_entry = rb_entry(prev, struct btrfs_ordered_extent,
				      rb_node);
C
Chris Mason 已提交
115
	while (prev && file_offset < entry_end(prev_entry)) {
116 117 118 119 120 121
		test = rb_prev(prev);
		if (!test)
			break;
		prev_entry = rb_entry(test, struct btrfs_ordered_extent,
				      rb_node);
		prev = test;
C
Chris Mason 已提交
122 123 124 125 126
	}
	*prev_ret = prev;
	return NULL;
}

C
Chris Mason 已提交
127 128 129
/*
 * helper to check if a given offset is inside a given entry
 */
130 131 132 133 134 135 136 137
static int offset_in_entry(struct btrfs_ordered_extent *entry, u64 file_offset)
{
	if (file_offset < entry->file_offset ||
	    entry->file_offset + entry->len <= file_offset)
		return 0;
	return 1;
}

138 139 140 141 142 143 144 145 146
static int range_overlaps(struct btrfs_ordered_extent *entry, u64 file_offset,
			  u64 len)
{
	if (file_offset + len <= entry->file_offset ||
	    entry->file_offset + entry->len <= file_offset)
		return 0;
	return 1;
}

C
Chris Mason 已提交
147 148 149 150
/*
 * look find the first ordered struct that has this offset, otherwise
 * the first one less than this offset
 */
151 152
static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree,
					  u64 file_offset)
C
Chris Mason 已提交
153
{
154
	struct rb_root *root = &tree->tree;
155
	struct rb_node *prev = NULL;
C
Chris Mason 已提交
156
	struct rb_node *ret;
157 158 159 160 161 162 163 164 165
	struct btrfs_ordered_extent *entry;

	if (tree->last) {
		entry = rb_entry(tree->last, struct btrfs_ordered_extent,
				 rb_node);
		if (offset_in_entry(entry, file_offset))
			return tree->last;
	}
	ret = __tree_search(root, file_offset, &prev);
C
Chris Mason 已提交
166
	if (!ret)
167 168 169
		ret = prev;
	if (ret)
		tree->last = ret;
C
Chris Mason 已提交
170 171 172
	return ret;
}

173 174 175 176 177 178 179 180 181 182 183
/* allocate and add a new ordered_extent into the per-inode tree.
 * file_offset is the logical offset in the file
 *
 * start is the disk block number of an extent already reserved in the
 * extent allocation tree
 *
 * len is the length of the extent
 *
 * The tree is given a single reference on the ordered extent that was
 * inserted.
 */
184 185
static int __btrfs_add_ordered_extent(struct inode *inode, u64 file_offset,
				      u64 start, u64 len, u64 disk_len,
186
				      int type, int dio, int compress_type)
C
Chris Mason 已提交
187
{
188
	struct btrfs_root *root = BTRFS_I(inode)->root;
C
Chris Mason 已提交
189
	struct btrfs_ordered_inode_tree *tree;
190 191
	struct rb_node *node;
	struct btrfs_ordered_extent *entry;
C
Chris Mason 已提交
192

193
	tree = &BTRFS_I(inode)->ordered_tree;
194
	entry = kmem_cache_zalloc(btrfs_ordered_extent_cache, GFP_NOFS);
C
Chris Mason 已提交
195 196 197
	if (!entry)
		return -ENOMEM;

198 199 200
	entry->file_offset = file_offset;
	entry->start = start;
	entry->len = len;
C
Chris Mason 已提交
201
	entry->disk_len = disk_len;
202
	entry->bytes_left = len;
203
	entry->inode = igrab(inode);
204
	entry->compress_type = compress_type;
205
	entry->truncated_len = (u64)-1;
Y
Yan Zheng 已提交
206
	if (type != BTRFS_ORDERED_IO_DONE && type != BTRFS_ORDERED_COMPLETE)
Y
Yan Zheng 已提交
207
		set_bit(type, &entry->flags);
208

209 210 211
	if (dio)
		set_bit(BTRFS_ORDERED_DIRECT, &entry->flags);

212 213 214 215
	/* one ref for the tree */
	atomic_set(&entry->refs, 1);
	init_waitqueue_head(&entry->wait);
	INIT_LIST_HEAD(&entry->list);
216
	INIT_LIST_HEAD(&entry->root_extent_list);
217 218
	INIT_LIST_HEAD(&entry->work_list);
	init_completion(&entry->completion);
219
	INIT_LIST_HEAD(&entry->log_list);
220
	INIT_LIST_HEAD(&entry->trans_list);
C
Chris Mason 已提交
221

222 223
	trace_btrfs_ordered_extent_add(inode, entry);

224
	spin_lock_irq(&tree->lock);
225 226
	node = tree_insert(&tree->tree, file_offset,
			   &entry->rb_node);
227 228
	if (node)
		ordered_data_tree_panic(inode, -EEXIST, file_offset);
229
	spin_unlock_irq(&tree->lock);
C
Chris Mason 已提交
230

231
	spin_lock(&root->ordered_extent_lock);
232
	list_add_tail(&entry->root_extent_list,
233 234 235 236 237 238 239 240 241 242
		      &root->ordered_extents);
	root->nr_ordered_extents++;
	if (root->nr_ordered_extents == 1) {
		spin_lock(&root->fs_info->ordered_root_lock);
		BUG_ON(!list_empty(&root->ordered_root));
		list_add_tail(&root->ordered_root,
			      &root->fs_info->ordered_roots);
		spin_unlock(&root->fs_info->ordered_root_lock);
	}
	spin_unlock(&root->ordered_extent_lock);
243

C
Chris Mason 已提交
244 245 246
	return 0;
}

247 248 249 250
int btrfs_add_ordered_extent(struct inode *inode, u64 file_offset,
			     u64 start, u64 len, u64 disk_len, int type)
{
	return __btrfs_add_ordered_extent(inode, file_offset, start, len,
251 252
					  disk_len, type, 0,
					  BTRFS_COMPRESS_NONE);
253 254 255 256 257 258
}

int btrfs_add_ordered_extent_dio(struct inode *inode, u64 file_offset,
				 u64 start, u64 len, u64 disk_len, int type)
{
	return __btrfs_add_ordered_extent(inode, file_offset, start, len,
259 260 261 262 263 264 265 266 267 268 269
					  disk_len, type, 1,
					  BTRFS_COMPRESS_NONE);
}

int btrfs_add_ordered_extent_compress(struct inode *inode, u64 file_offset,
				      u64 start, u64 len, u64 disk_len,
				      int type, int compress_type)
{
	return __btrfs_add_ordered_extent(inode, file_offset, start, len,
					  disk_len, type, 0,
					  compress_type);
270 271
}

272 273
/*
 * Add a struct btrfs_ordered_sum into the list of checksums to be inserted
274 275
 * when an ordered extent is finished.  If the list covers more than one
 * ordered extent, it is split across multiples.
276
 */
277 278 279
void btrfs_add_ordered_sum(struct inode *inode,
			   struct btrfs_ordered_extent *entry,
			   struct btrfs_ordered_sum *sum)
C
Chris Mason 已提交
280
{
281
	struct btrfs_ordered_inode_tree *tree;
C
Chris Mason 已提交
282

283
	tree = &BTRFS_I(inode)->ordered_tree;
284
	spin_lock_irq(&tree->lock);
285
	list_add_tail(&sum->list, &entry->list);
286
	spin_unlock_irq(&tree->lock);
C
Chris Mason 已提交
287 288
}

289 290 291 292 293 294 295 296 297 298 299 300 301 302
/*
 * this is used to account for finished IO across a given range
 * of the file.  The IO may span ordered extents.  If
 * a given ordered_extent is completely done, 1 is returned, otherwise
 * 0.
 *
 * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used
 * to make sure this function only returns 1 once for a given ordered extent.
 *
 * file_offset is updated to one byte past the range that is recorded as
 * complete.  This allows you to walk forward in the file.
 */
int btrfs_dec_test_first_ordered_pending(struct inode *inode,
				   struct btrfs_ordered_extent **cached,
303
				   u64 *file_offset, u64 io_size, int uptodate)
304 305 306 307 308
{
	struct btrfs_ordered_inode_tree *tree;
	struct rb_node *node;
	struct btrfs_ordered_extent *entry = NULL;
	int ret;
309
	unsigned long flags;
310 311 312 313 314
	u64 dec_end;
	u64 dec_start;
	u64 to_dec;

	tree = &BTRFS_I(inode)->ordered_tree;
315
	spin_lock_irqsave(&tree->lock, flags);
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
	node = tree_search(tree, *file_offset);
	if (!node) {
		ret = 1;
		goto out;
	}

	entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
	if (!offset_in_entry(entry, *file_offset)) {
		ret = 1;
		goto out;
	}

	dec_start = max(*file_offset, entry->file_offset);
	dec_end = min(*file_offset + io_size, entry->file_offset +
		      entry->len);
	*file_offset = dec_end;
	if (dec_start > dec_end) {
333 334
		btrfs_crit(BTRFS_I(inode)->root->fs_info,
			"bad ordering dec_start %llu end %llu", dec_start, dec_end);
335 336 337
	}
	to_dec = dec_end - dec_start;
	if (to_dec > entry->bytes_left) {
338 339 340
		btrfs_crit(BTRFS_I(inode)->root->fs_info,
			"bad ordered accounting left %llu size %llu",
			entry->bytes_left, to_dec);
341 342
	}
	entry->bytes_left -= to_dec;
343 344 345
	if (!uptodate)
		set_bit(BTRFS_ORDERED_IOERR, &entry->flags);

346
	if (entry->bytes_left == 0) {
347
		ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
348 349 350
		if (waitqueue_active(&entry->wait))
			wake_up(&entry->wait);
	} else {
351
		ret = 1;
352
	}
353 354 355 356 357
out:
	if (!ret && cached && entry) {
		*cached = entry;
		atomic_inc(&entry->refs);
	}
358
	spin_unlock_irqrestore(&tree->lock, flags);
359 360 361
	return ret == 0;
}

362 363 364 365 366 367 368 369 370
/*
 * this is used to account for finished IO across a given range
 * of the file.  The IO should not span ordered extents.  If
 * a given ordered_extent is completely done, 1 is returned, otherwise
 * 0.
 *
 * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used
 * to make sure this function only returns 1 once for a given ordered extent.
 */
371
int btrfs_dec_test_ordered_pending(struct inode *inode,
372
				   struct btrfs_ordered_extent **cached,
373
				   u64 file_offset, u64 io_size, int uptodate)
C
Chris Mason 已提交
374
{
375
	struct btrfs_ordered_inode_tree *tree;
C
Chris Mason 已提交
376
	struct rb_node *node;
377
	struct btrfs_ordered_extent *entry = NULL;
378
	unsigned long flags;
379 380 381
	int ret;

	tree = &BTRFS_I(inode)->ordered_tree;
382 383 384 385 386 387
	spin_lock_irqsave(&tree->lock, flags);
	if (cached && *cached) {
		entry = *cached;
		goto have_entry;
	}

388
	node = tree_search(tree, file_offset);
C
Chris Mason 已提交
389
	if (!node) {
390 391
		ret = 1;
		goto out;
C
Chris Mason 已提交
392 393
	}

394
	entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
395
have_entry:
396 397 398
	if (!offset_in_entry(entry, file_offset)) {
		ret = 1;
		goto out;
C
Chris Mason 已提交
399
	}
400

401
	if (io_size > entry->bytes_left) {
402 403
		btrfs_crit(BTRFS_I(inode)->root->fs_info,
			   "bad ordered accounting left %llu size %llu",
404
		       entry->bytes_left, io_size);
405 406
	}
	entry->bytes_left -= io_size;
407 408 409
	if (!uptodate)
		set_bit(BTRFS_ORDERED_IOERR, &entry->flags);

410
	if (entry->bytes_left == 0) {
411
		ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
412 413 414
		if (waitqueue_active(&entry->wait))
			wake_up(&entry->wait);
	} else {
415
		ret = 1;
416
	}
417
out:
418 419 420 421
	if (!ret && cached && entry) {
		*cached = entry;
		atomic_inc(&entry->refs);
	}
422
	spin_unlock_irqrestore(&tree->lock, flags);
423 424
	return ret == 0;
}
C
Chris Mason 已提交
425

426
/* Needs to either be called under a log transaction or the log_mutex */
427
void btrfs_get_logged_extents(struct inode *inode,
428 429 430
			      struct list_head *logged_list,
			      const loff_t start,
			      const loff_t end)
431 432 433 434
{
	struct btrfs_ordered_inode_tree *tree;
	struct btrfs_ordered_extent *ordered;
	struct rb_node *n;
435
	struct rb_node *prev;
436 437 438

	tree = &BTRFS_I(inode)->ordered_tree;
	spin_lock_irq(&tree->lock);
439 440 441 442
	n = __tree_search(&tree->tree, end, &prev);
	if (!n)
		n = prev;
	for (; n; n = rb_prev(n)) {
443
		ordered = rb_entry(n, struct btrfs_ordered_extent, rb_node);
444 445 446 447
		if (ordered->file_offset > end)
			continue;
		if (entry_end(ordered) <= start)
			break;
448
		if (test_and_set_bit(BTRFS_ORDERED_LOGGED, &ordered->flags))
449
			continue;
450
		list_add(&ordered->log_list, logged_list);
451
		atomic_inc(&ordered->refs);
452 453 454 455
	}
	spin_unlock_irq(&tree->lock);
}

456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
void btrfs_put_logged_extents(struct list_head *logged_list)
{
	struct btrfs_ordered_extent *ordered;

	while (!list_empty(logged_list)) {
		ordered = list_first_entry(logged_list,
					   struct btrfs_ordered_extent,
					   log_list);
		list_del_init(&ordered->log_list);
		btrfs_put_ordered_extent(ordered);
	}
}

void btrfs_submit_logged_extents(struct list_head *logged_list,
				 struct btrfs_root *log)
{
	int index = log->log_transid % 2;

	spin_lock_irq(&log->log_extents_lock[index]);
	list_splice_tail(logged_list, &log->logged_list[index]);
	spin_unlock_irq(&log->log_extents_lock[index]);
}

479 480
void btrfs_wait_logged_extents(struct btrfs_trans_handle *trans,
			       struct btrfs_root *log, u64 transid)
481 482 483 484 485 486 487 488 489 490 491
{
	struct btrfs_ordered_extent *ordered;
	int index = transid % 2;

	spin_lock_irq(&log->log_extents_lock[index]);
	while (!list_empty(&log->logged_list[index])) {
		ordered = list_first_entry(&log->logged_list[index],
					   struct btrfs_ordered_extent,
					   log_list);
		list_del_init(&ordered->log_list);
		spin_unlock_irq(&log->log_extents_lock[index]);
492 493 494 495 496 497 498 499 500 501

		if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
		    !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
			struct inode *inode = ordered->inode;
			u64 start = ordered->file_offset;
			u64 end = ordered->file_offset + ordered->len - 1;

			WARN_ON(!inode);
			filemap_fdatawrite_range(inode->i_mapping, start, end);
		}
502 503
		wait_event(ordered->wait, test_bit(BTRFS_ORDERED_IO_DONE,
						   &ordered->flags));
504

505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
		/*
		 * If our ordered extent completed it means it updated the
		 * fs/subvol and csum trees already, so no need to make the
		 * current transaction's commit wait for it, as we end up
		 * holding memory unnecessarily and delaying the inode's iput
		 * until the transaction commit (we schedule an iput for the
		 * inode when the ordered extent's refcount drops to 0), which
		 * prevents it from being evictable until the transaction
		 * commits.
		 */
		if (test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags))
			btrfs_put_ordered_extent(ordered);
		else
			list_add_tail(&ordered->trans_list, &trans->ordered);

520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
		spin_lock_irq(&log->log_extents_lock[index]);
	}
	spin_unlock_irq(&log->log_extents_lock[index]);
}

void btrfs_free_logged_extents(struct btrfs_root *log, u64 transid)
{
	struct btrfs_ordered_extent *ordered;
	int index = transid % 2;

	spin_lock_irq(&log->log_extents_lock[index]);
	while (!list_empty(&log->logged_list[index])) {
		ordered = list_first_entry(&log->logged_list[index],
					   struct btrfs_ordered_extent,
					   log_list);
		list_del_init(&ordered->log_list);
		spin_unlock_irq(&log->log_extents_lock[index]);
		btrfs_put_ordered_extent(ordered);
		spin_lock_irq(&log->log_extents_lock[index]);
	}
	spin_unlock_irq(&log->log_extents_lock[index]);
}

543 544 545 546
/*
 * used to drop a reference on an ordered extent.  This will free
 * the extent if the last reference is dropped
 */
547
void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry)
548
{
549 550 551
	struct list_head *cur;
	struct btrfs_ordered_sum *sum;

552 553
	trace_btrfs_ordered_extent_put(entry->inode, entry);

554
	if (atomic_dec_and_test(&entry->refs)) {
555 556
		if (entry->inode)
			btrfs_add_delayed_iput(entry->inode);
C
Chris Mason 已提交
557
		while (!list_empty(&entry->list)) {
558 559 560 561 562
			cur = entry->list.next;
			sum = list_entry(cur, struct btrfs_ordered_sum, list);
			list_del(&sum->list);
			kfree(sum);
		}
563
		kmem_cache_free(btrfs_ordered_extent_cache, entry);
564
	}
C
Chris Mason 已提交
565
}
566

567 568
/*
 * remove an ordered extent from the tree.  No references are dropped
569
 * and waiters are woken up.
570
 */
571 572
void btrfs_remove_ordered_extent(struct inode *inode,
				 struct btrfs_ordered_extent *entry)
573
{
574
	struct btrfs_ordered_inode_tree *tree;
575
	struct btrfs_root *root = BTRFS_I(inode)->root;
576 577
	struct rb_node *node;

578
	tree = &BTRFS_I(inode)->ordered_tree;
579
	spin_lock_irq(&tree->lock);
580
	node = &entry->rb_node;
581
	rb_erase(node, &tree->tree);
582 583
	if (tree->last == node)
		tree->last = NULL;
584
	set_bit(BTRFS_ORDERED_COMPLETE, &entry->flags);
585
	spin_unlock_irq(&tree->lock);
586

587
	spin_lock(&root->ordered_extent_lock);
588
	list_del_init(&entry->root_extent_list);
589
	root->nr_ordered_extents--;
590

591 592
	trace_btrfs_ordered_extent_remove(inode, entry);

593 594 595 596 597 598 599
	if (!root->nr_ordered_extents) {
		spin_lock(&root->fs_info->ordered_root_lock);
		BUG_ON(list_empty(&root->ordered_root));
		list_del_init(&root->ordered_root);
		spin_unlock(&root->fs_info->ordered_root_lock);
	}
	spin_unlock(&root->ordered_extent_lock);
600
	wake_up(&entry->wait);
601 602
}

603
static void btrfs_run_ordered_extent_work(struct btrfs_work *work)
604 605 606 607 608 609 610 611
{
	struct btrfs_ordered_extent *ordered;

	ordered = container_of(work, struct btrfs_ordered_extent, flush_work);
	btrfs_start_ordered_extent(ordered->inode, ordered, 1);
	complete(&ordered->completion);
}

C
Chris Mason 已提交
612 613 614 615
/*
 * wait for all the ordered extents in a root.  This is done when balancing
 * space between drives.
 */
616
int btrfs_wait_ordered_extents(struct btrfs_root *root, int nr)
617
{
618 619
	struct list_head splice, works;
	struct btrfs_ordered_extent *ordered, *next;
620
	int count = 0;
621 622

	INIT_LIST_HEAD(&splice);
623
	INIT_LIST_HEAD(&works);
624

625
	mutex_lock(&root->ordered_extent_mutex);
626 627
	spin_lock(&root->ordered_extent_lock);
	list_splice_init(&root->ordered_extents, &splice);
628
	while (!list_empty(&splice) && nr) {
629 630 631 632 633 634
		ordered = list_first_entry(&splice, struct btrfs_ordered_extent,
					   root_extent_list);
		list_move_tail(&ordered->root_extent_list,
			       &root->ordered_extents);
		atomic_inc(&ordered->refs);
		spin_unlock(&root->ordered_extent_lock);
635

636
		btrfs_init_work(&ordered->flush_work,
637
				btrfs_flush_delalloc_helper,
638
				btrfs_run_ordered_extent_work, NULL, NULL);
639
		list_add_tail(&ordered->work_list, &works);
640 641
		btrfs_queue_work(root->fs_info->flush_workers,
				 &ordered->flush_work);
642

643
		cond_resched();
644
		spin_lock(&root->ordered_extent_lock);
645 646 647
		if (nr != -1)
			nr--;
		count++;
648
	}
649
	list_splice_tail(&splice, &root->ordered_extents);
650
	spin_unlock(&root->ordered_extent_lock);
651 652 653 654 655 656 657

	list_for_each_entry_safe(ordered, next, &works, work_list) {
		list_del_init(&ordered->work_list);
		wait_for_completion(&ordered->completion);
		btrfs_put_ordered_extent(ordered);
		cond_resched();
	}
658
	mutex_unlock(&root->ordered_extent_mutex);
659 660

	return count;
661 662
}

663
void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, int nr)
664 665 666
{
	struct btrfs_root *root;
	struct list_head splice;
667
	int done;
668 669 670

	INIT_LIST_HEAD(&splice);

671
	mutex_lock(&fs_info->ordered_operations_mutex);
672 673
	spin_lock(&fs_info->ordered_root_lock);
	list_splice_init(&fs_info->ordered_roots, &splice);
674
	while (!list_empty(&splice) && nr) {
675 676 677 678 679 680 681 682
		root = list_first_entry(&splice, struct btrfs_root,
					ordered_root);
		root = btrfs_grab_fs_root(root);
		BUG_ON(!root);
		list_move_tail(&root->ordered_root,
			       &fs_info->ordered_roots);
		spin_unlock(&fs_info->ordered_root_lock);

683
		done = btrfs_wait_ordered_extents(root, nr);
684 685 686
		btrfs_put_fs_root(root);

		spin_lock(&fs_info->ordered_root_lock);
687 688 689 690
		if (nr != -1) {
			nr -= done;
			WARN_ON(nr < 0);
		}
691
	}
692
	list_splice_tail(&splice, &fs_info->ordered_roots);
693
	spin_unlock(&fs_info->ordered_root_lock);
694
	mutex_unlock(&fs_info->ordered_operations_mutex);
695 696
}

697 698 699 700 701 702 703 704 705 706
/*
 * Used to start IO or wait for a given ordered extent to finish.
 *
 * If wait is one, this effectively waits on page writeback for all the pages
 * in the extent, and it waits on the io completion code to insert
 * metadata into the btree corresponding to the extent
 */
void btrfs_start_ordered_extent(struct inode *inode,
				       struct btrfs_ordered_extent *entry,
				       int wait)
707 708 709
{
	u64 start = entry->file_offset;
	u64 end = start + entry->len - 1;
710

711 712
	trace_btrfs_ordered_extent_start(inode, entry);

713 714 715
	/*
	 * pages in the range can be dirty, clean or writeback.  We
	 * start IO on any dirty ones so the wait doesn't stall waiting
716
	 * for the flusher thread to find them
717
	 */
718 719
	if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
		filemap_fdatawrite_range(inode->i_mapping, start, end);
C
Chris Mason 已提交
720
	if (wait) {
721 722
		wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE,
						 &entry->flags));
C
Chris Mason 已提交
723
	}
724
}
725

726 727 728
/*
 * Used to wait on ordered extents across a large range of bytes.
 */
729
int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len)
730
{
731
	int ret = 0;
732
	int ret_wb = 0;
733
	u64 end;
734
	u64 orig_end;
735
	struct btrfs_ordered_extent *ordered;
736 737

	if (start + len < start) {
738
		orig_end = INT_LIMIT(loff_t);
739 740
	} else {
		orig_end = start + len - 1;
741 742
		if (orig_end > INT_LIMIT(loff_t))
			orig_end = INT_LIMIT(loff_t);
743
	}
744

745 746 747
	/* start IO across the range first to instantiate any delalloc
	 * extents
	 */
748
	ret = btrfs_fdatawrite_range(inode, start, orig_end);
749 750
	if (ret)
		return ret;
751

752 753 754 755 756 757 758 759
	/*
	 * If we have a writeback error don't return immediately. Wait first
	 * for any ordered extents that haven't completed yet. This is to make
	 * sure no one can dirty the same page ranges and call writepages()
	 * before the ordered extents complete - to avoid failures (-EEXIST)
	 * when adding the new ordered extents to the ordered tree.
	 */
	ret_wb = filemap_fdatawait_range(inode->i_mapping, start, orig_end);
760

761
	end = orig_end;
C
Chris Mason 已提交
762
	while (1) {
763
		ordered = btrfs_lookup_first_ordered_extent(inode, end);
C
Chris Mason 已提交
764
		if (!ordered)
765
			break;
766
		if (ordered->file_offset > orig_end) {
767 768 769
			btrfs_put_ordered_extent(ordered);
			break;
		}
770
		if (ordered->file_offset + ordered->len <= start) {
771 772 773
			btrfs_put_ordered_extent(ordered);
			break;
		}
774
		btrfs_start_ordered_extent(inode, ordered, 1);
775
		end = ordered->file_offset;
776 777
		if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))
			ret = -EIO;
778
		btrfs_put_ordered_extent(ordered);
779
		if (ret || end == 0 || end == start)
780 781 782
			break;
		end--;
	}
783
	return ret_wb ? ret_wb : ret;
784 785
}

786 787 788 789
/*
 * find an ordered extent corresponding to file_offset.  return NULL if
 * nothing is found, otherwise take a reference on the extent and return it
 */
790 791 792 793 794 795 796 797
struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct inode *inode,
							 u64 file_offset)
{
	struct btrfs_ordered_inode_tree *tree;
	struct rb_node *node;
	struct btrfs_ordered_extent *entry = NULL;

	tree = &BTRFS_I(inode)->ordered_tree;
798
	spin_lock_irq(&tree->lock);
799 800 801 802 803 804 805 806 807 808
	node = tree_search(tree, file_offset);
	if (!node)
		goto out;

	entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
	if (!offset_in_entry(entry, file_offset))
		entry = NULL;
	if (entry)
		atomic_inc(&entry->refs);
out:
809
	spin_unlock_irq(&tree->lock);
810 811 812
	return entry;
}

813 814 815 816 817 818 819 820 821 822 823 824
/* Since the DIO code tries to lock a wide area we need to look for any ordered
 * extents that exist in the range, rather than just the start of the range.
 */
struct btrfs_ordered_extent *btrfs_lookup_ordered_range(struct inode *inode,
							u64 file_offset,
							u64 len)
{
	struct btrfs_ordered_inode_tree *tree;
	struct rb_node *node;
	struct btrfs_ordered_extent *entry = NULL;

	tree = &BTRFS_I(inode)->ordered_tree;
825
	spin_lock_irq(&tree->lock);
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
	node = tree_search(tree, file_offset);
	if (!node) {
		node = tree_search(tree, file_offset + len);
		if (!node)
			goto out;
	}

	while (1) {
		entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
		if (range_overlaps(entry, file_offset, len))
			break;

		if (entry->file_offset >= file_offset + len) {
			entry = NULL;
			break;
		}
		entry = NULL;
		node = rb_next(node);
		if (!node)
			break;
	}
out:
	if (entry)
		atomic_inc(&entry->refs);
850
	spin_unlock_irq(&tree->lock);
851 852 853
	return entry;
}

854 855 856 857 858 859 860 861 862 863 864 865 866 867
bool btrfs_have_ordered_extents_in_range(struct inode *inode,
					 u64 file_offset,
					 u64 len)
{
	struct btrfs_ordered_extent *oe;

	oe = btrfs_lookup_ordered_range(inode, file_offset, len);
	if (oe) {
		btrfs_put_ordered_extent(oe);
		return true;
	}
	return false;
}

868 869 870 871
/*
 * lookup and return any extent before 'file_offset'.  NULL is returned
 * if none is found
 */
872
struct btrfs_ordered_extent *
C
Chris Mason 已提交
873
btrfs_lookup_first_ordered_extent(struct inode *inode, u64 file_offset)
874 875 876 877 878 879
{
	struct btrfs_ordered_inode_tree *tree;
	struct rb_node *node;
	struct btrfs_ordered_extent *entry = NULL;

	tree = &BTRFS_I(inode)->ordered_tree;
880
	spin_lock_irq(&tree->lock);
881 882 883 884 885 886 887
	node = tree_search(tree, file_offset);
	if (!node)
		goto out;

	entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
	atomic_inc(&entry->refs);
out:
888
	spin_unlock_irq(&tree->lock);
889
	return entry;
890
}
891

892 893 894 895
/*
 * After an extent is done, call this to conditionally update the on disk
 * i_size.  i_size is updated to cover any fully written part of the file.
 */
896
int btrfs_ordered_update_i_size(struct inode *inode, u64 offset,
897 898 899 900 901
				struct btrfs_ordered_extent *ordered)
{
	struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
	u64 disk_i_size;
	u64 new_i_size;
902
	u64 i_size = i_size_read(inode);
903
	struct rb_node *node;
904
	struct rb_node *prev = NULL;
905
	struct btrfs_ordered_extent *test;
906 907
	int ret = 1;

908 909
	spin_lock_irq(&tree->lock);
	if (ordered) {
910
		offset = entry_end(ordered);
911 912 913 914 915
		if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags))
			offset = min(offset,
				     ordered->file_offset +
				     ordered->truncated_len);
	} else {
916
		offset = ALIGN(offset, BTRFS_I(inode)->root->sectorsize);
917
	}
918 919
	disk_i_size = BTRFS_I(inode)->disk_i_size;

920 921 922 923 924 925 926
	/* truncate file */
	if (disk_i_size > i_size) {
		BTRFS_I(inode)->disk_i_size = i_size;
		ret = 0;
		goto out;
	}

927 928 929 930
	/*
	 * if the disk i_size is already at the inode->i_size, or
	 * this ordered extent is inside the disk i_size, we're done
	 */
J
Josef Bacik 已提交
931 932 933 934 935 936 937 938 939
	if (disk_i_size == i_size)
		goto out;

	/*
	 * We still need to update disk_i_size if outstanding_isize is greater
	 * than disk_i_size.
	 */
	if (offset <= disk_i_size &&
	    (!ordered || ordered->outstanding_isize <= disk_i_size))
940 941 942 943 944 945 946
		goto out;

	/*
	 * walk backward from this ordered extent to disk_i_size.
	 * if we find an ordered extent then we can't update disk i_size
	 * yet
	 */
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
	if (ordered) {
		node = rb_prev(&ordered->rb_node);
	} else {
		prev = tree_search(tree, offset);
		/*
		 * we insert file extents without involving ordered struct,
		 * so there should be no ordered struct cover this offset
		 */
		if (prev) {
			test = rb_entry(prev, struct btrfs_ordered_extent,
					rb_node);
			BUG_ON(offset_in_entry(test, offset));
		}
		node = prev;
	}
962
	for (; node; node = rb_prev(node)) {
963
		test = rb_entry(node, struct btrfs_ordered_extent, rb_node);
964 965 966 967

		/* We treat this entry as if it doesnt exist */
		if (test_bit(BTRFS_ORDERED_UPDATED_ISIZE, &test->flags))
			continue;
968 969
		if (test->file_offset + test->len <= disk_i_size)
			break;
970
		if (test->file_offset >= i_size)
971
			break;
972
		if (entry_end(test) > disk_i_size) {
973 974 975 976 977 978 979 980 981 982 983 984
			/*
			 * we don't update disk_i_size now, so record this
			 * undealt i_size. Or we will not know the real
			 * i_size.
			 */
			if (test->outstanding_isize < offset)
				test->outstanding_isize = offset;
			if (ordered &&
			    ordered->outstanding_isize >
			    test->outstanding_isize)
				test->outstanding_isize =
						ordered->outstanding_isize;
985
			goto out;
986
		}
987
	}
988
	new_i_size = min_t(u64, offset, i_size);
989 990

	/*
991 992
	 * Some ordered extents may completed before the current one, and
	 * we hold the real i_size in ->outstanding_isize.
993
	 */
994 995
	if (ordered && ordered->outstanding_isize > new_i_size)
		new_i_size = min_t(u64, ordered->outstanding_isize, i_size);
996
	BTRFS_I(inode)->disk_i_size = new_i_size;
997
	ret = 0;
998
out:
999
	/*
1000 1001 1002 1003 1004
	 * We need to do this because we can't remove ordered extents until
	 * after the i_disk_size has been updated and then the inode has been
	 * updated to reflect the change, so we need to tell anybody who finds
	 * this ordered extent that we've already done all the real work, we
	 * just haven't completed all the other work.
1005 1006
	 */
	if (ordered)
1007 1008
		set_bit(BTRFS_ORDERED_UPDATED_ISIZE, &ordered->flags);
	spin_unlock_irq(&tree->lock);
1009
	return ret;
1010
}
1011

1012 1013 1014 1015 1016
/*
 * search the ordered extents for one corresponding to 'offset' and
 * try to find a checksum.  This is used because we allow pages to
 * be reclaimed before their checksum is actually put into the btree
 */
1017
int btrfs_find_ordered_sum(struct inode *inode, u64 offset, u64 disk_bytenr,
1018
			   u32 *sum, int len)
1019 1020 1021 1022
{
	struct btrfs_ordered_sum *ordered_sum;
	struct btrfs_ordered_extent *ordered;
	struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
1023 1024 1025
	unsigned long num_sectors;
	unsigned long i;
	u32 sectorsize = BTRFS_I(inode)->root->sectorsize;
1026
	int index = 0;
1027 1028 1029

	ordered = btrfs_lookup_ordered_extent(inode, offset);
	if (!ordered)
1030
		return 0;
1031

1032
	spin_lock_irq(&tree->lock);
Q
Qinghuang Feng 已提交
1033
	list_for_each_entry_reverse(ordered_sum, &ordered->list, list) {
1034 1035 1036 1037 1038 1039
		if (disk_bytenr >= ordered_sum->bytenr &&
		    disk_bytenr < ordered_sum->bytenr + ordered_sum->len) {
			i = (disk_bytenr - ordered_sum->bytenr) >>
			    inode->i_sb->s_blocksize_bits;
			num_sectors = ordered_sum->len >>
				      inode->i_sb->s_blocksize_bits;
1040 1041 1042 1043 1044 1045 1046 1047
			num_sectors = min_t(int, len - index, num_sectors - i);
			memcpy(sum + index, ordered_sum->sums + i,
			       num_sectors);

			index += (int)num_sectors;
			if (index == len)
				goto out;
			disk_bytenr += num_sectors * sectorsize;
1048 1049 1050
		}
	}
out:
1051
	spin_unlock_irq(&tree->lock);
1052
	btrfs_put_ordered_extent(ordered);
1053
	return index;
1054 1055
}

1056 1057 1058 1059 1060 1061 1062 1063
int __init ordered_data_init(void)
{
	btrfs_ordered_extent_cache = kmem_cache_create("btrfs_ordered_extent",
				     sizeof(struct btrfs_ordered_extent), 0,
				     SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
				     NULL);
	if (!btrfs_ordered_extent_cache)
		return -ENOMEM;
1064

1065 1066 1067 1068 1069 1070 1071 1072
	return 0;
}

void ordered_data_exit(void)
{
	if (btrfs_ordered_extent_cache)
		kmem_cache_destroy(btrfs_ordered_extent_cache);
}