extents_status.c 35.0 KB
Newer Older
1 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.
 */
#include <linux/rbtree.h>
13
#include <linux/list_sort.h>
14 15
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
16 17 18
#include "ext4.h"
#include "extents_status.h"

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

21 22 23 24 25 26 27
/*
 * 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 已提交
28
 * extent tree, whose goal is only track delayed extents in memory to
29 30
 * 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 已提交
31 32
 * delay extent tree at the first commit.  But for better understand
 * what it does, it has been rename to extent status tree.
33
 *
Z
Zheng Liu 已提交
34 35 36 37
 * 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
38 39 40 41 42
 * 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 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55
 *
 * 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.
56 57 58
 */

/*
Z
Zheng Liu 已提交
59
 * Extent status tree implementation for ext4.
60 61 62
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
63
 * Extent status tree tracks all extent status.
64
 *
Z
Zheng Liu 已提交
65
 * 1. Why we need to implement extent status tree?
66
 *
Z
Zheng Liu 已提交
67
 * Without extent status tree, ext4 identifies a delayed extent by looking
68 69 70
 * up page cache, this has several deficiencies - complicated, buggy,
 * and inefficient code.
 *
Z
Zheng Liu 已提交
71 72
 * 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.
73
 *
Z
Zheng Liu 已提交
74
 * Let us have a look at how they do without extent status tree.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
 *   --	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
 *	time comsuming.
 *
Z
Zheng Liu 已提交
91
 * With extent status tree implementation, FIEMAP, SEEK_HOLE/DATA,
92 93
 * 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 已提交
94
 * not by searching the extent tree.
95 96 97
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
98 99 100 101 102 103 104 105
 * 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.
106
 *
Z
Zheng Liu 已提交
107 108 109 110
 *   --	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.
111
 *
Z
Zheng Liu 已提交
112 113 114
 *   --	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.
115
 *
Z
Zheng Liu 已提交
116 117
 *   --	race on a extent status tree
 *	Extent status tree is protected by inode->i_es_lock.
118
 *
Z
Zheng Liu 已提交
119 120 121 122
 *   --	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.
123 124 125
 *
 *
 * ==========================================================================
Z
Zheng Liu 已提交
126 127
 * 3. Performance analysis
 *
128 129 130 131 132 133 134 135 136 137 138 139
 *   --	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 已提交
140
 *   -- Refactor delayed space reservation
141 142 143 144 145 146
 *
 *   -- Extent-level locking
 */

static struct kmem_cache *ext4_es_cachep;

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 151
static int __es_try_to_reclaim_extents(struct ext4_inode_info *ei,
				       int nr_to_scan);
152 153
static int __ext4_es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
			    struct ext4_inode_info *locked_ei);
Z
Zheng Liu 已提交
154

155 156
int __init ext4_init_es(void)
{
T
Theodore Ts'o 已提交
157 158 159
	ext4_es_cachep = kmem_cache_create("ext4_extent_status",
					   sizeof(struct extent_status),
					   0, (SLAB_RECLAIM_ACCOUNT), NULL);
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
	if (ext4_es_cachep == NULL)
		return -ENOMEM;
	return 0;
}

void ext4_exit_es(void)
{
	if (ext4_es_cachep)
		kmem_cache_destroy(ext4_es_cachep);
}

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;
}

/*
Y
Yan, Zheng 已提交
239 240
 * ext4_es_find_delayed_extent_range: find the 1st delayed extent covering
 * @es->lblk if it exists, otherwise, the next extent after @es->lblk.
241 242
 *
 * @inode: the inode which owns delayed extents
243
 * @lblk: the offset where we start to search
Y
Yan, Zheng 已提交
244
 * @end: the offset where we stop to search
245 246
 * @es: delayed extent that we found
 */
Y
Yan, Zheng 已提交
247 248
void ext4_es_find_delayed_extent_range(struct inode *inode,
				 ext4_lblk_t lblk, ext4_lblk_t end,
249
				 struct extent_status *es)
