extents_status.c 48.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9 10 11 12
/*
 *  fs/ext4/extents_status.c
 *
 * Written by Yongqiang Yang <xiaoqiangnk@gmail.com>
 * Modified by
 *	Allison Henderson <achender@linux.vnet.ibm.com>
 *	Hugh Dickins <hughd@google.com>
 *	Zheng Liu <wenqing.lz@taobao.com>
 *
 * Ext4 extents status tree core functions.
 */
13
#include <linux/list_sort.h>
14 15
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
16 17
#include "ext4.h"

18 19
#include <trace/events/ext4.h>

20 21 22 23 24 25 26
/*
 * According to previous discussion in Ext4 Developer Workshop, we
 * will introduce a new structure called io tree to track all extent
 * status in order to solve some problems that we have met
 * (e.g. Reservation space warning), and provide extent-level locking.
 * Delay extent tree is the first step to achieve this goal.  It is
 * original built by Yongqiang Yang.  At that time it is called delay
Z
Zheng Liu 已提交
27
 * extent tree, whose goal is only track delayed extents in memory to
28 29
 * simplify the implementation of fiemap and bigalloc, and introduce
 * lseek SEEK_DATA/SEEK_HOLE support.  That is why it is still called
Z
Zheng Liu 已提交
30 31
 * delay extent tree at the first commit.  But for better understand
 * what it does, it has been rename to extent status tree.
32
 *
Z
Zheng Liu 已提交
33 34 35 36
 * Step1:
 * Currently the first step has been done.  All delayed extents are
 * tracked in the tree.  It maintains the delayed extent when a delayed
 * allocation is issued, and the delayed extent is written out or
37 38 39 40 41
 * invalidated.  Therefore the implementation of fiemap and bigalloc
 * are simplified, and SEEK_DATA/SEEK_HOLE are introduced.
 *
 * The following comment describes the implemenmtation of extent
 * status tree and future works.
Z
Zheng Liu 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
 *
 * Step2:
 * In this step all extent status are tracked by extent status tree.
 * Thus, we can first try to lookup a block mapping in this tree before
 * finding it in extent tree.  Hence, single extent cache can be removed
 * because extent status tree can do a better job.  Extents in status
 * tree are loaded on-demand.  Therefore, the extent status tree may not
 * contain all of the extents in a file.  Meanwhile we define a shrinker
 * to reclaim memory from extent status tree because fragmented extent
 * tree will make status tree cost too much memory.  written/unwritten/-
 * hole extents in the tree will be reclaimed by this shrinker when we
 * are under high memory pressure.  Delayed extents will not be
 * reclimed because fiemap, bigalloc, and seek_data/hole need it.
55 56 57
 */

/*
Z
Zheng Liu 已提交
58
 * Extent status tree implementation for ext4.
59 60 61
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
62
 * Extent status tree tracks all extent status.
63
 *
Z
Zheng Liu 已提交
64
 * 1. Why we need to implement extent status tree?
65
 *
Z
Zheng Liu 已提交
66
 * Without extent status tree, ext4 identifies a delayed extent by looking
67 68 69
 * up page cache, this has several deficiencies - complicated, buggy,
 * and inefficient code.
 *
Z
Zheng Liu 已提交
70 71
 * FIEMAP, SEEK_HOLE/DATA, bigalloc, and writeout all need to know if a
 * block or a range of blocks are belonged to a delayed extent.
72
 *
Z
Zheng Liu 已提交
73
 * Let us have a look at how they do without extent status tree.
74 75 76 77 78 79 80 81 82 83 84 85 86 87
 *   --	FIEMAP
 *	FIEMAP looks up page cache to identify delayed allocations from holes.
 *
 *   --	SEEK_HOLE/DATA
 *	SEEK_HOLE/DATA has the same problem as FIEMAP.
 *
 *   --	bigalloc
 *	bigalloc looks up page cache to figure out if a block is
 *	already under delayed allocation or not to determine whether
 *	quota reserving is needed for the cluster.
 *
 *   --	writeout
 *	Writeout looks up whole page cache to see if a buffer is
 *	mapped, If there are not very many delayed buffers, then it is
88
 *	time consuming.
89
 *
Z
Zheng Liu 已提交
90
 * With extent status tree implementation, FIEMAP, SEEK_HOLE/DATA,
91 92
 * bigalloc and writeout can figure out if a block or a range of
 * blocks is under delayed allocation(belonged to a delayed extent) or
Z
Zheng Liu 已提交
93
 * not by searching the extent tree.
94 95 96
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
97 98 99 100 101 102 103 104
 * 2. Ext4 extent status tree impelmentation
 *
 *   --	extent
 *	A extent is a range of blocks which are contiguous logically and
 *	physically.  Unlike extent in extent tree, this extent in ext4 is
 *	a in-memory struct, there is no corresponding on-disk data.  There
 *	is no limit on length of extent, so an extent can contain as many
 *	blocks as they are contiguous logically and physically.
105
 *
Z
Zheng Liu 已提交
106 107 108 109
 *   --	extent status tree
 *	Every inode has an extent status tree and all allocation blocks
 *	are added to the tree with different status.  The extent in the
 *	tree are ordered by logical block no.
110
 *
Z
Zheng Liu 已提交
111 112 113
 *   --	operations on a extent status tree
 *	There are three important operations on a delayed extent tree: find
 *	next extent, adding a extent(a range of blocks) and removing a extent.
114
 *
Z
Zheng Liu 已提交
115 116
 *   --	race on a extent status tree
 *	Extent status tree is protected by inode->i_es_lock.
117
 *
Z
Zheng Liu 已提交
118 119 120 121
 *   --	memory consumption
 *      Fragmented extent tree will make extent status tree cost too much
 *      memory.  Hence, we will reclaim written/unwritten/hole extents from
 *      the tree under a heavy memory pressure.
122 123 124
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
125 126
 * 3. Performance analysis
 *
127 128 129 130 131 132 133 134 135 136 137 138
 *   --	overhead
 *	1. There is a cache extent for write access, so if writes are
 *	not very random, adding space operaions are in O(1) time.
 *
 *   --	gain
 *	2. Code is much simpler, more readable, more maintainable and
 *	more efficient.
 *
 *
 * ==========================================================================
 * 4. TODO list
 *
Z
Zheng Liu 已提交
139
 *   -- Refactor delayed space reservation
140 141 142 143 144
 *
 *   -- Extent-level locking
 */

static struct kmem_cache *ext4_es_cachep;
145
static struct kmem_cache *ext4_pending_cachep;
146

147 148
static int __es_insert_extent(struct inode *inode, struct extent_status *newes);
static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
Z
Zheng Liu 已提交
149
			      ext4_lblk_t end);
150
static int es_reclaim_extents(struct ext4_inode_info *ei, int *nr_to_scan);
151 152
static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
		       struct ext4_inode_info *locked_ei);
153 154
static void __revise_pending(struct inode *inode, ext4_lblk_t lblk,
			     ext4_lblk_t len);
Z
Zheng Liu 已提交
155

156 157
int __init ext4_init_es(void)
{
T
Theodore Ts'o 已提交
158 159 160
	ext4_es_cachep = kmem_cache_create("ext4_extent_status",
					   sizeof(struct extent_status),
					   0, (SLAB_RECLAIM_ACCOUNT), NULL);
161 162 163 164 165 166 167
	if (ext4_es_cachep == NULL)
		return -ENOMEM;
	return 0;
}

void ext4_exit_es(void)
{
168
	kmem_cache_destroy(ext4_es_cachep);
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
}

void ext4_es_init_tree(struct ext4_es_tree *tree)
{
	tree->root = RB_ROOT;
	tree->cache_es = NULL;
}

#ifdef ES_DEBUG__
static void ext4_es_print_tree(struct inode *inode)
{
	struct ext4_es_tree *tree;
	struct rb_node *node;

	printk(KERN_DEBUG "status extents for inode %lu:", inode->i_ino);
	tree = &EXT4_I(inode)->i_es_tree;
	node = rb_first(&tree->root);
	while (node) {
		struct extent_status *es;
		es = rb_entry(node, struct extent_status, rb_node);
189
		printk(KERN_DEBUG " [%u/%u) %llu %x",
190 191
		       es->es_lblk, es->es_len,
		       ext4_es_pblock(es), ext4_es_status(es));
192 193 194 195 196 197 198 199
		node = rb_next(node);
	}
	printk(KERN_DEBUG "\n");
}
#else
#define ext4_es_print_tree(inode)
#endif

