blob: e04d45733976efbcf942616bdaee78bd9b4e3192 [file] [log] [blame]
Zheng Liu654598b2012-11-08 21:57:20 -05001/*
2 * fs/ext4/extents_status.c
3 *
4 * Written by Yongqiang Yang <xiaoqiangnk@gmail.com>
5 * Modified by
6 * Allison Henderson <achender@linux.vnet.ibm.com>
7 * Hugh Dickins <hughd@google.com>
8 * Zheng Liu <wenqing.lz@taobao.com>
9 *
10 * Ext4 extents status tree core functions.
11 */
12#include <linux/rbtree.h>
Zheng Liud3922a72013-07-01 08:12:37 -040013#include <linux/list_sort.h>
Zheng Liueb68d0e2014-09-01 22:26:49 -040014#include <linux/proc_fs.h>
15#include <linux/seq_file.h>
Zheng Liu654598b2012-11-08 21:57:20 -050016#include "ext4.h"
17#include "extents_status.h"
Zheng Liu654598b2012-11-08 21:57:20 -050018
Zheng Liu992e9fd2012-11-08 21:57:33 -050019#include <trace/events/ext4.h>
20
Zheng Liu654598b2012-11-08 21:57:20 -050021/*
22 * According to previous discussion in Ext4 Developer Workshop, we
23 * will introduce a new structure called io tree to track all extent
24 * status in order to solve some problems that we have met
25 * (e.g. Reservation space warning), and provide extent-level locking.
26 * Delay extent tree is the first step to achieve this goal. It is
27 * original built by Yongqiang Yang. At that time it is called delay
Zheng Liu06b0c882013-02-18 00:26:51 -050028 * extent tree, whose goal is only track delayed extents in memory to
Zheng Liu654598b2012-11-08 21:57:20 -050029 * simplify the implementation of fiemap and bigalloc, and introduce
30 * lseek SEEK_DATA/SEEK_HOLE support. That is why it is still called
Zheng Liu06b0c882013-02-18 00:26:51 -050031 * delay extent tree at the first commit. But for better understand
32 * what it does, it has been rename to extent status tree.
Zheng Liu654598b2012-11-08 21:57:20 -050033 *
Zheng Liu06b0c882013-02-18 00:26:51 -050034 * Step1:
35 * Currently the first step has been done. All delayed extents are
36 * tracked in the tree. It maintains the delayed extent when a delayed
37 * allocation is issued, and the delayed extent is written out or
Zheng Liu654598b2012-11-08 21:57:20 -050038 * invalidated. Therefore the implementation of fiemap and bigalloc
39 * are simplified, and SEEK_DATA/SEEK_HOLE are introduced.
40 *
41 * The following comment describes the implemenmtation of extent
42 * status tree and future works.
Zheng Liu06b0c882013-02-18 00:26:51 -050043 *
44 * Step2:
45 * In this step all extent status are tracked by extent status tree.
46 * Thus, we can first try to lookup a block mapping in this tree before
47 * finding it in extent tree. Hence, single extent cache can be removed
48 * because extent status tree can do a better job. Extents in status
49 * tree are loaded on-demand. Therefore, the extent status tree may not
50 * contain all of the extents in a file. Meanwhile we define a shrinker
51 * to reclaim memory from extent status tree because fragmented extent
52 * tree will make status tree cost too much memory. written/unwritten/-
53 * hole extents in the tree will be reclaimed by this shrinker when we
54 * are under high memory pressure. Delayed extents will not be
55 * reclimed because fiemap, bigalloc, and seek_data/hole need it.
Zheng Liu654598b2012-11-08 21:57:20 -050056 */
57
58/*
Zheng Liu06b0c882013-02-18 00:26:51 -050059 * Extent status tree implementation for ext4.
Zheng Liu654598b2012-11-08 21:57:20 -050060 *
61 *
62 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -050063 * Extent status tree tracks all extent status.
Zheng Liu654598b2012-11-08 21:57:20 -050064 *
Zheng Liu06b0c882013-02-18 00:26:51 -050065 * 1. Why we need to implement extent status tree?
Zheng Liu654598b2012-11-08 21:57:20 -050066 *
Zheng Liu06b0c882013-02-18 00:26:51 -050067 * Without extent status tree, ext4 identifies a delayed extent by looking
Zheng Liu654598b2012-11-08 21:57:20 -050068 * up page cache, this has several deficiencies - complicated, buggy,
69 * and inefficient code.
70 *
Zheng Liu06b0c882013-02-18 00:26:51 -050071 * FIEMAP, SEEK_HOLE/DATA, bigalloc, and writeout all need to know if a
72 * block or a range of blocks are belonged to a delayed extent.
Zheng Liu654598b2012-11-08 21:57:20 -050073 *
Zheng Liu06b0c882013-02-18 00:26:51 -050074 * Let us have a look at how they do without extent status tree.
Zheng Liu654598b2012-11-08 21:57:20 -050075 * -- FIEMAP
76 * FIEMAP looks up page cache to identify delayed allocations from holes.
77 *
78 * -- SEEK_HOLE/DATA
79 * SEEK_HOLE/DATA has the same problem as FIEMAP.
80 *
81 * -- bigalloc
82 * bigalloc looks up page cache to figure out if a block is
83 * already under delayed allocation or not to determine whether
84 * quota reserving is needed for the cluster.
85 *
Zheng Liu654598b2012-11-08 21:57:20 -050086 * -- writeout
87 * Writeout looks up whole page cache to see if a buffer is
88 * mapped, If there are not very many delayed buffers, then it is
89 * time comsuming.
90 *
Zheng Liu06b0c882013-02-18 00:26:51 -050091 * With extent status tree implementation, FIEMAP, SEEK_HOLE/DATA,
Zheng Liu654598b2012-11-08 21:57:20 -050092 * bigalloc and writeout can figure out if a block or a range of
93 * blocks is under delayed allocation(belonged to a delayed extent) or
Zheng Liu06b0c882013-02-18 00:26:51 -050094 * not by searching the extent tree.
Zheng Liu654598b2012-11-08 21:57:20 -050095 *
96 *
97 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -050098 * 2. Ext4 extent status tree impelmentation
Zheng Liu654598b2012-11-08 21:57:20 -050099 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500100 * -- extent
101 * A extent is a range of blocks which are contiguous logically and
102 * physically. Unlike extent in extent tree, this extent in ext4 is
103 * a in-memory struct, there is no corresponding on-disk data. There
104 * is no limit on length of extent, so an extent can contain as many
105 * blocks as they are contiguous logically and physically.
Zheng Liu654598b2012-11-08 21:57:20 -0500106 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500107 * -- extent status tree
108 * Every inode has an extent status tree and all allocation blocks
109 * are added to the tree with different status. The extent in the
110 * tree are ordered by logical block no.
Zheng Liu654598b2012-11-08 21:57:20 -0500111 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500112 * -- operations on a extent status tree
113 * There are three important operations on a delayed extent tree: find
114 * next extent, adding a extent(a range of blocks) and removing a extent.
Zheng Liu654598b2012-11-08 21:57:20 -0500115 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500116 * -- race on a extent status tree
117 * Extent status tree is protected by inode->i_es_lock.
118 *
119 * -- memory consumption
120 * Fragmented extent tree will make extent status tree cost too much
121 * memory. Hence, we will reclaim written/unwritten/hole extents from
122 * the tree under a heavy memory pressure.
Zheng Liu654598b2012-11-08 21:57:20 -0500123 *
124 *
125 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -0500126 * 3. Performance analysis
127 *
Zheng Liu654598b2012-11-08 21:57:20 -0500128 * -- overhead
129 * 1. There is a cache extent for write access, so if writes are
130 * not very random, adding space operaions are in O(1) time.
131 *
132 * -- gain
133 * 2. Code is much simpler, more readable, more maintainable and
134 * more efficient.
135 *
136 *
137 * ==========================================================================
138 * 4. TODO list
Zheng Liu654598b2012-11-08 21:57:20 -0500139 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500140 * -- Refactor delayed space reservation
Zheng Liu654598b2012-11-08 21:57:20 -0500141 *
142 * -- Extent-level locking
143 */
144
145static struct kmem_cache *ext4_es_cachep;
146
Zheng Liubdedbb72013-02-18 00:32:02 -0500147static int __es_insert_extent(struct inode *inode, struct extent_status *newes);
148static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
Zheng Liu06b0c882013-02-18 00:26:51 -0500149 ext4_lblk_t end);
Jan Karadd475922014-11-25 11:51:23 -0500150static int es_reclaim_extents(struct ext4_inode_info *ei, int *nr_to_scan);
Zheng Liuedaa53c2014-11-25 11:45:37 -0500151static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
152 struct ext4_inode_info *locked_ei);
Zheng Liu06b0c882013-02-18 00:26:51 -0500153
Zheng Liu654598b2012-11-08 21:57:20 -0500154int __init ext4_init_es(void)
155{
Theodore Ts'o24630772013-02-28 23:58:56 -0500156 ext4_es_cachep = kmem_cache_create("ext4_extent_status",
157 sizeof(struct extent_status),
158 0, (SLAB_RECLAIM_ACCOUNT), NULL);
Zheng Liu654598b2012-11-08 21:57:20 -0500159 if (ext4_es_cachep == NULL)
160 return -ENOMEM;
161 return 0;
162}
163
164void ext4_exit_es(void)
165{
166 if (ext4_es_cachep)
167 kmem_cache_destroy(ext4_es_cachep);
168}
169
170void ext4_es_init_tree(struct ext4_es_tree *tree)
171{
172 tree->root = RB_ROOT;
173 tree->cache_es = NULL;
174}
175
176#ifdef ES_DEBUG__
177static void ext4_es_print_tree(struct inode *inode)
178{
179 struct ext4_es_tree *tree;
180 struct rb_node *node;
181
182 printk(KERN_DEBUG "status extents for inode %lu:", inode->i_ino);
183 tree = &EXT4_I(inode)->i_es_tree;
184 node = rb_first(&tree->root);
185 while (node) {
186 struct extent_status *es;
187 es = rb_entry(node, struct extent_status, rb_node);
Eric Whitneyce140cd2014-02-20 16:09:12 -0500188 printk(KERN_DEBUG " [%u/%u) %llu %x",
Zheng Liufdc02122013-02-18 00:26:51 -0500189 es->es_lblk, es->es_len,
190 ext4_es_pblock(es), ext4_es_status(es));
Zheng Liu654598b2012-11-08 21:57:20 -0500191 node = rb_next(node);
192 }
193 printk(KERN_DEBUG "\n");
194}
195#else
196#define ext4_es_print_tree(inode)
197#endif
198
Zheng Liu06b0c882013-02-18 00:26:51 -0500199static inline ext4_lblk_t ext4_es_end(struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500200{
Zheng Liu06b0c882013-02-18 00:26:51 -0500201 BUG_ON(es->es_lblk + es->es_len < es->es_lblk);
202 return es->es_lblk + es->es_len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500203}
204
205/*
206 * search through the tree for an delayed extent with a given offset. If
207 * it can't be found, try to find next extent.
208 */
209static struct extent_status *__es_tree_search(struct rb_root *root,
Zheng Liu06b0c882013-02-18 00:26:51 -0500210 ext4_lblk_t lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500211{
212 struct rb_node *node = root->rb_node;
213 struct extent_status *es = NULL;
214
215 while (node) {
216 es = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500217 if (lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500218 node = node->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500219 else if (lblk > ext4_es_end(es))
Zheng Liu654598b2012-11-08 21:57:20 -0500220 node = node->rb_right;
221 else
222 return es;
223 }
224
Zheng Liu06b0c882013-02-18 00:26:51 -0500225 if (es && lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500226 return es;
227
Zheng Liu06b0c882013-02-18 00:26:51 -0500228 if (es && lblk > ext4_es_end(es)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500229 node = rb_next(&es->rb_node);
230 return node ? rb_entry(node, struct extent_status, rb_node) :
231 NULL;
232 }
233
234 return NULL;
235}
236
237/*
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400238 * ext4_es_find_delayed_extent_range: find the 1st delayed extent covering
239 * @es->lblk if it exists, otherwise, the next extent after @es->lblk.
Zheng Liu654598b2012-11-08 21:57:20 -0500240 *
241 * @inode: the inode which owns delayed extents
Zheng Liube401362013-02-18 00:27:26 -0500242 * @lblk: the offset where we start to search
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400243 * @end: the offset where we stop to search
Zheng Liu654598b2012-11-08 21:57:20 -0500244 * @es: delayed extent that we found
Zheng Liu654598b2012-11-08 21:57:20 -0500245 */
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400246void ext4_es_find_delayed_extent_range(struct inode *inode,
247 ext4_lblk_t lblk, ext4_lblk_t end,
Zheng Liube401362013-02-18 00:27:26 -0500248 struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500249{
250 struct ext4_es_tree *tree = NULL;
251 struct extent_status *es1 = NULL;
252 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500253
Zheng Liube401362013-02-18 00:27:26 -0500254 BUG_ON(es == NULL);
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400255 BUG_ON(end < lblk);
256 trace_ext4_es_find_delayed_extent_range_enter(inode, lblk);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500257
Zheng Liu654598b2012-11-08 21:57:20 -0500258 read_lock(&EXT4_I(inode)->i_es_lock);
259 tree = &EXT4_I(inode)->i_es_tree;
260
Zheng Liufdc02122013-02-18 00:26:51 -0500261 /* find extent in cache firstly */
Zheng Liube401362013-02-18 00:27:26 -0500262 es->es_lblk = es->es_len = es->es_pblk = 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500263 if (tree->cache_es) {
264 es1 = tree->cache_es;
Zheng Liube401362013-02-18 00:27:26 -0500265 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400266 es_debug("%u cached by [%u/%u) %llu %x\n",
Zheng Liube401362013-02-18 00:27:26 -0500267 lblk, es1->es_lblk, es1->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500268 ext4_es_pblock(es1), ext4_es_status(es1));
Zheng Liu654598b2012-11-08 21:57:20 -0500269 goto out;
270 }
271 }
272
Zheng Liube401362013-02-18 00:27:26 -0500273 es1 = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500274
275out:
Zheng Liube401362013-02-18 00:27:26 -0500276 if (es1 && !ext4_es_is_delayed(es1)) {
277 while ((node = rb_next(&es1->rb_node)) != NULL) {
278 es1 = rb_entry(node, struct extent_status, rb_node);
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400279 if (es1->es_lblk > end) {
280 es1 = NULL;
281 break;
282 }
Zheng Liube401362013-02-18 00:27:26 -0500283 if (ext4_es_is_delayed(es1))
284 break;
285 }
286 }
287
288 if (es1 && ext4_es_is_delayed(es1)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500289 tree->cache_es = es1;
Zheng Liu06b0c882013-02-18 00:26:51 -0500290 es->es_lblk = es1->es_lblk;
291 es->es_len = es1->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500292 es->es_pblk = es1->es_pblk;
Zheng Liu654598b2012-11-08 21:57:20 -0500293 }
294
295 read_unlock(&EXT4_I(inode)->i_es_lock);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500296
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400297 trace_ext4_es_find_delayed_extent_range_exit(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500298}
299
Jan Karab0dea4c2014-11-25 11:49:25 -0500300static void ext4_es_list_add(struct inode *inode)
Zheng Liuedaa53c2014-11-25 11:45:37 -0500301{
302 struct ext4_inode_info *ei = EXT4_I(inode);
303 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
304
305 if (!list_empty(&ei->i_es_list))
306 return;
307
308 spin_lock(&sbi->s_es_lock);
309 if (list_empty(&ei->i_es_list)) {
310 list_add_tail(&ei->i_es_list, &sbi->s_es_list);
311 sbi->s_es_nr_inode++;
312 }
313 spin_unlock(&sbi->s_es_lock);
314}
315
Jan Karab0dea4c2014-11-25 11:49:25 -0500316static void ext4_es_list_del(struct inode *inode)
Zheng Liuedaa53c2014-11-25 11:45:37 -0500317{
318 struct ext4_inode_info *ei = EXT4_I(inode);
319 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
320
321 spin_lock(&sbi->s_es_lock);
322 if (!list_empty(&ei->i_es_list)) {
323 list_del_init(&ei->i_es_list);
324 sbi->s_es_nr_inode--;
325 WARN_ON_ONCE(sbi->s_es_nr_inode < 0);
326 }
327 spin_unlock(&sbi->s_es_lock);
328}
329
Zheng Liu654598b2012-11-08 21:57:20 -0500330static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500331ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len,
332 ext4_fsblk_t pblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500333{
334 struct extent_status *es;
335 es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC);
336 if (es == NULL)
337 return NULL;
Zheng Liu06b0c882013-02-18 00:26:51 -0500338 es->es_lblk = lblk;
339 es->es_len = len;
Zheng Liufdc02122013-02-18 00:26:51 -0500340 es->es_pblk = pblk;
Zheng Liu74cd15c2013-02-18 00:32:55 -0500341
342 /*
343 * We don't count delayed extent because we never try to reclaim them
344 */
Theodore Ts'o24630772013-02-28 23:58:56 -0500345 if (!ext4_es_is_delayed(es)) {
Jan Karab0dea4c2014-11-25 11:49:25 -0500346 if (!EXT4_I(inode)->i_es_shk_nr++)
347 ext4_es_list_add(inode);
Zheng Liueb68d0e2014-09-01 22:26:49 -0400348 percpu_counter_inc(&EXT4_SB(inode->i_sb)->
Zheng Liuedaa53c2014-11-25 11:45:37 -0500349 s_es_stats.es_stats_shk_cnt);
Theodore Ts'o24630772013-02-28 23:58:56 -0500350 }
Zheng Liu74cd15c2013-02-18 00:32:55 -0500351
Zheng Liueb68d0e2014-09-01 22:26:49 -0400352 EXT4_I(inode)->i_es_all_nr++;
353 percpu_counter_inc(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);
354
Zheng Liu654598b2012-11-08 21:57:20 -0500355 return es;
356}
357
Zheng Liubdedbb72013-02-18 00:32:02 -0500358static void ext4_es_free_extent(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500359{
Zheng Liueb68d0e2014-09-01 22:26:49 -0400360 EXT4_I(inode)->i_es_all_nr--;
361 percpu_counter_dec(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);
362
Zheng Liuedaa53c2014-11-25 11:45:37 -0500363 /* Decrease the shrink counter when this es is not delayed */
Zheng Liu74cd15c2013-02-18 00:32:55 -0500364 if (!ext4_es_is_delayed(es)) {
Zheng Liuedaa53c2014-11-25 11:45:37 -0500365 BUG_ON(EXT4_I(inode)->i_es_shk_nr == 0);
Jan Karab0dea4c2014-11-25 11:49:25 -0500366 if (!--EXT4_I(inode)->i_es_shk_nr)
367 ext4_es_list_del(inode);
Zheng Liueb68d0e2014-09-01 22:26:49 -0400368 percpu_counter_dec(&EXT4_SB(inode->i_sb)->
Zheng Liuedaa53c2014-11-25 11:45:37 -0500369 s_es_stats.es_stats_shk_cnt);
Zheng Liu74cd15c2013-02-18 00:32:55 -0500370 }
371
Zheng Liu654598b2012-11-08 21:57:20 -0500372 kmem_cache_free(ext4_es_cachep, es);
373}
374
Zheng Liu06b0c882013-02-18 00:26:51 -0500375/*
376 * Check whether or not two extents can be merged
377 * Condition:
378 * - logical block number is contiguous
Zheng Liufdc02122013-02-18 00:26:51 -0500379 * - physical block number is contiguous
380 * - status is equal
Zheng Liu06b0c882013-02-18 00:26:51 -0500381 */
382static int ext4_es_can_be_merged(struct extent_status *es1,
383 struct extent_status *es2)
384{
Jan Kara2be12de2014-11-25 11:55:24 -0500385 if (ext4_es_type(es1) != ext4_es_type(es2))
Zheng Liufdc02122013-02-18 00:26:51 -0500386 return 0;
387
Lukas Czerner0baaea62014-05-12 22:21:43 -0400388 if (((__u64) es1->es_len) + es2->es_len > EXT_MAX_BLOCKS) {
389 pr_warn("ES assertion failed when merging extents. "
390 "The sum of lengths of es1 (%d) and es2 (%d) "
391 "is bigger than allowed file size (%d)\n",
392 es1->es_len, es2->es_len, EXT_MAX_BLOCKS);
393 WARN_ON(1);
Zheng Liufdc02122013-02-18 00:26:51 -0500394 return 0;
Lukas Czerner0baaea62014-05-12 22:21:43 -0400395 }
Zheng Liufdc02122013-02-18 00:26:51 -0500396
Zheng Liubd384362013-03-10 20:48:59 -0400397 if (((__u64) es1->es_lblk) + es1->es_len != es2->es_lblk)
398 return 0;
399
400 if ((ext4_es_is_written(es1) || ext4_es_is_unwritten(es1)) &&
401 (ext4_es_pblock(es1) + es1->es_len == ext4_es_pblock(es2)))
402 return 1;
403
404 if (ext4_es_is_hole(es1))
405 return 1;
406
407 /* we need to check delayed extent is without unwritten status */
408 if (ext4_es_is_delayed(es1) && !ext4_es_is_unwritten(es1))
409 return 1;
410
411 return 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500412}
413
Zheng Liu654598b2012-11-08 21:57:20 -0500414static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500415ext4_es_try_to_merge_left(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500416{
Zheng Liubdedbb72013-02-18 00:32:02 -0500417 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500418 struct extent_status *es1;
419 struct rb_node *node;
420
421 node = rb_prev(&es->rb_node);
422 if (!node)
423 return es;
424
425 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500426 if (ext4_es_can_be_merged(es1, es)) {
427 es1->es_len += es->es_len;
Jan Kara2be12de2014-11-25 11:55:24 -0500428 if (ext4_es_is_referenced(es))
429 ext4_es_set_referenced(es1);
Zheng Liu654598b2012-11-08 21:57:20 -0500430 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500431 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500432 es = es1;
433 }
434
435 return es;
436}
437
438static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500439ext4_es_try_to_merge_right(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500440{
Zheng Liubdedbb72013-02-18 00:32:02 -0500441 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500442 struct extent_status *es1;
443 struct rb_node *node;
444
445 node = rb_next(&es->rb_node);
446 if (!node)
447 return es;
448
449 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500450 if (ext4_es_can_be_merged(es, es1)) {
451 es->es_len += es1->es_len;
Jan Kara2be12de2014-11-25 11:55:24 -0500452 if (ext4_es_is_referenced(es1))
453 ext4_es_set_referenced(es);
Zheng Liu654598b2012-11-08 21:57:20 -0500454 rb_erase(node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500455 ext4_es_free_extent(inode, es1);
Zheng Liu654598b2012-11-08 21:57:20 -0500456 }
457
458 return es;
459}
460
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400461#ifdef ES_AGGRESSIVE_TEST
Zheng Liud7b2a002013-08-28 14:47:06 -0400462#include "ext4_extents.h" /* Needed when ES_AGGRESSIVE_TEST is defined */
463
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400464static void ext4_es_insert_extent_ext_check(struct inode *inode,
465 struct extent_status *es)
466{
467 struct ext4_ext_path *path = NULL;
468 struct ext4_extent *ex;
469 ext4_lblk_t ee_block;
470 ext4_fsblk_t ee_start;
471 unsigned short ee_len;
472 int depth, ee_status, es_status;
473
Theodore Ts'oed8a1a72014-09-01 14:43:09 -0400474 path = ext4_find_extent(inode, es->es_lblk, NULL, EXT4_EX_NOCACHE);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400475 if (IS_ERR(path))
476 return;
477
478 depth = ext_depth(inode);
479 ex = path[depth].p_ext;
480
481 if (ex) {
482
483 ee_block = le32_to_cpu(ex->ee_block);
484 ee_start = ext4_ext_pblock(ex);
485 ee_len = ext4_ext_get_actual_len(ex);
486
Lukas Czerner556615d2014-04-20 23:45:47 -0400487 ee_status = ext4_ext_is_unwritten(ex) ? 1 : 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400488 es_status = ext4_es_is_unwritten(es) ? 1 : 0;
489
490 /*
491 * Make sure ex and es are not overlap when we try to insert
492 * a delayed/hole extent.
493 */
494 if (!ext4_es_is_written(es) && !ext4_es_is_unwritten(es)) {
495 if (in_range(es->es_lblk, ee_block, ee_len)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400496 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400497 "inode: %lu we can find an extent "
498 "at block [%d/%d/%llu/%c], but we "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500499 "want to add a delayed/hole extent "
500 "[%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400501 inode->i_ino, ee_block, ee_len,
502 ee_start, ee_status ? 'u' : 'w',
503 es->es_lblk, es->es_len,
504 ext4_es_pblock(es), ext4_es_status(es));
505 }
506 goto out;
507 }
508
509 /*
510 * We don't check ee_block == es->es_lblk, etc. because es
511 * might be a part of whole extent, vice versa.
512 */
513 if (es->es_lblk < ee_block ||
514 ext4_es_pblock(es) != ee_start + es->es_lblk - ee_block) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400515 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400516 "ex_status [%d/%d/%llu/%c] != "
517 "es_status [%d/%d/%llu/%c]\n", inode->i_ino,
518 ee_block, ee_len, ee_start,
519 ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
520 ext4_es_pblock(es), es_status ? 'u' : 'w');
521 goto out;
522 }
523
524 if (ee_status ^ es_status) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400525 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400526 "ex_status [%d/%d/%llu/%c] != "
527 "es_status [%d/%d/%llu/%c]\n", inode->i_ino,
528 ee_block, ee_len, ee_start,
529 ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
530 ext4_es_pblock(es), es_status ? 'u' : 'w');
531 }
532 } else {
533 /*
534 * We can't find an extent on disk. So we need to make sure
535 * that we don't want to add an written/unwritten extent.
536 */
537 if (!ext4_es_is_delayed(es) && !ext4_es_is_hole(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400538 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400539 "can't find an extent at block %d but we want "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500540 "to add a written/unwritten extent "
541 "[%d/%d/%llu/%x]\n", inode->i_ino,
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400542 es->es_lblk, es->es_lblk, es->es_len,
543 ext4_es_pblock(es), ext4_es_status(es));
544 }
545 }
546out:
Theodore Ts'ob7ea89a2014-09-01 14:39:09 -0400547 ext4_ext_drop_refs(path);
548 kfree(path);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400549}
550
551static void ext4_es_insert_extent_ind_check(struct inode *inode,
552 struct extent_status *es)
553{
554 struct ext4_map_blocks map;
555 int retval;
556
557 /*
558 * Here we call ext4_ind_map_blocks to lookup a block mapping because
559 * 'Indirect' structure is defined in indirect.c. So we couldn't
560 * access direct/indirect tree from outside. It is too dirty to define
561 * this function in indirect.c file.
562 */
563
564 map.m_lblk = es->es_lblk;
565 map.m_len = es->es_len;
566
567 retval = ext4_ind_map_blocks(NULL, inode, &map, 0);
568 if (retval > 0) {
569 if (ext4_es_is_delayed(es) || ext4_es_is_hole(es)) {
570 /*
571 * We want to add a delayed/hole extent but this
572 * block has been allocated.
573 */
Theodore Ts'obdafe422013-07-13 00:40:31 -0400574 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400575 "We can find blocks but we want to add a "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500576 "delayed/hole extent [%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400577 inode->i_ino, es->es_lblk, es->es_len,
578 ext4_es_pblock(es), ext4_es_status(es));
579 return;
580 } else if (ext4_es_is_written(es)) {
581 if (retval != es->es_len) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400582 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400583 "inode: %lu retval %d != es_len %d\n",
584 inode->i_ino, retval, es->es_len);
585 return;
586 }
587 if (map.m_pblk != ext4_es_pblock(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400588 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400589 "inode: %lu m_pblk %llu != "
590 "es_pblk %llu\n",
591 inode->i_ino, map.m_pblk,
592 ext4_es_pblock(es));
593 return;
594 }
595 } else {
596 /*
597 * We don't need to check unwritten extent because
598 * indirect-based file doesn't have it.
599 */
600 BUG_ON(1);
601 }
602 } else if (retval == 0) {
603 if (ext4_es_is_written(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400604 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400605 "We can't find the block but we want to add "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500606 "a written extent [%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400607 inode->i_ino, es->es_lblk, es->es_len,
608 ext4_es_pblock(es), ext4_es_status(es));
609 return;
610 }
611 }
612}
613
614static inline void ext4_es_insert_extent_check(struct inode *inode,
615 struct extent_status *es)
616{
617 /*
618 * We don't need to worry about the race condition because
619 * caller takes i_data_sem locking.
620 */
621 BUG_ON(!rwsem_is_locked(&EXT4_I(inode)->i_data_sem));
622 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
623 ext4_es_insert_extent_ext_check(inode, es);
624 else
625 ext4_es_insert_extent_ind_check(inode, es);
626}
627#else
628static inline void ext4_es_insert_extent_check(struct inode *inode,
629 struct extent_status *es)
630{
631}
632#endif
633
Zheng Liubdedbb72013-02-18 00:32:02 -0500634static int __es_insert_extent(struct inode *inode, struct extent_status *newes)
Zheng Liu654598b2012-11-08 21:57:20 -0500635{
Zheng Liubdedbb72013-02-18 00:32:02 -0500636 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500637 struct rb_node **p = &tree->root.rb_node;
638 struct rb_node *parent = NULL;
639 struct extent_status *es;
Zheng Liu654598b2012-11-08 21:57:20 -0500640
641 while (*p) {
642 parent = *p;
643 es = rb_entry(parent, struct extent_status, rb_node);
644
Zheng Liu06b0c882013-02-18 00:26:51 -0500645 if (newes->es_lblk < es->es_lblk) {
646 if (ext4_es_can_be_merged(newes, es)) {
647 /*
648 * Here we can modify es_lblk directly
649 * because it isn't overlapped.
650 */
651 es->es_lblk = newes->es_lblk;
652 es->es_len += newes->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500653 if (ext4_es_is_written(es) ||
654 ext4_es_is_unwritten(es))
655 ext4_es_store_pblock(es,
656 newes->es_pblk);
Zheng Liubdedbb72013-02-18 00:32:02 -0500657 es = ext4_es_try_to_merge_left(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500658 goto out;
659 }
660 p = &(*p)->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500661 } else if (newes->es_lblk > ext4_es_end(es)) {
662 if (ext4_es_can_be_merged(es, newes)) {
663 es->es_len += newes->es_len;
Zheng Liubdedbb72013-02-18 00:32:02 -0500664 es = ext4_es_try_to_merge_right(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500665 goto out;
666 }
667 p = &(*p)->rb_right;
668 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500669 BUG_ON(1);
670 return -EINVAL;
Zheng Liu654598b2012-11-08 21:57:20 -0500671 }
672 }
673
Zheng Liubdedbb72013-02-18 00:32:02 -0500674 es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500675 newes->es_pblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500676 if (!es)
677 return -ENOMEM;
678 rb_link_node(&es->rb_node, parent, p);
679 rb_insert_color(&es->rb_node, &tree->root);
680
681out:
682 tree->cache_es = es;
683 return 0;
684}
685
686/*
Theodore Ts'obdafe422013-07-13 00:40:31 -0400687 * ext4_es_insert_extent() adds information to an inode's extent
688 * status tree.
Zheng Liu654598b2012-11-08 21:57:20 -0500689 *
690 * Return 0 on success, error code on failure.
691 */
Zheng Liu06b0c882013-02-18 00:26:51 -0500692int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
Zheng Liufdc02122013-02-18 00:26:51 -0500693 ext4_lblk_t len, ext4_fsblk_t pblk,
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400694 unsigned int status)
Zheng Liu654598b2012-11-08 21:57:20 -0500695{
Zheng Liu06b0c882013-02-18 00:26:51 -0500696 struct extent_status newes;
697 ext4_lblk_t end = lblk + len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500698 int err = 0;
699
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400700 es_debug("add [%u/%u) %llu %x to extent status tree of inode %lu\n",
Zheng Liufdc02122013-02-18 00:26:51 -0500701 lblk, len, pblk, status, inode->i_ino);
Zheng Liu06b0c882013-02-18 00:26:51 -0500702
Eryu Guand4381472013-02-22 15:27:47 -0500703 if (!len)
704 return 0;
705
Zheng Liu06b0c882013-02-18 00:26:51 -0500706 BUG_ON(end < lblk);
707
708 newes.es_lblk = lblk;
709 newes.es_len = len;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500710 ext4_es_store_pblock_status(&newes, pblk, status);
Zheng Liufdc02122013-02-18 00:26:51 -0500711 trace_ext4_es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500712
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400713 ext4_es_insert_extent_check(inode, &newes);
714
Zheng Liu654598b2012-11-08 21:57:20 -0500715 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500716 err = __es_remove_extent(inode, lblk, end);
Zheng Liu06b0c882013-02-18 00:26:51 -0500717 if (err != 0)
718 goto error;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400719retry:
Zheng Liubdedbb72013-02-18 00:32:02 -0500720 err = __es_insert_extent(inode, &newes);
Zheng Liuedaa53c2014-11-25 11:45:37 -0500721 if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb),
Jan Karadd475922014-11-25 11:51:23 -0500722 128, EXT4_I(inode)))
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400723 goto retry;
724 if (err == -ENOMEM && !ext4_es_is_delayed(&newes))
725 err = 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500726
727error:
Zheng Liu654598b2012-11-08 21:57:20 -0500728 write_unlock(&EXT4_I(inode)->i_es_lock);
729
730 ext4_es_print_tree(inode);
731
732 return err;
733}
734
Zheng Liud100eef2013-02-18 00:29:59 -0500735/*
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400736 * ext4_es_cache_extent() inserts information into the extent status
737 * tree if and only if there isn't information about the range in
738 * question already.
739 */
740void ext4_es_cache_extent(struct inode *inode, ext4_lblk_t lblk,
741 ext4_lblk_t len, ext4_fsblk_t pblk,
742 unsigned int status)
743{
744 struct extent_status *es;
745 struct extent_status newes;
746 ext4_lblk_t end = lblk + len - 1;
747
748 newes.es_lblk = lblk;
749 newes.es_len = len;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500750 ext4_es_store_pblock_status(&newes, pblk, status);
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400751 trace_ext4_es_cache_extent(inode, &newes);
752
753 if (!len)
754 return;
755
756 BUG_ON(end < lblk);
757
758 write_lock(&EXT4_I(inode)->i_es_lock);
759
760 es = __es_tree_search(&EXT4_I(inode)->i_es_tree.root, lblk);
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400761 if (!es || es->es_lblk > end)
762 __es_insert_extent(inode, &newes);
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400763 write_unlock(&EXT4_I(inode)->i_es_lock);
764}
765
766/*
Zheng Liud100eef2013-02-18 00:29:59 -0500767 * ext4_es_lookup_extent() looks up an extent in extent status tree.
768 *
769 * ext4_es_lookup_extent is called by ext4_map_blocks/ext4_da_map_blocks.
770 *
771 * Return: 1 on found, 0 on not
772 */
773int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk,
774 struct extent_status *es)
775{
776 struct ext4_es_tree *tree;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400777 struct ext4_es_stats *stats;
Zheng Liud100eef2013-02-18 00:29:59 -0500778 struct extent_status *es1 = NULL;
779 struct rb_node *node;
780 int found = 0;
781
782 trace_ext4_es_lookup_extent_enter(inode, lblk);
783 es_debug("lookup extent in block %u\n", lblk);
784
785 tree = &EXT4_I(inode)->i_es_tree;
786 read_lock(&EXT4_I(inode)->i_es_lock);
787
788 /* find extent in cache firstly */
789 es->es_lblk = es->es_len = es->es_pblk = 0;
790 if (tree->cache_es) {
791 es1 = tree->cache_es;
792 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
793 es_debug("%u cached by [%u/%u)\n",
794 lblk, es1->es_lblk, es1->es_len);
795 found = 1;
796 goto out;
797 }
798 }
799
800 node = tree->root.rb_node;
801 while (node) {
802 es1 = rb_entry(node, struct extent_status, rb_node);
803 if (lblk < es1->es_lblk)
804 node = node->rb_left;
805 else if (lblk > ext4_es_end(es1))
806 node = node->rb_right;
807 else {
808 found = 1;
809 break;
810 }
811 }
812
813out:
Zheng Liueb68d0e2014-09-01 22:26:49 -0400814 stats = &EXT4_SB(inode->i_sb)->s_es_stats;
Zheng Liud100eef2013-02-18 00:29:59 -0500815 if (found) {
816 BUG_ON(!es1);
817 es->es_lblk = es1->es_lblk;
818 es->es_len = es1->es_len;
819 es->es_pblk = es1->es_pblk;
Jan Kara2be12de2014-11-25 11:55:24 -0500820 if (!ext4_es_is_referenced(es))
821 ext4_es_set_referenced(es);
Zheng Liueb68d0e2014-09-01 22:26:49 -0400822 stats->es_stats_cache_hits++;
823 } else {
824 stats->es_stats_cache_misses++;
Zheng Liud100eef2013-02-18 00:29:59 -0500825 }
826
827 read_unlock(&EXT4_I(inode)->i_es_lock);
828
829 trace_ext4_es_lookup_extent_exit(inode, es, found);
830 return found;
831}
832
Zheng Liubdedbb72013-02-18 00:32:02 -0500833static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
834 ext4_lblk_t end)
Zheng Liu654598b2012-11-08 21:57:20 -0500835{
Zheng Liubdedbb72013-02-18 00:32:02 -0500836 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500837 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500838 struct extent_status *es;
839 struct extent_status orig_es;
Zheng Liu06b0c882013-02-18 00:26:51 -0500840 ext4_lblk_t len1, len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500841 ext4_fsblk_t block;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400842 int err;
Zheng Liu654598b2012-11-08 21:57:20 -0500843
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400844retry:
845 err = 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500846 es = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500847 if (!es)
848 goto out;
Zheng Liu06b0c882013-02-18 00:26:51 -0500849 if (es->es_lblk > end)
Zheng Liu654598b2012-11-08 21:57:20 -0500850 goto out;
851
852 /* Simply invalidate cache_es. */
853 tree->cache_es = NULL;
854
Zheng Liu06b0c882013-02-18 00:26:51 -0500855 orig_es.es_lblk = es->es_lblk;
856 orig_es.es_len = es->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500857 orig_es.es_pblk = es->es_pblk;
858
Zheng Liu06b0c882013-02-18 00:26:51 -0500859 len1 = lblk > es->es_lblk ? lblk - es->es_lblk : 0;
860 len2 = ext4_es_end(es) > end ? ext4_es_end(es) - end : 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500861 if (len1 > 0)
Zheng Liu06b0c882013-02-18 00:26:51 -0500862 es->es_len = len1;
Zheng Liu654598b2012-11-08 21:57:20 -0500863 if (len2 > 0) {
864 if (len1 > 0) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500865 struct extent_status newes;
866
867 newes.es_lblk = end + 1;
868 newes.es_len = len2;
Chen Gang666525d2014-04-07 10:18:56 -0400869 block = 0x7FDEADBEEFULL;
Zheng Liufdc02122013-02-18 00:26:51 -0500870 if (ext4_es_is_written(&orig_es) ||
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500871 ext4_es_is_unwritten(&orig_es))
Zheng Liufdc02122013-02-18 00:26:51 -0500872 block = ext4_es_pblock(&orig_es) +
873 orig_es.es_len - len2;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500874 ext4_es_store_pblock_status(&newes, block,
875 ext4_es_status(&orig_es));
Zheng Liubdedbb72013-02-18 00:32:02 -0500876 err = __es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500877 if (err) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500878 es->es_lblk = orig_es.es_lblk;
879 es->es_len = orig_es.es_len;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400880 if ((err == -ENOMEM) &&
Zheng Liuedaa53c2014-11-25 11:45:37 -0500881 __es_shrink(EXT4_SB(inode->i_sb),
Jan Karadd475922014-11-25 11:51:23 -0500882 128, EXT4_I(inode)))
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400883 goto retry;
Zheng Liu654598b2012-11-08 21:57:20 -0500884 goto out;
885 }
886 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500887 es->es_lblk = end + 1;
888 es->es_len = len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500889 if (ext4_es_is_written(es) ||
890 ext4_es_is_unwritten(es)) {
891 block = orig_es.es_pblk + orig_es.es_len - len2;
892 ext4_es_store_pblock(es, block);
893 }
Zheng Liu654598b2012-11-08 21:57:20 -0500894 }
895 goto out;
896 }
897
898 if (len1 > 0) {
899 node = rb_next(&es->rb_node);
900 if (node)
901 es = rb_entry(node, struct extent_status, rb_node);
902 else
903 es = NULL;
904 }
905
Zheng Liu06b0c882013-02-18 00:26:51 -0500906 while (es && ext4_es_end(es) <= end) {
Zheng Liu654598b2012-11-08 21:57:20 -0500907 node = rb_next(&es->rb_node);
908 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500909 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500910 if (!node) {
911 es = NULL;
912 break;
913 }
914 es = rb_entry(node, struct extent_status, rb_node);
915 }
916
Zheng Liu06b0c882013-02-18 00:26:51 -0500917 if (es && es->es_lblk < end + 1) {
Zheng Liufdc02122013-02-18 00:26:51 -0500918 ext4_lblk_t orig_len = es->es_len;
919
Zheng Liu06b0c882013-02-18 00:26:51 -0500920 len1 = ext4_es_end(es) - end;
921 es->es_lblk = end + 1;
922 es->es_len = len1;
Zheng Liufdc02122013-02-18 00:26:51 -0500923 if (ext4_es_is_written(es) || ext4_es_is_unwritten(es)) {
924 block = es->es_pblk + orig_len - len1;
925 ext4_es_store_pblock(es, block);
926 }
Zheng Liu654598b2012-11-08 21:57:20 -0500927 }
928
929out:
Zheng Liu06b0c882013-02-18 00:26:51 -0500930 return err;
931}
932
933/*
934 * ext4_es_remove_extent() removes a space from a extent status tree.
935 *
936 * Return 0 on success, error code on failure.
937 */
938int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
939 ext4_lblk_t len)
940{
Zheng Liu06b0c882013-02-18 00:26:51 -0500941 ext4_lblk_t end;
942 int err = 0;
943
944 trace_ext4_es_remove_extent(inode, lblk, len);
945 es_debug("remove [%u/%u) from extent status tree of inode %lu\n",
946 lblk, len, inode->i_ino);
947
Eryu Guand4381472013-02-22 15:27:47 -0500948 if (!len)
949 return err;
950
Zheng Liu06b0c882013-02-18 00:26:51 -0500951 end = lblk + len - 1;
952 BUG_ON(end < lblk);
953
Zheng Liuedaa53c2014-11-25 11:45:37 -0500954 /*
955 * ext4_clear_inode() depends on us taking i_es_lock unconditionally
956 * so that we are sure __es_shrink() is done with the inode before it
957 * is reclaimed.
958 */
Zheng Liu06b0c882013-02-18 00:26:51 -0500959 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500960 err = __es_remove_extent(inode, lblk, end);
Zheng Liu654598b2012-11-08 21:57:20 -0500961 write_unlock(&EXT4_I(inode)->i_es_lock);
962 ext4_es_print_tree(inode);
963 return err;
964}
Zheng Liu74cd15c2013-02-18 00:32:55 -0500965
Zheng Liuedaa53c2014-11-25 11:45:37 -0500966static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
967 struct ext4_inode_info *locked_ei)
Zheng Liu74cd15c2013-02-18 00:32:55 -0500968{
Zheng Liu74cd15c2013-02-18 00:32:55 -0500969 struct ext4_inode_info *ei;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400970 struct ext4_es_stats *es_stats;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400971 ktime_t start_time;
972 u64 scan_time;
Zheng Liuedaa53c2014-11-25 11:45:37 -0500973 int nr_to_walk;
Dave Chinner1ab6c492013-08-28 10:18:09 +1000974 int nr_shrunk = 0;
Zheng Liuedaa53c2014-11-25 11:45:37 -0500975 int retried = 0, nr_skipped = 0;
Zheng Liu74cd15c2013-02-18 00:32:55 -0500976
Zheng Liueb68d0e2014-09-01 22:26:49 -0400977 es_stats = &sbi->s_es_stats;
978 start_time = ktime_get();
Zheng Liud3922a72013-07-01 08:12:37 -0400979
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400980retry:
Zheng Liuedaa53c2014-11-25 11:45:37 -0500981 spin_lock(&sbi->s_es_lock);
982 nr_to_walk = sbi->s_es_nr_inode;
983 while (nr_to_walk-- > 0) {
Zheng Liuedaa53c2014-11-25 11:45:37 -0500984 if (list_empty(&sbi->s_es_list)) {
985 spin_unlock(&sbi->s_es_lock);
986 goto out;
987 }
988 ei = list_first_entry(&sbi->s_es_list, struct ext4_inode_info,
989 i_es_list);
990 /* Move the inode to the tail */
Jan Karadd475922014-11-25 11:51:23 -0500991 list_move_tail(&ei->i_es_list, &sbi->s_es_list);
Zheng Liu74cd15c2013-02-18 00:32:55 -0500992
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400993 /*
Zheng Liuedaa53c2014-11-25 11:45:37 -0500994 * Normally we try hard to avoid shrinking precached inodes,
995 * but we will as a last resort.
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400996 */
Zheng Liuedaa53c2014-11-25 11:45:37 -0500997 if (!retried && ext4_test_inode_state(&ei->vfs_inode,
998 EXT4_STATE_EXT_PRECACHED)) {
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400999 nr_skipped++;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001000 continue;
1001 }
Zheng Liud3922a72013-07-01 08:12:37 -04001002
Zheng Liuedaa53c2014-11-25 11:45:37 -05001003 if (ei == locked_ei || !write_trylock(&ei->i_es_lock)) {
1004 nr_skipped++;
Zheng Liud3922a72013-07-01 08:12:37 -04001005 continue;
Zheng Liuedaa53c2014-11-25 11:45:37 -05001006 }
1007 /*
1008 * Now we hold i_es_lock which protects us from inode reclaim
1009 * freeing inode under us
1010 */
1011 spin_unlock(&sbi->s_es_lock);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001012
Jan Karadd475922014-11-25 11:51:23 -05001013 nr_shrunk += es_reclaim_extents(ei, &nr_to_scan);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001014 write_unlock(&ei->i_es_lock);
1015
Jan Karadd475922014-11-25 11:51:23 -05001016 if (nr_to_scan <= 0)
Zheng Liuedaa53c2014-11-25 11:45:37 -05001017 goto out;
1018 spin_lock(&sbi->s_es_lock);
1019 }
1020 spin_unlock(&sbi->s_es_lock);
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001021
1022 /*
1023 * If we skipped any inodes, and we weren't able to make any
Zheng Liuedaa53c2014-11-25 11:45:37 -05001024 * forward progress, try again to scan precached inodes.
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001025 */
1026 if ((nr_shrunk == 0) && nr_skipped && !retried) {
1027 retried++;
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001028 goto retry;
1029 }
1030
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001031 if (locked_ei && nr_shrunk == 0)
Jan Karadd475922014-11-25 11:51:23 -05001032 nr_shrunk = es_reclaim_extents(locked_ei, &nr_to_scan);
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001033
Zheng Liuedaa53c2014-11-25 11:45:37 -05001034out:
Zheng Liueb68d0e2014-09-01 22:26:49 -04001035 scan_time = ktime_to_ns(ktime_sub(ktime_get(), start_time));
1036 if (likely(es_stats->es_stats_scan_time))
1037 es_stats->es_stats_scan_time = (scan_time +
1038 es_stats->es_stats_scan_time*3) / 4;
1039 else
1040 es_stats->es_stats_scan_time = scan_time;
1041 if (scan_time > es_stats->es_stats_max_scan_time)
1042 es_stats->es_stats_max_scan_time = scan_time;
1043 if (likely(es_stats->es_stats_shrunk))
1044 es_stats->es_stats_shrunk = (nr_shrunk +
1045 es_stats->es_stats_shrunk*3) / 4;
1046 else
1047 es_stats->es_stats_shrunk = nr_shrunk;
1048
Zheng Liuedaa53c2014-11-25 11:45:37 -05001049 trace_ext4_es_shrink(sbi->s_sb, nr_shrunk, scan_time,
Zheng Liueb68d0e2014-09-01 22:26:49 -04001050 nr_skipped, retried);
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001051 return nr_shrunk;
1052}
1053
Dave Chinner1ab6c492013-08-28 10:18:09 +10001054static unsigned long ext4_es_count(struct shrinker *shrink,
1055 struct shrink_control *sc)
1056{
1057 unsigned long nr;
1058 struct ext4_sb_info *sbi;
1059
1060 sbi = container_of(shrink, struct ext4_sb_info, s_es_shrinker);
Zheng Liuedaa53c2014-11-25 11:45:37 -05001061 nr = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liue963bb12014-09-01 22:22:13 -04001062 trace_ext4_es_shrink_count(sbi->s_sb, sc->nr_to_scan, nr);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001063 return nr;
1064}
1065
1066static unsigned long ext4_es_scan(struct shrinker *shrink,
1067 struct shrink_control *sc)
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001068{
1069 struct ext4_sb_info *sbi = container_of(shrink,
1070 struct ext4_sb_info, s_es_shrinker);
1071 int nr_to_scan = sc->nr_to_scan;
1072 int ret, nr_shrunk;
1073
Zheng Liuedaa53c2014-11-25 11:45:37 -05001074 ret = percpu_counter_read_positive(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liue963bb12014-09-01 22:22:13 -04001075 trace_ext4_es_shrink_scan_enter(sbi->s_sb, nr_to_scan, ret);
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001076
1077 if (!nr_to_scan)
1078 return ret;
1079
Zheng Liuedaa53c2014-11-25 11:45:37 -05001080 nr_shrunk = __es_shrink(sbi, nr_to_scan, NULL);
Theodore Ts'oe15f7422013-07-15 00:12:14 -04001081
Zheng Liue963bb12014-09-01 22:22:13 -04001082 trace_ext4_es_shrink_scan_exit(sbi->s_sb, nr_shrunk, ret);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001083 return nr_shrunk;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001084}
1085
Zheng Liueb68d0e2014-09-01 22:26:49 -04001086static void *ext4_es_seq_shrinker_info_start(struct seq_file *seq, loff_t *pos)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001087{
Zheng Liueb68d0e2014-09-01 22:26:49 -04001088 return *pos ? NULL : SEQ_START_TOKEN;
1089}
1090
1091static void *
1092ext4_es_seq_shrinker_info_next(struct seq_file *seq, void *v, loff_t *pos)
1093{
1094 return NULL;
1095}
1096
1097static int ext4_es_seq_shrinker_info_show(struct seq_file *seq, void *v)
1098{
1099 struct ext4_sb_info *sbi = seq->private;
1100 struct ext4_es_stats *es_stats = &sbi->s_es_stats;
1101 struct ext4_inode_info *ei, *max = NULL;
1102 unsigned int inode_cnt = 0;
1103
1104 if (v != SEQ_START_TOKEN)
1105 return 0;
1106
1107 /* here we just find an inode that has the max nr. of objects */
Zheng Liuedaa53c2014-11-25 11:45:37 -05001108 spin_lock(&sbi->s_es_lock);
1109 list_for_each_entry(ei, &sbi->s_es_list, i_es_list) {
Zheng Liueb68d0e2014-09-01 22:26:49 -04001110 inode_cnt++;
1111 if (max && max->i_es_all_nr < ei->i_es_all_nr)
1112 max = ei;
1113 else if (!max)
1114 max = ei;
1115 }
Zheng Liuedaa53c2014-11-25 11:45:37 -05001116 spin_unlock(&sbi->s_es_lock);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001117
1118 seq_printf(seq, "stats:\n %lld objects\n %lld reclaimable objects\n",
1119 percpu_counter_sum_positive(&es_stats->es_stats_all_cnt),
Zheng Liuedaa53c2014-11-25 11:45:37 -05001120 percpu_counter_sum_positive(&es_stats->es_stats_shk_cnt));
Zheng Liueb68d0e2014-09-01 22:26:49 -04001121 seq_printf(seq, " %lu/%lu cache hits/misses\n",
1122 es_stats->es_stats_cache_hits,
1123 es_stats->es_stats_cache_misses);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001124 if (inode_cnt)
Zheng Liuedaa53c2014-11-25 11:45:37 -05001125 seq_printf(seq, " %d inodes on list\n", inode_cnt);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001126
1127 seq_printf(seq, "average:\n %llu us scan time\n",
1128 div_u64(es_stats->es_stats_scan_time, 1000));
1129 seq_printf(seq, " %lu shrunk objects\n", es_stats->es_stats_shrunk);
1130 if (inode_cnt)
1131 seq_printf(seq,
1132 "maximum:\n %lu inode (%u objects, %u reclaimable)\n"
1133 " %llu us max scan time\n",
Zheng Liuedaa53c2014-11-25 11:45:37 -05001134 max->vfs_inode.i_ino, max->i_es_all_nr, max->i_es_shk_nr,
Zheng Liueb68d0e2014-09-01 22:26:49 -04001135 div_u64(es_stats->es_stats_max_scan_time, 1000));
1136
1137 return 0;
1138}
1139
1140static void ext4_es_seq_shrinker_info_stop(struct seq_file *seq, void *v)
1141{
1142}
1143
1144static const struct seq_operations ext4_es_seq_shrinker_info_ops = {
1145 .start = ext4_es_seq_shrinker_info_start,
1146 .next = ext4_es_seq_shrinker_info_next,
1147 .stop = ext4_es_seq_shrinker_info_stop,
1148 .show = ext4_es_seq_shrinker_info_show,
1149};
1150
1151static int
1152ext4_es_seq_shrinker_info_open(struct inode *inode, struct file *file)
1153{
1154 int ret;
1155
1156 ret = seq_open(file, &ext4_es_seq_shrinker_info_ops);
1157 if (!ret) {
1158 struct seq_file *m = file->private_data;
1159 m->private = PDE_DATA(inode);
1160 }
1161
1162 return ret;
1163}
1164
1165static int
1166ext4_es_seq_shrinker_info_release(struct inode *inode, struct file *file)
1167{
1168 return seq_release(inode, file);
1169}
1170
1171static const struct file_operations ext4_es_seq_shrinker_info_fops = {
1172 .owner = THIS_MODULE,
1173 .open = ext4_es_seq_shrinker_info_open,
1174 .read = seq_read,
1175 .llseek = seq_lseek,
1176 .release = ext4_es_seq_shrinker_info_release,
1177};
1178
1179int ext4_es_register_shrinker(struct ext4_sb_info *sbi)
1180{
1181 int err;
1182
Jan Kara624d0f12014-11-25 11:53:47 -05001183 /* Make sure we have enough bits for physical block number */
1184 BUILD_BUG_ON(ES_SHIFT < 48);
Zheng Liuedaa53c2014-11-25 11:45:37 -05001185 INIT_LIST_HEAD(&sbi->s_es_list);
1186 sbi->s_es_nr_inode = 0;
1187 spin_lock_init(&sbi->s_es_lock);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001188 sbi->s_es_stats.es_stats_shrunk = 0;
1189 sbi->s_es_stats.es_stats_cache_hits = 0;
1190 sbi->s_es_stats.es_stats_cache_misses = 0;
1191 sbi->s_es_stats.es_stats_scan_time = 0;
1192 sbi->s_es_stats.es_stats_max_scan_time = 0;
Linus Torvaldsc2661b82014-10-20 09:50:11 -07001193 err = percpu_counter_init(&sbi->s_es_stats.es_stats_all_cnt, 0, GFP_KERNEL);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001194 if (err)
1195 return err;
Zheng Liuedaa53c2014-11-25 11:45:37 -05001196 err = percpu_counter_init(&sbi->s_es_stats.es_stats_shk_cnt, 0, GFP_KERNEL);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001197 if (err)
1198 goto err1;
1199
Dave Chinner1ab6c492013-08-28 10:18:09 +10001200 sbi->s_es_shrinker.scan_objects = ext4_es_scan;
1201 sbi->s_es_shrinker.count_objects = ext4_es_count;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001202 sbi->s_es_shrinker.seeks = DEFAULT_SEEKS;
Zheng Liueb68d0e2014-09-01 22:26:49 -04001203 err = register_shrinker(&sbi->s_es_shrinker);
1204 if (err)
1205 goto err2;
1206
1207 if (sbi->s_proc)
1208 proc_create_data("es_shrinker_info", S_IRUGO, sbi->s_proc,
1209 &ext4_es_seq_shrinker_info_fops, sbi);
1210
1211 return 0;
1212
1213err2:
Zheng Liuedaa53c2014-11-25 11:45:37 -05001214 percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001215err1:
1216 percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
1217 return err;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001218}
1219
Zheng Liud3922a72013-07-01 08:12:37 -04001220void ext4_es_unregister_shrinker(struct ext4_sb_info *sbi)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001221{
Zheng Liueb68d0e2014-09-01 22:26:49 -04001222 if (sbi->s_proc)
1223 remove_proc_entry("es_shrinker_info", sbi->s_proc);
1224 percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
Zheng Liuedaa53c2014-11-25 11:45:37 -05001225 percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liud3922a72013-07-01 08:12:37 -04001226 unregister_shrinker(&sbi->s_es_shrinker);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001227}
1228
Jan Karadd475922014-11-25 11:51:23 -05001229/*
1230 * Shrink extents in given inode from ei->i_es_shrink_lblk till end. Scan at
1231 * most *nr_to_scan extents, update *nr_to_scan accordingly.
1232 *
1233 * Return 0 if we hit end of tree / interval, 1 if we exhausted nr_to_scan.
1234 * Increment *nr_shrunk by the number of reclaimed extents. Also update
1235 * ei->i_es_shrink_lblk to where we should continue scanning.
1236 */
1237static int es_do_reclaim_extents(struct ext4_inode_info *ei, ext4_lblk_t end,
1238 int *nr_to_scan, int *nr_shrunk)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001239{
1240 struct inode *inode = &ei->vfs_inode;
1241 struct ext4_es_tree *tree = &ei->i_es_tree;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001242 struct extent_status *es;
Jan Karadd475922014-11-25 11:51:23 -05001243 struct rb_node *node;
1244
1245 es = __es_tree_search(&tree->root, ei->i_es_shrink_lblk);
1246 if (!es)
1247 goto out_wrap;
1248 node = &es->rb_node;
1249 while (*nr_to_scan > 0) {
1250 if (es->es_lblk > end) {
1251 ei->i_es_shrink_lblk = end + 1;
1252 return 0;
1253 }
1254
1255 (*nr_to_scan)--;
1256 node = rb_next(&es->rb_node);
1257 /*
1258 * We can't reclaim delayed extent from status tree because
1259 * fiemap, bigallic, and seek_data/hole need to use it.
1260 */
Jan Kara2be12de2014-11-25 11:55:24 -05001261 if (ext4_es_is_delayed(es))
1262 goto next;
1263 if (ext4_es_is_referenced(es)) {
1264 ext4_es_clear_referenced(es);
1265 goto next;
Jan Karadd475922014-11-25 11:51:23 -05001266 }
Jan Kara2be12de2014-11-25 11:55:24 -05001267
1268 rb_erase(&es->rb_node, &tree->root);
1269 ext4_es_free_extent(inode, es);
1270 (*nr_shrunk)++;
1271next:
Jan Karadd475922014-11-25 11:51:23 -05001272 if (!node)
1273 goto out_wrap;
1274 es = rb_entry(node, struct extent_status, rb_node);
1275 }
1276 ei->i_es_shrink_lblk = es->es_lblk;
1277 return 1;
1278out_wrap:
1279 ei->i_es_shrink_lblk = 0;
1280 return 0;
1281}
1282
1283static int es_reclaim_extents(struct ext4_inode_info *ei, int *nr_to_scan)
1284{
1285 struct inode *inode = &ei->vfs_inode;
1286 int nr_shrunk = 0;
1287 ext4_lblk_t start = ei->i_es_shrink_lblk;
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001288 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
1289 DEFAULT_RATELIMIT_BURST);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001290
Zheng Liuedaa53c2014-11-25 11:45:37 -05001291 if (ei->i_es_shk_nr == 0)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001292 return 0;
1293
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001294 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED) &&
1295 __ratelimit(&_rs))
1296 ext4_warning(inode->i_sb, "forced shrink of precached extents");
1297
Jan Karadd475922014-11-25 11:51:23 -05001298 if (!es_do_reclaim_extents(ei, EXT_MAX_BLOCKS, nr_to_scan, &nr_shrunk) &&
1299 start != 0)
1300 es_do_reclaim_extents(ei, start - 1, nr_to_scan, &nr_shrunk);
1301
1302 ei->i_es_tree.cache_es = NULL;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001303 return nr_shrunk;
1304}