250 251 252 253 254
{
	struct ext4_es_tree *tree = NULL;
	struct extent_status *es1 = NULL;
	struct rb_node *node;

255
	BUG_ON(es == NULL);
Y
Yan, Zheng 已提交
256 257
	BUG_ON(end < lblk);
	trace_ext4_es_find_delayed_extent_range_enter(inode, lblk);
258

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

262
	/* find extent in cache firstly */
263
	es->es_lblk = es->es_len = es->es_pblk = 0;
264 265
	if (tree->cache_es) {
		es1 = tree->cache_es;
266
		if (in_range(lblk, es1->es_lblk, es1->es_len)) {
267
			es_debug("%u cached by [%u/%u) %llu %x\n",
268
				 lblk, es1->es_lblk, es1->es_len,
269
				 ext4_es_pblock(es1), ext4_es_status(es1));
270 271 272 273
			goto out;
		}
	}

274
	es1 = __es_tree_search(&tree->root, lblk);
275 276

out:
277 278 279
	if (es1 && !ext4_es_is_delayed(es1)) {
		while ((node = rb_next(&es1->rb_node)) != NULL) {
			es1 = rb_entry(node, struct extent_status, rb_node);
Y
Yan, Zheng 已提交
280 281 282 283
			if (es1->es_lblk > end) {
				es1 = NULL;
				break;
			}
284 285 286 287 288 289
			if (ext4_es_is_delayed(es1))
				break;
		}
	}

	if (es1 && ext4_es_is_delayed(es1)) {
290
		tree->cache_es = es1;
Z
Zheng Liu 已提交
291 292
		es->es_lblk = es1->es_lblk;
		es->es_len = es1->es_len;
293
		es->es_pblk = es1->es_pblk;
294 295 296
	}

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

Y
Yan, Zheng 已提交
298
	trace_ext4_es_find_delayed_extent_range_exit(inode, es);
299 300 301
}

static struct extent_status *
302 303
ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len,
		     ext4_fsblk_t pblk)
304 305 306 307 308
{
	struct extent_status *es;
	es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC);
	if (es == NULL)
		return NULL;
Z
Zheng Liu 已提交
309 310
	es->es_lblk = lblk;
	es->es_len = len;
311
	es->es_pblk = pblk;
312 313 314 315

	/*
	 * We don't count delayed extent because we never try to reclaim them
	 */
T
Theodore Ts'o 已提交
316
	if (!ext4_es_is_delayed(es)) {
317
		EXT4_I(inode)->i_es_lru_nr++;
318 319
		percpu_counter_inc(&EXT4_SB(inode->i_sb)->
					s_es_stats.es_stats_lru_cnt);
T
Theodore Ts'o 已提交
320
	}
321

322 323 324
	EXT4_I(inode)->i_es_all_nr++;
	percpu_counter_inc(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);

325 326 327
	return es;
}

328
static void ext4_es_free_extent(struct inode *inode, struct extent_status *es)
329
{
330 331 332
	EXT4_I(inode)->i_es_all_nr--;
	percpu_counter_dec(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);

333 334 335 336
	/* Decrease the lru counter when this es is not delayed */
	if (!ext4_es_is_delayed(es)) {
		BUG_ON(EXT4_I(inode)->i_es_lru_nr == 0);
		EXT4_I(inode)->i_es_lru_nr--;
337 338
		percpu_counter_dec(&EXT4_SB(inode->i_sb)->
					s_es_stats.es_stats_lru_cnt);
339 340
	}

341 342 343
	kmem_cache_free(ext4_es_cachep, es);
}

Z
Zheng Liu 已提交
344 345 346 347
/*
 * Check whether or not two extents can be merged
 * Condition:
 *  - logical block number is contiguous
348 349
 *  - physical block number is contiguous
 *  - status is equal
Z
Zheng Liu 已提交
350 351 352 353
 */