Z
Zheng Liu 已提交
200
static inline ext4_lblk_t ext4_es_end(struct extent_status *es)
201
{
Z
Zheng Liu 已提交
202 203
	BUG_ON(es->es_lblk + es->es_len < es->es_lblk);
	return es->es_lblk + es->es_len - 1;
204 205 206 207 208 209 210
}

/*
 * search through the tree for an delayed extent with a given offset.  If
 * it can't be found, try to find next extent.
 */
static struct extent_status *__es_tree_search(struct rb_root *root,
Z
Zheng Liu 已提交
211
					      ext4_lblk_t lblk)
212 213 214 215 216 217
{
	struct rb_node *node = root->rb_node;
	struct extent_status *es = NULL;

	while (node) {
		es = rb_entry(node, struct extent_status, rb_node);
Z
Zheng Liu 已提交
218
		if (lblk < es->es_lblk)
219
			node = node->rb_left;
Z
Zheng Liu 已提交
220
		else if (lblk > ext4_es_end(es))
221 222 223 224 225
			node = node->rb_right;
		else
			return es;
	}

Z
Zheng Liu 已提交
226
	if (es && lblk < es->es_lblk)
227 228
		return es;

Z
Zheng Liu 已提交
229
	if (es && lblk > ext4_es_end(es)) {
230 231 232 233 234 235 236 237 238
		node = rb_next(&es->rb_node);
		return node ? rb_entry(node, struct extent_status, rb_node) :
			      NULL;
	}

	return NULL;
}

/*
239 240 241
 * ext4_es_find_extent_range - find extent with specified status within block
 *                             range or next extent following block range in
 *                             extents status tree
242
 *
243 244 245 246 247 248 249 250 251 252 253 254
 * @inode - file containing the range
 * @matching_fn - pointer to function that matches extents with desired status
 * @lblk - logical block defining start of range
 * @end - logical block defining end of range
 * @es - extent found, if any
 *
 * Find the first extent within the block range specified by @lblk and @end
 * in the extents status tree that satisfies @matching_fn.  If a match
 * is found, it's returned in @es.  If not, and a matching extent is found
 * beyond the block range, it's returned in @es.  If no match is found, an
 * extent is returned in @es whose es_lblk, es_len, and es_pblk components
 * are 0.
255
 */
256 257 258 259
static void __es_find_extent_range(struct inode *inode,
				   int (*matching_fn)(struct extent_status *es),
				   ext4_lblk_t lblk, ext4_lblk_t end,
				   struct extent_status *es)
260 261 262 263 264
{
	struct ext4_es_tree *tree = NULL;
	struct extent_status *es1 = NULL;
	struct rb_node *node;

265 266
	WARN_ON(es == NULL);
	WARN_ON(end < lblk);
267

268 269
	tree = &EXT4_I(inode)->i_es_tree;

270
	/* see if the extent has been cached */
271
	es->es_lblk = es->es_len = es->es_pblk = 0;
272 273
	if (tree->cache_es) {
		es1 = tree->cache_es;
274
		if (in_range(lblk, es1->es_lblk, es1->es_len)) {
275
			es_debug("%u cached by [%u/%u) %llu %x\n",
276
				 lblk, es1->es_lblk, es1->es_len,
277
				 ext4_es_pblock(es1), ext4_es_status(es1));
278 279 280 281
			goto out;
		}
	}

282
	es1 = __es_tree_search(&tree->root, lblk);
283 284

out:
285
	if (es1 && !matching_fn(es1)) {
286 287
		while ((node = rb_next(&es1->rb_node)) != NULL) {
			es1 = rb_entry(node, struct extent_status, rb_node);
Y
Yan, Zheng 已提交
288 289 290 291
			if (es1->es_lblk > end) {
				es1 = NULL;
				break;
			}
292
			if (matching_fn(es1))
293 294 295 296
				break;
		}
	}

297
	if (es1 && matching_fn(es1)) {
298
		tree->cache_es = es1;
Z
Zheng Liu 已提交
299 300
		es->es_lblk = es1->es_lblk;
		es->es_len = es1->es_len;
301
		es->es_pblk = es1->es_pblk;
302 303
	}

304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
}

/*
 * Locking for __es_find_extent_range() for external use
 */
void ext4_es_find_extent_range(struct inode *inode,
			       int (*matching_fn)(struct extent_status *es),
			       ext4_lblk_t lblk, ext4_lblk_t end,
			       struct extent_status *es)
{
	trace_ext4_es_find_extent_range_enter(inode, lblk);

	read_lock(&EXT4_I(inode)->i_es_lock);
	__es_find_extent_range(inode, matching_fn, lblk, end, es);
	read_unlock(&EXT4_I(inode)->i_es_lock);

	trace_ext4_es_find_extent_range_exit(inode, es);
}

/*
 * __es_scan_range - search block range for block with specified status
 *                   in extents status tree
 *
 * @inode - file containing the range
 * @matching_fn - pointer to function that matches extents with desired status
 * @lblk - logical block defining start of range
 * @end - logical block defining end of range
 *
 * Returns true if at least one block in the specified block range satisfies
 * the criterion specified by @matching_fn, and false if not.  If at least
 * one extent has the specified status, then there is at least one block
 * in the cluster with that status.  Should only be called by code that has
 * taken i_es_lock.
 */
static bool __es_scan_range(struct inode *inode,
			    int (*matching_fn)(struct extent_status *es),
			    ext4_lblk_t start, ext4_lblk_t end)
{
	struct extent_status es;

	__es_find_extent_range(inode, matching_fn, start, end, &es);
	if (es.es_len == 0)
		return false;   /* no matching extent in the tree */
	else if (es.es_lblk <= start &&
		 start < es.es_lblk + es.es_len)
		return true;
	else if (start <= es.es_lblk && es.es_lblk <= end)
		return true;
	else
		return false;
}
/*
 * Locking for __es_scan_range() for external use
 */
bool ext4_es_scan_range(struct inode *inode,
			int (*matching_fn)(struct extent_status *es),
			ext4_lblk_t lblk, ext4_lblk_t end)
{
	bool ret;

	read_lock(&EXT4_I(inode)->i_es_lock);
	ret = __es_scan_range(inode, matching_fn, lblk, end);
	read_unlock(&EXT4_I(inode)->i_es_lock);

	return ret;
}

/*
 * __es_scan_clu - search cluster for block with specified status in
 *                 extents status tree
 *
 * @inode - file containing the cluster
 * @matching_fn - pointer to function that matches extents with desired status
 * @lblk - logical block in cluster to be searched
 *
 * Returns true if at least one extent in the cluster containing @lblk
 * satisfies the criterion specified by @matching_fn, and false if not.  If at
 * least one extent has the specified status, then there is at least one block
 * in the cluster with that status.  Should only be called by code that has
 * taken i_es_lock.
 */
static bool __es_scan_clu(struct inode *inode,
			  int (*matching_fn)(struct extent_status *es),
			  ext4_lblk_t lblk)
{
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	ext4_lblk_t lblk_start, lblk_end;

	lblk_start = EXT4_LBLK_CMASK(sbi, lblk);
	lblk_end = lblk_start + sbi->s_cluster_ratio - 1;

	return __es_scan_range(inode, matching_fn, lblk_start, lblk_end);
}

/*
 * Locking for __es_scan_clu() for external use
 */
bool ext4_es_scan_clu(struct inode *inode,
		      int (*matching_fn)(struct extent_status *es),
		      ext4_lblk_t lblk)
{
	bool ret;

	read_lock(&EXT4_I(inode)->i_es_lock);
	ret = __es_scan_clu(inode, matching_fn, lblk);
409
	read_unlock(&EXT4_I(inode)->i_es_lock);
410

411
	return ret;
412 413
}

414
static void ext4_es_list_add(struct inode *inode)
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
{
	struct ext4_inode_info *ei = EXT4_I(inode);
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);

	if (!list_empty(&ei->i_es_list))
		return;

	spin_lock(&sbi->s_es_lock);
	if (list_empty(&ei->i_es_list)) {
		list_add_tail(&ei->i_es_list, &sbi->s_es_list);
		sbi->s_es_nr_inode++;
	}
	spin_unlock(&sbi->s_es_lock);
}

