blob: cce152c3c8dc289158fdc4c72753403c9183bc01 [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>
13#include "ext4.h"
14#include "extents_status.h"
15#include "ext4_extents.h"
16
Zheng Liu992e9fd2012-11-08 21:57:33 -050017#include <trace/events/ext4.h>
18
Zheng Liu654598b2012-11-08 21:57:20 -050019/*
20 * According to previous discussion in Ext4 Developer Workshop, we
21 * will introduce a new structure called io tree to track all extent
22 * status in order to solve some problems that we have met
23 * (e.g. Reservation space warning), and provide extent-level locking.
24 * Delay extent tree is the first step to achieve this goal. It is
25 * original built by Yongqiang Yang. At that time it is called delay
Zheng Liu06b0c882013-02-18 00:26:51 -050026 * extent tree, whose goal is only track delayed extents in memory to
Zheng Liu654598b2012-11-08 21:57:20 -050027 * simplify the implementation of fiemap and bigalloc, and introduce
28 * lseek SEEK_DATA/SEEK_HOLE support. That is why it is still called
Zheng Liu06b0c882013-02-18 00:26:51 -050029 * delay extent tree at the first commit. But for better understand
30 * what it does, it has been rename to extent status tree.
Zheng Liu654598b2012-11-08 21:57:20 -050031 *
Zheng Liu06b0c882013-02-18 00:26:51 -050032 * Step1:
33 * Currently the first step has been done. All delayed extents are
34 * tracked in the tree. It maintains the delayed extent when a delayed
35 * allocation is issued, and the delayed extent is written out or
Zheng Liu654598b2012-11-08 21:57:20 -050036 * invalidated. Therefore the implementation of fiemap and bigalloc
37 * are simplified, and SEEK_DATA/SEEK_HOLE are introduced.
38 *
39 * The following comment describes the implemenmtation of extent
40 * status tree and future works.
Zheng Liu06b0c882013-02-18 00:26:51 -050041 *
42 * Step2:
43 * In this step all extent status are tracked by extent status tree.
44 * Thus, we can first try to lookup a block mapping in this tree before
45 * finding it in extent tree. Hence, single extent cache can be removed
46 * because extent status tree can do a better job. Extents in status
47 * tree are loaded on-demand. Therefore, the extent status tree may not
48 * contain all of the extents in a file. Meanwhile we define a shrinker
49 * to reclaim memory from extent status tree because fragmented extent
50 * tree will make status tree cost too much memory. written/unwritten/-
51 * hole extents in the tree will be reclaimed by this shrinker when we
52 * are under high memory pressure. Delayed extents will not be
53 * reclimed because fiemap, bigalloc, and seek_data/hole need it.
Zheng Liu654598b2012-11-08 21:57:20 -050054 */
55
56/*
Zheng Liu06b0c882013-02-18 00:26:51 -050057 * Extent status tree implementation for ext4.
Zheng Liu654598b2012-11-08 21:57:20 -050058 *
59 *
60 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -050061 * Extent status tree tracks all extent status.
Zheng Liu654598b2012-11-08 21:57:20 -050062 *
Zheng Liu06b0c882013-02-18 00:26:51 -050063 * 1. Why we need to implement extent status tree?
Zheng Liu654598b2012-11-08 21:57:20 -050064 *
Zheng Liu06b0c882013-02-18 00:26:51 -050065 * Without extent status tree, ext4 identifies a delayed extent by looking
Zheng Liu654598b2012-11-08 21:57:20 -050066 * up page cache, this has several deficiencies - complicated, buggy,
67 * and inefficient code.
68 *
Zheng Liu06b0c882013-02-18 00:26:51 -050069 * FIEMAP, SEEK_HOLE/DATA, bigalloc, and writeout all need to know if a
70 * block or a range of blocks are belonged to a delayed extent.
Zheng Liu654598b2012-11-08 21:57:20 -050071 *
Zheng Liu06b0c882013-02-18 00:26:51 -050072 * Let us have a look at how they do without extent status tree.
Zheng Liu654598b2012-11-08 21:57:20 -050073 * -- FIEMAP
74 * FIEMAP looks up page cache to identify delayed allocations from holes.
75 *
76 * -- SEEK_HOLE/DATA
77 * SEEK_HOLE/DATA has the same problem as FIEMAP.
78 *
79 * -- bigalloc
80 * bigalloc looks up page cache to figure out if a block is
81 * already under delayed allocation or not to determine whether
82 * quota reserving is needed for the cluster.
83 *
Zheng Liu654598b2012-11-08 21:57:20 -050084 * -- writeout
85 * Writeout looks up whole page cache to see if a buffer is
86 * mapped, If there are not very many delayed buffers, then it is
87 * time comsuming.
88 *
Zheng Liu06b0c882013-02-18 00:26:51 -050089 * With extent status tree implementation, FIEMAP, SEEK_HOLE/DATA,
Zheng Liu654598b2012-11-08 21:57:20 -050090 * bigalloc and writeout can figure out if a block or a range of
91 * blocks is under delayed allocation(belonged to a delayed extent) or
Zheng Liu06b0c882013-02-18 00:26:51 -050092 * not by searching the extent tree.
Zheng Liu654598b2012-11-08 21:57:20 -050093 *
94 *
95 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -050096 * 2. Ext4 extent status tree impelmentation
Zheng Liu654598b2012-11-08 21:57:20 -050097 *
Zheng Liu06b0c882013-02-18 00:26:51 -050098 * -- extent
99 * A extent is a range of blocks which are contiguous logically and
100 * physically. Unlike extent in extent tree, this extent in ext4 is
101 * a in-memory struct, there is no corresponding on-disk data. There
102 * is no limit on length of extent, so an extent can contain as many
103 * blocks as they are contiguous logically and physically.
Zheng Liu654598b2012-11-08 21:57:20 -0500104 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500105 * -- extent status tree
106 * Every inode has an extent status tree and all allocation blocks
107 * are added to the tree with different status. The extent in the
108 * tree are ordered by logical block no.
Zheng Liu654598b2012-11-08 21:57:20 -0500109 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500110 * -- operations on a extent status tree
111 * There are three important operations on a delayed extent tree: find
112 * next extent, adding a extent(a range of blocks) and removing a extent.
Zheng Liu654598b2012-11-08 21:57:20 -0500113 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500114 * -- race on a extent status tree
115 * Extent status tree is protected by inode->i_es_lock.
116 *
117 * -- memory consumption
118 * Fragmented extent tree will make extent status tree cost too much
119 * memory. Hence, we will reclaim written/unwritten/hole extents from
120 * the tree under a heavy memory pressure.
Zheng Liu654598b2012-11-08 21:57:20 -0500121 *
122 *
123 * ==========================================================================
Zheng Liu06b0c882013-02-18 00:26:51 -0500124 * 3. Performance analysis
125 *
Zheng Liu654598b2012-11-08 21:57:20 -0500126 * -- overhead
127 * 1. There is a cache extent for write access, so if writes are
128 * not very random, adding space operaions are in O(1) time.
129 *
130 * -- gain
131 * 2. Code is much simpler, more readable, more maintainable and
132 * more efficient.
133 *
134 *
135 * ==========================================================================
136 * 4. TODO list
Zheng Liu654598b2012-11-08 21:57:20 -0500137 *
Zheng Liu06b0c882013-02-18 00:26:51 -0500138 * -- Refactor delayed space reservation
Zheng Liu654598b2012-11-08 21:57:20 -0500139 *
140 * -- Extent-level locking
141 */
142
143static struct kmem_cache *ext4_es_cachep;
144
Zheng Liubdedbb72013-02-18 00:32:02 -0500145static int __es_insert_extent(struct inode *inode, struct extent_status *newes);
146static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
Zheng Liu06b0c882013-02-18 00:26:51 -0500147 ext4_lblk_t end);
148
Zheng Liu654598b2012-11-08 21:57:20 -0500149int __init ext4_init_es(void)
150{
151 ext4_es_cachep = KMEM_CACHE(extent_status, SLAB_RECLAIM_ACCOUNT);
152 if (ext4_es_cachep == NULL)
153 return -ENOMEM;
154 return 0;
155}
156
157void ext4_exit_es(void)
158{
159 if (ext4_es_cachep)
160 kmem_cache_destroy(ext4_es_cachep);
161}
162
163void ext4_es_init_tree(struct ext4_es_tree *tree)
164{
165 tree->root = RB_ROOT;
166 tree->cache_es = NULL;
167}
168
169#ifdef ES_DEBUG__
170static void ext4_es_print_tree(struct inode *inode)
171{
172 struct ext4_es_tree *tree;
173 struct rb_node *node;
174
175 printk(KERN_DEBUG "status extents for inode %lu:", inode->i_ino);
176 tree = &EXT4_I(inode)->i_es_tree;
177 node = rb_first(&tree->root);
178 while (node) {
179 struct extent_status *es;
180 es = rb_entry(node, struct extent_status, rb_node);
Zheng Liufdc02122013-02-18 00:26:51 -0500181 printk(KERN_DEBUG " [%u/%u) %llu %llx",
182 es->es_lblk, es->es_len,
183 ext4_es_pblock(es), ext4_es_status(es));
Zheng Liu654598b2012-11-08 21:57:20 -0500184 node = rb_next(node);
185 }
186 printk(KERN_DEBUG "\n");
187}
188#else
189#define ext4_es_print_tree(inode)
190#endif
191
Zheng Liu06b0c882013-02-18 00:26:51 -0500192static inline ext4_lblk_t ext4_es_end(struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500193{
Zheng Liu06b0c882013-02-18 00:26:51 -0500194 BUG_ON(es->es_lblk + es->es_len < es->es_lblk);
195 return es->es_lblk + es->es_len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500196}
197
198/*
199 * search through the tree for an delayed extent with a given offset. If
200 * it can't be found, try to find next extent.
201 */
202static struct extent_status *__es_tree_search(struct rb_root *root,
Zheng Liu06b0c882013-02-18 00:26:51 -0500203 ext4_lblk_t lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500204{
205 struct rb_node *node = root->rb_node;
206 struct extent_status *es = NULL;
207
208 while (node) {
209 es = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500210 if (lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500211 node = node->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500212 else if (lblk > ext4_es_end(es))
Zheng Liu654598b2012-11-08 21:57:20 -0500213 node = node->rb_right;
214 else
215 return es;
216 }
217
Zheng Liu06b0c882013-02-18 00:26:51 -0500218 if (es && lblk < es->es_lblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500219 return es;
220
Zheng Liu06b0c882013-02-18 00:26:51 -0500221 if (es && lblk > ext4_es_end(es)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500222 node = rb_next(&es->rb_node);
223 return node ? rb_entry(node, struct extent_status, rb_node) :
224 NULL;
225 }
226
227 return NULL;
228}
229
230/*
Zheng Liube401362013-02-18 00:27:26 -0500231 * ext4_es_find_delayed_extent: find the 1st delayed extent covering @es->lblk
Zheng Liu06b0c882013-02-18 00:26:51 -0500232 * if it exists, otherwise, the next extent after @es->lblk.
Zheng Liu654598b2012-11-08 21:57:20 -0500233 *
234 * @inode: the inode which owns delayed extents
Zheng Liube401362013-02-18 00:27:26 -0500235 * @lblk: the offset where we start to search
Zheng Liu654598b2012-11-08 21:57:20 -0500236 * @es: delayed extent that we found
Zheng Liu654598b2012-11-08 21:57:20 -0500237 */
Zheng Liube401362013-02-18 00:27:26 -0500238void ext4_es_find_delayed_extent(struct inode *inode, ext4_lblk_t lblk,
239 struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500240{
241 struct ext4_es_tree *tree = NULL;
242 struct extent_status *es1 = NULL;
243 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500244
Zheng Liube401362013-02-18 00:27:26 -0500245 BUG_ON(es == NULL);
246 trace_ext4_es_find_delayed_extent_enter(inode, lblk);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500247
Zheng Liu654598b2012-11-08 21:57:20 -0500248 read_lock(&EXT4_I(inode)->i_es_lock);
249 tree = &EXT4_I(inode)->i_es_tree;
250
Zheng Liufdc02122013-02-18 00:26:51 -0500251 /* find extent in cache firstly */
Zheng Liube401362013-02-18 00:27:26 -0500252 es->es_lblk = es->es_len = es->es_pblk = 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500253 if (tree->cache_es) {
254 es1 = tree->cache_es;
Zheng Liube401362013-02-18 00:27:26 -0500255 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
Zheng Liufdc02122013-02-18 00:26:51 -0500256 es_debug("%u cached by [%u/%u) %llu %llx\n",
Zheng Liube401362013-02-18 00:27:26 -0500257 lblk, es1->es_lblk, es1->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500258 ext4_es_pblock(es1), ext4_es_status(es1));
Zheng Liu654598b2012-11-08 21:57:20 -0500259 goto out;
260 }
261 }
262
Zheng Liube401362013-02-18 00:27:26 -0500263 es1 = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500264
265out:
Zheng Liube401362013-02-18 00:27:26 -0500266 if (es1 && !ext4_es_is_delayed(es1)) {
267 while ((node = rb_next(&es1->rb_node)) != NULL) {
268 es1 = rb_entry(node, struct extent_status, rb_node);
269 if (ext4_es_is_delayed(es1))
270 break;
271 }
272 }
273
274 if (es1 && ext4_es_is_delayed(es1)) {
Zheng Liu654598b2012-11-08 21:57:20 -0500275 tree->cache_es = es1;
Zheng Liu06b0c882013-02-18 00:26:51 -0500276 es->es_lblk = es1->es_lblk;
277 es->es_len = es1->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500278 es->es_pblk = es1->es_pblk;
Zheng Liu654598b2012-11-08 21:57:20 -0500279 }
280
281 read_unlock(&EXT4_I(inode)->i_es_lock);
Zheng Liu992e9fd2012-11-08 21:57:33 -0500282
Zheng Liube401362013-02-18 00:27:26 -0500283 trace_ext4_es_find_delayed_extent_exit(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500284}
285
286static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500287ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len,
288 ext4_fsblk_t pblk)
Zheng Liu654598b2012-11-08 21:57:20 -0500289{
290 struct extent_status *es;
291 es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC);
292 if (es == NULL)
293 return NULL;
Zheng Liu06b0c882013-02-18 00:26:51 -0500294 es->es_lblk = lblk;
295 es->es_len = len;
Zheng Liufdc02122013-02-18 00:26:51 -0500296 es->es_pblk = pblk;
Zheng Liu654598b2012-11-08 21:57:20 -0500297 return es;
298}
299
Zheng Liubdedbb72013-02-18 00:32:02 -0500300static void ext4_es_free_extent(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500301{
302 kmem_cache_free(ext4_es_cachep, es);
303}
304
Zheng Liu06b0c882013-02-18 00:26:51 -0500305/*
306 * Check whether or not two extents can be merged
307 * Condition:
308 * - logical block number is contiguous
Zheng Liufdc02122013-02-18 00:26:51 -0500309 * - physical block number is contiguous
310 * - status is equal
Zheng Liu06b0c882013-02-18 00:26:51 -0500311 */
312static int ext4_es_can_be_merged(struct extent_status *es1,
313 struct extent_status *es2)
314{
315 if (es1->es_lblk + es1->es_len != es2->es_lblk)
316 return 0;
317
Zheng Liufdc02122013-02-18 00:26:51 -0500318 if (ext4_es_status(es1) != ext4_es_status(es2))
319 return 0;
320
321 if ((ext4_es_is_written(es1) || ext4_es_is_unwritten(es1)) &&
322 (ext4_es_pblock(es1) + es1->es_len != ext4_es_pblock(es2)))
323 return 0;
324
Zheng Liu06b0c882013-02-18 00:26:51 -0500325 return 1;
326}
327
Zheng Liu654598b2012-11-08 21:57:20 -0500328static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500329ext4_es_try_to_merge_left(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500330{
Zheng Liubdedbb72013-02-18 00:32:02 -0500331 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500332 struct extent_status *es1;
333 struct rb_node *node;
334
335 node = rb_prev(&es->rb_node);
336 if (!node)
337 return es;
338
339 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500340 if (ext4_es_can_be_merged(es1, es)) {
341 es1->es_len += es->es_len;
Zheng Liu654598b2012-11-08 21:57:20 -0500342 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500343 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500344 es = es1;
345 }
346
347 return es;
348}
349
350static struct extent_status *
Zheng Liubdedbb72013-02-18 00:32:02 -0500351ext4_es_try_to_merge_right(struct inode *inode, struct extent_status *es)
Zheng Liu654598b2012-11-08 21:57:20 -0500352{
Zheng Liubdedbb72013-02-18 00:32:02 -0500353 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500354 struct extent_status *es1;
355 struct rb_node *node;
356
357 node = rb_next(&es->rb_node);
358 if (!node)
359 return es;
360
361 es1 = rb_entry(node, struct extent_status, rb_node);
Zheng Liu06b0c882013-02-18 00:26:51 -0500362 if (ext4_es_can_be_merged(es, es1)) {
363 es->es_len += es1->es_len;
Zheng Liu654598b2012-11-08 21:57:20 -0500364 rb_erase(node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500365 ext4_es_free_extent(inode, es1);
Zheng Liu654598b2012-11-08 21:57:20 -0500366 }
367
368 return es;
369}
370
Zheng Liubdedbb72013-02-18 00:32:02 -0500371static int __es_insert_extent(struct inode *inode, struct extent_status *newes)
Zheng Liu654598b2012-11-08 21:57:20 -0500372{
Zheng Liubdedbb72013-02-18 00:32:02 -0500373 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500374 struct rb_node **p = &tree->root.rb_node;
375 struct rb_node *parent = NULL;
376 struct extent_status *es;
Zheng Liu654598b2012-11-08 21:57:20 -0500377
378 while (*p) {
379 parent = *p;
380 es = rb_entry(parent, struct extent_status, rb_node);
381
Zheng Liu06b0c882013-02-18 00:26:51 -0500382 if (newes->es_lblk < es->es_lblk) {
383 if (ext4_es_can_be_merged(newes, es)) {
384 /*
385 * Here we can modify es_lblk directly
386 * because it isn't overlapped.
387 */
388 es->es_lblk = newes->es_lblk;
389 es->es_len += newes->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500390 if (ext4_es_is_written(es) ||
391 ext4_es_is_unwritten(es))
392 ext4_es_store_pblock(es,
393 newes->es_pblk);
Zheng Liubdedbb72013-02-18 00:32:02 -0500394 es = ext4_es_try_to_merge_left(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500395 goto out;
396 }
397 p = &(*p)->rb_left;
Zheng Liu06b0c882013-02-18 00:26:51 -0500398 } else if (newes->es_lblk > ext4_es_end(es)) {
399 if (ext4_es_can_be_merged(es, newes)) {
400 es->es_len += newes->es_len;
Zheng Liubdedbb72013-02-18 00:32:02 -0500401 es = ext4_es_try_to_merge_right(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500402 goto out;
403 }
404 p = &(*p)->rb_right;
405 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500406 BUG_ON(1);
407 return -EINVAL;
Zheng Liu654598b2012-11-08 21:57:20 -0500408 }
409 }
410
Zheng Liubdedbb72013-02-18 00:32:02 -0500411 es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len,
Zheng Liufdc02122013-02-18 00:26:51 -0500412 newes->es_pblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500413 if (!es)
414 return -ENOMEM;
415 rb_link_node(&es->rb_node, parent, p);
416 rb_insert_color(&es->rb_node, &tree->root);
417
418out:
419 tree->cache_es = es;
420 return 0;
421}
422
423/*
Zheng Liu06b0c882013-02-18 00:26:51 -0500424 * ext4_es_insert_extent() adds a space to a extent status tree.
Zheng Liu654598b2012-11-08 21:57:20 -0500425 *
426 * ext4_es_insert_extent is called by ext4_da_write_begin and
427 * ext4_es_remove_extent.
428 *
429 * Return 0 on success, error code on failure.
430 */
Zheng Liu06b0c882013-02-18 00:26:51 -0500431int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk,
Zheng Liufdc02122013-02-18 00:26:51 -0500432 ext4_lblk_t len, ext4_fsblk_t pblk,
433 unsigned long long status)
Zheng Liu654598b2012-11-08 21:57:20 -0500434{
Zheng Liu06b0c882013-02-18 00:26:51 -0500435 struct extent_status newes;
436 ext4_lblk_t end = lblk + len - 1;
Zheng Liu654598b2012-11-08 21:57:20 -0500437 int err = 0;
438
Zheng Liufdc02122013-02-18 00:26:51 -0500439 es_debug("add [%u/%u) %llu %llx to extent status tree of inode %lu\n",
440 lblk, len, pblk, status, inode->i_ino);
Zheng Liu06b0c882013-02-18 00:26:51 -0500441
442 BUG_ON(end < lblk);
443
444 newes.es_lblk = lblk;
445 newes.es_len = len;
Zheng Liufdc02122013-02-18 00:26:51 -0500446 ext4_es_store_pblock(&newes, pblk);
447 ext4_es_store_status(&newes, status);
448 trace_ext4_es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500449
450 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500451 err = __es_remove_extent(inode, lblk, end);
Zheng Liu06b0c882013-02-18 00:26:51 -0500452 if (err != 0)
453 goto error;
Zheng Liubdedbb72013-02-18 00:32:02 -0500454 err = __es_insert_extent(inode, &newes);
Zheng Liu06b0c882013-02-18 00:26:51 -0500455
456error:
Zheng Liu654598b2012-11-08 21:57:20 -0500457 write_unlock(&EXT4_I(inode)->i_es_lock);
458
459 ext4_es_print_tree(inode);
460
461 return err;
462}
463
Zheng Liud100eef2013-02-18 00:29:59 -0500464/*
465 * ext4_es_lookup_extent() looks up an extent in extent status tree.
466 *
467 * ext4_es_lookup_extent is called by ext4_map_blocks/ext4_da_map_blocks.
468 *
469 * Return: 1 on found, 0 on not
470 */
471int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk,
472 struct extent_status *es)
473{
474 struct ext4_es_tree *tree;
475 struct extent_status *es1 = NULL;
476 struct rb_node *node;
477 int found = 0;
478
479 trace_ext4_es_lookup_extent_enter(inode, lblk);
480 es_debug("lookup extent in block %u\n", lblk);
481
482 tree = &EXT4_I(inode)->i_es_tree;
483 read_lock(&EXT4_I(inode)->i_es_lock);
484
485 /* find extent in cache firstly */
486 es->es_lblk = es->es_len = es->es_pblk = 0;
487 if (tree->cache_es) {
488 es1 = tree->cache_es;
489 if (in_range(lblk, es1->es_lblk, es1->es_len)) {
490 es_debug("%u cached by [%u/%u)\n",
491 lblk, es1->es_lblk, es1->es_len);
492 found = 1;
493 goto out;
494 }
495 }
496
497 node = tree->root.rb_node;
498 while (node) {
499 es1 = rb_entry(node, struct extent_status, rb_node);
500 if (lblk < es1->es_lblk)
501 node = node->rb_left;
502 else if (lblk > ext4_es_end(es1))
503 node = node->rb_right;
504 else {
505 found = 1;
506 break;
507 }
508 }
509
510out:
511 if (found) {
512 BUG_ON(!es1);
513 es->es_lblk = es1->es_lblk;
514 es->es_len = es1->es_len;
515 es->es_pblk = es1->es_pblk;
516 }
517
518 read_unlock(&EXT4_I(inode)->i_es_lock);
519
520 trace_ext4_es_lookup_extent_exit(inode, es, found);
521 return found;
522}
523
Zheng Liubdedbb72013-02-18 00:32:02 -0500524static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
525 ext4_lblk_t end)
Zheng Liu654598b2012-11-08 21:57:20 -0500526{
Zheng Liubdedbb72013-02-18 00:32:02 -0500527 struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree;
Zheng Liu654598b2012-11-08 21:57:20 -0500528 struct rb_node *node;
Zheng Liu654598b2012-11-08 21:57:20 -0500529 struct extent_status *es;
530 struct extent_status orig_es;
Zheng Liu06b0c882013-02-18 00:26:51 -0500531 ext4_lblk_t len1, len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500532 ext4_fsblk_t block;
Zheng Liu654598b2012-11-08 21:57:20 -0500533 int err = 0;
534
Zheng Liu06b0c882013-02-18 00:26:51 -0500535 es = __es_tree_search(&tree->root, lblk);
Zheng Liu654598b2012-11-08 21:57:20 -0500536 if (!es)
537 goto out;
Zheng Liu06b0c882013-02-18 00:26:51 -0500538 if (es->es_lblk > end)
Zheng Liu654598b2012-11-08 21:57:20 -0500539 goto out;
540
541 /* Simply invalidate cache_es. */
542 tree->cache_es = NULL;
543
Zheng Liu06b0c882013-02-18 00:26:51 -0500544 orig_es.es_lblk = es->es_lblk;
545 orig_es.es_len = es->es_len;
Zheng Liufdc02122013-02-18 00:26:51 -0500546 orig_es.es_pblk = es->es_pblk;
547
Zheng Liu06b0c882013-02-18 00:26:51 -0500548 len1 = lblk > es->es_lblk ? lblk - es->es_lblk : 0;
549 len2 = ext4_es_end(es) > end ? ext4_es_end(es) - end : 0;
Zheng Liu654598b2012-11-08 21:57:20 -0500550 if (len1 > 0)
Zheng Liu06b0c882013-02-18 00:26:51 -0500551 es->es_len = len1;
Zheng Liu654598b2012-11-08 21:57:20 -0500552 if (len2 > 0) {
553 if (len1 > 0) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500554 struct extent_status newes;
555
556 newes.es_lblk = end + 1;
557 newes.es_len = len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500558 if (ext4_es_is_written(&orig_es) ||
559 ext4_es_is_unwritten(&orig_es)) {
560 block = ext4_es_pblock(&orig_es) +
561 orig_es.es_len - len2;
562 ext4_es_store_pblock(&newes, block);
563 }
564 ext4_es_store_status(&newes, ext4_es_status(&orig_es));
Zheng Liubdedbb72013-02-18 00:32:02 -0500565 err = __es_insert_extent(inode, &newes);
Zheng Liu654598b2012-11-08 21:57:20 -0500566 if (err) {
Zheng Liu06b0c882013-02-18 00:26:51 -0500567 es->es_lblk = orig_es.es_lblk;
568 es->es_len = orig_es.es_len;
Zheng Liu654598b2012-11-08 21:57:20 -0500569 goto out;
570 }
571 } else {
Zheng Liu06b0c882013-02-18 00:26:51 -0500572 es->es_lblk = end + 1;
573 es->es_len = len2;
Zheng Liufdc02122013-02-18 00:26:51 -0500574 if (ext4_es_is_written(es) ||
575 ext4_es_is_unwritten(es)) {
576 block = orig_es.es_pblk + orig_es.es_len - len2;
577 ext4_es_store_pblock(es, block);
578 }
Zheng Liu654598b2012-11-08 21:57:20 -0500579 }
580 goto out;
581 }
582
583 if (len1 > 0) {
584 node = rb_next(&es->rb_node);
585 if (node)
586 es = rb_entry(node, struct extent_status, rb_node);
587 else
588 es = NULL;
589 }
590
Zheng Liu06b0c882013-02-18 00:26:51 -0500591 while (es && ext4_es_end(es) <= end) {
Zheng Liu654598b2012-11-08 21:57:20 -0500592 node = rb_next(&es->rb_node);
593 rb_erase(&es->rb_node, &tree->root);
Zheng Liubdedbb72013-02-18 00:32:02 -0500594 ext4_es_free_extent(inode, es);
Zheng Liu654598b2012-11-08 21:57:20 -0500595 if (!node) {
596 es = NULL;
597 break;
598 }
599 es = rb_entry(node, struct extent_status, rb_node);
600 }
601
Zheng Liu06b0c882013-02-18 00:26:51 -0500602 if (es && es->es_lblk < end + 1) {
Zheng Liufdc02122013-02-18 00:26:51 -0500603 ext4_lblk_t orig_len = es->es_len;
604
Zheng Liu06b0c882013-02-18 00:26:51 -0500605 len1 = ext4_es_end(es) - end;
606 es->es_lblk = end + 1;
607 es->es_len = len1;
Zheng Liufdc02122013-02-18 00:26:51 -0500608 if (ext4_es_is_written(es) || ext4_es_is_unwritten(es)) {
609 block = es->es_pblk + orig_len - len1;
610 ext4_es_store_pblock(es, block);
611 }
Zheng Liu654598b2012-11-08 21:57:20 -0500612 }
613
614out:
Zheng Liu06b0c882013-02-18 00:26:51 -0500615 return err;
616}
617
618/*
619 * ext4_es_remove_extent() removes a space from a extent status tree.
620 *
621 * Return 0 on success, error code on failure.
622 */
623int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk,
624 ext4_lblk_t len)
625{
Zheng Liu06b0c882013-02-18 00:26:51 -0500626 ext4_lblk_t end;
627 int err = 0;
628
629 trace_ext4_es_remove_extent(inode, lblk, len);
630 es_debug("remove [%u/%u) from extent status tree of inode %lu\n",
631 lblk, len, inode->i_ino);
632
633 end = lblk + len - 1;
634 BUG_ON(end < lblk);
635
Zheng Liu06b0c882013-02-18 00:26:51 -0500636 write_lock(&EXT4_I(inode)->i_es_lock);
Zheng Liubdedbb72013-02-18 00:32:02 -0500637 err = __es_remove_extent(inode, lblk, end);
Zheng Liu654598b2012-11-08 21:57:20 -0500638 write_unlock(&EXT4_I(inode)->i_es_lock);
639 ext4_es_print_tree(inode);
640 return err;
641}