static int ext4_es_can_be_merged(struct extent_status *es1,
				 struct extent_status *es2)
{
354
	if (ext4_es_status(es1) != ext4_es_status(es2))
Z
Zheng Liu 已提交
355 356
		return 0;

357 358 359 360 361 362
	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);
363
		return 0;
364
	}
365

366
	if (((__u64) es1->es_lblk) + es1->es_len != es2->es_lblk)
367 368
		return 0;

369 370 371 372 373 374 375 376 377 378 379 380
	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 已提交
381 382
}

383
static struct extent_status *
384
ext4_es_try_to_merge_left(struct inode *inode, struct extent_status *es)
385
{
386
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
387 388 389 390 391 392 393 394
	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 已提交
395 396
	if (ext4_es_can_be_merged(es1, es)) {
		es1->es_len += es->es_len;
397
		rb_erase(&es->rb_node, &tree->root);
398
		ext4_es_free_extent(inode, es);
399 400 401 402 403 404 405
		es = es1;
	}

	return es;
}

static struct extent_status *
406
ext4_es_try_to_merge_right(struct inode *inode, struct extent_status *es)
407
{
408
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
409 410 411 412 413 414 415 416
	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 已提交
417 418
	if (ext4_es_can_be_merged(es, es1)) {
		es->es_len += es1->es_len;
419
		rb_erase(node, &tree->root);
420
		ext4_es_free_extent(inode, es1);
421 422 423 424 425
	}

	return es;
}

426
#ifdef ES_AGGRESSIVE_TEST
Z
Zheng Liu 已提交
427 428
#include "ext4_extents.h"	/* Needed when ES_AGGRESSIVE_TEST is defined */

429 430 431 432 433 434 435 436 437 438
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;

439
	path = ext4_find_extent(inode, es->es_lblk, NULL, EXT4_EX_NOCACHE);
440 441 442 443 444 445 446 447 448 449 450 451
	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);

452
		ee_status = ext4_ext_is_unwritten(ex) ? 1 : 0;
453 454 455 456 457 458 459 460
		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)) {
461
				pr_warn("ES insert assertion failed for "
462 463
					"inode: %lu we can find an extent "
					"at block [%d/%d/%llu/%c], but we "
464 465
					"want to add a delayed/hole extent "
					"[%d/%d/%llu/%x]\n",
466 467 468 469 470 471 472 473 474 475 476 477 478 479
					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) {
480
			pr_warn("ES insert assertion failed for inode: %lu "
481 482 483 484 485 486 487 488 489
				"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) {
490
			pr_warn("ES insert assertion failed for inode: %lu "
491 492 493 494 495 496 497 498 499 500 501 502
				"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)) {
503
			pr_warn("ES insert assertion failed for inode: %lu "
504
				"can't find an extent at block %d but we want "
505 506
				"to add a written/unwritten extent "
				"[%d/%d/%llu/%x]\n", inode->i_ino,
507 508 509 510 511
				es->es_lblk, es->es_lblk, es->es_len,
				ext4_es_pblock(es), ext4_es_status(es));
		}
	}
out:
512 513
	ext4_ext_drop_refs(path);
	kfree(path);
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
}

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.
			 */
539
			pr_warn("ES insert assertion failed for inode: %lu "
540
				"We can find blocks but we want to add a "
541
				"delayed/hole extent [%d/%d/%llu/%x]\n",
542 543 544 545 546
				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) {
547
				pr_warn("ES insert assertion failed for "
548 549 550 551 552
					"inode: %lu retval %d != es_len %d\n",
					inode->i_ino, retval, es->es_len);
				return;
			}
			if (map.m_pblk != ext4_es_pblock(es)) {
553
				pr_warn("ES insert assertion failed for "
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
					"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)) {
569
			pr_warn("ES insert assertion failed for inode: %lu "
570
				"We can't find the block but we want to add "
571
				"a written extent [%d/%d/%llu/%x]\n",
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
				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

599
static int __es_insert_extent(struct inode *inode, struct extent_status *newes)
600
{
601
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
602 603 604 605 606 607 608 609
	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 已提交
610 611 612 613 614 615 616 617
		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;
618 619 620 621
				if (ext4_es_is_written(es) ||
				    ext4_es_is_unwritten(es))
					ext4_es_store_pblock(es,
							     newes->es_pblk);
622
				es = ext4_es_try_to_merge_left(inode, es);
623 624 625
				goto out;
			}
			p = &(*p)->rb_left;
Z
Zheng Liu 已提交
626 627 628
		} else if (newes->es_lblk > ext4_es_end(es)) {
			if (ext4_es_can_be_merged(es, newes)) {
				es->es_len += newes->es_len;
629
				es = ext4_es_try_to_merge_right(inode, es);
630 631 632 633
				goto out;
			}
			p = &(*p)->rb_right;
		} else {
Z
Zheng Liu 已提交
634 635
			BUG_ON(1);
			return -EINVAL;
636 637 638
		}
	}

639
	es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len,
640
				  newes->es_pblk);
641 642 643 644 645 646 647 648 649 650 651
	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;
}