430
static void ext4_es_list_del(struct inode *inode)
431 432 433 434 435 436 437 438 439 440 441 442 443
{
	struct ext4_inode_info *ei = EXT4_I(inode);
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);

	spin_lock(&sbi->s_es_lock);
	if (!list_empty(&ei->i_es_list)) {
		list_del_init(&ei->i_es_list);
		sbi->s_es_nr_inode--;
		WARN_ON_ONCE(sbi->s_es_nr_inode < 0);
	}
	spin_unlock(&sbi->s_es_lock);
}

444
static struct extent_status *
445 446
ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len,
		     ext4_fsblk_t pblk)
447 448 449 450 451
{
	struct extent_status *es;
	es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC);
	if (es == NULL)
		return NULL;
Z
Zheng Liu 已提交
452 453
	es->es_lblk = lblk;
	es->es_len = len;
454
	es->es_pblk = pblk;
455 456 457 458

	/*
	 * We don't count delayed extent because we never try to reclaim them
	 */
T
Theodore Ts'o 已提交
459
	if (!ext4_es_is_delayed(es)) {
460 461
		if (!EXT4_I(inode)->i_es_shk_nr++)
			ext4_es_list_add(inode);
462
		percpu_counter_inc(&EXT4_SB(inode->i_sb)->
463
					s_es_stats.es_stats_shk_cnt);
T
Theodore Ts'o 已提交
464
	}
465

466 467 468
	EXT4_I(inode)->i_es_all_nr++;
	percpu_counter_inc(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);

469 470 471
	return es;
}

472
static void ext4_es_free_extent(struct inode *inode, struct extent_status *es)
473
{
474 475 476
	EXT4_I(inode)->i_es_all_nr--;
	percpu_counter_dec(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);

477
	/* Decrease the shrink counter when this es is not delayed */
478
	if (!ext4_es_is_delayed(es)) {
479
		BUG_ON(EXT4_I(inode)->i_es_shk_nr == 0);
480 481
		if (!--EXT4_I(inode)->i_es_shk_nr)
			ext4_es_list_del(inode);
482
		percpu_counter_dec(&EXT4_SB(inode->i_sb)->
483
					s_es_stats.es_stats_shk_cnt);
484 485
	}

486 487 488
	kmem_cache_free(ext4_es_cachep, es);
}

Z
Zheng Liu 已提交
489 490 491 492
/*
 * Check whether or not two extents can be merged
 * Condition:
 *  - logical block number is contiguous
493 494
 *  - physical block number is contiguous
 *  - status is equal
Z
Zheng Liu 已提交
495 496 497 498
 */
static int ext4_es_can_be_merged(struct extent_status *es1,
				 struct extent_status *es2)
{
499
	if (ext4_es_type(es1) != ext4_es_type(es2))
Z
Zheng Liu 已提交
500 501
		return 0;

502 503 504 505 506 507
	if (((__u64) es1->es_len) + es2->es_len > EXT_MAX_BLOCKS) {
		pr_warn("ES assertion failed when merging extents. "
			"The sum of lengths of es1 (%d) and es2 (%d) "
			"is bigger than allowed file size (%d)\n",
			es1->es_len, es2->es_len, EXT_MAX_BLOCKS);
		WARN_ON(1);
508
		return 0;
509
	}
510

511
	if (((__u64) es1->es_lblk) + es1->es_len != es2->es_lblk)
512 513
		return 0;

514 515 516 517 518 519 520 521 522 523 524 525
	if ((ext4_es_is_written(es1) || ext4_es_is_unwritten(es1)) &&
	    (ext4_es_pblock(es1) + es1->es_len == ext4_es_pblock(es2)))
		return 1;

	if (ext4_es_is_hole(es1))
		return 1;

	/* we need to check delayed extent is without unwritten status */
	if (ext4_es_is_delayed(es1) && !ext4_es_is_unwritten(es1))
		return 1;

	return 0;
Z
Zheng Liu 已提交
526 527
}

528
static struct extent_status *
529
ext4_es_try_to_merge_left(struct inode *inode, struct extent_status *es)
530
{
531
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
532 533 534 535 536 537 538 539
	struct extent_status *es1;
	struct rb_node *node;

	node = rb_prev(&es->rb_node);
	if (!node)
		return es;

	es1 = rb_entry(node, struct extent_status, rb_node);
Z
Zheng Liu 已提交
540 541
	if (ext4_es_can_be_merged(es1, es)) {
		es1->es_len += es->es_len;
542 543
		if (ext4_es_is_referenced(es))
			ext4_es_set_referenced(es1);
544
		rb_erase(&es->rb_node, &tree->root);
545
		ext4_es_free_extent(inode, es);
546 547 548 549 550 551 552
		es = es1;
	}

	return es;
}

static struct extent_status *
553
ext4_es_try_to_merge_right(struct inode *inode, struct extent_status *es)
554
{
555
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
556 557 558 559 560 561 562 563
	struct extent_status *es1;
	struct rb_node *node;

	node = rb_next(&es->rb_node);
	if (!node)
		return es;

	es1 = rb_entry(node, struct extent_status, rb_node);
Z
Zheng Liu 已提交
564 565
	if (ext4_es_can_be_merged(es, es1)) {
		es->es_len += es1->es_len;
566 567
		if (ext4_es_is_referenced(es1))
			ext4_es_set_referenced(es);
568
		rb_erase(node, &tree->root);
569
		ext4_es_free_extent(inode, es1);
570 571 572 573 574
	}

	return es;
}

575
#ifdef ES_AGGRESSIVE_TEST
Z
Zheng Liu 已提交
576 577
#include "ext4_extents.h"	/* Needed when ES_AGGRESSIVE_TEST is defined */

578 579 580 581 582 583 584 585 586 587
static void ext4_es_insert_extent_ext_check(struct inode *inode,
					    struct extent_status *es)
{
	struct ext4_ext_path *path = NULL;
	struct ext4_extent *ex;
	ext4_lblk_t ee_block;
	ext4_fsblk_t ee_start;
	unsigned short ee_len;
	int depth, ee_status, es_status;

588
	path = ext4_find_extent(inode, es->es_lblk, NULL, EXT4_EX_NOCACHE);
589 590 591 592 593 594 595 596 597 598 599 600
	if (IS_ERR(path))
		return;

	depth = ext_depth(inode);
	ex = path[depth].p_ext;

	if (ex) {

		ee_block = le32_to_cpu(ex->ee_block);
		ee_start = ext4_ext_pblock(ex);
		ee_len = ext4_ext_get_actual_len(ex);

601
		ee_status = ext4_ext_is_unwritten(ex) ? 1 : 0;
602 603 604 605 606 607 608 609
		es_status = ext4_es_is_unwritten(es) ? 1 : 0;

		/*
		 * Make sure ex and es are not overlap when we try to insert
		 * a delayed/hole extent.
		 */
		if (!ext4_es_is_written(es) && !ext4_es_is_unwritten(es)) {
			if (in_range(es->es_lblk, ee_block, ee_len)) {
610
				pr_warn("ES insert assertion failed for "
611 612
					"inode: %lu we can find an extent "
					"at block [%d/%d/%llu/%c], but we "
613 614
					"want to add a delayed/hole extent "
					"[%d/%d/%llu/%x]\n",
615 616 617 618 619 620 621 622 623 624 625 626 627 628
					inode->i_ino, ee_block, ee_len,
					ee_start, ee_status ? 'u' : 'w',
					es->es_lblk, es->es_len,
					ext4_es_pblock(es), ext4_es_status(es));
			}
			goto out;
		}

		/*
		 * We don't check ee_block == es->es_lblk, etc. because es
		 * might be a part of whole extent, vice versa.
		 */
		if (es->es_lblk < ee_block ||
		    ext4_es_pblock(es) != ee_start + es->es_lblk - ee_block) {
629
			pr_warn("ES insert assertion failed for inode: %lu "
630 631 632 633 634 635 636 637 638
				"ex_status [%d/%d/%llu/%c] != "
				"es_status [%d/%d/%llu/%c]\n", inode->i_ino,
				ee_block, ee_len, ee_start,
				ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
				ext4_es_pblock(es), es_status ? 'u' : 'w');
			goto out;
		}

		if (ee_status ^ es_status) {
639
			pr_warn("ES insert assertion failed for inode: %lu "
640 641 642 643 644 645 646 647 648 649 650 651
				"ex_status [%d/%d/%llu/%c] != "
				"es_status [%d/%d/%llu/%c]\n", inode->i_ino,
				ee_block, ee_len, ee_start,
				ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
				ext4_es_pblock(es), es_status ? 'u' : 'w');
		}
	} else {
		/*
		 * We can't find an extent on disk.  So we need to make sure
		 * that we don't want to add an written/unwritten extent.
		 */
		if (!ext4_es_is_delayed(es) && !ext4_es_is_hole(es)) {
652
			pr_warn("ES insert assertion failed for inode: %lu "
653
				"can't find an extent at block %d but we want "
654 655
				"to add a written/unwritten extent "
				"[%d/%d/%llu/%x]\n", inode->i_ino,
656 657 658 659 660
				es->es_lblk, es->es_lblk, es->es_len,
				ext4_es_pblock(es), ext4_es_status(es));
		}
	}
out:
661 662
	ext4_ext_drop_refs(path);
	kfree(path);
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
}

