blob: de2d9d8bf22f30467fa211f8588c75641c8232a5 [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);
Zheng Liu74cd15c2013-02-18 00:32:55 -0500150static int __es_try_to_reclaim_extents(struct ext4_inode_info *ei,
151 int nr_to_scan);
Zheng Liuedaa53c2014-11-25 11:45:37 -0500152static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
153 struct ext4_inode_info *locked_ei);
Zheng Liu06b0c882013-02-18 00:26:51 -0500154
Zheng Liu654598b2012-11-08 21:57:20 -0500155int __init ext4_init_es(void)
156{
Theodore Ts'o24630772013-02-28 23:58:56 -0500157 ext4_es_cachep = kmem_cache_create("ext4_extent_status",
158 sizeof(struct extent_status),
159 0, (SLAB_RECLAIM_ACCOUNT), NULL);
Zheng Liu654598b2012-11-08 21:57:20 -0500160 if (ext4_es_cachep == NULL)
161 return -ENOMEM;
162 return 0;
163}
164
165void ext4_exit_es(void)
166{
167 if (ext4_es_cachep)
168 kmem_cache_destroy(ext4_es_cachep);
169}
170
171void ext4_es_init_tree(struct ext4_es_tree *tree)
172{
173 tree->root = RB_ROOT;
174 tree->cache_es = NULL;
175}
176
177#ifdef ES_DEBUG__
178static void ext4_es_print_tree(struct inode *inode)
179{
180 struct ext4_es_tree *tree;
181 struct rb_node *node;
182
183 printk(KERN_DEBUG "status extents for inode %lu:", inode->i_ino);
184 tree = &EXT4_I(inode)->i_es_tree;
185 node = rb_first(&tree->root);
186 while (node) {
187 struct extent_status *es;
188 es = rb_entry(node, struct extent_status, rb_node);
Eric Whitneyce140cd2014-02-20 16:09:12 -0500189 printk(KERN_DEBUG " [%u/%u) %llu %x",
Zheng Liufdc02122013-02-18 00:26:51 -0500190 es->es_lblk, es->es_len,
191 ext4_es_pblock(es), ext4_es_status(es));
Zheng Liu654598b2012-11-08 21:57:20 -0500192 node = rb_next(node);
193 }
194 printk(KERN_DEBUG "\n");
195}
196#else
197#define ext4_es_print_tree(inode)
198#endif
199
Zheng Liu06b0c882013-02-18 00:26:51 -0500200static inline ext4_lblk_t ext4_es_end(struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500201{
Zheng Liu06b0c882013-02-18 00:26:51 -0500202 BUG_ON(es->es_lblk + es->es_len < es->es_lblk);
203 return es->es_lblk + es->es_len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500204}
205
206/*
207 * search through the tree for an delayed extent with a given offset. If
208 * it can't be found, try to find next extent.
209 */
210static struct extent_status *__es_tree_search(struct rb_root *root,
Zheng Liu06b0c882013-02-18 00:26:51 -0500211 ext4_lblk_t lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500212{
213 struct rb_node *node = root->rb_node;
214 struct extent_status *es = NULL;
215
216 while (node) {
217 es = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500218 if (lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500219 node = node->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500220 else if (lblk > ext4_es_end(es))
Zheng Liu654598b2012-11-08 21:57:20 -0500221 node = node->rb_right;
222 else
223 return es;
224 }
225
Zheng Liu06b0c882013-02-18 00:26:51 -0500226 if (es && lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500227 return es;
228
Zheng Liu06b0c882013-02-18 00:26:51 -0500229 if (es && lblk > ext4_es_end(es)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500230 node = rb_next(&es->rb_node);
231 return node ? rb_entry(node, struct extent_status, rb_node) :
232 NULL;
233 }
234
235 return NULL;
236}
237
238/*
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400239 * ext4_es_find_delayed_extent_range: find the 1st delayed extent covering
240 * @es->lblk if it exists, otherwise, the next extent after @es->lblk.
Zheng Liu654598b2012-11-08 21:57:20 -0500241 *
242 * @inode: the inode which owns delayed extents
Zheng Liube401362013-02-18 00:27:26 -0500243 * @lblk: the offset where we start to search
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400244 * @end: the offset where we stop to search
Zheng Liu654598b2012-11-08 21:57:20 -0500245 * @es: delayed extent that we found
Zheng Liu654598b2012-11-08 21:57:20 -0500246 */
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400247void ext4_es_find_delayed_extent_range(struct inode *inode,
248 ext4_lblk_t lblk, ext4_lblk_t end,
Zheng Liube401362013-02-18 00:27:26 -0500249 struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500250{
251 struct ext4_es_tree *tree = NULL;
252 struct extent_status *es1 = NULL;
253 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500254
Zheng Liube401362013-02-18 00:27:26 -0500255 BUG_ON(es == NULL);
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400256 BUG_ON(end < lblk);
257 trace_ext4_es_find_delayed_extent_range_enter(inode, lblk);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500258
Zheng Liu654598b2012-11-08 21:57:20 -0500259 read_lock(&EXT4_I(inode)->i_es_lock);
260 tree = &EXT4_I(inode)->i_es_tree;
261
Zheng Liufdc02122013-02-18 00:26:51 -0500262 /* find extent in cache firstly */
Zheng Liube401362013-02-18 00:27:26 -0500263 es->es_lblk = es->es_len = es->es_pblk = 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500264 if (tree->cache_es) {
265 es1 = tree->cache_es;
Zheng Liube401362013-02-18 00:27:26 -0500266 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400267 es_debug("%u cached by [%u/%u) %llu %x\n",
Zheng Liube401362013-02-18 00:27:26 -0500268 lblk, es1->es_lblk, es1->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500269 ext4_es_pblock(es1), ext4_es_status(es1));
Zheng Liu654598b2012-11-08 21:57:20 -0500270 goto out;
271 }
272 }
273
Zheng Liube401362013-02-18 00:27:26 -0500274 es1 = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500275
276out:
Zheng Liube401362013-02-18 00:27:26 -0500277 if (es1 && !ext4_es_is_delayed(es1)) {
278 while ((node = rb_next(&es1->rb_node)) != NULL) {
279 es1 = rb_entry(node, struct extent_status, rb_node);
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400280 if (es1->es_lblk > end) {
281 es1 = NULL;
282 break;
283 }
Zheng Liube401362013-02-18 00:27:26 -0500284 if (ext4_es_is_delayed(es1))
285 break;
286 }
287 }
288
289 if (es1 && ext4_es_is_delayed(es1)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500290 tree->cache_es = es1;
Zheng Liu06b0c882013-02-18 00:26:51 -0500291 es->es_lblk = es1->es_lblk;
292 es->es_len = es1->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500293 es->es_pblk = es1->es_pblk;
Zheng Liu654598b2012-11-08 21:57:20 -0500294 }
295
296 read_unlock(&EXT4_I(inode)->i_es_lock);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500297
Yan, Zhenge30b5dc2013-05-03 02:15:52 -0400298 trace_ext4_es_find_delayed_extent_range_exit(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500299}
300
Jan Karab0dea4c2014-11-25 11:49:25 -0500301static void ext4_es_list_add(struct inode *inode)
Zheng Liuedaa53c2014-11-25 11:45:37 -0500302{
303 struct ext4_inode_info *ei = EXT4_I(inode);
304 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
305
306 if (!list_empty(&ei->i_es_list))
307 return;
308
309 spin_lock(&sbi->s_es_lock);
310 if (list_empty(&ei->i_es_list)) {
311 list_add_tail(&ei->i_es_list, &sbi->s_es_list);
312 sbi->s_es_nr_inode++;
313 }
314 spin_unlock(&sbi->s_es_lock);
315}
316
Jan Karab0dea4c2014-11-25 11:49:25 -0500317static void ext4_es_list_del(struct inode *inode)
Zheng Liuedaa53c2014-11-25 11:45:37 -0500318{
319 struct ext4_inode_info *ei = EXT4_I(inode);
320 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
321
322 spin_lock(&sbi->s_es_lock);
323 if (!list_empty(&ei->i_es_list)) {
324 list_del_init(&ei->i_es_list);
325 sbi->s_es_nr_inode--;
326 WARN_ON_ONCE(sbi->s_es_nr_inode < 0);
327 }
328 spin_unlock(&sbi->s_es_lock);
329}
330
Zheng Liu654598b2012-11-08 21:57:20 -0500331static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500332ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len,
333 ext4_fsblk_t pblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500334{
335 struct extent_status *es;
336 es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC);
337 if (es == NULL)
338 return NULL;
Zheng Liu06b0c882013-02-18 00:26:51 -0500339 es->es_lblk = lblk;
340 es->es_len = len;
Zheng Liufdc02122013-02-18 00:26:51 -0500341 es->es_pblk = pblk;
Zheng Liu74cd15c2013-02-18 00:32:55 -0500342
343 /*
344 * We don't count delayed extent because we never try to reclaim them
345 */
Theodore Ts'o24630772013-02-28 23:58:56 -0500346 if (!ext4_es_is_delayed(es)) {
Jan Karab0dea4c2014-11-25 11:49:25 -0500347 if (!EXT4_I(inode)->i_es_shk_nr++)
348 ext4_es_list_add(inode);
Zheng Liueb68d0e2014-09-01 22:26:49 -0400349 percpu_counter_inc(&EXT4_SB(inode->i_sb)->
Zheng Liuedaa53c2014-11-25 11:45:37 -0500350 s_es_stats.es_stats_shk_cnt);
Theodore Ts'o24630772013-02-28 23:58:56 -0500351 }
Zheng Liu74cd15c2013-02-18 00:32:55 -0500352
Zheng Liueb68d0e2014-09-01 22:26:49 -0400353 EXT4_I(inode)->i_es_all_nr++;
354 percpu_counter_inc(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);
355
Zheng Liu654598b2012-11-08 21:57:20 -0500356 return es;
357}
358
Zheng Liubdedbb72013-02-18 00:32:02 -0500359static void ext4_es_free_extent(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500360{
Zheng Liueb68d0e2014-09-01 22:26:49 -0400361 EXT4_I(inode)->i_es_all_nr--;
362 percpu_counter_dec(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt);
363
Zheng Liuedaa53c2014-11-25 11:45:37 -0500364 /* Decrease the shrink counter when this es is not delayed */
Zheng Liu74cd15c2013-02-18 00:32:55 -0500365 if (!ext4_es_is_delayed(es)) {
Zheng Liuedaa53c2014-11-25 11:45:37 -0500366 BUG_ON(EXT4_I(inode)->i_es_shk_nr == 0);
Jan Karab0dea4c2014-11-25 11:49:25 -0500367 if (!--EXT4_I(inode)->i_es_shk_nr)
368 ext4_es_list_del(inode);
Zheng Liueb68d0e2014-09-01 22:26:49 -0400369 percpu_counter_dec(&EXT4_SB(inode->i_sb)->
Zheng Liuedaa53c2014-11-25 11:45:37 -0500370 s_es_stats.es_stats_shk_cnt);
Zheng Liu74cd15c2013-02-18 00:32:55 -0500371 }
372
Zheng Liu654598b2012-11-08 21:57:20 -0500373 kmem_cache_free(ext4_es_cachep, es);
374}
375
Zheng Liu06b0c882013-02-18 00:26:51 -0500376/*
377 * Check whether or not two extents can be merged
378 * Condition:
379 * - logical block number is contiguous
Zheng Liufdc02122013-02-18 00:26:51 -0500380 * - physical block number is contiguous
381 * - status is equal
Zheng Liu06b0c882013-02-18 00:26:51 -0500382 */
383static int ext4_es_can_be_merged(struct extent_status *es1,
384 struct extent_status *es2)
385{
Zheng Liufdc02122013-02-18 00:26:51 -0500386 if (ext4_es_status(es1) != ext4_es_status(es2))
387 return 0;
388
Lukas Czerner0baaea62014-05-12 22:21:43 -0400389 if (((__u64) es1->es_len) + es2->es_len > EXT_MAX_BLOCKS) {
390 pr_warn("ES assertion failed when merging extents. "
391 "The sum of lengths of es1 (%d) and es2 (%d) "
392 "is bigger than allowed file size (%d)\n",
393 es1->es_len, es2->es_len, EXT_MAX_BLOCKS);
394 WARN_ON(1);
Zheng Liufdc02122013-02-18 00:26:51 -0500395 return 0;
Lukas Czerner0baaea62014-05-12 22:21:43 -0400396 }
Zheng Liufdc02122013-02-18 00:26:51 -0500397
Zheng Liubd384362013-03-10 20:48:59 -0400398 if (((__u64) es1->es_lblk) + es1->es_len != es2->es_lblk)
399 return 0;
400
401 if ((ext4_es_is_written(es1) || ext4_es_is_unwritten(es1)) &&
402 (ext4_es_pblock(es1) + es1->es_len == ext4_es_pblock(es2)))
403 return 1;
404
405 if (ext4_es_is_hole(es1))
406 return 1;
407
408 /* we need to check delayed extent is without unwritten status */
409 if (ext4_es_is_delayed(es1) && !ext4_es_is_unwritten(es1))
410 return 1;
411
412 return 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500413}
414
Zheng Liu654598b2012-11-08 21:57:20 -0500415static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500416ext4_es_try_to_merge_left(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500417{
Zheng Liubdedbb72013-02-18 00:32:02 -0500418 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500419 struct extent_status *es1;
420 struct rb_node *node;
421
422 node = rb_prev(&es->rb_node);
423 if (!node)
424 return es;
425
426 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500427 if (ext4_es_can_be_merged(es1, es)) {
428 es1->es_len += es->es_len;
Zheng Liu654598b2012-11-08 21:57:20 -0500429 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500430 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500431 es = es1;
432 }
433
434 return es;
435}
436
437static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500438ext4_es_try_to_merge_right(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500439{
Zheng Liubdedbb72013-02-18 00:32:02 -0500440 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500441 struct extent_status *es1;
442 struct rb_node *node;
443
444 node = rb_next(&es->rb_node);
445 if (!node)
446 return es;
447
448 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500449 if (ext4_es_can_be_merged(es, es1)) {
450 es->es_len += es1->es_len;
Zheng Liu654598b2012-11-08 21:57:20 -0500451 rb_erase(node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500452 ext4_es_free_extent(inode, es1);
Zheng Liu654598b2012-11-08 21:57:20 -0500453 }
454
455 return es;
456}
457
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400458#ifdef ES_AGGRESSIVE_TEST
Zheng Liud7b2a002013-08-28 14:47:06 -0400459#include "ext4_extents.h" /* Needed when ES_AGGRESSIVE_TEST is defined */
460
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400461static void ext4_es_insert_extent_ext_check(struct inode *inode,
462 struct extent_status *es)
463{
464 struct ext4_ext_path *path = NULL;
465 struct ext4_extent *ex;
466 ext4_lblk_t ee_block;
467 ext4_fsblk_t ee_start;
468 unsigned short ee_len;
469 int depth, ee_status, es_status;
470
Theodore Ts'oed8a1a72014-09-01 14:43:09 -0400471 path = ext4_find_extent(inode, es->es_lblk, NULL, EXT4_EX_NOCACHE);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400472 if (IS_ERR(path))
473 return;
474
475 depth = ext_depth(inode);
476 ex = path[depth].p_ext;
477
478 if (ex) {
479
480 ee_block = le32_to_cpu(ex->ee_block);
481 ee_start = ext4_ext_pblock(ex);
482 ee_len = ext4_ext_get_actual_len(ex);
483
Lukas Czerner556615d2014-04-20 23:45:47 -0400484 ee_status = ext4_ext_is_unwritten(ex) ? 1 : 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400485 es_status = ext4_es_is_unwritten(es) ? 1 : 0;
486
487 /*
488 * Make sure ex and es are not overlap when we try to insert
489 * a delayed/hole extent.
490 */
491 if (!ext4_es_is_written(es) && !ext4_es_is_unwritten(es)) {
492 if (in_range(es->es_lblk, ee_block, ee_len)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400493 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400494 "inode: %lu we can find an extent "
495 "at block [%d/%d/%llu/%c], but we "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500496 "want to add a delayed/hole extent "
497 "[%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400498 inode->i_ino, ee_block, ee_len,
499 ee_start, ee_status ? 'u' : 'w',
500 es->es_lblk, es->es_len,
501 ext4_es_pblock(es), ext4_es_status(es));
502 }
503 goto out;
504 }
505
506 /*
507 * We don't check ee_block == es->es_lblk, etc. because es
508 * might be a part of whole extent, vice versa.
509 */
510 if (es->es_lblk < ee_block ||
511 ext4_es_pblock(es) != ee_start + es->es_lblk - ee_block) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400512 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400513 "ex_status [%d/%d/%llu/%c] != "
514 "es_status [%d/%d/%llu/%c]\n", inode->i_ino,
515 ee_block, ee_len, ee_start,
516 ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
517 ext4_es_pblock(es), es_status ? 'u' : 'w');
518 goto out;
519 }
520
521 if (ee_status ^ es_status) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400522 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400523 "ex_status [%d/%d/%llu/%c] != "
524 "es_status [%d/%d/%llu/%c]\n", inode->i_ino,
525 ee_block, ee_len, ee_start,
526 ee_status ? 'u' : 'w', es->es_lblk, es->es_len,
527 ext4_es_pblock(es), es_status ? 'u' : 'w');
528 }
529 } else {
530 /*
531 * We can't find an extent on disk. So we need to make sure
532 * that we don't want to add an written/unwritten extent.
533 */
534 if (!ext4_es_is_delayed(es) && !ext4_es_is_hole(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400535 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400536 "can't find an extent at block %d but we want "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500537 "to add a written/unwritten extent "
538 "[%d/%d/%llu/%x]\n", inode->i_ino,
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400539 es->es_lblk, es->es_lblk, es->es_len,
540 ext4_es_pblock(es), ext4_es_status(es));
541 }
542 }
543out:
Theodore Ts'ob7ea89a2014-09-01 14:39:09 -0400544 ext4_ext_drop_refs(path);
545 kfree(path);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400546}
547
548static void ext4_es_insert_extent_ind_check(struct inode *inode,
549 struct extent_status *es)
550{
551 struct ext4_map_blocks map;
552 int retval;
553
554 /*
555 * Here we call ext4_ind_map_blocks to lookup a block mapping because
556 * 'Indirect' structure is defined in indirect.c. So we couldn't
557 * access direct/indirect tree from outside. It is too dirty to define
558 * this function in indirect.c file.
559 */
560
561 map.m_lblk = es->es_lblk;
562 map.m_len = es->es_len;
563
564 retval = ext4_ind_map_blocks(NULL, inode, &map, 0);
565 if (retval > 0) {
566 if (ext4_es_is_delayed(es) || ext4_es_is_hole(es)) {
567 /*
568 * We want to add a delayed/hole extent but this
569 * block has been allocated.
570 */
Theodore Ts'obdafe422013-07-13 00:40:31 -0400571 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400572 "We can find blocks but we want to add a "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500573 "delayed/hole extent [%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400574 inode->i_ino, es->es_lblk, es->es_len,
575 ext4_es_pblock(es), ext4_es_status(es));
576 return;
577 } else if (ext4_es_is_written(es)) {
578 if (retval != es->es_len) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400579 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400580 "inode: %lu retval %d != es_len %d\n",
581 inode->i_ino, retval, es->es_len);
582 return;
583 }
584 if (map.m_pblk != ext4_es_pblock(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400585 pr_warn("ES insert assertion failed for "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400586 "inode: %lu m_pblk %llu != "
587 "es_pblk %llu\n",
588 inode->i_ino, map.m_pblk,
589 ext4_es_pblock(es));
590 return;
591 }
592 } else {
593 /*
594 * We don't need to check unwritten extent because
595 * indirect-based file doesn't have it.
596 */
597 BUG_ON(1);
598 }
599 } else if (retval == 0) {
600 if (ext4_es_is_written(es)) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400601 pr_warn("ES insert assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400602 "We can't find the block but we want to add "
Eric Whitneyce140cd2014-02-20 16:09:12 -0500603 "a written extent [%d/%d/%llu/%x]\n",
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400604 inode->i_ino, es->es_lblk, es->es_len,
605 ext4_es_pblock(es), ext4_es_status(es));
606 return;
607 }
608 }
609}
610
611static inline void ext4_es_insert_extent_check(struct inode *inode,
612 struct extent_status *es)
613{
614 /*
615 * We don't need to worry about the race condition because
616 * caller takes i_data_sem locking.
617 */
618 BUG_ON(!rwsem_is_locked(&EXT4_I(inode)->i_data_sem));
619 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
620 ext4_es_insert_extent_ext_check(inode, es);
621 else
622 ext4_es_insert_extent_ind_check(inode, es);
623}
624#else
625static inline void ext4_es_insert_extent_check(struct inode *inode,
626 struct extent_status *es)
627{
628}
629#endif
630
Zheng Liubdedbb72013-02-18 00:32:02 -0500631static int __es_insert_extent(struct inode *inode, struct extent_status *newes)
Zheng Liu654598b2012-11-08 21:57:20 -0500632{
Zheng Liubdedbb72013-02-18 00:32:02 -0500633 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500634 struct rb_node **p = &tree->root.rb_node;
635 struct rb_node *parent = NULL;
636 struct extent_status *es;
Zheng Liu654598b2012-11-08 21:57:20 -0500637
638 while (*p) {
639 parent = *p;
640 es = rb_entry(parent, struct extent_status, rb_node);
641
Zheng Liu06b0c882013-02-18 00:26:51 -0500642 if (newes->es_lblk < es->es_lblk) {
643 if (ext4_es_can_be_merged(newes, es)) {
644 /*
645 * Here we can modify es_lblk directly
646 * because it isn't overlapped.
647 */
648 es->es_lblk = newes->es_lblk;
649 es->es_len += newes->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500650 if (ext4_es_is_written(es) ||
651 ext4_es_is_unwritten(es))
652 ext4_es_store_pblock(es,
653 newes->es_pblk);
Zheng Liubdedbb72013-02-18 00:32:02 -0500654 es = ext4_es_try_to_merge_left(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500655 goto out;
656 }
657 p = &(*p)->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500658 } else if (newes->es_lblk > ext4_es_end(es)) {
659 if (ext4_es_can_be_merged(es, newes)) {
660 es->es_len += newes->es_len;
Zheng Liubdedbb72013-02-18 00:32:02 -0500661 es = ext4_es_try_to_merge_right(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500662 goto out;
663 }
664 p = &(*p)->rb_right;
665 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500666 BUG_ON(1);
667 return -EINVAL;
Zheng Liu654598b2012-11-08 21:57:20 -0500668 }
669 }
670
Zheng Liubdedbb72013-02-18 00:32:02 -0500671 es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500672 newes->es_pblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500673 if (!es)
674 return -ENOMEM;
675 rb_link_node(&es->rb_node, parent, p);
676 rb_insert_color(&es->rb_node, &tree->root);
677
678out:
679 tree->cache_es = es;
680 return 0;
681}
682
683/*
Theodore Ts'obdafe422013-07-13 00:40:31 -0400684 * ext4_es_insert_extent() adds information to an inode's extent
685 * status tree.
Zheng Liu654598b2012-11-08 21:57:20 -0500686 *
687 * Return 0 on success, error code on failure.
688 */
Zheng Liu06b0c882013-02-18 00:26:51 -0500689int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
Zheng Liufdc02122013-02-18 00:26:51 -0500690 ext4_lblk_t len, ext4_fsblk_t pblk,
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400691 unsigned int status)
Zheng Liu654598b2012-11-08 21:57:20 -0500692{
Zheng Liu06b0c882013-02-18 00:26:51 -0500693 struct extent_status newes;
694 ext4_lblk_t end = lblk + len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500695 int err = 0;
696
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400697 es_debug("add [%u/%u) %llu %x to extent status tree of inode %lu\n",
Zheng Liufdc02122013-02-18 00:26:51 -0500698 lblk, len, pblk, status, inode->i_ino);
Zheng Liu06b0c882013-02-18 00:26:51 -0500699
Eryu Guand4381472013-02-22 15:27:47 -0500700 if (!len)
701 return 0;
702
Zheng Liu06b0c882013-02-18 00:26:51 -0500703 BUG_ON(end < lblk);
704
705 newes.es_lblk = lblk;
706 newes.es_len = len;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500707 ext4_es_store_pblock_status(&newes, pblk, status);
Zheng Liufdc02122013-02-18 00:26:51 -0500708 trace_ext4_es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500709
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400710 ext4_es_insert_extent_check(inode, &newes);
711
Zheng Liu654598b2012-11-08 21:57:20 -0500712 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500713 err = __es_remove_extent(inode, lblk, end);
Zheng Liu06b0c882013-02-18 00:26:51 -0500714 if (err != 0)
715 goto error;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400716retry:
Zheng Liubdedbb72013-02-18 00:32:02 -0500717 err = __es_insert_extent(inode, &newes);
Zheng Liuedaa53c2014-11-25 11:45:37 -0500718 if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb),
719 1, EXT4_I(inode)))
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400720 goto retry;
721 if (err == -ENOMEM && !ext4_es_is_delayed(&newes))
722 err = 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500723
724error:
Zheng Liu654598b2012-11-08 21:57:20 -0500725 write_unlock(&EXT4_I(inode)->i_es_lock);
726
727 ext4_es_print_tree(inode);
728
729 return err;
730}
731
Zheng Liud100eef2013-02-18 00:29:59 -0500732/*
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400733 * ext4_es_cache_extent() inserts information into the extent status
734 * tree if and only if there isn't information about the range in
735 * question already.
736 */
737void ext4_es_cache_extent(struct inode *inode, ext4_lblk_t lblk,
738 ext4_lblk_t len, ext4_fsblk_t pblk,
739 unsigned int status)
740{
741 struct extent_status *es;
742 struct extent_status newes;
743 ext4_lblk_t end = lblk + len - 1;
744
745 newes.es_lblk = lblk;
746 newes.es_len = len;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500747 ext4_es_store_pblock_status(&newes, pblk, status);
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400748 trace_ext4_es_cache_extent(inode, &newes);
749
750 if (!len)
751 return;
752
753 BUG_ON(end < lblk);
754
755 write_lock(&EXT4_I(inode)->i_es_lock);
756
757 es = __es_tree_search(&EXT4_I(inode)->i_es_tree.root, lblk);
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400758 if (!es || es->es_lblk > end)
759 __es_insert_extent(inode, &newes);
Theodore Ts'o107a7bd2013-08-16 21:23:41 -0400760 write_unlock(&EXT4_I(inode)->i_es_lock);
761}
762
763/*
Zheng Liud100eef2013-02-18 00:29:59 -0500764 * ext4_es_lookup_extent() looks up an extent in extent status tree.
765 *
766 * ext4_es_lookup_extent is called by ext4_map_blocks/ext4_da_map_blocks.
767 *
768 * Return: 1 on found, 0 on not
769 */
770int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk,
771 struct extent_status *es)
772{
773 struct ext4_es_tree *tree;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400774 struct ext4_es_stats *stats;
Zheng Liud100eef2013-02-18 00:29:59 -0500775 struct extent_status *es1 = NULL;
776 struct rb_node *node;
777 int found = 0;
778
779 trace_ext4_es_lookup_extent_enter(inode, lblk);
780 es_debug("lookup extent in block %u\n", lblk);
781
782 tree = &EXT4_I(inode)->i_es_tree;
783 read_lock(&EXT4_I(inode)->i_es_lock);
784
785 /* find extent in cache firstly */
786 es->es_lblk = es->es_len = es->es_pblk = 0;
787 if (tree->cache_es) {
788 es1 = tree->cache_es;
789 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
790 es_debug("%u cached by [%u/%u)\n",
791 lblk, es1->es_lblk, es1->es_len);
792 found = 1;
793 goto out;
794 }
795 }
796
797 node = tree->root.rb_node;
798 while (node) {
799 es1 = rb_entry(node, struct extent_status, rb_node);
800 if (lblk < es1->es_lblk)
801 node = node->rb_left;
802 else if (lblk > ext4_es_end(es1))
803 node = node->rb_right;
804 else {
805 found = 1;
806 break;
807 }
808 }
809
810out:
Zheng Liueb68d0e2014-09-01 22:26:49 -0400811 stats = &EXT4_SB(inode->i_sb)->s_es_stats;
Zheng Liud100eef2013-02-18 00:29:59 -0500812 if (found) {
813 BUG_ON(!es1);
814 es->es_lblk = es1->es_lblk;
815 es->es_len = es1->es_len;
816 es->es_pblk = es1->es_pblk;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400817 stats->es_stats_cache_hits++;
818 } else {
819 stats->es_stats_cache_misses++;
Zheng Liud100eef2013-02-18 00:29:59 -0500820 }
821
822 read_unlock(&EXT4_I(inode)->i_es_lock);
823
824 trace_ext4_es_lookup_extent_exit(inode, es, found);
825 return found;
826}
827
Zheng Liubdedbb72013-02-18 00:32:02 -0500828static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
829 ext4_lblk_t end)
Zheng Liu654598b2012-11-08 21:57:20 -0500830{
Zheng Liubdedbb72013-02-18 00:32:02 -0500831 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500832 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500833 struct extent_status *es;
834 struct extent_status orig_es;
Zheng Liu06b0c882013-02-18 00:26:51 -0500835 ext4_lblk_t len1, len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500836 ext4_fsblk_t block;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400837 int err;
Zheng Liu654598b2012-11-08 21:57:20 -0500838
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400839retry:
840 err = 0;
Zheng Liu06b0c882013-02-18 00:26:51 -0500841 es = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500842 if (!es)
843 goto out;
Zheng Liu06b0c882013-02-18 00:26:51 -0500844 if (es->es_lblk > end)
Zheng Liu654598b2012-11-08 21:57:20 -0500845 goto out;
846
847 /* Simply invalidate cache_es. */
848 tree->cache_es = NULL;
849
Zheng Liu06b0c882013-02-18 00:26:51 -0500850 orig_es.es_lblk = es->es_lblk;
851 orig_es.es_len = es->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500852 orig_es.es_pblk = es->es_pblk;
853
Zheng Liu06b0c882013-02-18 00:26:51 -0500854 len1 = lblk > es->es_lblk ? lblk - es->es_lblk : 0;
855 len2 = ext4_es_end(es) > end ? ext4_es_end(es) - end : 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500856 if (len1 > 0)
Zheng Liu06b0c882013-02-18 00:26:51 -0500857 es->es_len = len1;
Zheng Liu654598b2012-11-08 21:57:20 -0500858 if (len2 > 0) {
859 if (len1 > 0) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500860 struct extent_status newes;
861
862 newes.es_lblk = end + 1;
863 newes.es_len = len2;
Chen Gang666525d2014-04-07 10:18:56 -0400864 block = 0x7FDEADBEEFULL;
Zheng Liufdc02122013-02-18 00:26:51 -0500865 if (ext4_es_is_written(&orig_es) ||
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500866 ext4_es_is_unwritten(&orig_es))
Zheng Liufdc02122013-02-18 00:26:51 -0500867 block = ext4_es_pblock(&orig_es) +
868 orig_es.es_len - len2;
Theodore Ts'o9a6633b2014-02-19 20:15:15 -0500869 ext4_es_store_pblock_status(&newes, block,
870 ext4_es_status(&orig_es));
Zheng Liubdedbb72013-02-18 00:32:02 -0500871 err = __es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500872 if (err) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500873 es->es_lblk = orig_es.es_lblk;
874 es->es_len = orig_es.es_len;
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400875 if ((err == -ENOMEM) &&
Zheng Liuedaa53c2014-11-25 11:45:37 -0500876 __es_shrink(EXT4_SB(inode->i_sb),
877 1, EXT4_I(inode)))
Theodore Ts'oe15f7422013-07-15 00:12:14 -0400878 goto retry;
Zheng Liu654598b2012-11-08 21:57:20 -0500879 goto out;
880 }
881 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500882 es->es_lblk = end + 1;
883 es->es_len = len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500884 if (ext4_es_is_written(es) ||
885 ext4_es_is_unwritten(es)) {
886 block = orig_es.es_pblk + orig_es.es_len - len2;
887 ext4_es_store_pblock(es, block);
888 }
Zheng Liu654598b2012-11-08 21:57:20 -0500889 }
890 goto out;
891 }
892
893 if (len1 > 0) {
894 node = rb_next(&es->rb_node);
895 if (node)
896 es = rb_entry(node, struct extent_status, rb_node);
897 else
898 es = NULL;
899 }
900
Zheng Liu06b0c882013-02-18 00:26:51 -0500901 while (es && ext4_es_end(es) <= end) {
Zheng Liu654598b2012-11-08 21:57:20 -0500902 node = rb_next(&es->rb_node);
903 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500904 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500905 if (!node) {
906 es = NULL;
907 break;
908 }
909 es = rb_entry(node, struct extent_status, rb_node);
910 }
911
Zheng Liu06b0c882013-02-18 00:26:51 -0500912 if (es && es->es_lblk < end + 1) {
Zheng Liufdc02122013-02-18 00:26:51 -0500913 ext4_lblk_t orig_len = es->es_len;
914
Zheng Liu06b0c882013-02-18 00:26:51 -0500915 len1 = ext4_es_end(es) - end;
916 es->es_lblk = end + 1;
917 es->es_len = len1;
Zheng Liufdc02122013-02-18 00:26:51 -0500918 if (ext4_es_is_written(es) || ext4_es_is_unwritten(es)) {
919 block = es->es_pblk + orig_len - len1;
920 ext4_es_store_pblock(es, block);
921 }
Zheng Liu654598b2012-11-08 21:57:20 -0500922 }
923
924out:
Zheng Liu06b0c882013-02-18 00:26:51 -0500925 return err;
926}
927
928/*
929 * ext4_es_remove_extent() removes a space from a extent status tree.
930 *
931 * Return 0 on success, error code on failure.
932 */
933int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
934 ext4_lblk_t len)
935{
Zheng Liu06b0c882013-02-18 00:26:51 -0500936 ext4_lblk_t end;
937 int err = 0;
938
939 trace_ext4_es_remove_extent(inode, lblk, len);
940 es_debug("remove [%u/%u) from extent status tree of inode %lu\n",
941 lblk, len, inode->i_ino);
942
Eryu Guand4381472013-02-22 15:27:47 -0500943 if (!len)
944 return err;
945
Zheng Liu06b0c882013-02-18 00:26:51 -0500946 end = lblk + len - 1;
947 BUG_ON(end < lblk);
948
Zheng Liuedaa53c2014-11-25 11:45:37 -0500949 /*
950 * ext4_clear_inode() depends on us taking i_es_lock unconditionally
951 * so that we are sure __es_shrink() is done with the inode before it
952 * is reclaimed.
953 */
Zheng Liu06b0c882013-02-18 00:26:51 -0500954 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500955 err = __es_remove_extent(inode, lblk, end);
Zheng Liu654598b2012-11-08 21:57:20 -0500956 write_unlock(&EXT4_I(inode)->i_es_lock);
957 ext4_es_print_tree(inode);
958 return err;
959}
Zheng Liu74cd15c2013-02-18 00:32:55 -0500960
Zheng Liuedaa53c2014-11-25 11:45:37 -0500961static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan,
962 struct ext4_inode_info *locked_ei)
Zheng Liu74cd15c2013-02-18 00:32:55 -0500963{
Zheng Liu74cd15c2013-02-18 00:32:55 -0500964 struct ext4_inode_info *ei;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400965 struct ext4_es_stats *es_stats;
Zheng Liueb68d0e2014-09-01 22:26:49 -0400966 ktime_t start_time;
967 u64 scan_time;
Zheng Liuedaa53c2014-11-25 11:45:37 -0500968 int nr_to_walk;
Dave Chinner1ab6c492013-08-28 10:18:09 +1000969 int nr_shrunk = 0;
Zheng Liuedaa53c2014-11-25 11:45:37 -0500970 int retried = 0, nr_skipped = 0;
Zheng Liu74cd15c2013-02-18 00:32:55 -0500971
Zheng Liueb68d0e2014-09-01 22:26:49 -0400972 es_stats = &sbi->s_es_stats;
973 start_time = ktime_get();
Zheng Liud3922a72013-07-01 08:12:37 -0400974
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400975retry:
Zheng Liuedaa53c2014-11-25 11:45:37 -0500976 spin_lock(&sbi->s_es_lock);
977 nr_to_walk = sbi->s_es_nr_inode;
978 while (nr_to_walk-- > 0) {
Dave Chinner1ab6c492013-08-28 10:18:09 +1000979 int shrunk;
980
Zheng Liuedaa53c2014-11-25 11:45:37 -0500981 if (list_empty(&sbi->s_es_list)) {
982 spin_unlock(&sbi->s_es_lock);
983 goto out;
984 }
985 ei = list_first_entry(&sbi->s_es_list, struct ext4_inode_info,
986 i_es_list);
987 /* Move the inode to the tail */
988 list_move(&ei->i_es_list, sbi->s_es_list.prev);
Zheng Liu74cd15c2013-02-18 00:32:55 -0500989
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400990 /*
Zheng Liuedaa53c2014-11-25 11:45:37 -0500991 * Normally we try hard to avoid shrinking precached inodes,
992 * but we will as a last resort.
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400993 */
Zheng Liuedaa53c2014-11-25 11:45:37 -0500994 if (!retried && ext4_test_inode_state(&ei->vfs_inode,
995 EXT4_STATE_EXT_PRECACHED)) {
Theodore Ts'o7869a4a2013-08-16 22:05:14 -0400996 nr_skipped++;
Zheng Liu74cd15c2013-02-18 00:32:55 -0500997 continue;
998 }
Zheng Liud3922a72013-07-01 08:12:37 -0400999
Zheng Liuedaa53c2014-11-25 11:45:37 -05001000 if (ei == locked_ei || !write_trylock(&ei->i_es_lock)) {
1001 nr_skipped++;
Zheng Liud3922a72013-07-01 08:12:37 -04001002 continue;
Zheng Liuedaa53c2014-11-25 11:45:37 -05001003 }
1004 /*
1005 * Now we hold i_es_lock which protects us from inode reclaim
1006 * freeing inode under us
1007 */
1008 spin_unlock(&sbi->s_es_lock);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001009
Dave Chinner1ab6c492013-08-28 10:18:09 +10001010 shrunk = __es_try_to_reclaim_extents(ei, nr_to_scan);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001011 write_unlock(&ei->i_es_lock);
1012
Dave Chinner1ab6c492013-08-28 10:18:09 +10001013 nr_shrunk += shrunk;
1014 nr_to_scan -= shrunk;
Zheng Liud3922a72013-07-01 08:12:37 -04001015
Zheng Liuedaa53c2014-11-25 11:45:37 -05001016 if (nr_to_scan == 0)
1017 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)
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001032 nr_shrunk = __es_try_to_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
Zheng Liuedaa53c2014-11-25 11:45:37 -05001183 INIT_LIST_HEAD(&sbi->s_es_list);
1184 sbi->s_es_nr_inode = 0;
1185 spin_lock_init(&sbi->s_es_lock);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001186 sbi->s_es_stats.es_stats_shrunk = 0;
1187 sbi->s_es_stats.es_stats_cache_hits = 0;
1188 sbi->s_es_stats.es_stats_cache_misses = 0;
1189 sbi->s_es_stats.es_stats_scan_time = 0;
1190 sbi->s_es_stats.es_stats_max_scan_time = 0;
Linus Torvaldsc2661b82014-10-20 09:50:11 -07001191 err = percpu_counter_init(&sbi->s_es_stats.es_stats_all_cnt, 0, GFP_KERNEL);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001192 if (err)
1193 return err;
Zheng Liuedaa53c2014-11-25 11:45:37 -05001194 err = percpu_counter_init(&sbi->s_es_stats.es_stats_shk_cnt, 0, GFP_KERNEL);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001195 if (err)
1196 goto err1;
1197
Dave Chinner1ab6c492013-08-28 10:18:09 +10001198 sbi->s_es_shrinker.scan_objects = ext4_es_scan;
1199 sbi->s_es_shrinker.count_objects = ext4_es_count;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001200 sbi->s_es_shrinker.seeks = DEFAULT_SEEKS;
Zheng Liueb68d0e2014-09-01 22:26:49 -04001201 err = register_shrinker(&sbi->s_es_shrinker);
1202 if (err)
1203 goto err2;
1204
1205 if (sbi->s_proc)
1206 proc_create_data("es_shrinker_info", S_IRUGO, sbi->s_proc,
1207 &ext4_es_seq_shrinker_info_fops, sbi);
1208
1209 return 0;
1210
1211err2:
Zheng Liuedaa53c2014-11-25 11:45:37 -05001212 percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liueb68d0e2014-09-01 22:26:49 -04001213err1:
1214 percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
1215 return err;
Zheng Liu74cd15c2013-02-18 00:32:55 -05001216}
1217
Zheng Liud3922a72013-07-01 08:12:37 -04001218void ext4_es_unregister_shrinker(struct ext4_sb_info *sbi)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001219{
Zheng Liueb68d0e2014-09-01 22:26:49 -04001220 if (sbi->s_proc)
1221 remove_proc_entry("es_shrinker_info", sbi->s_proc);
1222 percpu_counter_destroy(&sbi->s_es_stats.es_stats_all_cnt);
Zheng Liuedaa53c2014-11-25 11:45:37 -05001223 percpu_counter_destroy(&sbi->s_es_stats.es_stats_shk_cnt);
Zheng Liud3922a72013-07-01 08:12:37 -04001224 unregister_shrinker(&sbi->s_es_shrinker);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001225}
1226
Zheng Liu74cd15c2013-02-18 00:32:55 -05001227static int __es_try_to_reclaim_extents(struct ext4_inode_info *ei,
1228 int nr_to_scan)
1229{
1230 struct inode *inode = &ei->vfs_inode;
1231 struct ext4_es_tree *tree = &ei->i_es_tree;
1232 struct rb_node *node;
1233 struct extent_status *es;
Dave Chinner1ab6c492013-08-28 10:18:09 +10001234 unsigned long nr_shrunk = 0;
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001235 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
1236 DEFAULT_RATELIMIT_BURST);
Zheng Liu74cd15c2013-02-18 00:32:55 -05001237
Zheng Liuedaa53c2014-11-25 11:45:37 -05001238 if (ei->i_es_shk_nr == 0)
Zheng Liu74cd15c2013-02-18 00:32:55 -05001239 return 0;
1240
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001241 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED) &&
1242 __ratelimit(&_rs))
1243 ext4_warning(inode->i_sb, "forced shrink of precached extents");
1244
Zheng Liu74cd15c2013-02-18 00:32:55 -05001245 node = rb_first(&tree->root);
1246 while (node != NULL) {
1247 es = rb_entry(node, struct extent_status, rb_node);
1248 node = rb_next(&es->rb_node);
1249 /*
1250 * We can't reclaim delayed extent from status tree because
1251 * fiemap, bigallic, and seek_data/hole need to use it.
1252 */
1253 if (!ext4_es_is_delayed(es)) {
1254 rb_erase(&es->rb_node, &tree->root);
1255 ext4_es_free_extent(inode, es);
1256 nr_shrunk++;
1257 if (--nr_to_scan == 0)
1258 break;
1259 }
1260 }
1261 tree->cache_es = NULL;
1262 return nr_shrunk;
1263}