/*
652 653
 * ext4_es_insert_extent() adds information to an inode's extent
 * status tree.
654 655 656
 *
 * Return 0 on success, error code on failure.
 */
Z
Zheng Liu 已提交
657
int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
658
			  ext4_lblk_t len, ext4_fsblk_t pblk,
659
			  unsigned int status)
660
{
Z
Zheng Liu 已提交
661 662
	struct extent_status newes;
	ext4_lblk_t end = lblk + len - 1;
663 664
	int err = 0;

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

668 669 670
	if (!len)
		return 0;

Z
Zheng Liu 已提交
671 672 673 674
	BUG_ON(end < lblk);

	newes.es_lblk = lblk;
	newes.es_len = len;
675
	ext4_es_store_pblock_status(&newes, pblk, status);
676
	trace_ext4_es_insert_extent(inode, &newes);
677

678 679
	ext4_es_insert_extent_check(inode, &newes);

680
	write_lock(&EXT4_I(inode)->i_es_lock);
681
	err = __es_remove_extent(inode, lblk, end);
Z
Zheng Liu 已提交
682 683
	if (err != 0)
		goto error;
684
retry:
685
	err = __es_insert_extent(inode, &newes);
686 687 688 689 690
	if (err == -ENOMEM && __ext4_es_shrink(EXT4_SB(inode->i_sb), 1,
					       EXT4_I(inode)))
		goto retry;
	if (err == -ENOMEM && !ext4_es_is_delayed(&newes))
		err = 0;
Z
Zheng Liu 已提交
691 692

error:
693 694 695 696 697 698 699
	write_unlock(&EXT4_I(inode)->i_es_lock);

	ext4_es_print_tree(inode);

	return err;
}