static void ext4_es_insert_extent_ind_check(struct inode *inode,
					    struct extent_status *es)
{
	struct ext4_map_blocks map;
	int retval;

	/*
	 * Here we call ext4_ind_map_blocks to lookup a block mapping because
	 * 'Indirect' structure is defined in indirect.c.  So we couldn't
	 * access direct/indirect tree from outside.  It is too dirty to define
	 * this function in indirect.c file.
	 */

	map.m_lblk = es->es_lblk;
	map.m_len = es->es_len;

	retval = ext4_ind_map_blocks(NULL, inode, &map, 0);
	if (retval > 0) {
		if (ext4_es_is_delayed(es) || ext4_es_is_hole(es)) {
			/*
			 * We want to add a delayed/hole extent but this
			 * block has been allocated.
			 */
688
			pr_warn("ES insert assertion failed for inode: %lu "
689
				"We can find blocks but we want to add a "
690
				"delayed/hole extent [%d/%d/%llu/%x]\n",
691 692 693 694 695
				inode->i_ino, es->es_lblk, es->es_len,
				ext4_es_pblock(es), ext4_es_status(es));
			return;
		} else if (ext4_es_is_written(es)) {
			if (retval != es->es_len) {
696
				pr_warn("ES insert assertion failed for "
697 698 699 700 701
					"inode: %lu retval %d != es_len %d\n",
					inode->i_ino, retval, es->es_len);
				return;
			}
			if (map.m_pblk != ext4_es_pblock(es)) {
702
				pr_warn("ES insert assertion failed for "
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
					"inode: %lu m_pblk %llu != "
					"es_pblk %llu\n",
					inode->i_ino, map.m_pblk,
					ext4_es_pblock(es));
				return;
			}
		} else {
			/*
			 * We don't need to check unwritten extent because
			 * indirect-based file doesn't have it.
			 */
			BUG_ON(1);
		}
	} else if (retval == 0) {
		if (ext4_es_is_written(es)) {
718
			pr_warn("ES insert assertion failed for inode: %lu "
719
				"We can't find the block but we want to add "
720
				"a written extent [%d/%d/%llu/%x]\n",
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
				inode->i_ino, es->es_lblk, es->es_len,
				ext4_es_pblock(es), ext4_es_status(es));
			return;
		}
	}
}

static inline void ext4_es_insert_extent_check(struct inode *inode,
					       struct extent_status *es)
{
	/*
	 * We don't need to worry about the race condition because
	 * caller takes i_data_sem locking.
	 */
	BUG_ON(!rwsem_is_locked(&EXT4_I(inode)->i_data_sem));
	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
		ext4_es_insert_extent_ext_check(inode, es);
	else
		ext4_es_insert_extent_ind_check(inode, es);
}
#else
static inline void ext4_es_insert_extent_check(struct inode *inode,
					       struct extent_status *es)
{
}
#endif

748
static int __es_insert_extent(struct inode *inode, struct extent_status *newes)
749
{
750
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
751 752 753 754 755 756 757 758
	struct rb_node **p = &tree->root.rb_node;
	struct rb_node *parent = NULL;
	struct extent_status *es;

	while (*p) {
		parent = *p;
		es = rb_entry(parent, struct extent_status, rb_node);

Z
Zheng Liu 已提交
759 760 761 762 763 764 765 766
		if (newes->es_lblk < es->es_lblk) {
			if (ext4_es_can_be_merged(newes, es)) {
				/*
				 * Here we can modify es_lblk directly
				 * because it isn't overlapped.
				 */
				es->es_lblk = newes->es_lblk;
				es->es_len += newes->es_len;
767 768 769 770
				if (ext4_es_is_written(es) ||
				    ext4_es_is_unwritten(es))
					ext4_es_store_pblock(es,
							     newes->es_pblk);
771
				es = ext4_es_try_to_merge_left(inode, es);
772 773 774
				goto out;
			}
			p = &(*p)->rb_left;
Z
Zheng Liu 已提交
775 776 777
		} else if (newes->es_lblk > ext4_es_end(es)) {
			if (ext4_es_can_be_merged(es, newes)) {
				es->es_len += newes->es_len;
778
				es = ext4_es_try_to_merge_right(inode, es);
779 780 781 782
				goto out;
			}
			p = &(*p)->rb_right;
		} else {
Z
Zheng Liu 已提交
783 784
			BUG_ON(1);
			return -EINVAL;
785 786 787
		}
	}

788
	es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len,
789
				  newes->es_pblk);
790 791 792 793 794 795 796 797 798 799 800
	if (!es)
		return -ENOMEM;
	rb_link_node(&es->rb_node, parent, p);
	rb_insert_color(&es->rb_node, &tree->root);

out:
	tree->cache_es = es;
	return 0;
}

/*
801 802
 * ext4_es_insert_extent() adds information to an inode's extent
 * status tree.
803 804 805
 *
 * Return 0 on success, error code on failure.
 */
Z
Zheng Liu 已提交
806
int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
807
			  ext4_lblk_t len, ext4_fsblk_t pblk,
808
			  unsigned int status)
809
{
Z
Zheng Liu 已提交
810 811
	struct extent_status newes;
	ext4_lblk_t end = lblk + len - 1;
812
	int err = 0;
813
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
814

815
	es_debug("add [%u/%u) %llu %x to extent status tree of inode %lu\n",
816
		 lblk, len, pblk, status, inode->i_ino);
Z
Zheng Liu 已提交
817

818 819 820
	if (!len)
		return 0;

Z
Zheng Liu 已提交
821 822
	BUG_ON(end < lblk);

823 824 825 826
	if ((status & EXTENT_STATUS_DELAYED) &&
	    (status & EXTENT_STATUS_WRITTEN)) {
		ext4_warning(inode->i_sb, "Inserting extent [%u/%u] as "
				" delayed and written which can potentially "
827
				" cause data loss.", lblk, len);
828 829 830
		WARN_ON(1);
	}

Z
Zheng Liu 已提交
831 832
	newes.es_lblk = lblk;
	newes.es_len = len;
833
	ext4_es_store_pblock_status(&newes, pblk, status);
834
	trace_ext4_es_insert_extent(inode, &newes);
835

836 837
	ext4_es_insert_extent_check(inode, &newes);

838
	write_lock(&EXT4_I(inode)->i_es_lock);
839
	err = __es_remove_extent(inode, lblk, end);
Z
Zheng Liu 已提交
840 841
	if (err != 0)
		goto error;
842
retry:
843
	err = __es_insert_extent(inode, &newes);
844
	if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb),
845
					  128, EXT4_I(inode)))
846 847 848
		goto retry;
	if (err == -ENOMEM && !ext4_es_is_delayed(&newes))
		err = 0;
Z
Zheng Liu 已提交
849

850 851 852 853 854
	if (sbi->s_cluster_ratio > 1 && test_opt(inode->i_sb, DELALLOC) &&
	    (status & EXTENT_STATUS_WRITTEN ||
	     status & EXTENT_STATUS_UNWRITTEN))
		__revise_pending(inode, lblk, len);