700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
/*
 * 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;
715
	ext4_es_store_pblock_status(&newes, pblk, status);
716 717 718 719 720 721 722 723 724 725
	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);
726 727
	if (!es || es->es_lblk > end)
		__es_insert_extent(inode, &newes);
728 729 730
	write_unlock(&EXT4_I(inode)->i_es_lock);
}

731 732 733 734 735 736 737 738 739 740 741
/*
 * 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;
742
	struct ext4_es_stats *stats;
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
	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:
779
	stats = &EXT4_SB(inode->i_sb)->s_es_stats;
780 781 782 783 784
	if (found) {
		BUG_ON(!es1);
		es->es_lblk = es1->es_lblk;
		es->es_len = es1->es_len;
		es->es_pblk = es1->es_pblk;
785 786 787
		stats->es_stats_cache_hits++;
	} else {
		stats->es_stats_cache_misses++;
788 789 790 791 792 793 794 795
	}

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

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

796 797
static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
			      ext4_lblk_t end)
798
{
799
	struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
800 801 802
	struct rb_node *node;
	struct extent_status *es;
	struct extent_status orig_es;
Z
Zheng Liu 已提交
803
	ext4_lblk_t len1, len2;
804
	ext4_fsblk_t block;
805
	int err;
806

807 808
retry:
	err = 0;
Z
Zheng Liu 已提交
809
	es = __es_tree_search(&tree->root, lblk);
810 811
	if (!es)
		goto out;
Z
Zheng Liu 已提交
812
	if (es->es_lblk > end)
813 814 815 816 817
		goto out;

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

Z
Zheng Liu 已提交
818 819
	orig_es.es_lblk = es->es_lblk;
	orig_es.es_len = es->es_len;
820 821
	orig_es.es_pblk = es->es_pblk;

Z
Zheng Liu 已提交
822 823
	len1 = lblk > es->es_lblk ? lblk - es->es_lblk : 0;
	len2 = ext4_es_end(es) > end ? ext4_es_end(es) - end : 0;
824
	if (len1 > 0)
Z
Zheng Liu 已提交
825
		es->es_len = len1;
826 827
	if (len2 > 0) {
		if (len1 > 0) {
Z
Zheng Liu 已提交
828 829 830 831
			struct extent_status newes;

			newes.es_lblk = end + 1;
			newes.es_len = len2;
832
			block = 0x7FDEADBEEFULL;
833
			if (ext4_es_is_written(&orig_es) ||
834
			    ext4_es_is_unwritten(&orig_es))
835 836
				block = ext4_es_pblock(&orig_es) +
					orig_es.es_len - len2;
837 838
			ext4_es_store_pblock_status(&newes, block,
						    ext4_es_status(&orig_es));
839
			err = __es_insert_extent(inode, &newes);
840
			if (err) {
Z
Zheng Liu 已提交
841 842
				es->es_lblk = orig_es.es_lblk;
				es->es_len = orig_es.es_len;
843 844 845 846
				if ((err == -ENOMEM) &&
				    __ext4_es_shrink(EXT4_SB(inode->i_sb), 1,
						     EXT4_I(inode)))
					goto retry;
847 848 849
				goto out;
			}
		} else {
Z
Zheng Liu 已提交
850 851
			es->es_lblk = end + 1;
			es->es_len = len2;
852 853 854 855 856
			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);
			}
857 858 859 860 861 862 863 864 865 866 867 868
		}
		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 已提交
869
	while (es && ext4_es_end(es) <= end) {
870 871
		node = rb_next(&es->rb_node);
		rb_erase(&es->rb_node, &tree->root);
872
		ext4_es_free_extent(inode, es);
873 874 875 876 877 878 879
		if (!node) {
			es = NULL;
			break;
		}
		es = rb_entry(node, struct extent_status, rb_node);
	}

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

Z
Zheng Liu 已提交
883 884 885
		len1 = ext4_es_end(es) - end;
		es->es_lblk = end + 1;
		es->es_len = len1;
886 887 888 889
		if (ext4_es_is_written(es) || ext4_es_is_unwritten(es)) {
			block = es->es_pblk + orig_len - len1;
			ext4_es_store_pblock(es, block);
		}
890 891 892
	}

out:
Z
Zheng Liu 已提交
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
	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);

911 912 913
	if (!len)
		return err;

Z
Zheng Liu 已提交
914 915 916 917
	end = lblk + len - 1;
	BUG_ON(end < lblk);

	write_lock(&EXT4_I(inode)->i_es_lock);
918
	err = __es_remove_extent(inode, lblk, end);
919 920 921 922
	write_unlock(&EXT4_I(inode)->i_es_lock);
	ext4_es_print_tree(inode);
	return err;
}
923

924 925 926 927 928 929 930
static int ext4_inode_touch_time_cmp(void *priv, struct list_head *a,
				     struct list_head *b)
{
	struct ext4_inode_info *eia, *eib;
	eia = list_entry(a, struct ext4_inode_info, i_es_lru);
	eib = list_entry(b, struct ext4_inode_info, i_es_lru);

931 932 933 934 935 936
	if (ext4_test_inode_state(&eia->vfs_inode, EXT4_STATE_EXT_PRECACHED) &&
	    !ext4_test_inode_state(&eib->vfs_inode, EXT4_STATE_EXT_PRECACHED))
		return 1;
	if (!ext4_test_inode_state(&eia->vfs_inode, EXT4_STATE_EXT_PRECACHED) &&
	    ext4_test_inode_state(&eib->vfs_inode, EXT4_STATE_EXT_PRECACHED))
		return -1;
937 938 939 940 941 942 943 944
	if (eia->i_touch_when == eib->i_touch_when)
		return 0;
	if (time_after(eia->i_touch_when, eib->i_touch_when))
		return 1;
	else
		return -1;
}

945 946
static int __ext4_es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
			    struct ext4_inode_info *locked_ei)
947 948
{
	struct ext4_inode_info *ei;
949
	struct ext4_es_stats *es_stats;
950
	struct list_head *cur, *tmp;
951
	LIST_HEAD(skipped);
952 953
	ktime_t start_time;
	u64 scan_time;
954
	int nr_shrunk = 0;
955
	int retried = 0, skip_precached = 1, nr_skipped = 0;
956

957 958
	es_stats = &sbi->s_es_stats;
	start_time = ktime_get();
959
	spin_lock(&sbi->s_es_lru_lock);
960

961
retry:
962
	list_for_each_safe(cur, tmp, &sbi->s_es_lru) {
963 964
		int shrunk;

965 966 967 968
		/*
		 * If we have already reclaimed all extents from extent
		 * status tree, just stop the loop immediately.
		 */
969 970
		if (percpu_counter_read_positive(
				&es_stats->es_stats_lru_cnt) == 0)
971
			break;
972 973 974

		ei = list_entry(cur, struct ext4_inode_info, i_es_lru);

975 976 977 978 979
		/*
		 * Skip the inode that is newer than the last_sorted
		 * time.  Normally we try hard to avoid shrinking
		 * precached inodes, but we will as a last resort.
		 */
980
		if ((es_stats->es_stats_last_sorted < ei->i_touch_when) ||
981 982 983 984
		    (skip_precached && ext4_test_inode_state(&ei->vfs_inode,
						EXT4_STATE_EXT_PRECACHED))) {
			nr_skipped++;
			list_move_tail(cur, &skipped);
985 986
			continue;
		}
987

988 989
		if (ei->i_es_lru_nr == 0 || ei == locked_ei ||
		    !write_trylock(&ei->i_es_lock))
990
			continue;
991

992
		shrunk = __es_try_to_reclaim_extents(ei, nr_to_scan);
993 994
		if (ei->i_es_lru_nr == 0)
			list_del_init(&ei->i_es_lru);
995 996
		write_unlock(&ei->i_es_lock);

997 998
		nr_shrunk += shrunk;
		nr_to_scan -= shrunk;
999 1000 1001
		if (nr_to_scan == 0)
			break;
	}
1002 1003

	/* Move the newer inodes into the tail of the LRU list. */
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
	list_splice_tail(&skipped, &sbi->s_es_lru);
	INIT_LIST_HEAD(&skipped);

	/*
	 * If we skipped any inodes, and we weren't able to make any
	 * forward progress, sort the list and try again.
	 */
	if ((nr_shrunk == 0) && nr_skipped && !retried) {
		retried++;
		list_sort(NULL, &sbi->s_es_lru, ext4_inode_touch_time_cmp);
1014
		es_stats->es_stats_last_sorted = jiffies;
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
		ei = list_first_entry(&sbi->s_es_lru, struct ext4_inode_info,
				      i_es_lru);
		/*
		 * If there are no non-precached inodes left on the
		 * list, start releasing precached extents.
		 */
		if (ext4_test_inode_state(&ei->vfs_inode,
					  EXT4_STATE_EXT_PRECACHED))
			skip_precached = 0;
		goto retry;
	}

1027 1028
	spin_unlock(&sbi->s_es_lru_lock);