Z
Zheng Liu 已提交
855
error:
856 857 858 859 860 861 862
	write_unlock(&EXT4_I(inode)->i_es_lock);

	ext4_es_print_tree(inode);

	return err;
}

863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
/*
 * ext4_es_cache_extent() inserts information into the extent status
 * tree if and only if there isn't information about the range in
 * question already.
 */
void ext4_es_cache_extent(struct inode *inode, ext4_lblk_t lblk,
			  ext4_lblk_t len, ext4_fsblk_t pblk,
			  unsigned int status)
{
	struct extent_status *es;
	struct extent_status newes;
	ext4_lblk_t end = lblk + len - 1;

	newes.es_lblk = lblk;
	newes.es_len = len;
878
	ext4_es_store_pblock_status(&newes, pblk, status);
879 880 881 882 883 884 885 886 887 888
	trace_ext4_es_cache_extent(inode, &newes);

	if (!len)
		return;

	BUG_ON(end < lblk);

	write_lock(&EXT4_I(inode)->i_es_lock);

	es = __es_tree_search(&EXT4_I(inode)->i_es_tree.root, lblk);
889 890
	if (!es || es->es_lblk > end)
		__es_insert_extent(inode, &newes);
891 892 893
	write_unlock(&EXT4_I(inode)->i_es_lock);
}

894 895 896 897 898 899 900 901 902 903 904
/*
 * ext4_es_lookup_extent() looks up an extent in extent status tree.
 *
 * ext4_es_lookup_extent is called by ext4_map_blocks/ext4_da_map_blocks.
 *
 * Return: 1 on found, 0 on not
 */
int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk,
			  struct extent_status *es)
{
	struct ext4_es_tree *tree;
905
	struct ext4_es_stats *stats;
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
	struct extent_status *es1 = NULL;
	struct rb_node *node;
	int found = 0;

	trace_ext4_es_lookup_extent_enter(inode, lblk);
	es_debug("lookup extent in block %u\n", lblk);

	tree = &EXT4_I(inode)->i_es_tree;
	read_lock(&EXT4_I(inode)->i_es_lock);

	/* find extent in cache firstly */
	es->es_lblk = es->es_len = es->es_pblk = 0;
	if (tree->cache_es) {
		es1 = tree->cache_es;
		if (in_range(lblk, es1->es_lblk, es1->es_len)) {
			es_debug("%u cached by [%u/%u)\n",
				 lblk, es1->es_lblk, es1->es_len);
			found = 1;
			goto out;
		}
	}

	node = tree->root.rb_node;
	while (node) {
		es1 = rb_entry(node, struct extent_status, rb_node);
		if (lblk < es1->es_lblk)
			node = node->rb_left;
		else if (lblk > ext4_es_end(es1))
			node = node->rb_right;
		else {
			found = 1;
			break;
		}
	}

out:
942
	stats = &EXT4_SB(inode->i_sb)->s_es_stats;
943 944 945 946 947
	if (found) {
		BUG_ON(!es1);
		es->es_lblk = es1->es_lblk;
		es->es_len = es1->es_len;
		es->es_pblk = es1->es_pblk;
948 949
		if (!ext4_es_is_referenced(es1))
			ext4_es_set_referenced(es1);
950 951 952
		stats->es_stats_cache_hits++;
	} else {
		stats->es_stats_cache_misses++;
953 954 955 956 957 958 959 960
	}

	read_unlock(&EXT4_I(inode)->i_es_lock);

	trace_ext4_es_lookup_extent_exit(inode, es, found);
	return found;
}

961 962
static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
			      ext4_lblk_t end)
963
{
964
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
965 966 967
	struct rb_node *node;
	struct extent_status *es;
	struct extent_status orig_es;
Z
Zheng Liu 已提交
968
	ext4_lblk_t len1, len2;
969
	ext4_fsblk_t block;
970
	int err;
971

972 973
retry:
	err = 0;
Z
Zheng Liu 已提交
974
	es = __es_tree_search(&tree->root, lblk);
975 976
	if (!es)
		goto out;
Z
Zheng Liu 已提交
977
	if (es->es_lblk > end)
978 979 980 981 982
		goto out;

	/* Simply invalidate cache_es. */
	tree->cache_es = NULL;

Z
Zheng Liu 已提交
983 984
	orig_es.es_lblk = es->es_lblk;
	orig_es.es_len = es->es_len;
985 986
	orig_es.es_pblk = es->es_pblk;

Z
Zheng Liu 已提交
987 988
	len1 = lblk > es->es_lblk ? lblk - es->es_lblk : 0;
	len2 = ext4_es_end(es) > end ? ext4_es_end(es) - end : 0;
989
	if (len1 > 0)
Z
Zheng Liu 已提交
990
		es->es_len = len1;
991 992
	if (len2 > 0) {
		if (len1 > 0) {
Z
Zheng Liu 已提交
993 994 995 996
			struct extent_status newes;

			newes.es_lblk = end + 1;
			newes.es_len = len2;
997
			block = 0x7FDEADBEEFULL;
998
			if (ext4_es_is_written(&orig_es) ||
999
			    ext4_es_is_unwritten(&orig_es))
1000 1001
				block = ext4_es_pblock(&orig_es) +
					orig_es.es_len - len2;
1002 1003
			ext4_es_store_pblock_status(&newes, block,
						    ext4_es_status(&orig_es));
1004
			err = __es_insert_extent(inode, &newes);
1005
			if (err) {
Z
Zheng Liu 已提交
1006 1007
				es->es_lblk = orig_es.es_lblk;
				es->es_len = orig_es.es_len;
1008
				if ((err == -ENOMEM) &&
1009
				    __es_shrink(EXT4_SB(inode->i_sb),
1010
							128, EXT4_I(inode)))
1011
					goto retry;
1012 1013 1014
				goto out;
			}
		} else {
Z
Zheng Liu 已提交
1015 1016
			es->es_lblk = end + 1;
			es->es_len = len2;
1017 1018 1019 1020 1021
			if (ext4_es_is_written(es) ||
			    ext4_es_is_unwritten(es)) {
				block = orig_es.es_pblk + orig_es.es_len - len2;
				ext4_es_store_pblock(es, block);
			}
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
		}
		goto out;
	}

	if (len1 > 0) {
		node = rb_next(&es->rb_node);
		if (node)
			es = rb_entry(node, struct extent_status, rb_node);
		else
			es = NULL;
	}

Z
Zheng Liu 已提交
1034
	while (es && ext4_es_end(es) <= end) {
1035 1036
		node = rb_next(&es->rb_node);
		rb_erase(&es->rb_node, &tree->root);
1037
		ext4_es_free_extent(inode, es);
1038 1039 1040 1041 1042 1043 1044
		if (!node) {
			es = NULL;
			break;
		}
		es = rb_entry(node, struct extent_status, rb_node);
	}

Z
Zheng Liu 已提交
1045
	if (es && es->es_lblk < end + 1) {
1046 1047
		ext4_lblk_t orig_len = es->es_len;

Z
Zheng Liu 已提交
1048 1049 1050
		len1 = ext4_es_end(es) - end;
		es->es_lblk = end + 1;
		es->es_len = len1;
1051 1052 1053 1054
		if (ext4_es_is_written(es) || ext4_es_is_unwritten(es)) {
			block = es->es_pblk + orig_len - len1;
			ext4_es_store_pblock(es, block);
		}
1055 1056 1057
	}

out:
Z
Zheng Liu 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
	return err;
}

/*
 * ext4_es_remove_extent() removes a space from a extent status tree.
 *
 * Return 0 on success, error code on failure.
 */
int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
			  ext4_lblk_t len)
{
	ext4_lblk_t end;
	int err = 0;

	trace_ext4_es_remove_extent(inode, lblk, len);
	es_debug("remove [%u/%u) from extent status tree of inode %lu\n",
		 lblk, len, inode->i_ino);

1076 1077 1078
	if (!len)
		return err;

Z
Zheng Liu 已提交
1079 1080 1081
	end = lblk + len - 1;
	BUG_ON(end < lblk);

1082 1083 1084 1085 1086
	/*
	 * ext4_clear_inode() depends on us taking i_es_lock unconditionally
	 * so that we are sure __es_shrink() is done with the inode before it
	 * is reclaimed.
	 */
Z
Zheng Liu 已提交
1087
	write_lock(&EXT4_I(inode)->i_es_lock);
1088
	err = __es_remove_extent(inode, lblk, end);
1089 1090 1091 1092
	write_unlock(&EXT4_I(inode)->i_es_lock);
	ext4_es_print_tree(inode);
	return err;
}
1093

1094 1095
static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
		       struct ext4_inode_info *locked_ei)
1096 1097
{
	struct ext4_inode_info *ei;
1098 1099 1100
	struct ext4_es_stats *es_stats;
	ktime_t start_time;
	u64 scan_time;
1101
	int nr_to_walk;
1102
	int nr_shrunk = 0;
1103
	int retried = 0, nr_skipped = 0;
1104

1105 1106
	es_stats = &sbi->s_es_stats;
	start_time = ktime_get();
1107

1108
retry:
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	spin_lock(&sbi->s_es_lock);
	nr_to_walk = sbi->s_es_nr_inode;
	while (nr_to_walk-- > 0) {
		if (list_empty(&sbi->s_es_list)) {
			spin_unlock(&sbi->s_es_lock);
			goto out;
		}
		ei = list_first_entry(&sbi->s_es_list, struct ext4_inode_info,
				      i_es_list);
		/* Move the inode to the tail */
1119
		list_move_tail(&ei->i_es_list, &sbi->s_es_list);
1120

1121
		/*
1122 1123
		 * Normally we try hard to avoid shrinking precached inodes,
		 * but we will as a last resort.
1124
		 */
1125 1126
		if (!retried && ext4_test_inode_state(&ei->vfs_inode,
						EXT4_STATE_EXT_PRECACHED)) {
1127
			nr_skipped++;
1128 1129
			continue;
		}
1130

1131 1132
		if (ei == locked_ei || !write_trylock(&ei->i_es_lock)) {
			nr_skipped++;
1133
			continue;
1134 1135 1136 1137 1138 1139
		}
		/*
		 * Now we hold i_es_lock which protects us from inode reclaim
		 * freeing inode under us
		 */
		spin_unlock(&sbi->s_es_lock);
1140

1141
		nr_shrunk += es_reclaim_extents(ei, &nr_to_scan);
1142 1143
		write_unlock(&ei->i_es_lock);

1144
		if (nr_to_scan <= 0)
1145 1146
			goto out;
		spin_lock(&sbi->s_es_lock);
1147
	}
1148
	spin_unlock(&sbi->s_es_lock);
1149 1150 1151

	/*
	 * If we skipped any inodes, and we weren't able to make any
1152
	 * forward progress, try again to scan precached inodes.
1153 1154 1155 1156 1157 1158
	 */
	if ((nr_shrunk == 0) && nr_skipped && !retried) {
		retried++;
		goto retry;
	}

1159
	if (locked_ei && nr_shrunk == 0)
1160
		nr_shrunk = es_reclaim_extents(locked_ei, &nr_to_scan);
1161

1162
out:
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
	scan_time = ktime_to_ns(ktime_sub(ktime_get(), start_time));
	if (likely(es_stats->es_stats_scan_time))
		es_stats->es_stats_scan_time = (scan_time +
				es_stats->es_stats_scan_time*3) / 4;
	else
		es_stats->es_stats_scan_time = scan_time;
	if (scan_time > es_stats->es_stats_max_scan_time)
		es_stats->es_stats_max_scan_time = scan_time;
	if (likely(es_stats->es_stats_shrunk))
		es_stats->es_stats_shrunk = (nr_shrunk +
				es_stats->es_stats_shrunk*3) / 4;
	else
		es_stats->es_stats_shrunk = nr_shrunk;

1177
	trace_ext4_es_shrink(sbi->s_sb, nr_shrunk, scan_time,
1178
			     nr_skipped, retried);
1179 1180 1181
	return nr_shrunk;
}

1182 1183 1184 1185 1186 1187 1188
static unsigned long ext4_es_count(struct shrinker *shrink,
				   struct shrink_control *sc)
{
	unsigned long nr;
	struct ext4_sb_info *sbi;

	sbi = container_of(shrink, struct ext4_sb_info, s_es_shrinker);
1189
	nr = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_shk_cnt);
1190
	trace_ext4_es_shrink_count(sbi->s_sb, sc->nr_to_scan, nr);
1191 1192 1193 1194 1195
	return nr;
}

static unsigned long ext4_es_scan(struct shrinker *shrink,
				  struct shrink_control *sc)
1196 1197 1198 1199 1200 1201
{
	struct ext4_sb_info *sbi = container_of(shrink,
					struct ext4_sb_info, s_es_shrinker);
	int nr_to_scan = sc->nr_to_scan;
	int ret, nr_shrunk;

1202
	ret = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_shk_cnt);
1203
	trace_ext4_es_shrink_scan_enter(sbi->s_sb, nr_to_scan, ret);
1204 1205 1206 1207

	if (!nr_to_scan)
		return ret;

1208
	nr_shrunk = __es_shrink(sbi, nr_to_scan, NULL);
1209

1210
	trace_ext4_es_shrink_scan_exit(sbi->s_sb, nr_shrunk, ret);
1211
	return nr_shrunk;
1212 1213
}

1214
int ext4_seq_es_shrinker_info_show(struct seq_file *seq, void *v)
1215
{
1216
	struct ext4_sb_info *sbi = EXT4_SB((struct super_block *) seq->private);
1217 1218 1219 1220 1221 1222 1223 1224
	struct ext4_es_stats *es_stats = &sbi->s_es_stats;
	struct ext4_inode_info *ei, *max = NULL;
	unsigned int inode_cnt = 0;

	if (v != SEQ_START_TOKEN)
		return 0;

	/* here we just find an inode that has the max nr. of objects */
1225 1226
	spin_lock(&sbi->s_es_lock);
	list_for_each_entry(ei, &sbi->s_es_list, i_es_list) {
1227 1228 1229 1230 1231 1232
		inode_cnt++;
		if (max && max->i_es_all_nr < ei->i_es_all_nr)
			max = ei;
		else if (!max)
			max = ei;
	}
1233
	spin_unlock(&sbi->s_es_lock);
1234 1235 1236

	seq_printf(seq, "stats:\n  %lld objects\n  %lld reclaimable objects\n",
		   percpu_counter_sum_positive(&es_stats->es_stats_all_cnt),
1237
		   percpu_counter_sum_positive(&es_stats->es_stats_shk_cnt));
1238 1239 1240 1241
	seq_printf(seq, "  %lu/%lu cache hits/misses\n",
		   es_stats->es_stats_cache_hits,
		   es_stats->es_stats_cache_misses);
	if (inode_cnt)
1242
		seq_printf(seq, "  %d inodes on list\n", inode_cnt);
1243 1244 1245 1246 1247 1248 1249 1250

	seq_printf(seq, "average:\n  %llu us scan time\n",
	    div_u64(es_stats->es_stats_scan_time, 1000));
	seq_printf(seq, "  %lu shrunk objects\n", es_stats->es_stats_shrunk);
	if (inode_cnt)
		seq_printf(seq,
		    "maximum:\n  %lu inode (%u objects, %u reclaimable)\n"
		    "  %llu us max scan time\n",
1251
		    max->vfs_inode.i_ino, max->i_es_all_nr, max->i_es_shk_nr,
1252 1253 1254 1255 1256 1257
		    div_u64(es_stats->es_stats_max_scan_time, 1000));

	return 0;
}