1029
	if (locked_ei && nr_shrunk == 0)
1030
		nr_shrunk = __es_try_to_reclaim_extents(locked_ei, nr_to_scan);
1031

1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
	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;

	trace_ext4_es_shrink(sbi->s_sb, nr_shrunk, scan_time, skip_precached,
			     nr_skipped, retried);
1048 1049 1050
	return nr_shrunk;
}

1051 1052 1053 1054 1055 1056 1057
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);
1058
	nr = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_lru_cnt);
1059
	trace_ext4_es_shrink_count(sbi->s_sb, sc->nr_to_scan, nr);
1060 1061 1062 1063 1064
	return nr;
}

static unsigned long ext4_es_scan(struct shrinker *shrink,
				  struct shrink_control *sc)
1065 1066 1067 1068 1069 1070
{
	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;

1071
	ret = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_lru_cnt);
1072
	trace_ext4_es_shrink_scan_enter(sbi->s_sb, nr_to_scan, ret);
1073 1074 1075 1076 1077 1078

	if (!nr_to_scan)
		return ret;

	nr_shrunk = __ext4_es_shrink(sbi, nr_to_scan, NULL);

1079
	trace_ext4_es_shrink_scan_exit(sbi->s_sb, nr_shrunk, ret);
1080
	return nr_shrunk;
1081 1082
}

1083
static void *ext4_es_seq_shrinker_info_start(struct seq_file *seq, loff_t *pos)
1084
{
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
	return *pos ? NULL : SEQ_START_TOKEN;
}

static void *
ext4_es_seq_shrinker_info_next(struct seq_file *seq, void *v, loff_t *pos)
{
	return NULL;
}

static int ext4_es_seq_shrinker_info_show(struct seq_file *seq, void *v)
{
	struct ext4_sb_info *sbi = seq->private;
	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 */
	spin_lock(&sbi->s_es_lru_lock);
	list_for_each_entry(ei, &sbi->s_es_lru, i_es_lru) {
		inode_cnt++;
		if (max && max->i_es_all_nr < ei->i_es_all_nr)
			max = ei;
		else if (!max)
			max = ei;
	}
	spin_unlock(&sbi->s_es_lru_lock);

	seq_printf(seq, "stats:\n  %lld objects\n  %lld reclaimable objects\n",
		   percpu_counter_sum_positive(&es_stats->es_stats_all_cnt),
		   percpu_counter_sum_positive(&es_stats->es_stats_lru_cnt));
	seq_printf(seq, "  %lu/%lu cache hits/misses\n",
		   es_stats->es_stats_cache_hits,
		   es_stats->es_stats_cache_misses);
	if (es_stats->es_stats_last_sorted != 0)
		seq_printf(seq, "  %u ms last sorted interval\n",
			   jiffies_to_msecs(jiffies -
					    es_stats->es_stats_last_sorted));
	if (inode_cnt)
		seq_printf(seq, "  %d inodes on lru list\n", inode_cnt);

	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",
		    max->vfs_inode.i_ino, max->i_es_all_nr, max->i_es_lru_nr,
		    div_u64(es_stats->es_stats_max_scan_time, 1000));

	return 0;
}

static void ext4_es_seq_shrinker_info_stop(struct seq_file *seq, void *v)
{
}

static const struct seq_operations ext4_es_seq_shrinker_info_ops = {
	.start = ext4_es_seq_shrinker_info_start,
	.next  = ext4_es_seq_shrinker_info_next,
	.stop  = ext4_es_seq_shrinker_info_stop,
	.show  = ext4_es_seq_shrinker_info_show,
};

static int
ext4_es_seq_shrinker_info_open(struct inode *inode, struct file *file)
{
	int ret;

	ret = seq_open(file, &ext4_es_seq_shrinker_info_ops);
	if (!ret) {
		struct seq_file *m = file->private_data;
		m->private = PDE_DATA(inode);
	}

	return ret;
}