int ext4_es_register_shrinker(struct ext4_sb_info *sbi)
1258
{
1259 1260
	int err;

1261 1262
	/* Make sure we have enough bits for physical block number */
	BUILD_BUG_ON(ES_SHIFT < 48);
1263 1264 1265
	INIT_LIST_HEAD(&sbi->s_es_list);
	sbi->s_es_nr_inode = 0;
	spin_lock_init(&sbi->s_es_lock);
1266 1267 1268 1269 1270
	sbi->s_es_stats.es_stats_shrunk = 0;
	sbi->s_es_stats.es_stats_cache_hits = 0;
	sbi->s_es_stats.es_stats_cache_misses = 0;
	sbi->s_es_stats.es_stats_scan_time = 0;
	sbi->s_es_stats.es_stats_max_scan_time = 0;
1271
	err = percpu_counter_init(&sbi->s_es_stats.es_stats_all_cnt, 0, GFP_KERNEL);
1272 1273
	if (err)
		return err;
1274
	err = percpu_counter_init(&sbi->s_es_stats.es_stats_shk_cnt, 0, GFP_KERNEL);
1275 1276 1277
	if (err)
		goto err1;

1278 1279
	sbi->s_es_shrinker.scan_objects = ext4_es_scan;
	sbi->s_es_shrinker.count_objects = ext4_es_count;
1280
	sbi->s_es_shrinker.seeks = DEFAULT_SEEKS;
1281 1282 1283 1284 1285 1286 1287
	err = register_shrinker(&sbi->s_es_shrinker);
	if (err)
		goto err2;

	return 0;

err2:
1288
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
1289 1290 1291
err1:
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
	return err;
1292 1293
}

1294
void ext4_es_unregister_shrinker(struct ext4_sb_info *sbi)
1295
{
1296
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
1297
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
1298
	unregister_shrinker(&sbi->s_es_shrinker);
1299 1300
}

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
/*
 * Shrink extents in given inode from ei->i_es_shrink_lblk till end. Scan at
 * most *nr_to_scan extents, update *nr_to_scan accordingly.
 *
 * Return 0 if we hit end of tree / interval, 1 if we exhausted nr_to_scan.
 * Increment *nr_shrunk by the number of reclaimed extents. Also update
 * ei->i_es_shrink_lblk to where we should continue scanning.
 */
static int es_do_reclaim_extents(struct ext4_inode_info *ei, ext4_lblk_t end,
				 int *nr_to_scan, int *nr_shrunk)
1311 1312 1313 1314
{
	struct inode *inode = &ei->vfs_inode;
	struct ext4_es_tree *tree = &ei->i_es_tree;
	struct extent_status *es;
1315
	struct rb_node *node;
1316

1317 1318 1319 1320 1321 1322 1323 1324 1325
	es = __es_tree_search(&tree->root, ei->i_es_shrink_lblk);
	if (!es)
		goto out_wrap;
	node = &es->rb_node;
	while (*nr_to_scan > 0) {
		if (es->es_lblk > end) {
			ei->i_es_shrink_lblk = end + 1;
			return 0;
		}
1326

1327
		(*nr_to_scan)--;
1328 1329 1330 1331 1332
		node = rb_next(&es->rb_node);
		/*
		 * We can't reclaim delayed extent from status tree because
		 * fiemap, bigallic, and seek_data/hole need to use it.
		 */
1333 1334 1335 1336 1337
		if (ext4_es_is_delayed(es))
			goto next;
		if (ext4_es_is_referenced(es)) {
			ext4_es_clear_referenced(es);
			goto next;
1338
		}
1339 1340 1341 1342 1343

		rb_erase(&es->rb_node, &tree->root);
		ext4_es_free_extent(inode, es);
		(*nr_shrunk)++;
next:
1344 1345 1346
		if (!node)
			goto out_wrap;
		es = rb_entry(node, struct extent_status, rb_node);
1347
	}
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
	ei->i_es_shrink_lblk = es->es_lblk;
	return 1;
out_wrap:
	ei->i_es_shrink_lblk = 0;
	return 0;
}

static int es_reclaim_extents(struct ext4_inode_info *ei, int *nr_to_scan)
{
	struct inode *inode = &ei->vfs_inode;
	int nr_shrunk = 0;
	ext4_lblk_t start = ei->i_es_shrink_lblk;
	static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
				      DEFAULT_RATELIMIT_BURST);

	if (ei->i_es_shk_nr == 0)
		return 0;

	if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED) &&
	    __ratelimit(&_rs))
		ext4_warning(inode->i_sb, "forced shrink of precached extents");

	if (!es_do_reclaim_extents(ei, EXT_MAX_BLOCKS, nr_to_scan, &nr_shrunk) &&
	    start != 0)
		es_do_reclaim_extents(ei, start - 1, nr_to_scan, &nr_shrunk);

	ei->i_es_tree.cache_es = NULL;
1375 1376
	return nr_shrunk;
}
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562

#ifdef ES_DEBUG__
static void ext4_print_pending_tree(struct inode *inode)
{
	struct ext4_pending_tree *tree;
	struct rb_node *node;
	struct pending_reservation *pr;

	printk(KERN_DEBUG "pending reservations for inode %lu:", inode->i_ino);
	tree = &EXT4_I(inode)->i_pending_tree;
	node = rb_first(&tree->root);
	while (node) {
		pr = rb_entry(node, struct pending_reservation, rb_node);
		printk(KERN_DEBUG " %u", pr->lclu);
		node = rb_next(node);
	}
	printk(KERN_DEBUG "\n");
}
#else
#define ext4_print_pending_tree(inode)
#endif

int __init ext4_init_pending(void)
{
	ext4_pending_cachep = kmem_cache_create("ext4_pending_reservation",
					   sizeof(struct pending_reservation),
					   0, (SLAB_RECLAIM_ACCOUNT), NULL);
	if (ext4_pending_cachep == NULL)
		return -ENOMEM;
	return 0;
}

void ext4_exit_pending(void)
{
	kmem_cache_destroy(ext4_pending_cachep);
}

void ext4_init_pending_tree(struct ext4_pending_tree *tree)
{
	tree->root = RB_ROOT;
}

/*
 * __get_pending - retrieve a pointer to a pending reservation
 *
 * @inode - file containing the pending cluster reservation
 * @lclu - logical cluster of interest
 *
 * Returns a pointer to a pending reservation if it's a member of
 * the set, and NULL if not.  Must be called holding i_es_lock.
 */
static struct pending_reservation *__get_pending(struct inode *inode,
						 ext4_lblk_t lclu)
{
	struct ext4_pending_tree *tree;
	struct rb_node *node;
	struct pending_reservation *pr = NULL;

	tree = &EXT4_I(inode)->i_pending_tree;
	node = (&tree->root)->rb_node;

	while (node) {
		pr = rb_entry(node, struct pending_reservation, rb_node);
		if (lclu < pr->lclu)
			node = node->rb_left;
		else if (lclu > pr->lclu)
			node = node->rb_right;
		else if (lclu == pr->lclu)
			return pr;
	}
	return NULL;
}

/*
 * __insert_pending - adds a pending cluster reservation to the set of
 *                    pending reservations
 *
 * @inode - file containing the cluster
 * @lblk - logical block in the cluster to be added
 *
 * Returns 0 on successful insertion and -ENOMEM on failure.  If the
 * pending reservation is already in the set, returns successfully.
 */
static int __insert_pending(struct inode *inode, ext4_lblk_t lblk)
{
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	struct ext4_pending_tree *tree = &EXT4_I(inode)->i_pending_tree;
	struct rb_node **p = &tree->root.rb_node;
	struct rb_node *parent = NULL;
	struct pending_reservation *pr;
	ext4_lblk_t lclu;
	int ret = 0;

	lclu = EXT4_B2C(sbi, lblk);
	/* search to find parent for insertion */
	while (*p) {
		parent = *p;
		pr = rb_entry(parent, struct pending_reservation, rb_node);

		if (lclu < pr->lclu) {
			p = &(*p)->rb_left;
		} else if (lclu > pr->lclu) {
			p = &(*p)->rb_right;
		} else {
			/* pending reservation already inserted */
			goto out;
		}
	}

	pr = kmem_cache_alloc(ext4_pending_cachep, GFP_ATOMIC);
	if (pr == NULL) {
		ret = -ENOMEM;
		goto out;
	}
	pr->lclu = lclu;

	rb_link_node(&pr->rb_node, parent, p);
	rb_insert_color(&pr->rb_node, &tree->root);

out:
	return ret;
}

/*
 * __remove_pending - removes a pending cluster reservation from the set
 *                    of pending reservations
 *
 * @inode - file containing the cluster
 * @lblk - logical block in the pending cluster reservation to be removed
 *
 * Returns successfully if pending reservation is not a member of the set.
 */