static int
ext4_es_seq_shrinker_info_release(struct inode *inode, struct file *file)
{
	return seq_release(inode, file);
}

static const struct file_operations ext4_es_seq_shrinker_info_fops = {
	.owner		= THIS_MODULE,
	.open		= ext4_es_seq_shrinker_info_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= ext4_es_seq_shrinker_info_release,
};

int ext4_es_register_shrinker(struct ext4_sb_info *sbi)
1181
{
1182 1183
	int err;

1184 1185
	INIT_LIST_HEAD(&sbi->s_es_lru);
	spin_lock_init(&sbi->s_es_lru_lock);
1186 1187 1188 1189 1190 1191
	sbi->s_es_stats.es_stats_last_sorted = 0;
	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;
1192
	err = percpu_counter_init(&sbi->s_es_stats.es_stats_all_cnt, 0, GFP_KERNEL);
1193 1194
	if (err)
		return err;
1195
	err = percpu_counter_init(&sbi->s_es_stats.es_stats_lru_cnt, 0, GFP_KERNEL);
1196 1197 1198
	if (err)
		goto err1;

1199 1200
	sbi->s_es_shrinker.scan_objects = ext4_es_scan;
	sbi->s_es_shrinker.count_objects = ext4_es_count;
1201
	sbi->s_es_shrinker.seeks = DEFAULT_SEEKS;
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	err = register_shrinker(&sbi->s_es_shrinker);
	if (err)
		goto err2;

	if (sbi->s_proc)
		proc_create_data("es_shrinker_info", S_IRUGO, sbi->s_proc,
				 &ext4_es_seq_shrinker_info_fops, sbi);

	return 0;

err2:
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_lru_cnt);
err1:
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
	return err;
1217 1218
}

1219
void ext4_es_unregister_shrinker(struct ext4_sb_info *sbi)
1220
{
1221 1222 1223 1224
	if (sbi->s_proc)
		remove_proc_entry("es_shrinker_info", sbi->s_proc);
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
	percpu_counter_destroy(&sbi->s_es_stats.es_stats_lru_cnt);
1225
	unregister_shrinker(&sbi->s_es_shrinker);
1226 1227 1228 1229 1230 1231 1232
}

void ext4_es_lru_add(struct inode *inode)
{
	struct ext4_inode_info *ei = EXT4_I(inode);
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);

1233 1234 1235 1236 1237
	ei->i_touch_when = jiffies;

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

1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
	spin_lock(&sbi->s_es_lru_lock);
	if (list_empty(&ei->i_es_lru))
		list_add_tail(&ei->i_es_lru, &sbi->s_es_lru);
	spin_unlock(&sbi->s_es_lru_lock);
}

void ext4_es_lru_del(struct inode *inode)
{
	struct ext4_inode_info *ei = EXT4_I(inode);
	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);

	spin_lock(&sbi->s_es_lru_lock);
	if (!list_empty(&ei->i_es_lru))
		list_del_init(&ei->i_es_lru);
	spin_unlock(&sbi->s_es_lru_lock);
}

static int __es_try_to_reclaim_extents(struct ext4_inode_info *ei,
				       int nr_to_scan)
{
	struct inode *inode = &ei->vfs_inode;
	struct ext4_es_tree *tree = &ei->i_es_tree;
	struct rb_node *node;
	struct extent_status *es;
1262
	unsigned long nr_shrunk = 0;
1263 1264
	static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
				      DEFAULT_RATELIMIT_BURST);
1265 1266 1267 1268

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

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

1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	node = rb_first(&tree->root);
	while (node != NULL) {
		es = rb_entry(node, struct extent_status, rb_node);
		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.
		 */
		if (!ext4_es_is_delayed(es)) {
			rb_erase(&es->rb_node, &tree->root);
			ext4_es_free_extent(inode, es);
			nr_shrunk++;
			if (--nr_to_scan == 0)
				break;
		}
	}
	tree->cache_es = NULL;
	return nr_shrunk;
}