static void __remove_pending(struct inode *inode, ext4_lblk_t lblk)
{
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	struct pending_reservation *pr;
	struct ext4_pending_tree *tree;

	pr = __get_pending(inode, EXT4_B2C(sbi, lblk));
	if (pr != NULL) {
		tree = &EXT4_I(inode)->i_pending_tree;
		rb_erase(&pr->rb_node, &tree->root);
		kmem_cache_free(ext4_pending_cachep, pr);
	}
}

/*
 * ext4_remove_pending - removes a pending cluster reservation from the set
 *                       of pending reservations
 *
 * @inode - file containing the cluster
 * @lblk - logical block in the pending cluster reservation to be removed
 *
 * Locking for external use of __remove_pending.
 */
void ext4_remove_pending(struct inode *inode, ext4_lblk_t lblk)
{
	struct ext4_inode_info *ei = EXT4_I(inode);

	write_lock(&ei->i_es_lock);
	__remove_pending(inode, lblk);
	write_unlock(&ei->i_es_lock);
}

/*
 * ext4_is_pending - determine whether a cluster has a pending reservation
 *                   on it
 *
 * @inode - file containing the cluster
 * @lblk - logical block in the cluster
 *
 * Returns true if there's a pending reservation for the cluster in the
 * set of pending reservations, and false if not.
 */
bool ext4_is_pending(struct inode *inode, ext4_lblk_t lblk)
{
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	struct ext4_inode_info *ei = EXT4_I(inode);
	bool ret;

	read_lock(&ei->i_es_lock);
	ret = (bool)(__get_pending(inode, EXT4_B2C(sbi, lblk)) != NULL);
	read_unlock(&ei->i_es_lock);

	return ret;
}
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615

/*
 * ext4_es_insert_delayed_block - adds a delayed block to the extents status
 *                                tree, adding a pending reservation where
 *                                needed
 *
 * @inode - file containing the newly added block
 * @lblk - logical block to be added
 * @allocated - indicates whether a physical cluster has been allocated for
 *              the logical cluster that contains the block
 *
 * Returns 0 on success, negative error code on failure.
 */
int ext4_es_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk,
				 bool allocated)
{
	struct extent_status newes;
	int err = 0;

	es_debug("add [%u/1) delayed to extent status tree of inode %lu\n",
		 lblk, inode->i_ino);

	newes.es_lblk = lblk;
	newes.es_len = 1;
	ext4_es_store_pblock_status(&newes, ~0, EXTENT_STATUS_DELAYED);
	trace_ext4_es_insert_delayed_block(inode, &newes, allocated);

	ext4_es_insert_extent_check(inode, &newes);

	write_lock(&EXT4_I(inode)->i_es_lock);

	err = __es_remove_extent(inode, lblk, lblk);
	if (err != 0)
		goto error;
retry:
	err = __es_insert_extent(inode, &newes);
	if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb),
					  128, EXT4_I(inode)))
		goto retry;
	if (err != 0)
		goto error;

	if (allocated)
		__insert_pending(inode, lblk);

error:
	write_unlock(&EXT4_I(inode)->i_es_lock);

	ext4_es_print_tree(inode);
	ext4_print_pending_tree(inode);

	return err;
}
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782

/*
 * __es_delayed_clu - count number of clusters containing blocks that
 *                    are delayed only
 *
 * @inode - file containing block range
 * @start - logical block defining start of range
 * @end - logical block defining end of range
 *
 * Returns the number of clusters containing only delayed (not delayed
 * and unwritten) blocks in the range specified by @start and @end.  Any
 * cluster or part of a cluster within the range and containing a delayed
 * and not unwritten block within the range is counted as a whole cluster.
 */
static unsigned int __es_delayed_clu(struct inode *inode, ext4_lblk_t start,
				     ext4_lblk_t end)
{
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
	struct extent_status *es;
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	struct rb_node *node;
	ext4_lblk_t first_lclu, last_lclu;
	unsigned long long last_counted_lclu;
	unsigned int n = 0;

	/* guaranteed to be unequal to any ext4_lblk_t value */
	last_counted_lclu = ~0ULL;

	es = __es_tree_search(&tree->root, start);

	while (es && (es->es_lblk <= end)) {
		if (ext4_es_is_delonly(es)) {
			if (es->es_lblk <= start)
				first_lclu = EXT4_B2C(sbi, start);
			else
				first_lclu = EXT4_B2C(sbi, es->es_lblk);

			if (ext4_es_end(es) >= end)
				last_lclu = EXT4_B2C(sbi, end);
			else
				last_lclu = EXT4_B2C(sbi, ext4_es_end(es));

			if (first_lclu == last_counted_lclu)
				n += last_lclu - first_lclu;
			else
				n += last_lclu - first_lclu + 1;
			last_counted_lclu = last_lclu;
		}
		node = rb_next(&es->rb_node);
		if (!node)
			break;
		es = rb_entry(node, struct extent_status, rb_node);
	}

	return n;
}

/*
 * ext4_es_delayed_clu - count number of clusters containing blocks that
 *                       are both delayed and unwritten
 *
 * @inode - file containing block range
 * @lblk - logical block defining start of range
 * @len - number of blocks in range
 *
 * Locking for external use of __es_delayed_clu().
 */
unsigned int ext4_es_delayed_clu(struct inode *inode, ext4_lblk_t lblk,
				 ext4_lblk_t len)
{
	struct ext4_inode_info *ei = EXT4_I(inode);
	ext4_lblk_t end;
	unsigned int n;

	if (len == 0)
		return 0;

	end = lblk + len - 1;
	WARN_ON(end < lblk);

	read_lock(&ei->i_es_lock);

	n = __es_delayed_clu(inode, lblk, end);

	read_unlock(&ei->i_es_lock);

	return n;
}

/*
 * __revise_pending - makes, cancels, or leaves unchanged pending cluster
 *                    reservations for a specified block range depending
 *                    upon the presence or absence of delayed blocks
 *                    outside the range within clusters at the ends of the
 *                    range
 *
 * @inode - file containing the range
 * @lblk - logical block defining the start of range
 * @len  - length of range in blocks
 *
 * Used after a newly allocated extent is added to the extents status tree.
 * Requires that the extents in the range have either written or unwritten
 * status.  Must be called while holding i_es_lock.
 */
static void __revise_pending(struct inode *inode, ext4_lblk_t lblk,
			     ext4_lblk_t len)
{
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
	ext4_lblk_t end = lblk + len - 1;
	ext4_lblk_t first, last;
	bool f_del = false, l_del = false;

	if (len == 0)
		return;

	/*
	 * Two cases - block range within single cluster and block range
	 * spanning two or more clusters.  Note that a cluster belonging
	 * to a range starting and/or ending on a cluster boundary is treated
	 * as if it does not contain a delayed extent.  The new range may
	 * have allocated space for previously delayed blocks out to the
	 * cluster boundary, requiring that any pre-existing pending
	 * reservation be canceled.  Because this code only looks at blocks
	 * outside the range, it should revise pending reservations
	 * correctly even if the extent represented by the range can't be
	 * inserted in the extents status tree due to ENOSPC.
	 */

	if (EXT4_B2C(sbi, lblk) == EXT4_B2C(sbi, end)) {
		first = EXT4_LBLK_CMASK(sbi, lblk);
		if (first != lblk)
			f_del = __es_scan_range(inode, &ext4_es_is_delonly,
						first, lblk - 1);
		if (f_del) {
			__insert_pending(inode, first);
		} else {
			last = EXT4_LBLK_CMASK(sbi, end) +
			       sbi->s_cluster_ratio - 1;
			if (last != end)
				l_del = __es_scan_range(inode,
							&ext4_es_is_delonly,
							end + 1, last);
			if (l_del)
				__insert_pending(inode, last);
			else
				__remove_pending(inode, last);
		}
	} else {
		first = EXT4_LBLK_CMASK(sbi, lblk);
		if (first != lblk)
			f_del = __es_scan_range(inode, &ext4_es_is_delonly,
						first, lblk - 1);
		if (f_del)
			__insert_pending(inode, first);
		else
			__remove_pending(inode, first);

		last = EXT4_LBLK_CMASK(sbi, end) + sbi->s_cluster_ratio - 1;
		if (last != end)
			l_del = __es_scan_range(inode, &ext4_es_is_delonly,
						end + 1, last);
		if (l_del)
			__insert_pending(inode, last);
		else
			__remove_pending(inode, last);
	}
}